html {
    box-sizing: border-box;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

*::before,
*::after {
    box-sizing: inherit;
}


body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "BentonSans Regular", sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    flex: 0 0 auto;
}

/* FOOTER always bottom */

.site {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

main {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

.wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 576px) {
    .wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.hidden {
    display: none;
}


a {
    background-color: transparent;
    text-decoration: none;
    word-wrap: break-word;
    color: #4FC0EE;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 0;
}

/* ul {
  list-style: none;
  margin: 0;
  padding: 0;
} */


figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

.ghost {
    display: none;
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* HEADER */
.main_header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    background: #ffffff;
    display: flex;
}

.header_wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

@media (max-width: 576px) {
    .header_wrap {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.logo-wrap .logo {
    min-width: 191px;
    max-width: 191px;
    border-radius: 0px;
}

.site_navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}


/* MENU */
.main_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0px;
    padding: 0;
    height: 72px;
}

.main_menu li {
    margin-right: 32px;
    position: relative;
    cursor: pointer;
}

.main_menu li span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 72px;
}

.main_menu li.menu-item-has-children > span::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #131418;
    transition: transform 0.3s ease-in-out;
}

.main_menu li.menu-item-has-children:hover > span::after {
    transform: rotate(180deg);
    border-top: 5px solid #131418;
}


.main_menu li:last-child {
    margin-right: 0px;
}

.main_menu li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #131418;
    padding-bottom: 14px;
    border-bottom: 2px solid transparent;
    border-radius: 1px;
    transition: .3s ease-in-out;
}


@media (max-width: 1070px) {
    .main_menu li a {
        font-size: 14px;
    }
}

.mobile_nav {
    display: flex;
}

.menu-item .sub-menu {
    display: none;
    top: 55px;
    left: -5%;
    position: absolute;
    background-color: #202226;
    margin: 0;
    padding: 16px 24px;
    border-radius: 16px;
    list-style: none;
    z-index: 1000;
    min-width: 270px;
}

.menu-item:hover .sub-menu {
    display: block;
}

.sub-menu li {
    padding-top: 8px;
    padding-left: 0px;
    padding-right: 10px;
    padding-bottom: 8px;
}

.sub-menu li a {
    text-decoration: none;
    color: #ffffff;
    padding: 0;
    border-bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: max-content;
}

.sub-menu li a:hover {
    color: #0CC3F7;
    border-bottom: 0px;
}

.main_menu li.current-menu-item a {
    border-bottom: 2px solid #0CC3F7;
    transition: .5s ease-in-out;
}

.main_menu li.current-menu-item span {
    border-bottom: 2px solid #0CC3F7;
    transition: .5s ease-in-out;
}


/* MOBILE MENU */

.burger-menu {
    position: relative;
}

.burger-menu_button {
    display: none;
    position: relative;
    z-index: 30;
    width: 60px;
    height: 60px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
    position: absolute;
    width: 34px;
    height: 2px;
    background-color: #000000;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
    content: '';
    top: -10px;
}

.burger-menu_lines::after {
    content: '';
    top: 10px;
}


.burger-menu_active .burger-menu_lines {
    background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
    top: 0;
    transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.burger-menu_nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 20;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    background-color: #000000;
    overflow-y: auto;
    right: -100%;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    overflow: hidden;
}

.burger-menu_active .burger-menu_nav {
    right: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger_logo {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 100%;
    background: #ffffff;
    margin-bottom: 40px;
}

.burger_logo .logo_mob {
    margin-top: 10px;
    width: 100%;
    min-width: 191px;
    max-width: 191px;
}

.mobile_nav_wrap {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}

.mobile_nav_wrap ul {
    list-style: none;
}

.mobile_nav_wrap a {
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    color: #ffffff;
    width: max-content;
}

.mobile_nav_wrap span {
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    width: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mobile_nav_wrap .menu-item-has-children > span::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    transition: transform 0.3s ease-in-out;
}

.mobile_nav_wrap .menu-item-has-children.active > span::after {
    transform: rotate(180deg);
    border-top: 5px solid #ffffff;
}

.mobile_nav_wrap a:active {
    border-bottom: 2px solid #0CC3F7;
    font-weight: 500;
}

.mobile_nav_wrap li.current-menu-item a {
    border-bottom: 2px solid #0CC3F7;
    transition: .5s ease-in-out;
}

.mobile_nav_wrap li.current-menu-item span {
    border-bottom: 2px solid #0CC3F7;
    transition: .5s ease-in-out;
}


.mobile_nav_wrap li {
    margin-top: 24px;
    margin-bottom: 24px;
    width: 100%;
}

.mobile_nav_wrap li:first-child {
    margin-top: 0px;
}

.mobile_nav_wrap li:last-child {
    margin-top: 0px;
}


.burger-menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .main_menu {
        display: none;
    }

    .burger-menu_button {
        display: block;
    }

    .menu-item {
        position: relative;
    }

    .sub-menu {
        position: static;
        transform: none;
        background-color: white;
        width: 100%;
    }

    .mobile_nav_wrap .menu-item .sub-menu {
        margin-top: 14px;
        margin-bottom: 14px;
        position: static;
        transform: none;
        background-color: transparent;
        padding: 0;
        list-style: none;
        z-index: 1000;
    }

    .mobile_nav_wrap .menu-item .sub-menu li {
        margin-top: 0px;
    }

    .sub-menu li {
        margin-bottom: 0px;
        padding-top: 0px;
    }

    .menu-item .sub-menu a {
        font-size: 20px;
        font-family: "BentonSans Regular", sans-serif;
    }
}

/* HERO */

.hero_home {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

 @media (max-width: 768px) {
    .hero_home {
        height: 75vh;
    }
} 

.hero_home_wrap {
    padding-top: 226px;
    padding-bottom: 131px;
    width: 100%;
    max-width: 791px;
}

.hero_home_title {
    color: #FFF;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.hero_home_subtitle {
    margin-top: 40px;
    margin-bottom: 40px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.hero_home_btn {
    border-radius: 100px;
    background: #0CC3F7;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 264px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    transition: .5s ease-in-out;
}

.hero_home_btn:hover {
    color: #d8f5fe;
    background: #3dcff9
}

@media (max-width: 768px) {
    .hero_home_wrap {
        padding-top: 171px;
        padding-bottom: 123px;
    }

    .hero_home_title {
        font-size: 40px;
    }

    .hero_home_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero_home_btn {
        border-radius: 100px;
        background: #202226;
        max-width: 100%;
    }
}

/* ABOUT */

.about_wrap {
    margin-top: 80px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap:20px;
}

.about_content {
    max-width: 548px;
}

.above_title {
    color: #202226;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-transform: uppercase;
    opacity: 0.5;
}

.about_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.about_text {
    margin-top: 24px;
    margin-bottom: 24px;
    color: #202226;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.about_btn {
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #202226;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    max-width: 220px;
    transition: .5s ease-in-out;
}

.about_btn:hover {
    color: rgba(173, 173, 175, 255);
}

.about_img {
    width: 100%;
    /*max-width: 453px;*/
    /*max-height: 448px;*/
}

.about_img img{
    width:100%;
}

@media (max-width: 1100px) {
    .about_content {
        max-width: 430px;
    }

    .about_title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {

    .about_content {
        max-width: 55%;
    }

    .about_title {
        font-size: 30px;
    }

    .about_text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about_wrap {
        flex-direction: column;
        margin-top: 40px;
        margin-bottom: 40px;
    }


    .about_content {
        max-width: 100%;
    }

    .about_title {
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 40px;
    }

    .about_text {
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 16px;
    }

    .about_btn {
        margin-bottom: 40px;
    }

    .about_img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about_btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about_img {
        padding-left: -16px;
        padding-right: -16px;
    }

    .about_section .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }

    .about_content {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* PROMO */

/* .promo {
    padding-top: 80px;
} */

.section_above_title {
    color: #202226;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-transform: uppercase;
    opacity: 0.5;
}

.section_above_title_white{
    color: #ffffff;
    opacity: 0.8;
}

.section_title {
    color: #131418;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    margin-top: 24px;
}

.section_white_title {
    color: #ffffff;
}

.promo_title {
    margin-top: 80px;
    margin-bottom: 40px;
}

.promo_wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.play_btn {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    width: 100px;
    height: 100px;
}

.promo_video {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 580px;
    margin: 0 auto;
    object-fit: cover;
}

.sound_btns {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 10;
}

.sound_btns img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .promo {
        padding-top: 0px;
    }

    .promo_title {
        margin-top: 0px;
        margin-bottom: 24px;
    }

    .section_title {
        margin-top: 14px;
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .section_above_title {
        text-align: left;
        padding-left: 16px;
        padding-right: 16px;
    }

    .promo_title {
        text-align: left;
        padding-left: 16px;
        padding-right: 16px;
    }

    .play_btn {
        width: 48px;
        height: 48px;
    }
}

/* WHAT WE DO */
.what_we_do {
    background: #F4F5F9;
}

.what_wrap {
    padding-top: 80px;
    padding-bottom: 40px;
}

.what_wrap .section_above_title {
    padding-left: 0px;
}

.what_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
}

.what_item {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    transition: .3s ease-in-out;
    min-height: 491px;
    position: relative;
}

.what_tag_img {
    position: absolute;
    z-index: 2;
    width: 64px;
    height: 24px;
    right: 24px;
    top: 12px;
    transition: .5s ease-in-out;
}

.what_item_img_wrap {
    width: 200px;
    height: 200px;
    position: relative;
}

.what_item_img,
.what_item_img_hover {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    position: absolute;
}

.what_item_img_hover {
    /* display: none; */
    opacity: 0;
    transition: .5s ease-in-out;
}

.what_item:hover {
    border: 1px solid rgba(32, 34, 38, 0.22);
    transition: .5s ease-in-out;
}

.what_item:hover .what_item_img {
    /* display: none; */
    opacity: 0;
    transition: .5s ease-in-out;
}

.what_item:hover .what_item_img_hover {
    /* display: block; */
    opacity: 1;
    transition: .5s ease-in-out;
}

.what_item_title,
.what_item_text,
.what_item_btn {
    margin: 16px 0;
    text-align: center;
}

.what_item_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.what_item_text {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.what_item_btn {
    border-radius: 100px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    background: #F4F5F9;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #1A1B20;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.what_item:hover .what_item_btn {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .what_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .what_wrap {
        padding-top: 40px;
        padding-bottom: 24px;
    }
}

@media (max-width: 680px) {
    .what_list {
        grid-template-columns: 1fr;
    }

    .what_we_do .promo_title {
        padding-left: 0px;
    }
}

/* PARTNERS - HOME PAGE */

.home_partners {
    background: #F4F5F9;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home_partner_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
    align-items: center;
}

.home_partner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.home_partner img {
    border-radius: 24px;
    width: 100%;
    max-width: 221px;
    max-height: 98px;
}

@media (max-width: 768px) {
    .home_partners {
        padding-top: 0px;
        padding-bottom: 24px;
    }

    .home_partner_list {
        grid-template-columns: 1fr 1fr;
    }
}

/* FULL IMG */

.full_img img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 650px;
    margin: 0 auto;
    object-fit: cover;
}

.full_img_black{
    background-color: #000;
    padding-bottom: 0px;
}

/* FEATURES */

.features {
    background: #F4F5F9;
}

.features_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
}

.features_wrap .section_above_title {
    padding-left: 0px;
}

.features_wrap .section_title {
    text-align: center;
}

.features_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.features_item {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    transition: .3s ease-in-out;
    min-height: 271px;
    position: relative;
}

.feutures_img_wrap {
    position: relative;
    width: 96px;
    height: 96px;
}

.features_item_img,
.features_item_img_hover {
    width: 96px;
    height: 96px;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease-in-out;
}

.features_item_img_hover {
    /* display: none; */
    opacity: 0;
    transition: .3s ease-in-out;
}

.features_item:hover {
    border: 1px solid rgba(32, 34, 38, 0.22);
}

.features_item:hover .features_item_img {
    /* display: none; */
    opacity: 0;

}

.features_item:hover .features_item_img_hover {
    /* display: block; */
    opacity: 1;
}

.features_item_title,
.features_item_text {
    margin: 16px 0;
    text-align: center;
}

.features_item_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.features_item_text {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

@media (max-width: 992px) {
    .features_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {

    .features_wrap {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .features_list {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
}

@media (max-width: 576px) {
    .features_wrap .section_title {
        text-align: left;
    }
}

/* QUESTIONS */

.questions {
    background: #131418;
    padding-top: 80px;
    padding-bottom: 40px;
}

.questions_title {
    color: #FFF;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.questions_subtitle {
    margin-top: 24px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.questions_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
    margin-top: 56px;
    margin-bottom: 56px;
}

.questions_item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #202226;
    cursor: pointer;
}

.questions_category {
    color: #FFF;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.questions_name {
    color: #0CC3F7;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.questions_position {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.64;
}

.qiestions_mail {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-decoration-line: underline;
}

.questions_social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.questions_social_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 39px;
    gap: 16px;
    border: 1px solid #202226;
    margin-right: 24px;
    transition: .5s ease-in-out;
}

.questions_social_item:hover {
    background: #1A1B20;
}

.questions_social_item:last-child {
    margin-right: 0px;
}

.questions_social_item span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

@media (max-width: 992px) {
    .questions_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .questions_list {
        grid-template-columns: 1fr;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .questions {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .questions_title {
        font-size: 40px;
    }

    .questions_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 680px) {
    .questions_social {
        flex-wrap: wrap;
    }

    .questions_social_item {
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .questions_social_item:last-child {
        margin-bottom: 0px;
    }
}

/* Questions white */

.questions_white {
    background: #F4F5F9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.questions_white .questions_list {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    margin-bottom: 56px;
    align-items: stretch;
}

.questions_item_white {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #ffffff;
    cursor: pointer;
    max-width: 400px;
}

.questions_category_white {
    color: #131418;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.questions_position_white {
    color: #131418;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.64;
}

.qiestions_mail_white {
    color: #131418;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-decoration-line: underline;
}

.questions_social_item_white {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 39px;
    gap: 16px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    margin-right: 24px;
}

.questions_social_item:last-child {
    margin-right: 0px;
}

.questions_social_item_white span {
    color: #131418;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

@media (max-width: 992px) {
    .questions_white .questions_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .questions_white .questions_list {
        grid-template-columns: 1fr;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .questions_white {
        padding-top: 40px;
        padding-bottom: 24px;
    }
}

@media (max-width: 680px) {
    .questions_social_item_white {
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .questions_social_item_white:last-child {
        margin-bottom: 0px;
    }
}

/* FOOTER */

.site_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_first_row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 534px;
}

.footer-logo {
    width: 340px;
}

.site_footer {
    background: #000000;
    padding-top: 40px;
    padding-bottom: 16px;
}

.footer_description {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-top: 16px;
    width: 100%;
    max-width: 334px;
}

.footer_social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
}

.footer_social a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-right: 24px;
    opacity: 0.64;
}

.footer_social a:last-child {
    margin-right: 0px;
}

.footer_social a img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.footer_nav_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}


.footer_menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer_menu .sub-menu li {
    padding: 0px;
}


.footer_menu .menu-item .sub-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: static;
    padding: 0;
    border-radius: 0px;
    background-color: transparent;
    min-width: 181px;
}


.footer_menu li span {
    color: #0CC3F7;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.footer_menu li a {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.64;
}

.footer_btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    background: #F4F5F9;
    color: #1A1B20;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
}

.copyright {
    margin-top: 40px;
    color: #FFF;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.64;
    text-transform: uppercase;
}

.copyright a {
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-decoration-line: underline;
}

@media (max-width: 1024px) {
    .footer_menu .menu-item .sub-menu {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .footer_menu li span {
        font-size: 16px;
    }

    .footer_menu .menu-item .sub-menu a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .site_info {
        flex-direction: column;
    }

    .footer_nav_wrap {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .footer_nav_wrap {
        flex-wrap: wrap;
        width: 100%;
    }

    .footer_nav {
        width: 100%;
    }

    .footer_menu {
        justify-content: flex-start;
    }

    .footer_btn {
        margin-top: 40px;
        width: 100%;
    }

    .footer_social {
        margin-top: 0px;
    }

    .footer_menu li span {
        font-size: 12px;
    }

    .footer_menu .menu-item .sub-menu a {
        font-size: 12px;
    }
}

/* Inner header */

.inner_hero {
     margin-top: 65px;
    /*padding-top: 320px;
    padding-bottom: 164px; */
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.inner_hero_title {
    color: #FFF;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.inner_hero_subtitle {
    margin-top: 40px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    /* max-width: 791px; */
}

.inner_hero_btn {
    margin-top: 40px;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0CC3F7;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
    width: 100%;
    max-width: 267px;
    box-sizing: border-box;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.inner_hero_btn:hover {
    border: 1px solid transparent;
    opacity: 0.9;
}


@media (max-width: 768px) {
    /* .inner_hero {
        padding-top: 214px;
        padding-bottom: 102px;
    } */

    .inner_hero_title {
        font-size: 40px !important;
    }

    .inner_hero_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .inner_hero_btn {
        max-width: 100%;
    }
}

/* TEXT AND BTN */

.textbtn {
    padding-top: 100px;
    padding-bottom: 50px;
    background: #000000;
}

.textbtn_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textbtn_text {
    color: #FFF;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.textbtn_btn {
    margin-top: 40px;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: var(--Accent, #0CC3F7);
    color: #FFF;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    max-width: 191px;
    transition: .5s ease-in-out;
}

.textbtn_btn:hover {
    background: #3dcff9;
    color: #d8f5fe;
}

@media (max-width: 768px) {
    .textbtn {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .textbtn_text {
        font-size: 40px;
    }

    .textbtn_btn {
        display: none;
    }
}

/* SLIDER */

.page-template-story-page .story_slider {
    background: #000000;
    padding-top: 40px;
    padding-bottom: 40px;
}

.story_slider {
    background: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    /* width: 834px; */
    height: 100%;
    max-height: 500px;
    /* object-fit: contain; */
}

.swiper-slide {
    width: 40% !important;
}

@media (max-width: 680px) {
    .swiper-slide {
        width: 60% !important;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 80% !important;
    }
}

/* IMAGE WITH TEXT */

.image_text {
    padding-top: 80px;
    padding-bottom: 80px;
}

.reverse .img_text_img{
    justify-content: flex-start;
}

.image_text_wrap {
    /* display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 119px;
}

.img_text_content {
    margin-top: 16px;
    margin-bottom: 16px;
    width: auto;
    /* max-width: 500px; */
    max-width: 540px;
}

.img_text_above {
    color: #202226;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-transform: uppercase;
    opacity: 0.5;
}

.img_text_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.img_text_text {
    color: #202226;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.img_text_img {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.img_text_img img {
    /* width: 100%;
    height: 100%;
    max-width: 500px;*/
    min-height: 333px; 
    width: 100%;
    height: 100%;
    /* max-height: 333px; */
    max-height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .img_text_title {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 40px;
    }

    .img_text_text {
        font-size: 18px;
    }
}

@media (max-width: 992px) {

    .image_text {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .img_text_text {
        font-size: 16px;
    }

    .img_text_content {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .image_text_wrap {
        /* flex-wrap: wrap;
        row-gap: 40px; */
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .img_text_img{
        justify-content: flex-start;
    }

    .img_text_title {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .reverse .img_text_content {
        order: 1;
    }

    .reverse .img_text_img {
        order: 2;
    }
}

@media (max-width: 576px) {
    .image_text_wrap {
        column-gap: 0px;
    }

    .img_text_img img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .image_text .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }

    .img_text_content {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ONLY HEADING */

.heading {
    padding-top: 80px;
    padding-bottom: 80px;
}

.heading-dark {
    background:#000000;
}

@media (max-width: 768px) {
    .heading {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .heading .section_title {
        text-align: left;
    }
}

/* TEXT AND BURRON WHITE */

.textbtn_white {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #F4F5F9;
}

.textbtn_white_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 164px;
    padding-right: 164px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textbtn_white_title {
    color: #131418;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.textbtn_white_text {
    margin-top: 24px;
    color: #202226;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.text_btn_white_btn, .text_form_white_btn {
    max-width: 262px;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #202226;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
    margin-top: 40px;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.text_btn_white_btn:hover, .text_form_white_btn:hover {
    color: rgba(173, 173, 175, 255);
}

@media (max-width: 992px) {
    .textbtn_white_wrap {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 82px;
        padding-right: 82px;
    }
}

@media (max-width: 768px) {
    .textbtn_white_wrap {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .textbtn_white_title {
        font-size: 40px;
    }

    .textbtn_white_text {
        font-size: 16px;
    }

}

/* TEAM */

.team {
    background: #ffffff;
    padding-bottom: 40px;
}

.bosses {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    justify-content: center;
    column-gap: 8px;
    row-gap: 16px;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
    margin-bottom: 16px;
}

.bosses .person_item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: .5s ease-in-out;
    width: 100%;
    max-width: 201px;
}

.person_img {
    position: relative;
}

.person_social {
    position: absolute;
    top: 40%;
    left: 40%;
    /* display: none; */
    opacity: 0;
}

.person_item:hover .person_social {
    display: flex;
    opacity: 1;
    transition: .3s ease-in-out;
}

.person_name {
    margin-top: 20px;
    color: #000;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    width: 100%;
}

.position {
    margin-top: 8px;
    color: #202226;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
}

.person_item span {
    width: 100%;
    text-align: center;
}

.person_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    grid-row-gap: 45px;
}

.person_list .person_item {
    width: 100%;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
}

.person_list_mob {
    display: none;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    grid-row-gap: 45px;
    grid-gap: 8px;
}

.person_list_mob .person_item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
}


@media (max-width: 768px) {
    .person_list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .bosses {
        display: none;
    }

    .person_list {
        display: none;
    }

    .person_list_mob {
        display: grid;
    }
}

.advisory {
    background: #F4F5F9;
    padding-bottom: 40px;
}

.advisory_list {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
}

.advisory_list .person_item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: .5s ease-in-out;
    width: 100%;
    max-width: 201px;
}

@media (max-width: 992px) {
    .advisory .heading {
        padding-bottom: 24px;
    }

    .advisory_list {
       flex-wrap: wrap;
    }
}

/* GALLERY */

.photo_gallery {
    padding-top: 140px;
    padding-bottom: 80px;
}

.gallery_title {
    margin-bottom: 40px;
    color: #202226;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.gallery_4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: 16px;
    grid-column: 16px;
}

.gallery_3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row: 16px;
    grid-column: 16px;
}

.gallery_4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.gallery_3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.gallery a {
    padding: 5px;
}


/* GALLERY 2 IMG ROW */

.gallery_2 {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-row: 16px;
    grid-column: 16px;
}

.gallery_2_revers {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-row: 16px;
    grid-column: 16px;
}

.gallery_2 img, .gallery_2_revers img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery_4,
    .gallery_3 {
        grid-template-columns: 1fr;
    }

    .gallery img {
        max-height: 300px;
    }

    .gallery_2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-row: 16px;
        grid-column: 16px;
    }

    .gallery_2_revers {
        display: grid;
        grid-template-columns: 1fr;
        grid-row: 16px;
        grid-column: 16px;
    }
}

@media (max-width: 680px) {
    .gallery_title {
        font-size: 40px;
    }

    .photo_gallery {
        padding-bottom: 40px;
    }
}

/* RESOURCES */

.resources {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F4F5F9;
}

.resources_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.resources_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    background: #ffffff;
}

.documents_list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.resources_item_title {
    color: #131418;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.resources_item_desc {
    color: #131418;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-top: 8px;
    opacity: 0.5;
}

.documents_item {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    padding: 8px 16px;
    justify-content: space-between;
    align-items: center;
    /* gap: 16px; */
    /* align-self: stretch; */
    opacity: 0.8;
    transition: .5s ease-in-out;
}


.documents_item span {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-decoration-line: underline;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.documents_item .left_side img {
    margin-right: 16px;
    justify-content: flex-start;
}

.documents_item .right_side img {
    margin-left: 16px;
    justify-content: flex-start;
}

.documents_item:hover {
    background: #F4F5F9;
}

@media (max-width: 1024px) {
    .resources_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .resources_list {
        grid-template-columns: 1fr;
    }

    .resources {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* SERVICES */

.services {
    padding-top: 80px;
    padding-bottom: 80px;
}

.service_grey_bg {
    background: #F4F5F9;
}

.service_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.service_item {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    transition: .3s ease-in-out;
    min-height: 271px;
    position: relative;
}

.service_item_img_wrap {
    position: relative;
    width: 96px;
    height: 96px;
}

.service_item_img,
.service_item_img_hover {
    width: 96px;
    height: 96px;
    position: absolute;
    top: 0;
    right: 0;
}

.service_item_img_hover {
    /* display: none; */
    opacity: 0;
    transition: .3s ease-in-out;
}

.service_item:hover {
    border: 1px solid rgba(32, 34, 38, 0.22);
}

.service_item:hover .service_item_img {
    /* display: none; */
    opacity: 0;
    transition: .3s ease-in-out;
}

.service_item:hover .service_item_img_hover {
    /* display: block; */
    opacity: 1;
    transition: .5s ease-in-out;
}

.service_item_title {
    color: #131418;
    text-align: center;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    margin-top: 24px;
}

.service_item ul {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    list-style-type: disc;
    box-sizing: border-box;
    padding-left: 24px;
    margin-top: 16px;
}

.service_item p {
    margin-top: 16px;
    margin-bottom: 0px;
    text-align: center;
    color: #202226;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

@media (max-width: 1024px) {
    .service_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .services .section_title {
        text-align: left;
    }

    .service_list {
        grid-gap: 16px;
        margin-top: 24px;
    }
}

@media (max-width: 680px) {
    .service_list {
        grid-template-columns: 1fr;
    }
}

.partners {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #131418;
}

.partners_list {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
    column-gap: 16px;
    flex-wrap: wrap;
}

.partners_item {
    padding: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    width: 100%;
    width: 152px;
    height: 50px;
    position: relative;
}

.partners_item img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.partners_item_black {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.partners_item_color {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.partners_item:hover .partners_item_black {
    opacity: 0;
}

.partners_item:hover .partners_item_color {
    opacity: 1;
}

@media (max-width: 768px) {
    .partners {
        padding-top: 40px;
        padding-bottom: 40px;
    }

}

@media (max-width: 576px) {
    .partners_list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 8px;
    }

    .partners_item {
        max-width: 100%;
        max-height: 100%;
        width: auto;
    }
}

/* POPUP */

.popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
    background-color: #fefefe;
    margin: 7% auto;
    padding: 24px;
    border: 1px solid #888;
    width: 80%;
    max-width: 550px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup-content {
        margin: 40% auto !important;
        border-radius: 10px !important;
    }

    .form_response {
        text-align: center !important;
    }
}

.form_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.form_subtitle {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
    margin-top: 16px;
}

.contact_form form label {
    display: none;
}

.contact_form form input {
    font-family: "BentonSans Regular", sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.contact_form form input.form_title {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    border: none !important;
    margin-bottom: 0px;
}

.select-wrapper select {
    font-family: "BentonSans Regular", sans-serif;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
    color: #202226;
    opacity: .5;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;

}


.contact_form form textarea {
    font-family: "BentonSans Regular", sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;

}

.contact_form form span.under_form {
    font-family: "BentonSans Regular", sans-serif;
    display: flex;
    color: #202226;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
    margin-bottom: 40px;
    opacity: .5;
}

::placeholder {
    color: #202226;
    font-family: "BentonSans Regular", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
}

.form_btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

/* .contact_form form input[type=submit]{
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.22;
  background:#202226;
  max-width: 354px;
  color:#FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 156%;
  margin-bottom: 0px;
  cursor: pointer;
  transition: .5s;
  font-family: "BentonSans Regular", sans-serif;
}

.contact_form form input[type=submit]:hover{
  color: #ffffff;
  background: #000000;
  opacity: 100%;
} */


.form_btn input[type="submit"] {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.22;
    background: #202226;
    max-width: 354px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-bottom: 0px;
    cursor: pointer;
    transition: .5s;
    font-family: "BentonSans Regular", sans-serif;
}

.form_btn input[type="submit"].active {
    color: #ffffff;
    background: #000000;
    opacity: 100%;
}

.close_btn {
    cursor: pointer;
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    background: #F4F5F9;
    max-width: 100px;
    color: #1A1B20;
    font-size: 16px;
    font-style: normal;
    line-height: 156%;
    font-weight: 600;
    transition: .5s ease-in-out;
}

.close_btn:hover {
    opacity: 0.8;
    border: 1px solid rgba(32, 34, 38, 0.22);
    background: linear-gradient(0deg, rgba(32, 34, 38, 0.02) 0%, rgba(32, 34, 38, 0.02) 100%), #F4F5F9;

}


@media (max-width: 576px) {
    .contact_form form input[type=submit] {
        max-width: 100%;
    }

    .close_btn {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }
}

/* JOB OFFERS */

.job_offers {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F4F5F9;
}

.job_offers .section_above_title {
    text-align: left;
}

.job_offers .section_title {
    text-align: left;
}

.filter_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.search_line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.search_form {
    width: 100%;
}

.search_filter {
    display: none;
}

.filter_word label {
    display: none;
}

.list-wrapper__wrap {
    width: 100%;
    max-width: 357px;
    margin-right: 40px;
}

.accordion {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    cursor: pointer;
    padding: 24px;
    background: #ffffff;
    margin: 0;
    margin-bottom: 1px;
    transition: 0.4s;
}

.accordion:after {
    content: '\02795';
    font-size: 10px;
    color: #131418;
    float: right;
    margin-left: 5px;
}

.filter-location .active:after {
    content: "\2796";
}

.filter-direction .active:after {
    content: "\2796";
}


.panel {
    background: #ffffff;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: none;
    overflow: hidden;
}

.filter-location {
    margin-bottom: 16px;
}

.filter-location-list {
    margin-top: 0px;
}

.filter-direction-list {
    margin-top: 0px;
}

.filter-location-item,
.filter-direction-item {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
}

.filter-location-item label {
    color: #131418;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-left: 16px;
}

.filter-direction-item label {
    color: #131418;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    margin-left: 16px;
}

.filter-direction-item .icon {
    margin-left: 16px;
}

.filter_word {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
}

.filter_word svg {
    width: 20px;
    height: auto;
    margin-right: 16px;
}

.filter-word-input {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
}

.list-wrapper__heading {
    margin-top: 16px;
    margin-bottom: 16px;
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
}

.post-list {
    width: 100%;
}

.post-item {
    margin-top: 8px;
    margin-bottom: 8px;
    background: #ffffff;
    padding-top: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

.job_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.job_description {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.job_title li {
    color: #131418;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
}

.job_title img {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.job_location {
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: .5;
}

.job_location li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.job_location img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.job_apply {
    color: #1A1B20;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    background: #F4F5F9;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.job_apply:hover {
    opacity: 0.8;
    border: 1px solid rgba(32, 34, 38, 0.22);
    background: linear-gradient(0deg, rgba(32, 34, 38, 0.02) 0%, rgba(32, 34, 38, 0.02) 100%), #F4F5F9;
}

.job_apply_mob {
    color: #1A1B20;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
    display: none;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(32, 34, 38, 0.08);
    background: #F4F5F9;
    transition: .5s ease-in-out;
    width: 100%;
    box-sizing: border-box;
}

.job_apply_mob:hover {
    opacity: 0.8;
    border: 1px solid rgba(32, 34, 38, 0.22);
    background: linear-gradient(0deg, rgba(32, 34, 38, 0.02) 0%, rgba(32, 34, 38, 0.02) 100%), #F4F5F9;
}

.job_text {
    margin-top: 16px;
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.btn-search {
    display: none;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #202226;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    width: calc(100% - 34px);
    margin: 0px;
    position: fixed;
    bottom: 35px;
    box-sizing: border-box;
}

.top_popup {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    height: 70px;
    margin-bottom: 24px;
    padding: 0px 16px;
}

.close-popup {
    display: none;
    /* position: absolute; */
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000000;
}

@media (max-width: 992px) {
    .filter_wrap {
        flex-direction: column;
    }

    .job_apply {
        display: none;
    }

    .job_apply_mob {
        display: inline-flex;
        margin-top: 16px;
    }

    /* .list-wrapper__wrap{
      display: none;
    } */
    .search_filter {
        display: block;
        border: none;
    }

    .job_offers {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .list-wrapper__wrap {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.8);  */
        background-color: #F4F5F9;
        z-index: 1000;
        overflow-y: auto;

        box-sizing: border-box;
    }

    .search {
        display: block;
        border-radius: 8px;
        max-width: 100%;
        margin: 50px 16px;
        box-sizing: border-box;
    }

    .btn-search {
        display: inline-flex;
    }

    .close-popup {
        display: flex;
    }

    .top_popup {
        display: flex;
    }

}

.nothing_found {
    margin-top: 16px;
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    opacity: 0.5;
}

.form_response {
    display: none;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.cv_title {
    margin-bottom: 8px;
}

.cv_wrap {
    padding: 24px;
    padding-bottom: 0px;
    border-radius: 8px;
    border: 1px dashed rgba(32, 34, 38, 0.08);
    /* border: 2px red solid; */
    background: rgba(244, 245, 249, 0.30);
    margin-bottom: 40px;
    position: relative;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cv_wrap .cv_field {
    border: none;
    border-bottom: none;
    margin-bottom: 0px;
}

.cv_label {
    position: absolute;
    color: #202226;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    /* top:0; */
    /* transform: translate(50%); */
    /* width: 100%; */
    text-align: center;
}

.cv_label span {
    color: #0CC3F7;
    font-family: "BentonSans Bold", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    text-decoration-line: underline;
}

.cv-field {
    opacity: 0;
}

.uploaded_file_name {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #202226;
    margin-top: 10px;
}


.no-results, .not-found {
    margin-top: 16px;
}

input:focus::placeholder,
textarea:focus::placeholder {
    transform: translateY(-13px);
    font-size: 10px;
    transition: .5s ease-in-out;
    opacity: 1;
    color: #202226;
}


/* CHECKBOX */

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    position: absolute;
    left: 0;
    display: flex;
    width: 16px;
    height: 16px;
    border: 1px solid #202226;
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
    transition: background-color 0.3s;

}

.custom-checkbox input:checked + .checkmark {
    background-color: #0CC3F7;
    border-color: #0CC3F7;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* YOU TUBE */

.video_wrap {
    position: relative;
    width: 100%;
    /* height: 0; */
    padding-bottom: 42.86%;
    max-height: 580px;
    overflow: hidden;
}

.video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25% 0 0 0;

}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CONTENT */

.wp-block-heading {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 32px;
}

@media (max-width: 480px) {
    .wp-block-heading {
        font-size: 28px;
    }
}

.wp-block-list ul {
    margin-bottom: 30px;
}

.wp-block-list li {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1.5;
}

p {
    line-height: 1.5;
}

.error-404,
.not-found {
    padding-top: 15%;
    padding-bottom: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.return_btn {
    border-radius: 100px;
    background: #0CC3F7;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 264px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    transition: .5s ease-in-out;
}

.return_btn:hover {
    color: #d8f5fe;
    background: #3dcff9
}

.story_slider_wrap {
    background: #000000;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
}

.inner_hero_btn_left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* swich btn position */
    align-items: center;
}

.inner_hero_btn_center{
    display: flex;
    flex-direction: row;
    justify-content: center; /* swich btn position */
    align-items: center;
}

.inner_hero_btn_right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end; /* swich btn position */
    align-items: center;
}