/********** Template CSS **********/

:root {
    --primary:
        #24ABE3;
    --light: #EFF5FF;
    --dark: #1B2C51;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif !important;
}

p {
    font-family: 'Quicksand', sans-serif !important;
}

.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: 45px;
    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 .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold !important;
    text-transform: uppercase;
    outline: none;
    font-family: 'DM Sans', sans-serif !important;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    /* height: 150px; */
}

@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: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 300px;
    height: 45px;
    bottom: -15px;
    left: 39%;
    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;
    border-radius: 45px;
    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: -15px;
    left: 39%;
    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;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../img/header-page.jpg) top center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item {
    transition: .5s;
}

.service-item:hover {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
    background: #5b7997;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

/* start owl carousel styles*/
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: #ffffff;
    border: none;
    font-size: 28px;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #f0f0f0;
}

/* end owl carousel styles*/



/*** 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);
    }
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
    height: 355px;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** 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 {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    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 .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: 16px;
    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(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.logo-header {
    width: 245px;
}

.nav-line {
    /* width: 1349px; */
    height: 10px;
    background-color: #24ABE3;
}

.line {
    margin-top: -14px !important;
    width: 800px;
}

.display-4 {
    font-size: 40px;
    text-align: left;
    font-weight: 100 !important;
    color:
        #24ABE3 !important;
}

.mb-3 {
    text-align: center;
    font-size: 19px;
    color: white;
}

.mb-4 {
    font-size: 14px;
    text-align: justify;
}

.bac-color {
    border: 1px solid #334B63;
    background-color: #334B63;

}



/* service bar */
.container56 {
    width: 100%;
    max-width: 1349px;
    height: 100px;
    display: flex !important;
    justify-content: space-between;
    position: relative !important;
}

.part {
    flex: 1;
    position: relative !important;
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: bold;
    line-height: 100px;
}

.part:first-child {
    background-color:
        #24ABE3;
    color: white;
}

.part:last-child {
    background-color:
        #24ABE3;
    color: white;
}

.triangle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
}

.triangle-left {
    left: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-right: 50px solid #24ABE3;
}

.triangle-right {
    right: 0;
    border-top: 50px solid #24ABE3;
    border-bottom: 50px solid #24ABE3;
    border-left: 50px solid white;
}

.triangle-right-1 {
    right: 0;
    border-top: 50px solid white;
    border-bottom: 50px solid white;
    border-left: 50px solid #24ABE3;
}

@media (max-width: 767px) {
    .container {
        flex-wrap: wrap;
    }

    .part {
        flex-basis: 100%;
    }

    .triangle {
        display: none;
    }
}


.circle {
    display: inline-block;
    background-color: black;
    border-radius: 50%;
    padding: 10px;
}

.circle h2 {
    color: white;
    margin: 0;
    padding-left: 40px;
    position: relative;
}

.circle i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

}


/* social banner */

.logo-container {
    display: flex;
    justify-content: center;
    /* Center the logos horizontally */
    align-items: center;
    /* Center the logos vertically */
    flex-wrap: wrap;
}

.logo-container .logo {
    flex-basis: calc(25% - 20px);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.logo-container .logo img {
    /* width: 100%; */
    height: auto;
    transition: transform 0.3s;
}

.logo-container .logo:hover img {
    transform: scale(1.1);
}

.logo-container .logo:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    opacity: 0;
    transition: opacity 0.3s;
}

.logo-container .logo:hover:before {
    opacity: 1;
}

.logo-container .logo .logo-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.logo-container .logo:hover .logo-caption {
    opacity: 1;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .logo-container .logo {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .logo-container .logo {
        flex-basis: 100%;
    }

    .slider-3 ul li img {
        width: 400px !important;
        height: 300px !important;
    }

    .slider-content h1 {
        font-size: 19px !important;
        text-align: center !important;
        margin-top: -60px !important;
    }

    .slider-3 {
        margin-bottom: -170px !important;
    }

    #cookiePopup {
        visibility: hidden;
    }

    #mySidenav a {
        visibility: hidden;
    }

    .buttons .wishlist {
        margin-top: 20px !important;
    }

    .buttons-1 button {
        padding: 5px 10px !important;
        margin: 0 0px !important;
    }

    #blog {
        margin-top: -280px !important;
    }

    #about {
        margin-top: -290px !important;
    }

    .buttons .buy {
        margin-top: 20px !important;
    }

    .bg-white {
        height: fit-content !important;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: white !important;
    }

    .head-rt {
        display: flex !important;

    }

    .collapse.show {
        background-color: white !important;
    }

    .hide-section {
        display: none !important;
    }

    .about-us-1 {
        display: grid !important;
    }

    .bac-image-1 {
        width: 400px !important;
        height: 300px !important;
    }

    .read-more {
        left: 20px !important;
    }

    .logo-header {
        width: 170px !important;
    }

    .display-4 {
        text-align: center !important;
        margin-top: 20px !important;
    }

    .line {
        width: 250px !important;
    }

    .about-new-image {
        margin-right: 43px !important;
    }

    .about-para {
        text-align: justify;
        color: black !important;
        font-size: 18px !important;
    }

    .para-text {
        color: white !important;
        font-size: 18px !important;
    }

    .alpha {
        font-size: 19px !important;
    }

    .header-carousel .owl-nav {
        bottom: -40px !important;
        margin-left: 40px !important;
    }

    .header-carousel .owl-dots {
        bottom: -40px !important;
        margin-left: 40px !important;
    }

    .filters ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        padding: 0;
    }

    .filters li {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .section.portfolio .filters ul li {
        padding: 10px 30px !important;
    }

    .logo-container {
        margin-top: 120px !important;
    }

    .container56 {
        display: flex;
        flex-wrap: wrap;
    }

    .logo {
        text-align: center !important;
    }

    .part {
        flex: 1 0 33.33%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .part .triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #ffffff transparent;
    }

    .part h2 {
        margin-top: 28px;
    }

    @media only screen and (max-width: 600px) {
        .part {
            flex-basis: 100%;
        }
    }

}


/* portfolio filter */

.section {
    padding: 30px 0;
    color: #333;
}

.section .top-side {
    text-align: center;
}

.section .top-side .title {
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
}

.section .top-side .title:after {
    content: "";
    display: block;
    width: 50%;
    border-bottom: 1px solid #494949;
    margin: 8px auto;
}

.section .top-side h2 {
    font-weight: 700;
}

.section.portfolio .filters {
    text-align: center;
    margin-top: -30px;
}


.section.portfolio .filters ul {
    padding: 0;
}

.section.portfolio .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 219px;
    cursor: pointer;
    position: relative;
    color: white;
    background-color:
        #24ABE3;
    margin-top: 30px;
    /* width: 197px; */
    /* font-size: 15px; */
}

.section.portfolio .filters ul li:after {
    content: "";
    display: block;
    width: calc(0% - 60px);
    position: absolute;
    height: 2px;
    /* background: #333; */
    transition: width 350ms ease-out;
}

.section.portfolio .filters ul li:hover:after {
    width: calc(100% - 60px);
    transition: width 350ms ease-out;
}

.section.portfolio .filters ul li.active:after {
    width: calc(100% - 60px);
}

.section.portfolio .filters-content {
    margin-top: 50px;
}

.section.portfolio .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}

.section.portfolio .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}

.section.portfolio .filters-content .item {
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
    border: 1px solid white;
    border-radius: 10px;
}

.section.portfolio .filters-content .item .p-inner {
    padding: 20px 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    color: white;
    /* border: 1px solid white;
  border-radius: 15px; */
}

.section.portfolio .filters-content .item .p-inner h5 {
    font-size: 15px;
    color: white;

}

.section.portfolio .filters-content .item .p-inner .cat {
    font-size: 13px;
}

.section.portfolio .filters-content .item img {
    width: 100%;
    padding: 10px;
}

.footer-detail a:hover {
    color:
        #24ABE3 !important;
}

.header-tele a:hover {
    color:
        #24ABE3 !important;
}

.para-text {
    color: white;
    font-size: 15px !important;
    text-align: center;
}

.alpha {
    font-size: 19px !important;
}

.about-para {
    color: black;
    text-align: justify;
}

.about-heading {
    font-size: 64px;
    text-align: left;
}

.breadcrumb {

    margin-bottom: 1rem;
    list-style: none;
    background-color: white !important;
    border-radius: 0.25rem;
    font-family: 'Quicksand', sans-serif !important;
    width: 280px;
    margin-top: -24px !important;

}

.breadcrumb-item {
    color: black !important;
    text-decoration: none !important;
}

/* about us */
/* .pe-3 {
  padding-right: 1rem !important;
  border: 2px solid black;
  width: 300px;
}
.ps-3 {
  padding-left: 1rem !important;
  border: 2px solid black;
  width: 300px;
} */
.heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-1 {
    flex-grow: 1;
    height: 3px;
    background-color:
        #24ABE3;
    margin-top: 1px !important;
}

.about-us {
    display: flex;
    margin: 0 10px;
    padding: 10px 10px;
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    background-color:
        #24ABE3;
    border: 1px solid #24ABE3;
    /* width: 290px; */
    border-radius: 15px;
    text-align: center !important;

}

.about-p {
    font-size: 15px;
    color: black;
    text-align: justify;
}

.small-text {
    color: black;
    font-size: 15px;
    margin-left: 80px;
}


.about-us-1 {
    display: flex;
    margin: 0 10px;
    padding: 10px 10px;
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    /* width: 290px; */
    border-radius: 15px;
    text-align: center !important;

}

.line-11 {
    flex-grow: 1;
    height: 3px;
    background-color:
        #24ABE3;
    margin-top: 1px !important;
}

.line-22 {
    flex-grow: 1;
    height: 3px;
    background-color:
        #334B63;
    margin-top: 1px !important;
}

/* image-slider */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
/* .prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
 */
/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
/* .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} */

/* .active, .dot:hover {
  background-color: #717171;
} */

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

.heading-underline {
    display: inline-block;
    position: relative;
    /* border-bottom: 3px solid 
#24ABE3; */
    border-left: none;
    border-right: none;
    border-top: none;
    display: inline-block;
    /* color: white; */
    font-size: 22px;
    margin-bottom: 10px;
}



.heading-underline::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30%;
    height: 25px;
    border-bottom: 4px solid #24ABE3;

}

.head-para {
    color: black;
    margin-top: 15px;
}

.form-control {
    border: none;
    border-radius: 0px;
}

.input-group {
    border: 1px solid grey;
    margin-top: 10px !important;
}

.search-3 {
    color: black !important;
    font-size: 17px !important;
    margin-bottom: 10px !important;
}

.list-group {
    margin-top: 10px !important;
    font-family: 'DM Sans', sans-serif !important;
}

.product-item img {
    border-radius: 10px;
}

.product-item h6 {
    text-align: center;
    color: black;
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.head {
    font-size: 16px;
    margin-top: 25px;
    text-align: left;
    text-transform: uppercase;
    color: black;
}

/* Slider */

/* .slick-slide {
margin: 0px 20px;
}

.slick-slide img {
width: 100%;
}

.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
        user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
    touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}

.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
     -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}

.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: flex;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: flex;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}  */



/* .slider {
position: relative;
width: 100%;
height: 400px;

}

.slider-container {
display: flex;
overflow: hidden;
width: 100%;
height: 100%;
}

.slide {
flex-shrink: 0;
width: 100%;
display: flex;
justify-content: space-between;
}

.slide img {
width: 30%; 
height: auto;
}

.slider-controls {
position: absolute;
width: 100%;
text-align: center;
bottom: 10px;
}

.control-btn {
background: none;
border: none;
color: black;
font-size: 24px;

}

.prev-btn {
float: left;
margin-left: 10px;
}

.next-btn {
float: right;
margin-right: 10px;
} */












.nav-link:hover {
    background-color: #494949;

}

.nav-link.active {
    background-color: #24ABE3;
}


/* search */


.search-icon {
    position: relative;

}

.search-icon i {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
}

.search-bar {
    height: 35px;
    padding: 5px 10px 5px 30px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

/* slider new */

.slider-new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
}


/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}



@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

/* why choose us */


/* .why-choose-us {
width: 1200px;
height: 280px;
margin: 0 auto; 
position: relative;
background-image: url("your-background-image.jpg");
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}

.background-image {
opacity: 0.8; 
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}

.content {
text-align: center;
color: #fff;
}

.service-boxes {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}

.service-box {
background-color: rgba(255, 255, 255, 0.7);
padding: 20px;
text-align: center;
margin: 0 10px;
}

.service-box h3 {
font-size: 18px;
}

.service-box p {
font-size: 14px;
} */
.badge-primary {
    background-color: #24ABE3;
}

.btn-primary:hover {
    background-color: #D3081C !important;
    border-color: #D3081C;
}

.read-more:hover {
    background-color: #D3081C !important;
    border-color: #D3081C;
}

.nav-link:hover {
    background-color: #24ABE3 !important;
}

.img-img {
    height: 315px;
}

.product-name {
    text-decoration: none !important;
}



/* single */
.card {
    background-color: #fff;
    padding: 14px;
    border: none
}


.demo {
    width: 100%
}

/* ul {
list-style: none outside none;
padding-left: 0;
margin-bottom: 0
}

li {
display: block;
float: left;
margin-right: 6px;
cursor: pointer
} */

img {
    display: block;
    height: auto;
    width: 100%
}

.stars i {
    color: #f6d151
}

.stars span {
    font-size: 13px
}

hr {
    color: #d4d4d4
}

.badge {
    padding: 5px !important;
    padding-bottom: 6px !important
}

.badge i {
    font-size: 10px
}

.profile-image {
    width: 35px
}

.comment-ratings i {
    font-size: 13px
}

.username {
    font-size: 12px
}

.comment-profile {
    line-height: 17px
}

.date span {
    font-size: 12px
}

.p-ratings i {
    color: #f6d151;
    font-size: 12px
}

.btn-long {
    padding-left: 35px;
    padding-right: 35px
}

.buttons {
    margin-top: 15px
}

.buttons .btn {
    height: 46px
}

.buttons .cart {
    border-color: #231F1E;
    color: #231F1E;
    font-family: 'Quicksand', sans-serif !important;
}

.buttons .cart:hover {
    background-color: #D3081C !important;
    border-color: #D3081C;
    color: #fff;
    font-family: 'Quicksand', sans-serif !important;
}

.buttons .buy {
    color: #fff;
    background-color: #231F1E;
    border-color: #231F1E;
    font-family: 'Quicksand', sans-serif !important;
}

.buttons .buy:focus,
.buy:active {
    color: #fff;
    background-color: #D3081C;
    border-color: #D3081C;
    box-shadow: none
}

.buttons .buy:hover {
    color: #fff;
    background-color: #D3081C;
    border-color: #D3081C;
    font-family: 'Quicksand', sans-serif !important;
}

.buttons .wishlist {
    background-color: #fff;
    border-color: #231F1E
}

.buttons .wishlist:hover {
    background-color: #D3081C;
    border-color: #D3081C;
    color: #fff
}

.buttons .wishlist:hover i {
    color: #fff
}

.buttons .wishlist i {
    color: #24ABE3
}

.comment-ratings i {
    color: #f6d151
}

.followers {
    font-size: 9px;
    color: #d6d4d4
}

.store-image {
    width: 42px
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px
}

.bullet-text {
    font-size: 12px
}

.my-color {
    margin-top: 10px;
    margin-bottom: 10px
}

label.radio {
    cursor: pointer
}

label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none
}

label.radio span {
    border: 2px solid #8f37aa;
    display: inline-block;
    color: #8f37aa;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-transform: uppercase;
    transition: 0.5s all
}

label.radio .red {
    background-color: red;
    border-color: red
}

label.radio .blue {
    background-color: blue;
    border-color: blue
}

label.radio .green {
    background-color: green;
    border-color: green
}

label.radio .orange {
    background-color: orange;
    border-color: orange
}

label.radio input:checked+span {
    color: #fff;
    position: relative
}

label.radio input:checked+span::before {
    opacity: 1;
    content: '\2713';
    position: absolute;
    font-size: 13px;
    font-weight: bold;
    left: 4px
}

.card-body {
    padding: 0.3rem 0.3rem 0.2rem
}

.ml-1 {
    color: #231F1E;
    text-align: left;
    font-size: 15px;
}

.font-weight-bold {
    color: black;
    text-align: left;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 16px;

}

.about {
    text-align: left;
}

.buttons {
    align-items: flex-start;
    justify-content: flex-start;
}

.mt-2 {
    text-align: left;
}

.p-detail {
    font-size: 15px;
    color: black;
}







/* pro-single */
.product-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;

}

.buttons-1 {
    margin-bottom: 20px;

}

.buttons-1 button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 10px;
    cursor: pointer;
    color: white;
}

.buttons-1 button:hover {
    background-color: #D3081C;
    color: white;
    border-color: #D3081C;
}


.content div {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.back-to-top {
    background-color: #24ABE3;
    border-color: #24ABE3;
}

.human {
    color: white !important;
}



/* side-navi */

#mySidenav a {
    position: absolute;
    right: 0px;
    transition: 0.3s;
    padding: 15px;
    width: 170px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    border-radius: 5px 0px 0px 5px;
    z-index: 1000;
}

#mySidenav a:hover {
    right: 10px;
}

#about {

    background-color: #24ABE3;
    top: 666px !important;
}

#blog {

    background-color: #24ABE3;
    top: 610px !important;
}

/* founder */

/* Styles for the founder message section */
.founder-message {

    background-color: black;
    background-size: cover;
    background-position: center;
}

/* Styles for the black overlay */


/* Styles for the container */
.container-12 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    height: 100%;
    padding: 130px;
    color: #fff;
    text-align: left;

}

/* Styles for the heading */
.container-12 h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

/* Styles for the paragraphs */
.container-12 p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
}









/* home page slider */



.slider-3 {
    position: relative;
    overflow: hidden;
    /* margin: 20px auto 0 auto; */
    /* border-radius: 4px; */
    width: 100%;
    max-width: 100%;
    height: 466px !important;
}

.slider-3 ul {
    position: relative;
    margin: 0;
    padding: 0;
    height: 300px;
    list-style: none;
    width: 100%;
}

.slider-3 ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    /* width: 100%; */
    height: 300px;
    text-align: center;
}

.slider-3 ul li img {
    width: 100%;
    height: auto;
}

.slider-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-content h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.slider-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.slider-content a {
    display: inline-block;
    padding: 10px 20px;
    background: #2a2a2a;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
}

a.control_prev,
a.control_next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 2% 1%;
    width: 40px;
    /* height: 40px; */
    background: #414040;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
}

a.control_prev:hover,
a.control_next:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}

a.control_prev {
    border-radius: 0 2px 2px 0;
}

a.control_next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

.slider_option {
    position: relative;
    margin: 10px auto;
    width: 160px;
    font-size: 18px;
}

.button-new {
    background-color: #24ABE3 !important;
    border-color: #24ABE3 !important;
    color: white !important;
}

.button-new:hover {
    background-color: #D3081C !important;
    border-color: #D3081C !important;
    color: white !important;
}

/* popup news */

.fixed-cookie {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
}

#cookiePopup {
    z-index: 15;
    background-color: #ffffff;
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    font-size: 14px;
    width: 20vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    font-family: Montserrat;
    text-align: justify;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
    z-index: 20;
    border: 2px solid #24ABE3;
}

#cookiePopup img {
    display: block;
    width: 220px;
    transform: translateZ(0);
    position: relative;
    margin: auto;
}

#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
    color: black !important;
}

#cookiePopup button {
    background-color: black;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 10px;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
}

#cookiePopup button:hover {
    background-color: #D3081C;
    border-color: #D3081C;
    color: white;
}

#cookiePopup a {
    color: black;
    text-decoration: none;

}

.hide {
    visibility: hidden;
    bottom: 0;
    left: 2em;
}

.show {
    visibility: visible;
    bottom: 2em;
    left: 2em;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: #ffffff;
    border: none;
    font-size: 28px;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #f0f0f0;
}


/* @media only screen and (max-width: 37.5em) {
#cookiePopup {
  width: 100%;
}
.hide {
  bottom: 2em;
  left: 0;
}
.show {
  left: 0;
  bottom: 0;
}
} */


@media only screen and (max-width: 991px) {
    #cookiePopup {
        width: 40vw;
    }
}



@media only screen and (max-width: 991px) and (orientation: landscape) {
    #cookiePopup {
        width: 70vw;
        display: table;
    }

    div#cookiePopup img {
        width: 30%;
        margin: 0;
        /* float: left; */
        display: inline-block;
    }

    div#cookiePopup p {
        width: 70%;
        display: inline-block;
    }


    #cookiePopup button.remove-button {
        position: absolute;
        top: -100%;
        left: calc(100% - 20px);
        height: 40px;
        width: 40px;
    }

}





@media only screen and (max-width: 767px) {
    #cookiePopup {
        width: 70vw;
        display: table;
    }

    div#cookiePopup img {
        width: 30%;
        margin: 0;
        /* float: left; */
        display: inline-block;
    }

    div#cookiePopup p {
        width: 70%;
        display: inline-block;
    }


    #cookiePopup button.remove-button {
        position: absolute;
        top: -100%;
        left: calc(100% - 20px);
        height: 40px;
        width: 40px;
    }
}

/* Menubar */
.menu-bar{
    padding-top: 20px;
}

.menu-bar .logo{
    max-width: 200px;
    display: block;
}


.menu-bar .navigation{
    display: flex;
    justify-content: flex-end;
}


.menu-bar .navigation a{
    display: inline-flex;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    background: #000;
    padding: 20px 20px;
}

.menu-bar .navigation a:first-child{
    border-radius: 10px 0px 0px 0px;
    overflow: hidden;
}

.menu-bar .navigation a:last-child{
    border-radius: 0px 10px 0px 0px;
    overflow: hidden;
}


.menu-bar .navigation a:hover{
    text-decoration: none;
    background-color: #333 ;
}


.menu-bar .navigation a.active{
    background: #24ABE3 !important;
}


.menu-bar .nav-border{
    height: 10px;
    background-color: #24ABE3;
}



/* About page */

.about-p.start{
    font-size: 20px;

}


.about-p.start strong{
    font-size: 50px;
    font-weight: 700;
    line-height: 26px;
    margin-right: 3px;
}



section.our-products{
    background-color: #e3e3e3;
}


.service-item .item{
    border: 1px solid #a2b6c9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.service-item{
    box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 14%);
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.service-item:hover{

    box-shadow: 1px 8px 24px 0px rgb(0 0 0 / 30%);
}

.service-item .title{
    
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #ebebeb;
    margin: 0;
    padding: 14px 0;
    font-size: 20px;
    color: #7e7e7e;
    font-weight: 400;
    transition: 300ms all ease-in-out;
}

/* .service-item:hover .title{
    padding-bottom: 20px;
} */

.service-item .title::after{
    position: absolute;
    content: '';
    height: 3px;
    width: 0px;
    background: #24ABE3;
    left: 0;
    bottom: 0;
    transition: 500ms all ease-in-out;
}

.service-item:hover .title::after{
    width: 100%;
}


.section-title{
    margin: 0;
    padding: 15px 0px;
    font-size: 35px;
    font-weight: bold;
    border-radius: 15px;
    text-align: center !important;
    color:#334B63;
    position: relative;
}

.section-title.dark{
    color: #d8d8d8;
}

.section-title span{
    color:#24ABE3;
}


.section-title::after{
    position: absolute;
    content: '';
    width: 75px;
    height: 3px;
    background: #24ABE3;
    transform: translateX(-50%);
}


.section-title.left::after{
    left: 0;
    transform: none;
}



section.home-about{
    background-color: #2a2a2a;
  
}

section.home-about p{
    color: #adadad;
}

section.home-about .btn-primary{
    background: #8a0715;
}


section.home-news{
    background: #e3e3e3;
}





section.products{
    background: #e4e4e4;
    padding: 20px 0px;

}

section.product-contact{
    background: #ededed;
}



section.get-quote form{
    background: #ebebeb;
}


section.get-quote form label{
    color: #a2a2a2;
}