/*1. Page hero img  - START*/
.home .hero-img {
    position: relative;
    z-index: 2;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.home .hero-img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 480px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(4, 26, 147, 0.3), rgba(4, 26, 147, 0));
    z-index: 2;
}

.home .hero-video,
.home .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home .hero-video {
    z-index: 0;
    overflow: hidden;
}

.home .hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home .hero-bg {
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home .hero-img-text-header {
    position: absolute;
    width: 100%;
    text-align: center;
    /*     top: calc(50% - 100px); */
    bottom: 100px;
    z-index: 9;
}

.home .hero-img-text-header .main-header {
    font-family: var(--accent-font);
    color: #FFFFFF;
    max-width: 1000px;
    top: calc(42% - 100px);
    font-size: 126px;
    line-height: 112px;
    text-transform: uppercase;
    font-weight: normal;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.home .hero-img-text-header .main-header .icon {
    margin-top: 7vh;
}

@media screen and (max-height: 720px) {

    .home .hero-img-text-header .main-header .icon {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .home .hero-img {
        height: calc(56.25vw + 74px);
        min-height: unset;
    }

    .home .hero-video {
        height: 56.25vw;
    }

    .home .hero-video iframe {
        width: 100vw;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .home .hero-img:after {
        height: 120px;
    }

    .home .hero-img-text-header {
        top: 50%;
        transform: translateY(-50%);
    }

    .home .hero-img-text-header .main-header {
        font-size: 42px;
        line-height: 42px;
        max-width: 90%;
    }

    .home .hero-img-text-header .main-header .icon {
        margin-top: 20px;
    }
    .home .hero-img-text-header .main-header .icon {display:none;}
}
@media screen and (max-height: 599px) {
    .home .hero-img-text-header .main-header .icon {
        display: none;
    }
}

.home .hero-img .text_line_wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: absolute;
    height: 74px;
    left: 0;
    bottom: 0;
    background: var(--accent-prime-color);
    z-index: 9;
}

.home .hero-img .text_line_wrapper .text_line {
    color: #fff;
    display: flex;
    gap: 50px;
    padding: 0 22px;
    animation: marquee 25s linear infinite;
}

.home .hero-img .text_line_wrapper .text_line span {
    text-wrap: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/*Page hero img  - END*/

/*2. Map - START*/
.home .map-wrapper  {
    background: #f6f8ff;
    position: relative;
}
.svgMap-map-wrapper {
    background: #f6f8ff;
}
.svgMap-map-wrapper .svgMap-country {
    stroke: #dadeed;
}
.svgMap-map-wrapper .svgMap-country:not(.not-presented):not(.presented) {
    fill: #ffffff;
}
.svgMap-map-wrapper .svgMap-map-image path.not-presented {
    fill: #ffffff;
}
.svgMap-map-wrapper .svgMap-map-image path.presented {
    fill: #94A3B8;
}
.svgMap-map-wrapper .svgMap-country:hover {
    stroke: #adb2bd;
}
.company-map {

}
.company-map .svgMap-map-wrapper {
    box-sizing: border-box;
    height: 920px;
}
.company-map .info {
    box-sizing: border-box;
    position: absolute;
    width: 380px;
    left: 181px;
    top: 112px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 124px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(32px);
    z-index: 9;
    padding: 44px 36px 30px 36px;
}
.company-map .info .item {
    box-sizing: border-box;
    border-bottom: 1px solid #D2DAF5;
    padding-bottom: 55px;
    margin-bottom: 55px;
}
.company-map .info .item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 30px;
}
.company-map .info .item .title {
    font-weight: 800;
    font-size: 80px;
    color: var(--accent-secondary-color);
}
.company-map .info .item .text {
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-prime-color);
}
.company-map .map-legend {
    font-family: var(--base-font);
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    color: #000000;
    display: flex;
    gap: 32px;
    position: absolute;
    bottom: 40px;
    right: 15%;
    z-index: 9;
    align-items: center;
}
.company-map .map-legend .item {
    display: flex;
    align-items: center;
}
.company-map .map-legend svg {
    margin-right: 6px;
    flex-shrink: 0;
}
.company-map .svgMap-map-wrapper .svgMap-map-controls-wrapper {
    bottom: auto;
    left: auto;
    top: 40%;
    right: 40px;
    box-shadow: none;
}
.company-map .svgMap-map-wrapper .svgMap-map-controls-zoom {
    flex-direction: column;
    background: none;
    gap: 20px;
}
.company-map .svgMap-map-wrapper .svgMap-control-button.svgMap-zoom-button:before {
    width: 25px;
    height: 1px;
    background: var(--accent-prime-color);
}
.company-map .svgMap-map-wrapper .svgMap-control-button.svgMap-zoom-in-button:after {
    width: 1px;
    height: 25px;
}

.company-map .svgMap-map-wrapper .country-bullet {
    pointer-events: none;
}

.country-info {
    display: none;
}
.country-info.active {
    display: block;
}
.country-info .country-presence-section + .country-presence-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #dadeed;
}
.country-info .presence-label {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.country-info .presence-office .presence-label {
    color: #0e1f8a;
}
.country-info .presence-direct .presence-label {
    color: #009966;
}

.slide-popup .popup-content .title {
    font-weight: 600;
    font-size: 30px;
    color: var(--accent-prime-color);
    margin-bottom: 51px;
}
.slide-popup .popup-content .sub-title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-prime-color);
    margin-block: 20px;
}
.slide-popup .popup-content .contact-item {
    margin-bottom: 70px;
}
.slide-popup .popup-content .contact-item:last-child {
    margin-bottom: 0;
}
.slide-popup .popup-content .contact-item .contact-text {
    font-style: normal;
    font-size: 18px;
    margin-bottom: 15px;
    color: #464646;
}
.slide-popup .popup-content .contact-item .contact-text b {
    font-weight: 800;
}
.slide-popup .popup-content .contact-item .contact-phone {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--accent-prime-color);
}
.slide-popup .popup-content .contact-item .contact-phone svg {
    position: relative;
    top: 2px;
}

.svgMap-tooltip {
    width: 300px;
}
.svgMap-tooltip .svgMap-tooltip-content {
    white-space: wrap;
}
.svgMap-tooltip.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
}
/*Map - END*/


/*3. History - START*/
.home .history {
    padding: 0 180px 0 148px;
    position: relative;
}
.home .history .history-item {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 200px;
}
.home .history .history-item:last-child {
    margin-bottom: 100px;
    padding-bottom: 100px;
}
.history-img-wrapper {
    position: relative;
    overflow: hidden;
}
.home .history .history-item .history-img {
    min-width: 716px;
    height: 1012px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: local;
}
.home .history .history-item .title {
    font-style: normal;
    font-weight: 300;
    font-size: 86px;
    line-height: 82px;
    text-transform: uppercase;
    color: var(--accent-secondary-color);
    margin-left: 93px;
}

.home .history .history-item .year {
    font-style: normal;
    font-weight: 750;
    font-size: 400px;
    line-height: 360px;
    text-transform: uppercase;
    color: var(--accent-prime-color);
    margin-bottom: -20px;
}
.home .history .history-item:first-child .location {
    margin-left: 108px;
}
.home .history .history-item .location {
    font-style: normal;
    font-weight: 300;
    font-size: 42px;
    line-height: 57px;
    color: var(--accent-prime-color);
    margin-left: 21px;
}

.home .history .history-item:nth-child(odd) {
    align-items: center;
    position: relative;
}
.home .history .history-item:nth-child(odd) .history-content {
    position: absolute;
    right: 540px;
    z-index: 9;
}
.home .history .history-item:nth-child(even) {
    align-items: end;
    flex-direction: row;
}
.home .history .history-item:nth-child(even) .history-img {
    min-width: 1074px;
    height: 805px;
}
.home .history .history-item:nth-child(even) .history-content {
    text-align: right;
    position: absolute;
    left: 634px;
/*     margin-bottom: -79px; */
    margin-bottom: 0;
}
.home .history .history-item:nth-child(even) .location {
    margin-left: 0;
    margin-right: 30px;
}
/*3. History - END*/

/*4. Capabilities - START*/
.home .capabilities {
    background: var(--accent-prime-color);
    padding-top: 100px;
    color: #fff;
}
.home .capabilities .text {
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
    margin-bottom: 100px;
}
.home .capabilities .capabilities-list {
    background: var(--accent-prime-color);
    display: flex;
}
.home .capabilities .capabilities-list .item {
    width: 33.333332%;
    min-height: 800px;
    overflow: hidden;
    position: relative;
    transition: 0.3s all;
    text-align: center;
}
.home .capabilities .capabilities-list .item .title {
    display: block;
    width: 100%;
    position: absolute;
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    z-index: 9;
    word-spacing: 100vw;
    transition: 0.3s all;
}
.home .capabilities .capabilities-list .item:nth-child(odd) .title {
    top: 52.05%;
}
.home .capabilities .capabilities-list .item:nth-child(odd):hover .title {
    top: 49%;
}
.home .capabilities .capabilities-list .item:nth-child(even) .title {
    top: 67.83%;
}
.home .capabilities .capabilities-list .item:nth-child(even):hover .title {
    top: 64.78%;
}
.home .capabilities .capabilities-list .item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    transition: 0.5s all;
}
.home .capabilities .capabilities-list .item:hover .bg {
    transform: translateY(-30%);
}
.home .capabilities .capabilities-list .item:nth-child(odd) .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: -100%;
    background: #000;
    transition: 0.5s all;
}
.home .capabilities .capabilities-list .item:nth-child(odd):hover .overlay {
    bottom: -37%;
}
.home .capabilities .capabilities-list .item .more-link {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: 0.3s all;
    opacity: 0;
}
.home .capabilities .capabilities-list .item:hover .more-link {
    opacity: 1;
}
.home .capabilities .capabilities-list .item:nth-child(odd) .more-link {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.home .capabilities .capabilities-list .item:nth-child(even) .more-link {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.home .capabilities .capabilities-list .item:nth-child(odd):hover .more-link {
    bottom: 33%;
}
.home .capabilities .capabilities-list .item:nth-child(even):hover .more-link {
    bottom: 17%;
}
.home .capabilities .capabilities-list .item:nth-child(4) .more-link {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 13%;
}
.home .capabilities .capabilities-list .item:nth-child(even) .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: -100%;
    background: #000;
    transition: 0.5s all;
}
.home .capabilities .capabilities-list .item:nth-child(even):hover .overlay {
    bottom: -55%;
}
.home .capabilities .capabilities-list .item:nth-child(1) .overlay {
    background: #AD00BE;
}
.home .capabilities .capabilities-list .item:nth-child(2) .overlay {
    background: #009fe7;
}
.home .capabilities .capabilities-list .item:nth-child(3) .overlay {
    background: #008E58;
}
.home .capabilities .capabilities-list .item:nth-child(4) .overlay {
    background: #041a93;
}
/*4. Capabilities - END*/

/*5. Market updates - START*/
.home .bottom-fly-block {
    position: relative;
    z-index: 9;
}
.home .market-updates {
    background: #fff;
    padding-top: 214px;
    margin-bottom: 148px;
}
.home .market-updates .content {
    padding: 0 150px;
}
.home .market-updates .block-header {
    display: block;
    text-decoration: none;
    text-align: left;
    margin-bottom: 63px;
    color: var(--accent-prime-color);
    font-size: 64px;
}
.home .market-updates .market-updates-list {
    display: flex;
    gap: 24px;
}
.home .market-updates .market-updates-list .item {
    width: calc(33.33332% - 12px);
}
.home .market-updates .market-updates-list .item .image {
    display: block;
    background-size: cover;
    background-position: center;
    height: 338px;
    margin-bottom: 30px;
    transition: 0.3s all;
}
.home .market-updates .market-updates-list .item .image:hover {
    opacity: 0.9;
}
.home .market-updates .market-updates-list a.title {
    font-size: 30px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 45px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all;
}
.home .market-updates .market-updates-list a.title:hover {
    color: var(--accent-secondary-color);
}
.home .market-updates .market-updates-list a.more-link {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--accent-prime-color);
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all;
}
.home .market-updates .market-updates-list a.more-link:hover {
    color: var(--accent-secondary-color);
}

.home .market-updates-list .slick-slide {
    margin: 0 12px;
}
.home  .market-updates-list .slick-list {
    margin: 0 -12px;
}
/*5. Market updates - END*/
