/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    font-size: 17.5px;
    color: #262626;
    overflow-x: hidden;
}

body {
    line-height: 1;
    font-family: "Gilroy";
    overflow-x: hidden;
    background: #fff9f5;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

address, blockquote, center, section, main, header, footer, div, fieldset, form, input, textarea,
h1, h2, h3, h4, h5, h6, hr, menu, ol, ul, li, p, span, a, pre, table {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

input, textarea {
    border-radius: 0;
    -webkit-appearance: none;
    outline: none;
}

:root {
    --animate-delay: 0.5s;
}
/* Fonts */
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Medium.eot");
    src: url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Regular.eot");
    src: url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* ------Base------ */
.container {
    width: 1033px;
    margin: 0 auto;
}

h2 {
    font-size: 3.214rem;
    font-weight: 500;
}

h3 {
    font-size: 2.14rem;
    font-weight: 500;
    line-height: 52px;
}

p {
    line-height: 1.257;
    margin-bottom: 20px;
}

.btn {
    background: #ff593a;
    font-size: 0.96rem;
    border-radius: 10px;
    color: #ffffff;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    min-width: 180px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease-out;
}

.btn:hover {
    background: transparent;
    border: 1px solid #ff593a;
    color: #ff593a;
}

.visible-dp-block {
    display: block;
}

.visible-mb-block {
    display: none;
}

.visible-dp-in-block {
    display: inline-block;
}

.visible-mb-in-block {
    display: none;
}

/* ------Slider------ */
.slider {
    margin: 0 auto;
}

.slider .item img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
}

.slider .slick-slide {
    display: inline-block;
    float:none;
    text-align: center;
}

/* ------Intro------ */
.intro {
    position: relative;
    background: url("../images/intro/background.jpg") no-repeat center;
    background-size: cover;
}

.intro:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background: url("../images/intro/arch.png") no-repeat top center;
    background-size: cover;
    height: 260px;
    width: 100%;
    z-index: 0;
}

.intro .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.intro iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
}

.intro .blackout {
    background: url("../images/intro/gradient.png") no-repeat center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.intro header {
    z-index: 99;
    padding: 84px 0 20px;
    position: fixed;
    width: 100%;
    transition: all 0.1s linear;
}

.intro header.sticky {
    background: #FFFFFF;
    padding: 20px 0 20px;
    -webkit-box-shadow: 0px 3px 7px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 3px 7px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 3px 7px -8px rgba(0,0,0,0.75);
}

.intro .header {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.intro .logo {
    max-width: 148px;
}

.intro .logo-sticky {
    display: none;
}

.intro .sticky .logo-normal {
    display: none;
}

.intro .sticky .logo-sticky {
    display: block;
}

.intro .menu-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.intro .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 55px;
}

.intro .menu li {
    margin-right: 26px;
}

.intro .menu li:last-child {
    margin-right: 0;
}

.intro .menu a {
    font-size: 1rem;
    font-family: "Gilroy";
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

.intro .sticky .menu a {
    color: #1c1c1c;
}

.intro .menu a:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    content: "";
    transition: width 0.2s ease-out;
}

.intro .sticky .menu a:hover {
    color: #ff6544;
}

.intro .sticky .menu a:after {
    background-color: #ff6544;
}

.intro .menu a:hover:after {
    width: 100%;
}

.intro .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.intro .social li {
    margin-right: 14px;
}

.intro .social li:last-child {
    margin-right: 0;
}

.intro .social a {
    width: 15px;
    height: 15px;
    display: inline-block;
}

.intro .social a.facebook {
    background: url("../images/social/facebook-light.svg") no-repeat center;
    background-size: 14px;
}

.intro .social a.linkedin {
    background: url("../images/social/linkedin-light.svg") no-repeat center;
    background-size: 14px;
}

.intro .social a.instagram {
    background: url("../images/social/instagram-light.svg") no-repeat center;
    background-size: 14px;
}

.intro .sticky .social a.facebook {
    background: url("../images/social/facebook-dark.svg") no-repeat center;
    background-size: 14px;
}

.intro .sticky .social a.linkedin {
    background: url("../images/social/linkedin-dark.svg") no-repeat center;
    background-size: 14px;
}

.intro .sticky .social a.instagram {
    background: url("../images/social/instagram-dark.svg") no-repeat center;
    background-size: 14px;
}

.intro h1 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 3.214rem;
    font-weight: 500;
    padding: 350px 0 389px;
}

.intro .hamburger {
    display: none;
}

.intro #toggle {
    display: none;
}

.intro .toggle {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 11px;
    width: 40px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
}

.intro .toggle > span,
.intro .toggle > span::before,
.intro .toggle > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}
.intro .toggle > span::before {
    content: '';
    top: -10px;
}
.intro .toggle > span::after {
    content: '';
    top: 10px;
}

.intro #toggle:checked ~ .toggle > span {
    transform: rotate(45deg);
}

.intro #toggle:checked ~ .toggle > span::before {
    top: 0;
    transform: rotate(0);
}

.intro #toggle:checked ~ .toggle > span::after {
    top: 0;
    transform: rotate(90deg);
}

.intro .toggle > span,
.intro .toggle > span::before,
.intro .toggle > span::after {
    transition-duration: .25s;
}

.intro .menu-wrap {
    position: relative;
}
/* ------About------ */
.about {
    position: relative;
    z-index: 2;
    margin-top: -106px;
}

.about h3 {
    margin-bottom: 43px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.about .slider {
    max-width: 870px;
    margin-bottom: 142px;
}

.about .description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.about .image {
    width: 49%;
    padding-left: 44px;
    padding-top: 10px;
}

.about .text {
    width: 43%;
    padding-bottom: 82px;
    padding-right: 30px;
}

.about .text p:last-child {
    font-size: 0.86rem;
    margin-top: 21px;
    margin-bottom: 0;
}

.about .text img {
    margin-top: 27px;
}

.about h2 {
    margin-bottom: 66px;
}

/* ------Course------ */
.course {
    background: #FFFFFF;
    position: relative;
}

.course .description {
    padding: 127px 78px 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.course h3 {
    margin-bottom: 38px;
}

.course .text {
    width: 53%;
}

.course .btn {
    margin-top: 25px;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.course .image {
    position: relative;
    width: 44%;
}

.course .image img {
    position: absolute;
    bottom: -7px;
    right: 28px;
    max-width: 480px;
}

/* ------Brands------ */
.brands {
    padding: 80px 0 383px;
    background: #FFFFFF;
    position: relative;
}

.brands:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/intro/arch.png") no-repeat top center;
    background-size: cover;
    height: 260px;
    width: 100%;
    z-index: 0;
}

.brands h3 {
    text-align: center;
    margin-bottom: 71px;
}

.brands .slider {
    max-width: 950px;
}

/* ------Contacts------ */
.contacts {
    position: relative;
    margin-top: -86px;
    padding-bottom: 107px;
}

.contacts .description {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}

.contacts h3 {
    margin-bottom: 18px;
}

.contacts .text {
    width: 43%;
    padding-left: 82px;
}

.contacts .text a {
    color: #262626;
}

.contacts .text a:hover {
    text-decoration: underline;
}

.contacts .form {
    width: 42%;
    margin-top: 10px;
}

.contacts input:not(.btn), .contacts textarea {
    font-family: "Gilroy";
    border: none;
    border-bottom: 1px solid #5d5d5d;
    padding: 7px 0;
    background: transparent;
    font-weight: 300;
    width: 100%;
    margin-bottom: 17px;
    outline: none;
    resize: vertical;
    font-size: 1rem;
}

.contacts input::placeholder, .contacts textarea::placeholder {
    color: #8c8c8c;
    font-weight: 300;
}

.contacts .btn {
    font-family: "Gilroy";
    margin-top: 46px;
    padding: 10px;
    outline: none;
    cursor: pointer;
}

.contacts .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
}

.contacts .social li {
    margin-right: 40px;
}

.contacts .social li:last-child {
    margin-right: 0;
}


.contacts .social a {
    width: 15px;
    height: 15px;
    display: inline-block;
}

.contacts .social a.facebook {
    background: url("../images/social/facebook-dark.svg") no-repeat center;
    background-size: 14px;
}

.contacts .social a.linkedin {
    background: url("../images/social/linkedin-dark.svg") no-repeat center;
    background-size: 14px;
}

.contacts .social a.instagram {
    background: url("../images/social/instagram-dark.svg") no-repeat center;
    background-size: 14px;
}


/* ------Footer------ */
footer {
    padding: 25px 0;
    text-align: center;
    background: #FFFFFF;
    position: relative;
}

footer p {
    font-size: 0.8rem;
    color: #929191;
    margin-bottom: 8px;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    text-decoration: underline;
    color: inherit;
}

footer a:hover {
    text-decoration: none;
}

@media only screen and (max-width : 1066px) {
    .container {
        width: 970px;
        padding: 0 15px;
    }

    .about .text {
        width: 44%;
    }
}

@media only screen and (max-width : 992px) {
    html {
        font-size: 16.5px;
    }

    .container {
        width: 750px;
    }

    .intro header {
        padding-top: 60px;
    }

    .intro h1 {
        padding: 240px 0 355px;
    }

    .about {
        margin-top: -117px;
    }

    .about .image {
        padding-left: 0;
        width: 44%;
    }

    .about .text {
        width: 53%;
        padding-right: 0;
        padding-bottom: 60px;
    }

    .about h2 {
        margin-bottom: 53px;
    }

    .about .text img {
        margin-top: 18px;
        max-width: 35%;
    }

    .about .slider {
        margin-bottom: 125px;
    }

    .course .description {
        padding: 93px 20px 85px;
    }

    h3 {
        line-height: 45px;
    }

    .course .image img {
        right: 0;
        max-width: 430px;
    }

    .course .text {
        width: 60%;
    }

    .course .image {
        width: 40%;
    }

    .brands {
        padding: 60px 0 335px;
    }

    .slider .slick-slide {
        margin: 0 25px;
    }

    .contacts {
        margin-top: -105px;
        padding-bottom: 85px;
    }

    .contacts .text {
        padding-left: 20px;
    }

    .contacts .form {
        width: 45%;
    }

    .contacts .btn {
        margin-top: 38px;
    }

    .contacts .social {
        margin-top: 50px;
    }
}

@media only screen and (max-width : 768px) {
    html {
        font-size: 16px;
    }

    .visible-dp-block {
        display: none;
    }

    .visible-mb-block {
        display: block;
    }

    .visible-dp-in-block {
        display: none;
    }

    .visible-mb-in-block {
        display: inline-block;
    }

    .container {
        width: 100%;
        max-width: 480px;
    }

    .intro .logo {
        max-width: 130px;
    }

    .intro:after {
        height: 90px;
    }

    .intro .hamburger {
        display: block;
    }

    .intro .menu-row {
        display: none;
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        background: #ffffff;
        padding: 20px 30px;
        z-index: 3;
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 8px -3px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 8px -3px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 8px -3px rgba(0,0,0,0.75);
    }

    .intro .menu {
        flex-direction: column;
        margin-right: 0;
    }

    .intro .menu li {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .intro .menu a {
        color: #262626;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .intro .social {
        margin-top: 10px;
    }

    .intro .social li {
        margin-right: 18px;
    }

    .intro .social li:last-child {
        margin-right: 0;
    }

    .intro .social a {
        width: 18px;
        height: 18px;
    }

    .intro .social a.facebook {
        background: url("../images/social/facebook-dark.svg") no-repeat center;
        background-size: 18px;
    }

    .intro .social a.linkedin {
        background: url("../images/social/linkedin-dark.svg") no-repeat center;
        background-size: 18px;
    }

    .intro .social a.instagram {
        background: url("../images/social/instagram-dark.svg") no-repeat center;
        background-size: 18px;
    }

    .intro header {
        padding-top: 40px;
    }

    .intro h1 {
        padding: 170px 0;
        font-size: 2.8rem;
    }

    .intro iframe {
        transform: translate(-50%, -50%) scale(1);
        display: block;
        min-height: -moz-available;
        min-height: -webkit-fill-available;
        min-height: fill-available;
    }

    .intro .toggle {
        top: 0;
    }

    .intro .sticky .toggle > span, .intro .sticky .toggle > span::before, .intro .sticky .toggle > span::after {
        background: #000000;
    }

    .about {
        position: relative;
        z-index: 2;
        margin-top: -10px;
    }

    .slider .slick-slide {
        margin: 0 10px;
    }

    .about .description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .about .image {
        width: 100%;
        margin-bottom: 25px;
    }

    .about .text {
        width: 100%;
        padding-right: 0;
    }

    .about .text img {
        margin: 0 auto;
        display: block;
    }

    h2 {
        font-size: 2.5rem;
        font-weight: 500;
    }

    .about h2 {
        margin-bottom: 45px;
    }

    .about .text p:last-child {
        text-align: center;
    }

    .course .description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
        padding: 65px 0 70px;
    }

    .course .text {
        width: 100%;
    }

    .course .image {
        width: 100%;
    }

    .course .image img {
        position: relative;
        bottom: 0;
        right: auto;
        max-width: 380px;
        margin: 20px auto 0 auto;
        display: block;
        left: -100px;
    }

    .course h3 {
        text-align: center;
    }

    .course .btn {
        margin-top: 35px;
    }

    .brands {
        padding: 40px 0 200px;
    }

    .brands:after {
        height: 140px;
    }

    .brands h3 {
        margin-bottom: 50px;
    }

    .contacts .description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }

    .contacts .text {
        width: 100%;
        padding-left: 0;
    }

    .contacts .form {
        width: 100%;
    }

    .contacts {
        margin-top: -45px;
        padding-bottom: 60px;
    }

    .contacts h3 {
        margin-bottom: 38px;
    }

    .contacts .text p {
        margin-bottom: 15px;
    }

    .contacts .text p:first-of-type {
        margin-bottom: 40px;
    }

    .contacts input:not(.btn), .contacts textarea {
        padding: 10px 0;
        margin-bottom: 22px;
    }

    .contacts .btn {
        margin-top: 20px;
    }

    .about .slider {
        margin-bottom: 95px;
    }

    .contacts .social {
        justify-content: center;
        margin: 45px 0 30px;
    }

    .brands .slider .item img {
        max-height: 35px;
    }

    .about .image {
        padding-top: 0;
    }
}

@media only screen and (max-width : 480px) {
    .course .image img {
        width: 100%;
        left: 0;
        transform: translateX(-26.5%);
    }
}

@media only screen and (min-width : 2000px) {
    .intro:after, .brands:after {
        height: 360px;
    }
}

@media only screen and (min-width : 3200px) {
    .intro h1 {
        padding: 406px 0 455px;
    }

    .brands {
        padding: 91px 0 443px;
    }

    .intro:after, .brands:after {
        height: 500px;
    }

    .intro:after {
        bottom: -5px;
    }
}

@media only screen and (min-width : 4500px) {
    .intro h1 {
        padding: 406px 0 650px;
    }

    .brands {
        padding: 91px 0 643px;
    }

    .intro:after, .brands:after {
        height: 700px;
    }

    .intro:after {
        bottom: -10px;
    }
}