.header {
    background-color: transparent;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    top: 0;
    z-index: 99;
    margin-top: 60px
}

.header .container {
    margin: 0 0 0 auto;
    padding: 0
}

.header .container .header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header .container .header_inner .logo img {
    vertical-align: bottom
}

.header .container .header_inner .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header .container .header_inner .nav .mobile_logo {
    display: none
}

.header .container .header_inner .nav .mobile_logo .lang a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-left: 10px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.header .container .header_inner .nav .mobile_logo .lang a:hover {
    color: #fff;
    text-decoration: underline;
    -webkit-transition: .2ms ease-in-out;
    -o-transition: .2ms ease-in-out;
    transition: .2ms ease-in-out;
    opacity: 1
}

.header .container .header_inner .nav .mobile_logo .lang a .active {
    color: #fff;
    text-decoration: underline;
    opacity: 1
}

.header .container .header_inner .nav .nav_link {
    color: #fff;
    opacity: .5;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 0 10px 0 10px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    font-family: Roboto-Regular
}

.header .container .header_inner .nav .nav_link:hover {
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    color: #fff;
    opacity: 1
}

.header .container .header_inner .nav .active {
    color: #fff;
    opacity: 1
}

.header .container .header_inner .nav .mobile-menu {
    display: none
}

.header .container .header_inner .lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header .container .header_inner .lang a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-left: 10px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.header .container .header_inner .lang a:hover {
    color: #fff;
    text-decoration: underline;
    -webkit-transition: .2ms ease-in-out;
    -o-transition: .2ms ease-in-out;
    transition: .2ms ease-in-out;
    opacity: 1
}

.header .container .header_inner .lang a .active {
    color: #fff;
    text-decoration: underline;
    opacity: 1
}

.header.fixed {
    position: fixed;
    background-color: #232323;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    -webkit-transition: .9ms ease-in-out;
    -o-transition: .9ms ease-in-out;
    transition: .9ms ease-in-out
}

.nav-toggle {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 1;
    width: 30px;
    padding: 10px 0;
    font-size: 0;
    color: transparent;
    border: 0;
    background: 0 0;
    cursor: pointer;
    display: none
}

.nav-toggle:focus {
    outline: 0
}

.nav-toggle .nav-toggle_item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: background .2s linear;
    -o-transition: background .2s linear;
    transition: background .2s linear
}

.nav-toggle.active .nav-toggle_item {
    background: 0 0
}

.nav-toggle.active .nav-toggle_item:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(45deg) translate3d(0, -3px, 0);
    transform: rotate(45deg) translate3d(0, -3px, 0)
}

.nav-toggle.active .nav-toggle_item:after {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg) translate3d(0, 2px, 0);
    transform: rotate(-45deg) translate3d(0, 2px, 0)
}

.nav-toggle_item:after, .nav-toggle_item:before {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    -o-transition: transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear
}

.nav-toggle_item:before {
    top: -8px
}

.nav-toggle_item:after {
    bottom: -8px
}

.footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    padding: 100px 0 100px 0
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0
}

.footer .container .content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px
}

.footer .container .content-flex .social {
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer .container .content-flex .social a {
    text-decoration: none;
    color: rgba(171, 169, 169, .5);
    font-size: 18px;
    margin-top: 10px
}

.footer .container .content-flex img {
    vertical-align: bottom
}

.content {
    overflow: hidden
}

.leadership {
    height: 100vh;
    background-color: #232323
}

.leadership .container-fluid {
    height: 100vh;
    position: relative
}

.leadership .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.leadership .container-fluid .social a {
    text-decoration: none;
    color: #656565;
    font-size: 24px;
    margin-top: 15px
}

.leadership .container-fluid .arrow {
    position: absolute
}

.leadership .container-fluid .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(../img/background/firstblock.png);
    background-repeat: no-repeat;
    background-position: 85% 70%;
    margin: 0 0 0 auto;
    padding: 0
}

.leadership .container-fluid .container .content {
    margin-top: 30px;
    font-family: "Roboto", sans-serif
}

.leadership .container-fluid .container .content .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.leadership .container-fluid .container .content .subtitle {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase
}

.leadership .container-fluid .container .content .text {
    font-size: 25px;
    color: #fff;
    margin-top: 20px
}

.leadership .container-fluid .container .content .plus {
    color: #28da2c;
    font-size: 54px;
    font-weight: 100
}

.leadership .container-fluid .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.understanding {
    height: 100%;
    background-color: #000
}

.understanding .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.understanding .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.understanding .container-fluid .social a {
    text-decoration: none;
    color: #656565;
    font-size: 24px;
    margin-top: 15px
}

.understanding .container-fluid .arrow {
    position: absolute
}

.understanding .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.understanding .container-fluid .container .content {
    padding-top: 170px;
    text-align: right
}

.understanding .container-fluid .container .content .title-block {
    margin-bottom: 40px
}

.understanding .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.understanding .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff
}

.understanding .container-fluid .container .content .text-block {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.understanding .container-fluid .container .content .text-block .text {
    width: 50%;
    font-size: 30px;
    position: relative;
    padding-right: 60px;
    margin-bottom: 100px
}

.understanding .container-fluid .container .content .text-block .text:after {
    content: "";
    border: 1px solid #28da2c;
    height: 58px;
    position: absolute;
    right: 0;
    top: 5px
}

.understanding .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.target {
    height: 100%
}

.target .container-fluid {
    height: 100%;
    min-height: 855px;
    position: relative
}

.target .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.target .container-fluid .social a {
    text-decoration: none;
    color: #e6e5e5;
    font-size: 24px;
    margin-top: 15px
}

.target .container-fluid .arrow {
    position: absolute
}

.target .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.target .container-fluid .container .content {
    padding-top: 90px
}

.target .container-fluid .container .content .title-block {
    text-align: left;
    margin-bottom: 40px
}

.target .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.target .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000
}

.target .container-fluid .container .content .accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: 0;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.target .container-fluid .container .content .accordion .score {
    font-size: 40px;
    color: #28da2c;
    font-weight: 700;
    margin-right: 50px;
    font-family: "Roboto", sans-serif
}

.target .container-fluid .container .content .accordion .score-title {
    font-size: 30px;
    color: #232323;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif
}

.target .container-fluid .container .content .accordion:hover, .target .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.target .container-fluid .container .content .accordion .score-title:hover, .target .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.target .container-fluid .container .content .panel {
    padding: 0 97px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif
}

.target .container-fluid .container .content .text-block {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.target .container-fluid .container .content .text-block .text {
    width: 50%;
    font-size: 30px;
    position: relative;
    padding-right: 60px;
    margin-bottom: 100px
}

.target .container-fluid .container .content .text-block .text:after {
    content: "";
    border: 1px solid #28da2c;
    height: 58px;
    position: absolute;
    right: 0;
    top: 5px
}

.target .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.target .container-fluid .container .plus {
    color: #28da2c;
    font-size: 54px;
    font-weight: 100;
    position: absolute;
    bottom: 105px;
    right: 14px
}

.program {
    height: 100%;
    background-color: #e1e1e1
}

.program .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.program .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.program .container-fluid .social a {
    text-decoration: none;
    color: #d1d0d0;
    font-size: 24px;
    margin-top: 15px
}

.program .container-fluid .arrow {
    position: absolute
}

.program .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.program .container-fluid .container .content {
    padding-top: 100px;
    text-align: right
}

.program .container-fluid .container .content .title-text-block-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px
}

.program .container-fluid .container .content .title-text-block-first .title-text-block {
    max-width: 500px;
    font-size: 25px;
    letter-spacing: .02em;
    font-weight: 400;
    line-height: 27px
}

.program .container-fluid .container .content .title-text-block-first .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.program .container-fluid .container .content .title-text-block-first .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    line-height: 65px;
    letter-spacing: .02em
}

.program .container-fluid .container .content .text-block {
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 80px
}

.program .container-fluid .container .content .text-block .text {
    width: 22%;
    position: relative;
    font-size: 22px;
    line-height: 27px;
    padding-top: 40px
}

.program .container-fluid .container .content .text-block .text:after {
    content: "";
    border-top: 2px solid #28da2c;
    position: absolute;
    right: 0;
    top: 0;
    width: 168px
}

.program .container-fluid .container .content .text-block-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.program .container-fluid .container .content .text-block-second .text {
    width: 100%;
    max-width: 680px;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: .02em
}

.program .container-fluid .container .content .text-block-second .text-right {
    width: 100%;
    max-width: 245px;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: .02em
}

.program .container-fluid .container .content .text-block-second .text-right .right-arrow {
    width: 30px;
    padding-right: 5px
}

.diploma {
    height: 100%;
    overflow: hidden
}

.diploma .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.diploma .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.diploma .container-fluid .social a {
    text-decoration: none;
    color: #e6e5e5;
    font-size: 24px;
    margin-top: 15px
}

.diploma .container-fluid .arrow {
    position: absolute
}

.diploma .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.diploma .container-fluid .container .content {
    padding-top: 90px
}

.diploma .container-fluid .container .content .title-block {
    text-align: left;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.diploma .container-fluid .container .content .title-block .title {
    color: #232323;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.diploma .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000
}

.diploma .container-fluid .container .content .accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: 0;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.diploma .container-fluid .container .content .accordion .score {
    font-size: 40px;
    color: #28da2c;
    font-weight: 700;
    margin-right: 50px;
    font-family: "Roboto", sans-serif
}

.diploma .container-fluid .container .content .accordion .score-title {
    font-size: 30px;
    color: #232323;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif
}

.diploma .container-fluid .container .content .accordion:hover, .diploma .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.diploma .container-fluid .container .content .accordion .score-title:hover, .diploma .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.diploma .container-fluid .container .content .panel {
    padding: 0 97px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif
}

.diploma .container-fluid .container .content .text-block {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.diploma .container-fluid .container .content .text-block .text {
    width: 50%;
    font-size: 30px;
    position: relative;
    padding-right: 60px;
    margin-bottom: 100px
}

.diploma .container-fluid .container .content .text-block .text:after {
    content: "";
    border: 1px solid #28da2c;
    height: 58px;
    position: absolute;
    right: 0;
    top: 5px
}

.diploma .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.diploma .container-fluid .container .plus {
    color: #28da2c;
    font-size: 54px;
    font-weight: 100;
    position: absolute;
    bottom: 105px;
    right: 14px
}

.diploma .container-fluid .full-container {
    position: absolute;
    top: 230px;
    left: 150px
}

.diploma .container-fluid .full-container .diploma-slider {
    width: 1365px;
    overflow: hidden;
    height: 650px
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide {
    height: 570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-first {
    width: 400px;
    height: 570px;
    background-image: url(../img/diploma/2.png);
    background-color: rgba(0, 0, 0, .3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-first .title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-first .subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: .02em;
    color: #fff
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .first-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 950px
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .first-block .col {
    width: 340px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .first-block .col .title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #2d2d2d
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .first-block .col .subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: .02em;
    color: #2d2d2d
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .second-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 950px
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .second-block .col {
    width: 340px;
    height: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .second-block .col .title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #2d2d2d
}

.diploma .container-fluid .full-container .diploma-slider .swiper-slide .col-block .second-block .col .subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: .02em;
    color: #2d2d2d
}

.diploma .container-fluid .full-container .diploma-slider > .swiper-scrollbar {
    height: 12px;
    border-radius: 0;
    left: 0;
    width: 700px;
    border: 1px solid #f0f0f0;
    background-color: transparent
}

.diploma .container-fluid .full-container .diploma-slider > .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: #f0f0f0;
    width: auto
}

.format {
    height: 100%;
    background-color: #232323
}

.format .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.format .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.format .container-fluid .social a {
    text-decoration: none;
    color: #656565;
    font-size: 24px;
    margin-top: 15px
}

.format .container-fluid .arrow {
    position: absolute
}

.format .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background-image: url(../img/background/firstblock.png);
    background-repeat: no-repeat;
    background-position: 0 130%;
    background-size: auto;
    margin: 0 0 0 auto;
    padding: 0
}

.format .container-fluid .container .content {
    padding-top: 70px;
    text-align: right
}

.format .container-fluid .container .content .title-block {
    margin-bottom: 60px
}

.format .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.format .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 65px;
    letter-spacing: .02em
}

.format .container-fluid .container .content .text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.format .container-fluid .container .content .text-block .text-title {
    color: #28da2c;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase
}

.format .container-fluid .container .content .text-block .text-description {
    font-size: 22px;
    line-height: 27px;
    color: #fff
}

.structure {
    height: 100%;
    min-height: 100vh;
    overflow: hidden
}

.structure .container-fluid {
    height: 100%;
    position: relative
}

.structure .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.structure .container-fluid .social a {
    text-decoration: none;
    color: #e6e5e5;
    font-size: 24px;
    margin-top: 15px
}

.structure .container-fluid .arrow {
    position: absolute
}

.structure .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.structure .container-fluid .container .content {
    padding-top: 90px
}

.structure .container-fluid .container .content .title-block {
    text-align: left;
    margin-bottom: 40px
}

.structure .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.structure .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.structure .container-fluid .container .content .accordion {
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    color: #444;
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: 0;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.structure .container-fluid .container .content .accordion:hover, .structure .container-fluid .container .content .active {
    color: #28da2c
}

.structure .container-fluid .container .content .accordion:after {
    content: '\002B';
    color: #c4c4c4;
    font-weight: 700;
    float: right;
    margin-left: 5px
}

.structure .container-fluid .container .content .active:after {
    content: "\2212"
}

.structure .container-fluid .container .content .accordion .score-title:hover, .structure .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.structure .container-fluid .container .content .panel {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif
}

.structure .container-fluid .container .content .swiper-button-next {
    position: inherit !important
}

.structure .container-fluid .container .content .swiper-button-next:after {
    display: none !important
}

.structure .container-fluid .container .content .swiper-pagination {
    position: inherit !important;
    width: auto;
    padding-left: 20px
}

.structure .container-fluid .container .content .structure-slider {
    overflow: hidden
}

.structure .container-fluid .container .content .structure-slider .swiper-slide .col-block {
    display: grid;
    grid-template-columns:30% 30% 30%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.structure .container-fluid .container .content .structure-slider .swiper-slide .col-block .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%
}

.structure .container-fluid .container .content .structure-slider .swiper-slide .col-block .col .title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #232323;
    padding-bottom: 20px;
    position: relative
}

.structure .container-fluid .container .content .structure-slider .swiper-slide .col-block .col .title:before {
    content: "";
    width: 210px;
    height: 3px;
    position: absolute;
    border-bottom: 3px solid #28da2c;
    bottom: 0
}

.structure .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.implementation {
    height: 100%;
    min-height: 937px;
    background-color: #000
}

.implementation .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.implementation .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.implementation .container-fluid .social a {
    text-decoration: none;
    color: #656565;
    font-size: 24px;
    margin-top: 15px
}

.implementation .container-fluid .arrow {
    position: absolute
}

.implementation .container-fluid .plus {
    color: #28da2c;
    font-size: 54px;
    font-weight: 100;
    position: absolute;
    bottom: 105px;
    right: 14px
}

.implementation .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0;
    background-image: url(../img/background/spiral.png);
    background-repeat: no-repeat;
    background-position: 0 100%
}

.implementation .container-fluid .container .content {
    padding-top: 125px;
    text-align: right
}

.implementation .container-fluid .container .content .title-text-block-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 160px
}

.implementation .container-fluid .container .content .title-text-block-first .title-text-block {
    max-width: 480px;
    font-size: 25px;
    letter-spacing: .02em;
    font-weight: 400;
    line-height: 27px;
    color: #fff
}

.implementation .container-fluid .container .content .title-text-block-first .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.implementation .container-fluid .container .content .title-text-block-first .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 65px;
    letter-spacing: .02em
}

.implementation .container-fluid .container .content .text-block {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.implementation .container-fluid .container .content .text-block .text {
    width: 29%;
    font-size: 30px;
    position: relative
}

.implementation .container-fluid .container .content .text-block .text .accordion {
    font-size: 22px;
    line-height: 28px;
    text-align: right;
    letter-spacing: .02em;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border: none;
    outline: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 305px
}

.implementation .container-fluid .container .content .text-block .text .accordion-first {
    padding-right: 110px
}

.implementation .container-fluid .container .content .text-block .text .accordion-second {
    margin-left: 8px
}

.implementation .container-fluid .container .content .text-block .text .accordion-second {
    margin-left: 8px
}

.implementation .container-fluid .container .content .text-block .text .accordion-third {
    margin-left: 55px
}

.implementation .container-fluid .container .content .text-block .text .accordion-fourth {
    margin-left: 80px;
    margin-top: 30px
}

.implementation .container-fluid .container .content .text-block .text .accordion-fifth {
    margin-left: 190px;
    margin-top: 30px
}

.implementation .container-fluid .container .content .text-block .text .accordion:after {
    content: '';
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    color: #777;
    font-weight: 700;
    float: right;
    margin-left: 5px;
    width: 30px;
    height: 20px
}

.implementation .container-fluid .container .content .text-block .text .active:after {
    content: "";
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.implementation .container-fluid .container .content .text-block .text .panel {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
    text-align: right;
    letter-spacing: .02em;
    width: 200px;
    color: #fff
}

.implementation .container-fluid .container .content .text-block .text .panel-second {
    margin-left: 105px
}

.implementation .container-fluid .container .content .text-block .text .panel-third {
    margin-left: 165px
}

.implementation .container-fluid .container .content .text-block .text .panel-fourth {
    margin-left: 190px
}

.implementation .container-fluid .container .content .text-block .text .panel-fifth {
    margin-left: 300px
}

.implementation .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.teachers {
    height: 100%;
    min-height: 110vh;
    overflow: hidden
}

.teachers .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.teachers .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.teachers .container-fluid .social a {
    text-decoration: none;
    color: #e6e5e5;
    font-size: 24px;
    margin-top: 15px
}

.teachers .container-fluid .arrow {
    position: absolute
}

.teachers .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.teachers .container-fluid .container .content {
    padding-top: 90px
}

.teachers .container-fluid .container .content .title-block {
    text-align: left;
    margin-bottom: 40px
}

.teachers .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase
}

.teachers .container-fluid .container .content .title-block .subtitle {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000
}

.teachers .container-fluid .container .content .accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: 0;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.teachers .container-fluid .container .content .accordion .score {
    font-size: 40px;
    color: #28da2c;
    font-weight: 700;
    margin-right: 50px;
    font-family: "Roboto", sans-serif
}

.teachers .container-fluid .container .content .accordion .score-title {
    font-size: 30px;
    color: #232323;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif
}

.teachers .container-fluid .container .content .accordion:hover, .teachers .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.teachers .container-fluid .container .content .accordion .score-title:hover, .teachers .container-fluid .container .content .active {
    color: #28da2c;
    font-family: "Roboto", sans-serif
}

.teachers .container-fluid .container .content .panel {
    padding: 0 97px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif
}

.teachers .container-fluid .container .content .text-block {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.teachers .container-fluid .container .content .text-block .text {
    width: 50%;
    font-size: 30px;
    position: relative;
    padding-right: 60px;
    margin-bottom: 100px
}

.teachers .container-fluid .container .content .text-block .text:after {
    content: "";
    border: 1px solid #28da2c;
    height: 58px;
    position: absolute;
    right: 0;
    top: 5px
}

.teachers .container-fluid .container .right-arrow {
    position: absolute;
    bottom: 105px;
    right: 14px
}

.teachers .container-fluid .container .plus {
    color: #28da2c;
    font-size: 54px;
    font-weight: 100;
    position: absolute;
    bottom: 105px;
    right: 14px
}

.teachers .container-fluid .full-container {
    -webkit-transform: translateX(135px) !important;
    -ms-transform: translateX(135px) !important;
    transform: translateX(135px) !important
}

.teachers .container-fluid .full-container .couch-slider {
    width: 2000px;
    overflow: hidden;
    height: 100%;
    min-height: 650px
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide {
    width: 500px
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide img {
    width: 100%;
    max-width: 550px;
    height: 470px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 40px
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: .02em;
    text-transform: uppercase;
    width: 100%;
    max-width: 550px;
    color: #000
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-subtitle {
    margin-top: 5px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    width: 100%;
    max-width: 550px
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description {
    font-size: 12px;
    line-height: 15px;
    font-weight: 300;
    letter-spacing: .02em;
    width: 100%;
    max-width: 550px;
    height: auto
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description .accordion {
    font-size: 22px;
    line-height: 28px;
    text-align: right;
    letter-spacing: .02em;
    text-transform: uppercase;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    border: none;
    outline: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: auto
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description .accordion:after {
    content: '';
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    color: #777;
    font-weight: 700;
    float: right;
    margin-left: 5px;
    width: 30px;
    height: 20px
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description .active:after {
    content: "";
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description .panel {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-out;
    -o-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: .02em;
    color: #aba9a9;
    margin-bottom: 30px
}

.teachers .container-fluid .full-container .swiper-container-horizontal > .swiper-scrollbar {
    height: 12px;
    border-radius: 0;
    left: 0;
    width: 700px;
    border: 1px solid #f0f0f0;
    background-color: transparent
}

.teachers .container-fluid .full-container .swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: #f0f0f0;
    width: auto
}

.contact {
    height: 100%;
    background-color: #e1e1e1
}

.contact .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.contact .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.contact .container-fluid .social a {
    text-decoration: none;
    color: #d1d0d0;
    font-size: 24px;
    margin-top: 15px
}

.contact .container-fluid .arrow {
    position: absolute
}

.contact .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background-image: url(../img/background/contact.png);
    background-repeat: no-repeat;
    background-position: 18% 620%;
    margin: 0 0 0 auto;
    padding: 0
}

.contact .container-fluid .container .content {
    padding-top: 130px;
    text-align: right
}

.contact .container-fluid .container .content .title-block {
    margin-bottom: 60px
}

.contact .container-fluid .container .content .title-block .title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.contact .container-fluid .container .content .text-block-container .text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 60px
}

.contact .container-fluid .container .content .text-block-container .text-block:first-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 292px
}

.contact .container-fluid .container .content .text-block-container .text-block .text-title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 500
}

.contact .container-fluid .container .content .text-block-container .text-block .text-subtitle {
    font-size: 22px;
    line-height: 25px;
    letter-spacing: .02em;
    font-weight: 400;
    padding: 10px 0
}

.contact .container-fluid .container .content .text-block-container .text-block .text-description {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: right;
    letter-spacing: .02em
}

.contact .container-fluid .container .content .text-block-container .text-block .text-button {
    margin-top: 20px;
    text-decoration: none;
    color: #28da2c;
    border: 1px solid #28da2c;
    width: 170px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .02em;
    -webkit-transition: .2ms ease-in-out;
    -o-transition: .2ms ease-in-out;
    transition: .2ms ease-in-out
}

.contact .container-fluid .container .content .text-block-container .text-block .text-button img {
    padding-top: 2px;
    width: 22px
}

.gallery {
    height: 100%;
    overflow: hidden
}

.gallery .container-fluid {
    height: 100%;
    min-height: 850px;
    position: relative
}

.gallery .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.gallery .container-fluid .social a {
    text-decoration: none;
    color: #d1d0d0;
    font-size: 24px;
    margin-top: 15px
}

.gallery .container-fluid .arrow {
    position: absolute
}

.gallery .container-fluid .tabcontent {
    float: left;
    padding: 0 12px;
    width: 70%;
    border-left: none;
    position: absolute;
    top: 22%;
    left: 50%
}

.gallery .container-fluid .gallery-slider > .swiper-scrollbar {
    height: 12px;
    border-radius: 0;
    width: 400px;
    border: 1px solid rgba(225, 225, 225, .2);
    background-color: transparent
}

.gallery .container-fluid .gallery-slider > .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: rgba(225, 225, 225, .2);
    width: auto
}

.gallery .container-fluid .full-container {
    position: absolute;
    top: 210px;
    left: 660px
}

.gallery .container-fluid .full-container .gallery-slider {
    width: 1000px;
    overflow: hidden;
    height: 550px
}

.gallery .container-fluid .full-container .gallery-slider .swiper-slide {
    width: 500px
}

.gallery .container-fluid .full-container .gallery-slider .swiper-slide img {
    width: 100%;
    max-width: 550px;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 40px
}

.gallery .container-fluid .full-container .swiper-container-horizontal > .swiper-scrollbar {
    height: 12px;
    border-radius: 0;
    left: 0;
    width: 700px;
    border: 1px solid #f0f0f0;
    background-color: transparent
}

.gallery .container-fluid .full-container .swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: #f0f0f0;
    width: auto
}

.gallery .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.gallery .container-fluid .container .content {
    padding-top: 80px
}

.gallery .container-fluid .container .content .title-block {
    margin-bottom: 60px
}

.gallery .container-fluid .container .content .title-block .title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.gallery .container-fluid .container .content .tab {
    width: 30%;
    line-height: 38px
}

.gallery .container-fluid .container .content .tab a {
    display: block;
    background-color: inherit;
    color: #000;
    width: 100%;
    border: none;
    outline: 0;
    text-align: left;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding-bottom: 20px;
    text-decoration: none
}

.gallery .container-fluid .container .content .tab a:hover {
    color: #00e71a
}

.gallery .container-fluid .container .content .tab .active {
    color: #00e71a
}

.review {
    height: 100%;
    background-color: #232323
}

.review .container-fluid {
    height: 100%;
    min-height: 937px;
    position: relative
}

.review .container-fluid .social {
    width: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 100px
}

.review .container-fluid .social a {
    text-decoration: none;
    color: #aba9a9;
    font-size: 24px;
    margin-top: 15px
}

.review .container-fluid .arrow {
    position: absolute
}

.review .container-fluid .container {
    height: 100%;
    font-family: "Roboto", sans-serif;
    margin: 0 0 0 auto;
    padding: 0
}

.review .container-fluid .container .content {
    padding-top: 150px;
    text-align: right
}

.review .container-fluid .container .content .title-block {
    margin-bottom: 60px
}

.review .container-fluid .container .content .title-block .title {
    color: #28da2c;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: .02em
}

.review .container-fluid .container .content .swiper-container-horizontal > .swiper-scrollbar {
    height: 12px;
    border-radius: 0;
    left: 32%;
    width: 700px;
    border: 1px solid rgba(225, 225, 225, .2);
    background-color: transparent
}

.review .container-fluid .container .content .swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: rgba(225, 225, 225, .2);
    width: auto
}

.review .container-fluid .container .content .review-block {
    color: #fff
}

.review .container-fluid .container .content .review-block .swiper-container {
    height: 500px
}

.review .container-fluid .container .content .review-block .swiper-slide {
    width: 100%;
    max-width: 33.3%;
    height: 385px
}

.review .container-fluid .container .content .review-block .swiper-slide img {
    width: 100%;
    max-width: 215px;
    height: 188px;
    margin-bottom: 40px
}

.review .container-fluid .container .content .review-block .swiper-slide .review-title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 300
}

.review .container-fluid .container .content .review-block .swiper-slide .review-subtitle {
    margin-top: 5px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px
}

.review .container-fluid .container .content .review-block .swiper-slide .review-description {
    font-size: 12px;
    line-height: 15px;
    font-weight: 300;
    letter-spacing: .02em
}

.review .container-fluid .container .content .text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.review .container-fluid .container .content .text-block .text-title {
    color: #28da2c;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase
}

.review .container-fluid .container .content .text-block .text-description {
    font-size: 22px;
    line-height: 27px;
    color: #fff
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    margin: 0 auto;
    font-family: Roboto, sans-serif
}

body .lock {
    overflow: hidden
}

.container-fluid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.swiper-container {
    width: 100%;
    position: relative;
    height: 92vh;
    max-height: 100%
}

.slider-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.slider-top .swiper-slide {
    position: relative;
    height: 100%
}

.slider-top .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1
}

.slider-top .swiper-slide img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.slider-top .swiper-slide .slider-info {
    position: absolute;
    color: #fff;
    top: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.slider-top .swiper-slide .slider-info .slider-info_title {
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 43px;
    width: 100%;
    max-width: 910px;
    font-style: italic
}

.slider-top .swiper-slide .slider-info .slider-info_text {
    font-size: 24px;
    width: 100%;
    font-weight: 700;
    max-width: 600px
}

.slider-top .swiper-pagination {
    position: absolute !important;
    bottom: 50px !important
}

.slider-top .swiper-pagination-bullet {
    border-radius: 0 !important;
    width: 72px !important;
    height: 4px !important;
    opacity: .5 !important;
    background-color: #fcfcfc !important;
    outline: 0
}

.slider-top .swiper-pagination-bullet-active {
    height: 9px !important;
    background-color: #fcfcfc !important;
    opacity: 1 !important;
    border: none !important
}

.certificate .swiper-pagination {
    position: unset !important;
    padding-top: 30px !important
}

.certificate .slider-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.certificate .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background-color: #2d7fc7 !important;
    opacity: 1 !important
}

.certificate .swiper-pagination-bullet-active {
    background-color: #f2f2f2 !important;
    border: 2px solid #2d7fc7 !important
}

@font-face {
    font-family: Roboto-Regular;
    font-display: swap;
    src: url(../fonts/Roboto-Regular.woff) format("woff"), url(../fonts/Roboto-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Thin.eot);
    src: local("../fonts/"Roboto", sans-serif Thin"), local(""Roboto", sans-serif-Thin"), url(../fonts/"Roboto", sans-serif-Thin.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Thin.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Thin.ttf) format("truetype");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-MediumItalic.eot);
    src: local("../fonts/"Roboto", sans-serif MediumItalic"), local(""Roboto", sans-serif-MediumItalic"), url(../fonts/"Roboto", sans-serif-MediumItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-MediumItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-MediumItalic.ttf) format("truetype");
    font-weight: 500;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Italic.eot);
    src: local("../fonts/"Roboto", sans-serif Italic"), local(""Roboto", sans-serif-Italic"), url(../fonts/"Roboto", sans-serif-Italic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Italic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Heavy.eot);
    src: local("../fonts/"Roboto", sans-serif Heavy"), local(""Roboto", sans-serif-Heavy"), url(../fonts/"Roboto", sans-serif-Heavy.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Heavy.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Heavy.ttf) format("truetype");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-ExtraBoldItalic.eot);
    src: local("../fonts/"Roboto", sans-serif ExtraBoldItalic"), local(""Roboto", sans-serif-ExtraBoldItalic"), url(../fonts/"Roboto", sans-serif-ExtraBoldItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-ExtraBoldItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-ExtraBoldItalic.ttf) format("truetype");
    font-weight: 800;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Medium.eot);
    src: local("../fonts/"Roboto", sans-serif Medium"), local(""Roboto", sans-serif-Medium"), url(../fonts/"Roboto", sans-serif-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Medium.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-BoldItalic.eot);
    src: local("../fonts/"Roboto", sans-serif BoldItalic"), local(""Roboto", sans-serif-BoldItalic"), url(../fonts/"Roboto", sans-serif-BoldItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-BoldItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-LightItalic.eot);
    src: local("../fonts/"Roboto", sans-serif LightItalic"), local(""Roboto", sans-serif-LightItalic"), url("Roboto", sans-serif-LightItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-LightItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-HeavyItalic.eot);
    src: local("../fonts/"Roboto", sans-serif HeavyItalic"), local(""Roboto", sans-serif-HeavyItalic"), url(../fonts/"Roboto", sans-serif-HeavyItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-HeavyItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-HeavyItalic.ttf) format("truetype");
    font-weight: 900;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif.eot);
    src: local("../fonts/"Roboto", sans-serif"), url(../fonts/"Roboto", sans-serif.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif.woff) format("woff"), url(../fonts/"Roboto", sans-serif.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Bold.eot);
    src: local("../fonts/"Roboto", sans-serif Bold"), local(""Roboto", sans-serif-Bold"), url(../fonts/"Roboto", sans-serif-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Bold.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-ExtraBold.eot);
    src: local("../fonts/"Roboto", sans-serif ExtraBold"), local(""Roboto", sans-serif-ExtraBold"), url(../fonts/"Roboto", sans-serif-ExtraBold.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-ExtraBold.woff) format("woff"), url(../fonts/"Roboto", sans-serif-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-ThinItalic.eot);
    src: local("../fonts/"Roboto", sans-serif ThinItalic"), local(""Roboto", sans-serif-ThinItalic"), url(../fonts/"Roboto", sans-serif-ThinItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-ThinItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-ThinItalic.ttf) format("truetype");
    font-weight: 100;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-ExtraLightItalic.eot);
    src: local("../fonts/"Roboto", sans-serif ExtraLightItalic"), local(""Roboto", sans-serif-ExtraLightItalic"), url(../fonts/"Roboto", sans-serif-ExtraLightItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-ExtraLightItalic.woff) format("woff"), url(../fonts/"Roboto", sans-serif-ExtraLightItalic.ttf) format("truetype");
    font-weight: 200;
    font-style: italic
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-Light.eot);
    src: local("../fonts/"Roboto", sans-serif Light"), local(""Roboto", sans-serif-Light"), url(../fonts/"Roboto", sans-serif-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-Light.woff) format("woff"), url(../fonts/"Roboto", sans-serif-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/"Roboto", sans-serif-ExtraLight.eot);
    src: local("../fonts/"Roboto", sans-serif ExtraLight"), local(""Roboto", sans-serif-ExtraLight"), url(../fonts/"Roboto", sans-serif-ExtraLight.eot?#iefix) format("embedded-opentype"), url(../fonts/"Roboto", sans-serif-ExtraLight.woff) format("woff"), url(../fonts/"Roboto", sans-serif-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal
}

@media (max-width: 1199px) {
    .teachers .container-fluid .full-container {
        -webkit-transform: initial !important;
        -ms-transform: initial !important;
        transform: initial !important
    }
}

@media (max-width: 1025px) {
    .header {
        margin-top: 30px
    }

    .container-fluid .arrow {
        display: none
    }

    .container-fluid .social {
        display: none !important
    }

    .diploma .container-fluid .full-container {
        left: auto
    }

    .structure {
        min-height: auto
    }

    .implementation {
        min-height: auto
    }

    .implementation .container-fluid {
        min-height: 850px
    }

    .implementation .container-fluid .container {
        background-position: 30px 94%;
        background-size: contain
    }

    .teachers {
        min-height: auto
    }

    .teachers .container-fluid {
        margin-bottom: 50px
    }

    .teachers .container-fluid .full-container {
        left: auto
    }

    .teachers .container-fluid .full-container .swiper-container-horizontal .swiper-scrollbar {
        left: auto
    }

    .gallery .container-fluid {
        min-height: 830px
    }

    .gallery .container-fluid .full-container {
        left: 300px
    }

    .footer .container .content-flex .social {
        display: block !important
    }
}

@media (max-width: 768px) {
    .header {
        margin-top: 0
    }

    .header .header_inner {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .header_inner .nav {
        -webkit-transition: all 2s ease 0s;
        -o-transition: all 2s ease 0s;
        transition: all 2s ease 0s;
        display: none;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        position: absolute;
        top: -200%;
        left: 0;
        font-size: 18px !important;
        background-color: #232323;
        width: 100% !important;
        z-index: 99;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 0
    }

    .header .header_inner .nav .mobile-menu {
        width: 100%;
        height: 100%;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 25px;
        padding-bottom: 50px
    }

    .header .header_inner .nav .mobile-menu .nav_link {
        padding: 5px 0
    }

    .header .header_inner .nav .mobile-menu .social {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header .header_inner .nav .mobile-menu .social a {
        text-decoration: none;
        color: rgba(171, 169, 169, .5);
        font-size: 18px;
        padding: 0 10px
    }

    .header .header_inner .nav .shadow-mobile {
        display: none !important
    }

    .header .header_inner .nav .nav_link {
        display: block;
        margin: 0;
        padding: 20px 30px;
        width: 100%;
        font-size: 18px !important;
        color: #000;
        text-align: center
    }

    .header .header_inner .nav .mobile_logo {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 15px
    }

    .header .header_inner .nav .mobile_logo .logo_href img {
        width: 100px;
        height: 35px
    }

    .header .header_inner .nav .mobile_logo .lang_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header .header_inner .nav .mobile_logo .lang_container .nav__inner {
        padding-left: 20px
    }

    .header .header_inner .nav .mobile_logo .lang_container .nav__inner .nav__item-logo-close {
        color: #fff;
        opacity: .5
    }

    .header .header_inner .nav .mobile_logo .lang_container .nav__inner .nav__item-logo-close i {
        font-size: 20px;
        vertical-align: text-bottom
    }

    .header .header_inner .nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 100vh;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    .header .header_inner .nav.active .nav_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header .header_inner .nav.active .mobile_logo {
        width: 100%
    }

    .nav-toggle {
        display: block
    }

    .button-active {
        width: 30px;
        height: 30px
    }

    .button-active .active {
        top: 0;
        height: 100vh;
        -webkit-transition: all 2s ease 0s;
        -o-transition: all 2s ease 0s;
        transition: all 2s ease 0s
    }

    .button-active .nav-toggle {
        display: block;
        position: relative
    }

    .header .container .header_inner .nav .logo_href {
        display: block !important
    }

    .header .container .header_inner .nav .lang {
        display: block
    }

    .header .container .header_inner .lang {
        display: none
    }

    .leadership .container-fluid .container .content .title {
        font-size: 40px;
        line-height: normal
    }

    .leadership .container-fluid .container .content .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .understanding {
        height: auto
    }

    .understanding .container-fluid {
        height: auto;
        min-height: auto
    }

    .understanding .container-fluid .container .content {
        padding-top: 50px
    }

    .understanding .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .understanding .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .understanding .container-fluid .container .content .text-block .text {
        width: 45%;
        font-size: 25px;
        position: relative;
        padding-right: 20px;
        margin-bottom: 100px
    }

    .understanding .container-fluid .container .right-arrow {
        bottom: 45px
    }

    .target .container-fluid {
        min-height: 800px
    }

    .target .container-fluid .container .content {
        padding-top: 50px;
        padding-bottom: 30px
    }

    .target .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .target .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .target .container-fluid .container .plus {
        display: none
    }

    .program {
        height: auto
    }

    .program .container-fluid {
        height: auto
    }

    .program .container-fluid .container .content {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .program .container-fluid .container .content .title-text-block-first {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .program .container-fluid .container .content .title-text-block-first .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .program .container-fluid .container .content .title-text-block-first .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .program .container-fluid .container .content .title-text-block-first .title-text-block {
        padding-top: 10px
    }

    .program .container-fluid .container .content .text-block {
        overflow: scroll;
        margin-bottom: 50px
    }

    .program .container-fluid .container .content .text-block-second .text {
        max-width: 375px
    }

    .diploma .container-fluid {
        min-height: 850px
    }

    .diploma .container-fluid .container .content {
        padding-top: 50px
    }

    .diploma .container-fluid .container .content .title-block {
        margin-bottom: 0
    }

    .diploma .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .diploma .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .diploma .container-fluid .full-container {
        top: 125px
    }

    .format .container-fluid {
        min-height: 810px
    }

    .format .container-fluid .container .content {
        padding-top: 60px
    }

    .format .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .format .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .structure .container-fluid .container .content {
        padding-top: 50px
    }

    .structure .container-fluid .container .content .structure-slider .swiper-slide .col-block {
        grid-template-columns:100%
    }

    .structure .container-fluid .container .content .structure-slider .swiper-slide .col-block .col .title {
        font-size: 24px
    }

    .structure .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .structure .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .implementation .container-fluid .container {
        background-size: 100%
    }

    .implementation .container-fluid .container .content {
        padding-top: 50px
    }

    .implementation .container-fluid .container .content .text-block {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .implementation .container-fluid .container .content .text-block .text .accordion {
        width: auto
    }

    .implementation .container-fluid .container .content .text-block .text .accordion-first {
        width: auto;
        padding-right: 0
    }

    .implementation .container-fluid .container .content .text-block .text .accordion-fifth, .implementation .container-fluid .container .content .text-block .text .accordion-fourth, .implementation .container-fluid .container .content .text-block .text .accordion-third {
        margin-left: 0
    }

    .implementation .container-fluid .container .content .title-text-block-first {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-bottom: 80px
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-text-block {
        max-width: 675px;
        padding-top: 60px
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .teachers .container-fluid {
        min-height: 865px
    }

    .teachers .container-fluid .full-container {
        top: 200px
    }

    .teachers .container-fluid .container .content {
        padding-top: 60px
    }

    .teachers .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .teachers .container-fluid .container .content .title-block .subtitle {
        font-size: 35px;
        line-height: normal
    }

    .contact .container-fluid .container {
        background-position: 90px 160px;
        background-size: 70%
    }

    .contact .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .gallery .container-fluid {
        min-height: 730px
    }

    .gallery .container-fluid .container .content {
        padding-top: 50px
    }

    .gallery .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .gallery .container-fluid .full-container {
        top: 165px
    }

    .gallery .container-fluid .full-container .gallery-slider {
        height: 520px
    }

    .review {
        height: auto;
        min-height: auto;
        padding-bottom: 50px
    }

    .review .container-fluid {
        height: auto;
        min-height: auto
    }

    .review .container-fluid .container .content {
        padding-top: 50px
    }

    .review .container-fluid .container .content .title-block .title {
        font-size: 40px;
        line-height: normal
    }

    .review .container-fluid .container .content .swiper-container-horizontal .swiper-scrollbar {
        left: auto;
        width: 100%
    }
}

@media (max-width: 540px) {
    .leadership .container-fluid .container {
        background-position: 70% 80%;
        background-size: 100%
    }

    .leadership .container-fluid .container .content {
        margin-top: 0;
        margin-bottom: 100px
    }

    .understanding .container-fluid {
        min-height: 670px
    }

    .understanding .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .understanding .container-fluid .container .content .title-block .subtitle {
        font-size: 28px
    }

    .understanding .container-fluid .container .content .text-block .text {
        width: 100%;
        margin-bottom: 50px;
        font-size: 18px
    }

    .target .container-fluid {
        min-height: 680px
    }

    .target .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .target .container-fluid .container .content .title-block .subtitle {
        font-size: 28px
    }

    .target .container-fluid .container .content .panel {
        padding: 0
    }

    .target .container-fluid .container .content .accordion .score-title {
        font-size: 18px
    }

    .program .container-fluid .container .content .title-text-block-first {
        margin-bottom: 40px
    }

    .program .container-fluid .container .content .title-text-block-first .title-block .subtitle, .program .container-fluid .container .content .title-text-block-first .title-block .title {
        font-size: 30px
    }

    .program .container-fluid .container .content .title-text-block-first .title-text-block {
        font-size: 18px
    }

    .program .container-fluid .container .content .text-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .program .container-fluid .container .content .text-block .text {
        width: 80%;
        padding-bottom: 40px;
        font-size: 18px
    }

    .program .container-fluid .container .content .text-block .text:after {
        top: auto;
        bottom: 0
    }

    .program .container-fluid .container .content .text-block-second {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .program .container-fluid .container .content .text-block-second .text-right {
        padding-top: 20px
    }

    .structure .container-fluid .container .content .structure-slider .swiper-slide .col-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .structure .container-fluid .container .content .structure-slider .swiper-slide .col-block .col {
        width: 100%
    }

    .implementation {
        height: auto
    }

    .implementation .container-fluid {
        height: auto
    }

    .implementation .container-fluid .container {
        background-image: none
    }

    .implementation .container-fluid .container .content {
        padding-bottom: 50px
    }

    .implementation .container-fluid .container .content .text-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .implementation .container-fluid .container .content .text-block .text {
        width: 100%
    }

    .implementation .container-fluid .container .content .text-block .text br {
        display: none
    }

    .implementation .container-fluid .container .content .text-block .text .accordion {
        width: 100%
    }

    .implementation .container-fluid .container .content .text-block .text .accordion br {
        display: none
    }

    .implementation .container-fluid .plus {
        display: none
    }

    .contact .container-fluid .container {
        height: auto;
        max-width: 100%;
        background-size: 100%
    }

    .gallery {
        height: 100%
    }

    .gallery .container-fluid {
        height: 100%
    }

    .gallery .container-fluid .full-container {
        position: inherit
    }

    .gallery .container-fluid .container .content .tab button {
        font-size: 22px
    }

    .footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer .container .content-flex {
        width: 100%;
        padding-top: 60px
    }

    .implementation .container-fluid {
        min-height: 770px
    }

    .implementation .container-fluid .container .content .title-text-block-first {
        margin-bottom: 30px
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-block .title {
        font-size: 30px
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-block .subtitle {
        font-size: 28px
    }

    .implementation .container-fluid .container .content .title-text-block-first .title-text-block {
        font-size: 18px
    }

    .implementation .container-fluid .container .content .text-block .text .accordion {
        font-size: 18px
    }

    .implementation .container-fluid .container .content .text-block .text .panel-fifth, .implementation .container-fluid .container .content .text-block .text .panel-fourth, .implementation .container-fluid .container .content .text-block .text .panel-second, .implementation .container-fluid .container .content .text-block .text .panel-third {
        margin-left: 0
    }

    .implementation .container-fluid .container .content .text-block .text .panel {
        width: 100%
    }

    .diploma {
        height: 100%
    }

    .diploma .container-fluid {
        min-height: 820px
    }

    .diploma .container-fluid .container .content .title-block .subtitle, .diploma .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .format .container-fluid {
        min-height: auto
    }

    .format .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .format .container-fluid .container .content .title-block .subtitle {
        font-size: 28px
    }

    .format .container-fluid .container .content .text-block .text-title {
        font-size: 24px
    }

    .format .container-fluid .container .content .text-block .text-description {
        font-size: 18px
    }

    .structure .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .structure .container-fluid .container .content .title-block .subtitle {
        font-size: 28px
    }

    .structure .container-fluid .container .right-arrow {
        z-index: 1;
        bottom: 15px
    }

    .teachers .container-fluid {
        min-height: 840px
    }

    .teachers .container-fluid .container .content .title-block .title {
        font-size: 30px;
        line-height: normal
    }

    .teachers .container-fluid .container .content .title-block .subtitle {
        font-size: 28px;
        line-height: normal
    }

    .teachers .container-fluid .full-container .couch-slider {
        min-height: 660px;
        width: 100%
    }

    .teachers .container-fluid .full-container .couch-slider .swiper-slide .review-title {
        font-size: 24px
    }

    .teachers .container-fluid .full-container .couch-slider .swiper-slide .review-description .panel {
        margin-bottom: 30px;
        margin-top: 10px
    }

    .teachers .container-fluid .full-container .swiper-container-horizontal .swiper-scrollbar {
        width: 100%
    }

    .contact .container-fluid {
        min-height: 760px
    }

    .contact .container-fluid .container .content {
        padding-top: 60px
    }

    .contact .container-fluid .container .content .title-block {
        margin-bottom: 40px
    }

    .contact .container-fluid .container .content .title-block .title {
        font-size: 30px
    }

    .contact .container-fluid .container .content .text-block-container .text-block .text-title {
        font-size: 24px
    }

    .contact .container-fluid .container .content .text-block-container .text-block .text-description, .contact .container-fluid .container .content .text-block-container .text-block .text-subtitle {
        font-size: 18px
    }

    .contact .container-fluid .container .content .text-block-container .text-block:first-child {
        width: 235px
    }

    .gallery .container-fluid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 820px
    }

    .gallery .container-fluid .container .content .title-block .title {
        font-size: 30px;
        line-height: normal
    }

    .gallery .container-fluid .container .content .tab {
        width: 100%
    }

    .gallery .container-fluid .full-container {
        position: -webkit-sticky;
        position: sticky;
        margin-bottom: 50px
    }

    .gallery .container-fluid .full-container .tabcontent {
        position: -webkit-sticky;
        position: sticky;
        width: 100%;
        padding: 0
    }

    .gallery .container-fluid .full-container .gallery-slider {
        width: 100%;
        height: 370px;
        margin-bottom: 50px
    }

    .gallery .container-fluid .full-container .gallery-slider .swiper-slide {
        width: 100% !important
    }

    .gallery .container-fluid .full-container .gallery-slider .swiper-slide img {
        max-width: 100%;
        height: auto
    }

    .gallery .container-fluid .full-container .swiper-container-horizontal .swiper-scrollbar {
        width: 100%
    }

    .review .container-fluid .container .content .title-block .title {
        font-size: 30px;
        line-height: normal
    }

    .review .container-fluid .container .content .review-block .swiper-container {
        height: 450px
    }

    .review .container-fluid .container .content .review-block .swiper-container .swiper-slide {
        max-width: 100%
    }
}

@media (max-width: 500px) {
    .footer-information {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer-information p {
        padding: 5px 0
    }
}

@media (max-width: 425px) {
    .gallery .container-fluid .full-container .gallery-slider {
        height: 310px
    }

    .understanding .container-fluid {
        min-height: 730px
    }
}

@media (max-width: 414px) {
    .implementation .container-fluid .container .content .text-block .text .accordion, .implementation .container-fluid .container .content .text-block .text .accordion-third {
        margin-top: 30px
    }

    .format {
        height: auto
    }

    .format .container-fluid {
        height: auto
    }

    .format .container-fluid .container .content {
        padding-bottom: 40px
    }

    .teachers {
        height: auto
    }

    .teachers .container-fluid {
        height: auto
    }

    .teachers .container-fluid .full-container {
        position: inherit;
        top: 0
    }

    .teachers .container-fluid .container .content {
        padding-bottom: 40px
    }

    .contact {
        height: auto
    }

    .contact .container-fluid {
        height: auto
    }

    .contact .container-fluid .container .content {
        padding-bottom: 1px
    }

    .review .container-fluid .container .content {
        padding-bottom: 1px
    }

    .gallery .container-fluid .container .content .title-block {
        margin-bottom: 30px
    }
}

@media (max-width: 375px) {
    .gallery .container-fluid .full-container .gallery-slider {
        height: 270px
    }
}