/******************************************************************* 
||||||||||    FONTS    |||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
@font-face {
    font-family: "LeagueSpartan";
    font-style: normal;
    font-weight: 400;
    src:
        url('./assets/fonts/LeagueSpartan-Regular.woff2') format('woff2'),
        url('./assets/fonts/LeagueSpartan-Regular.woff') format('woff');
}
@font-face {
    font-family: "LeagueSpartan";
    font-style: normal;
    font-weight: 600;
    src:
        url('./assets/fonts/LeagueSpartan-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/LeagueSpartan-SemiBold.woff') format('woff');
}
@font-face {
    font-family: "LeagueSpartan";
    font-style: normal;
    font-weight: 700;
    src:
        url('./assets/fonts/LeagueSpartan-Bold.woff2') format('woff2'),
        url('./assets/fonts/LeagueSpartan-Bold.woff') format('woff');
}

@font-face {
    font-family: "Cabin";
    font-style: normal;
    font-weight: 400;
    src:
        url('./assets/fonts/Cabin-Regular.woff2') format('woff2'),
        url('./assets/fonts/Cabin-Regular.woff') format('woff');
}
@font-face {
    font-family: "Cabin";
    font-style: normal;
    font-weight: 500;
    src:
        url('./assets/fonts/Cabin-Medium.woff2') format('woff2'),
        url('./assets/fonts/Cabin-Medium.woff') format('woff');
}
@font-face {
    font-family: "Cabin";
    font-style: normal;
    font-weight: 600;
    src:
        url('./assets/fonts/Cabin-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/Cabin-SemiBold.woff') format('woff');
}
@font-face {
    font-family: "Cabin";
    font-style: normal;
    font-weight: 700;
    src:
        url('./assets/fonts/Cabin-Bold.woff2') format('woff2'),
        url('./assets/fonts/Cabin-Bold.woff') format('woff');
}



/******************************************************************* 
||||||||||    BASE    |||||||||||||||||||||||||||||||||||||||||||||| 
********************************************************************/
:root {
    --font-base: "Cabin", sans-serif;
    --font-heading: "LeagueSpartan", sans-serif;

    --color-black: #000000;
    --color-dark-grey: #3D3953;
    --color-grey: #45455D;
    --color--light: rgba(244, 244, 244, 1);
    --color-white: #ffffff;
    --color-red: #E04F4F;
    --color-blue: #085E9D;
    --color-light-blue: #A7DEF6;
    --color-yellow: #FDE18D;

    --text-dark: var(--color-dark-grey);
    --text-grey: var(--color-grey);
    --text-light: var(--color--light);
    --text-white: var(--color-white);
    --text-red: var(--color-red);
    --text-blue: var(--color-blue);
    --text-light-blue: var(--color-light-blue);
    --text-yellow: var(--color-yellow);

    --background-dark: var(--color-dark-grey);
    --background-grey: var(--color-grey);
    --background-light: var(--color--light);
    --background-white: var(--color-white);
    --background-red: var(--color-red);
    --background-blue: var(--color-blue);
    --background-light-blue: var(--color-light-blue);
    --background-yellow: var(--color-yellow);
}

/* COMMON */
body {
    font-size: 24px;
    font-family: var(--font-base);
    line-height: 34px;
    font-weight: 400;
    color: var(--text-dark);
    padding: 0;
    margin: 0;
}
body * {
    box-sizing: border-box;
    max-width: 100%;
}
.body__inner {
    overflow: hidden;
}

/* HEADINGS */
h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    font-family: var(--font-heading);
}
h1 {
    font-size: 70px;
    line-height: 73px;
}
h2 {
    font-size: 60px;
    line-height: 1.2;
}
h3 {
    font-size: 32px;
    line-height: 42px;
}
h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin: 0 0 24px 0;
}
h5 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}
h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0 !important;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* TEXT PARTS */
p {
    margin: 0;
}
p:not(:last-child) {
    margin-bottom: 15px;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
.show--sm,
.show--md {
    display: none !important;
}

/* BUTTONS */
.btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    flex-shrink: 0;
    min-height: 53px;
    font-family: var(--font-base);
    font-size: 17px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-blue);
    padding: 10px 30px;
    border-radius: 53px;
    background-color: transparent;
    border: 2px solid var(--color-blue);
}
.btn:hover {
    text-decoration: underline;
}
.btn--white {
    color: var(--text-red);
    background-color: var(--background-white);
    border-color: var(--background-white);
}
.btn--red {
    color: var(--text-white);
    background-color: var(--background-red);
    border-color: var(--background-red)
}
.btn--blue {
    color: var(--text-white);
    background-color: var(--background-blue);
    border-color: var(--background-blue);
}
@media screen and (max-width: 1199px) {
    .btn {
        font-size: 16px;
        padding: 10px 30px;
    }
}
@media screen and (max-width: 991px) {
    .btn {
        min-height: 48px;
        font-size: 15px;
        padding: 10px 20px;
    }
}

/* GRID */
.grid {
    display: grid;
    gap: 40px;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* SECTION */
.section {
    position: relative;
    z-index: 1;
}
.section--dark {
    color: var(--text-light);
    background-color: var(--background-dark);
}
.section--light {
    color: var(--text-grey);
    background-color: var(--background-light);
}
.section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.section__bg img {
    width: 100%;
    height: 100%;
}
.section__bg.section__bg--cover img {
    object-fit: cover;
}
.section__bg.section__bg--contain img {
    object-fit: contain;
}
.section:not(:first-child):not(.disable--margin-top):not(.has--bg) {
    margin-top: 130px;
}
.section:not(.disable--margin-bottom):not(.has--bg) {
    margin-bottom: 130px;
}
.section__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px 0;
    width: 1570px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    z-index: 1;
}
.section__container.section__container--xlg {
    width: 1520px;
}
.section__container.section__container--lg {
    width: 1440px;
}
.section__content {
    position: relative;
    z-index: 1;
}
.section__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px 0;
    text-align: center;
}
.section__head__title {
    color: var(--text-grey);
    margin: 0;
}
.section__head__subtitle {
    font-weight: 500;
    width: 1184px;
    color: var(--text-grey);
    margin: 0 0 15px 0;
}
.section__body {}
.section__text {}
.section__text p {
    margin: 0;
}
.section__text p:not(:last-child) {
    margin-bottom: 15px;
}
.section__text a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}   
.text-highlight {
    display: inline-block;
    color: var(--color-orange);
}

/* LAYERS */
.layers {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.layer {
    position: absolute;
    height: auto;
    z-index: 1;
}
.wave {
    position: relative;
    width: 100%;
}
.wave-top {
    transform: rotateY(180deg);
}
.footer .wave-top {
    transform: rotateX(180deg);
}
.wave-bottom {
    bottom: -30px;
}
@media screen and (max-width: 1399px) {
    .grid {
        gap: 30px;
    }
}
@media screen and (max-width: 1099px) {
    .grid {
        gap: 60px 20px;
    }
}
@media screen and (max-width: 991px) {
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 50px;
    }
    h5 {
        font-size: 26px;
    }
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block !important;
    }
}
@media screen and (max-width: 767px) {
    .hide--sm {
        display: none !important;
    }
    .show--sm {
        display: block !important;
    }
}
@media screen and (max-width: 575px) {
    .section__container {
        max-width: calc(100% - 30px);
    }
    .grid--4 {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 40px;
        line-height: 46px;
    }
    h2 {
        font-size: 36px;
    }
    .section:not(:first-child):not(.disable--margin-top):not(.has--bg) {
        margin-top: 80px;
    }
    .section:not(.disable--margin-bottom):not(.has--bg) {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 359px) {

}



/******************************************************************* 
||||||||||    HEADER    ||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.header {
    position: sticky;
    top: 0;
    background-color: var(--background-white);
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
}
.header .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 0;
}
.header__logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 244px;
    height: 77px;
    z-index: 999;
}
.header__logo img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.header__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 20px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__nav a {
    color: inherit;
    font-size: 17px;
    font-weight: 500;
}
.header__nav a:hover {
    color: var(--text-red);
}
.hamb {
    display: none;
}
.header .btn {
    font-size: 20px;
}
.header__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}
.header__socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1399px) {
    .header .btns {
        flex-direction: column;
        align-items: unset;
        gap: 10px;
    }
}

@media screen and (max-width: 991px) {
    .header .section__content {
        padding: 18px 0;
    }
    .header__controls {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        top: 92px;
        right: 0;
        transform: translateX(100%);
        height: calc(100vh - 92px);
        width: 290px;
        padding: 30px 20px;
        background-color: #fff;
        transition: all .4s ease;
        -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        overflow-y: auto;
        z-index: 998;
    }
    .nav--opened .header__controls {
        transform: translateX(0);
    }
    .header__nav {
        flex-direction: column;
        gap: 10px;
    }
    .hamb {
        position: relative;
        display: block;
        width: 40px;
        height: 26px;
        border-top: 2px solid var(--background-grey);
        border-bottom: 2px solid var(--background-grey);
        transition: all .2s ease;
        cursor: pointer;
        z-index: 999;
    }
    .nav--opened .hamb {
        border-color: transparent;
    }
    .hamb span {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        height: 1px;
        width: 100%;
        z-index: 1;
    }
    .hamb span:before,
    .hamb span:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
        background-color: var(--background-dark);
        transition: all .2s ease;
        z-index: 1;
    }
    .nav--opened .hamb span:before {
        transform: translateY(-50%) rotate(-45deg);
    }
    .nav--opened .hamb span:after {
        transform: translateY(-50%) rotate(45deg);
    }
    .header .btn {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        min-height: 80px;
    }
    .header__logo {
        width: 130px;
        height: 56px;
    }
}



/******************************************************************* 
||||||||||    HERO    |||||||||||||||||||||||||||||||||||||||||||||| 
********************************************************************/
.hero {
    padding-bottom: 150px;
}
.hero .section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    padding: 80px 0;
    gap: 65px;
    width: 1042px;
    margin: 0 auto;
    text-align: center;
}
.hero .section__content h1,
.hero .section__content p {
    margin: 0;
}
.hero .section__content p {
    font-size: 28px;
    font-weight: 500;
}
@media screen and (max-width: 991px) {
    .hero {
        padding-bottom: 0;
    }
    .hero .section__content p {
        font-size: 22px;
    } 
}
@media screen and (max-width: 575px) {

}



/******************************************************************* 
||||||||||    WHY GWAK    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.why-gwak__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
}
.why-gwak__list__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    background-color: var(--background-white);
    -webkit-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    -moz-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
}
.why-gwak__list__item img {
    width: 224px;
    height: 224px;
    object-fit: contain;
}
.why-gwak__list__item h5 {
    margin: 0;
}
.why-gwak__list__item h5:not(:last-child) {
    margin-bottom: 40px;
}
.why-gwak__list__item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
@media screen and (max-width: 991px) {
    .why-gwak__list__item p {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .why-gwak__list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 575px) {
    .why-gwak__list {
        grid-template-columns: 1fr;
    }
}

/* LAYERS */
.why-gwak .layer__one {
    right: -60px;
    top: 110px;
    width: 86px;
}
.why-gwak .layer__two {
    right: 60px;
    bottom: 80px;
    transform: translate(100%, 100%) rotate(180deg);
    width: 180px;
}
.why-gwak .layer__three {
    left: -100px;
    top: 160px;
    width: 86px;
    transform: rotate(120deg);
}



/******************************************************************* 
||||||||||    CTA    |||||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.cta {
    background-color: var(--background-red);
}
.cta .section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.cta .section__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.cta .section__text h2 {
    margin: 0;
}
@media screen and (max-width: 767px) {
    .cta .section__content {
        grid-template-columns: 1fr;
    }
}



/******************************************************************* 
||||||||||    PROGRAMS    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.programs__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}
.programs__list__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(33.333% - 23.33px);
    text-align: center;
    padding: 30px;
    background-color: var(--background-white);
    -webkit-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    -moz-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
}
.programs__list__item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.programs__list__item img:not(:last-child) {
    margin-bottom: 30px;
}
.programs__list__item h5 {
    margin: 0;
}
.programs__list__item small {
    font-size: 24px;
    font-weight: 400;
}
.programs__list__item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.programs__list__item p:not(:first-child) {
    margin-top: 35px;
}
.programs__list__item p span {
    display: block;
}
@media screen and (max-width: 991px) {
    .programs__list__item {
        width: calc(50% - 17.49px);
    }
    .programs__list__item small {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .programs__list {
        flex-direction: column;
    }
    .programs__list__item {
        width: 100%;
    }
}

/* LAYERS */
.programs .layer__one {
    top: 0;
    left: 0;
    transform: translate(-60%, -60%);
    width: 180px;
}
.programs .layer__two {
    right: 30px;
    top: 55%;
    width: 90px;
    transform: rotate(0deg);
}
.programs .layer__three {
    left: 100px;
    bottom: 0;
    width: 90px;
    transform: rotate(0deg);
}
@media screen and (max-width: 1199px) {
    .programs .layer__three {
        left: 50px;
    }
}




/******************************************************************* 
||||||||||    PROGRAMS SUMMARY    ||||||||||||||||||||||||||||||||||
********************************************************************/
.programs-summary {
    margin-top: 220px;
    padding: 150px 0;
    background-color: var(--background-yellow);
}
.programs-summary .section__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.programs-summary__image {
    width: 632px;
    max-width: 40%;
    flex-shrink: 0;
}
.programs-summary .section__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.programs-summary .section__content h2 {
    margin: 0;
}
.programs-summary__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.programs-summary__cards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    background-color: var(--background-white);
    border-radius: 10px;
}
.programs-summary__cards__item__image {
    width: 100%;
    aspect-ratio: 16/9;
}
.programs-summary__cards__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.programs-summary__cards__item span {
    padding: 18px;
    font-size: 24px;
    font-weight: 600;
}

/* LAYERS */
.programs-summary .layer__one {
    top: 0;
    right: 100px;
    transform: translate(0, -100%);
    width: 194px;
}
@media screen and (max-width: 767px) {
    .programs-summary {
        padding: 80px 0;
    }
    .programs-summary .section__container {
        flex-direction: column;
    }
    .programs-summary__image {
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
}
@media screen and (max-width: 575px) {
    .programs-summary__cards {
        grid-template-columns: 1fr;
    }
}



/******************************************************************* 
||||||||||    OUR WORLD    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.gallery {
  display: grid;
  grid-template-columns: calc(56.3% - 15px) calc(43.7% - 15px);
  grid-auto-rows: 319px;
  gap: 30px;
}
.gallery__item {
    overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
    .gallery__item:nth-child(1) {
        grid-row: 1 / span 2;
        grid-column: 1;
    }
    .gallery__item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    .gallery__item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .gallery__item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    .gallery__item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 767px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* LAYERS */
.our-world .layer__one {
    top: 0;
    left: 0;
    transform: translate(-100%, -100%);
    width: 90px;
}
.our-world .layer__two {
    bottom: 15%;
    left: 0;
    transform: translate(-50%, 0);
    width: 190px;
}
.our-world .layer__three {
    top: 60%;
    right: 0;
    transform: translate(50%, -100%) rotate(90deg);
    width: 190px;
}
.our-world .layer__four {
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%);
    width: 90px;
}



/******************************************************************* 
||||||||||    FEEDBACK    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.feedback {
    padding: 150px 0;
    margin-top: 200px;
    background-color: var(--background-light-blue);
}
.feedback__slider .slick-track {
    max-width: unset;
}
.feedback__slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 9px;
    margin: 0;
    margin-top: 40px;
    padding: 0;
}
.feedback__slider .slick-dots li {
    cursor: pointer;
    width: 59px;
    height: 3px;
    background-color: var(--background-white);
}
.feedback__slider .slick-dots li.slick-active {
    background-color: var(--background-red);
}
.feedback__slider .slick-dots li button {
    display: none;
}
.feedback__slider__item__content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 45px;
    padding: 75px 90px;
    background-color: var(--background-white);
    border-radius: 50px;
    overflow: hidden;
}
.feedback__slider__item img {
    width: 236px;
    height: auto;
}
.feedback__slider__item__text p:not(:last-child) {
    margin-bottom: 36px;
}
.feedback__slider__item__text strong {
    display: block;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
}
.feedback__slider__item__text small {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-red);
}
@media screen and (max-width: 767px) {
    .feedback {
        padding: 80px 0;
    }
    .feedback__slider__item__content {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 575px) {
    .feedback__slider__item__content {
        padding: 70px 35px;
    }
    .feedback__slider__item__text p {
        font-size: 20px;
        line-height: 34px;
    }
    .feedback__slider .slick-dots li {
        width: 38px;
    }
}

/* LAYERS */
.feedback .layer__one {
    top: 0;
    left: 60px;
    transform: translate(0, -100%);
    width: 280px;
}



/******************************************************************* 
||||||||||    FAQ    |||||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq__list__item {
    background-color: var(--background-white);
    -webkit-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    -moz-box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    box-shadow: -1.04px -5.91px 38px 0 #EEEEFC;
    border-radius: 20px;
}
.faq__list__item__title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    padding: 30px;
    cursor: pointer;
    padding-right: 60px;
    z-index: 1;
}
.faq__list__item__title .close {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(0);
    transition: all .2s ease;
    z-index: 1;
}
.faq__list__item__title .close:before,
.faq__list__item__title .close:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background-color: var(--color-dark-grey);
    z-index: 1;
}
.faq__list__item__title .close:after {
    transform: translate(-50%, -50%) rotate(-90deg);
}
.faq__list__item__body {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 60px 30px 30px;
}
.faq__list__item.is-active .faq__list__item__title .close {
    transform: translateY(-50%) rotate(45deg);
}
.faq__list__item:not(.is-active) .faq__list__item__body {
    display: none;
}

/* LAYERS */
.faq .layer__one {
    top: 0;
    right: 0;
    transform: translate(60%, -60%) rotate(90deg);
    width: 180px;
}
.faq .layer__two {
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%) rotate(0deg);
    width: 90px;
}
.faq .layer__three {
    bottom: 35%;
    left: 0;
    transform: translate(-100%, 100%) rotate(-90deg);
    width: 90px;
}

@media screen and (max-width: 1199px) {
    .faq .layer__two {
        right: 50px;
    }
}
@media screen and (max-width: 768px) {
    .faq__list__item__title {
        font-size: 18px;
        line-height: 26px;
        padding: 20px;
        padding-right: 40px;
    }
    .faq__list__item__title .close {
        right: 20px;
    }
    .faq__list__item__body {
        font-size: 22px;
        padding: 0 20px 20px;
    }
}



/******************************************************************* 
||||||||||    CONTACT    |||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.contact .section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact .layer__one {
    top: -80px;
    left: 220px;
    transform: translateX(-100%) rotate(0deg);
    width: 160px;
}
.contact .layer__two {
    bottom: 0;
    right: 180px;
    transform: translate(100%, 0) rotate(0deg);
    width: 90px;
}




/******************************************************************* 
||||||||||    FOOTER    ||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.footer {
    position: relative;
    background-color: var(--background-red);
    z-index: 1;
}
.footer .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 0 60px 0;
}
.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 239px;
    height: 120px;
}
.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
}
.footer__contacts a {
    color: inherit;
}
.footer__contacts a:hover {
    text-decoration: underline;
}
.footer__copy {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__copy a {
    color: inherit;
}
.footer__copy a:hover {
    text-decoration: underline;
}
.footer__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}
.footer__socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    .footer .section__content {
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
    }
}



/******************************************************************* 
||||||||||    MODAL    |||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.modal {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    text-align: center;
    padding: 25px;
    background-color: var(--background-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 0px 48px 9px rgba(0,0,0,0.22);
    -webkit-box-shadow: 2px 0px 48px 9px rgba(0,0,0,0.22);
    -moz-box-shadow: 2px 0px 48px 9px rgba(0,0,0,0.22);
    z-index: 555;
}
.modal.is-active {
    display: block;
}
.modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 400px;
    max-width: 33.333vw;
    max-height: 50vh;
    overflow-y: auto;
    width: 100%;
}
.modal .btn {
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
    .modal {
        left: 15px;
    }
    .modal__content {
        max-width: calc(100vw - 15px);
        max-height: 50vh;
    }
}