@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@300&display=swap');

/********** Template CSS **********/
:root {
    --thm-font:
        'DM Sans', sans-serif;
    --thm-fancy-font:
        'reeyregular';
    --primary: #08242a;
    --light: #F5F5F5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    /* border-top: .5px solid black; */
    /* border-bottom: .5px solid black; */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        /* border-top: 1px solid #08242a; */
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    /*height: 100px;*/
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 80%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        border-radius: 5px;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h3 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h3 {
    padding-left: 0;
}

.section-title h3::before,
.section-title h3::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 50%;
    background: var(--dark);
} 

.section-title h3::before {
    left: 0;
}

.section-title h3::after {
    right: 0;
}

.section-title.text-start h3::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    /*background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../../assets/img/footer.jpg) center center no-repeat;*/
    background: url(../../assets/img/footer.jpg) center center no-repeat;
    background-size: cover;
    font-size: 13px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 12px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

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



.logo {
    height: 115px !important;
    /* padding: 10px; */
}

/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.speciality-parent {
    display:flex;
    justify-content:space-between;
    flex-wrap: wrap;
}
.speciality {
    padding: 15px;
    margin: 10px;
    border: 2px solid #08242a;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    height: 100%;
}

.speciality img{
    width:30%;
}

.speciality span{
    font-family: "Roboto",sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .speciality {
        padding: 10px;
        margin: 10px;
        border: 2px solid #ffffff;
        border-radius: 10px;
        width: 100%;
        text-align: center;
        height: 100%;
    }
    .speciality-parent {
        justify-content: center;
    }

    .speciality span{
        font-size: 14px;
    }
    .section-title h1 {
        font-size: 22px;
    }
}

.texture {
    background: url(../../assets/img/design2.png);
    /*background-color: #8c98a9!important;*/
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.unique_style{
    font-family: "Roboto",sans-serif !important;
    color: #55b848 !important;
}

.aboutsec{
    margin-bottom: 80px;
}

@media (min-width: 1200px) {
    .about-block--columns .about-block__inner {
        display: flex;
    }
    .about-block--columns .about-block__header {
        max-width: 220px;
        margin-right: 64px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

.about-block__inner {
    position: relative;
    padding-top: 90px;
}

.about-block__inner::before {
    content: attr(data-number);
    position: absolute;
    /*top: 0;*/
    top: 60px;
    left: 15px;
    font-family: "Gilroy", "Arial", sans-serif;
    /*font-size: 72px;*/
    font-size: 125px;
    line-height: 1;
    color: #ececec;
    font-weight: 700;
}

@media (min-width: 1560px) {
    .about-block__inner {
        min-height:300px;
        padding-top: 0;
    }
    .about-block__inner::before {
        font-size: 300px;
        top: 50px;
        left: -23.95vw;
    }

    .category_top_wrap .about-block__inner::before{
        top: -80px;
    }
}

.about-block__header {
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .about-block__header {
        margin-bottom: 50px;
    }
}

.about-block__heading {
    position: relative;
    margin: 0;
}

@media (min-width: 768px) {
    .about-block__heading {
        font-size: 46px;
    }
}

.about-block__heading::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 14px;
    width: 45px;
    border-top: solid 5px #55b848;
    transform: translateX(-100%);
} 

@media (max-width: 768px) {
    .about-block__heading::before {
        left: -15px;
        top: 14px;
        width: 45px;
        border-top: solid 5px #55b848;
        transform: translateX(-100%);
    }
    .about-block__inner::before {
        /* top: 0; */
        top: 65px;
        left: 50px;
        /* font-size: 72px; */
        font-size: 80px;
        line-height: 1;
        font-weight: 700;
    }
    .about-block__heading {
        left: 40px;
    } 
    .aboutsec {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .about-block__heading::before {
        left: -15px;
        top: 14px;
        width: 45px;
        border-top: solid 5px #55b848;
        transform: translateX(-100%);
    }
}

@media (min-width: 1200px) {
    .about-block__heading::before {
        left: -36px;
        top: 20px;
        width: 45px;
        border-top: solid 5px #55b848;
        transform: translateX(-100%);
    }
}

.about-block__text {
    /* margin-bottom: 40px; */
    font-size: 18px;
    line-height: 30px;
    color: #313131;
}

@media (min-width: 992px) {
    .about-block__text {
        /* margin-bottom: 80px; */
        font-size: 16px;
    }
}

.about-block__text p {
    margin: 0;
}

.about-block__text p + p {
    margin-top: 30px;
}

.about-block__quote {
    position: relative;
    margin: 0;
    padding: 0 0 0 64px;
}

.about-block__quote::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 42px;
    height: 32px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 83 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.6.2c6.267 0 11 2.267 14.2 6.8 3.333 4.4 5 9.667 5 15.8 0 8.267-2.467 15.933-7.4 23-4.8 7.067-10.867 12.333-18.2 15.8L.4 52.2c5.333-2.133 10-5.067 14-8.8 4-3.867 6.733-7.867 8.2-12l-1-.6c-.667.533-1.467.933-2.4 1.2-.933.267-2.267.4-4 .4-3.067 0-6.2-1.2-9.4-3.6-3.067-2.533-4.6-6.333-4.6-11.4 0-5.333 1.733-9.533 5.2-12.6S13.933.2 18.6.2zm44.8 0c6.267 0 11 2.267 14.2 6.8 3.333 4.4 5 9.667 5 15.8 0 8.267-2.467 15.933-7.4 23-4.8 7.067-10.867 12.333-18.2 15.8l-11.8-9.4c5.333-2.133 10-5.067 14-8.8 4-3.867 6.733-7.867 8.2-12l-1-.6c-.667.533-1.467.933-2.4 1.2-.933.267-2.267.4-4 .4-3.067 0-6.2-1.2-9.4-3.6-3.067-2.533-4.6-6.333-4.6-11.4 0-5.333 1.733-9.533 5.2-12.6S58.733.2 63.4.2z' fill='%23ed1c24'/%3e%3c/svg%3e");
}

@media (min-width: 1200px) {
    .about-block__quote {
        padding-left: 0;
    }
    .about-block__quote::before {
        left: -80px;
    }
}

.about-block__team {
    margin-top: -30px;
    padding-top: 0;
}

.custom-flex{
    display: flex !important;
    flex-direction: column;
}

.topdetails {
    border-bottom: 1px solid black;
}

.fancytext {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    color: #2f8b00 !important;
    line-height: 50px;
    font-weight: 400;
    font-family: var(--thm-fancy-font) !important;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
    z-index: 2;
} 


@media (max-width:767px){
    .hidden-xs{display:none!important}
    .font60 {
        font-size: 50px !important;
    }
    .font80 {
        font-size: 70px !important;
    }
}
@media (min-width:768px) and (max-width:991px){
    .hidden-sm{display:none!important}
    .font60 {
        font-size: 60px !important;
    }
    .font80 {
        font-size: 70px !important;
    }

}
@media (min-width:992px) and (max-width:1199px){
    .hidden-md{display:none!important}
    .font60 {
        font-size: 60px !important;
    }
    .font80 {
        font-size: 70px !important;
    }
}
@media (min-width:1200px) {
    .hidden-lg{display:none!important}
    .font60 {
        font-size: 50px !important;
    }
    .font80 {
        font-size: 60px !important;
    }
}

.fancy-ol {
    padding: 0;
    margin: 0;
    max-width: 200px;
    position: relative;
    font-weight: 600;
}

.fancy-ol::before {
    content: '';
    width: 0.5rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 8%;
    background: #6ead4f;
    /* z-index: -1; */
}

.fancy-ol li {
    padding: 5px 30px 5px;
    border-radius: 1.5rem;
    background: #6ead4f;
    list-style-type: none;
    color: #fff;
}

.fancy-ol li + li {
    margin-top: 1rem;
}  

.flwdth {
    width: 100%;
}




.customwigtab {
    padding: 10px 0 40px 0;
}

.customwigtab .nav-tabs {
    border-bottom: 0px solid #dee2e6;
}

.customwigtab  .nav-tabs .nav-link {
    color: #000;
    border: none;
    padding: 0 0;
    border-bottom: 2px solid #0000;
    background: transparent;
}

.customwigtab .nav-tabs .nav-link.active {
    border: none !important;
    border-bottom: 2px solid #fdc900 !important;
    font-weight: 500 !important;
}

.customwigtab .nav-tabs .nav-item {
    margin: auto 40px auto 0;
}



.tab-content .tab-pane .headingtitles {
    color: #fdc900;
    border: none;
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px;
}


.categories .card .card-header button.btn.btn-link {
    font-size: 28px;
    color: #000;
}

.categories .card .card-header button.btn.btn-link i {
    font-size: 13px;
}

.categories .card .card-header button.btn.btn-link.collapsed {
    color: #000;
}


.tab-pane .keyftr ul li {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 14px;
}

.keyftr ul {
    list-style-type: none;
    padding: 0;
}

.keyftr ul li {
    width: 100%;
    float: left;
    margin-bottom: 14px; 
}  

.keyftr ul li p {
    margin: auto 8px;
    font-weight: 600;
}

.keyftr ul li span img {width: 100%;}

.keyftr ul li span {
    width: 45px;
    margin: auto 5px;
}

.keyftr ul li .featnames {
    width: auto;
    font-weight: 600;
} 

.customtab .nav-tabs .nav-link.active {
    border: #e6e5e3 !important;
    border-bottom: 4px solid #2f8b00 !important;
    font-weight: bold !important;
}

.nav-tabs .nav-link:hover{
    border-color: transparent !important;
    isolation: unset !important;
    /* margin-bottom: -1px; */
    background: none;
    /* border: 0px solid transparent !important; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.nav-link:hover, .nav-link:focus {
    color: #000 !important;
}


.accordion-header, .customtab {
    background-color: #f5f5f5;
} 

