/**********
#32a6e1
#f11126
**********/
:root {
    --primary: #32a6e1;
    --light: #F8F8F8;
    --dark: #252525;
}

body {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1220px;
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
    line-height: 1.4;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #32a6e1;
    color: #fff !important;
    border-radius: 50%;
    font-size: 20px;
    right: 30px;
    bottom: 30px;
    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;
}

.spinner-border {
    width: 7rem;
    height: 7rem;
    border-width: 2px;
}


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

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    border-radius: 15px;
    padding: 10px 30px;
    font-weight: 700;
}

.btn.btn-sm {
    padding: 8px 22px;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-primary:active,
.btn.btn-secondary:active,
.btn.btn-primary:focus,
.btn.btn-secondary:focus {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

.btn.btn-primary.hover-2:hover,
.btn.btn-secondary.hover-2:hover {
    background-color: #fff;
    color: #222;
    border-color: #fff;
}

.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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.section-space {
    padding: 85px 0;
}


/*** Navbar ***/
.navbar.navbar-light {
    padding: 15px 0;
}

.navbar.navbar-light.sticky-top {
    padding: 10px 0;
    background-color: #fff;
    top: 0;
    transition: .5s;
}

.header-logo {
    max-width: 160px;
}

.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: 10px 0;
    color: var(--dark);
    font-weight: 700;
    outline: none;
}

.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;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@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 p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

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

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


/*** Section Title ***/
.section-title h5 {
    color: #32a6e1;
    font-family: 'Figtree', sans-serif;
    font-weight: 800 !important;
}

.section-title h2 {
    font-size: 2.5rem;
}

.bg-theme {
    background-color: #eaf8ff;
}

.intro-section {
    background-image: url(../img/resources/main-banner-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.start-section {
    background-image: url(../img/resources/wave-curve.svg);
    background-size: 45% auto;
    background-repeat: no-repeat;
    background-position: top left;
    position: relative;
    z-index: 0;
}

.start-section .inner-cover {
    padding: 130px 0 70px;
}

.start-section h1 {}

.intro-section.no-overlay:before {
    visibility: hidden;
}

.intro-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    z-index: -1;
    opacity: 0.6;
}


/*** Facts ***/
.fact-item {
    margin-top: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);
}

.fact-item h5 {
    font-size: 1.15rem;
}

.fact-item .fact-icon {
    width: 92px;
    height: 92px;
    margin-top: -40px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #32a6e1;
    border-radius: 50%;
    transition: .5s;
    padding: 15px;
    border: 8px solid #252525;
}

.fact-item .fact-icon img {
    max-width: 100%;
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

/**************************************
Pricing Section
**************************************/
.pricing-box {
    background: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border-bottom: 1px solid #e1e1e1;
}

.pricing-top img {
    margin-right: 15px;
}

.pricing-head {
    margin-bottom: 0;
    padding: 12px 10px 8px;
    color: #fff;
    font-weight: 700 !important;
}

.pricing-top .anual-price {
    display: none;
}

.pricing-top .h1 {
    color: #32a6e1;
    font-size: 2rem;
    margin-bottom: 0;
}

.pricing-inner {
    padding: 25px;
}

.pricing-box li.list-group-item {
    border: 0;
    padding: 5px 15px;
}

.toggle-section {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #010101;
    margin-bottom: 35px;
}

.toggle-section #switch {
    display: none;
}

.toggle-section .switch-label {
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 30px;
    background: #00af52;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 15px;
    transition: all 0.4s ease-in-out;
}

.toggle-section .switch-label::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.4s ease-in-out;
}

.toggle-section #switch:checked + .switch-label::before {
    transition: all 0.4s ease-in-out;
    transform: translateX(30px);
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid #f11126;
    z-index: -1;
}


/*** Service ***/
.service-item {
    border-radius: 42px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    padding: 15px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);
}

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-item .service-img {
    border-radius: 35px;
}

.service-item * {
    transition: .5;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: #ffffff;
    transition: .5s;
    border: 1px solid #dfdfdf;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

.project .nav .nav-link h3 {
    font-size: 24px;
}

.product-box {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 20px 15px 15px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 180px;
    background: #32a6e1;
    transform: skewY(15deg);
    z-index: -1;
    opacity: 0.2;
}

.product-box img {
    max-width: 135px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(7px 7px 10px rgba(0,0,0,0.3));
    -webkit-filter: drop-shadow(7px 7px 10px rgba(0,0,0,0.3));
}

.product-box h5 {
    margin-top: 20px;
}

/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.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 {
    margin: 0 auto;
}

.owl-carousel .owl-stage-outer {
    padding: 0 15px;
    margin: 0 -15px;
}

.testimonial-item {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 22px;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 15px;
    border-top: 18px solid white;
    border-left: 20px solid transparent;
    border-radius: 0 0 20px;
    filter: drop-shadow(0px 1px 0px #ccc);
    -webkit-filter: drop-shadow(0px 1px 0px #ccc);
}

.testimonial-item h5 {
    font-size: 1rem;
}

.testimonial-user span {
    font-size: 0.92rem;
}

img.testimonial-img {
    max-width: 60px;
    min-width: 60px;
    margin-right: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    text-align: left;
}

.owl-nav .owl-next span,
.owl-nav .owl-prev span {
    width: 36px;
    display: block;
    height: 36px;
    line-height: 36px;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.owl-nav .owl-next span:hover,
.owl-nav .owl-prev span:hover {
    background-color: #32a6e1;
    border-color: #32a6e1;
    color: #fff;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    position: absolute;
    top: 22%;
}

.owl-nav .owl-prev {
    left: -45px;
}

.owl-nav .owl-next {
    right: -45px;
}

.owl-carousel .owl-nav {
    opacity: 0;
    transition: all ease-in-out 0.4s;
}

.owl-carousel:hover .owl-nav {
    opacity: 1;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots .owl-dot {
    width: 16px;
    height: 6px;
    border-radius: 8px;
    display: inline-block;
    background: #ccc;
    margin: 0 5px;
}

.owl-dots .owl-dot.active {
    background-color: #f11126;
}

.owl-dots .owl-dot:focus {
    outline: none;
}


.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    line-height: 60px;
    background-color: #32a6e1;
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.form-control::-webkit-input-placeholder {
    /* Edge */
    color: #cdcdcd;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cdcdcd;
}

.form-control::placeholder {
    color: #cdcdcd;
}

input.form-control {
    height: 50px;
}

.form-control {
    padding: 0.375rem 0.75rem;
    color: #777;
    border: 1px solid #d7d7d7;
    border-radius: 15px;
}

.form-control:focus {
    border-color: #32a6e1;
    box-shadow: 0 0 0 0.25rem rgb(50 166 225 / 15%);
}

.quote-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 30px;
}

.circle-social a {
    display: inline-block;
    color: #fff;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background-color: #66bb6a;
    border-radius: 50%;
}

.circle-social a + a {
    margin-left: 10px;
}

.circle-social a:hover {
    background: #66bb6a;
    color: #fff;
}

.circle-social strong {
    display: block;
    color: #c8e6c9;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 11px;
    font-family: 'Roboto', serif;
}

/***********Form Submit Elements**********/
.error-handling-messages .success-msg,
.error-handling-messages .error-msg {
    padding: 3px 15px;
    border: 1px solid;
    color: #222;
    display: none;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    border-radius: 10px;
}

.error-handling-messages .success-msg {
    background: rgb(106 189 79 / 9%);
    border-color: #6abd4f;
    color: #6abd4f;
}

.error-handling-messages .error-msg {
    background: rgb(254 1 1 / 9%);
    border-color: #fe0101;
    color: #fe0101;
}

label.error.wobble-error {
    display: block;
    width: 100%;
    margin-bottom: 0;
    color: #fe0101;
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
    bottom: -18px;
    left: 5px;
    top: initial;
    height: auto;
    padding: 0;
    transform: none !important;
    text-transform: capitalize;
    font-weight: 400;
    text-align: left;
}

.custom-control label.error.wobble-error {
    white-space: nowrap;
}

.form-loader {
    display: none;
    padding: 10px 15px;
    font-size: 18px;
    color: #32a6e1;
}

@keyframes refresh {
    0% {
        transform: rotate(0deg);
    }

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

.form-loader i {
    animation: refresh 1s linear infinite;
    display: inline-block;
}

/*** Footer ***/
.footer-logo {
    max-width: 200px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    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;
    color: var(--primary);
    margin-right: 10px;
}

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

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 20px 0;
    font-size: 15px;
    border-top: 1px solid rgb(229 229 229);
    margin-top: 40px;

}


@media only screen and (max-width: 767px) {

    h1,
    .h1 {
        font-size: 1.5rem;
    }

    h5,
    .h5 {
        font-size: 1.1rem;
    }

    .btn.btn-primary,
    .btn.btn-secondary {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .section-space {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .header-logo {
        max-width: 125px;
    }

    .start-section h1 {
        font-size: 1.6rem;
    }

    .start-section h4 {
        font-size: 1.1rem;
    }

    .pricing-top .h1 {
        font-size: 1.8rem;
    }

    input.form-control {
        height: 45px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        line-height: 48px;
        font-size: 18px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        right: 20px;
        bottom: 20px;
    }
}
