/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --dark-grey: #333333;
    --medium-grey: #636363;
    --light-grey: #f1f1f1;
    --ash: #f4f4f4;
    --primary-color: #dd0202;
    /*--primary-color: #ff8500;*/
    /*--primary-color: #4846c1;*/
    --white: white;
    --border: 1px solid #e3e3e3;
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

body {
    font-family: inherit;
    background-color: var(--white);
    color: var(--dark-grey);
    letter-spacing: -0.4px;
}

ul {
    list-style: none;
}

p {
    color: var(--dark-grey);
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

header {
    position: fixed;
    width: 100%;
    z-index: 99;
}

.menu_container a {
    text-decoration: none;
    color: var(--dark-grey);
}

.menu_container .menu_btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
}

.menu_container .icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.menu_container .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 0;
}

.menu_container .logo span {

    color: var(--primary-color);
}

#nav-menu {
    transition: .25s ease-in-out;
}

#nav-menu a {
    color: var(--white);
}

#nav-menu.active {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    background-color: var(--white);
}

#nav-menu.active a {
    color: var(--dark-grey);
}

.menu_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 70px;
    padding: 10px 0;
}

.menu_container .menu {
    position: relative;
    /* background: var(--white); */
}

.menu_container .menu-bar li:first-child ul:nth-child(1) {
    border-right: var(--border);
}


.menu_container .menu-bar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    /*min-width: 60px;*/
    margin: 0 0.6rem;
    color: var(--dark-grey);
}

.menu_container .nav-start,
.menu_container .nav-end,
.menu_container .menu-bar,
.menu_container .right-container,
.menu_container .right-container .search {
    display: flex;
    align-items: center;
}


.menu_container ul.menu-bar {
    margin-bottom: 0;
}



.menu_container .right-container {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.menu_container #hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
}

@media (max-width: 991px) {
    .menu_container #hamburger {
        display: block;
        margin-top: 5px;
    }

    .menu_container {
        padding: 1.2rem 0;
    }

    .menu_container .menu {
        display: none;
        position: absolute;
        top: 69px;
        left: 0;
        min-height: 100vh;
        width: 100vw;
    }

    .menu_container .menu-bar li:first-child ul:nth-child(1) {
        border-right: none;
        border-bottom: var(--border);
    }

    .menu_container .dropdown {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .menu_container .menu.show,
    .menu_container .dropdown.active {
        display: block;
    }

    .menu_container .dropdown ul {
        padding-left: 0.3rem;
    }

    .menu_container .menu-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1rem;
        padding: 1rem;
    }

    .menu_container .menu-bar .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    .menu_container .menu-bar li:first-child .dropdown {
        min-width: 100%;
    }

    .menu_container .menu-bar>li:not(:last-child) {
        padding-bottom: 0.5rem;
        border-bottom: var(--border);
    }

    .nav-end i {
        color: var(--white);
    }

    #nav-menu.active .nav-end i {
        color: inherit;
    }

    .menu-bar {
        background: var(--dark-grey);
        width: 680px;
        margin: 0 auto;
        border-radius: 0 0 10px 10px;
    }

    #nav-menu.active a.nav-link {
        color: var(--white);
    }
}

@media(max-width: 767px) {
    .menu-bar {
        width: 500px;
    }
}

@media(max-width: 576px) {
    .menu-bar {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .menu_container .right-container {
        display: none;
    }
}

a.logo img {
    height: 50px;
}

img.logo_black {
    display: none;
}

#nav-menu.active img.logo_white {
    display: none;
}

#nav-menu.active img.logo_black {
    display: block;
}

/* =============== Header/Menu CSS End ================== */

.main_banner {
    min-height: 90vh;
    background: var(--bg-col);
    background-image: url('/img/slide04-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    z-index: 2;
    opacity: .75;
}

.banner_text {
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    max-width: 60%;
    height: 150px;
}

.banner_text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
}

.banner_text h1 span {
    color: var(--primary-color);
}

.banner_text p {
    color: var(--white);
    font-size: 18px;
}

button.site_btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
}

.padding_top {
    padding-top: 70px;
}

.padding_bottom {
    padding-bottom: 70px;
}

.padding_both {
    padding: 100px 0;
}

.home_about {
    display: flex;
    position: relative;
    /* padding-left: 20px; */
}

.ha_content h2 {
    font-size: 2rem;
    font-weight: 700;
}

.ha_content p {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 0 0;
}

.home_about_banner img {
    width: 100%;
}

.ha_content button {
    margin-top: 25px;
}


/* ================ Key Points ============= */

.statics-list {
    padding: 0 80px;
    position: relative;
}

.statics-list::before {
    width: 1px;
    height: 80%;
    background: var(--primary-color);
    content: "";
    position: absolute;
    top: 80px;
    left: 120px;
}

.statics-holder {
    display: flex;
    margin-bottom: 85px;
    align-items: center;
}

.statics-holder .stats-icon {
    margin-right: 20px;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    aspect-ratio: 1/1;
}

.stats-icon img {
    max-width: 40px;
    height: auto;
    filter: invert(1);
}

.statics-holder h3 {
    font-size: 18px;
    margin: 0;
}

.statics-holder h3>span {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.statics-holder:last-child {
    margin-bottom: 0;
}

/* ========================= */

.feature_section {
    position: relative;
}

.gray_bg {
    background-color: var(--light-grey);
}

.half_box {
    width: 50%;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.why_us {
    position: relative;
    padding-right: 50px;
}

.why_us .ha_title {
    top: 27px;
    left: -35px;
}

.why_us .ha_title span {
    color: var(--white);
}

.why_us .ha_content h2 {
    color: var(--white);
}

.why_us .ha_content p {
    color: var(--white);
}

.reasons {
    padding: 25px;
    background-color: var(--white);
    text-align: center;
    border-radius: 10px;
    transition: .25s ease-in-out;
    height: 100%;
}

.reasons:hover {
    border-radius: 40px;
}

.reasons img {
    width: 35px;
    margin-bottom: 10px;
}

.reasons h3 {
    font-size: 1.2rem;
    font-weight: 600;
    /* color: var(--white); */
    margin-top: 10px;
}

.reasons p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-grey) !important;
    margin-bottom: 0;
    margin-top: 5px;
}

.section_title h3 {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
}

.section_title p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

/* ============ Home Contact Form =============== */

.contact_form {
    position: relative;
}

.contact_form .half_box {
    right: 0;
    left: inherit;
}

.bg_red {
    background-color: var(--primary-color);
}

.home_contact_form input {
    width: 100%;
    margin: 10px 0;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--white);
    padding: 10px 10px 10px 0;
    color: var(--white);
}

.home_contact_form input::placeholder {
    color: var(--white);
}

.home_contact_form textarea {
    width: 100%;
    margin: 10px 0 0;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--white);
    padding: 10px 10px 10px 0;
    color: var(--white);
    min-height: 50px;
}

.home_contact_form textarea::placeholder {
    color: var(--white);
}

.home_contact_form button {
    background-color: var(--white);
    border-radius: 25px;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--dark-grey);
}

/* ================ Footer Design ============== */

.footer {
    background-color: var(--dark-grey);
    padding: 70px 0 0;
}

.footer_bio img {
    width: 200px;
    margin-bottom: 7px;
}

.footer_bio p {
    color: var(--light-grey);
}

.footer_bio h3 {
    color: var(--light-grey);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer_bio span {
    color: var(--primary-color);
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--primary-color);
    height: 2px;
    width: 50px;
}

.footer-col ul {
    padding-left: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    color: var(--light-grey);
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: var(--medium-grey);
    background-color: var(--white);
}

.credit {
    text-align: center;
    margin-top: 50px;
    background-color: #2a2a2a;
    padding: 5px 0;
    font-size: 14px;
    color: var(--medium-grey);
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

/* ================= About Us Page CSS ================ */

.page_header {
    padding: 100px 0 50px;
    min-height: inherit;
}

.page_header .banner_text {
    position: relative;
    height: inherit;
}

.page_header .banner_text h1 {
    font-size: 2.5rem;
}

/* ================= Contact Us Page CSS ================ */

.contact_info {
    display: flex;
    align-items: center;
}

.contact_icon i {
    font-size: 3.25em;
    margin-right: 10px;
    color: var(--primary-color);
}

.contact_text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.contact_text p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ==================== Product Page CSS ===================== */
.outer_red {
    display: flex;
    align-items: center;
    height: 100%;
}

.red_box {
    padding: 0 16%;
}

.product_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.white_box img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

.red_box h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.solutions .reasons {
    border: var(--border);
}

.solutions .reasons:hover {
    background-color: var(--primary-color);
}

.solutions .reasons:hover h3 {
    color: var(--white);
}

.solutions .reasons:hover p {
    color: var(--white) !important;
}

.solutions .reasons:hover img {
    filter: invert(1) !important;
}

.service_title h3 {
    font-size: 1.5rem;
    text-align: right;
    font-weight: 600;
    margin-bottom: 0;
}

.service_list ul {
    padding: 10px 0 10px 10px;
    margin: 0;
    border-left: 3px solid var(--primary-color);
    border-radius: 10px 0 0 10px;
}

.service_list ul li {
    display: inline-flex;
    padding: 7px 20px;
    background-color: var(--light-grey);
    border: var(--border);
    border-radius: 25px;
    margin: 5px;
    cursor: pointer;
    font-weight: 500;
}

.service_list ul li:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.service_block {
    margin-top: 30px;
}

.client_img {
    width: 100%;
    padding: 30px 15px;
    border-radius: 10px;
    border: var(--border);
}

.client_img img {
    height: 35px;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    max-height: 35px;

}

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    margin: 0 -10px;
}

.slick-dots li button:before {
    font-size: 12px !important;
}



/* ============== Respomsive CSS ============ */

@media(max-width: 991px) {
    .home_about_banner img {
        width: 80%;
        display: block;
        margin: 40px auto 0;
    }

    .half_box {
        width: 100%;
        height: 100%;
    }

    .statics-list {
        margin-top: 70px;
        padding: 0 50px;
        width: 400px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .statics-holder .stats-icon {
        background-color: var(--white);
    }

    .stats-icon img {
        filter: inherit;
    }

    .statics-holder h3>span {
        color: var(--white);
    }

    .statics-holder h3 {
        color: var(--white);
    }

    .half_box iframe {
        display: none;
    }

    .contact_form .why_us {
        padding-right: 0;
    }

    .statics-list::before {
        background: var(--white);
        left: 90px;
    }

    div.footer_bio {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-col {
        width: 50%;
        text-align: center;
    }

    .footer_social {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .footer-col h4::before {
        left: calc(50% - 25px);
    }

    .why_us {
        padding-right: 0;
    }

    .carousel {
        overflow: hidden !important;
    }

    .banner_text {
        position: relative;
        width: 70%;
        padding: 130px 0 100px;
        text-align: center;
        height: auto;
        max-width: 100%;
    }

    .carousel.slick-initialized.slick-slider {
        margin-bottom: 0;
    }

    .padding_both {
        padding: 80px 0;
    }

    .banner_text h1 {
        font-size: 2.5rem;
    }

    .main_banner {
        min-height: auto;
    }
}

@media(max-width: 850px) {
    .white_box {
        order: 1;
        width: 100%;
    }

    .white_box img {
        width: 690px;
        border-radius: 10px;
        display: block;
        margin: 0 auto;
    }

    .outer_red {
        width: 100%;
        order: 0;
    }

    .product_box {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: repeat(1, 1fr); */
    }

    .red_box {
        width: 690px;
        padding: 50px 0 0;
        display: block;
        margin: 0 auto;
    }
}

@media(max-width: 767px) {
    .service_title h3 {
        text-align: center;
    }

    .service_list ul {
        padding: 20px 10px 10px 10px;
        margin: 15px 0 0 0;
        border-top: 3px solid var(--primary-color);
        border-left: none;
        border-radius: 10px 10px 0 0;
        text-align: center;
    }

    .contact_info {
        margin: 15px 0;
    }

    .white_box img {
        width: 500px;
    }

    .red_box {
        width: 500px;
    }

    .banner_text {
        width: 85%;
    }
}

@media(max-width: 576px) {
    .white_box img {
        width: 100%;
        padding: 0 15px;
    }

    .red_box {
        width: 100%;
        padding: 50px 15px 0;
    }

    .banner_text {
        width: 90%;
    }
}

@media(max-width: 500px) {
    .statics-list {
        width: 100%;
    }
}


/* ============== Timeline CSS ============== */

.timeline {
    position: relative;
    width: 700px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 1em 0;
    list-style-type: none;
}

.timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 4px;
    height: 100%;
    margin-left: -3px;
    background: rgb(80, 80, 80);
    background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(30, 87, 153, 1)), color-stop(100%, rgba(125, 185, 232, 1)));
    background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
    background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
    background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
    background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);

    z-index: 5;
}

.timeline li {
    padding: 1em 0;
}

.timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.timeline .direction-l {
    position: relative;
    width: 320px;
    float: left;
    text-align: right;
}

.timeline .direction-r {
    position: relative;
    width: 320px;
    float: right;
}

.timeline .flag-wrapper {
    position: relative;
    display: inline-block;

    text-align: center;
}

.timeline .flag {
    position: relative;
    display: inline;
    background: rgb(248, 248, 248);
    padding: 6px 10px;
    border-radius: 5px;

    font-weight: 600;
    text-align: left;
}

.timeline .direction-l .flag {
    -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.timeline .direction-r .flag {
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.timeline .direction-l .flag:before,
.timeline .direction-r .flag:before {
    position: absolute;
    top: 50%;
    right: -35px;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid rgb(255, 80, 80);
    z-index: 10;
}

.timeline .direction-r .flag:before {
    left: -37px;
}

.timeline .direction-l .flag:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(248, 248, 248);
    border-width: 8px;
    pointer-events: none;
}

.timeline .direction-r .flag:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: rgb(248, 248, 248);
    border-width: 8px;
    pointer-events: none;
}

.timeline .time-wrapper {
    display: inline;

    line-height: 1em;
    font-size: 0.66666em;
    color: rgb(250, 80, 80);
    vertical-align: middle;
}

.timeline .direction-l .time-wrapper {
    float: left;
}

.timeline .direction-r .time-wrapper {
    float: right;
}

.timeline .time {
    display: inline-block;
    padding: 4px 6px;
    background: rgb(248, 248, 248);
}

.timeline .desc {
    margin: 1em 0.75em 0 0;
    font-size: 14px;
    line-height: 1.5em;
}

.timeline .direction-r .desc {
    margin: 1em 0 0 0.75em;
}

/* ================ Timeline Media Queries ================ */

@media screen and (max-width: 767px) {

    .timeline {
        width: 100%;
        padding: 4em 0 1em 0;
    }

    .timeline li {
        padding: 2em 0;
    }

    .timeline .direction-l,
    .timeline .direction-r {
        float: none;
        width: 100%;

        text-align: center;
    }

    .timeline .flag-wrapper {
        text-align: center;
    }

    .timeline .flag {
        background: rgb(255, 255, 255);
        z-index: 15;
    }

    .timeline .direction-l .flag:before,
    .timeline .direction-r .flag:before {
        position: absolute;
        top: -30px;
        left: 51%;
        content: ' ';
        display: block;
        width: 12px;
        height: 12px;
        margin-left: -9px;
        background: #fff;
        border-radius: 10px;
        border: 4px solid rgb(255, 80, 80);
        z-index: 10;
    }

    .timeline .direction-l .flag:after,
    .timeline .direction-r .flag:after {
        content: "";
        position: absolute;
        left: 49.75%;
        top: -8px;
        height: 0;
        width: 0;
        margin-left: -8px;
        border: solid transparent;
        border-bottom-color: rgb(255, 255, 255);
        border-width: 8px;
        pointer-events: none;
    }

    .timeline .time-wrapper {
        display: block;
        position: relative;
        margin: 4px 0 0 0;
        z-index: 14;
    }

    .timeline .direction-l .time-wrapper {
        float: none;
    }

    .timeline .direction-r .time-wrapper {
        float: none;
    }

    .timeline .desc {
        position: relative;
        margin: 1em 0 0 0;
        padding: 1em;
        background: rgb(245, 245, 245);
        -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.20);
        -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.20);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.20);

        z-index: 15;
    }

    .timeline .direction-l .desc,
    .timeline .direction-r .desc {
        position: relative;
        margin: 1em 1em 0 1em;
        padding: 1em;
        z-index: 15;
    }
}

/* =========== Timeline CSS End ========== */

/* =========== Card CSS ========= */

.advertisers-service-sec .service-card {
    width: 100%;
    height: 100%;
    padding: 40px 15px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
}

.advertisers-service-sec .service-card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#555555, #292929);
    position: absolute;
    left: 0%;
    top: -97%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #333333;
    margin: 15px 0 5px;
    z-index: 3;
    text-align: center;
}

.advertisers-service-sec p {
    color: #333333;
    font-size: 16px;
    line-height: 1.5em;
    z-index: 3;
    text-align: center;
    margin-bottom: 0;
}

.advertisers-service-sec .icon-wrapper {
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
    top: 0%;
}

.icon-wrapper img {
    width: 35px;
}

.advertisers-service-sec .service-card:hover h3 {
    color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
    color: #f0f0f0;
}

/* ========== Card CSS End ============ */

/* ======== Image Bg Card CSS =========== */

.newsCard {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.15;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.newsCaption {
    width: 100%;
    height: 100%;
    padding: 30px;
    -webkit-transform: translateY(calc(100% - 75px));
    transform: translateY(calc(100% - 75px));
    transition: .3s ease-in-out;
}

.news-Slide-up:hover .newsCaption {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background: #dd0202;
    background: -webkit-linear-gradient(to bottom, #000000, 70%, #dd020290);
    background: linear-gradient(to bottom, #000000, 70%, #dd020290);
}

.newsCaption-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    transition: .3s ease-in-out;
}

.newsCaption-content {
    margin-top: 50px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5em;
    transition: .3s ease-in-out;
}

.news-Slide-up:hover .newsCaption-content {
    margin-top: 15px;
}

.news-Slide-up:hover .newsCaption-title {
    margin-top: 25px;
    font-size: 1.35rem;
}

/* ========= Image BG Card CSS End ========== */

/* =========== NOC Card CSS =========== */

.nocCard {
    padding: 20px;
    border: var(--border);
    border-radius: 10px;
    height: 100%;
}

.nocCard img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top;
    border-radius: 7px;
    margin-bottom: 10px;
}

.nocAccordion h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 15px;
}

.nocAccordion ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.nocAccordion ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto 10px;
    cursor: pointer;
    padding-top: 20px;
    border-top: 1px solid #e3e3e3;
}

.nocAccordion ul.accordion-list li.active h4:after {
    transform: rotate(90deg);
}

.nocAccordion ul.accordion-list li h4 {
    font-weight: 600;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 15px 0 0;
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.nocAccordion ul.accordion-list li h4:after {
    content: "\ea50";
    font-family: boxicons !important;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}

.nocAccordion ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.nocAccordion ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-weight: 400;
    padding: 10px 0 0 0;
    cursor: pointer;
    line-height: 150%;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.answer ul {
    padding-left: 0;
}

.answer ul li {
    margin: 10px 0 0 !important;
    font-size: 15px;
    padding-top: 0 !important;
    border-top: none !important;
}

.answer ul li strong {
    font-weight: 600;
}