* {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

body {
    -webkit-overflow-scrolling: touch;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

section {
    margin-bottom: 100px;
}

h1 {
    color: #FFF;
    font-size: 58px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: normal !important;
    margin-bottom: 15px !important;
    letter-spacing: 2.9px;
    text-transform: uppercase;
}

h2 {
    color: #131212;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 46px !important; /* 127.778% */
    text-transform: uppercase;
}

h3 {
    color: #D9D9D9;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal !important;
    margin-bottom: 30px !important;
    letter-spacing: 1.8px;
}

h4 {
    color: #FFF;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 36px !important;
}

h5 {
    color: #FFF;
    font-size: 22px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 32px !important;
}

p {
    color: #131212;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.header .menu-head {
    background-color: #FFFFFF;
}

.header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 68px;
}

.mobile-header-menu {
    display: none !important;
}

.header-menu nav .menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    align-items: center;
    position: relative;
}

.header-menu nav .menu .nav-item a {
    color: #414042;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    text-decoration: none;
    margin: 0 50px;
}

.header-menu nav .menu .nav-item:first-child a {
    margin-left: 0;
}

.header-menu nav .menu .nav-item:last-child a {
    margin-right: 0;
}

.header-phone-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 10px;
}

.header-phone-div a {
    text-decoration: none;
    color: #212020;
    text-align: end;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.header-phone-div a span {
    color: #EE2F2F;
    font-family: "Microgramma D Extended";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


.header-phone-div a div span {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}

.header-phone-div a:hover {
    color: #212020;
}

.header-phone-div a:hover span {
    color: #1A4589;
}


.mobile-menu > li {
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: black;
    position: absolute;
    height: 2px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.header .nav {
    padding: 32px 0
}


.menu-item-has-children .sub-menu {
    display: none;
    list-style: unset;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu-item-has-children .sub-menu li {
    padding: 0 !important;
    width: 100%;
    height: auto;
}

.menu-item-has-children .sub-menu li a {
    width: 100%;
    display: block;
    margin: 0 !important;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
    /*gap: 20px 0;*/
    position: absolute;

}

.menu-item-has-children .sub-menu.open {
    display: block !important;
    position: absolute;
}

.menu-item-has-children .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    right: 30px;
    top: -1px;
}

.menu-item-has-children .dropdown-toggle:after {
    display: none;
}

.menu-item-has-children .dropdown-toggle svg {
    transition: transform 0.3s ease; /* Smooth rotation */

}


.nav-item ul {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.10);
    border: none;
}

.nav-item ul li a {
    padding: 14px 0;
    border-bottom: 1px solid #D2D2D2;
}

.nav-item ul li {
    padding: 0 25px;
}

.nav-item ul li a {
    padding: 14px 0;
    border-bottom: 1px solid #D2D2D2;
    font-weight: 400 !important;
}

.nav-item > ul > li:last-child > a {
    border: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.header-logo-div {
    position: absolute;
    padding: 44px 100px 44px 95px;
    background-color: #000; /* Color of the 10% background */
    transform: skewX(25deg);
    border-right: 3px solid #F04923;
    height: 100%;
    align-items: center;
    display: flex;
}


.header-logo-div::before {
    content: "";
    position: absolute;
    top: 0;
    right: 280px;
    width: 1000px;
    height: 100%;
    background-color: #000;
}

.social-icons-header {
    background-color: #131212;
    padding: 10px;
}

.social-icons-header .first-row .row {
    justify-content: space-between;
}

.social-icons-header-div {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.social-icons-header-div a {
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    cursor: pointer;
}

.social-icons-header-div a:hover {
    color: #F04923;
}

.social-icons-header-div a:hover svg path {
    fill: #F04923;
}

.justify-content-end.col-6 .social-icons-header-div {
    gap: 0 14px;
}

header {
    position: relative;
}


header .header-logo-a img {
    max-width: 200px;
    transform: skewX(-25deg);
}

.head-phone-col {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.head-phone-col a {
    display: flex;
    align-items: center;
    color: #131212;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-decoration: none;
    width: max-content;
}

.head-phone-col a svg {
    margin-right: 12px;
}

.custom-button-div {
    display: flex;
    justify-content: end;
    width: 100%;
    align-items: center;
}

.custom-button {
    padding: 15px 30px;
    color: #FFF;
    background: #F04923;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border: none;
    max-width: fit-content;
    text-decoration: none;
    cursor: pointer;
    height: max-content;
    width: 100%;
}

.custom-button svg {
    margin-left: 6px;
}

.custom-button:hover {
    background: #374EA2;
    color: #FFF;
}

.cover-section {
    overflow: hidden;
    position: relative;
    background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/cover-2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cover-section .cover-div {
    padding: 192px 0;
}

.cover-section .cover-div .custom-button-div {
    justify-content: start;
    gap: 0 56px;
}

.video-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.exceeding-section {
    background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/Vector.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 160px;
    margin-bottom: 0;
    overflow: hidden;
}

.exceeding-images-div {
    width: 100%;
    max-width: 640px;
    position: relative;
}

.exceeding-images-div .exceeding-images-div-child {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.exceeding-images-div .exceeding-images-div-child.two {
    justify-content: end;
}

.image-left {
    position: absolute;
    left: 44px;
    bottom: -70px;
    transform: translateX(-50%);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.from-above {
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    position: relative;
}


/* Animation */
@keyframes slide-in-above {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-below {
    0% {
        transform: translateY(50%); /* Start off-screen below */
        opacity: 0; /* Hidden initially */
    }
    100% {
        transform: translateY(0); /* Move into place */
        opacity: 1; /* Fully visible */
    }
}

.angled-block {
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    position: relative;
    padding: 70px 22px 42px;
    background-color: #3a54a1;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
    margin-top: 30px;
    z-index: 1;
}

.animate .from-above,
.animate .image-left,
.animate .angled-block {
    transform: translate(0, 0);
    opacity: 1;
}

.angled-block h6 {
    color: #FFF;
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 79.07% */
    text-transform: uppercase;
}

.angled-block p {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    text-transform: uppercase;
    margin-bottom: 0;
}

.exceeding-icons-div {
    display: flex;
    gap: 0 30px;
    margin: 5px 0;
}

.exceeding-icons-div-child {
    display: flex;
    align-items: start;
    gap: 0 12px;
    max-width: 350px;
}

.exceeding-icons-div-child h5 {
    color: #131212;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 28px !important;
    margin-bottom: 4px;
}

.exceeding-icons-div-child img {
    max-width: 72px;
}

.about-button {
    display: block;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: #131212;
    padding: 15px 30px;
    text-decoration: unset;
    border-left: 10px solid #F04923;
    width: fit-content;
}

.about-button:hover {
    color: #FFF;
}


.text-div {
    display: grid;
    gap: 15px 0;
}

.text-div h2 {
    margin-bottom: 0;
}

.text-div p {
    margin-bottom: 0;
    max-width: 665px;
}

.text-div .custom-button-div {
    justify-content: start;
}

.explore-our-section {
    background-color: #F3F3F5;
    padding: 100px 0 118px;
}

.explore-our-section .text-div h2 {
    margin-bottom: 40px;
}

.explore-our-section .text-div p {
    margin: 0 auto 38px;
}

.explore-our-section .about-button {
    margin: 0 auto 10px;
}

.explore-our-section .explore-our-div {
    position: relative;
    overflow: hidden;

}

.explore-our-section .explore-our-div .explore-our-img {
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.explore-our-div:hover .explore-our-img {
    transform: scale(1.2); /* Zoom the image on hover */
}

.explore-our-section .explore-our-div .explore-our-div-child {
    position: absolute;
    bottom: 0;
    padding: 40px 22px 40px 40px;
    width: 100%;
}

.explore-our-section .explore-our-div .explore-our-div-child h4 {
    margin-bottom: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.explore-our-section .explore-our-div .explore-our-div-child p {
    margin-bottom: 0;
    color: #FFF;
    max-width: 360px;
}

.locations-section .about-button {
    margin-bottom: 10px;
}

.logistics-greener-section {
    /*background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/MAV09805-2.png");*/
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 200px;
}

.logistics-greener-section h2 {
    color: #FFF;
    margin-bottom: 10px;
}

.logistics-greener-section .custom-button {
    margin: 0 auto 66px;
}

.logistics-greener-div {
    background-color: #374EA2;
    border: 10px solid #FFF;
    padding: 86px 125px;
    /*background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/Group-112.svg");*/
    background-repeat: no-repeat;
    background-position: right bottom;
}

.logistics-greener-div h2 {
    margin-bottom: 38px;
}


.logistics-greener-div-child div {
    border-right: 1px solid #FFF;
    padding: 0 72px 0 48px;
}

.logistics-greener-div .first .logistics-greener-div-child div {
    padding-left: 0;
}

.logistics-greener-div .col-xl-4:last-child .logistics-greener-div-child div {
    border-right: none;
    padding-right: 0;
}

.logistics-greener-div-child svg {
    padding: 0 72px 0 48px;
    width: auto;
}

.logistics-greener-div .first .logistics-greener-div-child svg {
    padding-left: 0;
}

.logistics-greener-div-child h6 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 70.833% */
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 8px;
}

.logistics-greener-div-child p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 34px; /* 188.889% */
    text-transform: uppercase;
    margin-bottom: 0;
}

.explore-our-section .explore-our-achievements {
    text-align: center;
}

.explore-our-section.achievements .text-div h2 {
    margin-bottom: 0;
}

.explore-our-section .explore-our-achievements h4 {
    color: #131212;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 15px auto 8px;
}

.explore-our-section .explore-our-achievements p {
    margin: 0 auto;
    max-width: 420px;
}

.explore-our-section.white {
    padding: 0;
    background-color: #FFFFFF;
}

.blog-slider {
    position: relative;
    margin: 0 10px 20px;
}

.blog-slider img {
    width: 100%;
}

.blog-slider div {
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: space-between;
    bottom: 0;
    padding: 34px 25px;
    gap: 0 30px;
}

.blog-slider div p {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 0;
}

.blog-slider .custom-button {
    background-color: transparent;
    border: 2px solid #FFF;
}

.blog-slider .custom-button:hover {
    background-color: #F04923;
}

.slider2-class .slick-dots li button {
    padding: 0;
    height: 5px;
    background-color: #D9D9D9;
    border-radius: 10px;
    width: 10px;
}

.slider2-class .slick-dots li {
    width: 10px;
    height: 5px;
    margin: 0 4px;
}

.slider2-class .slick-dots .slick-active {
    width: 80px;
}

.slider2-class .slick-dots .slick-active button {
    width: 80px;
    background-color: #F04923;
}

.slider2-class .slick-dots li button:before {
    display: none;
}

.form-div .about-button {
    margin-bottom: 25px;
}

.form-div h2 {
    margin-bottom: 15px;
}

.main-info {
    display: grid;
    gap: 26px 0;
}


.main-info p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.main-info a {
    color: #131212;
    text-decoration: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
}

.main-info a:hover {
    color: #131212;
}

.main-info svg {
    margin-right: 16px;
}

.tab-content-row {
    gap: 24px 0;
    padding: 60px 40px;
    background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/MAV09922.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tab-content-row h2 {
    color: #FFF;
    margin-bottom: 14px;

}

.custom-select-wrapper {
    position: relative;

}

.tab-content-row input, textarea, select {
    padding: 18px 26px;
    border-radius: 5px;
    background: #EFF1F7;
    width: 100%;
    outline: none;
    border: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: rgba(19, 18, 18, 0.33);

}

.tab-content-row select {
    appearance: none; /* Remove default styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

}

.custom-select-wrapper:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Adjust as needed */
    height: 20px; /* Adjust as needed */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="gray" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-size: cover;
    pointer-events: none; /* Ensure it doesn't block interaction */
}

.tab-content-row input::placeholder, textarea::placeholder {
    color: rgba(19, 18, 18, 0.33);
}

.tab-content-row .custom-button-div {
    justify-content: start;
}

.footer-head {
    padding: 60px 0 80px;
    background-color: #131212;
}

.footer-bottom {
    padding: 18px 0;
    background-color: #FFFFFF;
}

.footer-head h5 {
    margin-bottom: 32px;
}

.footer-head h5 img {
    margin-left: 8px;
}

.footer-head h5 a {
    color: #F04923;
    text-decoration: unset;
}


.footer-head .social-icons-header-div a:hover svg path {
    fill: #FFF;
}

.footer-head .footer-links {
    display: grid;
    gap: 18px 0;
}

.footer-head .footer-links a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    opacity: 0.7;
}

.footer-head .footer-links a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: #FFF;
    opacity: 1;
}

.footer-head .footer-links a:hover {
    opacity: 1;
}

.footer-head .social-icons-header-div {
    margin-bottom: 66px;
    margin-top: 38px;
}

.footer-head .social-icons-header-div a {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.footer-bottom span {
    color: #131212;
}

#error-message {
    margin-top: 10px;
    text-align: center;
    color: red;
    font-size: 16px;
    font-weight: 700;
}

#thank-you {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}


@media screen and (min-width: 1600px) {
    .max-container {
        max-width: 1520px !important;
    }

    .logistics-greener-div .row .col-xl-4 {
        width: 45% !important;
    }

    .logistics-greener-div .row:first-child .first {
        width: 27% !important;
    }

    .logistics-greener-div .row:last-child .three {
        width: 28% !important;
    }

}

@media screen and (max-width: 1740px) {
    .social-icons-header .first-row .row {
        justify-content: end;
    }

    .header-menu {
        justify-content: end;
    }

    .header-menu nav .menu .nav-item a {
        margin: 0 30px;
    }
}

@media screen and (max-width: 1599px) {
    .logistics-greener-div-child h6 {
        font-size: 42px;
        line-height: 34px;
    }

    .logistics-greener-div-child {
        height: 100%;
    }

    .logistics-greener-div-child div {
        height: 60%;
    }

    .blog-slider div p {
        font-size: 20px;
        line-height: 30px;
    }
}

@media screen and (max-width: 1440px) {
    .header-logo-div {
        padding: 44px 44px 44px 95px;
    }

    header .header-logo-a img {
        max-width: 100px;
    }

    .header-logo-div::before {
        right: 230px;
    }

    .blog-slider .custom-button {
        border: none;
        padding: 0 0 0 36px;
    }

    .blog-slider .custom-button span {
        display: none;
    }

    .blog-slider .custom-button svg {
        margin: 0;
    }
}


@media screen and (max-width: 1200px) {
    .from-above {
        width: 100%;
        margin-left: 50px;
    }

    .logistics-greener-div .col-xl-4 .logistics-greener-div-child {
        padding-bottom: 50px;
        position: relative; /* Needed for positioning the pseudo-element */

    }

    .logistics-greener-div .col-xl-4 .logistics-greener-div-child::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0; /* Adjust as needed to position the border */
        width: 62px; /* Set the border's width */
        height: 1px; /* Set the border's height (thickness) */
        background-color: #FFFFFF; /* Border color */
    }

    .logistics-greener-div .col-xl-4:last-child .logistics-greener-div-child {
        padding-bottom: 0;
    }

    .logistics-greener-div .col-xl-4:last-child .logistics-greener-div-child::after {
        background: none;
    }

    .exceeding-images-div-child > div {
        display: flex;
        gap: 0 4px;
    }

    .logistics-greener-div-child div {
        height: auto;
    }

    .logistics-greener-div-child svg {
        padding: 0;
    }

    .logistics-greener-div-child div {
        padding: 0;
        border-right: none;
    }

    .logistics-greener-div .row {
        gap: 50px 0;
    }
}

@media screen and (max-width: 991px) {
    .header-menu {
        display: none;
        justify-content: end;
    }

    .mobile-header-menu {
        display: flex !important;
        justify-content: end;
        background: #FFFFFF;
        height: 36px;
    }

    .menu-button-container {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        margin-top: 72px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 80;
    }

    .mobile-menu li a {
        text-decoration: none;
        color: #030D22;
    }

    #menu-toggle ~ .mobile-menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .mobile-menu li {
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: white;
    }

    .mobile-menu .menu-item-has-children .sub-menu.open {
        display: none !important;
    }

    #menu-toggle:checked ~ .mobile-menu .menu-item-has-children .sub-menu.open {
        display: block !important;
    }

    .mobile-menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }

    .menu-item-has-children .dropdown-toggle {
        margin-left: 10px;
        right: 0;
        top: -1px;
    }

    .menu-item-has-children .sub-menu {
        top: 40px;

    }

    .menu-item-has-children .sub-menu a {
        padding: 10px 0;
    }

    .menu-item-has-children:hover .sub-menu {
        display: none;
    }

    .social-icons-header {
        padding: 6px;
    }

    .header-logo-div {
        padding: 20px 44px;
    }

    .header-logo-div::before {
        right: 200px;
    }

    header .header-logo-a img {
        max-width: 130px;
        width: 100%;
    }

    .head-phone-col {
        margin-right: 30px;
    }

    .head-phone-col a {
        font-size: 16px;
        line-height: 26px;
    }

    .head-phone-col a svg {
        max-width: 24px;
        margin-right: 10px;
    }


    .cover-section .cover {
        height: 340px;
        width: max-content;
        right: 1px;
    }


    .cover-section .cover-div .custom-button-div {
        display: grid;
        gap: 15px 0;
    }

    .exceeding-images-div {
        margin-top: 50px;
    }


    .explore-our-section .row {
        gap: 15px 0;
    }

    .explore-our-section.achievements .row {
        gap: 30px 0;
    }

    .explore-our-section.achievements .text-div p {
        margin-bottom: 5px;
    }

    .logistics-greener-div {
        padding: 50px 34px 80px;
    }

    .tab-content-row {
        margin-top: 50px !important;
    }

    .footer-head .row {
        gap: 50px 0;
    }
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 585px) {
    h1 {
        font-size: 40px !important;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    h2 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    h3 {
        font-size: 20px !important;
        letter-spacing: 1px;
        margin-bottom: 15px !important;
    }

    h4 {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-bottom: 6px !important;
    }

    h4 svg {
        max-width: 26px;
        height: auto;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    section {
        margin-bottom: 50px;
    }

    .custom-button {
        font-size: 18px;
    }

    .custom-button svg {
        max-width: 26px;
    }

    .video-button {
        font-size: 18px;
    }

    .header-logo-div {
        padding: 20px 30px 20px 14px;
    }

    .header-logo-div::before {
        right: 170px;
    }

    .social-icons-header-div a {
        font-size: 14px;
        line-height: 24px;
    }

    .social-icons-header-div svg {
        max-width: 24px;
        max-height: 24px;
    }

    .cover-section {
        background-image: url("https://ailologistics.com/wp-content/uploads/2025/01/Group-91.png");
    }

    .cover-section .cover-div {
        padding: 130px 0;
    }

    .about-button {
        font-size: 18px;
    }

    .exceeding-section {
        background-position: -60px bottom;
        padding-bottom: 80px;
        background-size: 50%;
    }

    .exceeding-icons-div {
        display: grid;
        gap: 30px 0;
    }

    .exceeding-icons-div-child {
        gap: 0 10px;
        max-width: 100%;
    }

    .exceeding-icons-div-child h5 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .from-above {
        max-width: 280px;
        right: -12px;
    }

    .image-left {
        max-width: 160px;
        left: 20%;
        bottom: -30px;
    }

    .angled-block {
        margin-top: 10px;
        right: -12px;
        padding: 30px 12px 22px;
    }

    .angled-block h6 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 0;
    }

    .angled-block p {
        font-size: 10px;
        line-height: 20px;
    }

    .exceeding-images-div-child > div {
        left: 10%;
        position: relative;
    }

    .exceeding-images-div-child > div svg:first-child {
        max-height: 83px;
    }

    .exceeding-images-div-child > div svg:last-child {
        max-height: 102px;
    }

    .explore-our-section {
        padding: 50px 0;
    }

    .explore-our-section .about-button {
        margin: 0 0 5px;
    }

    .explore-our-section .text-div h2 {
        margin-bottom: 10px;
    }

    .logistics-greener-div {
        background-size: 54%;
    }

    .logistics-greener-section {
        padding-top: 100px;
    }


    .explore-our-achievements img {
        max-width: 80px;
    }

    .blog-slider .custom-button svg {
        max-width: 22px;
        height: auto;
    }


    .blog-slider {
        margin: 0 0 20px;
    }

    .blog-slider div {
        padding: 18px;
    }

    .blog-slider div p {
        font-size: 16px;
        line-height: 26px;
    }

    .form-div .about-button {
        margin-bottom: 20px;
    }

    .form-div h2 {
        margin-bottom: 5px;
    }

    .tab-content-row {
        gap: 10px 0;
        padding: 44px 22px;
    }

    .tab-content-row h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    .tab-content-row input, textarea, select {
        font-size: 16px;
        line-height: 24px
    }

    .main-info {
        gap: 18px 0;
    }

    .main-info svg {
        margin-right: 10px;
    }

    .footer-head {
        padding: 50px 0 60px;
    }

    .footer-head h5 {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-bottom: 18px;
        display: flex;
    }

    .footer-head h5 img {
        margin-left: 0;
        margin-right: 40px;
    }

    .footer-head .footer-links {
        gap: 15px 0;
    }

    .footer-head .social-icons-header-div {
        margin-top: 18px;
        margin-bottom: 35px;
    }

    .footer-head .order-4 .social-icons-header-div {
        margin-bottom: 0;
    }

    .footer-head h5.mb-0 {
        font-size: 16px;
        line-height: 26px;
        display: block;
    }

    .footer-head .social-icons-header-div a {
        font-size: 16px;
        line-height: 26px; /* 162.5% */
    }

    .footer-head .social-icons-header-div svg {
        max-width: 32px;
        max-height: 32px;
    }

    .footer-head .social-icons-header-div svg.phone {
        max-width: 26px;
        max-height: 26px;
    }


    .footer-head .order-4 {
        display: flex;
        flex-direction: column;

    }

    .footer-head .order-4 .social-icons-header-div {
        margin-top: auto;

    }

    .footer-bottom {
        padding: 16px 0;
    }
    .footer-bottom span{
        font-size: 14px;
    }
}


@media screen and (max-width: 420px) {


}

@media screen and (max-width: 385px) {

}