@charset "UTF-8";

:root {
    --primary-color: #005bac;
    --accent-color: #074d8d;
    --text-dark: #212121;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --footer-bg: #fff;
    --border-color: #e0e0e0;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    text-align: left;
}

a:hover {
    color: var(--accent-color);
}

i {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 18px 45px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #153b5e;
    color: #fff;
}

.kvv_button {
    box-shadow: 0 7px 10px 0 #074d8d;
    margin-top: -7px;
}

.mobile-navigation-panel .kvv_button {
    box-shadow: none;
}

.kvv_button:hover {
    background-color: #1b1b1c;
    color: #fff;
}

.kvv_button-text {
    text-transform: uppercase;
}

.kvv-skip-link {
    position: absolute;
    top: -100px;
    background-color: #f1f1f1;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    color: #21759b;
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 6px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
    -webkit-transition: top 0.75s ease-out;
    transition: top 0.75s ease-out;
}

.kvv-skip-link:focus {
    color: #21759b;
    top: 7px;
    -webkit-transition: top 0s;
    transition: top 0s;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.site-header {
    border-bottom: 4px solid #005bac;
    background: var(--bg-white);
    box-shadow: 0 18px 25px #00000026;
    position: relative;
    z-index: 99;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-contacts {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-item .icon {
    color: var(--primary-color);
}

.contact-text span {
    display: block;
}

.contact-text a:hover {
    text-decoration: none;
}

.icon-box-title {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 0;
    color: #000;
}

.icon-box-subtitle {
    font-size: 14px;
    line-height: 1.71em;
    margin-bottom: 0;
}

.kvv_iconbox-icon-wrap {
    display: flex;
    gap: 20px;
}

h3.kvv_icon-box-title {
    font-size: 25px;
    font-weight: bold;
    color: #005bac;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-dark);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
}

.social-links a:hover {
    color: var(--accent-color);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 295px;
    box-shadow: 0 12px 30px rgba(36, 38, 43, 0.16);
    border-top: 3px solid var(--accent-color);
    border-radius: 10px;
    list-style: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    padding: 1.45rem;
    z-index: 300;
}

.sub-menu li {
    border-bottom: 1px solid #f5f5f5;
}

.main-nav .menu-item-has-children {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.main-nav>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.has-children>a::after {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 32 32'%3E%3Cpath d='M0.256 8.606c0-0.269 0.106-0.544 0.313-0.75 0.412-0.412 1.087-0.412 1.5 0l14.119 14.119 13.913-13.912c0.413-0.412 1.087-0.412 1.5 0s0.413 1.088 0 1.5l-14.663 14.669c-0.413 0.413-1.088 0.413-1.5 0l-14.869-14.869c-0.213-0.213-0.313-0.481-0.313-0.756z'%3E%3C/path%3E%3C/svg%3E");
    transition: transform 0.3s;
}

.main-nav .menu-item-has-children:hover>a::after {
    transition: transform 0.3s;
    transform: rotate(-180deg);
}

.main-nav a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
}

.kvv_section.slider-section {
    background-image: url(../img/kvv-home-head-section-bg.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 0 0 0 0;
}

.slider-section {
    position: relative;
    color: white;
    overflow: hidden;
    height: 100%;
}

.slider-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: transparent;
    padding: 0 20px;
}

.kvv_widget-title {
    position: relative;
    overflow: hidden;
    padding: 0;
    color: #000;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.kvv_content-slider .kvv_widget-title h4 {
    max-width: 350px;
    text-align: left;
    position: relative;
}

.kvv_content-slider .kvv_widget-title h4:after {
    display: inline-block;
    background-image: url(../img/icons/title-left-icon.png);
    background-repeat: no-repeat;
    width: 73px;
    height: 36px;
    position: absolute;
    bottom: -25px;
    left: 4px;
    content: "";
}

.kvv_widget-title:after {
    content: "";
    display: inline-block;
    background: #eaeaea;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 75%;
    z-index: 1;
    margin: 29px 0 0 -50%;
}

.kvv_content-slider .kvv_widget-title .kvv_subtitle {
    color: #8F8F8F;
    font-size: 26px;
    font-weight: 300;
    margin-top: 40px;
    text-align: left;
}

.kvv_title {
    color: #000;
    font-size: 44px;
    line-height: 51px;
    font-weight: 700;
    padding-bottom: 40px;
    margin-bottom: 25px;
    position: relative;
}

.kvv_title:after {
    content: '';
    display: inline-block;
    background-image: url(../img/icons/title-left-icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 43px;
    height: 17px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.slider-content__wrapper .kvv_widget-button {
    text-align: left;
}

.kvv_widget-button a:hover {
    color: #fff;
}

.slide h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-nav button {
    pointer-events: auto;
    background: rgba(7, 77, 141, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 20px;
    padding: 10px 15px;
}

.slider-nav button:hover {
    background: var(--accent-color);
}

.full-width-section .container-fluid {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    position: relative;
    width: 100%;
    min-height: 330px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.05);
    z-index: 1;
}

.feature-card.first-block::before {
    background-image: url(../img/services/service-box3.jpg);
}

.feature-card.second-block::before {
    background-image: url(../img/services/service-box2.jpg);
}

.feature-card.third-block::before {
    background-image: url(../img/services/service-box1.jpg);
}

.feature-card h2,
.feature-card h3,
.feature-card .kvv_btn-block {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.feature-card .kvv_btn-block {
    display: inline-block;
    margin-top: 15px;
    padding: 20px 0;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}

.feature-card .kvv_btn-block a {
    font-size: 33px;
    text-decoration: underline;
}

.feature-card .kvv_btn-block a:hover {
    color: #fff;
    text-decoration: none;
}

h2.kvv_custom_heading,
h3.kvv_custom_heading {
    color: #fff;
    font-family: Roboto, system-ui;
    line-height: 1.2;
    text-shadow: 3px 3px 7px #005bac;
}

h2.kvv_custom_heading {
    font-size: 40px;
    font-weight: 900;
}

h3.kvv_custom_heading {
    font-size: 52px;
    font-weight: 100;
}

h3.kvv_slogan {
    font-size: 17px;
    text-transform: uppercase;
    padding-top: 25px;
    font-weight: bold;
    color: #005bac;
}

.presentation-section {
    background-image: url(../img/kvv-home-about-bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    padding: 80px 0;
}

.our-work-section {
    padding: 80px 0;
    background-color: #fff;
}

.our-company-at-map-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.presentation-text h1 {
    color: #000;
    font-size: 44px;
    line-height: 51px;
    font-weight: 700;
    padding-bottom: 40px;
    margin-bottom: 25px;
    position: relative;
}

.presentation-text h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 23px;
    background: transparent;
    display: inline-block;
    background-image: url(../img/icons/title-left-icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.presentation-text a {
    color: var(--accent-color);
}

.presentation-text p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 25px;
    line-height: 1.3;
    color: #8F8F8F;
}

.presentation-text .kvv_text {
    font-size: 25px;
}

.presentation-text a,
.presentation-text span {
    display: block;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #000;
}

.video-container iframe,
.video-container .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/KVV-Group_logo_big.png') center/cover;
    color: white;
}

.site-footer {
    background: var(--footer-bg);
    color: #000;
    padding: 60px 0 0 0;
    font-size: 15px;
    overflow: hidden;
}

footer .container-fluid {
    max-width: 80%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    text-align: left;
    align-content: center;
    align-items: center;
    justify-content: start;
    justify-items: center;
}

.footer-col {
    min-width: 320px;
}

.footer-col h4 {
    color: #000;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col .logo {
    margin-bottom: 15px;
}

.kvv_logo h3 {
    font-size: 17px;
    text-transform: uppercase;
    color: #252627;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-col i {
    min-width: 32px;
    min-height: 32px;
}

.footer-col ul {
    list-style: none;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #005bac;
    background-image: linear-gradient(90deg, #005bac, #054176);
    color: #fff;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kvv_address-wrapper,
footer .kvv_list,
.kvv_phone-wrapper,
.kvv_email-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kvv_address,
.list-description,
.kvv_phone-label,
.kvv_email-label {
    color: #8F8F8F;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 0;
}

.kvv_phone-number a,
.kvv_email-number {
    color: #005bac;
    font-size: 18px;
    font-weight: 400;
}

.scrollup {
    background-color: rgb(0, 0, 0);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    position: fixed;
    right: 16px;
    bottom: 16px;
    cursor: pointer;
    font-size: 21px;
    fill: #fff;
    font-weight: 400;
    text-shadow: none;
    box-shadow: 0 2px 10px -4px rgb(0, 0, 0);
    transition: all 0.22s;
    z-index: 999;
}

.scrollup:hover {
    background-color: #005bac;
}

.scrollup i.kvv_icon {
    padding: 7px;
    line-height: 0;
}

@media (max-width: 767px) {
    .scrollup {
        right: 12px;
        bottom: 12px;
    }
}

footer .social-links a {
    color: #fff;
    gap: 10px;
    align-items: center;
}

footer .social-links a:hover {
    color: #ccc;
}

footer .kvv_social-icon .kvv_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cfd4d7;
    border-radius: 50%;
    fill: #005bac;
    width: 50px;
    height: 50px;
}

footer .kvv_social-icon .kvv_icon:hover {
    background-color: #fff;
    fill: #054176;
}

footer .kvv_social-icon .kvv_icon svg {
    width: 25px;
    height: auto;
}

footer .kvv_social-icon .facebook-profile svg {
    width: 20px;
}

.kvv_footer .kvv_nav-menu .menu-item {
    color: #8F8F8F;
    font-size: 15px;
    line-height: 30px;
    list-style: none;
    font-weight: 300;
    margin-bottom: 0;
    text-transform: uppercase;
}

footer li.menu-item:hover a,
li.current-menu-item a {
    color: #005bac;
    font-weight: bold;
}

circle.shadow {
    fill: url(#RadialGradient1);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cls-3,
.cls-4,
.cls-5,
.cls-6,
.gr-1,
.gr-2,
.gr-3,
.gr-4 {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cls-1 {
    fill: #005bac;
}

.cls-2 {
    fill: #cfd4d7;
    stroke: #005bac;
    stroke-width: 0.26499999;
}

.cls-3,
.cls-4,
.cls-5,
.cls-6 {
    fill: transparent;
    stroke: #fff;
    stroke-width: 0.26499999;
}

.gr-1,
.gr-2,
.gr-3,
.gr-4 {
    fill: none;
    stroke: #fff;
    stroke-width: 0.26499999;
}

.cls-3 {
    stroke-dasharray: 0, 132, 0;
}

.cls-4 {
    stroke-dasharray: 0, 159, 0;
}

.cls-5 {
    stroke-dasharray: 0, 194, 0;
}

.cls-6 {
    stroke-dasharray: 25, 306, 00;
}

.anim {
    -webkit-animation: shadow 1.4s infinite ease-in-out;
    animation: shadow 1.4s infinite ease-in-out;
}

@keyframes shadow {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


#Ukraine-map {
    max-width: 100%;
    position: relative;
}

#Ukraine-map text {
    font-size: 2px;
    fill: #000;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

#Ukraine-map text.sm {
    font-size: 2px;
}

.punkt-priyomu {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background: #fff;
    border: 1px solid #005bac;
    border-radius: 5px;
}

.punkt-priyomu.show {
    display: block;
}

circle.p1 {
    fill: #005bac;
    stroke: #fff;
    stroke-width: 0.2;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.kvv_punkt-region {
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    background-color: #005bac;
    color: #fff;
    padding: 5px;
    line-height: 1.2;
}

.kvv_punkt-adresi {
    font-size: 14px;
    text-align: center;
    padding: 15px;
}

.punkt-priyomu .btn-block-close {
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

.punkt-priyomu .btn-block-close:before,
.punkt-priyomu .btn-block-close:after {
    border-top: 1px solid #fff;
    content: '';
    left: 0;
    position: absolute;
    top: 50%;
    width: 75%;
}

.punkt-priyomu .btn-block-close:before {
    -webkit-transform: rotate(45deg) translateZ(0);
    transform: rotate(45deg) translateZ(0);
    -o-transform: rotate(45deg);
}

.punkt-priyomu .btn-block-close:after {
    -webkit-transform: rotate(-45deg) translateZ(0);
    transform: rotate(-45deg) translateZ(0);
    -o-transform: rotate(-45deg);
}

/* додаємо динаміки */
.map-main__block {
    --page-wrapper-offset: 1rem;
    --page-wrapper-fade-height: var(--padding-y);
    --floating-offset: 2.5rem;
    --hamburger-size: 3.5rem;
    width: 100%;
    position: relative;
    background: url(../img/map-of-Ukraine_bg.jpg) no-repeat 50%/cover;
    overflow-x: scroll;
}

.map-main__cargoship {
    --moving-speed: 350s;
    --floating-speed: 10s;
    --direction: 1;
    position: absolute;
    will-change: transform;
    animation: moving var(--moving-speed) ease infinite forwards;
}

.map-main__draggable {
    --scale: 1;
    --x: 0;
    --y: 0;
    --width: 100%;
    --map-image-ratio: 0.562;
    overflow: hidden;
    /*width: var(--width);
    height: calc(var(--width) * var(--map-image-ratio));*/
    width: 1920px !important;
    height: auto;
    will-change: transform;
    transform-origin: 0 0;
    transform: translate3d(var(--x), var(--y), 0) scale3d(var(--scale), var(--scale), var(--scale));
}

@keyframes shaking {
    0% {
        transform: skewX(calc(-5deg * var(--direction)))
    }

    50% {
        transform: skewX(calc(5deg * var(--direction)))
    }

    to {
        transform: skewX(calc(-5deg * var(--direction)))
    }
}

@keyframes moving {
    0% {
        transform: translate(0)
    }

    50% {
        transform: translate(calc(200% * var(--direction)))
    }

    to {
        transform: translate(0)
    }
}

@keyframes floating {
    0% {
        transform: rotate(0)
    }

    25% {
        transform: rotate(2.5deg)
    }

    75% {
        transform: rotate(-2.5deg)
    }

    to {
        transform: rotate(0)
    }
}


.map-main__car,
.map-main__cloud,
.map-main__plane {
    position: absolute;
}

.map-main__cloud {
    --moving-speed: 350s;
    --direction: 1;
    will-change: transform;
    animation: moving var(--moving-speed) ease infinite forwards
}

.mobile-header-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.burger-menu {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-navigation-panel {
    position: fixed;
    top: 56px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 56px);
    background: var(--bg-white);
    z-index: 99;
    transition: left 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: inset 0 8px 10px -10px rgba(0, 0, 0, 0.15);
}

.mobile-navigation-panel.open {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.mobile-nav .has-children>a::after {
    content: "";
}

.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--bg-light);
    border-left: 3px solid var(--accent-color);
    margin-top: 10px;
    display: none;
}

.mobile-nav .sub-menu a {
    padding: 10px 15px;
    text-transform: none;
    font-size: 16px;
}

.mobile-contacts-box {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-container {
    position: relative;
    z-index: 3;
}

.image-container img {
    vertical-align: middle;
    display: inline-block;
    height: auto;
    max-width: 100%;
    position: relative;
}

.image-container:after {
    display: inline-block;
    background-color: #005bac;
    background-image: linear-gradient(90deg, #005bac, #054176);
    width: 700px;
    height: 580px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 8px 10px 0 #005bac4f;
    position: absolute;
    top: 30px;
    left: 25px;
    z-index: -1;
    content: "";
}

#kvv-google-map {
    width: 100%;
    height: 500px;
}

.adresi-punktiv a:hover {
    color: #e7dddd;
}

.kvv_predstavnitstva {
    scroll-behavior: smooth;
}

table,
th,
td {
    border: 1px solid rgba(51, 51, 51, 0.1);
}

th,
td {
    padding: 0.5em;
    font-size: 1.9em;
    text-align: center;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

.py-5 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.kvv_table strong {
    color: #005bac;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    box-sizing: border-box;
    max-width: 100%;
    border-collapse: collapse;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    min-height: 0.01%;
}

.pdf-source-links h2 {
    color: #252627;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}

.button.kvv-submit-sub {
    color: #fff;
    font-size: 20px;
    line-height: 1.7em;
    letter-spacing: 0.3px;
    background-color: #005bac;
    background-image: linear-gradient(90deg, #005bac, #054379);
    padding: 10px 37px;
    box-shadow: 0px 5px 10px 0px #0543796b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: max-content;
}

.button.kvv-submit-sub:hover {
    background-image: linear-gradient(90deg, #005bac, #0063b9);
}

.kvv_group embed,
.kvv_group iframe,
.kvv_group object,
.kvv_group video {
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
}

.kvv-page--corporate-responsibility .presentation-grid {
    align-items: flex-start;
}

.about-corporate-responsibility ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.about-corporate-responsibility li {
    line-height: 1.6;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 400;
}

/* --- АДАПТИВНІСТЬ (МОБІЛЬНІ ЕКРАНИ); adaptive/responsive --- */

@media (max-width: 992px) {
    body {
        padding-top: 0;
    }

    .site-header {
        display: none;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-contacts {
        flex-direction: column;
        gap: 12px;
    }

    .header-bottom {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .slide .kvv_image {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .container-fluid {
        max-width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .slide h2 {
        font-size: 28px;
    }

    .slide p {
        font-size: 15px;
    }

    .slider-section {
        height: 450px;
    }

    .mobile-header-bar {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .kvv_logo h3 {
        overflow-wrap: break-word;
        word-break: normal;
        max-width: 300px;
        text-align: center;
    }

    .kvv_widget-title:after {
        display: none;
    }

    .image-container:after {
        max-width: 95%;
        height: 95%;
    }

    .map-main__cloud,
    .map-main__cargoship,
    .map-main__car {
        display: none;
    }
}