/* ==============================
   Google Fonts
================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

/* ==============================
   Root Variables
================================= */
:root {
    --primary: #015fc9;
    --secondary: #0dd3f1;
    --light: #f6f7fc;
    --dark: #15233c;
    --text-muted: #696e77;
}

/* ==============================
   Base
================================= */
body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    margin: 0;
}

p {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* ==============================
   Layout Container
================================= */
.container-custom {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==============================
   Back To Top
================================= */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    z-index: 99;
}

/* ==============================
   Spinner
================================= */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
}

/* ==============================
   Buttons
================================= */
.btn {
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ==============================
   Navbar
================================= */
.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .nav-link {
    margin-left: 20px;
    padding: 10px 0;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* ==============================
   Page Header
================================= */
.page-header {
    position: relative;
    height: 19rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* ==============================
   Breadcrumb
================================= */
.breadcrumb {
    justify-content: center;
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb a:hover,
.breadcrumb .active {
    color: var(--primary);
}

/* ==============================
   Typography
================================= */
.display-6 {
    font-size: 2.8rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.8rem;
}

.subtitle-2 {
    font-size: 1rem;
}

h3 {
    max-width: 1100px;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* ==============================
   Content Blocks
================================= */
.content-narrow {
    max-width: 1100px;
    margin: 0 auto;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ==============================
   Service Card
================================= */
.service-item {
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==============================
   Team Card
================================= */
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.team-item img {
    transition: transform 0.4s ease;
}

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

.team-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-item:hover .team-text {
    transform: translateY(0);
}

/* ==============================
   Appointment Section
================================= */
.appointment {
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* ==============================
   SALES LETTER LAYOUT
================================= */

.sales-wrapper {
    padding: 80px 20px;
    background: #ffffff;
}

.sales-content {
    max-width: 820px;
    margin: 0 auto;
}

.sales-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.sales-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 60px 0 25px;
}

.sales-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.sales-content ul,
.sales-content ol {
    margin: 20px 0 30px 25px;
    line-height: 1.8;
}
/*todo increase the font size to 22px*/
.sales-content .hlabi-body ul li{
    font-size: 24px !important;
}

.sales-content img {
    margin: 40px 0;
    border-radius: 10px;
}

/* Alternating Section Feel */
.sales-section-alt {
    background: #f7f9fc;
    padding: 80px 20px;
}

/* Strong CTA Block */
.sales-form {
    max-width: 700px;
    margin: 100px auto 0;
    padding: 50px;
    background: #f6f7fc;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.sales-form h4 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.sales-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Headline Block Tightening */
.page-header {
    height: 22rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Better spacing rhythm */
.break-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    margin: 50px 0;
}

/* Mobile */
@media (max-width: 768px) {

    .break-image img {
        height: 160px;
    }

    .sales-wrapper {
        padding: 50px 15px;
    }

    .sales-content h1 {
        font-size: 2rem;
    }

    .sales-content h3 {
        font-size: 1.4rem;
    }

    .sales-form {
        padding: 30px;
    }
}


/* ==============================
   Footer
================================= */
.footer {
    color: #a7a8b4;
    background: var(--dark);
}

.footer a {
    color: #a7a8b4;
    transition: 0.3s ease;
}

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

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

/* ==============================
   Responsive
================================= */
@media (max-width: 992px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .display-6 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .container-custom {
        width: 95%;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

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

@media (max-width: 576px) {
    .page-header {
        height: 14rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}



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

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

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

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

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

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

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
        url("{{ assets('img/images/contact.jpg') }}") center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)
        ),
        url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.display-6 {
    font-size: 46px;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
        url("{{ assets('img/images/contact.jpg') }}") center center no-repeat;
    background-size: cover;
}


.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: 0.5s;
}

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

.hlabi-body p {
    line-height: 2rem;
    font-size: 22px;
}
.hlabi-body h3 {
    margin: 70px 0;
    font-size: 40px !important;
    line-height: 3rem;
    letter-spacing: 4px;

}
.hlabi-body break-image img{
    max-height: 10px !important;
}



/*!*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*!*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');*/
/*!********** Template CSS **********!*/
/*:root {*/
/*    --primary: #015fc9;*/
/*    --secondary: #0dd3f1;*/
/*    --light: #f6f7fc;*/
/*    --dark: #15233c;*/
/*}*/

/*.back-to-top {*/
/*    position: fixed;*/
/*    display: none;*/
/*    right: 30px;*/
/*    bottom: 30px;*/
/*    z-index: 99;*/
/*}*/

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

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

/*!*** Button ***!*/
/*.btn {*/
/*    transition: 0.5s;*/
/*}*/

/*.btn.btn-primary,*/
/*.btn.btn-outline-primary:hover,*/
/*.btn.btn-secondary,*/
/*.btn.btn-outline-secondary:hover {*/
/*    color: #ffffff;*/
/*}*/

/*.btn.btn-primary:hover {*/
/*    background: var(--secondary);*/
/*    border-color: var(--secondary);*/
/*}*/

/*.btn.btn-secondary:hover {*/
/*    background: var(--primary);*/
/*    border-color: var(--primary);*/
/*}*/

/*.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.sticky-top {*/
/*    top: -100px;*/
/*    transition: 0.5s;*/
/*}*/

/*.navbar .navbar-brand img {*/
/*    max-height: 60px;*/
/*}*/

/*.navbar .navbar-nav .nav-link {*/
/*    margin-left: 25px;*/
/*    padding: 10px 0;*/
/*    color: #696e77;*/
/*    font-weight: 500;*/
/*    outline: none;*/
/*}*/

/*.navbar .navbar-nav .nav-link:hover,*/
/*.navbar .navbar-nav .nav-link.active {*/
/*    color: var(--primary);*/
/*}*/

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

/*@media (max-width: 991.98px) {*/
/*    .navbar .navbar-brand img {*/
/*        max-height: 45px;*/
/*    }*/

/*    .navbar .navbar-nav {*/
/*        margin-top: 20px;*/
/*        margin-bottom: 15px;*/
/*    }*/

/*    .navbar .nav-item .dropdown-menu {*/
/*        padding-left: 30px;*/
/*    }*/
/*}*/

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

/*    .navbar .nav-item:hover .dropdown-menu {*/
/*        top: 100%;*/
/*        visibility: visible;*/
/*        transition: 0.5s;*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*!*** Header ***!*/
/*.carousel-caption {*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    text-align: start;*/
/*    z-index: 1;*/
/*}*/

/*.carousel-control-prev,*/
/*.carousel-control-next {*/
/*    width: 15%;*/
/*}*/

/*.carousel-control-prev-icon,*/
/*.carousel-control-next-icon {*/
/*    width: 3rem;*/
/*    height: 3rem;*/
/*    background-color: var(--primary);*/
/*    border: 15px solid var(--primary);*/
/*    border-radius: 50px;*/
/*}*/

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

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

/*.page-header {*/
/*    background: url("{{ assets('img/images/contact.jpg') }}") center center*/
/*        no-repeat;*/
/*    background-size: cover;*/
/*}*/
/*.breadcrumb {*/
/*    justify-content: center;*/
/*    align-content: center;*/
/*}*/
/*.page-header .breadcrumb-item,*/
/*.page-header .breadcrumb-item a {*/
/*    font-weight: 500;*/
/*}*/

/*.page-header .breadcrumb-item a,*/
/*.page-header .breadcrumb-item + .breadcrumb-item::before {*/
/*    color: #696e77;*/
/*}*/

/*.page-header .breadcrumb-item a:hover,*/
/*.page-header .breadcrumb-item.active {*/
/*    color: var(--primary);*/
/*}*/
/*.js-cookie-consent {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    z-index: 2147483645;*/
/*    box-sizing: border-box;*/
/*    width: 100%;*/

/*    background-color: #f1f6f4;*/
/*}*/
/*.cookie-inner {*/
/*    max-width: 960px;*/
/*    margin: 0 auto;*/
/*    padding: 32px 0;*/
/*}*/
/*.main {*/
/*    padding: 0 30px;*/
/*    width: 95% !important;*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/
/*.main-content {*/
/*    text-align: center;*/
/*}*/

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

/*    .container.facts .facts-text {*/
/*        padding-left: calc(((100% - 960px) / 2) + 0.75rem);*/
/*    }*/

/*    .container.facts .facts-counter {*/
/*        padding-right: calc(((100% - 960px) / 2) + 0.75rem);*/
/*    }*/
/*}*/

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

/*    .container.facts .facts-counter {*/
/*        padding-right: calc(((100% - 1140px) / 2) + 0.75rem);*/
/*    }*/
/*}*/

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

/*    .container.facts .facts-counter {*/
/*        padding-right: calc(((100% - 1320px) / 2) + 0.75rem);*/
/*    }*/
/*}*/

/*.container.facts .facts-text {*/
/*    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),*/
/*        url("{{ assets('img/images/contact.jpg') }}") center right no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.container.facts .facts-counter {*/
/*    background: linear-gradient(*/
/*            rgba(255, 255, 255, 0.9),*/
/*            rgba(255, 255, 255, 0.9)*/
/*        ),*/
/*        url(../img/carousel-2.jpg) center right no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.container.facts .facts-text .h-100,*/
/*.container.facts .facts-counter .h-100 {*/
/*    padding: 6rem 0;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*}*/

/*!* ======================================================================================================================================== *!*/

/*.page-header {*/
/*    !* background: url(img/images/31.png) center center no-repeat; *!*/
/*    background-size: cover;*/
/*    height: 19rem;*/
/*    width: 100%;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.page-header .overlay-color {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.7);*/
/*    z-index: 1;*/
/*}*/

/*.page-header .main,*/
/*.page-header .breadcrumb {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    color: white;*/
/*}*/
/*.break-image {*/
/*    width: 100% !important;*/
/*    height: 600px;*/
/*    margin: 0 auto;*/
/*}*/
/*.break-image img {*/
/*    width: 100%;*/
/*    border-radius: 5px;*/
/*    !* Use margin/parent spacing instead of padding for consistent vertical rhythm *!*/
/*    padding-bottom: 0;*/
/*    display: block;*/
/*}*/

/*.breadcrumb {*/
/*    justify-content: center;*/
/*    align-content: center;*/
/*}*/
/*.display-6 {*/
/*    font-size: 46px;*/
/*}*/
/*.subtitle p {*/
/*    font-size: 36px;*/
/*}*/
/*.main {*/
/*    padding: 0 30px;*/
/*    width: 75% !important;*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/
/*.main .main-content .subtitle p {*/
/*    padding: 0 30px;*/
/*    width: 85% !important;*/
/*    font-size: 28px;*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/
/*.main .main-content .subtitle-2 p {*/
/*    padding: 0 30px;*/
/*    width: 85% !important;*/
/*    font-size: 20px;*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/
/*h3 {*/
/*    width: 100%;*/
/*    font-size: 34px;*/
/*    max-width: 1100px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*.hlabi-form {*/
/*    width: 70%;*/
/*    max-width: 1100px;*/
/*    margin: 0 auto;*/
/*}*/
/*.hlabi-body {*/
/*    width: 65%;*/
/*    max-width: 1100px;*/
/*    margin: 0 auto;*/
/*    font-size: 21px !important;*/
/*}*/

/*.hlabi-body p {*/
/*    font-size: 18px;*/
/*    line-height: 1.6;*/
/*    font-family: "Roboto";*/
/*}*/

/*@media screen and (max-width: 676px) {*/
/*    .display-6 {*/
/*        font-size: 28px;*/
/*    }*/
/*    .subtitle p {*/
/*        font-size: 18px;*/
/*    }*/
/*    .main {*/
/*        !*padding: 0 30px;*!*/
/*        width: 100% !important;*/
/*    }*/
/*    h3 {*/
/*        font-size: 16px;*/
/*        width: 100%;*/
/*    }*/
/*    #form * {*/
/*        width: 100% !important;*/
/*    }*/
/*    .hlabi-body {*/
/*        width: 100% !important;*/
/*        font-size: 16px !important;*/
/*    }*/
/*    .hlabi-body img{*/
/*        width: 100% !important;*/
/*    }*/
/*    .hlabi-form {*/
/*        width: 100%;*/
/*        margin: 0 auto;*/
/*    }*/
/*}*/

/*!* ======================================================================================================================================= *!*/

/*!*** Service ***!*/
/*.service-item {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);*/
/*}*/

/*.service-item .service-icon {*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.service-item .service-icon img {*/
/*    max-width: 60px;*/
/*    max-height: 60px;*/
/*}*/

/*.service-item a.btn {*/
/*    color: var(--primary);*/
/*}*/

/*.service-item a.btn:hover {*/
/*    color: #ffffff;*/
/*    background: var(--primary);*/
/*    border-color: var(--primary);*/
/*}*/

/*!*** Appointment ***!*/
/*.appointment {*/
/*    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),*/
/*        url("{{ assets('img/images/contact.jpg') }}") center center no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*!*** Team ***!*/
/*.team-item {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);*/
/*}*/

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

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

/*.team-text {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    bottom: -50px;*/
/*    opacity: 0;*/
/*    transition: 0.5s;*/
/*}*/

/*.team-item:hover .team-text {*/
/*    bottom: 0;*/
/*    opacity: 1;*/
/*}*/

/*.team-item a.btn {*/
/*    color: var(--primary);*/
/*}*/

/*.team-item a.btn:hover {*/
/*    color: #ffffff;*/
/*    background: var(--primary);*/
/*    border-color: var(--primary);*/
/*}*/

/*!*** Testimonial ***!*/
/*.animated.pulse {*/
/*    animation-duration: 1.5s;*/
/*}*/

/*.testimonial-left,*/
/*.testimonial-right {*/
/*    position: relative;*/
/*}*/

/*.testimonial-left img,*/
/*.testimonial-right img {*/
/*    position: absolute;*/
/*    padding: 5px;*/
/*    border: 1px dashed var(--primary);*/
/*    border-radius: 10px;*/
/*}*/

/*.testimonial-left img:nth-child(1),*/
/*.testimonial-right img:nth-child(3) {*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    top: 10%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*}*/

/*.testimonial-left img:nth-child(2),*/
/*.testimonial-right img:nth-child(2) {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    top: 50%;*/
/*    left: 10%;*/
/*    transform: translateY(-50%);*/
/*}*/

/*.testimonial-left img:nth-child(3),*/
/*.testimonial-right img:nth-child(1) {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    bottom: 10%;*/
/*    right: 10%;*/
/*}*/

/*.testimonial-carousel .owl-item img {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*}*/

/*.testimonial-carousel .owl-nav {*/
/*    margin-top: 30px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.testimonial-carousel .owl-nav .owl-prev,*/
/*.testimonial-carousel .owl-nav .owl-next {*/
/*    margin: 0 5px;*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #ffffff;*/
/*    background: var(--primary);*/
/*    border-radius: 10px;*/
/*    font-size: 22px;*/
/*    transition: 0.5s;*/
/*}*/

/*.testimonial-carousel .owl-nav .owl-prev:hover,*/
/*.testimonial-carousel .owl-nav .owl-next:hover {*/
/*    background: var(--secondary);*/
/*}*/

/*!*** Footer ***!*/
/*.footer {*/
/*    color: #a7a8b4;*/
/*}*/

/*.footer .btn.btn-link {*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*    padding: 0;*/
/*    text-align: left;*/
/*    color: #a7a8b4;*/
/*    font-weight: normal;*/
/*    text-transform: capitalize;*/
/*    transition: 0.3s;*/
/*}*/

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

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

/*.footer .btn.btn-square {*/
/*    color: #a7a8b4;*/
/*    border: 1px solid#A7A8B4;*/
/*}*/

/*.footer .btn.btn-square:hover {*/
/*    color: var(--secondary);*/
/*    border-color: var(--light);*/
/*}*/

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

/*.footer .copyright a {*/
/*    color: var(--secondary);*/
/*}*/

/*.footer .copyright a:hover {*/
/*    color: #ffffff;*/
/*}*/
