@-webkit-keyframes rotating /* Safari and Chrome */ {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.rotating {
  -webkit-animation: rotating ease-in-out 1.5s;
  animation: rotating ease-in-out 1.5s; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/
.ds-sprite {
  display: inline-block;
  background: url("../img/sprite.png"); }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ds-sprite {
      background: url("../img/sprite@2x.png"); } }

.close_square {
  background-image: url(../img/sprite.png);
  background-position: 0px 0px;
  width: 24px;
  height: 24px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .close_square {
      background-image: url(../img/sprite@2x.png);
      background-size: 24px 24px; } }

@font-face {
  font-family: 'BaskeMTIta';
  src: url("../fonts/BaskeMTIta.eot");
  src: url("../fonts/BaskeMTIta.eot?#iefix") format("embedded-opentype"), url("../fonts/BaskeMTIta.woff") format("woff"), url("../fonts/BaskeMTIta.ttf") format("truetype"), url("../fonts/BaskeMTIta.svg#BaskeMTIta") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'BaskervilleMT-Italic';
  src: url("../fonts/BaskervilleMT-Italic.eot");
  src: url("../fonts/BaskervilleMT-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/BaskervilleMT-Italic.woff") format("woff"), url("../fonts/BaskervilleMT-Italic.ttf") format("truetype"), url("../fonts/BaskervilleMT-Italic.svg#BaskervilleMT-Italic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Mercury_Display_Bold';
  src: url("../fonts/Mercury_Display_Bold.eot");
  src: url("../fonts/Mercury_Display_Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Mercury_Display_Bold.woff") format("woff"), url("../fonts/Mercury_Display_Bold.ttf") format("truetype"), url("../fonts/Mercury_Display_Bold.svg#Mercury_Display_Bold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'TradeGothicLTStd-Cn18';
  src: url("../fonts/TradeGothicLTStd-Cn18.eot");
  src: url("../fonts/TradeGothicLTStd-Cn18.eot?#iefix") format("embedded-opentype"), url("../fonts/TradeGothicLTStd-Cn18.woff") format("woff"), url("../fonts/TradeGothicLTStd-Cn18.ttf") format("truetype"), url("../fonts/TradeGothicLTStd-Cn18.svg#TradeGothicLTStd-Cn18") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Baskerville-Reg';
  src: url("../fonts/Baskerville-Reg.eot");
  src: url("../fonts/Baskerville-Reg.eot?#iefix") format("embedded-opentype"), url("../fonts/Baskerville-Reg.woff") format("woff"), url("../fonts/Baskerville-Reg.ttf") format("truetype"), url("../fonts/Baskerville-Reg.svg#Baskerville-Reg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Oswald-Regular';
  src: url("../fonts/Oswald-Regular.eot");
  src: url("../fonts/Oswald-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Oswald-Regular.woff") format("woff"), url("../fonts/Oswald-Regular.ttf") format("truetype"), url("../fonts/Oswald-Regular.svg#Oswald-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Oswald-Light', 'sans-serif';
  src: url("../fonts/Oswald-Light.eot");
  src: url("../fonts/Oswald-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Oswald-Light.woff") format("woff"), url("../fonts/Oswald-Light.ttf") format("truetype"), url("../fonts/Oswald-Light.svg#Oswald-Light") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'HelveticaNeueLTStd-Th';
  src: url("../fonts/HelveticaNeueLTStd-Th.eot");
  src: url("../fonts/HelveticaNeueLTStd-Th.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLTStd-Th.woff") format("woff"), url("../fonts/HelveticaNeueLTStd-Th.ttf") format("truetype"), url("../fonts/HelveticaNeueLTStd-Th.svg#HelveticaNeueLTStd-Th") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'HelveticaNeueLTStd-ThCn';
  src: url("../fonts/HelveticaNeueLTStd-ThCn.eot");
  src: url("../fonts/HelveticaNeueLTStd-ThCn.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLTStd-ThCn.woff") format("woff"), url("../fonts/HelveticaNeueLTStd-ThCn.ttf") format("truetype"), url("../fonts/HelveticaNeueLTStd-ThCn.svg#HelveticaNeueLTStd-ThCn") format("svg");
  font-weight: normal;
  font-style: normal; }

.ds-icon {
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat; }

.icon-arrow {
  display: block;
  background-image: url(../img/Shape.png);
  height: 20px;
  width: 20px; }

.icon-arrow-black {
  display: inline-block;
  background-image: url(../img/arrow-black.png);
  background-repeat: no-repeat;
  height: 12px;
  width: 8px; }

.icon-lock {
  background-image: url(../img/lock.png);
  display: block;
  height: 20px;
  width: 20px; }

.icon-home, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li.menu-home a:before {
  background-image: url(../img/mobile/mobile-home.png);
  height: 20px;
  width: 18px; }

.icon-the-school, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li.menu-school a:before {
  background-image: url(../img/mobile/mobile-school.png);
  height: 20px;
  width: 20px; }

.icon-courses, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li.menu-courses a:before {
  background-image: url(../img/mobile/mobile-course.png);
  height: 20px;
  width: 15px; }

.icon-masterclasses, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li.menu-masterclasses a:before {
  background-image: url(../img/mobile/mobile-masterclass.png);
  height: 20px;
  width: 20px; }

.icon-faqs, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li.menu-faqs a:before {
  background-image: url(../img/mobile/mobile-faq.png);
  height: 20px;
  width: 20px; }

.icon-student-news, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li.menu-student-news a:before {
  background-image: url(../img/mobile/mobile-students-news.png);
  height: 20px;
  width: 20px; }

.icon-contact, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li.menu-contact a:before {
  background-image: url(../img/mobile/mobile-contact.png);
  height: 20px;
  width: 20px; }

.icon-testimonial, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li.menu-testimonial a:before {
  background-image: url(../img/mobile/mobile-testimonial.png);
  height: 20px;
  width: 20px; }

.icon-login {
  background-image: url(../img/mobile/mobile-login.png);
  height: 20px;
  width: 14px; }

.icon-home-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-home a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-home a:before {
  background-image: url(../img/mobile/mobile-home-active.png); }

.icon-the-school-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-school a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-school a:before {
  background-image: url(../img/mobile/mobile-school-active.png); }

.icon-courses-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-courses a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-courses a:before {
  background-image: url(../img/mobile/mobile-course-active.png); }

.icon-masterclasses-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-masterclasses a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-masterclasses a:before {
  background-image: url(../img/mobile/mobile-masterclass-active.png); }

.icon-faqs-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-faqs a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-faqs a:before {
  background-image: url(../img/mobile/mobile-faq-active.png); }

.icon-student-news-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-student-news a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-student-news a:before {
  background-image: url(../img/mobile/mobile-students-news-active.png); }

.icon-contact-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-contact a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-contact a:before {
  background-image: url(../img/mobile/mobile-contact-active.png); }

.icon-testimonial-active, #ds-header-mobile .ds-mobile-menu ul li.active.menu-testimonial a:before, #ds-header-mobile .ds-mobile-menu ul li:hover.menu-testimonial a:before {
  background-image: url(../img/mobile/mobile-testimonial-active.png); }

.icon-login-active {
  background-image: url(../img/mobile/mobile-login-active.png); }

.icon-video {
  background-image: url(../img/btn-video.png);
  display: inline-block;
  background-size: cover;
  height: 36px;
  width: 36px; }

.fixed, #ds-header {
  position: fixed; }

.relative, .ds-container, .ds-row, .ds-col-default, .ds-col-12, .ds-col-9, .ds-col-8, .ds-col-7, .ds-col-6, .ds-col-5, .ds-col-4, .ds-col-3, .ds-col-2, div.ds-container, div.ds-container .ds-btn-default, div.ds-container .ds-btn-black, div.ds-container .ds-btn-grey, div.ds-container .ds-btn-white, div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-delivery .text-wrap, div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-location .text-wrap, div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-time .text-wrap, div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail, div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content, #ds-header .ds-wrap-menu .ds-toggle-menu, #ds-header .ds-wrap-menu ul li.list-login a, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li:last-child a i, #ds-footer .col-line div {
  position: relative; }

.absolute, div.ds-container .breadcrumbs, .ds-home #ds-hero .btn-scroll-to, .ds-home #ds-hero .btn-scroll-to i, .ds-home #ds-courses .ds-wrap-vertical, .ds-home #ds-quote .ds-quote-wrap, .ds-about #ds-offer .bg-offer, .ds-about #ds-facilitator .text-wrap, div.page.ds-contact #ds-contact-location .ds-address, div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li label:before, div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail h4, div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail:before, div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black, #ds-header .ds-wrap-menu .ds-toggle-menu span, #ds-header .ds-wrap-menu ul, #ds-header .ds-wrap-menu ul li.list-login a:before, #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span, #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 {
  position: absolute; }

.ds-wrap-vertical {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.background-cover, .ds-home #ds-hero, .ds-home #ds-courses .ds-col-6 .bg-course, .ds-home #ds-quote .bg-quote, .ds-about #ds-hero, .ds-about #ds-offer .bg-offer, .ds-about #ds-facilitator .bg-facilitator, div.page.ds-courses #ds-hero, div.page.ds-course-details #ds-hero, div.page.ds-faq #ds-hero, .page.ds-the-facilitators #ds-hero, div.page.ds-facilitators-detail #ds-hero, div.page.ds-testimonials #ds-hero, div.page.ds-student-news #ds-hero, .page.ds-student-news-detail #ds-hero, div.page.ds-contact #ds-hero, div.page.ds-timetable #ds-hero {
  background-size: cover; }

.ds-display-desktop, #ds-footer .col-contact br {
  display: block !important; }
  @media only screen and (max-width: 768px) {
    .ds-display-desktop, #ds-footer .col-contact br {
      display: none !important; } }

.ds-display-mobile {
  display: none !important; }
  @media only screen and (max-width: 768px) {
    .ds-display-mobile {
      display: block !important; } }

.ds-container {
  width: 100%;
  max-width: inherit;
  margin: 0 auto;
  overflow: hidden; }
  @media only screen and (max-width: 1024px) {
    .ds-container {
      position: static; } }

.ds-row {
  padding: 0 30px;
  margin-left: -15px;
  margin-right: -15px;
  clear: both; }
  .ds-row.no-gutter {
    margin-left: 0;
    margin-right: 0; }
    .ds-row.no-gutter .ds-col-8,
    .ds-row.no-gutter .ds-col-6,
    .ds-row.no-gutter .ds-col-4,
    .ds-row.no-gutter .ds-col-12 {
      padding-left: 0;
      padding-right: 0; }
  @media only screen and (max-width: 1024px) {
    .ds-row {
      margin: 0;
      padding: 0 10px; } }
  @media only screen and (max-width: 768px) {
    .ds-row {
      padding: 0; }
      .ds-row .ds-col-2,
      .ds-row .ds-col-3,
      .ds-row .ds-col-4,
      .ds-row .ds-col-5,
      .ds-row .ds-col-6,
      .ds-row .ds-col-7,
      .ds-row .ds-col-8,
      .ds-row .ds-col-9,
      .ds-row .ds-col-12 {
        width: 100%; } }

.border-box, .ds-row, .ds-col-default, .ds-col-12, .ds-col-9, .ds-col-8, .ds-col-7, .ds-col-6, .ds-col-5, .ds-col-4, .ds-col-3, .ds-col-2, #ds-header .ds-wrap-logo, #ds-header .ds-wrap-menu {
  box-sizing: border-box; }

.ds-col-default, .ds-col-12, .ds-col-9, .ds-col-8, .ds-col-7, .ds-col-6, .ds-col-5, .ds-col-4, .ds-col-3, .ds-col-2 {
  min-height: 1px;
  float: left;
  padding-left: 15px;
  padding-right: 15px; }

.ds-col-12 {
  width: 100%; }

.ds-col-9 {
  width: 75%; }

.ds-col-8 {
  width: 66.66666667%; }

.ds-col-7 {
  width: 58.33333333%; }

.ds-col-6 {
  width: 50%; }

.ds-col-5 {
  width: 41.66666667%; }

.ds-col-4 {
  width: 33.33333333%; }

.ds-col-3 {
  width: 25%; }

.ds-col-2 {
  width: 16.66666667%; }

div.ds-container {
  font-family: 'Baskerville-Reg';
  font-weight: normal;
  letter-spacing: 0;
  font-size: 20px;
  line-height: 110%; }
  div.ds-container h1, div.ds-container h2, div.ds-container h3, div.ds-container h4, div.ds-container h5 {
    margin-top: 0; }
  div.ds-container h1 {
    font-family: 'Mercury_Display_Bold';
    font-size: 64px;
    line-height: normal;
    margin-bottom: 20px; }
    @media only screen and (max-width: 768px) {
      div.ds-container h1 {
        font-size: 30px;
        line-height: 110%; } }
  div.ds-container h2 {
    font-family: 'Mercury_Display_Bold';
    line-height: 120%;
    font-size: 53px; }
    @media only screen and (max-width: 768px) {
      div.ds-container h2 {
        font-size: 30px;
        line-height: 109%; } }
  div.ds-container h3 {
    font-family: 'Mercury_Display_Bold';
    font-size: 32px;
    line-height: 125%;
    margin-bottom: 35px; }
    @media only screen and (max-width: 768px) {
      div.ds-container h3 {
        font-size: 24px;
        line-height: 130%;
        margin-bottom: 25px; } }
  div.ds-container h4 {
    font-family: 'Mercury_Display_Bold';
    font-size: 20px; }
    @media only screen and (max-width: 768px) {
      div.ds-container h4 {
        font-size: 18px; } }
  div.ds-container p {
    font-family: 'Baskerville-Reg';
    font-weight: normal;
    letter-spacing: 0;
    font-size: 20px;
    line-height: 110%; }
    div.ds-container p.ds-font-sm {
      font-size: 16px; }
    @media only screen and (max-width: 768px) {
      div.ds-container p {
        font-size: 14px;
        line-height: 115%; } }

form.ds-form-dark .ds-field-default, form.ds-form-dark input, form.ds-form-dark textarea {
  box-sizing: border-box;
  width: 100%;
  font-family: 'Baskerville-Reg';
  font-size: 16px;
  color: white;
  background: #191919;
  border: 0;
  outline: none;
  letter-spacing: -0.04em; }

form.ds-form-dark input {
  padding: 13px 20px 8px;
  margin-bottom: 10px; }

form.ds-form-dark textarea {
  height: 140px;
  padding: 15px 20px 8px;
  margin-bottom: 20px; }

form.ds-form-dark input::-webkit-input-placeholder, form.ds-form-dark textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white; }

form.ds-form-dark input::-moz-placeholder, form.ds-form-dark textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: white; }

form.ds-form-dark input:-ms-input-placeholder, form.ds-form-dark textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: white; }

form.ds-form-dark input:-moz-placeholder, form.ds-form-dark textarea:-moz-placeholder {
  /* Firefox 18- */
  color: white; }

@media only screen and (max-width: 480px) {
  form.ds-form-dark input {
    padding: 23px 15px 17px;
    letter-spacing: -0.05em; } }

@media only screen and (max-width: 1024px) {
  .ds-background {
    max-height: 382px; } }

#ds-hero {
  height: 400px; }
  #ds-hero .ds-row,
  #ds-hero .ds-col-12 {
    height: 100%; }
  #ds-hero .ds-wrap-vertical {
    padding: 0 95px; }
    #ds-hero .ds-wrap-vertical h1 {
      color: #febe36; }
    #ds-hero .ds-wrap-vertical p {
      color: #ffffff; }
  @media only screen and (max-width: 1024px) {
    #ds-hero {
      max-height: 382px; }
      #ds-hero .ds-wrap-vertical {
        padding: 0 35px; } }

#ds-contact {
  background: #797979;
  padding: 55px 0 75px; }
  #ds-contact .text-wrap {
    max-width: 950px;
    margin: 0 auto; }
    #ds-contact .text-wrap h3 {
      color: #febe36;
      margin-bottom: 20px;
      font-style: normal; }
    #ds-contact .text-wrap p {
      color: #CCCCCC;
      margin: 0;
      line-height: 105%;
      letter-spacing: 0.02em;
      font-size: 20px; }
      #ds-contact .text-wrap p a {
        text-decoration: none; }
        #ds-contact .text-wrap p a.tel {
          color: #febe36; }
          #ds-contact .text-wrap p a.tel span {
            font-family: 'Oswald-Light';
            font-weight: normal;
            font-size: 16px;
            letter-spacing: 0.08em; }
        #ds-contact .text-wrap p a:not(.tel) {
          color: #febe36;
          border-bottom: 2px solid;
          font-family: 'Oswald-Light';
          font-weight: normal;
          font-size: 18px;
          letter-spacing: 0.03em; }
  @media only screen and (max-width: 1024px) {
    #ds-contact .text-wrap {
      margin-left: 35px; } }
  @media only screen and (max-width: 768px) {
    #ds-contact .text-wrap {
      margin: 0; } }
  @media only screen and (max-width: 480px) {
    #ds-contact {
      padding: 45px 0 55px; }
      #ds-contact .text-wrap h3 {
        max-width: 200px;
        margin-bottom: 28px; }
      #ds-contact .text-wrap p {
        font-size: 18px;
        line-height: 125%;
        max-width: 305px; } }

body.design-school .welcome-msg-container span.crid-msg, body.design-school .welcome-msg-container span.crps-msg, body.design-school .welcome-msg-container span.main-msg {
  display: none; }

body.design-school .welcome-msg-container span.crds-msg {
  display: inline-block; }

div.ds-container {
  padding-top: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "kern" 1;
     -moz-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  margin: 0 auto; }
  div.ds-container img {
    max-width: 100%; }
  div.ds-container section {
    overflow: hidden; }
  div.ds-container a, div.ds-container button {
    transition: color 0.2s ease-in-out;
    cursor: pointer; }
    div.ds-container a:hover, div.ds-container button:hover {
      color: #febe36 !important; }
  div.ds-container .breadcrumbs {
    margin: 18px;
    right: 73px;
    z-index: 0; }
    div.ds-container .breadcrumbs ul {
      padding: 0; }
      div.ds-container .breadcrumbs ul li {
        list-style: none;
        display: inline-block;
        padding: 0 7px;
        position: relative; }
        div.ds-container .breadcrumbs ul li:after {
          content: '';
          background-image: url(../img/caret.png);
          height: 8px;
          width: 5px;
          display: block;
          position: absolute;
          top: 10px;
          right: -3px; }
        div.ds-container .breadcrumbs ul li:last-child:after {
          display: none; }
        div.ds-container .breadcrumbs ul li a, div.ds-container .breadcrumbs ul li span {
          text-transform: uppercase;
          text-decoration: none;
          color: white;
          font-family: 'TradeGothicLTStd-Cn18';
          font-size: 12px;
          letter-spacing: 0.12em;
          font-style: normal; }
        div.ds-container .breadcrumbs ul li.cct_content_prev,
        div.ds-container .breadcrumbs ul li .sep {
          display: none; }
  div.ds-container .ds-btn-default {
    color: white;
    text-decoration: none;
    font-family: 'Oswald-Light', 'TradeGothicLTStd-Cn18';
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.17em;
    padding: 7px 50px 7px 15px;
    text-transform: uppercase;
    display: inline-block;
    min-height: 23px;
    width: auto;
    max-width: inherit;
    min-width: inherit; }
    div.ds-container .ds-btn-default:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%) rotate(-90deg);
      transform: translateY(-50%) rotate(-90deg);
      right: 20px;
      content: '';
      height: 9px;
      width: 7px;
      background-image: url(../img/Shape.png);
      background-repeat: no-repeat;
      background-position: right; }
    @media only screen and (max-width: 768px) {
      div.ds-container .ds-btn-default {
        font-size: 10px;
        padding: 7px 50px 7px 9px;
        letter-spacing: 0.19em; } }
    @media only screen and (max-width: 480px) {
      div.ds-container .ds-btn-default:after {
        right: 17px; } }
  div.ds-container .ds-btn-black {
    color: white;
    text-decoration: none;
    font-family: 'Oswald-Light', 'TradeGothicLTStd-Cn18';
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.17em;
    padding: 7px 50px 7px 15px;
    text-transform: uppercase;
    display: inline-block;
    min-height: 23px;
    width: auto;
    max-width: inherit;
    min-width: inherit;
    background: black; }
    div.ds-container .ds-btn-black:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%) rotate(-90deg);
      transform: translateY(-50%) rotate(-90deg);
      right: 20px;
      content: '';
      height: 9px;
      width: 7px;
      background-image: url(../img/Shape.png);
      background-repeat: no-repeat;
      background-position: right; }
    @media only screen and (max-width: 768px) {
      div.ds-container .ds-btn-black {
        font-size: 10px;
        padding: 7px 50px 7px 9px;
        letter-spacing: 0.19em; } }
    @media only screen and (max-width: 480px) {
      div.ds-container .ds-btn-black:after {
        right: 17px; } }
  div.ds-container .ds-btn-grey {
    color: white;
    text-decoration: none;
    font-family: 'Oswald-Light', 'TradeGothicLTStd-Cn18';
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.17em;
    padding: 7px 50px 7px 15px;
    text-transform: uppercase;
    display: inline-block;
    min-height: 23px;
    width: auto;
    max-width: inherit;
    min-width: inherit;
    background: #666666; }
    div.ds-container .ds-btn-grey:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%) rotate(-90deg);
      transform: translateY(-50%) rotate(-90deg);
      right: 20px;
      content: '';
      height: 9px;
      width: 7px;
      background-image: url(../img/Shape.png);
      background-repeat: no-repeat;
      background-position: right; }
    @media only screen and (max-width: 768px) {
      div.ds-container .ds-btn-grey {
        font-size: 10px;
        padding: 7px 50px 7px 9px;
        letter-spacing: 0.19em; } }
    @media only screen and (max-width: 480px) {
      div.ds-container .ds-btn-grey:after {
        right: 17px; } }
  div.ds-container .ds-btn-white {
    color: white;
    text-decoration: none;
    font-family: 'Oswald-Light', 'TradeGothicLTStd-Cn18';
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.17em;
    padding: 7px 50px 7px 15px;
    text-transform: uppercase;
    display: inline-block;
    min-height: 23px;
    width: auto;
    max-width: inherit;
    min-width: inherit;
    color: black; }
    div.ds-container .ds-btn-white:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%) rotate(-90deg);
      transform: translateY(-50%) rotate(-90deg);
      right: 20px;
      content: '';
      height: 9px;
      width: 7px;
      background-image: url(../img/Shape.png);
      background-repeat: no-repeat;
      background-position: right; }
    @media only screen and (max-width: 768px) {
      div.ds-container .ds-btn-white {
        font-size: 10px;
        padding: 7px 50px 7px 9px;
        letter-spacing: 0.19em; } }
    @media only screen and (max-width: 480px) {
      div.ds-container .ds-btn-white:after {
        right: 17px; } }
    div.ds-container .ds-btn-white:after {
      background-image: url(../img/arrow-black.png); }
  @media only screen and (max-width: 1024px) {
    div.ds-container {
      position: relative;
      padding-top: 0; } }
  @media only screen and (max-width: 768px) {
    div.ds-container {
      margin-top: 0;
      top: -8px; } }

.ds-display-desktop, #ds-footer .col-contact br {
  display: inline-block; }
  @media only screen and (max-width: 1024px) {
    .ds-display-desktop, #ds-footer .col-contact br {
      display: none !important;
      visibility: hidden; } }

.ds-display-tablet {
  display: none; }
  @media only screen and (max-width: 1024px) {
    .ds-display-tablet {
      display: block; } }

.ds-home #ds-hero {
  background-repeat: no-repeat;
  height: 710px; }
  .ds-home #ds-hero .ds-row,
  .ds-home #ds-hero .ds-col-12 {
    height: 100%; }
  .ds-home #ds-hero .ds-wrap-vertical {
    padding: 0 95px;
    top: 48%; }
    .ds-home #ds-hero .ds-wrap-vertical h1 {
      color: #febe36; }
    .ds-home #ds-hero .ds-wrap-vertical p {
      color: #ffffff;
      max-width: 620px;
      margin-bottom: 25px; }
  .ds-home #ds-hero .btn-scroll-to {
    text-decoration: none;
    color: #ffffff;
    bottom: 25px;
    margin: 0 95px;
    text-align: center;
    line-height: 120%;
    font-family: 'TradeGothicLTStd-Cn18';
    font-size: 15px;
    letter-spacing: 0.1em; }
    .ds-home #ds-hero .btn-scroll-to i {
      background-repeat: no-repeat;
      top: 1px;
      right: -28px; }
  @media only screen and (max-width: 1024px) {
    .ds-home #ds-hero .ds-wrap-vertical {
      padding: 0 35px; }
    .ds-home #ds-hero .btn-scroll-to {
      margin: 0 35px; } }
  @media only screen and (max-width: 768px) {
    .ds-home #ds-hero {
      margin-bottom: 1px; }
      .ds-home #ds-hero .ds-wrap-vertical {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 0;
        top: inherit; }
        .ds-home #ds-hero .ds-wrap-vertical h1 {
          color: white;
          margin-top: 30px;
          margin-bottom: 10px; }
        .ds-home #ds-hero .ds-wrap-vertical p {
          max-width: 255px;
          margin-top: 0;
          margin-bottom: 20px; }
        .ds-home #ds-hero .ds-wrap-vertical .ds-btn-black {
          padding: 7px 48px 10px 9px; }
      .ds-home #ds-hero .btn-scroll-to {
        text-align: left;
        margin: 0;
        font-size: 14px;
        letter-spacing: 0.03em;
        bottom: 16px;
        left: 18px; } }
  @media only screen and (max-width: 480px) {
    .ds-home #ds-hero {
      height: 317px; } }

.ds-home #ds-courses > .ds-row {
  padding: 0; }
  .ds-home #ds-courses > .ds-row > a:first-child .ds-col-6 {
    padding: 0.5px 0.5px 0.5px 0; }
  .ds-home #ds-courses > .ds-row > a:last-child .ds-col-6 {
    padding: 0.5px 0 0.5px 0.5px; }

.ds-home #ds-courses .ds-col-6:first-child {
  padding: 0.5px 0.5px 0.5px 0; }

.ds-home #ds-courses .ds-col-6:last-child {
  padding: 0.5px 0 0.5px 0.5px; }

.ds-home #ds-courses .ds-col-6 .bg-course {
  height: 380px; }
  .ds-home #ds-courses .ds-col-6 .bg-course.course-1 {
    background-image: url(../img/home/Course-1.jpg); }
  .ds-home #ds-courses .ds-col-6 .bg-course.course-2 {
    background-image: url(../img/home/Course-2.jpg); }
  .ds-home #ds-courses .ds-col-6 .bg-course.course-3 {
    background-image: url(../img/home/Course-3.jpg); }
  .ds-home #ds-courses .ds-col-6 .bg-course.course-4 {
    background-image: url(../img/home/Course-4.jpg); }

.ds-home #ds-courses .ds-col-6 a {
  transition: background 0.5s 0.5s, opacity 0.5s 0.5s;
  display: block;
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
  top: 0; }

.ds-home #ds-courses .ds-col-6 h2 {
  color: #ffffff;
  max-width: 300px; }

.ds-home #ds-courses img {
  display: block;
  width: 100%;
  height: auto; }

.ds-home #ds-courses .ds-wrap-vertical {
  max-width: 380px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 52%; }

@media only screen and (max-width: 1024px) {
  .ds-home #ds-courses .ds-wrap-vertical {
    margin-left: 50px; } }

@media only screen and (max-width: 768px) {
  .ds-home #ds-courses .ds-wrap-vertical {
    margin-left: 15px; } }

@media only screen and (max-width: 480px) {
  .ds-home #ds-courses .ds-col-6:first-child {
    padding: 0 0 1px; }
  .ds-home #ds-courses .ds-col-6:last-child {
    padding: 0 0 1px; }
  .ds-home #ds-courses .ds-col-6 .bg-course {
    height: 200px; }
  .ds-home #ds-courses .ds-col-6 h2 {
    width: 60%; }
  .ds-home #ds-courses .ds-wrap-vertical {
    top: 53%; } }

.ds-home #ds-quote .bg-quote {
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  height: 500px; }

.ds-home #ds-quote .ds-row,
.ds-home #ds-quote .ds-col-6 {
  height: 100%; }

.ds-home #ds-quote .ds-quote-wrap {
  padding: 50px 50px 35px;
  background: black;
  bottom: 1px;
  right: 0; }
  .ds-home #ds-quote .ds-quote-wrap p {
    color: white; }
    .ds-home #ds-quote .ds-quote-wrap p:first-child {
      font-size: 28px;
      font-family: 'Baskerville-Reg';
      font-weight: 100;
      letter-spacing: normal;
      line-height: 132%;
      margin: 25px 25px 47px 0;
      word-spacing: 0.1em;
      max-width: 350px; }
    .ds-home #ds-quote .ds-quote-wrap p:last-child {
      float: right;
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 13px;
      letter-spacing: 0.13em;
      margin: 0; }

@media only screen and (max-width: 768px) {
  .ds-home #ds-quote .ds-col-6 {
    padding: 0; }
  .ds-home #ds-quote .ds-quote-wrap {
    position: relative;
    padding: 15px 15px 30px; } }

@media only screen and (max-width: 480px) {
  .ds-home #ds-quote .bg-quote {
    height: 200px; }
  .ds-home #ds-quote .ds-quote-wrap p:first-child {
    margin-top: 0;
    font-size: 20px;
    max-width: 260px;
    margin-bottom: 20px; }
  .ds-home #ds-quote .ds-quote-wrap p:last-child {
    font-size: 12px;
    letter-spacing: 0.07em; } }

.ds-home #ds-about > .ds-row {
  padding: 0; }

.ds-home #ds-about .ds-col-6 {
  height: 400px; }
  .ds-home #ds-about .ds-col-6:first-child {
    background-color: #efefef; }
  .ds-home #ds-about .ds-col-6:last-child {
    background-color: #797979; }
  .ds-home #ds-about .ds-col-6.col-about h3 {
    font-style: normal; }
    .ds-home #ds-about .ds-col-6.col-about h3 span:first-of-type {
      color: #797979; }
  .ds-home #ds-about .ds-col-6.col-about p {
    margin-bottom: 20px;
    letter-spacing: 0.014em;
    line-height: 120%; }
  .ds-home #ds-about .ds-col-6.col-about .ds-btn-black {
    margin-top: 5px;
    display: inline-block;
    width: 135px;
    padding: 7px 15px;
    white-space: nowrap; }
  .ds-home #ds-about .ds-col-6.col-contact h3 {
    font-style: normal; }
    .ds-home #ds-about .ds-col-6.col-contact h3 span:first-of-type {
      color: #ffffff; }
  .ds-home #ds-about .ds-col-6.col-contact p {
    color: #CCCCCC;
    letter-spacing: 0.014em;
    line-height: 120%; }
    .ds-home #ds-about .ds-col-6.col-contact p a {
      text-decoration: none; }
      .ds-home #ds-about .ds-col-6.col-contact p a.tel {
        color: #ffffff; }
        .ds-home #ds-about .ds-col-6.col-contact p a.tel span {
          font-family: 'Oswald-Light';
          font-weight: normal;
          font-size: 16px;
          letter-spacing: 0.08em; }
      .ds-home #ds-about .ds-col-6.col-contact p a:not(.tel) {
        color: #febe36;
        border-bottom: 2px solid;
        font-family: 'Oswald-Light';
        font-weight: normal;
        font-size: 18px;
        letter-spacing: 0.03em; }
  .ds-home #ds-about .ds-col-6 .text-wrap {
    padding: 55px 0;
    margin-left: 95px; }
    .ds-home #ds-about .ds-col-6 .text-wrap h3 span {
      font-family: 'Mercury_Display_Bold'; }
      .ds-home #ds-about .ds-col-6 .text-wrap h3 span:last-of-type {
        color: #febe36; }
    .ds-home #ds-about .ds-col-6 .text-wrap p {
      max-width: 400px; }

@media only screen and (max-width: 1024px) {
  .ds-home #ds-about .ds-col-6 .text-wrap {
    margin-left: 35px; } }

@media only screen and (max-width: 768px) {
  .ds-home #ds-about .ds-col-6 {
    height: auto; }
    .ds-home #ds-about .ds-col-6 .text-wrap {
      margin: 0;
      padding: 20px 0 40px; }
      .ds-home #ds-about .ds-col-6 .text-wrap p {
        margin-bottom: 10px; }
    .ds-home #ds-about .ds-col-6.col-about .ds-btn-black {
      width: 100px; }
    .ds-home #ds-about .ds-col-6.col-about h3 {
      letter-spacing: 0; }
    .ds-home #ds-about .ds-col-6.col-contact h3 {
      margin-bottom: 10px; }
    .ds-home #ds-about .ds-col-6.col-contact p {
      margin-top: 0;
      line-height: 125%; }
      .ds-home #ds-about .ds-col-6.col-contact p a.tel span {
        font-size: 12px; }
      .ds-home #ds-about .ds-col-6.col-contact p a:not(.tel) {
        color: white;
        font-size: 13px; }
    .ds-home #ds-about .ds-col-6.col-contact .text-wrap {
      padding: 30px 0 90px; } }

@media only screen and (max-width: 1024px) {
  .ds-home .ds-container {
    position: initial; } }

.ds-about #ds-hero {
  background-image: url(../img/about/banner-about.jpg);
  background-repeat: no-repeat;
  height: 710px;
  color: white; }
  .ds-about #ds-hero .ds-wrap-vertical {
    top: 51%; }
    .ds-about #ds-hero .ds-wrap-vertical h3 {
      color: white;
      font-style: normal;
      margin-bottom: 20px; }
    .ds-about #ds-hero .ds-wrap-vertical .ds-btn-video {
      color: white;
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: 0.1em;
      font-family: 'TradeGothicLTStd-Cn18'; }
      .ds-about #ds-hero .ds-wrap-vertical .ds-btn-video i {
        vertical-align: middle;
        margin-right: 15px; }
  @media only screen and (max-width: 1024px) {
    .ds-about #ds-hero .ds-wrap-vertical {
      padding: 0 35px; } }
  @media only screen and (max-width: 768px) {
    .ds-about #ds-hero .ds-wrap-vertical {
      padding: 40px 0; }
      .ds-about #ds-hero .ds-wrap-vertical h3 {
        font-size: 20px;
        margin-bottom: 25px; }
      .ds-about #ds-hero .ds-wrap-vertical .ds-btn-video {
        font-size: 13px;
        letter-spacing: 0.13em; }
        .ds-about #ds-hero .ds-wrap-vertical .ds-btn-video i {
          margin-right: 10px; } }
  @media only screen and (max-width: 480px) {
    .ds-about #ds-hero {
      height: 295px; }
      .ds-about #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%); } }

.ds-about #ds-intro {
  background: black;
  text-align: center;
  height: 600px; }
  .ds-about #ds-intro .ds-row,
  .ds-about #ds-intro .ds-col-12 {
    height: 100%; }
  .ds-about #ds-intro .ds-wrap-vertical {
    margin: 0 auto;
    max-width: 690px; }
    .ds-about #ds-intro .ds-wrap-vertical h3 {
      color: #febe36;
      font-style: normal; }
    .ds-about #ds-intro .ds-wrap-vertical p {
      color: white;
      font-size: 16px;
      letter-spacing: 0.015em;
      line-height: 150%;
      margin: 0 0 15px; }
  @media only screen and (max-width: 768px) {
    .ds-about #ds-intro {
      text-align: left;
      height: auto; }
      .ds-about #ds-intro .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 45px 0 35px; }
        .ds-about #ds-intro .ds-wrap-vertical h3 {
          font-size: 30px;
          margin-bottom: 40px; } }

.ds-about #ds-offer {
  height: 600px; }
  .ds-about #ds-offer .ds-row,
  .ds-about #ds-offer .ds-col-12 {
    height: 100%; }
  .ds-about #ds-offer .bg-offer {
    background-image: url(../img/about/what-we-offer.jpg);
    background-repeat: no-repeat;
    height: 600px;
    left: 0;
    right: 0; }
  .ds-about #ds-offer .text-wrap {
    background: white;
    max-width: 560px;
    margin: 0 auto;
    padding: 50px 0 110px;
    text-align: center; }
    .ds-about #ds-offer .text-wrap h3 {
      margin-bottom: 25px;
      color: #febe36;
      font-style: normal; }
    .ds-about #ds-offer .text-wrap p {
      font-size: 16px;
      max-width: 405px;
      margin: 0 auto 25px;
      letter-spacing: 0.015em;
      line-height: 150%; }
    .ds-about #ds-offer .text-wrap .ds-btn-black {
      text-transform: uppercase;
      max-width: 170px;
      display: block;
      margin: 0 auto;
      padding: 7px 0 7px 15px;
      text-align: left; }
  @media only screen and (max-width: 1024px) {
    .ds-about #ds-offer {
      height: auto; } }
  @media only screen and (max-width: 768px) {
    .ds-about #ds-offer {
      height: auto; }
      .ds-about #ds-offer .bg-offer {
        position: relative; }
      .ds-about #ds-offer .text-wrap {
        margin: 0;
        text-align: left;
        padding: 50px 0 55px; }
        .ds-about #ds-offer .text-wrap h3 {
          font-size: 30px;
          margin-bottom: 25px; }
        .ds-about #ds-offer .text-wrap p {
          margin: 0 0 25px; }
        .ds-about #ds-offer .text-wrap .ds-btn-black {
          margin: 0;
          letter-spacing: 0.3em;
          max-width: 185px; } }
  @media only screen and (max-width: 480px) {
    .ds-about #ds-offer .bg-offer {
      height: 240px; } }

.ds-about #ds-facilitator .bg-facilitator {
  background-image: url(../img/about/facilitator.jpg);
  background-position: center;
  background-repeat: no-repeat;
  height: 600px; }

.ds-about #ds-facilitator .text-wrap {
  bottom: 0;
  background: white;
  right: -85px;
  max-width: 450px;
  padding: 55px; }
  .ds-about #ds-facilitator .text-wrap h3 {
    color: #febe36;
    margin-bottom: 30px;
    font-style: normal; }
  .ds-about #ds-facilitator .text-wrap p {
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 145%;
    margin-bottom: 35px; }
  .ds-about #ds-facilitator .text-wrap a {
    text-transform: uppercase; }

@media only screen and (max-width: 1024px) {
  .ds-about #ds-facilitator .ds-col-6 {
    width: 100%; }
  .ds-about #ds-facilitator .text-wrap {
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 50px 0 60px;
    right: 0; } }

@media only screen and (max-width: 768px) {
  .ds-about #ds-facilitator .text-wrap {
    margin: 0;
    text-align: left; }
    .ds-about #ds-facilitator .text-wrap h3 {
      font-size: 30px;
      margin-bottom: 25px; }
    .ds-about #ds-facilitator .text-wrap p {
      margin-bottom: 20px; } }

@media only screen and (max-width: 480px) {
  .ds-about #ds-facilitator .bg-facilitator {
    height: 240px; } }

div.page.ds-courses #ds-hero {
  background-repeat: no-repeat;
  height: 400px;
  color: white; }
  div.page.ds-courses #ds-hero .ds-wrap-vertical {
    top: 58%; }
    div.page.ds-courses #ds-hero .ds-wrap-vertical h1 {
      color: #febe36; }
    div.page.ds-courses #ds-hero .ds-wrap-vertical p {
      max-width: 700px;
      color: white; }
  @media only screen and (max-width: 768px) {
    div.page.ds-courses #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-courses #ds-hero {
      height: 200px; }
      div.page.ds-courses #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%); } }

div.page.ds-courses #ds-courselist {
  padding-bottom: 50px; }
  div.page.ds-courses #ds-courselist .ds-sidebar .ds-sidebar-head {
    font-family: 'TradeGothicLTStd-Cn18';
    text-transform: uppercase;
    font-size: 16px;
    margin: 35px 0 15px;
    letter-spacing: 0.013em; }
  div.page.ds-courses #ds-courselist .ds-sidebar .filter-group {
    border-top: 2px solid #f5f5f5;
    padding: 15px 0 12px;
    max-width: 235px; }
    div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head {
      display: none; }
    div.page.ds-courses #ds-courselist .ds-sidebar .filter-group h4 {
      font-family: 'TradeGothicLTStd-Cn18';
      text-transform: uppercase;
      font-weight: 100;
      font-size: 15px;
      margin-bottom: 10px; }
      div.page.ds-courses #ds-courselist .ds-sidebar .filter-group h4:before {
        content: '';
        vertical-align: middle;
        display: inline-block;
        height: 2px;
        width: 20px;
        background: black;
        margin-right: 10px; }
    div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul {
      padding: 0;
      margin: 0; }
      div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul li {
        list-style: none;
        margin-bottom: 10px;
        position: relative; }
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul li label {
          text-decoration: none;
          color: black;
          font-family: 'BaskeMTIta';
          font-size: 14px;
          padding-left: 25px;
          letter-spacing: 0.1em; }
          div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul li label:before {
            content: '';
            height: 12px;
            width: 12px;
            background: #939498;
            display: inline-block;
            vertical-align: middle;
            position: absolute;
            left: 0px;
            top: 2px; }
          div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul li label input {
            display: none; }
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul li.active label:before {
          background: #febe36; }
  div.page.ds-courses #ds-courselist .ds-list-content .ds-courses-message {
    padding: 10px;
    width: 50%;
    margin: 0 auto; }
  div.page.ds-courses #ds-courselist .ds-list-content .ds-pagination {
    font-family: 'BaskeMTIta';
    font-size: 14px;
    color: #666;
    margin: 30px 0;
    letter-spacing: 0.07em;
    display: inline-block;
    width: 100%;
    text-align: center; }
  div.page.ds-courses #ds-courselist .ds-list-content #pagin {
    margin: 0 15px;
    padding: 0;
    display: inline-block; }
    div.page.ds-courses #ds-courselist .ds-list-content #pagin li {
      list-style: none;
      display: inline-block; }
      div.page.ds-courses #ds-courselist .ds-list-content #pagin li a {
        text-decoration: none;
        color: black;
        font-family: 'BaskeMTIta';
        font-size: 14px;
        color: #666;
        letter-spacing: 0.07em; }
      div.page.ds-courses #ds-courselist .ds-list-content #pagin li.active a {
        color: #febe36; }
      div.page.ds-courses #ds-courselist .ds-list-content #pagin li:after {
        content: ',';
        margin: 0 5px; }
      div.page.ds-courses #ds-courselist .ds-list-content #pagin li:last-child:after {
        display: none; }
  div.page.ds-courses #ds-courselist .ds-list-content #ds-list-grid {
    margin-top: 30px; }
  div.page.ds-courses #ds-courselist .ds-list-content .ds-grid {
    margin-bottom: 30px; }
    div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-thumbnail {
      background-size: cover;
      height: 250px; }
    div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content {
      padding: 29px;
      position: relative;
      background: #e4e4e4;
      height: 245px; }
      div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content h4 {
        font-size: 20px;
        margin-bottom: 15px; }
      div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content p {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.02em;
        margin: 0; }
      div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black {
        position: absolute;
        bottom: 70px;
        text-transform: uppercase; }
  @media only screen and (min-width: 1200px) {
    div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul {
      display: block !important; } }
  @media only screen and (max-width: 1024px) {
    div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content {
      padding: 29px 29px 150px; } }
  @media only screen and (max-width: 768px) {
    div.page.ds-courses #ds-courselist {
      padding: 0; }
      div.page.ds-courses #ds-courselist .ds-sidebar .ds-sidebar-head {
        margin: 17px 0 8px;
        font-size: 12px;
        letter-spacing: 0.07em; }
      div.page.ds-courses #ds-courselist .ds-sidebar .filter-group {
        max-width: inherit;
        padding: 0;
        border: 1px solid #979797;
        margin-bottom: 10px; }
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head {
          display: block;
          text-decoration: none;
          color: black;
          font-family: 'TradeGothicLTStd-Cn18';
          font-size: 12px;
          text-transform: uppercase;
          letter-spacing: 0.07em;
          padding: 7px 10px 5px;
          display: block; }
          div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head.active .indication:after {
            display: none; }
          div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication {
            position: relative;
            float: right;
            margin-right: 10px; }
            div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication:before {
              -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
              transform: rotate(0deg);
              content: '';
              position: absolute;
              height: 2px;
              width: 15px;
              background: #d8d8d8;
              top: 10px; }
            div.page.ds-courses #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication:after {
              -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
              transform: rotate(90deg);
              content: '';
              position: absolute;
              height: 2px;
              width: 15px;
              top: 10px;
              left: 0;
              background: #d8d8d8; }
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group h4,
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul {
          display: none; }
        div.page.ds-courses #ds-courselist .ds-sidebar .filter-group ul {
          padding: 10px; }
      div.page.ds-courses #ds-courselist .ds-list-content {
        padding: 0; }
        div.page.ds-courses #ds-courselist .ds-list-content .ds-pagination {
          padding: 0 0 0 15px;
          margin: 10px 0; }
        div.page.ds-courses #ds-courselist .ds-list-content .ds-grid {
          margin-bottom: 0;
          padding: 0; }
          div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content {
            padding: 29px 15px 45px;
            height: auto; }
            div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content h4 {
              font-size: 18px; }
            div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content p {
              font-size: 14px;
              margin-bottom: 23px; }
            div.page.ds-courses #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black {
              padding: 10px 50px 10px 9px;
              position: relative;
              bottom: 0; } }

div.page.ds-course-details #ds-hero {
  background-image: url(../img/courses/details/banner-course-details.jpg);
  background-repeat: no-repeat;
  height: 640px; }
  div.page.ds-course-details #ds-hero h1 {
    color: #febe36; }
  div.page.ds-course-details #ds-hero p {
    color: #ffffff; }
  div.page.ds-course-details #ds-hero .ds-wrap-vertical {
    top: 38%;
    max-width: 700px; }
  @media only screen and (max-width: 768px) {
    div.page.ds-course-details #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-course-details #ds-hero {
      height: 320px; }
      div.page.ds-course-details #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 35px 0; }
        div.page.ds-course-details #ds-hero .ds-wrap-vertical h1 {
          margin-bottom: 15px; }
        div.page.ds-course-details #ds-hero .ds-wrap-vertical p {
          margin-top: 0;
          line-height: 140%; } }

div.page.ds-course-details #ds-course-details-content-1 {
  overflow: initial;
  margin-top: -170px; }
  div.page.ds-course-details #ds-course-details-content-1 .ds-details-wrap {
    background: black;
    color: white;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 100px 55px;
    overflow: hidden;
    z-index: 10; }
  div.page.ds-course-details #ds-course-details-content-1 hr {
    border: 0;
    border-bottom: 1px solid #2d2d2d;
    margin: 0 0 30px; }
  div.page.ds-course-details #ds-course-details-content-1 #form-course-download p {
    color: white;
    font-size: 16px; }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-top {
    max-width: 775px;
    margin-bottom: 25px;
    overflow: hidden; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top label {
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 14px;
      text-transform: uppercase;
      display: block;
      letter-spacing: 0.05em;
      line-height: 140%;
      margin-bottom: 5px;
      height: 25px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top h4 {
      font-family: 'BaskeMTIta' !important;
      font-weight: 100;
      font-size: 24px;
      color: white;
      text-transform: inherit;
      letter-spacing: 0; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-delivery .text-wrap {
      left: -5px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-location .text-wrap {
      left: -8px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-time h4 {
      white-space: nowrap; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-time .text-wrap {
      left: -12px; }
    @media only screen and (max-width: 1200px) {
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-time .text-wrap,
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-location .text-wrap,
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .col-delivery .text-wrap {
        left: inherit; } }
  div.page.ds-course-details #ds-course-details-content-1 .ds-timetable {
    overflow: hidden; }
    div.page.ds-course-details #ds-course-details-content-1 .ds-timetable > label {
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 14px;
      text-transform: uppercase;
      max-width: 80px;
      display: block;
      letter-spacing: 0.05em;
      line-height: 140%;
      margin-bottom: 10px; }
    div.page.ds-course-details #ds-course-details-content-1 .ds-timetable a {
      color: #fff; }
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable a:hover {
        text-decoration: none; }
    div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul {
      float: left;
      margin-bottom: 15px;
      display: table; }
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul .active-parent, div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul input[type="radio"]:checked + li, div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li.active {
        position: relative;
        border: 1px solid white; }
        div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul .active-parent:last-of-type, div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul input[type="radio"]:checked + li:last-of-type, div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li.active:last-of-type {
          border-right: 1px solid white; }
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul input[type="radio"]:checked + li {
        background: red; }
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li {
        list-style: none;
        border: 1px solid #737373;
        display: table-cell;
        border-right: 1px solid #000;
        width: 25.04%; }
        div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li label {
          padding: 10px 19px 6px;
          font-size: 14px;
          display: block;
          cursor: pointer; }
          div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li label:before {
            display: none; }
        div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li:last-of-type {
          border-right: 1px solid #737373; }
    @media only screen and (max-width: 1024px) {
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable {
        padding: 0 15px; } }
    @media only screen and (max-width: 768px) {
      div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul {
        width: 100%; }
        div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li {
          display: block;
          float: none;
          border-right: 1px solid #737373;
          width: inherit; }
          div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li:not(:first-child) {
            margin-left: 0;
            margin-top: -1px; }
          div.page.ds-course-details #ds-course-details-content-1 .ds-timetable ul li input[type="radio"]:checked + label {
            margin-left: -1px;
            margin-right: -1px; } }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle {
    overflow: hidden; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle label {
      font-family: 'TradeGothicLTStd-Cn18';
      color: #febe36;
      font-size: 14px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      display: block;
      margin-top: 20px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle h3 {
      color: #febe36;
      font-family: 'Mercury_Display_Bold';
      font-size: 36px;
      margin-top: -5px;
      margin-bottom: 40px;
      font-style: normal;
      letter-spacing: 0; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .ds-btn-grey {
      width: auto;
      height: auto;
      margin: 15px 5px 15px 20px;
      color: white;
      text-decoration: none;
      font-family: 'Oswald-Light';
      font-size: 14px;
      font-weight: 100;
      letter-spacing: 0.17em;
      padding: 7px 50px 7px 15px;
      text-transform: uppercase;
      display: block;
      line-height: inherit !important;
      text-align: left !important; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .ds-col-6:last-child {
      padding-top: 17px; }
  div.page.ds-course-details #ds-course-details-content-1 .ds-form-dark .course-detail-bottom {
    margin-left: -10px;
    margin-right: -10px; }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom label {
    font-family: 'TradeGothicLTStd-Cn18';
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 10px; }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom p {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 0.015em;
    margin-bottom: 28px;
    color: white; }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .form-field {
    padding: 0 10px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .form-field input {
      letter-spacing: 0.01em;
      padding: 8px 20px;
      line-height: 20px !important;
      height: 40px !important; }
  div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .ds-btn-black {
    border: 0;
    text-transform: uppercase;
    padding: 12px 52px 12px 5px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    width: auto;
    line-height: 110% !important; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-course-details #ds-course-details-content-1 {
      margin-top: 0; }
      div.page.ds-course-details #ds-course-details-content-1 .ds-details-wrap {
        padding: 40px 0 55px;
        max-width: none; }
      div.page.ds-course-details #ds-course-details-content-1 #form-course-download p {
        font-size: 14px;
        margin: 0 15px; } }
  @media only screen and (max-width: 768px) {
    div.page.ds-course-details #ds-course-details-content-1 hr {
      width: 92%;
      margin: 0 auto 30px; }
    div.page.ds-course-details #ds-course-details-content-1 .ds-details-wrap {
      padding: 35px 0 30px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top {
      margin-bottom: 0; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .ds-col-3 {
        width: 50%; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top label {
        font-size: 12px;
        max-width: none;
        height: auto;
        margin-bottom: 2px;
        letter-spacing: 0.07em; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top h4 {
        font-size: 20px;
        margin-bottom: 18px; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-top .ds-col-3 {
        padding-right: 0; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle {
      overflow: initial;
      height: auto; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle label {
        font-size: 12px; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle h3 {
        font-size: 24px;
        margin-bottom: 5px; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .ds-btn-grey {
        font-size: 14px;
        padding: 5px 15px 7px;
        height: auto;
        max-width: 300px;
        display: block;
        line-height: 140% !important;
        letter-spacing: 0.17em; }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .ds-col-6:last-child {
        margin-bottom: 35px;
        padding-top: 0; }
    div.page.ds-course-details #ds-course-details-content-1 .ds-form-dark .course-detail-bottom {
      margin: 0; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .form-field {
      padding: 0 15px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom label {
      font-size: 12px;
      margin-bottom: 13px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom p {
      font-size: 14px;
      line-height: 145%;
      margin-bottom: 15px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .ds-btn-black {
      font-size: 12px !important;
      letter-spacing: 0.17em; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-course-details #ds-course-details-content-1 .ds-details-wrap {
      padding: 35px 0 23px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-top {
      max-width: 275px; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .form-field input {
      padding: 23px 13px 17px;
      letter-spacing: -0.07em; }
    div.page.ds-course-details #ds-course-details-content-1 .course-detail-bottom .ds-btn-black {
      letter-spacing: 0.16em;
      padding: 2px 41px 5px 0; } }

div.page.ds-course-details #ds-course-details-content-2 {
  padding: 17px 0 65px; }
  div.page.ds-course-details #ds-course-details-content-2 .text-wrap {
    max-width: 660px; }
    div.page.ds-course-details #ds-course-details-content-2 .text-wrap p {
      margin-top: 0;
      font-size: 16px;
      letter-spacing: 0.016em;
      line-height: 150%; }
      div.page.ds-course-details #ds-course-details-content-2 .text-wrap p:last-child {
        margin-bottom: 0; }
    div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list {
      overflow: hidden;
      clear: both;
      display: block;
      margin-bottom: 45px; }
      div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list li {
        margin-bottom: 0; }
        div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list li a {
          margin: 32px 0 22px; }
          div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list li a.btn-toggle-head {
            text-transform: uppercase; }
  div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial h4 {
    font-family: 'TradeGothicLTStd-Cn18';
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 0.07em;
    margin: 30px 0 28px; }
  div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial p {
    font-family: 'BaskervilleMT-Italic';
    font-style: italic;
    font-size: 22px;
    /* font-family: 'BaskeMTIta'; */
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    line-height: 130%; }
  div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial hr {
    max-width: 75px;
    display: block;
    overflow: hidden;
    margin: 10px 0 30px;
    border-bottom: 2px solid;
    border-top: 0; }
  div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap {
    overflow: hidden;
    margin-bottom: 25px; }
    div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap img {
      display: inline-block;
      vertical-align: top; }
    div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap div {
      display: inline-block;
      padding: 20px 15px; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap div h5 {
        font-weight: 100;
        letter-spacing: 0.05em;
        font-size: 18px;
        text-transform: capitalize;
        color: black;
        margin-bottom: 3px;
        font-family: 'Baskerville-Reg';
        letter-spacing: 0.01em; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap div p {
        margin: 0;
        font-family: 'TradeGothicLTStd-Cn18';
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.07em;
        font-style: normal; }
  div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .ds-btn-white {
    padding-left: 0; }
  @media only screen and (max-width: 768px) {
    div.page.ds-course-details #ds-course-details-content-2 {
      padding: 5px 0 50px; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-row:last-child {
        padding-top: 40px; }
      div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list {
        margin-bottom: 22px; }
        div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list li a {
          margin: 32px 0 22px; }
        div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list li:last-child {
          border-bottom: 2px solid #f5f5f5; }
        div.page.ds-course-details #ds-course-details-content-2 .text-wrap .ds-toggle-list .ds-toggle-wrap .ds-toggle-content {
          padding: 5px 0 23px; }
      div.page.ds-course-details #ds-course-details-content-2 .text-wrap p {
        line-height: 115%; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial h4 {
        margin-bottom: 33px;
        font-size: 16px; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial p {
        font-size: 18px;
        line-height: 145%;
        margin-bottom: 35px; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .member-wrap div h5 {
        font-size: 16px;
        letter-spacing: 0.01em; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-col-testimonial .ds-btn-white {
        letter-spacing: 0.27em; }
      div.page.ds-course-details #ds-course-details-content-2 .ds-btn-black {
        font-size: 14px;
        max-width: 250px;
        display: inline-block;
        padding: 5px 14px;
        letter-spacing: 0.17em;
        line-height: 140%; } }

div.page.ds-faq #ds-hero {
  background-repeat: no-repeat;
  height: 400px;
  color: #febe36; }
  @media only screen and (max-width: 768px) {
    div.page.ds-faq #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-faq #ds-hero {
      height: 225px; }
      div.page.ds-faq #ds-hero .ds-wrap-vertical {
        top: 32%;
        padding: 0; } }

div.page.ds-faq #ds-faq-content {
  padding: 90px 0 45px; }
  div.page.ds-faq #ds-faq-content h1 {
    font-size: 40px; }
  div.page.ds-faq #ds-faq-content .ds-faq-wrap {
    margin: 0 auto;
    max-width: 750px; }
  @media only screen and (max-width: 480px) {
    div.page.ds-faq #ds-faq-content {
      padding: 27px 0; } }

.page.ds-the-facilitators #ds-hero {
  background-color: #797979;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px; }
  .page.ds-the-facilitators #ds-hero h1 {
    color: #febe36; }
  .page.ds-the-facilitators #ds-hero p {
    color: white; }
  .page.ds-the-facilitators #ds-hero .ds-wrap-vertical {
    max-width: 700px;
    top: 58%; }
  @media only screen and (max-width: 768px) {
    .page.ds-the-facilitators #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    .page.ds-the-facilitators #ds-hero {
      height: 200px; }
      .page.ds-the-facilitators #ds-hero h1 {
        margin-bottom: 10px; }
      .page.ds-the-facilitators #ds-hero p {
        margin-top: 0; }
      .page.ds-the-facilitators #ds-hero .ds-wrap-vertical {
        top: 36%;
        padding: 0; } }

.page.ds-the-facilitators #ds-intro {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 50px;
  padding: 30px 0 10px; }
  .page.ds-the-facilitators #ds-intro .ds-col-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 52px;
    background: black; }
  .page.ds-the-facilitators #ds-intro .ds-col-heading .text-wrap {
    padding: 27px 0 0;
    max-width: 380px; }
    .page.ds-the-facilitators #ds-intro .ds-col-heading .text-wrap h3 {
      font-size: 28px;
      font-weight: 100;
      font-family: 'Baskerville-Reg';
      letter-spacing: 0.01em;
      line-height: 130%;
      font-style: normal; }
  .page.ds-the-facilitators #ds-intro .ds-col-content .text-wrap {
    position: relative;
    left: -25px;
    padding: 5px 0; }
    .page.ds-the-facilitators #ds-intro .ds-col-content .text-wrap p {
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0.015em; }
  @media only screen and (max-width: 1200px) {
    .page.ds-the-facilitators #ds-intro .ds-col-content .text-wrap {
      left: inherit; } }
  @media only screen and (max-width: 1024px) {
    .page.ds-the-facilitators #ds-intro .ds-col-heading:before {
      left: 15px; } }
  @media only screen and (max-width: 768px) {
    .page.ds-the-facilitators #ds-intro .ds-col-heading:before {
      width: 60px; }
    .page.ds-the-facilitators #ds-intro .ds-col-heading .text-wrap {
      padding: 20px 0 0; }
      .page.ds-the-facilitators #ds-intro .ds-col-heading .text-wrap h3 {
        font-size: 20px;
        margin-bottom: 20px; }
    .page.ds-the-facilitators #ds-intro .ds-col-content .text-wrap {
      padding: 5px 0 10px; }
      .page.ds-the-facilitators #ds-intro .ds-col-content .text-wrap p {
        font-size: 14px;
        line-height: 145%;
        margin: 0; } }
  @media only screen and (max-width: 480px) {
    .page.ds-the-facilitators #ds-intro {
      padding: 20px 0 15px;
      margin-bottom: 10px; } }

.page.ds-the-facilitators .ds-row-facilitators, .page.ds-the-facilitators #ds-directors, .page.ds-the-facilitators #ds-speakers {
  margin-left: -0.5px;
  margin-right: -0.5px; }
  .page.ds-the-facilitators .ds-row-facilitators .ds-col-title h3, .page.ds-the-facilitators #ds-directors .ds-col-title h3, .page.ds-the-facilitators #ds-speakers .ds-col-title h3 {
    font-size: 34px;
    letter-spacing: 0.01em;
    margin-bottom: 55px;
    font-style: normal; }
  .page.ds-the-facilitators .ds-row-facilitators .grid-member, .page.ds-the-facilitators #ds-directors .grid-member, .page.ds-the-facilitators #ds-speakers .grid-member {
    padding-left: 0.5px;
    padding-right: 0.5px;
    padding-bottom: 1px; }
    .page.ds-the-facilitators .ds-row-facilitators .grid-member h2, .page.ds-the-facilitators #ds-directors .grid-member h2, .page.ds-the-facilitators #ds-speakers .grid-member h2 {
      position: absolute;
      color: white;
      bottom: 0;
      max-width: 200px;
      padding: 0 27px;
      margin-bottom: 20px;
      font-size: 48px;
      line-height: 115%; }
    .page.ds-the-facilitators .ds-row-facilitators .grid-member img, .page.ds-the-facilitators #ds-directors .grid-member img, .page.ds-the-facilitators #ds-speakers .grid-member img {
      display: block;
      height: auto;
      width: 100%; }
    .page.ds-the-facilitators .ds-row-facilitators .grid-member:nth-child(3n+4), .page.ds-the-facilitators #ds-directors .grid-member:nth-child(3n+4), .page.ds-the-facilitators #ds-speakers .grid-member:nth-child(3n+4) {
      clear: both; }
  @media only screen and (max-width: 768px) {
    .page.ds-the-facilitators .ds-row-facilitators .grid-member, .page.ds-the-facilitators #ds-directors .grid-member, .page.ds-the-facilitators #ds-speakers .grid-member {
      width: 50%; }
      .page.ds-the-facilitators .ds-row-facilitators .grid-member h2, .page.ds-the-facilitators #ds-directors .grid-member h2, .page.ds-the-facilitators #ds-speakers .grid-member h2 {
        font-size: 30px;
        max-width: 40%; }
      .page.ds-the-facilitators .ds-row-facilitators .grid-member:nth-child(3n+4), .page.ds-the-facilitators #ds-directors .grid-member:nth-child(3n+4), .page.ds-the-facilitators #ds-speakers .grid-member:nth-child(3n+4) {
        clear: initial; }
      .page.ds-the-facilitators .ds-row-facilitators .grid-member:nth-child(2n+1), .page.ds-the-facilitators #ds-directors .grid-member:nth-child(2n+1), .page.ds-the-facilitators #ds-speakers .grid-member:nth-child(2n+1) {
        clear: both; } }
  @media only screen and (max-width: 480px) {
    .page.ds-the-facilitators .ds-row-facilitators .ds-col-title h3, .page.ds-the-facilitators #ds-directors .ds-col-title h3, .page.ds-the-facilitators #ds-speakers .ds-col-title h3 {
      letter-spacing: 0;
      font-size: 16px;
      margin-bottom: 25px; }
    .page.ds-the-facilitators .ds-row-facilitators .grid-member h2, .page.ds-the-facilitators #ds-directors .grid-member h2, .page.ds-the-facilitators #ds-speakers .grid-member h2 {
      font-size: 20px;
      padding: 0 10px;
      margin-bottom: 7px; } }

.page.ds-the-facilitators #ds-directors {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 30px;
  padding: 15px 0 60px; }
  @media only screen and (max-width: 768px) {
    .page.ds-the-facilitators #ds-directors {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 12px; } }

.page.ds-the-facilitators #ds-speakers {
  margin-bottom: 0;
  padding: 15px 0 40px; }
  .page.ds-the-facilitators #ds-speakers .ds-col-title h3 {
    margin-bottom: 65px; }
  @media only screen and (max-width: 768px) {
    .page.ds-the-facilitators #ds-speakers {
      padding: 15px 0 60px; }
      .page.ds-the-facilitators #ds-speakers .ds-col-title h3 {
        margin-bottom: 35px; } }

div.page.ds-facilitators-detail #ds-hero {
  background-image: url(../img/facilitators/detail/banner-facilitator-detail.jpg);
  background-repeat: no-repeat;
  background-position: center;
  height: 640px; }

div.page.ds-facilitators-detail #ds-facilitator-content {
  padding: 40px 0; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-row-image {
    padding-top: 4px; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-left:before {
    content: '';
    display: block;
    height: 2px;
    width: 38px;
    background: black;
    margin-bottom: 15px;
    position: relative;
    left: 3px; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-left h2 {
    font-size: 48px;
    color: #febe36;
    letter-spacing: 0.01em;
    margin-bottom: 5px; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-left p {
    margin-top: 0;
    font-size: 28px;
    letter-spacing: 0.015em;
    line-height: 125%; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right {
    padding: 2px 0;
    margin-left: -11px; }
    div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right .text-wrap {
      position: relative;
      margin-top: 20px; }
    div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right p {
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0.020em;
      margin: 0 0 15px 4px; }
      div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right p.position {
        font-size: 27px;
        letter-spacing: 0.03em; }
  div.page.ds-facilitators-detail #ds-facilitator-content .ds-row-arrow {
    border-bottom: 1px solid #ccc;
    overflow: hidden; }
    div.page.ds-facilitators-detail #ds-facilitator-content .ds-row-arrow a {
      text-decoration: none;
      font-family: 'Oswald-Regular';
      color: black;
      font-size: 12px;
      letter-spacing: 0.19em;
      margin: 50px 0 35px;
      display: inline-block; }
      div.page.ds-facilitators-detail #ds-facilitator-content .ds-row-arrow a i {
        vertical-align: middle;
        margin-left: 10px; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right {
      padding: 0 15px; }
      div.page.ds-facilitators-detail #ds-facilitator-content .ds-col-right .text-wrap {
        left: inherit; } }

div.page.ds-facilitators-detail #ds-directors {
  padding: 23px 0 60px; }

div.page.ds-testimonials #ds-hero {
  background-image: url(../img/testimonial/banner-testimonial.jpg);
  background-repeat: no-repeat;
  height: 400px; }
  div.page.ds-testimonials #ds-hero h1 {
    color: #febe36; }
  div.page.ds-testimonials #ds-hero p {
    color: #ffffff; }
  div.page.ds-testimonials #ds-hero .ds-wrap-vertical {
    top: 58%;
    max-width: 700px; }
  @media only screen and (max-width: 768px) {
    div.page.ds-testimonials #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-testimonials #ds-hero {
      height: 200px; }
      div.page.ds-testimonials #ds-hero .ds-wrap-vertical {
        top: 37%;
        padding: 0; }
        div.page.ds-testimonials #ds-hero .ds-wrap-vertical h1 {
          margin-bottom: 10px; }
        div.page.ds-testimonials #ds-hero .ds-wrap-vertical p {
          margin-top: 0;
          line-height: 145%; } }

div.page.ds-testimonials #ds-row-testimonials {
  padding: 0; }

div.page.ds-testimonials #ds-testimonial-content {
  padding: 80px 0 45px; }
  div.page.ds-testimonials #ds-testimonial-content .ds-col-grid {
    margin-bottom: 20px;
    padding: 0 10px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:nth-child(4n-2) .testimonial-image, div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:nth-child(4n-3) .testimonial-image {
      padding-bottom: 100%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:nth-child(4n) .testimonial-image, div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:nth-child(4n-1) .testimonial-image, div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:first-child .testimonial-image {
      padding-bottom: 57%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid img {
      width: 100%;
      height: auto; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .testimonial-image {
      padding-bottom: 60%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .hover,
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .normal {
      position: absolute;
      text-align: center;
      margin: 0 auto;
      left: 10px;
      right: 10px;
      top: 0;
      bottom: 0;
      transition: opacity .3s linear; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .hover {
      opacity: 0; }
      div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .hover h4 {
        color: #febe36; }
      div.page.ds-testimonials #ds-testimonial-content .ds-col-grid .hover p.class-name {
        margin-bottom: 50px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:hover .hover {
      background-color: rgba(0, 0, 0, 0.5);
      opacity: 1; }
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid:hover .normal {
      opacity: 0; }
  div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical a {
      color: white;
      text-decoration: none; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical h4 {
      font-size: 24px;
      letter-spacing: 0.03em;
      margin-bottom: 5px;
      color: #ffffff; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical p {
      font-size: 20px;
      color: #ffffff;
      margin: 0 75px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical p.class-name {
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 16px;
      letter-spacing: 0.1em;
      margin: 0 50px 20px;
      color: #ffffff;
      text-transform: uppercase; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical .icon-video {
      height: 30px;
      width: 30px; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-testimonials #ds-testimonial-content {
      padding: 40px 10px; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-testimonials #ds-testimonial-content .ds-col-grid {
      max-height: 200px;
      overflow: hidden;
      margin-bottom: 20px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical h4 {
      font-size: 20px;
      margin-bottom: 5px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical p {
      font-size: 12px;
      margin-bottom: 5px; }
    div.page.ds-testimonials #ds-testimonial-content .ds-wrap-vertical .icon-video {
      height: 20px;
      width: 20px; } }

div.page.ds-student-news .ds-mobile-menu-wrap {
  display: none; }

div.page.ds-student-news #ds-hero {
  background-image: url(../img/news/banner-student-news.jpg);
  background-repeat: no-repeat;
  height: 400px; }
  div.page.ds-student-news #ds-hero h1 {
    color: #febe36; }
  div.page.ds-student-news #ds-hero p {
    color: #ffffff; }
  div.page.ds-student-news #ds-hero .ds-wrap-vertical {
    top: 58%;
    max-width: 700px; }
  @media only screen and (max-width: 768px) {
    div.page.ds-student-news #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-student-news #ds-hero {
      height: 200px; }
      div.page.ds-student-news #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 33px 0; }
        div.page.ds-student-news #ds-hero .ds-wrap-vertical h1 {
          margin-bottom: 10px; }
        div.page.ds-student-news #ds-hero .ds-wrap-vertical p {
          margin-top: 0;
          line-height: 140%; } }

div.page.ds-student-news #ds-student-news-content .ds-pagination {
  float: right;
  font-size: 14px;
  font-family: 'Baskerville-Reg';
  margin: 30px 30px 35px;
  letter-spacing: 0.07em; }
  div.page.ds-student-news #ds-student-news-content .ds-pagination:last-of-type {
    margin-top: 0; }
  div.page.ds-student-news #ds-student-news-content .ds-pagination a {
    margin-left: 5px; }
    div.page.ds-student-news #ds-student-news-content .ds-pagination a .icon-arrow-black {
      -webkit-transform: rotate(-90deg) translate3d(0, 0, 0);
      transform: rotate(-90deg);
      vertical-align: top; }

div.page.ds-student-news #ds-student-news-content img {
  display: block;
  width: 100%;
  height: auto; }

div.page.ds-student-news #ds-student-news-content .ds-first-row {
  overflow: hidden; }

div.page.ds-student-news #ds-student-news-content .ds-news-post {
  overflow: hidden;
  padding: 0 15px;
  margin-bottom: 30px;
  float: left;
  width: 33.33333%;
  box-sizing: border-box; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-post-container {
    height: 522px;
    position: relative; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-image {
    height: 60%;
    background-size: cover; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-text {
    background: #d8d8d8;
    height: 40%;
    position: absolute; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap {
    padding: 20px 33px 35px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap label {
      letter-spacing: 0.07em;
      margin-bottom: 15px;
      display: block;
      font-family: 'TradeGothicLTStd-Cn18';
      text-transform: uppercase;
      font-size: 14px; }
      div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap label:before {
        content: '';
        background: black;
        height: 2px;
        width: 20px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap p {
      font-size: 20px;
      font-family: 'Mercury_Display_Bold';
      line-height: 150%;
      margin: 0 0 50px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap .ds-btn-black {
      position: absolute;
      bottom: 35px;
      left: 35px; }

div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 {
  width: 66.66667%; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 .ds-image {
    height: 100%;
    width: 50%; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 .ds-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 50%;
    background: #d8d8d8;
    width: auto;
    height: auto; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 .text-wrap {
    padding: 50px 35px 35px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 .text-wrap p {
      margin: 0 40px 0; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post-home-0 .text-wrap .ds-btn-black {
      left: 75px; }

div.page.ds-student-news #ds-student-news-content .ds-news-post-home-3 {
  width: 66.66667%; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post-home-3 .ds-image {
    height: 100%;
    width: 100%; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post-home-3 .ds-text {
    position: absolute;
    top: 60%;
    bottom: 0;
    right: 0;
    left: 25%;
    background: #d8d8d8;
    width: auto;
    height: auto; }

@media only screen and (max-width: 1024px) {
  div.page.ds-student-news #ds-student-news-content .ds-pagination {
    width: 100%;
    text-align: right;
    padding: 0 15px; }
  div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap {
    padding: 20px 33px 35px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap p {
      font-size: 18px;
      font-family: 'Mercury_Display_Bold';
      line-height: 150%;
      margin: 0 0 50px; } }

@media only screen and (max-width: 980px) {
  div.page.ds-student-news #ds-student-news-content .ds-news-post {
    width: 50%; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-image {
      height: 60%;
      width: 100%;
      background-size: cover; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-text {
      background: #d8d8d8;
      height: 40%;
      top: 60%;
      left: 0;
      position: absolute; } }

@media only screen and (max-width: 600px) {
  div.page.ds-student-news #ds-student-news-content .ds-news-post {
    width: 50%;
    padding: 10px; } }

@media only screen and (max-width: 500px) {
  div.page.ds-student-news #ds-student-news-content .ds-news-post {
    width: 100%;
    padding: 20px;
    margin-bottom: 0px;
    height: auto; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-post-container {
      height: auto; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-image {
      position: relative;
      height: 220px; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .ds-text {
      position: relative;
      height: auto;
      top: auto; }
    div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap {
      padding: 20px;
      height: auto; }
      div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap p {
        font-size: 16px;
        font-family: 'Mercury_Display_Bold';
        line-height: 150%;
        margin: 0 0 20px; }
      div.page.ds-student-news #ds-student-news-content .ds-news-post .text-wrap .ds-btn-black {
        position: relative;
        left: 0;
        bottom: auto; } }

@media only screen and (max-width: 480px) {
  div.page.ds-student-news #ds-student-news-content .ds-pagination {
    margin: 18px 15px 16px;
    padding: 0; }
  div.page.ds-student-news #ds-student-news-content .col-grid {
    max-width: 390px;
    margin: 0 auto;
    float: none;
    width: 100%; } }

.page.ds-student-news-detail #ds-hero {
  height: 400px;
  background-image: url(../img/student-news/banner-student-spotlight-d.jpg);
  background-repeat: no-repeat; }
  .page.ds-student-news-detail #ds-hero .ds-wrap-vertical {
    top: 56%; }
    .page.ds-student-news-detail #ds-hero .ds-wrap-vertical h1 {
      margin-bottom: 14px;
      color: #febe36; }
    .page.ds-student-news-detail #ds-hero .ds-wrap-vertical p {
      color: white;
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 30px;
      margin-top: 0;
      text-transform: uppercase;
      letter-spacing: 0.068em;
      max-width: none;
      text-transform: uppercase; }
  @media only screen and (max-width: 768px) {
    .page.ds-student-news-detail #ds-hero .ds-wrap-vertical {
      padding: 0; } }

.page.ds-student-news-detail #ds-student-news-content {
  padding: 40px 0 60px; }
  .page.ds-student-news-detail #ds-student-news-content .text-wrap {
    max-width: 750px;
    margin: 0 auto; }
    .page.ds-student-news-detail #ds-student-news-content .text-wrap:first-child:before {
      content: '';
      height: 2px;
      width: 40px;
      background: black;
      display: block;
      margin-bottom: 30px; }
  .page.ds-student-news-detail #ds-student-news-content .owl-carousel {
    margin-bottom: 30px;
    padding: 0; }
    .page.ds-student-news-detail #ds-student-news-content .owl-carousel img {
      height: auto;
      width: auto;
      margin: 0 auto; }
    .page.ds-student-news-detail #ds-student-news-content .owl-carousel .item {
      text-align: center; }
    .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-pagination,
    .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-dots {
      text-align: center;
      padding: 7px 0; }
      .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-pagination .owl-page,
      .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-pagination .owl-dot,
      .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-dots .owl-page,
      .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-dots .owl-dot {
        height: 2px;
        display: inline-block;
        width: 40px;
        background: #CCCCCC;
        margin: 0 5px; }
        .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-pagination .owl-page.active,
        .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-pagination .owl-dot.active,
        .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-dots .owl-page.active,
        .page.ds-student-news-detail #ds-student-news-content .owl-carousel .owl-dots .owl-dot.active {
          background: black; }
  .page.ds-student-news-detail #ds-student-news-content h3 {
    font-family: 'Baskerville-Reg';
    font-weight: 100;
    font-size: 28px;
    letter-spacing: 0.013em;
    margin-bottom: 70px;
    font-style: normal; }
  .page.ds-student-news-detail #ds-student-news-content h4 {
    font-family: 'TradeGothicLTStd-Cn18';
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.066em;
    margin-bottom: 10px; }
  .page.ds-student-news-detail #ds-student-news-content p {
    font-size: 16px;
    margin-top: 0;
    letter-spacing: 0.017em;
    margin: 0 0 30px;
    line-height: 150%; }

div.page.ds-contact #ds-hero {
  background-image: url(../img/contact/banner-contact.jpg);
  background-repeat: no-repeat;
  height: 640px; }
  div.page.ds-contact #ds-hero .ds-wrap-vertical {
    top: 36%;
    max-width: 700px; }
    div.page.ds-contact #ds-hero .ds-wrap-vertical h1 {
      color: #febe36; }
    div.page.ds-contact #ds-hero .ds-wrap-vertical p {
      color: #ffffff;
      margin: 0;
      line-height: 105%;
      letter-spacing: 0.02em;
      font-size: 20px; }
      div.page.ds-contact #ds-hero .ds-wrap-vertical p a {
        text-decoration: none;
        color: #febe36; }
        div.page.ds-contact #ds-hero .ds-wrap-vertical p a.tel span {
          font-family: 'Oswald-Light';
          font-weight: normal;
          font-size: 16px;
          letter-spacing: 0.08em; }
        div.page.ds-contact #ds-hero .ds-wrap-vertical p a:not(.tel) {
          border-bottom: 2px solid;
          font-family: 'Oswald-Light';
          font-weight: normal;
          font-size: 18px;
          letter-spacing: 0.03em; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-contact #ds-hero .ds-wrap-vertical {
      top: 50%; } }
  @media only screen and (max-width: 768px) {
    div.page.ds-contact #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-contact #ds-hero {
      height: 200px; }
      div.page.ds-contact #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 35px 0; }
        div.page.ds-contact #ds-hero .ds-wrap-vertical h1 {
          margin-bottom: 5px; }
        div.page.ds-contact #ds-hero .ds-wrap-vertical p {
          margin-top: 0;
          font-size: 14px;
          line-height: 125%;
          letter-spacing: 0.03em; }
          div.page.ds-contact #ds-hero .ds-wrap-vertical p a.tel span {
            font-size: 14px;
            letter-spacing: -0.02em; }
          div.page.ds-contact #ds-hero .ds-wrap-vertical p a:not(.tel) {
            font-size: 14px; } }

div.page.ds-contact #ds-form-request {
  background: black;
  color: white;
  max-width: 755px;
  margin: -240px auto 0;
  padding: 25px 95px 30px;
  min-height: 423px; }
  div.page.ds-contact #ds-form-request label {
    font-family: 'TradeGothicLTStd-Cn18';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 140%;
    margin-bottom: 10px;
    display: block; }
  div.page.ds-contact #ds-form-request p {
    color: white;
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 0.015em;
    margin-bottom: 30px; }
  div.page.ds-contact #ds-form-request .ds-form-dark .ds-row {
    margin-left: -10px;
    margin-right: -10px; }
  div.page.ds-contact #ds-form-request .ds-form-dark .form-field {
    padding: 0 10px; }
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error input::-webkit-input-placeholder,
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error textarea::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: red; }
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error input::-moz-placeholder,
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error textarea::-moz-placeholder {
      /* Firefox 19+ */
      color: red; }
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error input:-ms-input-placeholder,
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error textarea:-ms-input-placeholder {
      /* IE 10+ */
      color: red; }
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error input:-moz-placeholder,
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field.error textarea:-moz-placeholder {
      /* Firefox 18- */
      color: red; }
    div.page.ds-contact #ds-form-request .ds-form-dark .form-field input {
      height: 40px !important;
      padding: 4px 20px 0;
      letter-spacing: 0.01em; }
      div.page.ds-contact #ds-form-request .ds-form-dark .form-field input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: white; }
      div.page.ds-contact #ds-form-request .ds-form-dark .form-field input::-moz-placeholder {
        /* Firefox 19+ */
        color: white; }
      div.page.ds-contact #ds-form-request .ds-form-dark .form-field input:-ms-input-placeholder {
        /* IE 10+ */
        color: white; }
      div.page.ds-contact #ds-form-request .ds-form-dark .form-field input:-moz-placeholder {
        /* Firefox 18- */
        color: white; }
  div.page.ds-contact #ds-form-request .ds-form-dark .ds-btn-grey {
    padding: 10px 6px 7px 17px;
    font-size: 14px;
    font-family: 'TradeGothicLTStd-Cn18';
    line-height: normal !important;
    text-align: left !important;
    width: 110px;
    letter-spacing: 0.17em;
    height: 37px; }
    div.page.ds-contact #ds-form-request .ds-form-dark .ds-btn-grey:after {
      margin: 0 10px;
      height: 12px;
      width: 8px; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-contact #ds-form-request {
      margin-top: 0;
      padding: 25px 0 30px;
      max-width: none;
      min-height: inherit; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-contact #ds-form-request {
      padding: 30px 0 25px; }
      div.page.ds-contact #ds-form-request label {
        margin-bottom: 5px;
        letter-spacing: 0.07em; }
      div.page.ds-contact #ds-form-request p {
        letter-spacing: 0.015em;
        font-size: 14px;
        margin-bottom: 23px; }
      div.page.ds-contact #ds-form-request .ds-form-dark input,
      div.page.ds-contact #ds-form-request .ds-form-dark textarea {
        font-size: 14px; }
      div.page.ds-contact #ds-form-request .ds-form-dark textarea {
        height: 100px; }
      div.page.ds-contact #ds-form-request .ds-form-dark .ds-btn-grey {
        font-size: 12px !important;
        padding: 8px 6px 7px 8px;
        height: 35px !important;
        width: 100px;
        letter-spacing: 0.1em; } }

div.page.ds-contact #ds-contact-location {
  padding: 55px 0 0; }
  div.page.ds-contact #ds-contact-location .text-wrap {
    margin: 0 auto;
    max-width: 950px; }
    div.page.ds-contact #ds-contact-location .text-wrap h1 {
      color: #febe36; }
    div.page.ds-contact #ds-contact-location .text-wrap p {
      max-width: 700px;
      margin-bottom: 50px; }
  div.page.ds-contact #ds-contact-location #ds-map {
    width: 100%;
    height: 445px; }
  div.page.ds-contact #ds-contact-location .ds-address {
    width: 415px;
    padding: 45px 30px 38px;
    background: black;
    color: white;
    right: 0;
    bottom: 0; }
    div.page.ds-contact #ds-contact-location .ds-address .line {
      position: absolute;
      display: inline-block;
      height: 2px;
      width: 20px;
      background: white;
      vertical-align: middle;
      margin: 10px 0; }
    div.page.ds-contact #ds-contact-location .ds-address .address-options {
      margin-left: 50px;
      margin-bottom: 27px;
      border-bottom: 1px solid #2d2d2d;
      max-width: 325px; }
      div.page.ds-contact #ds-contact-location .ds-address .address-options label {
        transition: color 0.3s ease-in-out;
        font-size: 12px;
        text-transform: uppercase;
        font-family: 'Oswald-Regular';
        letter-spacing: 0.18em;
        display: inline-block;
        margin: 0 25px 0px 0;
        cursor: pointer;
        position: relative;
        bottom: -1px;
        padding-bottom: 2px;
        color: #6f6f6f; }
        div.page.ds-contact #ds-contact-location .ds-address .address-options label.active {
          color: white;
          border-bottom: 1px solid; }
        div.page.ds-contact #ds-contact-location .ds-address .address-options label:hover {
          color: white; }
    div.page.ds-contact #ds-contact-location .ds-address ul {
      font-size: 14px;
      padding-left: 50px;
      letter-spacing: 0.025em;
      line-height: 26px; }
      div.page.ds-contact #ds-contact-location .ds-address ul li {
        list-style: none; }
        div.page.ds-contact #ds-contact-location .ds-address ul li span {
          font-family: 'Oswald-Regular';
          letter-spacing: 0; }
  @media only screen and (max-width: 1024px) {
    div.page.ds-contact #ds-contact-location .ds-address {
      left: 15px; } }
  @media only screen and (max-width: 768px) {
    div.page.ds-contact #ds-contact-location .ds-address {
      position: relative;
      width: 100%;
      left: 0; }
    div.page.ds-contact #ds-contact-location .ds-col-map,
    div.page.ds-contact #ds-contact-location .ds-col-address {
      padding: 0;
      width: 100%; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-contact #ds-contact-location {
      padding: 30px 0 0; }
      div.page.ds-contact #ds-contact-location .ds-address {
        left: 0;
        width: auto;
        padding: 20px 20px 20px; }
        div.page.ds-contact #ds-contact-location .ds-address label {
          margin-bottom: 10px; }
          div.page.ds-contact #ds-contact-location .ds-address label:before {
            margin-bottom: 13px;
            display: block;
            width: 40px; }
        div.page.ds-contact #ds-contact-location .ds-address ul {
          margin: 0; }
          div.page.ds-contact #ds-contact-location .ds-address ul li {
            margin-top: 3px; }
      div.page.ds-contact #ds-contact-location .text-wrap h1 {
        font-size: 30px;
        margin-bottom: 10px; }
      div.page.ds-contact #ds-contact-location .text-wrap p {
        line-height: 145%;
        margin-bottom: 25px; }
      div.page.ds-contact #ds-contact-location #ds-map {
        height: 200px; } }

.page.ds-terms #ds-hero .ds-wrap-vertical {
  max-width: 700px; }

.page.ds-terms .ds-col-sidebar {
  padding-top: 55px; }
  .page.ds-terms .ds-col-sidebar ul li a {
    font-family: 'TradeGothicLT-CondEighteen';
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.01em; }
    .page.ds-terms .ds-col-sidebar ul li a:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      background: black;
      height: 2px;
      width: 20px;
      margin-right: 10px;
      margin-top: -3px; }
  .page.ds-terms .ds-col-sidebar ul li:first-of-type a {
    border-top: 1px solid #ddd; }
  .page.ds-terms .ds-col-sidebar ul li.active a {
    color: #febe36; }
    .page.ds-terms .ds-col-sidebar ul li.active a:before {
      background: #febe36; }
  @media only screen and (max-width: 768px) {
    .page.ds-terms .ds-col-sidebar {
      display: none; } }

.page.ds-terms #ds-terms {
  font-family: 'Baskerville-Reg';
  padding: 45px 0;
  font-size: 16px;
  color: black; }
  .page.ds-terms #ds-terms h3 {
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 0; }
  .page.ds-terms #ds-terms p {
    font-size: 16px;
    color: #737373; }
  .page.ds-terms #ds-terms strong {
    font-family: 'TradeGothicLT-CondEighteen';
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 30px;
    display: block;
    color: black; }
  .page.ds-terms #ds-terms ul, .page.ds-terms #ds-terms ol {
    padding-left: 15px; }
    .page.ds-terms #ds-terms ul li, .page.ds-terms #ds-terms ol li {
      list-style-type: disc;
      margin-bottom: 1em;
      color: #737373; }
    .page.ds-terms #ds-terms ul.sublist, .page.ds-terms #ds-terms ol.sublist {
      padding: 0 0 0 1.5em; }
      .page.ds-terms #ds-terms ul.sublist li, .page.ds-terms #ds-terms ol.sublist li {
        list-style: none; }

div.page.ds-timetable #ds-hero {
  background-repeat: no-repeat;
  height: 400px;
  color: white; }
  div.page.ds-timetable #ds-hero .ds-wrap-vertical {
    top: 58%; }
    div.page.ds-timetable #ds-hero .ds-wrap-vertical h1 {
      color: #febe36; }
    div.page.ds-timetable #ds-hero .ds-wrap-vertical p {
      max-width: 700px;
      color: white; }
  @media only screen and (max-width: 768px) {
    div.page.ds-timetable #ds-hero .ds-wrap-vertical {
      padding: 30px 0; } }
  @media only screen and (max-width: 480px) {
    div.page.ds-timetable #ds-hero {
      height: 200px; }
      div.page.ds-timetable #ds-hero .ds-wrap-vertical {
        top: inherit;
        -webkit-transform: translateY(0%);
        transform: translateY(0%); } }

div.page.ds-timetable #ds-courselist {
  padding-bottom: 50px; }
  div.page.ds-timetable #ds-courselist .ds-sidebar .ds-sidebar-head {
    font-family: 'TradeGothicLTStd-Cn18';
    text-transform: uppercase;
    font-size: 16px;
    margin: 35px 0 15px;
    letter-spacing: 0.013em; }
  div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group {
    border-top: 2px solid #f5f5f5;
    padding: 15px 0 0;
    max-width: 235px; }
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group.filter-date {
      padding: 15px 0 12px; }
      div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group.filter-date ul.ds-toggle-content {
        max-width: 175px;
        -webkit-column-count: 2;
        /* Chrome, Safari, Opera */
        -moz-column-count: 2;
        /* Firefox */
        column-count: 2; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group.filter-date ul.ds-toggle-content li {
          margin-bottom: 9px;
          min-height: 23px; }
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group.filter-class ul.ds-toggle-content li {
      min-height: 30px; }
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head {
      display: none; }
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group h4 {
      font-family: 'TradeGothicLTStd-Cn18';
      text-transform: uppercase;
      font-weight: 100;
      font-size: 15px;
      margin-bottom: 15px; }
      div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group h4:before {
        content: '';
        vertical-align: middle;
        display: inline-block;
        height: 2px;
        width: 20px;
        background: black;
        margin-right: 10px; }
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul {
      max-width: 215px;
      padding: 0;
      margin: 0; }
      div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li {
        list-style: none;
        margin-bottom: 14px;
        position: relative; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li label {
          text-decoration: none;
          color: black;
          font-family: 'Baskerville-Reg';
          font-size: 14px;
          padding-left: 28px;
          letter-spacing: 0.1em;
          display: block;
          line-height: 140%;
          letter-spacing: 0.07em; }
          div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li label:before {
            content: '';
            height: 12px;
            width: 12px;
            background: #939498;
            display: inline-block;
            vertical-align: middle;
            left: 0px; }
          div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li label input {
            display: none; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul li.active label:before {
          background: #febe36; }
  div.page.ds-timetable #ds-courselist .ds-list-content .ds-pagination {
    font-family: 'BaskeMTIta';
    font-size: 14px;
    color: #666;
    margin: 30px 0 0;
    letter-spacing: 0.07em;
    display: inline-block; }
  div.page.ds-timetable #ds-courselist .ds-list-content #pagin {
    margin: 0 15px;
    padding: 0;
    display: inline-block; }
    div.page.ds-timetable #ds-courselist .ds-list-content #pagin li {
      list-style: none;
      display: inline-block; }
      div.page.ds-timetable #ds-courselist .ds-list-content #pagin li a {
        text-decoration: none;
        color: black;
        font-family: 'BaskeMTIta';
        font-size: 14px;
        color: #666;
        letter-spacing: 0.07em; }
      div.page.ds-timetable #ds-courselist .ds-list-content #pagin li.active a {
        color: #febe36; }
      div.page.ds-timetable #ds-courselist .ds-list-content #pagin li:after {
        content: ',';
        margin: 0 5px; }
      div.page.ds-timetable #ds-courselist .ds-list-content #pagin li:last-child:after {
        display: none; }
  div.page.ds-timetable #ds-courselist .ds-list-content #ds-list-grid {
    margin-top: 30px; }
  div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid {
    margin-bottom: 30px; }
    div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid:nth-child(2n+1) {
      clear: both; }
    div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail {
      background-size: cover;
      height: 200px; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail h4 {
        font-size: 36px;
        color: white;
        bottom: 0;
        text-transform: none;
        margin: 20px 30px;
        line-height: 115%;
        letter-spacing: 0; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-thumbnail:before {
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.4); }
    div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content {
      background: #e4e4e4;
      min-height: 240px;
      padding: 22px 30px 120px;
      height: 240px; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div {
        color: black;
        font-size: 16px;
        letter-spacing: 0.017em; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div.ds-row {
          margin-bottom: 16px;
          overflow: hidden; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div.content-top {
          min-height: 95px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div.content-middle {
          min-height: 30px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div.content-bottom {
          min-height: 70px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div label {
          font-family: 'Oswald-Regular';
          font-weight: 100;
          text-transform: uppercase;
          font-size: 11px;
          letter-spacing: 0.2em;
          color: black;
          margin-right: 70px;
          display: inline-block; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content div p {
          font-size: 16px;
          line-height: 150%;
          letter-spacing: 0.02em;
          margin: 0 0 0 10px; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black {
        bottom: 70px;
        left: 30px;
        text-transform: uppercase;
        width: 115px;
        padding-right: 10px; }
  @media only screen and (min-width: 1200px) {
    div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul {
      display: block !important; } }
  @media only screen and (max-width: 1024px) {
    div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content {
      padding: 29px 15px 150px; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row {
        margin-left: -15px;
        margin-right: -15px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row p {
          margin: 0; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row .ds-col-9,
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row .ds-col-3 {
          width: 100%; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row.content-top {
          min-height: 120px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row.content-middle {
          min-height: 40px; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-row.content-bottom {
          min-height: 75px; }
      div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black {
        left: 15px; } }
  @media only screen and (max-width: 768px) {
    div.page.ds-timetable #ds-courselist {
      padding: 0; }
      div.page.ds-timetable #ds-courselist .ds-sidebar .ds-sidebar-head {
        margin: 17px 0 8px;
        font-size: 12px;
        letter-spacing: 0.07em; }
      div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group {
        max-width: inherit;
        padding: 0;
        border: 1px solid #979797;
        margin-bottom: 10px; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head {
          display: block;
          text-decoration: none;
          color: black;
          font-family: 'TradeGothicLTStd-Cn18';
          font-size: 12px;
          text-transform: uppercase;
          letter-spacing: 0.07em;
          padding: 7px 10px 5px;
          display: block; }
          div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head.active .indication:after {
            display: none; }
          div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication {
            position: relative;
            float: right;
            margin-right: 10px; }
            div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication:before {
              -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
              transform: rotate(0deg);
              content: '';
              position: absolute;
              height: 2px;
              width: 15px;
              background: #d8d8d8;
              top: 10px; }
            div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group .btn-toggle-head .indication:after {
              -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
              transform: rotate(90deg);
              content: '';
              position: absolute;
              height: 2px;
              width: 15px;
              top: 10px;
              left: 0;
              background: #d8d8d8; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group h4,
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul {
          display: none; }
        div.page.ds-timetable #ds-courselist .ds-sidebar .filter-group ul {
          padding: 10px; }
      div.page.ds-timetable #ds-courselist .ds-list-content {
        padding: 0; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-pagination {
          padding: 0 0 0 15px;
          margin: 10px 0; }
        div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid {
          margin-bottom: 0;
          padding: 0; }
          div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content {
            padding: 29px 15px 45px;
            height: auto; }
            div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content h4 {
              font-size: 18px; }
            div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content p {
              font-size: 14px;
              margin-bottom: 23px; }
            div.page.ds-timetable #ds-courselist .ds-list-content .ds-grid .ds-content .ds-btn-black {
              padding: 10px 50px 10px 9px;
              position: relative;
              bottom: 0;
              left: 0; } }

#ds-hero {
  background-color: #CCCCCC; }

body.design-school header .header-top ul.header-top-left li {
  margin-right: 5px; }
  body.design-school header .header-top ul.header-top-left li.link-designschool {
    display: none; }
  body.design-school header .header-top ul.header-top-left li.link-coco {
    display: inline-block; }

body.design-school header .header-top ul.header-top-right li a {
  font-family: 'TradeGothicLTStd-Cn18';
  letter-spacing: 0.017em;
  font-size: 16px; }

body.design-school header .header-top ul.header-top-right li.link-learning {
  border-right: 0; }
  body.design-school header .header-top ul.header-top-right li.link-learning a {
    padding: 0 10px; }

body.design-school header .header-bottom .brand.brand-designschool {
  background-image: url(../img/logo-designschool.png);
  display: inline-block;
  display: inline-block;
  margin-top: -15px;
  width: 265px;
  height: 45px; }

body.design-school header .header-bottom .brand.coco {
  display: none; }

body.design-school header .header-bottom ul.design-school-menu {
  display: block;
  visibility: visible; }

body.design-school #ds-header {
  display: block;
  visibility: visible; }

body.design-school .header-container-mobile {
  background: white; }

body.design-school .header-container3 {
  background: transparent !important; }
  body.design-school .header-container3 .hp-blocks-holder {
    transition: border-bottom 0.5s ease-in-out;
    border-bottom: 0; }

@media only screen and (max-width: 768px) {
  body.design-school .header-container {
    background: white; } }

#ds-header {
  transition: all 0.4s ease-in-out;
  left: 0;
  right: 0;
  z-index: 40;
  height: 70px;
  left: 0;
  right: 0;
  top: 176px;
  padding-left: 95px;
  max-width: 1045px;
  margin: 0 auto; }
  #ds-header.header-scrolled {
    top: 134px; }
  #ds-header .ds-desktop-menu-wrap {
    width: 100%; }
  #ds-header .ds-wrap-logo {
    background: #ffffff;
    float: left;
    text-align: left;
    padding: 10px 10px 3px;
    width: 13%;
    max-width: 130px;
    height: 70px; }
    #ds-header .ds-wrap-logo .ds-logo {
      background-image: url(../img/CRDS_logo_without_TM.png);
      background-repeat: no-repeat;
      height: 50px;
      width: 100px;
      display: inline-block; }
  #ds-header .ds-wrap-menu {
    float: left;
    background: #febe36;
    width: 70px;
    display: inline-block;
    height: 70px;
    position: relative;
    z-index: 1; }
    #ds-header .ds-wrap-menu .ds-toggle-menu {
      text-decoration: none;
      width: 30px;
      display: block;
      padding: 29px 20px;
      overflow: hidden;
      float: right; }
      #ds-header .ds-wrap-menu .ds-toggle-menu span {
        transition: all 0.5s ease-in-out;
        background: black;
        display: block;
        width: 30px;
        height: 2px;
        border-radius: 2px;
        margin: 0 0 3px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer; }
        #ds-header .ds-wrap-menu .ds-toggle-menu span:nth-child(1) {
          top: 27px;
          -webkit-transform-origin: left center;
          transform-origin: left center; }
        #ds-header .ds-wrap-menu .ds-toggle-menu span:nth-child(2) {
          top: 32px;
          -webkit-transform-origin: left center;
          transform-origin: left center; }
        #ds-header .ds-wrap-menu .ds-toggle-menu span:nth-child(3) {
          top: 37px;
          -webkit-transform-origin: left center;
          transform-origin: left center; }
      #ds-header .ds-wrap-menu .ds-toggle-menu.active span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
        transform: rotate(45deg);
        top: 23px;
        left: 26px; }
      #ds-header .ds-wrap-menu .ds-toggle-menu.active span:nth-child(2) {
        width: 0%;
        opacity: 0; }
      #ds-header .ds-wrap-menu .ds-toggle-menu.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
        transform: rotate(-45deg);
        top: 44px;
        left: 26px; }
    #ds-header .ds-wrap-menu ul {
      padding: 0;
      margin: 25px 5px;
      max-width: 92%; }
      #ds-header .ds-wrap-menu ul li {
        display: inline-block;
        list-style: none;
        margin-left: 13px;
        height: 22px;
        float: left; }
        #ds-header .ds-wrap-menu ul li.menu-item-active a, #ds-header .ds-wrap-menu ul li.active a {
          color: black; }
        #ds-header .ds-wrap-menu ul li .link-inherit-style, #ds-header .ds-wrap-menu ul li a, #ds-header .ds-wrap-menu ul li a span {
          font-weight: bold;
          text-decoration: none;
          font-size: 13px;
          text-transform: uppercase;
          letter-spacing: 0.07em;
          color: #ffffff;
          display: inline-block;
          font-family: 'TradeGothicLT-CondEighteen';
          -webkit-font-smoothing: subpixel-antialiased; }
        #ds-header .ds-wrap-menu ul li a:hover {
          color: black !important; }
        #ds-header .ds-wrap-menu ul li.list-login {
          vertical-align: middle; }
          #ds-header .ds-wrap-menu ul li.list-login a {
            padding: 0 15px 0 30px;
            margin-right: 0;
            border-left: 1px solid white;
            border-right: 1px solid white;
            line-height: 13px;
            float: left;
            display: inline-block;
            margin: 5px 0;
            height: 11px; }
            #ds-header .ds-wrap-menu ul li.list-login a:before {
              content: '';
              background-image: url(../img/lock.png);
              background-repeat: no-repeat;
              height: 15px;
              width: 10px;
              left: 13px;
              margin: 0; }
  @media only screen and (max-width: 1200px) {
    #ds-header {
      padding: 0; }
      #ds-header .ds-desktop-menu-wrap .ds-wrap-menu {
        transition: width 0.5s ease-in-out; }
      #ds-header .ds-desktop-menu-wrap.active .ds-wrap-menu {
        width: 88% !important; }
      #ds-header .ds-wrap-logo {
        max-width: inherit;
        min-width: 120px;
        width: 12%; } }
  @media only screen and (max-width: 768px) {
    #ds-header {
      bottom: 0;
      top: initial;
      width: 100%;
      padding: 0;
      height: 50px; }
      #ds-header .breadcrumbs {
        display: none; } }

#ds-header-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none; }
  #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span {
    height: 2px;
    width: 28px;
    border-radius: 1px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 2px; }
    #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span:first-child {
      -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
      transform: rotate(45deg); }
    #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span:nth-child(2) {
      display: none; }
    #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span:last-child {
      -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
      transform: rotate(-45deg); }
  #ds-header-mobile .ds-mobile-menu-wrap.active .ds-mobile-menu.ds-mobile-menu-2 {
    border-bottom: 2px solid #ececec;
    bottom: 50px; }
  #ds-header-mobile .ds-mobile-menu {
    background: white;
    height: 50px; }
    #ds-header-mobile .ds-mobile-menu ul {
      margin: 0;
      padding: 0;
      max-width: 768px; }
      #ds-header-mobile .ds-mobile-menu ul li {
        transition: all 0.3s ease-in-out;
        list-style: none;
        display: inline-block;
        width: 20%;
        float: left;
        text-align: center; }
        #ds-header-mobile .ds-mobile-menu ul li.active a {
          color: #febe36; }
        #ds-header-mobile .ds-mobile-menu ul li:hover a {
          color: #febe36; }
        #ds-header-mobile .ds-mobile-menu ul li a {
          text-decoration: none;
          font-family: 'Oswald-Regular';
          font-size: 9px;
          padding: 7px 0;
          display: block;
          color: #929497; }
        #ds-header-mobile .ds-mobile-menu ul li:last-child {
          height: 50px;
          width: 50px;
          position: absolute;
          right: 0;
          top: 0; }
          #ds-header-mobile .ds-mobile-menu ul li:last-child a {
            text-align: center;
            padding: 0;
            height: 100%; }
    #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 {
      overflow: hidden;
      z-index: 1; }
      #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a {
        background: #febe36; }
        #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li:last-child a span {
          display: inline-block;
          background: black;
          height: 4px;
          width: 4px;
          border-radius: 50%;
          margin: 22px 1px; }
      #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-1 ul li a:before {
        content: '';
        display: block;
        margin: 0 auto;
        background-repeat: no-repeat; }
    #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 {
      transition: all 0.3s ease-in-out;
      overflow: hidden;
      bottom: 0;
      z-index: 0;
      border-bottom: 0;
      left: 0;
      right: 0; }
      #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li a:before {
        content: '';
        display: block;
        margin: 0 auto;
        background-repeat: no-repeat; }
      #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li:last-child a {
        background: #ececec;
        color: #febe36; }
        #ds-header-mobile .ds-mobile-menu.ds-mobile-menu-2 ul li:last-child a i {
          margin: 0 auto 5px;
          top: 8px; }

#ds-footer {
  padding: 30px 0;
  background: #e4e4e4;
  color: #4A4A4A;
  padding: 55px 0; }
  #ds-footer p {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.14em;
    color: black;
    font-family: 'TradeGothicLTStd-Cn18';
    font-weight: 600;
    margin-bottom: 15px; }
  #ds-footer ul {
    padding: 0;
    font-size: 17px; }
    #ds-footer ul li {
      list-style: none;
      margin-bottom: 8px; }
      #ds-footer ul li a {
        text-decoration: none;
        color: #4A4A4A; }
  #ds-footer .col-line div {
    display: block;
    height: 2px;
    background: black;
    width: 40px;
    margin: 3px auto;
    left: 19%; }
  #ds-footer .col-popular {
    left: 3.5%; }
  #ds-footer .col-courses {
    left: 5.9%; }
  #ds-footer .col-contact {
    left: -1%; }
    #ds-footer .col-contact ul li {
      margin-bottom: 10px; }
    #ds-footer .col-contact span {
      font-family: 'TradeGothicLTStd-Cn18';
      font-size: 15px;
      letter-spacing: 0.08em; }
  @media only screen and (max-width: 1200px) {
    #ds-footer .col-line,
    #ds-footer .col-popular,
    #ds-footer .col-courses {
      left: inherit; } }
  @media only screen and (max-width: 768px) {
    #ds-footer {
      padding: 30px 0; }
      #ds-footer .col-line div {
        margin: 0 0 15px;
        left: 0; }
      #ds-footer .col-popular {
        width: 31%;
        min-width: 115px;
        padding-right: 0; }
      #ds-footer .col-courses {
        width: 62%; }
      #ds-footer .col-contact {
        margin-top: 30px;
        left: 0; }
        #ds-footer .col-contact span {
          font-size: 12px; }
        #ds-footer .col-contact ul li {
          margin-bottom: 2px; }
      #ds-footer p {
        font-size: 12px;
        margin-bottom: 8px; }
      #ds-footer ul {
        margin-top: 0;
        font-size: 12px;
        letter-spacing: 0.03em; }
        #ds-footer ul li {
          margin-bottom: 2px; } }

.footer-container .ds-row {
  padding: 0; }

.ds-toggle-list {
  margin: 0;
  padding: 0; }
  .ds-toggle-list .ds-toggle-wrap {
    list-style: none;
    overflow: hidden;
    border-bottom: 2px solid #f5f5f5;
    margin-bottom: 30px; }
    .ds-toggle-list .ds-toggle-wrap .btn-toggle-head {
      position: relative;
      text-decoration: none;
      color: black;
      font-family: 'TradeGothicLTStd-Cn18';
      letter-spacing: 0.066em;
      display: block;
      margin-bottom: 25px;
      max-width: 720px; }
      .ds-toggle-list .ds-toggle-wrap .btn-toggle-head.active .indication:after {
        display: none; }
      .ds-toggle-list .ds-toggle-wrap .btn-toggle-head .indication {
        position: relative;
        float: right;
        margin-right: 10px;
        top: -5px; }
        .ds-toggle-list .ds-toggle-wrap .btn-toggle-head .indication:before {
          -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
          transform: rotate(0deg);
          content: '';
          position: absolute;
          height: 2px;
          width: 15px;
          background: #d8d8d8;
          top: 11px; }
        .ds-toggle-list .ds-toggle-wrap .btn-toggle-head .indication:after {
          -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
          transform: rotate(90deg);
          content: '';
          position: absolute;
          height: 2px;
          width: 15px;
          top: 10px;
          left: 0;
          background: #d8d8d8; }
    .ds-toggle-list .ds-toggle-wrap .ds-toggle-content {
      display: none;
      padding: 0 0 45px;
      position: relative;
      top: 5px;
      max-width: 680px; }
      .ds-toggle-list .ds-toggle-wrap .ds-toggle-content p {
        font-size: 16px;
        letter-spacing: 0.015em;
        line-height: 150%;
        margin: 0; }
  @media only screen and (max-width: 480px) {
    .ds-toggle-list .ds-toggle-wrap {
      margin-bottom: 15px; }
      .ds-toggle-list .ds-toggle-wrap:last-child {
        border-bottom: 0; }
      .ds-toggle-list .ds-toggle-wrap .btn-toggle-head {
        font-size: 16px;
        margin-bottom: 10px;
        padding-right: 20px; }
        .ds-toggle-list .ds-toggle-wrap .btn-toggle-head .indication {
          position: absolute;
          right: 12px;
          top: 0;
          margin: 0; }
          .ds-toggle-list .ds-toggle-wrap .btn-toggle-head .indication:before {
            top: 10px; }
      .ds-toggle-list .ds-toggle-wrap .ds-toggle-content {
        padding: 0 0 30px; }
        .ds-toggle-list .ds-toggle-wrap .ds-toggle-content p {
          font-size: 14px;
          letter-spacing: 0.02em;
          line-height: 134%; } }

#popup-designschool-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000000;
  background: rgba(0, 0, 0, 0.5); }

#popup-designschool {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000000000; }
  #popup-designschool .popup-design-school-wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 575px;
    height: 575px;
    margin: 0 auto;
    left: 0;
    right: 0; }
    #popup-designschool .popup-design-school-wrap .popup-close {
      position: absolute;
      right: 0;
      padding: 5px; }

      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .cms-terms-and-conditions{
        padding-bottom:20px;
        
      }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .cms-terms-and-conditions label,
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .cms-terms-and-conditions label a{
        color: #fff;
        font-family: 'Baskerville-Reg';
        font-weight: normal;
        font-size:14px;
        text-transform:none;
      }
      div.page.ds-course-details #ds-course-details-content-1 .course-detail-middle .cms-terms-and-conditions label a{
        text-decoration:underline;
      }
