/**
* Template Name:
* Updated: Mar 10 2023 with Bootstrap v5.2.3
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #50d8af;
    text-decoration: none;
    transition: 0.5s;
}

/*a:hover,*/
/*a:active,*/
/*a:focus {*/
/*    color: #51d8af;*/
/*    outline: none;*/
/*    text-decoration: none;*/
/*}*/

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #69c8c7;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #71dfbe;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    padding: 0;
    height: 100px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    /* transition: all 0.5s; */
    z-index: 997;
    background: #69c8c7;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
    font-size: 42px;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
}

#header #logo h1 a {
    color: #0b426b;
}

#header #logo h1 a span {
    color: #50d8af;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }

    #header #logo h1 {
        font-size: 34px;
    }

    #header #logo img {
        max-height: 40px;
    }
}

.scrolled-offset {
    margin-top: 100px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ffffff;
}

.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: #69c8c7;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.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: #50d8af;
}

.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 {
    border-radius: 15%;
    padding: 2px;
    background: #8ad1d0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@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: #69c8c7;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 115px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 155px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #444;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #444;
}

.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: #50d8af;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 60vh;
    position: relative;
    background: url("../img/hero-carousel/1.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    background-size: cover;
    padding: 0;

    /* opacity: 0.18; */
}

/* Media query for devices with max-width of 768px, which is typical for mobile devices */
@media only screen and (max-width: 768px) {
    #hero {
        height: 90vh;
    }
}

#hero .hero-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero .hero-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 70px;
    font-weight: 700;
}

#hero .hero-content h2 span {
    color: #69c8c7;
}

#hero ._good {
    color: #e6a65e !important;
}

@media (max-width: 767px) {
    #hero .hero-content h2 {
        word-spacing: 9999px;
        white-space: pre-line;
        font-size: 65px;
        line-height: 60px;
    }
}

#hero .hero-content .btn-get-started,
#hero .hero-content .btn-projects {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#hero .hero-content .btn-get-started {
    background: #0b426b;
    border: 2px solid #0B426B;
}

#hero .hero-content .btn-get-started:hover {
    background: none;
    color: #0b426b;
}

#hero .hero-content .btn-projects {
    background: #50d8af;
    border: 2px solid #50d8af;
}

#hero .hero-content .btn-projects:hover {
    background: none;
    color: #50d8af;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 30px;
}

.section-header h1,h2 {
    font-size: 32px;
    color: #0b426b;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}
.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #51d8af;
    bottom: 0;
    left: 0;
}

.section-header p {
    padding: 0;
    margin: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #fafafa;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* About Section
--------------------------------*/
#about {
    padding: 60px 0 30px 0;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }

    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content h2 {
    color: #0b426b;
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#about .content h3 {
    color: #555;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #69c8c7;
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

/* Services Section
--------------------------------*/
#services {
    padding: 40px 0;
}

#services .box {
    padding: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

#services .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

#services .box .icon {
    float: left;
}

#services .box .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
}

#services .box .icon i:before {
    background: #0b426b;
    background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

#services .box h4 a {
    color: #444;
}

#services .box p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width: 767px) {
    #services .box .box {
        margin-bottom: 20px;
    }

    #services .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #services .box h4,
    #services .box p {
        margin-left: 0;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Product Details Page
--------------------------------------------------------------*/
.product-details {
    padding-top: 40px;
    padding-bottom: 0 !important;
}

.product-details .product-details-slider img {
    width: 100%;
}

.product_info_container {
    padding-top: 10px;
    padding-bottom: 20px;
    background-color: #e6f6f6;
}


.product_info_container .row h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #69C8C7;
    color: #0b426b;
}

.product_info_container .row .label {
    color: #69C8C7;
    font-weight: 800;
}

.product_info_container .row .label_info {

    font-weight: 700;
    color: #696969;
}

.product_info_container .row .info_row {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #69C8C7;
}

.product-details .product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.product-details .product-info ul li + li {
    margin-top: 10px;
}


.product-details .product-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b426b;
}

.product-details .product-description h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b426b;
    margin: 0;
}

.product-details .product-description p {
    padding: 0;
}

.product-details .countdown {
    display: inline-block;
}

.tab_container {
    padding: 10px;
}

#nav-tab .description {
    background-color: #10426B;
    color: #fff;
    font-weight: 400;
}

#nav-tab .bids {
    background-color: #69C8C7;
    color: #fff;
    font-weight: 400;
}

#nav-tab .contact {
    background-color: #E6A65E;
    color: #fff;
    font-weight: 400;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
    padding: 30px 0;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
    overflow: hidden;
}

#testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    #testimonials .testimonial-item {
        margin: 30px 10px;
    }
}

#testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #50d8af;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #69c8c7;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: #e6a65e;
    background-size: cover;
    padding: 40px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

/* Our products Section
--------------------------------*/
#products {
    background: #fff;
    padding: 30px 0 0 0;
}

#products .product {
    text-align: center;
    margin-bottom: 20px;
}

.listing_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* limit to 2 lines */
    -webkit-box-orient: vertical;
    min-height: 44px;
}

#products .product .pic {
    overflow: hidden;
    text-align: center;
}

#products .product .pic img {
    max-width: 100%;
}

#products .product .details {
    background-color: #fcfcfc;
    color: #0b426b;
    padding: 15px;
    border-radius: 0 0 3px 3px;
}

#products .product h3 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#products .product .org_name {
    font-style: italic;
    display: block;
    font-size: 15px;
}

#products .product h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #0b426b;
}

.product .countdown {
    background:linear-gradient(270deg, #69c8c7 20%, #9fe2de 50%, #69c8c7 80%);
    background-size: 200% 100%; /* Extend the background to allow for horizontal movement */
    animation: bgstrip 2s linear 0s infinite normal none running; /* Apply the animation */
    margin-top: 10px;
}

@keyframes bgstrip {
    from {
        background-position: 200% 0; /* Start the background off to the right */
    }
    to {
        background-position: 0 0; /* Move the background to the left */
    }
}


.product .countdown ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.product .countdown li {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    list-style-type: none;
    /*padding-left: 1em;*/
    /*padding-right: 1em;*/
    padding-top: 10px;
    padding-bottom: 10px;
}

.product .countdown li .count {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.buy-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 10px;
    width: 100%;
    background-color: #0b426b;
    color: #fff;
}

.buy-btn:hover {
    color: #fff;
    background: #69c8c7;
}

/* Contact Section
--------------------------------*/
#contact {
    padding: 30px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #50d8af;
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

#contact .contact-info a {
    color: #000;
}

#contact .contact-info a:hover {
    color: #50d8af;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

#contact #google-map {
    height: 290px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    #contact #google-map {
        margin-top: 20px;
    }
}

.input-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.input-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.input-form .error-message br + br {
    margin-top: 25px;
}

.input-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.input-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.input-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.input-form input,
.input-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

.input-form input::focus,
.input-form textarea::focus {
    background-color: #50d8af;
}

.regular_button {
    background: #0b426b;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}


.regular_button:hover {
    background: #2dc899;
    color: #ffffff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #10426B;
    padding: 0 0 30px 0;
    font-size: 14px;
    color: #FFFFFF;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #555;
}

#footer .credits {
    color: #FFFFFF
}

#footer .credits a {
    color: #FFFFFF;
}

/* by antu */
.custom_icon {
    font-size: 16px !important;
}

#sub_link_for_mobile {
    background-color: #e6a65e;
}

#sub_link_for_mobile a {
    color: #fff;
}

.elementor-icon {
    font-size: 269px;
}

.elementor-icon svg {
    width: 180px;
    height: 180px;
    position: relative;
    display: block;
}

#motion-effects-element {
    transform: rotateZ(23.52deg);
    transition: transform 0.2s ease-out;
    margin-bottom: 15px;
}

.st0 {
    fill: #dde2e7;
}

.st1 {
    fill: #f2f3f5;
}

.st2 {
    fill: #69c8c7;
}

.st3 {
    fill: #ffffff;
}

.st4 {
    fill: #e6a65e;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

.cta-btn:hover {
    color: #fff;
    background: #69c8c7;
    border: 3px solid #74cccb;
}

/*--------------------------------------------------------------
# Product details page image slider
--------------------------------------------------------------*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

@media (min-width: 768px) {
    .make_space_for_large_devices {
        padding-top: 100px;
        padding-bottom: 235px;
    }
}

.btn-outline-custom {

    color: #10426B;
    border-color: #10426B;
    background-color: transparent;
    box-shadow: none; /*Assuming none as this variable was not defined in your question */
    background-image: none; /* Assuming none as this variable was not defined in your question */
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-outline-custom:hover {
    color: #fff;
    background-color: #10426B;
    border-color: #10426B;
}

.btn-outline-custom:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25); /* Assuming the color you provided */
}

.btn-outline-custom:active {
    color: #fff;
    background-color: #10426B;
    border-color: #10426B;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-outline-custom:disabled {
    color: #10426B;
    background-color: transparent;
    border-color: #10426B;
}

.custom_link {
    color: #10426B;
}

.form-check-input {
    padding: 0 !important;;
}

.input-form p {
    margin: 0 !important;
    padding: 0 !important;
    font-weight: bold;
}

.input-form hr {
    margin: 4px 0px 12px 0px !important;
}

.form-check-input:checked {
    background-color: #0b426b;
    border-color: #0b426b;
}

.custom-range::-webkit-slider-thumb {
    background: #0b426b;
}

.custom-range::-moz-range-thumb {
    background: #0b426b;
}

.custom-range::-ms-thumb {
    background: #0b426b;
}

button:disabled {
    cursor: not-allowed;
}

.offcanvas-body .form-label {
    font-weight: bold;
}

.range_padding {
    padding: 15px 15px 20px 15px;
}
.loading {
    background: url(../../../images/loader.gif) no-repeat fixed 50% 50% #fff;
    display: block;
    height: 937px;
    width: 1903px;
    filter: Alpha(opacity=70);
    opacity: .7;
    z-index: 10000;
    clear: both;
    position: fixed;
    top: 0;
}

