/* RESET
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
    -webkit-appearance: none;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
b-footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
p {
    margin: 0;
    font-weight: 400;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}
/* REUSABLE STYLES
---------------------------------*/
@media (min-width: 769px) {
    .hide-web {
        display: none !important;
    }
}

/* Font
---------------------------------*/
.title {
    font-family: "Inter", sans-serif;
    font-weight: 550;
    font-weight: 600;
    font-weight: 700;
    font-style: normal;
}

.title-lvl1 {
    font-size: 52px;
    line-height: 1.3;
}

.subtitle {
    font-size: 16px;
    line-height: 26px;
}

strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .title-lvl1 {
        font-size: 40px;
    }
    
    /* .title-lvl2 {
        font-size: 18px;
    } */
}

/* FOUNDATION
---------------------------------*/
html {
    height: 100%;
}
body {
    color: #050B17;
    font-size: 18px;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}
a,
button {
    cursor: pointer;
    background: none;
}
a {
    color: inherit;
    text-decoration: underline;
}
button,
input[type="submit"] {
    cursor: pointer;
}
img {
    display: block;
    border: none;
}
svg {
    pointer-events: none;
}
a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {

}

/* GENERAL
---------------------------------*/
.page-wrap {
    overflow: hidden;
    padding-top: 80px;
    min-height: 100vh;
    box-sizing: border-box;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 24px;
}

.wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.btn {
    position: relative;
    display: inline-block;
    min-width: 180px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    background-color: #0C4AD3;
    border: 1px solid #0C4AD3;
    box-sizing: border-box;
    padding: 21px 28px;
    transition: all 0.3s ease-in;
}

.btn:hover {
    background-color: rgba(5, 11, 23, 0.7);
    border-color: rgba(5, 11, 23, 0.7);
}

.btn:active {
    background-color: rgba(5, 11, 23, 1);
    border-color: rgba(5, 11, 23, 1);
}

.btn-outline {
    background: transparent;
    border-color: rgba(5, 11, 23, 0.2);
    color: #050B17;
}

.btn-outline:hover {
    background-color: rgba(5, 11, 23, 0.7);
    color: #fff;
}

.btn-outline:active {
    background-color: rgba(5, 11, 23, 1);
    color: #fff;
}

.btn-icon {
    padding-right: 56px;
}
.btn-icon:after {
    display: block;
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/general/icon-arrow-right.svg');
    background-size: 100%;
    transition: all 0.3s ease-in;
}

.btn-icon:hover:after {
    transform: translateX(4px);
}

.btn-link {
    border: none;
    background: transparent;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #050B17B2;
    padding: 2px 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.btn-link:after {
    display: block;
    content: '';
    opacity: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    transform: rotate(45deg) translateX(0);
    transition: all 0.3s ease-in;
    background-image: url('../images/general/icon-link-arr.svg');
    transform-origin: center;
}

.btn-link:hover {
    color: #050B17;
    background: transparent;
}
.btn-link:hover:after {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .page-wrap {
        padding-top: 70px;
    }
}
@media (max-width: 767px) {
    .wrap {
        padding: 0 16px;
    }
}
@media (max-width: 480px) {

}

/* header
---------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    padding: 19px 0 16px;
    background-color: #fff;
    border-bottom: 1px solid #f2f3f3;
    transition: padding 0.4s ease, border 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid rgba(5, 11, 23, 0.1);
}

.header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 32px;
    margin: auto;
}

.header-logo {
    display: block;
    max-width: 254px;
    flex-grow: 0;
    margin-left: -12px;
    margin-top: -4px;
}

.header-nav {
    display: flex;
    flex-grow: 0;
    justify-content: space-between;
}

.header-nav .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    gap: 32px;
}

.header-nav .nav-link {
    color: #050B17;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    display: block;
}

.header-nav .nav-link::after {
    transition: 0.3s;
    width: 0;
    content: "";
    position: absolute;
    left: -10px;
    bottom: -6px;
    border-bottom: 3px solid #050B17;
    overflow: hidden;
}
.mPS2id-highlight.nav-link::after, .header-nav .nav-item:hover .nav-link::after {
    width: 100%;
    left: 0px;
}

.header-nav-btn {
    border: none;
    display: none;
    position: absolute;
    top: 24px;
    right: 40px;
    width: 24px;
    height: 24px;
    padding: 3px;
    z-index: 101;
}

.header-nav-btn span {
    display: block;
    position: absolute;
    top: 5px;
    left: 3px;
    right: 3px;
    width: calc(100% - 6px);
    height: 2px;
    background-color: #050B17;
    transition: 0.3s;
    border-radius: 3px;
}
.header-nav-btn span:first-child {
    top: 11px;
}
.header-nav-btn span:last-child {
    top: 17px;
}
.header-nav-btn.open span {
    transform: rotate(45deg);
    background-color: #ffffff;
    top: 12px;
}
.header-nav-btn.open span:first-child {
    transform: rotate(-45deg);
}
.header-nav-btn.open span:nth-child(2) {
    transform: rotate(-135deg);
}

@media (max-width: 1560px) {
    .header-logo {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .header,
    .header.scrolled {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .header-logo {
        /* width: 146px; */
    }
    .header-nav-btn {
        display: block;
    }
    .header-nav {
        display: none;
        position: absolute;
        padding: 60px 40px 0;
        background-color: #0C4AD3;
        right: 0;
        top: 0;
        height: 100vh;
        transition: right 0.5s;
        width: 100%;
        box-sizing: border-box;
    }
    .header-nav .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .header-nav .nav-item {
        width: 100%;
        flex-basis: 100%;
        font-size: 18px;
        margin: 0;
        padding: 24px 16px;
        text-align: left;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255,255,255, 0.1);
    }
    .header-nav .nav-link {
        margin: 0;
        color: #fff;
        font-size: 52px;
        line-height: 1.2;
    }
    .header-nav .nav-link::after {
        display: none;
    }
    .header-btns {
        padding: 10px;
        flex-direction: column;
        gap: 16px;
        align-items: center
    }
    .header-btns {
        display: none;
    }
}
@media (max-width: 768px) {
    .header-nav-btn {
        right: 24px;
    }
    .header-nav {
        display: none;
        position: absolute;
        padding: 40px 72px 0 24px;
    }
    .header-nav .nav-link {
        font-size: 40px;
    }
    .header-nav .nav-item {
        padding: 16px;
    }
}
/* footer
---------------------------------*/
.footer {
    background: #000219;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 24px;
}

.footer-top .col-brand {
    max-width: 280px;
    flex-grow: 0;
    flex-shrink: 0;
}

.footer-top .col-brand .footer-logo {
    max-width: 244px;
    margin-left: -30px;
    margin-bottom: 16px;
}

.footer-top .col-brand p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.footer-top .col-nav {
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.footer-nav .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    gap: 32px;
}

.footer-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    display: block;
    transition: color 0.3s ease-in;
}
.footer-nav .nav-link:hover {
    color: rgba(255,255,255,0.7);
}

.footer-top .col-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top .social-list {
    display: flex;
    margin-left: 40px;
}

.footer-top .social-item {
    line-height: 1;
}

.footer-top .social-icon {
    display: block;
}
.footer-top .social-icon svg .bg {
    transition: all 0.3s ease-in;
}
.footer-top .social-icon:hover svg .bg {
    fill: #000219;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0 0;
    display: flex;
    justify-content: space-between;
}


.footer-bottom .col-copyright {
    
}

.footer .copyright {
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .col-nav {

}

.footer-bottom .nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}
.footer-bottom .nav-link:before {
    display: block;
    content: '';
    position: absolute;
    top: 9px;
    left: -18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FFFFFF1A;
}
.footer-bottom .nav-item:first-child .nav-link:before {
    display: none;
}

@media (max-width: 1024px) {
    .footer-top .col-nav {
        display: block;
    }
    .footer-top .footer-nav .nav-list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer-top .social-list {
        margin-top: 30px;
        justify-content: flex-end;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-top {
        flex-direction: column;   
    }

    .footer-top .col-nav {
        margin: 0;
        display: flex;
        width: 100%;
        flex-grow: 1;
        justify-content: space-between;
        align-items: flex-end;
    }
    .footer-top .footer-nav .nav-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex: 1 1 100%;
    }
    .footer-top .social-list {
        margin-top: 0;
        justify-content: flex-end;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .col-copyright {
        order: 2;
        margin-top: 24px;        
    }
    .footer-bottom .col-nav .nav-list {
        justify-content: flex-start;
    }
}

/* intro section
---------------------------------*/
.section-intro {
    background-color: #E1EAFF;
    background-image: url('../images/bg-hero.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-intro:after {
    display: block;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index:3;
}

.section-intro .wrap {
    position: relative;
    z-index: 4;
}

.section-intro .title {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 24px;
    max-width: 740px;
    display: block;
    letter-spacing: 4px;
}

.section-intro .subtitle {
    display: block;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 24px;
}
.section-intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
}
.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    transition: opacity 2s ease;
}
@media (max-width: 768px) {
    .section-intro .title {
        font-size: 72px;
        line-height: 76px;
        max-width: 540px;
    }
    
    .section-intro .subtitle {
        display: block;
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    
}

/* section trusted */
.section-trusted {
    padding: 40px 0 0;
}

.section-trusted .wrap {
    text-align: center;
    max-width: 1220px;
}

.section-trusted .section-title {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
}

.section-trusted .trusted-companies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 -40px;
}

.section-trusted .trusted-company {
    margin: 0 40px 40px;
}

.section-trusted .trusted-company img {
    
}
@media (max-width: 1440px) {

}
@media (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    .section-trusted .trusted-companies {
        margin: 0 -16px;
    }
    .section-trusted .trusted-company {
        margin: 0 16px 40px;
    }
}

@media (max-width: 450px) {
    
}

/* section mission */
.section-mission {
    position: relative;
    padding: 122px 0;
}
.section-mission .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.mission-col {
    margin-left: auto;
    max-width: 50%;
    text-align: left;
    flex: 0 0 50%;
}

.mission-info {
    max-width: 556px;
}

.mission-info .title {
    font-size: 40px;
    margin-bottom: 16px;
}
.mission-info p {
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 34px;
    color: rgba(5, 11, 23, 0.7);
    letter-spacing: 0.5px;
}

.section-mission .mission-decor {
    display: block;
    position: absolute;
    z-index: 0;
    top: 95px;
    right: calc(50% - 150px);
    max-height: 100%;
}

@media (max-width: 1024px) {
    .section-mission .wrap {
        justify-content: center;
    }
    .mission-col {
        margin: auto;
    }
    
    .mission-info .title {
        font-size: 40px;
        margin-bottom: 16px;
    }
    .mission-info p {
        font-size: 18px;
    }
    
    .section-mission .mission-decor {
        right: calc(50% - 450px);
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .section-mission {
        position: relative;
        padding: 120px 0 72px;
    }
    .mission-col {
        max-width: 370px;
        flex: 0 1 100%;
    }
    .section-mission .mission-decor {
        width: 534px;
        height: auto;
        right: calc(50% - 250px);
        top: 0;
        max-height: 100%;
    }
    .section-mission .mission-decor svg {
        display: block;
        width: 100%;        
    }
}

@media (max-width: 450px) {
    
}

/* SECTION FAMILY */
.section-family {
    text-align: center;
    padding-top: 0;
}

.section-family .wrap {
    max-width: 982px;
}

.company-cards {
    margin: 80px auto 0;
}

.company-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(5, 11, 23, 0.1);
    display: flex;
    align-items: center;
    gap: 95px;
}

.company-card:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.company-card .col-pic {
    max-width: 364px;
}

.company-card .col-info {
    text-align: left;
}

.company-branding {
    background-color: rgba(5, 11, 23, 0.1);
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.company-logo {
    margin: auto;
}

.company-logo img {
    display: block;
    width: 100%;
}

.branding-amcon {
    background-image: url('../images/home/bg-company-amcon.png');
    background-position: center;
}

.branding-111 {
    background-image: url('../images/home/bg-company-111.png');
    background-position: center;
}

.branding-syntrix {
    background-image: url('../images/home/bg-company-syntrix.png');
    background-position: center;
}

.company-description {
    color: rgba(5, 11, 23, 0.7);
}
.company-description p {
    margin-bottom: 16px;
}

.company-tags {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
}

.company-tags li {
    flex: 0 0 auto;
    background-color: #f2f3f3;
    padding: 4px 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    align-items: center;
}

.section-family .btn-wrp {
    margin-top: 32px;
}

@media (max-width: 1440px) {

}
@media (max-width: 1024px) {
    .company-card {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .company-card {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(5, 11, 23, 0.1);
        display: block;
    }
    
    .company-card .col-pic {
        max-width: 100%;
    }

    .company-card .col-info {
        margin-top: 16px;
    }
    
    .company-branding {
        min-height: 240px;
        background-size: cover;
        background-position: center;
    }
    .branding-amcon {
        background-image: url('../images/home/bg-company-amcon-mob.png');
    }
    
    .branding-111 {
        background-image: url('../images/home/bg-company-111-mob.png');
    }
    
    .branding-syntrix {
        background-image: url('../images/home/bg-company-syntrix-mob.png');
    }
}

@media (max-width: 450px) {
    
}

/* SECTION EXPERTIZE */
.section-expertize {
    text-align: center;
    color: #fff;
    background-color: #050B17;
    background-image: url('../images/home/bg-expertize.jpg');
    background-position: center -286px;
    background-repeat: no-repeat;
}

.section-expertize .wrap {

}

.section-expertize .skills {
    max-width: 860px;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.section-expertize .skill {
    flex: 0 0 auto;
    background-color: #1a1b2e;
    padding: 12px 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    align-items: center;
}

.section-expertize .btn-wrp {
    margin-top: 80px;
}
@media (max-width: 1440px) {}
@media (max-width: 1024px) {}
@media (max-width: 768px) {
    .section-expertize {
        background-position: center;
        background-size: cover;
    }
    .section-expertize .skill {
        flex: 0 1 auto;
    }
}
@media (max-width: 450px) {}


/* SECTION TEAM */
.section-team {

text-align: center;
}

.section-team .team {
    max-width: 1130px;
    margin: 80px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.section-team .team-member {
    flex: 0 0 25%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
}

.section-team .team-member-pic {
    display: block;
    width: 100%;
    min-width: 200px;
    background-color: #f2f3f3;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
}

.section-team .team-member-info {
    margin-top: 16px;
}

.section-team .team-member-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.section-team .team-member-position {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(5, 11, 23, 0.7);
    margin-top: 2px;
}
@media (max-width: 1440px) {}
@media (max-width: 1024px) {
    .section-team .team {
        max-width: 480px;
        justify-content: center;
    }
}
@media (max-width: 768px) {}
@media (max-width: 450px) {}

/* SECTION EVENTS */
.section-events {
    text-align: center;
    padding-top: 0;
}

.section-events .events {
    max-width: 902px;
    margin: 90px auto 0;
}

.section-events .event-item {
    border-bottom: 1px solid #f2f3f3;
    text-align: left;
}

.section-events .event-item:last-child {
    border: none;
}

.section-events .event-item a {
    display: block;
    padding: 16px;
    background-color: transparent;
    transition: all 0.3s ease-in;
    text-decoration: none;
    position: relative;
}

.section-events .event-item a:hover {
    background-color: #f2f3f3;
}

.section-events .event-name {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: #050B17;
    padding-right: 105px;
}

.section-events .event-info {
    display: flex;
    margin-top: 16px;
    list-style: none;
}

.section-events .event-info li {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #050B17;
    display: flex;
    align-items: center;
    gap:  8px;
    margin-right: 8px;
}

.section-events .event-info li:after {
    display: block;
    content: '';
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e6e7e8;
}

.section-events .event-info li:last-child:after {
    display: none;
}

.event-item a .icon-link {
    position: absolute;
    display: inline-block;
    right: 16px;
    top: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #050B17;
    padding: 2px 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.event-item a .icon-link:after {
    display: block;
    content: '';
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    transition: all 0.3s ease-in;
    background-image: url('../images/general/icon-link-arr.svg')
}

.event-item a:hover .icon-link {
    opacity: 1;
}
@media (max-width: 1440px) {}
@media (max-width: 1024px) {
    .event-item a .icon-link {
        text-indent: -10000px;
    }
}
@media (max-width: 768px) {}
@media (max-width: 450px) {}


/* SECTION PRESENSE*/
.section-presense {
    text-align: center;
    color: #fff;
    background-color: #000219;
    background-image: url('../images/home/bg-map.jpg');
    background-position: 210px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.section-presense .wrap {
    max-width: 1612px;
}
.section-presense .title,
.section-presense .subtitle {
    position: relative;
    z-index: 1;
}
.section-presense .locations {
    margin: 80px 0 0;
    max-width: 500px;
    display: flex;
    text-align: left;
    gap: 80px;
}

.section-presense .locations .col:first-child {
    flex: 0 0 220px;
}

.section-presense .locations .col:last-child {
    flex: 0 0 200px;
}

.section-presense .locations .col:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #35393d;
}

.section-presense .location {
    margin-top: 40px;
}

.section-presense .location:first-child {
    margin-top: 0;    
}

.section-presense .location-name {
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 9px;
    padding: 0 0 0 16px;
    position: relative;
}

.section-presense .location-name:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background: #717475;
    z-index: 1;
}

.section-presense .location-info {
    display: block;
    font-size: 14px;
    line-height: 24px;
    padding: 0 0 0 16px;
}
@media (max-width: 1440px) {
    .section-presense .wrap {
        max-width: 1130px;
    }
}
@media (max-width: 1024px) {
    .section-presense {
        background-image: url(../images/home/bg-map.jpg);
        background-position: calc(50% + 40px) -42px;
        background-size: cover
    }
    .section-presense .locations {
        margin: 90px auto 0;
        padding-right: 25px;
    }
}
@media (max-width: 768px) {
    .section-presense {
        background-position: 19% 0;
        background-size: cover
    }
    .section-presense .locations {
        display: block;
    }
    .section-presense .location {
        margin-top: 24px;
    }
    .section-presense .locations .col {
        max-width: 220px;
    }
    .section-presense .locations .col+.col {
        margin-top: 24px;
    }
}
@media (max-width: 450px) {}


/* SECTION PARTNERS*/
.section-partners {
    text-align: center;
}

.section-partners .partners {
    max-width: 1130px;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.section-partners .partner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20%;
}
.section-partners .partner img {
    
}
@media (max-width: 1440px) {}
@media (max-width: 1024px) {}
@media (max-width: 768px) {}
@media (max-width: 450px) {
    .section-partners .partners {
        display: block;
    }
    .section-partners .partner {
        margin-bottom: 60px;
    }
    .section-partners .partner:last-child {
        margin: 0;
    }
}


/* SECTION OPEN-POSITIONS VACANCY */
.section-open-positions {
    text-align: center;
    padding-top: 0;
}

.section-open-positions .vacancies {
    max-width: 902px;
    margin: 90px auto 0;
    display: flex;
    flex-wrap: wrap;
}

.section-open-positions .vacancy-item {
    border-top: 1px solid #f2f3f3;
    text-align: left;
    flex: 0 0 50%;
    box-sizing: border-box;
}

.section-open-positions .vacancy-item:first-child,
.section-open-positions .vacancy-item:nth-child(2){
    border-top: none;
}

.section-open-positions .vacancy-item:nth-child(2n) {
    border-left: 1px solid #f2f3f3;
}

.section-open-positions .vacancy-item a {
    display: block;
    height: 100%;
    box-sizing: border-box;
    padding: 16px;
    background-color: transparent;
    transition: all 0.3s ease-in;
    text-decoration: none;
    position: relative;
}

.section-open-positions .vacancy-item a:hover {
    background-color: #f2f3f3;
}

.section-open-positions .vacancy-name {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: #050B17;
    padding-right: 102px;
}

.section-open-positions .vacancy-info {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section-open-positions .vacancy-info img {
    display: block;
    max-height: 30px;
    margin-right: 4px;
}
.section-open-positions .vacancy-info ul {
    display: flex;
    list-style: none;
}

.section-open-positions .vacancy-info li {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #050B17;
    display: flex;
    align-items: center;
    gap:  8px;
    margin-right: 8px;
}

.section-open-positions .vacancy-info li:after {
    display: block;
    content: '';
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e6e7e8;
}

.section-open-positions .vacancy-info li:last-child:after {
    display: none;
}

.vacancy-item a .icon-link {
    position: absolute;
    display: inline-block;
    right: 16px;
    top: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #050B17;
    padding: 2px 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.vacancy-item a .icon-link:after {
    display: block;
    content: '';
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    transition: all 0.3s ease-in;
    background-image: url('../images/general/icon-link-arr.svg')
}

.vacancy-item a:hover .icon-link {
    opacity: 1;
}
@media (max-width: 1024px) {
    .section-open-positions .vacancies {}
    .section-open-positions .vacancy-item {
        flex: 1 1 100%;
    }
    .section-open-positions .vacancy-item {
        border-bottom: 1px solid #f2f3f3;
    }
    
    .section-open-positions .vacancy-item:nth-child(2n) {
        border-left: none;
    }
    .section-open-positions .vacancy-item:last-child {
        border: none;
    }
    .vacancy-item a .icon-link {
        text-indent: -10000px;
    }
}
@media (max-width: 768px) {}
@media (max-width: 450px) {}


/* CONTACT SECTION */
.section-contact {
    padding: 40px 0 40px;
    background-color: #f2f3f3;
}

.section-contact .columns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.section-contact .col-info {
    flex-basis: 43%;
    padding: 38px 0 0;
}


.section-contact .col:first-child {
    flex: 1 1 auto;
    max-width: 698px;
}

.section-contact .col:last-child {
    flex: 0 0 auto;
}

.section-contact .subtitle {
    font-size: 24px;
    line-height: 32px;
}
@media (max-width: 768px) {
    .section-contact .columns{
        display: block;
    }
    .section-contact .col + .col {
        margin-top: 40px;
    }
    .section-contact .subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

/* MODAL */
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: 100%;
    /* max-width: 1440px; */
    margin: 0 auto;
    pointer-events: none;
    transform: translate(0, -100px);
}
.modal.in .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
    .modal.in .modal-dialog {
        transition: none;
    }
}

.modal-content {
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    background-color: #000219;
    color: #fff;
    border-radius: 0;
    outline: 0;
    padding: 64px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background: #000219;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.in {
    opacity: 0.7;
}
.modal .close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
}
.modal .close span {
    display: block;
    width: 21px;
    height: 2px;
    background: #C6C6C6;
    position: absolute;
    transform-origin: center;
    top: 20px;
    left: 10px;
    transition: background 0.3s ease-in;
}
.modal .close span:first-child {
    transform: rotate(-45deg);
}
.modal .close span:last-child {
    transform: rotate(45deg);
}
.modal .close:hover span {
    background: #8d8d8d;
}
@media (min-width: 576px) {
    .modal-dialog {}
}

/* modal-contact */
.modal-contact .modal-content {
    background-image: url('../images/general/logo-decor.svg');
    background-repeat: no-repeat;
    background-position: 100% 72px;
}
.modal-contact .modal-dialog {
    min-height: 100vh;
    max-width: 100vw;
}
.modal-contact .modal-content {
    display: flex;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}
.modal-contact-inner {
    max-width: 650px;
}
.modal-contact .title {
    margin-bottom: 8px;
}
.modal-contact .subtitle {
    margin-top: 8px;
}
.modal-contact .form {
    margin: 40px auto 0;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
}

.modal-contact .form-row {
    display: flex;
    gap: 16px;
}

.modal-contact .form-row--btn {
    margin-top: 5px;
}

.modal-contact .form-col {
    width: 100%;
    max-width: 50%;
}

.modal-contact .form-col.form-col--full {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.modal-contact .field-wrap {
    margin-bottom: 16px;
}

.modal-contact .form-control {
    display: block;
    width: 100%;
    padding: 14px 16px 15px;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    box-sizing: border-box;
    resize: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(5, 11, 23, 0.2);
}

.modal-contact .form-control:focus,
.modal-contact .form-control:active {
    border: 1px solid rgba(255, 255, 255, 1);
}

.modal-contact select.form-control {
    -webkit-appearance: all;
}
.modal-contact select.form-control option {
    color: #050B17;
}

.modal-contact textarea.form-control {
    min-height: 100px;
}

.field-wrap--select {
    position: relative;
}

.field-wrap--select select + .carret {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 27px;
    width: 5px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/*  */
.field-wrap--upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.field-wrap--upload .upload-btn {
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 7px 0;
    padding-left: 32px;
}

.field-wrap--upload .upload-btn:before {
    display: block;
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('../images/general/icon-attach.svg');
    background-repeat: no-repeat;
    left: 0;
    top: 4px;
}

.field-wrap--upload .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.field-wrap--upload .filename {
    background: transparent;
    color: #fff;
    font-size: 16px;
    width: auto;
    display: inline-block;
    flex-grow: 0;
    flex-basis: auto;
}

.field-wrap--upload .reset-btn {
    border: none;
    color: white;
    font-size: 16px;
    line-height: 1;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    justify-content: center;
    align-items: center;
}
.field-wrap--upload .reset-btn:hover {
    background-color: #F44848;
}

.field-wrap--checkbox {
    padding: 15px 0;
}

.field-wrap--opt .wpcf7-checkbox input {
    visibility: hidden;
    position: absolute;
}

.field-wrap--opt .wpcf7-list-item-label {
    position: relative;
    padding-left: 50px;
}

.field-wrap--opt .wpcf7-list-item-label:before,
.field-wrap--opt .wpcf7-list-item-label:after {
    content: '';
    display: block;
    position: absolute;
}

.field-wrap--opt .wpcf7-list-item-label:before {
    width: 36px;
    height: 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.3);
    top: 4px;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.field-wrap--opt .wpcf7-list-item-label:after {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 1);
    top: 1px;
    left: 0;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.field-wrap--opt .wpcf7-checkbox input:checked + .wpcf7-list-item-label:before {
    background: #6685ca;
}
.field-wrap--opt .wpcf7-checkbox input:checked + .wpcf7-list-item-label:after {
    left: 19px;
    background: #0c4ad3;
}


.modal-contact .has-error .form-control {
    border-color: #e64545;
}
.modal-contact .alert-msg {
    font-size: 14px;
    color: #e64545;
    position: absolute;
    padding: 0;
}

@media (max-width: 768px) {
    .modal-contact .form-row {
        display: block
    }
    .modal-contact .form-col {        
        max-width: 100%;
    }
}


/* modal-success */
.modal-success {
    text-align: center;
}
.modal-success .modal-dialog {
    min-height: 100vh;
    max-width: 100vw;
}
.modal-success .modal-content {
    display: flex;
    min-height: 100vh;
    box-sizing: border-box;
}

.modal-success .modal-inner {
    margin: auto;
}

.modal-success .modal-decor img {
    display: block;
    margin: auto;
}

.modal-success .modal-info {
    margin-top: 24px;
}

.modal-success .modal-info p {
    margin-top: 24px;
}

.modal-success .modal-info .btn {
    margin-top: 24px;
}


/* LEGACY PAGES */
.section-legacy {

}
.section-legacy .wrap {
    max-width: 670px;
}
.section-legacy .title {
    text-align: center;
    margin-bottom: 80px;
}

.section-legacy h2 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 80px;
    margin-bottom: 32px;
}



/* 404 */
.section-404 {
    min-height: calc(100vh - 100px);
    box-sizing: border-box;
    display: flex;
}
.section-404 .wrap {
    display: flex;
    box-sizing: border-box;
}
.section-404 .error-inner {
    margin: auto;
}
.section-404 .error-decor svg {
    display: block;
    max-width: 422px;
    margin: auto;
}
.section-404 .error-info {
    margin-top: 24px;
    text-align: center;
}
.section-404 .error-info p {
    margin-top: 24px;
}

.section-404 .error-info .btn {
    margin-top: 24px;
}