@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kaithi&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Kaithi", sans-serif;
    /*font-family: "Bpmf Iansui", cursive;*/
    /*font-family: "Plus Jakarta Sans", sans-serif;*/
}

:root {
    --primary-color: #ec1c24;
    --heading-color: #111111;
    --text-color: #828282;
}

p {
    color: var(--text-color);
}

header {
    background-color: transparent;
    position: absolute;
    z-index: 99;
    width: 100%;
}

.navbar-custom {
    padding: 10px 10%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    transition: all 0.4s ease;
    /* background: #0707073d; */
}

.navbar-custom .logo {
    width: 160px;
}

.nav-links ul {
    margin-bottom: 0;
    display: flex;
    gap: 25px;
}

.nav-links ul li {
    list-style: none;
}

.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.4s ease;
}

.nav-links ul li a i {
    font-weight: 900;
    font-size: 14px;
    margin-left: 4px;
}

/* SCROLLED STATE */
.navbar-custom.scrolled {
    background: var(--heading-color);
    ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .logo {
    background-color: var(--heading-color);
}

/* Text becomes black */
.navbar-custom.scrolled .nav-links ul li a {
    color: #fff;
}

.nav-links ul li a:hover,
.nav-links ul li a.active,
.navbar-custom.scrolled .nav-links ul li a:hover,
.navbar-custom.scrolled .nav-links ul li a.active {
    color: var(--primary-color);
}

/* Dropdown container */
.dropdown1 {
    position: relative;
}

/* Dropdown menu */
.dropdown-menu1 {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Dropdown links */
.dropdown-menu1 a {
    display: block;
    padding: 10px 20px;
    color: var(--heading-color) !important;
    border-bottom: 1px solid #d8d8d8;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu1 a:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* Show dropdown on hover */
.dropdown1:hover .dropdown-menu1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown1:hover a {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(50deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-50deg) translate(6px, -6px);
}

.dropdown-toggle::after {
    display: none;
}

@media (max-width: 1024px) {

    .menu-toggle {
        display: flex;
        height: 45px;
        width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .menu-toggle span {
        background: var(--primary-color);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        /* left: 0; */
        width: 80%;
        background: var(--heading-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .nav-links.active {
        max-height: 100vh;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
        padding-left: 0;
    }

    .nav-links ul li {
        border-bottom: 1px solid #ddd;
    }

    .nav-links ul li a {
        color: #fff;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown menu mobile */
    .dropdown-menu1 {
        position: static;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s ease;
    }

    .dropdown1.active .dropdown-menu1 {
        max-height: 500px;
        background-color: #f5eded;
        margin: 0 20px;
    }

    .dropdown1 a i {
        transition: transform 0.3s ease;
    }

    .dropdown1.active a i {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        width: 92%;
    }
}

.carousel {
    background-color: #2b2927;
    /*height: 125vh;*/
    height: 100vh !important;
}

.carousel-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(to right, #180338 0%, rgba(24, 3, 56, 0.95) 50%, rgba(24, 3, 56, 0.5) 100%); */
    /* background: linear-gradient(to right, #1803385d 0%, rgba(24, 3, 56, 0.514) 50%, rgba(24, 3, 56, 0.5) 100%); */
}

.carousel-control-prev,
.carousel-control-next {
    opacity: .9;
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border: 1px solid #fff;
    height: 40px;
    width: 40px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    border-color: var(--primary-color);
}

.carousel-item {
    position: relative;
}

.carousal-text-box {
    position: absolute;
    z-index: 1;
    top: 29%;
    left: 13%;
    width: 800px;
}

.carousal-text-box .title-heading {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px var(--primary-color), 0 0 1em var(--heading-color);
}

.carousal-text-box .main-btn {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    text-transform: uppercase;
    min-width: 160px;
    text-align: center;
    text-decoration: none;
    border: none;
}

.carousal-text-box .main-btn:hover {
    cursor: pointer;
}

.counter-section {
    padding: 0 10%;
    z-index: 9;
    /*position: absolute;*/
    width: 100%;
}

.counter-card {
    background-color: #fff;
    padding: 30px;
    /*margin-top: -14%;*/
    margin-top: 0%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.small-heading {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.small-heading span {
    color: var(--primary-color);
}

.small-heading span:hover {
    color: var(--heading-color);
}

.counter-card .left-div a {
    text-transform: uppercase;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid red;
    padding-bottom: 5px;
}

.counter-card .left-div a:hover {
    color: var(--primary-color);
}

.counter-card .right-div p {
    font-size: 17px;
    line-height: 1.7;
}

.counter-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.count-box {
    line-height: 1;
}

.count-box span {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
}

.count-box p {
    margin-bottom: 0;
    margin: 0 15%;
    font-size: 14px !important;
    font-weight: 600;
}

.what-we-do {
    padding: 1% 10% 6% 10%;
    /* margin-top: 11%; */
}

.what-we-do .headings {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do .headings p {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.what-we-do .headings h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--heading-color)
}

.what-we-do .headings h2 span {
    color: var(--primary-color);
}

.headings .small-data {
    color: var(--text-color) !important;
    font-weight: 400 !important;
}

.our-service-main {
    height: 465px;
    width: 360px;
    overflow: hidden;
    /* important */
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.our-service-main .service-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.our-service-main:hover {
    cursor: pointer;
}

.our-service-main:hover .service-img {
    transform: scale(1.15);
}

.our-service-main .text-card {
    position: absolute;
    /* background-color: #fff; */
    /* width: 270px;
    height: 240px; */
    /* background: rgba(255, 255, 255, 0.65); */
    background: rgb(255 255 255 / 41%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    padding: 30px 15px 18px 30px;
    transform: translateY(69%);
    transition: transform 0.6s ease;
}

.our-service-main .text-card img {
    height: 52px;
    width: 50px;
    margin-bottom: 20px;
}

.our-service-main .text-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--heading-color);
}

.our-service-main .text-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #111;
}

.our-service-main:hover .text-card {
    transform: translateY(0);
}

.expert-out-section {
    width: 100%;
    /* height: 547px; */
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.expert-out-section .left-box {
    position: relative;
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2023/08/bg-a.png"); */
    background-image: url("/frontend/assets/gen_img/generes_img17.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: end;
}

.expert-out-section .right-box {
    position: relative;
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/03/bg-prgress.jpg"); */
    background-image: url("/frontend/assets/homepage_img/events_matter.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px;
    display: flex;
    align-items: center;
}

.expert-out-section .right-box .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    /* background-color: #030e43; */
    background-color: #1c1e25db;
    opacity: 0.9;
}

.expert-out-section .left-box .bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    /* background-color: #000000; */
    opacity: 0.3;
}

.expert-out-section .left-box h2 {
    color: #fff;
    font-weight: 900;
    font-size: 60px;
    position: absolute;
    text-align: right;
    margin-right: 60px;
    line-height: 1em;
    text-transform: uppercase;
}

.expert-out-section .right-box .content-box p {
    /* margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px; */
    color: #fff;
}

.expert-out-section .right-box .content-box ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.expert-out-section .right-box .content-box ul li .bi-check::before {
    color: var(--primary-color);
    font-size: 25px;
}

.ce_ixelgen_progress_bar {
    max-width: 500px;
}

.ce_ixelgen_progress_bar .progress_bar_item {
    margin-bottom: 2rem;
}

.ce_ixelgen_progress_bar .item_label,
.ce_ixelgen_progress_bar .item_value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #fff;
}

.ce_ixelgen_progress_bar .item_value {
    font-weight: 400;
}

.ce_ixelgen_progress_bar .item_bar {
    position: relative;
    height: 5px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;

}

.ce_ixelgen_progress_bar .item_bar .progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    margin: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    transition: width 100ms ease;
}

.outdoor-addvertising {
    padding: 6% 0;
}

.outdoor-addvertising .heading h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 100px;
}

.outdoor-addvertising .heading span {
    color: var(--primary-color);
}

.outdoor-addvertising .heading span:hover {
    color: var(--heading-color)
}

.outdoor-addvertising .outdoor-add-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
}

.outdoor-addvertising .outdoor-add-main .left-box {
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/03/image-b.jpg"); */
    /* background-image: url("./assets/homepage_img/Subhadra_Shakti.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
}

.outdoor-addvertising .outdoor-add-main .left-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.outdoor-addvertising .outdoor-add-main .right-box {
    padding: 0px 90px 0px 30px;
    display: flex;
    align-items: center;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box h5 {
    margin: 0px 0px 20px 0px;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--heading-color);
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box p {
    font-size: 18px;
    line-height: 1.7em;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box .grid-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box .grid-data .grid-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box .grid-data .grid-cell img {
    width: 40px;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box .grid-data .grid-cell p {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 16px;
}

.out-bottom {
    margin-bottom: 100px;
}

.outdoor-addvertising .outdoor-add-main .left-box2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.outdoor-addvertising .outdoor-add-main .alt-right-box {
    justify-content: end;
    padding: 0px 30px 0px 90px;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box ul {
    padding-left: 0px;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box ul li {
    list-style-type: none;
    font-size: 18px;
    font-weight: 600;
}

.outdoor-addvertising .outdoor-add-main .right-box .content-box ul li .bi-check::before {
    color: var(--primary-color);
    font-size: 25px;
}

.cta-section {
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2023/08/bg-cta.jpg"); */
    background-image: url("/frontend/assets/gen_img/generes_img11.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0;
    position: relative;
}
.cta-section .blur {
       background: rgb(41 37 37 / 38%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
    margin-bottom: 30px;
}

.cta-box p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 45px;
    color: #fff;
}

.cta-box .main-btn {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 15px 30px;
    text-transform: uppercase;
    min-width: 160px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.outdoor-advertising-section {
    padding: 6% 10%;
}

.outdoor-advertising-section .out-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.outdoor-advertising-section .out-first .left-div {
    height: 449px;
    /*width: 570px;*/
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    overflow: hidden;
    cursor: pointer;
}

.outdoor-advertising-section .out-first .left-div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
    border-radius: 10px;
}

.outdoor-advertising-section .out-first .left-div:hover img {
    transform: scale(1.15);
}

.rd-right {
    /* margin-left: -120px;
    width: 687px; */
    margin-left: 35px;
    /*width: 538px;*/
}

@media (max-width: 1024px) {
    .out-first .right-div {
        margin-left: 20px;
    }

    .rd-right {
        width: auto;
    }
}

@media (max-width: 975px) {
    .outdoor-advertising-section .out-first {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
}

.rd-right h2 {
    color: var(--heading-color);
    margin: 0px 0px 30px 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
}

.down-div .red-line {
    width: 170px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.sec-down-div p {
    font-size: 16px;
    width: 520px;
}

/* MAIN BUTTON */
.wave-btn {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color, #de0f3f);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.wave-btn i {
    font-size: 25px;
    margin-left: 3px;
}

/* WAVES */
.wave-btn::before,
.wave-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(222, 15, 63, 0.5);
    animation: wave 2.5s infinite;
    z-index: -1;
}

.wave-btn::after {
    animation-delay: 1.25s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


.outdoor-advertising-section .out-sec {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.outdoor-advertising-section .out-sec .card-box {
    padding-right: 30px;
}

.out-sec .card-box i {
    font-size: 40px;
    color: var(--primary-color);
}

.out-sec .card-box .title {
    color: var(--heading-color);
    font-weight: bold;
}

.our-project-section {
    background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2023/08/bg-f.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 250px 0;
}

.our-project-section .main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-project-section .main-box p {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin: 0px 0px 20px 0px;
}

.our-project-section .main-box h2 {
    margin: 0px 0px 10px 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.our-project-section .main-box h2 span {
    color: var(--primary-color);
}

.our-project-content-section {
    padding: 0 10%;
}

.our-project-content-section .main-card {
    height: 635px;
    margin-top: -170px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.our-project-content-section .main-card .left-div {
    background-image: url("assets/other_img/Khordha_Mahatsav2.jpg");
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/01/project-1.jpg"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
}

.our-project-content-section .main-card .right-div {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

.our-project-content-section .main-card .right-div .top-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.our-project-content-section .main-card .right-div .top-div .left-div {
    background-image: url("assets/other_img/4Road_Safety_Month_2026.jpeg");
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2020/11/project-6.jpg"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
}

.our-project-content-section .main-card .right-div .top-div .right-div1 {
    background-image: url("assets/other_img/vikas_mela.jpeg");
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/01/project-3-1.jpg"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
}

.our-project-content-section .main-card .right-div .bottom-div {
    background-image: url("assets/other_img/LSG_Event.jpg");
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/01/project-2-1.jpg"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
}

.main-card .left-div .inner-div {
    background-color: var(--primary-color);
    padding: 25px;
    height: 100%;
    position: relative;
    display: none;
}

.main-card .left-div:hover .inner-div {
    display: block;
}

.main-card .right-div .top-div .left-div .inner-div {
    background-color: var(--primary-color);
    padding: 25px;
    height: 100%;
    position: relative;
    display: none;
}

.main-card .right-div .top-div .left-div:hover .inner-div {
    display: block;
}

.main-card .right-div .top-div .right-div1 .inner-div {
    background-color: var(--primary-color);
    padding: 25px;
    height: 100%;
    position: relative;
    display: none;
}

.main-card .right-div .top-div .right-div1:hover .inner-div {
    display: block;
}

.main-card .right-div .bottom-div .inner-div {
    background-color: var(--primary-color);
    padding: 25px;
    height: 100%;
    position: relative;
    display: none;
}

.main-card .right-div .bottom-div:hover .inner-div {
    display: block;
}

.inner-div .text-box {
    bottom: 15px;
    position: absolute;
}

.inner-div .text-box a {
    font-weight: 800;
    color: #fff;
    font-size: 23px;
    text-decoration: none;
}

.inner-div .text-box p {
    color: #fff;
}

.team-section {
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2021/03/team-bg.jpg"); */
    background-image: url("/frontend/assets/gen_img/8Malyabanta_Mahotsav_2025.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 120px 0;
    overflow-x: auto;
    position: relative;
}
.team-section .blur {
    background: rgb(41 37 37 / 69%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.team-section .main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.team-section .main-box p {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin: 0px 0px 20px 0px;
}

.team-section .main-box h2 {
    margin: 0px 0px 10px 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.team-section .video-box {
    height: 450px;
    width: 800px;
    border-radius: 5px;
    margin: auto;
}

/* .team-section .team-content-box {
    padding: 0 11%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.team-section .team-content-box .team-solo {
    margin: 0 20px;
    width: 360px;
    position: relative;
}
.team-section .team-content-box .team-solo img {
    width: 100%;
}
.team-section .team-content-box .team-solo .team-dtl {
    padding: 45px 0;
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: -webkit-fill-available;
    transition: background-color 1.5s ease, bottom 1.6s ease-in-out;
}
.team-section .team-content-box .team-solo .team-dtl h5 {
    font-weight: 900;
    color: #fff;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.team-section .team-content-box .team-solo .team-dtl p {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.team-section .team-content-box .team-solo:hover .team-dtl {
    background-color: var(--primary-color);
    bottom: -70px;
} */
.faq-section {
    /* background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2023/08/bg-faq.jpg"); */
    background-image: url("/frontend/assets/gen_img/7Malyabanta_Mahotsav_2025.jpeg");
    padding: 0 10%;
    background-repeat: round;
}

.faq-section .faq-main-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.faq-section .faq-main-box .faq-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-section .faq-main-box .faq-form-card {
    padding: 20% 0;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main {
    background-color: var(--primary-color);
    margin-left: 100px;
    padding: 50px;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main .input-group {
    flex-direction: column;
    margin-bottom: 20px;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main .input-group label {
    color: #fff;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main .input-group input {
    background-color: transparent;
    outline: none;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main form {
    margin-top: 25px;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main button {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 20px 40px;
    font-weight: 600;
    margin-top: 10px;
}

.faq-section .faq-main-box .faq-form-card .faq-form-card-main button:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.faq-card .faq-data p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-card .faq-data h2 {
    color: var(--heading-color);
    font-weight: 900;
    font-size: 65px;
    line-height: 1.0em;
}

.faq-container {
    margin: 30px 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 18px;
    color: #666;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 30px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    flex: 1;
    margin-left: 20px;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    order: -1;
}

.faq-toggle::before {
    content: '+';
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
    margin-top: -14px;
}

.faq-item.active .faq-toggle::before {
    content: '−';
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 89px;
    padding-right: 30px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 0px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}

/* Animation for smooth opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer p {
    animation: slideDown 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 36px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
    }

    .faq-toggle::before {
        font-size: 24px;
    }

    .faq-answer {
        padding-left: 70px;
        padding-right: 20px;
    }

    .faq-item.active .faq-answer {
        margin-bottom: 20px;
    }
}

.client-logo-section {
    padding: 2% 0;
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

/* Pause on hover */
.client-logo-section:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframes */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.want-to-work {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.want-to-work .left-div {
    background-color: #151414;
    ;
    display: flex;
    align-items: center;
    padding: 12% 0% 12% 20%;

}

.want-to-work .left-div h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
}

.want-to-work .right-div {
    background-color: var(--heading-color);
    position: relative;
    display: flex;
    align-items: center;
}

.want-to-work .right-div .inner-right-div {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: -110px;
}

.want-to-work .right-div .inner-right-div span {
    display: inline-block;
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
}

.want-to-work .right-div .inner-right-div .contact-div h6 {
    font-weight: 700;
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
}

.want-to-work .right-div .inner-right-div .contact-div p {
    color: #d8d8d8;
}

footer .main-footer {
    padding: 5% 10%;
    background-color: var(--heading-color);
    /*display: grid;*/
    /*grid-template-columns: repeat(4, 1fr);*/
}

footer .main-footer div:nth-child(1) img {
    width: 170px;
    margin-bottom: 22px;
}

footer .main-footer div:nth-child(1) p {
    color: #d8d8d8;
}

footer .main-footer div:nth-child(2) h5,
footer .main-footer div:nth-child(3) h5,
footer .main-footer div:nth-child(4) h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

footer .main-footer div:nth-child(2) ul,
footer .main-footer div:nth-child(3) ul {
    list-style: none;
    padding-left: 0;
}

footer .main-footer div:nth-child(2) ul li a,
footer .main-footer div:nth-child(3) ul li a {
    color: #d8d8d8;
    text-decoration: none;
}

footer .main-footer div:nth-child(2) ul li a:hover,
footer .main-footer div:nth-child(3) ul li a:hover {
    cursor: pointer;
    color: var(--primary-color);
}

footer .main-footer div:nth-child(4) .socials {
    display: flex;
    font-size: 20px;
    gap: 20px;
}

footer .main-footer div:nth-child(4) .socials a {
    color: #d8d8d8;
}

footer .main-footer div:nth-child(4) .socials a:hover {
    cursor: pointer;
    color: var(--primary-color);
}

footer .copy-right {
    background-color: #151414;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .copy-right p {
    color: #fff;
    margin-bottom: 0;
}

.client-testimonial {
    padding: 9% 10%;
}

.client-testimonial .main-div {
    display: flex;
}

.client-testimonial .testm-card {
    height: 280px;
    width: 380px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
}

.client-testimonial .testm-card i {
    font-size: 290px;
    color: #fff;
}

.client-testimonial .text-head {
    position: relative;
    display: flex;
    align-items: center;
}

.client-testimonial .text-head h3 {
    font-size: 60px;
    font-weight: 900;
    position: absolute;
    left: -95px;
}

.latest-news {
    padding: 9% 10%;
    position: relative;
}

.latest-news .headings {
    text-align: center;
    margin-bottom: 60px;
}

.latest-news .headings p {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.latest-news .headings h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--heading-color)
}

.latest-news .headings h2 span {
    color: var(--primary-color);
}

.rs-carousel {
    width: 100%;
}

.rs-carousel-header {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 30px;
}

.rs-btn {
    width: 40px;
    height: 40px;
    font-size: 23px;
    border: 1px solid #ddd;
    padding-bottom: 10px;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    /* position: absolute; */
}

.rs-prev {
    left: 6%;
    top: 62%;
}

.rs-next {
    right: 6%;
    top: 62%;
}

/* viewport */
.rs-carousel-viewport {
    overflow: hidden;
}

.rs-carousel-track {
    display: flex;
    gap: 26px;
    /* YOUR GAP */
    transition: transform 0.45s ease;
}

/* ===== cards ===== */
.rs-item {
    flex: 0 0 calc((100% - 80px) / 3);
    /* 3 cards with 2 gaps */
}

.rs-item .our-service-main {
    height: 380px;
    width: 366px;
    overflow: hidden;
    position: relative;
}

/* Desktop – 3 cards */
.rs-item {
    flex: 0 0 calc((100% - 52px) / 3);
    /* 2 gaps */
}

.why-choose-section {
    background-image: url("https://outmedia.freekytheme.com/wp-content/uploads/2020/09/bg-ft.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 120px 0;
    overflow-x: auto;
    position: relative;
}

.why-choose-section .main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.why-choose-section .main-box p {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin: 0px 0px 20px 0px;
}

.why-choose-section .main-box h2 {
    margin: 0px 0px 10px 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.why-choose-section .elementor-background-overlay {
    background-color: #0D0022;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

/* Tablet – 2 cards (769px–1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .rs-item {
        flex: 0 0 calc((100% - 26px) / 2);
        /* 1 gap */
    }
}

/* Mobile – 1 card (≤768px) */
@media (max-width: 768px) {
    .rs-item {
        flex: 0 0 100%;
    }
}

/* Center cards visually on 1024px & below */
@media (max-width: 1024px) {
    .rs-carousel {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .rs-carousel {
        width: 60%;
        margin: auto;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDER */
.slider {
    display: flex;
    gap: 50px;
    transition: transform 0.45s ease;
}

/* CARD */
.card {
    flex: 0 0 calc(50% - 25px);
    /* 2 cards */
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    /* border: none; */
}

/* MOBILE → 1 CARD */
@media (max-width: 425px) {
    .slider {
        gap: 20px;
    }

    .card {
        flex: 0 0 100%;
    }
}

/* BUTTONS */
.slider-wrapper .buttons {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.nav-btn {
    font-size: 22px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #111;
    border: 1px solid #dfdfdf;
}

.nav-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* REVIEW */
.reviw-cont {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviw-cont img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.reviw-cont .persional h6 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.reviw-cont .persional p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.carousel1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control {
    font-size: 45px;
    padding-bottom: 13px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 22px;
    cursor: pointer;
    border-radius: 5px;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid #dfdfdf;
    position: absolute;
}

.track-wrapper {
    overflow: hidden;
    width: 100%;
}

.track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.slide {
    flex: 0 0 calc((100% - 40px) / 3);
    /* 3 cards */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.control-prev {
    left: 85px;
}

.control-next {
    right: 85px;
}

.slide .our-service-main {
    height: 380px;
    width: 360px;
    overflow: hidden;
    position: relative;
}

.nest-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding: 12% 30px;
    background: rgba(0, 0, 0, 0.5) !important;
}

.nest-card .date-box {
    background-color: var(--primary-color);
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nest-card .date-box h3 {
    font-weight: 700;
    margin-bottom: 2px;
}

.nest-card .date-box p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
}

.nest-card .bookmark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nest-card .bookmark i {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.nest-card .bookmark p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.nest-card h5 {
    color: #fff;
    font-weight: 700;
    font-size: 23px;
}

.nest-card a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
}

.our-work-section {
    margin-top: 9%;
    padding: 5% 12%;
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-work-section .main-box h2 {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
    margin-bottom: 50px;
}

.our-work-section .main-box span {
    color: var(--primary-color);
}

.our-work-section .our-work-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.our-work-section .our-work-buttons a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    border: 1px solid #fff;
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.our-work-section .our-work-buttons a:hover {
    background-color: var(--primary-color);
    border: 0;
}

.about-section {
    padding: 5% 10%;
    margin-top: 0%;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
}

.about-section .left-box {
    padding-right: 40px;
}

.about-section .left-box .top-text {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-section .left-box .top-text h2 {
    color: var(--heading-color);
    font-weight: 700;
    text-transform: uppercase;
}

.about-section .left-box .top-text span {
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
}

.about-section .left-box .vm-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-section .left-box .vm-box .icon-box {
    height: 35px;
    width: 35px;
    border-radius: 5px;
    background-color: red;
    margin-top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .left-box .vm-box .icon-box i {
    font-size: 23px;
    color: #fff;
}

.about-section .left-box .vm-box .left-box,
.about-section .left-box .vm-box .right-box {
    padding-right: 20px;
}

.about-section .left-box .vm-box .left-box h5,
.about-section .left-box .vm-box .right-box h5 {
    font-weight: 700;
}

.about-section .rightt-box {
    height: 400px;
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    overflow: hidden;
    cursor: pointer;
}

.about-section .rightt-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
    border-radius: 10px;
}

.about-section .rightt-box:hover img {
    transform: scale(1.15);
}

/* GO TO TOP BUTTON */
#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    font-size: 35px;
    font-weight: bold;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--primary-color, #de0f3f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.35s ease;
    z-index: 999;
}

/* SHOW STATE */
#goTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER */
#goTopBtn:hover {
    background: #be0530;
}

.experience-section {
    padding: 6% 10%;
}

.experience-section .headings {
    text-align: center;
    margin-bottom: 60px;
}

.experience-section .headings p {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.experience-section .headings h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--heading-color);
}

.experience-section .headings h2 span {
    color: var(--primary-color);
}

.nav-tabs {
    border-bottom: 0;
    justify-content: center;
    margin-bottom: 22px;
    gap: 5px;
}

.nav-tabs .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #ededed;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;

}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
}

.experience-card {
    height: 245px;
    /* width: 360px; */
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.experience-card img {
        height: 100%;
    width: 100%;
    object-fit: cover;
}

/* OVERLAY (hidden by default) */
.experience-card .overlay {
    position: absolute;
    inset: 0;
    background-color: #23020287;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.45s ease;
}

/* OVERLAY SHOW ON HOVER */
.experience-card:hover .overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.experience-card .exp-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
    border-radius: 5px;
}

.experience-card:hover {
    cursor: pointer;
}

.experience-card:hover .exp-img {
    transform: scale(1.15);
}

/* ================== Responssive ================ */
@media (max-width: 1024px) {

    /* ----- Hero ----- */
    .carousel {
        height: 100vh;
    }

    .carousal-text-box .title-heading {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .carousal-text-box {
        top: 35%;
    }

    .carousal-text-box .main-btn {
        font-size: 14px;
    }

    /* ------- Counter ------ */
    .counter-section {
        position: inherit;
    }

    .counter-card {
        padding: 50px 40px;
        margin-top: 0%;
        box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    }

    .small-heading {
        font-size: 24px;
    }

    .counter-card .left-div a {
        font-size: 14px;
    }

    .counter-card .right-div p {
        line-height: 1.5;
    }

    .count-box p {
        margin: 0 10%;
    }

    /* -------- About ------- */
    .about-section {
        margin-top: 0%;
    }

    .about-section .left-box .vm-box {
        grid-template-columns: 1fr;
    }

    /* -------- Service --------- */
    .what-we-do .headings {
        margin-bottom: 10px;
    }

    .our-service-main {
        height: 300px;
        width: auto;
    }

    /* .our-service-main .service-img {
        display: none;
    } */
    /* .our-service-main .text-card {
        height: 133px;
    } */
    /* ---------- Meter bar ------- */
    .expert-out-section .left-box h2 {
        font-size: 40px;
        text-align: center;
        margin-right: 80px;
    }

    .expert-out-section .right-box .content-box h5 {
        line-height: 30px;
    }

    /* --------- Outdoor Ad -------- */
    .outdoor-addvertising .heading h2 {
        font-size: 24px;
        margin-bottom: 60px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box {
        /* padding: 60px 65px; */
        padding: 0px 30px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box h5 {
        line-height: 24px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box p {
        font-size: 15px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box .grid-data .grid-cell p {
        font-size: 14px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box ul li {
        font-size: 16px;
        font-weight: 400;
    }

    /* -------- CTA -------- */
    .cta-box h2 {
        font-size: 40px;
    }

    /* --------- Outdoor ad sol -------- */
    .outdoor-advertising-section .out-first .left-div {
        height: 260px;
        width: 330px;
    }

    .rd-right h2 {
        font-size: 40px;
        margin: 0px 0px 20px 0px;
    }

    .down-div {
        flex-direction: column;
    }

    .rd-right {
        margin-left: 0px;
    }

    /* --------- Recent Work ---------- */
    .our-project-section .main-box h2 {
        font-size: 48px;
    }

    .our-project-content-section .main-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .our-project-content-section .main-card .left-div {
        height: 700px;
    }

    .our-project-content-section .main-card .right-div .top-div .left-div {
        height: 368px;
    }

    /* ----------- Portfolio ---------- */
    .our-work-section .main-box h2 {
        font-size: 48px;
    }

    .our-work-section .our-work-buttons a {
        font-size: 14px;
        width: 240px;
        height: 50px;
    }

    /* -------- Client Testimonial -------- */
    .client-testimonial .text-head h3 {
        font-size: 48px;
        left: -50px;
    }

    .client-testimonial .testm-card {
        height: 173px;
        width: 180px;
    }

    .client-testimonial .testm-card i {
        font-size: 120px;
    }

    /* --------- Latest Video -------- */
    .team-section .main-box h2 {
        font-size: 48px;
    }

    .why-choose-section .main-box h2 {
        font-size: 48px;
    }

    /* -------- FAQ --------- */
    .faq-section .faq-main-box {
        grid-template-columns: 1fr;
    }

    .faq-section .faq-main-box .faq-card {
        margin-top: 9%;
        align-items: baseline;
    }

    .faq-section .faq-main-box .faq-form-card {
        padding: 9% 0;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main {
        margin-left: 0px;
    }

    .faq-card .faq-data {
        margin-top: 40px;
    }

    .faq-card .faq-data h2 {
        font-size: 40px;
    }

    .faq-question {
        padding: 5px 0px;
    }

    /* -------- Latest News ------- */
    .latest-news .headings h2 {
        font-size: 48px;
    }

    .slide {
        flex: 0 0 calc((100% - 40px) / 2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .track {
        margin-left: 20px;
    }

    .our-service-main .nua-img {
        display: block;
    }

    /* --------- Work with us --------- */
    .want-to-work .left-div h2 {
        font-size: 48px;
    }

    .want-to-work .right-div .inner-right-div span {
        width: 38px;
        margin-left: 10px;
    }

    /* --------- Footer ------- */
    .main-footer .sec-div {
        padding-left: 25px;
    }
}

@media (max-width: 1024px) {
    .our-service-main .text-card {
        transform: translateY(52%);
        padding: 33px 15px 18px 15px;
    }

    .our-service-main .text-card p {
        font-size: 13px;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        padding: 10px 4%;
    }

    /* ----- Hero ----- */
    .carousal-text-box .title-heading {
        font-size: 48px;
    }

    /* ------- Counter ------ */
    .counter-section {
        padding: 0px 0%;
    }

    .counter-card {
        padding: 13px 4%;
    }

    .count-box span {
        font-size: 30px;
    }

    .counter-card .right-div p {
        font-size: 15px;
    }

    /* -------- About ------- */
    .about-section {
        padding: 5% 4%;
    }

    .about-section .left-box .top-text {
        flex-direction: column;
        gap: 5px;
    }

    .about-section .left-box .top-text span {
        width: 140px;
    }

    .about-section .left-box .vm-box .left-box h5,
    .about-section .left-box .vm-box .right-box h5 {
        font-size: 18px;
    }

    .about-section p {
        font-size: 15px;
    }

    /* -------- Service --------- */
    .our-service-main .text-card {
        transform: translateY(66%);
        padding: 29px 15px 18px 15px;
    }

    .what-we-do {
        padding: 1% 4% 6% 4%;
    }

    .what-we-do .headings {
        margin-bottom: 40px;
    }

    .what-we-do .headings p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .what-we-do .headings h2 {
        font-size: 40px;
    }

    .our-service-main {
        height: 400px;
    }

    .our-service-main .service-img {
        display: block;
    }

    .what-we-do .in-small {
        margin-bottom: 30px;
    }

    /* ---------- Meter bar ------- */
    .expert-out-section .right-box {
        padding: 30px;
        width: 384px;
    }

    .expert-out-section .right-box .content-box h5 {
        margin: 0px 0px 40px 0px;
        font-size: 21px;
    }

    .outdoor-advertising-section .out-first .left-div {
        height: 400px;
        width: 100%;
    }

    /* --------- Outdoor Ad -------- */
    .outdoor-addvertising .outdoor-add-main .right-box {
        padding: 0px 15px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box ul li {
        font-size: 13px;
    }

    .rd-right h2 {
        text-align: center;
    }

    .down-div .red-line {
        margin: auto;
    }

    .sec-down-div p {
        width: 100%;
        text-align: center;
    }

    .outdoor-advertising-section .out-sec {
        margin-top: 10px;
    }

    /* --------- Outdoor ad sol -------- */
    .outdoor-advertising-section {
        padding: 6% 4%;
    }

    /* --------- Recent Work ---------- */
    .our-project-content-section {
        padding: 0 4%;
    }

    .our-project-section .main-box h2 {
        font-size: 40px;
    }

    /* ----------- Portfolio ---------- */
    .our-work-section .main-box h2 {
        font-size: 40px;
    }

    /* -------- Client Testimonial -------- */
    .client-testimonial {
        padding: 9% 4%;
    }

    /* --------- Latest Video -------- */
    .team-section .main-box h2 {
        font-size: 40px;
    }

    .why-choose-section .main-box h2 {
        font-size: 40px;
    }

    .team-section .video-box {
        height: 370px;
        width: 700px;
    }

    /* -------- FAQ ------- */
    .faq-section {
        padding: 0 4%;
    }

    /* -------- Latest News ------- */
    .latest-news {
        padding: 9% 4%;
    }

    .latest-news .headings h2 {
        font-size: 40px;
    }

    .rs-carousel {
        width: 52%;
        margin: auto;
    }

    /* --------- Work with us --------- */
    .want-to-work .left-div {
        padding: 12% 0% 12% 8%;
    }

    .want-to-work .left-div h2 {
        font-size: 40px;
    }

    .want-to-work .right-div .inner-right-div {
        left: -126px;
        margin-top: 40px;
    }

    .want-to-work .right-div .inner-right-div span {
        width: 90px;
        margin-left: -36px;
    }

    /* --------- Footer ------- */
    footer .main-footer {
        padding: 5% 4%;
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-section .headings p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .experience-section .headings h2 {
        font-size: 40px;
        line-height: 0.7;
    }
}

@media (max-width: 425px) {

    /* ----- Hero ----- */
    .carousel {
        background-color: #2b2927;
        height: 101vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousal-text-box {
        left: 4%;
        width: auto;
    }

    .carousal-text-box .title-heading {
        font-size: 38px;
        margin-bottom: 30px;
    }

    /* ------- Counter ------ */
    .small-heading {
        font-size: 20px;
    }

    .counter-card .left-div {
        margin-bottom: 20px;
    }

    .counter-main {
        grid-template-columns: 1fr;
    }

    .count-box {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-bottom: 15px;
    }

    /* -------- About ------- */
    .about-section {
        margin-top: 108%;
        grid-template-columns: 1fr;
    }

    .about-section .left-box {
        padding-right: 0px;
    }

    .about-section .left-box .top-text h2 {
        font-size: 30px;
    }

    .about-section .left-box .top-text span {
        width: 110px;
    }

    .about-section .left-box .vm-box {
        grid-template-columns: 1fr;
    }

    /* -------- Service --------- */
    .our-service-main .text-card {
        transform: translateY(73%);
    }

    .what-we-do .headings p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .what-we-do .headings h2 {
        font-size: 30px;
    }

    .elementor-195 .elementor-element.elementor-element-fbc4c07 .elementskit-section-title-wraper .elementskit-section-title {
        font-size: 30px;
    }

    .our-service-main {
        height: 500px;
        width: auto;
    }

    .our-service-main .text-card p {
        font-size: 16px;
    }

    /* ---------- Meter bar ------- */
    .expert-out-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .expert-out-section .left-box {
        justify-content: start;
        height: 230px;
    }

    .expert-out-section .left-box h2 {
        color: #fff;
        font-weight: 900;
        font-size: 30px;
        position: absolute;
        text-align: left;
        margin-right: 0;
        margin-left: 20px;
        line-height: 1em;
    }

    .expert-out-section .right-box {
        padding: 30px;
        width: 425px;
    }

    .expert-out-section .right-box .content-box h5 {
        font-size: 20px;
        line-height: 24px;
    }

    /* --------- Outdoor Ad -------- */
    .outdoor-addvertising .heading h2 {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .outdoor-addvertising .outdoor-add-main {
        grid-template-columns: 1fr;
        height: auto;
    }

    .outdoor-addvertising .outdoor-add-main .left-box {
        width: 425px;
        height: 400px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box {
        padding: 45px 17px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box h5 {
        margin: 0px 0px 30px 0px;
        font-size: 20px;
        line-height: 24px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box p {
        font-size: 16px;
    }

    .out-bottom {
        margin-bottom: -50px;
    }

    .outdoor-addvertising .outdoor-add-main .left-box2 {
        width: 425px;
        height: 400px;
    }

    /* --------- CTA -------- */
    .cta-section {
        padding: 150px 40px;
    }

    .cta-box h2 {
        text-align: center;
        font-size: 30px;
    }

    .cta-box p {
        text-align: center;
    }

    /* --------- Outdoor Ad -------- */
    .outdoor-advertising-section .out-first {
        grid-template-columns: 1fr;
    }

    .outdoor-advertising-section .out-first .left-div {
        height: 290px;
        width: 391px;
    }

    .rd-right {
        margin-left: 0px;
    }

    .rd-right h2 {
        margin: 10px 0px 10px 0px;
        font-size: 30px;
    }

    .rd-right .down-div {
        flex-direction: column;
    }

    .outdoor-advertising-section .out-sec {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .our-project-content-section .main-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .our-project-content-section .main-card .left-div {
        height: 500px;
    }

    .our-project-content-section .main-card .right-div .top-div .left-div,
    .our-project-content-section .main-card .right-div .top-div .right-div1,
    .our-project-content-section .main-card .right-div .bottom-div {
        height: 320px;
    }

    .our-project-content-section .main-card .right-div .top-div {
        grid-template-columns: 1fr;
    }

    .our-project-content-section .main-card .right-div {
        grid-template-rows: auto;
    }

    /* ----------- Portfolio ---------- */
    .our-work-section .main-box h2 {
        font-size: 30px;
    }

    .our-work-section .our-work-buttons a {
        font-size: 11px;
        width: 180px;
        height: 40px;
    }

    /* ----------- Testimonial ---------- */
    .client-testimonial .testm-card {
        height: 59px;
        width: 48px;
    }

    .client-testimonial .testm-card i {
        font-size: 40px;
    }

    .client-testimonial .text-head h3 {
        font-size: 21px;
        left: 10px;
    }

    /* ----------- Latest Video ---------- */
    .team-section .main-box h2 {
        font-size: 30px;
    }

    .why-choose-section .main-box h2 {
        font-size: 30px;
    }

    .team-section .video-box {
        height: 221px;
        width: 391px;
    }

    /* ----------- FAQ ---------- */
    .faq-section .faq-main-box {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 0%;
        background-image: none;
        background-color: #b9d7f3;
    }

    .faq-section .faq-main-box .faq-card {
        align-items: start;
    }

    .faq-data {
        padding-left: 17px;
    }

    .faq-card .faq-data h2 {
        font-size: 30px;
    }

    .faq-container {
        margin: 30px 0px;
    }

    .faq-question {
        padding: 9px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main {
        margin-left: 0px;
        padding: 50px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main {
        padding: 50px 17px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main h2 {
        font-size: 20px;
    }

    .faq-section .faq-main-box .faq-form-card {
        padding: 0% 0;
        margin-top: 17%;
    }

    /* ----------- Latest News ---------- */
    .latest-news .headings {
        margin-bottom: 25px;
    }

    .latest-news .headings p {
        margin-bottom: 6px;
    }

    .latest-news .headings h2 {
        font-size: 30px;
    }

    .rs-carousel {
        width: 90%;
    }

    .rs-prev {
        left: 0%;
    }

    .rs-next {
        right: 0%;
    }

    /* --------- Work with us --------- */
    .want-to-work {
        grid-template-columns: 1fr;
    }

    .want-to-work .left-div h2 {
        font-size: 30px;
    }

    .want-to-work .right-div .inner-right-div {
        left: 17%;
        margin-top: 0px;
        position: relative;
    }

    .want-to-work .right-div .inner-right-div span {
        display: none;
    }

    .contact-div {
        text-align: center;
    }

    .contact-div .ei-div {
        flex-direction: column;
    }

    .contact-div .ei-div .ps-5 {
        padding-left: 0 !important;
    }

    .want-to-work .right-div {
        background-color: #151414;
    }

    /* --------- Footer --------- */
    footer .main-footer {
        padding: 5% 4%;
        grid-template-columns: 1fr;
    }

    .experience-section .headings h2 {
        font-size: 30px;
        line-height: 0.7;
    }
}

@media (min-width: 320px) and (max-width: 375px) {
    .navbar-custom {
        padding: 10px 4%;
    }

    .carousel {
        height: 108vh;
    }

    .carousal-text-box {
        top: 35%;
    }

    .counter-section {
        padding: 0 0%;
        position: relative;
    }

    .counter-card {
        padding: 15px;
    }

    .about-section {
        margin-top: 7%;
        padding: 5% 4%;
    }

    .what-we-do {
        padding: 1% 4% 6% 4%;
    }

    .in-small {
        margin-bottom: 30px;
    }

    .expert-out-section .left-box h2 {
        margin-left: 14px;
    }

    .expert-out-section .right-box {
        width: 375px;
        padding: 22px;
    }

    .outdoor-addvertising .outdoor-add-main .left-box {
        width: auto;
    }

    .outdoor-addvertising .outdoor-add-main .left-box2 {
        width: auto;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box p {
        line-height: 1.3em;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box ul li {
        font-size: 15px;
    }

    .outdoor-advertising-section {
        padding: 6% 4%;
    }

    .outdoor-advertising-section .out-first .left-div {
        height: 253px;
        width: auto;
    }

    .our-project-section .main-box h2 {
        font-size: 30px;
    }

    .our-project-content-section {
        padding: 0 4%;
    }

    .our-work-section {
        padding: 5% 4%;
    }

    .our-work-section .main-box h2 {
        margin-bottom: 30px;
    }

    .our-work-section .our-work-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .rd-right {
        width: 100%;
    }

    .sec-down-div p {
        font-size: 16px;
        width: 100%;
    }

    .client-testimonial {
        padding: 9% 4%;
    }

    .client-testimonial .testm-card i {
        font-size: 48px;
    }

    .team-section .video-box {
        height: 221px;
        width: 367px;
    }

    .latest-news {
        padding: 9% 4%;
    }

    .rs-prev {
        right: 16%;
        top: 19%;
        left: auto;
    }

    .rs-next {
        right: 4%;
        top: 19%;
    }

    .rs-carousel {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .carousel {
        height: 100vh;
    }

    .carousal-text-box {
        left: 4%;
        width: auto;
    }

    .carousal-text-box .title-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .team-section .main-box h2 {
        margin: 0px 0px 10px 0px;
        font-size: 30px;
    }

    .why-choose-section .main-box h2 {
        margin: 0px 0px 10px 0px;
        font-size: 30px;
    }

    .team-section .video-box {
        width: auto;
    }

    .team-section .main-box {
        margin-bottom: 50px;
    }

    .why-choose-section .main-box {
        margin-bottom: 50px;
    }

    .small-heading {
        font-size: 20px;
    }

    .counter-card .left-div a {
        font-size: 14px;
    }

    .counter-card .right-div p {
        font-size: 15px;
        margin-top: 20px;
    }

    .outdoor-addvertising {
        padding: 6% 0;
        margin-top: 258px;
    }

    .out-bottom {
        margin-bottom: 0px;
    }

    .counter-main {
        grid-template-columns: 1fr;
    }

    .count-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-section .left-box .top-text span {
        width: 100px;
    }

    .about-section .left-box .vm-box {
        grid-template-columns: 1fr;
    }

    .about-section .left-box .mt-5 {
        margin-top: 2rem;
    }

    .about-section .left-box {
        padding-right: 0px;
    }

    .about-section .rightt-box {
        height: auto;
    }

    .what-we-do .headings p {
        margin-bottom: 10px;
    }

    .what-we-do .headings h2 {
        font-size: 30px;
    }

    .our-service-main {
        height: 465px;
        width: auto;
    }

    .expert-out-section {
        grid-template-columns: 1fr;
        height: 563px;
    }

    .expert-out-section .left-box {
        height: 210px;
        justify-content: center;
    }

    .expert-out-section .left-box h2 {
        font-size: 30px;
        text-align: left;
        margin-right: 0px;
    }

    .expert-out-section .right-box {
        width: 360px;
        padding: 20px;
    }

    .expert-out-section .right-box .content-box h5 {
        font-size: 20px;
        line-height: 25px;
    }

    .outdoor-addvertising .heading h2 {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .outdoor-addvertising .outdoor-add-main {
        grid-template-columns: 1fr;
    }

    .outdoor-addvertising .outdoor-add-main .left-box {
        width: auto;
        height: 250px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box {
        padding: 25px 14px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box h5 {
        margin: 0px 0px 25px 0px;
        font-size: 20px;
        line-height: 25px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box p {
        font-size: 15px;
    }

    .outdoor-addvertising .outdoor-add-main .right-box .content-box ul li {
        font-size: 14px;
    }

    .outdoor-addvertising .outdoor-add-main .left-box2 {
        width: auto;
        height: 250px;
    }

    .cta-box h2 {
        font-size: 30px;
        text-align: center;
    }

    .cta-box p {
        text-align: center;
    }

    .outdoor-advertising-section .out-first {
        grid-template-columns: 1fr;
    }

    .rd-right {
        margin-left: 0px;
    }

    .outdoor-advertising-section .out-first .left-div {
        height: 231px;
        width: 333px;
    }

    .rd-right h2 {
        margin: 20px 0px 20px 0px;
        font-size: 30px;
    }

    .down-div {
        flex-direction: column;
    }

    .outdoor-advertising-section .out-sec {
        margin-top: 60px;
        grid-template-columns: 1fr;
    }

    .our-project-content-section .main-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .our-project-content-section .main-card .left-div {
        height: 500px;
    }

    .our-project-content-section .main-card .right-div .top-div .left-div,
    .our-project-content-section .main-card .right-div .top-div .right-div1,
    .our-project-content-section .main-card .right-div .bottom-div {
        height: 320px;
    }

    .our-project-content-section .main-card .right-div .top-div {
        grid-template-columns: 1fr;
    }

    .our-project-content-section .main-card .right-div {
        grid-template-rows: auto;
    }

    .our-work-section .main-box h2 {
        font-size: 30px;
    }

    .client-testimonial .testm-card {
        height: 60px;
        width: 50px;
    }

    .client-testimonial .text-head h3 {
        font-size: 20px;
        left: 10px;
    }

    .faq-section .faq-main-box {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 0%;
        background-image: none;
        background-color: #b9d7f3;
    }

    .faq-section .faq-main-box .faq-card {
        align-items: start;
    }

    .faq-data {
        padding-left: 17px;
    }

    .faq-card .faq-data h2 {
        font-size: 30px;
    }

    .faq-container {
        margin: 30px 0px;
    }

    .faq-question {
        padding: 9px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main {
        margin-left: 0px;
        padding: 50px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main {
        padding: 50px 17px;
    }

    .faq-section .faq-main-box .faq-form-card .faq-form-card-main h2 {
        font-size: 20px;
    }

    .faq-section .faq-main-box .faq-form-card {
        padding: 0% 0;
        margin-top: 17%;
    }

    .latest-news .headings h2 {
        font-size: 30px;
    }

    .latest-news .headings p {
        margin-bottom: 10px;
    }

    .want-to-work {
        grid-template-columns: 1fr;
    }

    .want-to-work .left-div h2 {
        font-size: 30px;
    }

    .want-to-work .right-div .inner-right-div {
        left: 17%;
        margin-top: 0px;
        position: relative;
    }

    .want-to-work .right-div .inner-right-div span {
        display: none;
    }

    .contact-div {
        text-align: center;
    }

    .contact-div .ei-div {
        flex-direction: column;
    }

    .contact-div .ei-div .ps-5 {
        padding-left: 0 !important;
    }

    .want-to-work .right-div {
        background-color: #151414;
    }

    footer .main-footer {
        grid-template-columns: 1fr;
    }

    .experience-section .headings h2 {
        font-size: 30px;
        line-height: 0.7;
    }

}

@media (max-width: 320px) {
    .expert-out-section .right-box {
        width: 320px;
    }

    .expert-out-section .right-box .content-box h5 {
        font-size: 18px;
    }

    .outdoor-advertising-section .out-first .left-div {
        height: 231px;
        width: 295px;
    }

    .outdoor-addvertising {
        padding: 6% 0;
        margin-top: 310px;
    }
}

/* ------------- Other Page Banner ----------- */
.banner-area {
    padding: 180px 0;
    height: 400px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner-area img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(38 20 66 / 61%);
    z-index: 1;
}

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

.banner-area .banner-title {
    color: #fff;
    font-size: 36px;
    line-height: 48px;
    font-weight: 800;
    word-break: break-word;
}

.banner-area .breadcrumb {
    text-align: center;
    background: none;
    display: inline-block;
    color: #fff;
    padding: 0;
}

.banner-area .breadcrumb li {
    display: inline-block;
    color: #fff;
    margin: 0 12px;
    font-size: 14px;
}

.banner-area .breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.banner-area .breadcrumb li a:hover {
    color: #ec1c24;
}

.banner-area .breadcrumb i {
    font-size: 12px;
}

/* -------- Important Don't mess with this ------------- */
.three-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.two-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.one-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;   /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}