/* header  */
.header-wrapper {
    background-color: var(--primary-dark);
}

.header-container .header-box .left-box a {
    text-decoration: none;
    color: var(--base-white);
}

.header-container .header-box .right-box .client-portal-link {
    border-left: 1px solid #ffffff;
}

/* build location toggle (in top header left side) */
.build-toggle {
    position: relative;
    display: inline-block;
}

.build-toggle-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    transition: opacity 0.15s ease;
}

.build-toggle-trigger:hover {
    opacity: 0.85;
}

.build-toggle-trigger,
.build-toggle-label,
.build-toggle-label strong,
.build-toggle-caret {
    color: #ffffff;
}

.build-toggle-caret {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.build-toggle.is-open .build-toggle-caret {
    transform: rotate(180deg);
}

.build-toggle-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    padding: 6px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        visibility 0.15s ease;
}

.build-toggle.is-open .build-toggle-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.build-toggle-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    transition: background-color 0.1s ease;
}

.build-toggle-option:hover {
    background-color: #f6f1ec;
    color: #1a1a1a;
    text-decoration: none;
}

.build-toggle-option.is-active {
    color: var(--primary-color);
    font-weight: 600;
    cursor: default;
}

.build-toggle-option.is-active:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.build-toggle-check {
    display: inline-flex;
    justify-content: center;
    width: 16px;
    color: var(--primary-color);
    font-size: 12px;
}

/* nav */
.nav-wrapper {
    border-bottom: 1px solid #e8e7e6;
}

.nav-container .nav-box > div {
    height: 80px;
}

.nav-container .nav-box .logo-box {
    border-right: 1px solid #e8e7e6;
    width: 240px;
}

.nav-container .nav-box .logo-box img {
    height: 50px;
}

.nav-container .nav-box .logo-box svg {
    height: 50px;
}

.nav-container .nav-box .link-box a {
    height: 100%;
    color: #655f5f;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.nav-container .nav-box .link-box a i {
    font-size: 14px;
}

.nav-container .nav-box .link-box a.hover-active {
    color: var(--primary-color);
}

.nav-container .nav-box .link-box a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-container .nav-box .link-box a:hover {
    color: var(--primary-color);
}

.nav-container .nav-box .contact-box {
    width: 280px;
    border-left: 1px solid #e8e7e6;
}

.nav-container .nav-box .contact-box .img-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    background-color: #e6641010;
    border: 1px solid #e664104d;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.nav-container .nav-box .contact-box .info-box p {
    color: #655f5f;
    font-size: 14px;
}

.nav-container .nav-box .contact-box .info-box h1 {
    font-size: 16px;
}

.nav-container .nav-box .contact-box .info-box a {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
    text-decoration: none;
}

/* menu container  */
.menu-wrapper {
    width: 100%;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 20px 40px -4px rgba(16, 24, 40, 0.07);
    z-index: 9;
}

.menu-container .menu-box {
    display: grid;
    grid-template-columns: 1fr 2.06fr 1fr;
    background-color: #ffffff;
}

.menu-container .menu-box .link-box {
    padding: 30px;
}

.menu-container .menu-box .link-box.main-link {
    background-color: #f6f7f8;
}

.menu-container .menu-box .link-box .list-box h4 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
}

.menu-container .menu-box .link-box .list-box a {
    text-decoration: none;
    color: var(--black-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.menu-container .menu-box .link-box .list-box p {
    color: #655f5f;
    font-size: 14px;
    line-height: 1.5;
}

.menu-container .menu-box .link-box .list-box a:hover h1 {
    color: var(--primary-color);
}

/* mobile nav container  */
.mobile-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
}

.mobile-nav-wrapper .mobile-nav-container {
    position: absolute;
    top: 0;
    left: -200%;
    width: 350px;
    height: 100%;
    background-color: #ffffff;
    overflow-y: auto;
}

.mobile-nav-container .mobile-nav-box {
    height: 100%;
}

.mobile-nav-container .mobile-nav-box .link-wrapper {
    height: calc(100% - 84px);
}

.mobile-nav-container .mobile-nav-box .link-wrapper div {
    width: 100%;
}

.mobile-nav-container .mobile-nav-box .logo-box {
    border-bottom: 1px solid #e8e7e6;
}

.mobile-nav-container .mobile-nav-box .logo-box img {
    height: 50px;
}

.mobile-nav-container .mobile-nav-box .logo-box .icon-box img {
    height: 24px;
}

.mobile-nav-container .mobile-nav-box .logo-box svg {
    height: 50px;
}

.mobile-nav-container .mobile-nav-box .link-box p span {
    font-size: 10px;
}

.mobile-nav-container .mobile-nav-box .link-box ul li {
    font-size: 14px;
}

.mobile-nav-container .mobile-nav-box .link-box ul li a {
    color: #655f5f;
    text-decoration: none;
}

.mobile-nav-container .mobile-nav-box .contact-box {
    border-bottom: 1px solid #d8d5d4;
    border-top: 1px solid #d8d5d4;
}

.mobile-nav-container .mobile-nav-box .contact-box .img-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    background-color: #e6641010;
    border: 1px solid #e664104d;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.mobile-nav-container .mobile-nav-box .contact-box .info-box p {
    color: #655f5f;
    font-size: 14px;
}

.mobile-nav-container .mobile-nav-box .contact-box .info-box a {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
    text-decoration: none;
}

.mobile-nav-container .mobile-nav-box .social-box {
    border-bottom: 1px solid #d8d5d4;
}

.mobile-nav-container .mobile-nav-box .social-box a {
    color: var(--black-color);
    font-weight: 500;
}

/* breadcrumb  */
.breadcrumb-wrapper {
    background-color: #fdf0e7;
}

.breadcrumb-container .breadcrumb-box .title {
    max-width: 600px;
    width: 100%;
}

.breadcrumb-container .breadcrumb-box .title h1 span {
    color: var(--primary-color);
    /* font-family: "DM Serif Text", serif; */
    font-style: italic;
    font-weight: 500;
}

.breadcrumb-container .breadcrumb-box .title p {
    color: #655f5f;
    line-height: 1.5;
}

/* red banner  */
.red-banner-wrapper {
    position: relative;
    background-color: #8b2635;
    overflow: hidden;
}

.red-banner-wrapper::before {
    content: url("../images/illustration2.png");
    position: absolute;
    top: -34px;
    right: -200px;
}

.red-banner-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8b2635;
    opacity: 0.7;
    z-index: 1;
}

.red-banner-container {
    position: relative;
    z-index: 2;
}

.red-banner-container .red-banner-box .section-tag {
    color: var(--secondary-color);
    background-color: #ffffff;
}

.red-banner-container .red-banner-box .section-title,
.red-banner-container .red-banner-box .section-title span {
    color: #ffffff;
}

.red-banner-container .red-banner-box .grid-wrapper .grid-box {
    border-top: 2px solid #ffffff29;
}

.red-banner-container .red-banner-box .grid-wrapper .grid-box .icon-box {
    height: 56px;
    width: 56px;
    min-height: 56px;
    min-width: 56px;
    max-width: 56px;
    max-height: 56px;
    background-color: #ffffff1a;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

/* whyus container  */
.whyus-wrapper {
    background-color: var(--green-color);
    overflow-x: hidden;
}

.whyus-container .whyus-box .section-tag {
    background-color: #ffffff;
    color: var(--green-color);
}

.whyus-container .whyus-box .section-title {
    color: #ffffff;
}

.whyus-container .whyus-box .section-title span {
    color: #ffffff;
}

.whyus-container .whyus-box .section-info {
    color: #ffffff;
}

.whyus-container .whyus-box .video-box {
    max-width: 1050px;
    width: 100%;
    height: 500px;
    border: 4px solid #ffffff;
}

.whyus-container .whyus-box .video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.whyus-container .whyus-box .video-box .rec-vector {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
}

.whyus-container .whyus-box .video-box .rec-vector.rec-vector1 {
    top: -8px;
    left: -8px;
}

.whyus-container .whyus-box .video-box .rec-vector.rec-vector2 {
    top: -8px;
    right: -8px;
}

.whyus-container .whyus-box .video-box .rec-vector.rec-vector3 {
    bottom: -8px;
    left: -8px;
}

.whyus-container .whyus-box .video-box .rec-vector.rec-vector4 {
    bottom: -8px;
    right: -8px;
}

.whyus-container .whyus-box .video-box .getintouch-vector {
    position: absolute;
    top: -48px;
    right: -56px;
}

.whyus-container .whyus-box .info-box {
    max-width: 1050px;
    width: 100%;
}

.whyus-container .whyus-box .info-box .right-box .count-box p {
    color: #f6f7f8;
}

.whyus-container .whyus-box .info-box .right-box .count-box .img-box {
    height: 150px;
    width: 150px;
}

.whyus-container .whyus-box .info-box .right-box .count-box .img-box h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.whyus-container .whyus-box .info-box .left-box .btn-box .markq-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* testimonial container  */
.testimonial-wrapper {
    background-color: #f6f7f8;
}

.testimonial-container .testimonial-box .testimonial-card {
    cursor: pointer;
}

.testimonial-container .testimonial-box .testimonial-card .bg-box {
    position: relative;
    height: 400px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.testimonial-container .testimonial-box .testimonial-card .bg-box:after {
    content: "\f144";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 40px;
    color: #ffffff90;
    background-color: #00000030;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.testimonial-container .testimonial-box .testimonial-card .bg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.testimonial-container
    .testimonial-box
    .testimonial-card
    .profile-box
    .img-box {
    min-height: 48px;
    max-height: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    width: 48px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.testimonial-container
    .testimonial-box
    .testimonial-card
    .profile-box
    .img-box
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.testimonial-container
    .testimonial-box
    .testimonial-card
    .profile-box
    .name-box
    h1 {
    font-size: 16px;
    font-weight: 700;
}

.testimonial-container
    .testimonial-box
    .testimonial-card
    .profile-box
    .name-box
    p {
    color: #655f5f;
    font-size: 14px;
}

/* bottom banner  */
.bottom-banner-wrapper {
    /* background-color: var(--primary-light); */
    background-color: var(--cream-color);
}

.bottom-banner-container .bottom-banner-box .right-box {
    height: 370px;
    pointer-events: none;
    user-select: none;
}

.bottom-banner-container .bottom-banner-box .right-box .img-box {
    position: absolute;
    top: 0;
    right: 0;
}

.bottom-banner-container .bottom-banner-box .right-box .img-box img {
    height: 570px;
}

.bottom-banner-container .logo-banner-box {
    border-top: 1px solid #f0bd9b6e;
    overflow-x: auto;
}

.bottom-banner-container .logo-banner-box img {
    height: 100px;
}

.bottom-banner-container .logo-banner-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bottom-banner-container .logo-banner-box::-webkit-scrollbar {
    display: none;
}

.bottom-banner-container .illustration-box {
    position: relative;
    height: 500px;
    width: 100%;
    display: none;
    user-select: none;
    pointer-events: none;
    overflow-x: hidden;
    overflow-x: clip;
}

.bottom-banner-container .illustration-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.bottom-banner-container .illustration-box::-webkit-scrollbar {
    display: none;
}

.bottom-banner-container .illustration-box .img-box {
    position: absolute;
    top: -40px;
}

/* footer  */
.footer-wrapper {
    background-color: #050201;
}

.footer-container .footer-box .first-row {
    border-bottom: 2px solid #d8d5d433;
}

.footer-container .footer-box .first-row .logo-box .img-box img {
    height: 70px;
}

.footer-container .footer-box .first-row .logo-box .social-box a {
    width: 46px;
    height: 46px;
    min-width: 46px;
    max-width: 46px;
    min-height: 46px;
    max-height: 46px;
    background-color: #ffffff1c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-container .footer-box .first-row .logo-box .social-box a img {
    height: 16px;
}

.footer-container .footer-box .first-row .link-box .list-box {
    height: 276px;
    padding: 32px 34px;
    border-left: 1px solid #d8d5d433;
}

.footer-container .footer-box .first-row .link-box .list-box h1 {
    color: #ffffff;
    font-size: 18px;
}

.footer-container .footer-box .first-row .link-box .list-box ul li a {
    color: #ffffff;
    font-size: 14px;
}

.footer-container .footer-box .second-row {
    border-bottom: 1px solid #d8d5d433;
}

.footer-container .footer-box .second-row .form-box .input-box input {
    color: #f1f1f1;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #d8d5d4;
    width: 282px;
    padding: 10px 10px;
}

.footer-container
    .footer-box
    .second-row
    .form-box
    .input-box
    input::placeholder {
    color: #f3fafa;
}

.footer-container .footer-box .second-row .form-box .input-box a {
    display: block;
    text-decoration: none;
    color: var(--black-color);
    background-color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* offers side panel */
.offers-panel-wrapper {
    position: fixed;
    top: calc(50% - 40vh);
    right: -336px;
    width: 336px;
    height: 80vh;
    z-index: 999999;
}

/* offers trigger  */
.offers-trigger {
    position: absolute;
    left: -44px;
    top: 50%;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 16px 16px 14px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 8px 0 0 8px;
    -moz-border-radius: 8px 0 0 8px;
    -ms-border-radius: 8px 0 0 8px;
    -o-border-radius: 8px 0 0 8px;
}

.offers-trigger:hover {
    left: -46px;
}

.offers-trigger .trigger-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(180deg);
}

.offers-trigger i {
    font-size: 12px;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

/* Panel */
.offers-panel {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

/* Panel Container */
.offers-panel .panel-container {
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

/* Header */
.offers-panel .panel-container .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e9ecef;
}

.offers-panel .panel-container .panel-header h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", serif;
}

.offers-panel .panel-container .panel-header .panel-close {
    background: transparent;
    border: none;
    color: var(--primary-color);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.offers-panel .panel-container .panel-header .panel-close:hover {
    transform: rotate(90deg);
}

/* Body */
.offers-panel .panel-container .panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

/* offer panel cards */
.offer-panel-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.offer-panel-card:last-child {
    margin-bottom: 0;
}

.offer-panel-card .card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.offer-panel-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-panel-card .card-image .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-panel-card .card-info {
    padding: 14px;
}

.offer-panel-card .card-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.offer-panel-card .card-info .card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Footer */
.panel-footer {
    padding: 14px 18px;
    border-top: 1px solid #e9ecef;
}

.panel-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000000;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.panel-footer a:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

/* responsive  */
@media (max-width: 1250px) {
    /* .header-wrapper {
        display: none;
    } */

    .nav-container .nav-box .logo-box {
        width: unset;
        border: none;
    }
    .nav-container .nav-box .link-box {
        display: none;
    }
    .nav-container .nav-box .contact-box {
        display: none;
        border: none;
    }
}

@media (max-width: 1100px) {
    .bottom-banner-container .bottom-banner-box .right-box .img-box img {
        height: 520px;
    }
}

@media (max-width: 1023px) {
    .breadcrumb-container .breadcrumb-box h1 {
        font-size: 38px;
    }

    .red-banner-container .red-banner-box .section-title br {
        display: none;
    }
    .red-banner-container .red-banner-box .title-box .right-box {
        padding-left: 30px;
    }
    .red-banner-container .red-banner-box .grid-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .red-banner-wrapper::before {
        top: 140px;
    }

    .whyus-container .whyus-box .info-box {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .bottom-banner-container .bottom-banner-box {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }
    .bottom-banner-container .bottom-banner-box .right-box {
        display: none;
    }
    .bottom-banner-container .logo-banner-box {
        padding-bottom: 40px;
    }
    .bottom-banner-container .illustration-box {
        display: none;
    }
    .bottom-banner-container .illustration-box .img-box {
        left: calc(50% - 450px);
    }

    .footer-container .footer-box .first-row {
        flex-direction: column;
        border-width: 1px;
    }
    .footer-container .footer-box .first-row .logo-box {
        padding: 40px 0;
        width: 100%;
        border-bottom: 1px solid #d8d5d433;
    }
    .footer-container .footer-box .first-row .link-box {
        column-gap: 60px;
        padding: 40px 0;
    }
    .footer-container .footer-box .first-row .link-box .list-box {
        padding: 0;
        height: unset;
        border: none;
    }
    .footer-container .footer-box .second-row {
        flex-direction: column;
        row-gap: 30px;
    }
}

@media (max-width: 900px) {
    .whyus-container .whyus-box .title-box h1 br {
        display: none;
    }
}

@media (max-width: 767px) {
    .breadcrumb-container .breadcrumb-box h1 {
        font-size: 36px;
    }
    .breadcrumb-container .breadcrumb-box .title p br {
        display: none;
    }

    .red-banner-container .red-banner-box .title-box {
        grid-template-columns: 1fr;
    }
    .red-banner-container .red-banner-box .title-box .right-box {
        padding-left: 0;
        padding-top: 20px;
    }
    .red-banner-container .red-banner-box .grid-wrapper {
        grid-template-columns: 1fr;
    }
    .red-banner-wrapper::before {
        top: unset;
        bottom: -100px;
    }

    .whyus-container .whyus-box .title-box p br {
        display: none;
    }
    .whyus-container .whyus-box .video-container {
        padding-top: 70px;
    }
    .whyus-container .whyus-box .video-box {
        height: 400px;
    }
    .whyus-container .whyus-box .video-box .getintouch-vector {
        left: calc(50% - 60px);
        right: unset;
    }
    .whyus-container .whyus-box .info-box {
        grid-template-columns: 1fr;
    }
    .whyus-container .whyus-box .info-box .right-box {
        justify-content: center;
    }

    .bottom-banner-container .bottom-banner-box .btn-box {
        column-gap: 10px;
    }

    .footer-container .footer-box .first-row .link-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }
    .footer-container .footer-box .second-row .form-box .input-box {
        flex-direction: column;
        row-gap: 30px;
    }
    .footer-container .footer-box .second-row .form-box .input-box input {
        margin-right: 0;
        width: 100%;
    }
    .footer-container .footer-box .second-row .form-box .input-box a {
        width: 100%;
    }
    .footer-container .footer-box .third-row {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
}

@media (max-width: 500px) {
    .header-wrapper .header-container .right-box .social-box {
        display: none;
    }
    .header-wrapper .header-container .right-box .client-portal-link {
        padding-left: 0;
        border: none;
    }
    .footer-container .footer-box .second-row .form-box p br {
        display: none;
    }
}

@media (max-width: 400px) {
    .whyus-container .whyus-box .btn-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 14px;
    }
    .whyus-container .whyus-box .markq-btn {
        width: 230px;
    }
    .whyus-container .whyus-box .info-box .right-box {
        column-gap: 10px;
    }
    .whyus-container .whyus-box .video-box {
        height: 300px;
    }

    .bottom-banner-container .bottom-banner-box .btn-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 14px;
    }
    .bottom-banner-container .bottom-banner-box .markq-btn {
        width: 200px;
    }
}
