
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'metropolis';
    font-style: normal;
    font-display: swap;
    font-weight: 800;
    src: url(../fonts/metropolis.black.otf) format('woff2');
}

@font-face {
    font-family: 'metropolis';
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url(../fonts/metropolis.bold.otf) format('woff2');
}

@font-face {
    font-family: 'metropolis';
    font-style: normal;
    font-display: swap;
    font-weight: 600;
    src: url(../fonts/metropolis.medium.otf) format('woff2');
}

@font-face {
    font-family: 'metropolis';
    font-style: normal;
    font-display: swap;
    font-weight: 500;
    src: url(../fonts/metropolis.regular.otf) format('woff2');
}

@font-face {
    font-family: 'metropolis';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(../fonts/metropolis.regular.otf) format('woff2');
}

body {
    font-family: "metropolis", sans-serif;
    color: #272222;
}

a {
    color: #ed1d25;
    text-decoration: none;
}

    a:hover {
        color: #e80c15;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "metropolis", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ed1d25;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #ff6a40;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ed1d25;
        border-top-color: #ffe9e3;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    background: #fff;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(255, 255, 255, 0.85);
        padding: 3px 0;
        position: fixed;
        width: 100%;
        border-bottom: 1px solid #ececec;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 45px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        padding: 8px 10px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        position: relative;
        justify-content: space-between;
        padding: 0 10px;
        font-size: 16px;
        text-transform: uppercase;
        color: rgba(22, 22, 22, 0.9);
        white-space: nowrap;
        transition: 0.3s;
        letter-spacing: 0.3px;
        font-weight: 600;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }
        .book-now {
            background: #ed4344;
            color: #fff !important;
            padding: 8px 17px !important;
            margin: -10px 0;
            border-radius: 30px;
            max-width: 140px;
            text-align: center;
            display: block !important;
          }
        .book-now:hover {
            background: rgb(214, 22, 22); 
          }
          .bk-mobile {
            display: none !important;
          }
        .navbar > ul > li >  .book-now::before { 
            background-color: rgba(255, 255, 255, 0.9); 
          }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: rgba(22, 22, 22, 0.9);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: rgba(22, 22, 22, 0.9);
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 8px 3px;
        margin-left: 0px;
        border-radius: 4px;
        border: 2px solid #ffe300;
        width: 140px;
        text-align: center;
        display: block;
        color: #2b2b2b;
        background: #ffe300;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #2b2b2b;
            background: #ffd000;
            border-color: #ffd000;
        }

    .navbar .register-row {
        border: none;
        padding: 7px 10px;
        margin-left: 0px;
        border-radius: 4px;
        width: fit-content;
        text-align: center;
        display: block;
        color: #fff;
        animation: blink 1s linear infinite;
    }

@keyframes blink {
    0%, 100% {
        background-color: #000000;
    }

    50% {
        background-color: #9c9c9c;
    }
}

.navbar .register-row:hover,
.navbar .register-row:focus:hover {
    color: #ffffff;
}

.navbar > ul > li > .getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        color: #15222b;
        font-weight: 600;
    }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover,
        .navbar .dropdown ul .active:hover,
        .navbar .dropdown ul li:hover > a {
            color: #ed1d25;
        }

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 40px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 3px;
        right: 10px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 45px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 10px 0;
        border-radius: 0px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 14px;
        color: #15222b;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #ed1d25;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #ed1d25;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section Desktop
--------------------------------------------------------------*/


.banner-section {
    width: 100%;
}

.banner-img {
    width: 100%;
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}
 
#hero {
    width: 100%;
    height: 65vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
}

    #hero .carousel,
    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-item::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    #hero .carousel-item {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

        #hero .carousel-item::before {
            content: "";
            background-color: rgba(4, 12, 21, 0.2);
        }

    #hero .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 82px;
        left: 50px;
        right: 50px;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 58px;
        font-weight: 700;
        text-shadow: 1px 1px 5px #3c3c3c;
    }

    #hero p {
        animation-delay: 0.4s;
        color: #fff;
        margin-top: 10px;
    }

@media (min-width: 1200px) {
    #hero p {
        width: 50%;
    }
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

    #hero .carousel-inner .carousel-item-next,
    #hero .carousel-inner .carousel-item-prev,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        left: 0;
        transform: translate3d(0, 0, 0);
    }

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 50px;
    transition: 0.3s;
    color: rgb(255, 255, 255);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #hero .carousel-control-next-icon:hover,
    #hero .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    #hero .carousel-indicators li.active {
        opacity: 1;
        background: #ed1d25;
    }

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 15px;
}

    #hero .btn-get-started:hover {
        background: #d90d14;
    }

@media (max-width: 992px) {
    #hero {
        height: 60vh;
    }

        #hero .carousel-container {
            text-align: center;
            top: 74px;
        }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Hero Section Mobile
--------------------------------------------------------------*/
#hero-mobile {
    width: 100%;
    height: 70vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
    display: none;
}

    #hero-mobile .carousel,
    #hero-mobile .carousel-inner,
    #hero-mobile .carousel-item,
    #hero-mobile .carousel-item::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    #hero-mobile .carousel-item {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

        #hero-mobile .carousel-item::before {
            content: "";
            background-color: rgba(4, 12, 21, 0.2);
        }

    #hero-mobile .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 82px;
        left: 25px;
        right: 25px;
    }

    #hero-mobile h2 {
        color: #fff;
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    #hero-mobile p {
        animation-delay: 0.4s;
        color: #fff;
        margin-top: 10px;
    }

.download-brochure {
    font-size: 17px;
    color: #2b2b2b;
    background: #ffe300;
    display: block;
    width: 255px;
    text-align: center;
    font-weight: 600;
    padding: 11px 0px;
    line-height: 24px;
    border-radius: 25px;
}

    .download-brochure:hover {
        color: #2b2b2b;
        background: #ffd000;
    }

@media (min-width: 1200px) {
    #hero-mobile p {
        width: 50%;
    }
}

#hero-mobile .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero-mobile .carousel-inner .carousel-item,
#hero-mobile .carousel-inner .active.carousel-item-start,
#hero-mobile .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero-mobile .carousel-inner .active,
#hero-mobile .carousel-inner .carousel-item-next.carousel-item-start,
#hero-mobile .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

    #hero-mobile .carousel-inner .carousel-item-next,
    #hero-mobile .carousel-inner .carousel-item-prev,
    #hero-mobile .carousel-inner .active.carousel-item-start,
    #hero-mobile .carousel-inner .active.carousel-item-end {
        left: 0;
        transform: translate3d(0, 0, 0);
    }

#hero-mobile .carousel-control-next-icon,
#hero-mobile .carousel-control-prev-icon {
    background: none;
    font-size: 24px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
    transition: 0.3s;
    color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #hero-mobile .carousel-control-next-icon:hover,
    #hero-mobile .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }

#hero-mobile .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    #hero-mobile .carousel-indicators li.active {
        opacity: 1;
        background: #ed1d25;
    }

#hero-mobile .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 15px;
}

    #hero-mobile .btn-get-started:hover {
        background: #d90d14;
    }

@media (max-width: 992px) {
    #hero-mobile {
        height: 60vh;
    }

        #hero-mobile .carousel-container {
            text-align: center;
            top: 74px;
        }
}

@media (max-width: 768px) {
    #hero-mobile h2 {
        font-size: 33px;
        text-shadow: 1px 1px 5px #3c3c3c;
        font-weight: 700;
    }
}

@media (min-width: 1024px) {

    #hero-mobile .carousel-control-prev,
    #hero-mobile .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero-mobile {
        height: 120vh;
    }
}


@media only screen and (max-width: 768px) {
    #hero {
        display: none;
    }

    #hero-mobile {
        display: block;
    }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 45px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f0f4f8;
}

.section-title {
    padding-bottom: 40px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #5c8eb0;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: #ff8664;
            margin: 4px 10px;
        }

    .section-title .testimonial-h6 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        color: #eee;
        text-align: center;
    }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        color: #272222;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.overview .content {
    padding-right: 3%;
}

.about .count-box {
    padding: 60px 0;
    width: 100%;
}

    .about .count-box i {
        display: block;
        font-size: 48px;
        color: #a1bdd1;
        float: left;
        line-height: 0;
    }

    .about .count-box span {
        font-size: 28px;
        line-height: 25px;
        display: block;
        font-weight: 700;
        color: #365870;
        margin-left: 60px;
    }

    .about .count-box p {
        padding: 5px 0 0 0;
        margin: 0 0 0 60px;
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #2e4b5e;
    }

    .about .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #2e4b5e;
        font-size: 15px;
        transition: ease-in-out 0.3s;
    }

        .about .count-box a:hover {
            color: #477392;
        }

.about .content {
    font-size: 15px;
}

.about h1 {
    font-weight: 700;
    font-size: 27px;
    color: #272222;
    line-height: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;    
    margin-bottom: 7px;
}

.about .content h2 {
    font-size: 20px;
    font-weight: 700; 
     margin-top: 10px;
     margin-bottom: 5px;
}
.about .content p {
    font-size: 15px;
    line-height: 23px;
    color: #4a4a4a;
    margin-bottom: 12px;
}
.video-box img {
    border-radius: 10px;
  }
.bg-gray {
    background: #f5f6fa;
}
.about .content .cn-section .intro-h2 {
    font-size: 19px;
  }
.about .content .cn-section p {
   margin-bottom: 0px;
  }
.overview-location {
    height: auto;
    margin-bottom: 15px;
    max-width: 440px;
    width: 100%;
}
 
.cn-section {
    width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 10px;   
    border: 1px solid #eaeaea;
    min-height: 463px;
  } 
.pr-img {
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 4px 10px 0 rgba(0, 0, 0, 0.10);
  }
  .ab-dis {
    border-bottom: 1px solid #e9e9e9;
  }
  .ab-dis .intro-h2 {
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #272222;
    line-height: 25px;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    margin-top: 11px;
    text-transform: uppercase;
  }
  /** Start date 25/11/2024 **/
 .ab-dis p {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.3px;  
    min-height: 88px;
  } 
  /** End date 25/11/2024 **/



/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.article-h2 {
    font-weight: 700;
    font-size: 27px;
    color: #272222;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 11px;
    text-transform: uppercase;
}
.video-sec h2 {
    font-weight: 700;
    font-size: 28px;
    color: #272222;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-align: center;
}
.top-article {
    width:20%;
    padding: 0.6%;
}

.article-box {
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 7px 7px 7px 7px;
    margin-bottom: 10px;
}

    .article-box .art-wid {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 0px;
    }

        .article-box .art-wid .image-box {
            width: 100%;
        }

        .article-box .art-wid .article-content {
            width: 100%;
            background: #fff;
            padding: 5px 0px 0px 0px;
            min-height: 176px;
        }

        .article-box .art-wid .image-box .article-img {
            width: 100%;
            object-fit: contain;
        }

    .article-box a {
        color: #272222;
    }

    .article-box .art-wid .article-content .article-heding-h6 {
        font-size: 17px;
        line-height: 21px;
        margin: 4px 0px 4px 0px;
        font-weight: 600;
        color: #202020;
    }

    .article-box .art-wid .article-content .new-pare-p {
        font-size: 14px;
        color: #4a4a4a;
        margin-bottom: 0px;
        line-height: 20px;
        letter-spacing: 0.4px; 
        display: block;
    }



/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 5px;
}

    .portfolio-details .article-details-slider img,
    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .article-details-slider .swiper-pagination,
    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: -15px;
        position: relative;
    }

        .portfolio-details .article-details-slider .swiper-pagination .swiper-pagination-bullet,
        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 11px;
            height: 11px;
            background-color: rgba(43, 43, 43, 0.230);
            opacity: 1;
            border: 1px solid rgba(43, 43, 43, 0.230);
            margin-right: 2px;
        }

        .portfolio-details .article-details-slider .swiper-pagination .swiper-pagination-bullet-active,
        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: rgba(20, 20, 20, 0.842);
            border: 1px solid rgba(43, 43, 43, 0.842);
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(21, 34, 43, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

.carousel-control-prev-icon {
    background: #000000d9;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    padding: 2px 5px 2px 2px;
    text-align: center;
}

.carousel-control-next-icon {
    background: #000000d9;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    padding: 2px 2px 2px 5px;
    text-align: center;
}



/** Slider section end **/
.banner-slider {
    width: 100%
}
    /** Slider owl-carousel section start **/
    .banner-slider .owl-carousel .fa-bg {
        display: inline-block;
        text-align: center;
        line-height: 34px;
        width: 20px;
        background: rgba(0, 0, 0, 0.50);
        color: #C9C9C9;
        position: absolute;
        top: 51%;
        transform: translateY(-50%);
        z-index: 100;
        cursor: pointer;
        padding: 7px 5px;
        height: auto;
    }

    .banner-slider .owl-carousel .fa-angle-right {
        right: 0px;
        border-radius: 0px;
    }

    .banner-slider .owl-carousel .fa-angle-left {
        left: 0px;
        border-radius: 0px;
    }

    .banner-slider .carousel-wrap .owl-nav {
        display: flex;
    }
    /** .banner-slider .carousel-wrap .owl-nav {
  display: flex;
} **/
    .banner-slider .carousel-wrap .owl-dots {
        display: block;
        margin-top: -30px;
        position: relative;
    }
/** Start date 27/11/2024 **/
    .banner-slider .carousel-wrap .owl-dots {
        text-align: center;
        padding-top: 0px;
        display: block;
        margin-top: -90px;
        position: relative;
        padding-bottom: 35px;
    }
/** End date 27/11/2024 **/

/** start date 24/12/2024 **/
.top-banner-slider .carousel-wrap img {
    width: 100%;
    height: 335px;
    object-fit: cover;
  }
  .mob-bottom {
    margin-bottom: 20px;
  }
/** End date 24/12/2024 **/

    .story-slider .carousel-wrap .owl-dots { 
    display: none;
    }
        .banner-slider .carousel-wrap .owl-dots button.owl-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            background: #D0D0D0;
            margin: 0 2px;
        }

            .banner-slider .carousel-wrap .owl-dots button.owl-dot.active {
                background-color: #525252;
            }

            .banner-slider .carousel-wrap .owl-dots button.owl-dot:focus {
                outline: none;
            }
/** Slider owl-carousel section end **/

.caption-p {
    background: #141414;
    width: 100%;
    color: #f1f1f1;
    font-size: 14px;
    padding: 2px 10px;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

.banner-slider #gallery-slider .owl-dots {
    display: block;
    margin-top: -90px;
    position: relative;
    padding-bottom: 50px;
}


/** Slider section end **/



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #000000;
    padding: 0 0 15px 0;
    color: #fff;
    font-size: 13px;
}

    #footer .footer-top {
        background: #141414;
        border-bottom: 1px solid #141414;
        padding: 45px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 25px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 10px;
                font-family: "Raleway", sans-serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            line-height: 1;
            padding: 0px 0px;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 32px;
            height: 32px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #ed1d25;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #ff5e31;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 7px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #ed1d25;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #ed1d25;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #ff5e31;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 15px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }
 #footer .credits a {
            transition: 0.3s;
        }

/** start date 16/11/2024 **/        
        .short-sec {
            background: #fff; 
          }
          .short-sec .short-videos {
            max-width: 275px;
          }
          .short-sec .sv-margin-left {
            margin-left:29.5%;
          }
          .short-sec .article-h2 {
            text-align: center;
          }
          .short-videos h6 {
            text-align: center;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
            color: #202020;
          }
          @media (max-width: 1399px) {
            .short-sec .sv-margin-left {
              margin-left: 15%;
            }
          }
          @media (max-width: 1200px) {
            .short-sec .sv-margin-left {
              margin-left: 0;
            }
            .short-sec .short-videos {
              margin: 0px auto 15px auto;
            }  
          }
/** End date 16/11/2024 **/

.video-sec { 
    padding: 55px 0px 61px 0px;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 100%
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: ''
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

.article-slider {
    width: 93%;
}

.news-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  padding: 15px;
  border: 1px solid #ececec;
}
.news-img {
    width: 35%;
}
.news-con {
    width: 65%;  
    padding-left: 11px;
}

.new-heding-h6 {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 23px;
    font-weight: 700;
    margin-top: 0;
    color: #272222;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.new-pare-p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 0px;
    line-height: 19px;
    letter-spacing: 0.3px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.load-verticle-scroll {
    max-height: 550px;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
.load-verticle-scroll::-webkit-scrollbar {
    width:5px
  }
.load-verticle-scroll::-webkit-scrollbar-thumb {
    background:#eaeaea;
    width:5px;
    border-radius:0
  }

.story-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    padding: 5px;
    border: 1px solid #ececec;
}

.story-img {
    width: 100%;
}
.story-img .st-img {
    width: 100%;
}

.story-con {
    width: 100%;
}

.story-heding-h6 {
    font-size: 18px;
    margin-bottom: 2px;
    line-height: 25px;
    font-weight: 700;
    margin-top: 10px;
    color: #272222;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.story-pare-p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 0px;
    line-height: 21px;
    letter-spacing: 0.3px;
    margin-top: 7px;
    min-height: 65px;
}
.news-heding-h6 {
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 22px;
    font-weight: 700;
    margin-top: 7px;
    color: #272222;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.news-pare-p {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 0px;
    line-height: 19px;
    letter-spacing: 0.3px;
    margin-top: 1px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.owl-nav {
    display: flex;
  }
.more-content {
    display: none;
}
.read-more {
    color: #177dbb;
    font-size: 16px;
    padding: 0;
    border: none;
    background: none; 
    letter-spacing: 0.5px;
    position: absolute;
    margin: -5px 0 0 0;
  }
.read-more:hover {
    color: #ed1c24; 
  }


  .faq-tab-secion {
    width: 100%;
}

    .faq-tab-secion .faq-h6 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 9px;
        margin-top: 0px;
    }

    .faq-tab-secion .faq-detail {
        background: #fff;
        padding: 15px 15px;
        border: 1px solid #ececec;
        margin: -12px 0px 8px 0px;
        border-radius: 0 0 7px 7px;
    }

    .faq-tab-secion .tab-heading-h5 {
        font-size: 17px;
        padding: 17px 30px 17px 14px;
        cursor: pointer;
        margin: 0px 0px 7px 0px;
        border: 1px solid #ececec;
        font-weight: 600;
        line-height: 20px;
        background: #fff;
        border-radius: 8px;
    }

    .faq-tab-secion .faq-detail p {
        padding: 0;
        margin: 0px 0px 8px 0px;
        font-size: 15px;
        line-height: 22px;
        color: #4a4a4a;
        letter-spacing: 0.5px;
    }
    .faq-tab-secion .faq-detail ul {
        padding-left: 15px;
        margin: 0px;
        font-size: 15px;
        line-height: 22px;
        color: #4a4a4a;
        list-style-type: decimal;
    }
    .faq-tab-secion .faq-detail ul li { 
        margin-bottom: 10px; 
    }

    .faq-tab-secion .tab-plus-icon {
        float: right;
        width: 13px;
        height: 13px;
        margin: 3px -15px 3px 1px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

.tab-con-icon-show .tab-plus-icon {
    position: relative;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}
/** start date 21/11/2024 **/
/**
.route-map {
    padding: 15px 0px;
    background-color: rgba(223, 228, 234,1.0);
}
.route-map h2 {
    font-weight: 700;
    font-size: 25px;
    color:#ed1d25;
    line-height: 29px;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    animation: color-animation 1s infinite;
  }  
  @keyframes color-animation {
    0% {
      color: #ed1d25;
    }
    50% {
      color:#ca070e;
    }
  }
**/
.route-map-img {
    width: 96%;
    margin: 0 auto;
    display: block;
  }
.routemap-section h5 {
    font-size: 20px;
    font-weight: 700;
    color: #272222;
    margin-bottom: 5px;
  }
.routemap-section p {
    font-size: 16px;
    line-height: 27px;
    color: #4a4a4a;
    margin-bottom: 22px;
  }
  .article-h2.rm-h6 {
    margin-top: 14%;
  }
/** End date 21/11/2024 **/
 
@media (max-width: 992px) {
    .top-article {
        width: 33%;
    }
    .mob-bottom {
        margin-bottom: 15px;
      }
}

@media (max-width: 768px) {
    .top-article {
        width: 50%;
    }

    .portfolio-details {
        padding-top: 30px;
    }

    .article-slider {
        width: 100%;
        margin-bottom: 30px;
        background: #f2f2f2;
        padding-bottom: 5px;
    }

    .news-section {
        width: 100%;
        padding: 11px;
        margin-bottom: -1px;
    }

    .art-img-section .portfolio-details {
        padding-top: 2px;
    }

    .article-box .art-wid .article-content .new-pare-p {
        min-height: 220px;
    }

    .article-box {
        margin-bottom: 20px;
    }

    .classes-section .classes-box {
        padding: 1% 0.2% 1% 0.2%;
        margin: 0px 3% 3% 0px;
        width: 47%;
    } 
    .faq-tab-secion .tab-heading-h5 {
        font-size: 16px;
        padding: 15px 30px 15px 11px;
    }

/** Start date 12/11/2024 **/ 
    .cn-section { 
    margin-bottom: 20px;  
    min-height: 456px;
    }
  .pr-img {
    width: 100%;     
    margin-bottom: 5px;
  } 
  .ab-dis { 
    padding: 30px 0 16px 0px;
  }
  .mob-reverse {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    display: flex;
  }
  .ab-dis .intro-h2 {
    font-size: 18px !important;
    line-height: 23px;
    margin-top: 11px;
    margin-bottom: 5px;
  }
  .ab-dis p {
    font-size: 14px !important;
    line-height: 20px !important;
  }
/** End date 12/11/2024 **/
  .bk-desktop {display: none !important;}
  .bk-mobile {
    display: block !important;
    font-size: 14px !important;
    padding: 9px 12px !important;
    line-height: initial !important;
    position: absolute !important;
    right: 55px !important;
  }
}

@media only screen and (max-width:650px) {
    /** Start date 12/11/2024 **/
    .about .content h1 {
        font-size: 23px;
        line-height: 29px;
    }
    /** End date 12/11/2024 **/

    .about .content h2 {
        font-size: 19px;
        font-weight: 700;
    }

    .overview .content {
        margin-bottom: 0%;
    }

    section {
        padding: 35px 0;
        overflow: hidden;
    }

    .about .content p {
        font-size: 15px;
        line-height: 22px;
    }

    .section-title {
        padding-bottom: 15px;
    }

    .article-h2 {
        font-size: 25px;
    }

    .caption-p {
        font-size: 12px;
        padding: 2px 5px;
    } 
    .banner-slider #gallery-slider .owl-dots {
        margin-top: -101px;
        margin-bottom: 10px;
    } 
    .new-heding-h6 {
        font-size: 16px;
        margin-bottom: 2px;
        line-height: 21px; 
    }    
    .new-pare-p {
        font-size: 12px;  
        line-height: 18px;
        letter-spacing: 0.3px;
        -webkit-line-clamp: 2; 
    }
    .news-section {
        width: 100%;
        padding: 8px;
        margin-bottom: -1px;
      }
      .load-verticle-scroll {
        max-height: 390px; 
      }
  /** Start date 21/11/2024 **/
    .routemap-section h5 {
        font-size: 17px; 
    }
    .routemap-section p {
        font-size: 14px;
        line-height: 22px; 
        margin-bottom: 15px;
    }
    .route-map-img {
        width: 100%;      
      }
      .story-pare-p {
        font-size: 14px;
      }
      .story-heding-h6 {
        font-size: 17px;
      }
      .article-h2.rm-h6 {
        margin-top: 0%;
      }
  /** End date 21/11/2024 **/
}

@media (max-width: 510px) {
    .top-article {
        width: 100%;
    }

    #header .logo img {
        max-height: 32px;
    }

    .article-box .art-wid .article-content .new-pare-p {
        min-height: auto;
    } 
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    } 

 .classes-section .classes-box {
    padding: 1% 0.2% 1% 0.2%;
    margin: 0px 3% 3% 0px;
    width: 47%;
    height: 65px;
  }
  .classes-section .classes-box h5 {
    font-size: 17px;
    line-height: 21px;
  }
  .article-box .art-wid .article-content .article-heding-h6 {
    font-size: 19px;
    line-height: 23px; 
  } 
.banner-slider .carousel-wrap .owl-dots {
    padding-top: 0px;
    margin-top: -100px;
  }
  .banner-slider .carousel-wrap .owl-dots button.owl-dot {
              width: 7px;
              height: 7px; 
              margin: 0 1px;
          } 
  .article-box .art-wid .article-content { 
    min-height: auto;
  }
  .about .content h1,
  .article-h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
