@media (max-width:4000px) {
    .container {
        max-width: 96%;
    }
}

@media (min-width:1200px) {
    .contact-link {
        position: relative;
        z-index: 1;
    }
    .contact-link::before {
        content: "";
        position: absolute;
        inset: 0 -10px;
        z-index: -1;
        border-radius: 3px;
        background-color: var(--secondary-color);
        transition: all 500ms linear;
    }
    .contact-link a,
    .contact-link a:hover {
        color: #fff;
    }
    .contact-link:hover::before {
        background-color: var(--primary-color);
    }
    .box-01 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 50px 20px;
    }
    .box01-content {
        text-align: left;
    }
    .box-01 span {
        margin: auto;
    }
    .box01-content p {
        line-height: 1;
        margin-top: 5px;
    }
}

@media (min-width:4001px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width:1199px) {
    .navbar-brand {
        padding: 0;
    }
    .header-logo {
        max-width: 155px;
    }
    header li.nav-item:not(:first-child) {
        margin: 0 0 0 0px;
    }
    header ul.navbar-nav {
        background: #f6f6f6;
    }
    header .nav-link {
        padding: 12px 25px;
        border-bottom: 1px solid rgb(255 255 255 / 50%);
        line-height: 1;
    }
    .carousel-item {
        height: auto;
    }
    .nav-item .nav-link::before,
    .nav-item .nav-link::after {
        display: none;
    }
}

@media (max-width:991px) {
    .carousel-item {
        max-height: 100vh;
        min-height: calc(100% - 500px);
        height: auto;
    }
}

@media (max-width:767px) {
    .active .sliderTitle {
        top: 50%;
        transform: translateY(-50%);
        font-size: 25px;
    }
    .active .sliderSubtitle {
        top: 50%;
        margin-top: -50px;
        margin-bottom: 0;
        font-size: 20px;
    }
}

@media (max-width:575px) {
    .header-logo {
        max-width: 100px;
    }
    header nav,
    header.sticky nav {
        height: 70px;
    }
    header.sticky .header-logo {
        max-width: 100px;
    }
    .box-01 {
        padding: 30px 0px;
    }
    .box01-content p {
        line-height: 1;
        margin-top: 5px;
    }
    .contact-details {
        padding: 10px;
    }
    .contact-form {
        padding: 20px;
    }
}