/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/* font-family: 'Martel Sans', sans-serif; */
body {
    font-family: 'Nunito Sans', sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito Sans', sans-serif;
}

li {
    list-style: none;
}

ul {
    padding: 0;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #89CC90;
    height: 47px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
    border-bottom: solid 1px #cecece
}

#topbar.topbar-scrolled {
    top: -40px;
}


/* #topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
} 

#topbar .contact-info i {
    color: #ff8522;
    border: solid 1px #000000;
    padding: 6px;
    border-radius: 20px;
    margin-left: 15px;
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}*/

#topbar .contact-info h6 {
    color: #ffffff;
    padding: 0;
    margin: 0;
}

#topbar .social-links a {
    padding: 4px;
    display: inline-block;
    line-height: 1px;
    margin: 0px 0px 0 9px;
}

@media (max-width: 768px) {
    #topbar {
        font-size: 12px;
    }
    #topbar .contact-info i {
        padding: 5px;
        border-radius: 15px;
        margin-left: 30px;
        margin-right: 6px;
    }
}


/* #topbar .social-links a:first-child {
    border-left: 0;
  } */


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 46px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 75px;
}


/**
  * Appointment Button *
  */

.login-btn {
    margin-left: 25px !important;
    background: #329EFF !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px !important;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0px 2px 5px 2px #bbbbbb4f;
}

.signup-btn {
    margin-left: 10px !important;
    background: #ffffff !important;
    color: #329EFF !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px !important;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0px 2px 5px 2px #bbbbbb4f;
}

.login-btn:hover {
    background: #ffffff !important;
    color: #329EFF !important;
}

.signup-btn:hover {
    background: #329EFF!important;
    color: #ffffff !important;
}
.blue-heading{
    color: #329eff;
}

@media (max-width: 768px) {
    .login-btn,
    .signup-btn {
        margin: 0 7px 0 15px;
        padding: 6px 9px;
        font-size: 11px;
    }
}


/*--------------------------------------------------------------
  # 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>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    /* border-bottom: 2px solid #fff; */
    padding: 3px 16px 0px 0px;
}

.pc-nav {
    display: flex;
    justify-content: flex-end;
}


/*.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: #ff8522;
    border-color: #ff8522;
} */

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    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;
    font-weight: 500;
    text-transform: none;
    color: #131320;
    border: none;
}

.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: #ff8522;
}

.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;
}

.mobile-nav-tab {
    display: none;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
  * Mobile Navigation 
  */

.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-logo img {
    display: none;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    .mobile-logo img {
        display: block;
    }
    .mobile-nav-tab {
        display: flex;
        justify-content: space-between;
    }
    .pc-nav-tab {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #2c4964;
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #1977cc;
}

.navbar-mobile .getstarted {
    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: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100%;
    /* background: url(../img/slider.png) center;
    background-size: contain;
    background-repeat: no-repeat; */
    margin: 0 0 0;
    background-color: #eaf3fc;
    padding: 0;
}
.pet-video-section{
    background-color: #eaf3fc;
 } 
.pet-video{
    width: 100%;
    max-height: calc(100vh - 200px);
}
#hero3,#hero3-1,#hero3-2,#hero3-3{
    /* width: 100%;
    height: 90vh; */
    background-size: cover;
    background-repeat: no-repeat !important;
    margin: 7.5rem 0 0;
    background-color: #eaf3fc;
}
#hero3{
    background: url(../img/doggy_heaven_full.jpeg) center;
    background-size: cover;
}
#hero3-1{
    background: url(../img/cat-heaven-1.jpg) center;
    background-size: cover;
}
#hero3-2{
    background: url(../img/jungle.jpg) center;
    background-size: cover;
}
#hero3-3{
    background: url(../img/farmanimals.jpg) center;
    background-size: cover;
}
#carouselHeroSection .carousel-indicators li.active{
    background-color: #329eff;
}
.animate-image{
    max-width: 300px;
    margin: 0 auto;
    animation: scaleUp 3s alternate-reverse infinite;
}
@keyframes scaleUp {
    0%{
        transform: scale(0.85) rotate(-5deg);
    }
    100%{
        transform: scale(1) rotate(5deg);
    }
    /* 100%{
        transform: scale(0.9);
    } */
}

.slider-text {
    margin: 120px auto;
}

.video-sec {
    display: flex;
    justify-content: center;
    margin: 140px 0 0 0;
}

.video-sec video {
    width: 65%;
}

#hero1 {
    width: 100%;
    height: 90vh;
    background: url("../img/slider.png") top center;
    background-size: cover;
}

#hero .container,
#hero1 .container {
    position: relative;
}

#hero h1,
#hero1 h1 {
    margin: 125px 0 0 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 76px;
    /* text-transform: uppercase; */
    color: #89CC90;
}

#hero1 h1,
#hero1 p {
    width: 60%;
}

#hero p {
    font-size: 28px;
    color: #000000;
}

#hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #ff8522;
}

#hero .btn-get-started:hover {
    background: #ff8522;
}

@media (min-width: 1024px) {
    #hero,
    #hero1 {
        background-attachment: fixed;
    }
    #hero3,#hero3-1,#hero3-2,#hero3-3{
        aspect-ratio: 	1890/787;
    }
}

@media (max-width: 992px) {
    #hero,
    #hero1 {
        margin-bottom: 0;
        /* height: 55vh; */
    }
    #hero .container,
    #hero1 .container {
        padding-bottom: 10px;
        padding-top: 100px;
    }
    #hero h1,
    #hero1 h1 {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
        margin: 20px 0 0 0;
    }
    #hero p {
        text-align: center;
    }
    #hero h2,
    #hero1 h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .slider-text {
        margin: 0px auto;
    }
    .video-sec {
        margin: 0px;
    }
}

/* @media (max-height: 600px) {
    #hero,
    #hero1 {
        height: 110vh;
    }
} */


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    color: #89cc90;
}

.section-title-l h1,
.section-title-l h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    color: #89cc90 !important;
}


/* .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #ff8522;
    bottom: 0;
    left: calc(50% - 20px);
  } */

.section-title h2 span {
    background: #252525;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 2px;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: rgb(255 133 34 / 28%);
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 100px;
    }
}

.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;
    }
}


/*--------------------------------------------------------------
# These Doctors are Available Now
--------------------------------------------------------------*/

.doctors-available-main {
    display: flex;
    justify-content: space-evenly;
}

.doctors-available-main .main-doct-box {
    padding: 20px 30px;
    background-color: #ffffff;
    box-shadow: 1px 3px 5px 1px #c1c1c175;
    border-radius: 10px;
    width: 310px;
    max-width: 100%;
    /* margin: 0 0px 0px 20px; */
    margin: 0.5rem 0;
    /* background: url("../img/doct-bg.jpg") top center; */
    background-color: #cadfec;
    position: relative;
    background-size: cover;
}
.main-doct-box{
    cursor: pointer;
}

.doctors-available-main .main-doct-box .doct-text h4 {
    font-size: px;
    font-weight: 700;
}

.doctors-available-main .main-doct-box .doct-text h6 {
    background-color: #89cc90;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: 1rem;
    right: 1rem;
    white-space: nowrap;
    /* margin: 0 0 0px 150px; */
}
.ml-0.login-btn{
    margin-left: 0 !important;
}

.doctors-available-main .main-doct-box .doct-text p {
    font-size: 13px;
    font-weight: 400;
}

.doct-details img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #0003;
}

.doct-details {
    display: flex;
    justify-content: space-between;
}

.doct-reviews a {
    background: #329EFF;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    box-shadow: 0px 2px 5px 2px #bbbbbb4f;
}

.doct-reviews {
    padding: 12px 0;
}

.doct-reviews h6 {
    border-bottom: 1px solid #c1c1c1;
    margin: 8px 0 0 0;
}

.contact-btn {
    display: flex;
    justify-content: center;
}

.star-rating {
    line-height: 19px;
    font-size: 13px;
    text-align: center;
}

.contact-btn a {
    margin: 25px 10px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0px 2px 5px 2px #bbbbbb4f;
    
}
.login-btn,.signup-btn.contact-btn a {
    transition: 0.5s all ease;
}
.sign-up-login-btn{
    border: 1px solid #329EFF !important;
}
.login-btn:hover,.signup-btn:hover,.contact-btn a:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #0001;
}

#petVideoAutoPlay{
    max-height: 80vh;
}
@media (max-width: 768px) {
    #hero3,#hero3-1,#hero3-2,#hero3-3{
        margin-top: 150px;
    }
    .doctors-available-main .main-doct-box {
        width: 345px;
        max-width: 100%;
        /* margin: 0 0px 20px 20px; */
    }
    .doctors-available-main .main-doct-box .doct-text h6 {
        background-color: #89cc90;
        font-size: 11px;
        /* position: relative; */
        /* margin: -30px 0 0px 189px; */
    }
    .copyright-text {
        text-align: center;
    }
    .about-us img {
        width: 100%;
        margin: 0 0 32px 0;
    }
    .contact-btn {
        flex-direction: column;
    }
}


/*--------------------------------------------------------------
# What We Treat
--------------------------------------------------------------*/

#What-Treat .treat-point {
    margin: 45px 0 0 0;
}

#What-Treat .treat-point-main {
    padding: 20px;
}

#What-Treat .treat-point-img {
    width: 100%;
    margin-right: 1rem;
}
#What-Treat .treat-point-img img{
    height: 85px;
    width: 100%;
    object-fit: scale-down;
}

#What-Treat .treat-point-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: #329EFF;
}

#What-Treat .treat-point-text p,
.section-title-l p {
    color: #787878;
    font-size: 18px;
}

.appointment-form {
    padding: 20px 38px;
    border-top: 2px solid #1c1c1c;
    background-color: #ffffff;
    box-shadow: 1px 3px 5px 1px #c1c1c175;
    border-radius: 10px;
}

.appointment-form h3 {
    font-size: 29px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    color: #89CC90;
}

.appointment-form-btn {
    display: flex;
    justify-content: center;
}
.login-btn.scrollto.text-yellow{
    color: #e7ed20 !important;
}

/*--------------------------------------------------------------
# Put Reviews From Pet Owners
--------------------------------------------------------------*/

.carousel {
    /* width: 320px; */
    margin: 0 auto;
    /* padding-bottom: 20px; */
    max-width: 100%;
}
.testimonials.carousel .carousel-item {
    color: #999;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 240px;
}

.testimonials.carousel .carousel-item a {
    color: #329eff;
    font-size: 14px;
}

.carousel .img-box {
    width: 145px;
    height: 145px;
    margin: 0 auto;
    border-radius: 50%;
}

.carousel .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.carousel .testimonial {
    padding: 20px 0 10px;
    position: relative;
    text-shadow: none;
}
.carousel .testimonial::before,.carousel .testimonial::after{
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    opacity: 0.2;
}
.carousel .testimonial::before{
    content: '\201C';
    left: 0;
    top: 0;
}
.carousel .testimonial::after{
    content: '\201D';
    right: 0;
    bottom: -2rem;
}

.carousel .overview {
    text-align: center;
    padding-bottom: 40px;
}

.carousel .overview b {
    color: #333;
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
}

.carousel .star-rating i {
    font-size: 18px;
    color: #88cb90;
}

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #999;
    text-shadow: none;
    top: 4px;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 20px;
    margin-right: 2px;
}

.carousel-control-prev {
    left: auto;
    right: 40px;
}

.carousel-control-next i {
    margin-right: -2px;
}

.carousel .carousel-indicators {
    bottom: 15px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 8px;
    height: 8px;
    margin: 1px 5px;
    border-radius: 50%;
}

.carousel-indicators li {
    background: #e2e2e2;
    border: none;
    cursor: pointer;
}

.carousel-indicators li.active {
    background: #888;
}

@media (max-width: 992px) {
    .appointment-form .contact-text {
        margin: 35px 0 0 0px;
    }
    .pet-video-sec{
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .appointment-form .contact-text {
        margin: 35px 0 0 0px;
    }
}



/*--------------------------------------------------------------
# Trading Platform
--------------------------------------------------------------*/

.trading-platform .platform-sec::after {
    content: '';
    position: absolute;
    top: 1105px;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 55%;
    background: #f7f7f7;
    z-index: -1;
    border-radius: 30px 0px 0 30px;
}

.trading-platform .platform-sec .platform {
    padding: 30px;
}

.trading-platform .platform-sec .platform h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff8522;
}

.trading-platform .platform-sec .platform h3 span {
    color: #000000;
}

.trading-platform .platform-sec .platform ul li {
    line-height: 35px;
}

.trading-platform .platform-sec .platform-img {
    width: 100%;
    height: fit-content;
    margin: 50px 0 0 0;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 22px;
    }
    .trading-platform .platform-sec .platform {
        padding: 30px 0 0 0;
    }
    .trading-platform .platform-sec .platform ul li {
        line-height: 30px;
        font-size: 12px;
        font-weight: 500;
    }
    .trading-platform .platform-sec .platform h3 {
        font-size: 22px;
    }
    .trading-platform .platform-sec::after {
        display: none;
    }
    .trading-platform .platform-sec .platform-img {
        margin: 10px 0 0 0;
    }
}


/*--------------------------------------------------------------
# Start Trading Now
--------------------------------------------------------------*/

.start-trading-now {
    text-align: center;
}

.start-trading-now .trading-box {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgb(125 125 125 / 10%);
    border-top: solid 4px #00bff3;
}

.tstart-trading-now.col-lg-3:nth-child(2) .trading-box {
    border-top: solid 4px #c4df9b;
}

.start-trading-now .col-lg-3:nth-child(3) .trading-box {
    border-top: solid 4px #f5989d;
}

.start-trading-now .trading-box h6 {
    font-size: 14px;
    color: #7d7d7d;
    font-weight: 400;
    padding: 35px 35px;
    margin: 0;
}

.start-trading-now .trading-box h2 {
    background-color: #eeeeee;
    padding: 25px 0;
    font-weight: 700;
}

.start-trading-now .trading-box h2 span {
    font-size: 14px;
    font-weight: 400;
}

.start-trading-now .trading-box ul {
    padding: 20px 0;
}

.start-trading-now .trading-box ul li {
    line-height: 28px;
    font-size: 14px;
    font-weight: 500;
}

.start-trading-now .trading-box a {
    margin: 0 0 35px 0;
}

@media (max-width: 768px) {
    .start-trading-now .trading-box {
        margin: 20px 0;
    }
    .border-on-desktop::before{
        display: none;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #444444;
    font-size: 14px;
    background: #F8FFF8;
}

#footer .footer-top {
    padding: 60px 0 0px 0;
    background: url(../img/footer-bg.png) center;
    background-size: inherit;
    background-repeat: no-repeat;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #000000;
    margin: 19px 0 0 0;
}

#footer .footer-top .footer-contact ul li {
    margin: 20px 0 26px 0;
}

#footer .footer-top .footer-contact ul li a {
    color: #000000;
    margin: 0 0 0 13px;
}

#footer .footer-top h4 {
    font-size: 24px;
    font-weight: 600;
    color: #329EFF;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links p {
    margin: 0;
}

.contact-info ul li {
    padding: 0px 0;
    display: flex;
    align-items: center;
}

.contact-info ul li p {
    margin: 0;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer-links ul li .location {
    margin: -13px 0 0 0;
}

#footer .footer-top .footer-links ul a {
    color: #000000;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #329EFF;
}

.copyright {
    color: #ffffff;
    background-color: #89cc90;
}

/* Custom modal CSS */
.custom-login-modal{
    background-color: #004455 !important;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 20px #999;
    -webkit-box-shadow: 0px 0px 20px #999;
    width: 300px;
    margin: 0 auto;
    font-size: 14px;
    position: relative;
}
.custom-login-modal .close{
    position: absolute;
    right: -1.75rem;
    top: -1.75rem;
    opacity: 1;
}
.custom-login-modal input[type='text'],.custom-login-modal input[type='password']{
    padding: 2px 5px;
    border-radius: 4px;
    border:1px solid #0001;
    font-size: 12px;
    margin-bottom: 0.25rem;
    width: 100%;
}
.custom-login-modal label{
    margin-right: 10px;
    color: #ddd;
    width: 100%;
}
#go {
    width: 50px;
    margin-top: 1.5rem;
}
.custom-login-modal .button{
    padding: 6px 6px 4px;
    margin-top: 10px;
    width: 220px;
    background: -moz-linear-gradient(center top, #f3f3f3, #dddddd);
    background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#dddddd));
    background: -o-linear-gradient(top, #f3f3f3, #dddddd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f3f3f3', EndColorStr='#dddddd');
    border-color: #000;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #333;
    cursor: pointer;
    display: inline-block;
}
.form-bottom-links p{
    font-size: 11px;
    margin-bottom: 0.5rem;
}
.form-bottom-links p a{
    color: #0099cc;
}
.form-bottom-links p a:hover{
    color: #eee;
}


.veterinarian-signup-modal{
    background-image: url('../img/sign-up-bg.svg');
    /* width: 400px; */
    border-radius: 0.5rem !important;
    overflow: hidden;
    position: relative;
    background-position: center;
}
.veterinarian-signup-modal *{
    position: relative;
    z-index: 10;
}
.veterinarian-signup-modal::before,.veterinarian-signup-modal::after{
    content: '';
    height: 100%;
    width: 50%;
    left: 0;
    position: absolute;
    top: 0;
    background-color: #fff;
    opacity: 0.75;
}
.veterinarian-signup-modal::after{
    background-color: #329EFF;
    right: 0;
    left: unset;
}
.vet-close{
    font-size: 2rem;
    /* background-color: white !important; */
    font-weight: 300 !important;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
    padding: 0 0.5rem !important;
}
.veterinarian-signup-modal h2{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
}
.veterinarian-signup-modal h2::before{
    content: '';
    height: 2px;
    width: 3rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: currentColor;
}
.modal-social-icons{
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}
.modal-social-icons a{
    display: flex;
    height: 2rem;
    width: 2rem;
    line-height: 1;
    font-size: 0.9rem;
    border-radius: 50%;
    border: 1px solid #0003;
    align-items: center;
    justify-content: center;
}
.modal-social-icons a:hover{
    background-color: #329eff;
    color: #fff;
}
.custom-form input{
    width: 100%;
    margin: 0.5rem 0;
    outline: none;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #0002;
    font-size: 0.9rem;
}
.veterinarian-signup-modal button:not(.close), .veterinarian-signup-modal .btn,.form-btn{
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-top: 1rem;
}
.vet-signup-bg{
    background-image: url('../img/sign-up-bg.svg');
    min-height: calc(100vh - 487px);
    margin-top: 150px;
    background-position: center;
    background-size: cover;
    padding: 3rem 0;
}
.vet-signup-bg::before{
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    opacity: 0.35;
}
.vet-login-form-container{
    background-color: #fffc;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 100%;
    width: 600px;
    margin: 0 auto;
}
.hospital-signup-form-container{
    width: 900px;
}
.vet-login-form-container h1{
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
}
.vet-login-form-container h1::before{
    content: '';
    height: 2px;
    width: 3rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #329EFF;
}
.vet-login-form-container input:not([type="radio"],[type="file"]),.vet-login-form-container select, .vet-login-form-container textarea{
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #0003;
    outline: none !important;
}
.vet-login-form-container input:focus{
    border-color: #329EFF;
}
.vet-login-form-container label{
    font-size: 0.9rem;
    font-weight: #666;
    margin: 0.5rem 0 0.25rem;
}
.doctors-new-carousel{
    position: relative;
}
.doctors-new-carousel .carousel-control-prev,.doctors-new-carousel .carousel-control-next{
    top: calc(50% - 3rem);
    transform: translateY(-50%);
    position: absolute;
}
.doctors-new-carousel .carousel-control-prev{
    left: 0;
}
.doctors-new-carousel .carousel-control-next{
    right: 0;
}
.overflow-hidden{
    overflow: hidden;
}
.border-on-desktop{
    position: relative;
}
.border-on-desktop::before{
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% + 8rem);
    border-left: 3px solid #fff;
}

.tos-modal-size {
    max-width: 1000px !important;
    width: 675px !important;
}

.tos-modal {
    width: 100%;
    background: rgba(7, 85, 185, 0.85) !important;
    border-radius: 24px !important;
    box-shadow: 0 0 12px 0;
    padding: 40px;
}

.tos-modal h6 {
    font-size: 40px;
    font-weight: 900;
    color: white;
}

.tos-modal p {
    font-size: 14px;
    margin-bottom: 4px;
    color: white;
}

.tos-content-wrap {
    background: #F5F5DC;
    border-radius: 12px;
    padding: 6px 2px 6px 0px;
    box-shadow: 0px 0px 6px #999;
}

.tos-modal .tos-content {
    height: 350px;
    overflow-y: auto;
    padding: 0 4px;
    padding-bottom: 40px;
}

.tos-modal .tos-content h5 {
    padding-top: 24px;
    font-size: 20px;
    font-weight: 900;
}

.tos-modal .tos-content p {
    line-height: 120%;
    padding-bottom: 12px;
    color: black;
}

.tos-modal .tos-button-group {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

.button-tos-decline {
    background-color: #0F9A89;
    padding: 8px 24px;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    border: none;
}

.button-tos-accept {
    background-color: #0E881A;
    padding: 8px 24px;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    border: none;
}

.updated-date {
    padding-bottom: 24px;
}

.tos-content-header {
    font-size: 16px;
    line-height: 150%;
    padding-top: 32px;
    padding-bottom: 24px;
}

.tos-small-header {
    padding-top: 12px;
    padding-bottom: 16px;
}

.tos-content::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
    border-radius: 16px;
}

.tos-content::-webkit-scrollbar-thumb {
    height: 80px;
    border-radius: 16px;
    background: rgba(7, 85, 185, 0.8);
    border: 1px solid transparent;
}

.tos-content::-webkit-scrollbar-thumb:hover {
    background: rgba(7, 85, 185, 0.9);
    /* Change thumb color on hover */
}

.tos-page-container {
background-color: #fffc;
border-radius: 0.5rem;
padding: 3rem 2rem;
max-width: 100%;
width: 650px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.tos-page-container h1 {
font-weight: 700;
font-size: 2rem;
position: relative;
}

.tos-page-container h5 {
font-size: 1.3rem;
font-weight: 800;
}

.terms-container {
border: 2px solid #aaa;
/* border: 2px solid rgba(7, 85, 185, 0.7); */
border-radius: 8px;
text-align: left;
padding: 1rem 1.5rem;
}

.terms-container p {
padding-left: 2rem;

}

.terms-container u {
font-weight: 600;
font-size: 1.2rem;
cursor: pointer;
}

a.nav-link.scrollto:hover {
    color: #0056b3 !important;
}

.cursor-pointer {
    cursor: pointer;
}
.side-links{
    background-color: #fffc;
    padding: 1rem;
    border-radius: 0.5rem;
    position: absolute;
    right: 0;
    top: 0;
}
.side-links ul{
    list-style: none;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media screen and (max-width:1200px) {
    .side-links{
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 2rem auto 0;
    }
}

@media screen and (max-width:540px) {
.tos-page-container {
    padding: 2rem 0.7rem;
}

.terms-container {
    padding: 0.7rem 0.7rem;
}

.terms-container p {
    padding-left: 0.7rem;
}

.tos-page-container h1 {
    font-size: 1.7rem;
}

.tos-page-container h5 {
    font-size: 1.2rem;
}

.tos-page-container u {
    font-size: 1rem;
}
}

@media screen and (max-width:1024px) {
    .tos-modal-size {
        width: 540px !important;
    }
}

@media screen and (max-width:720px) {
    .tos-modal-size {
        width: 400px !important;
    }

    .modal-dialog {
        margin: 0.5rem auto;
    }

    .tos-modal {
        padding: 24px 16px;
    }


    .tos-modal h6 {
        font-size: 28px;
    }
}

@media screen and (max-width:480px) {
    .tos-modal-size {
        width: 100% !important;
        padding: 0 8px;
        border-radius: 16px;
        box-shadow: 0 0 8px 0;
    }

}



/* New CSS */

@media screen and (max-width: 999px) {
    .section-title{
        padding-bottom: 0;
    }
    section{
        padding: 30px 0;
    }
}
@media screen and (min-width:767px) {
    .notification-icon .fa-bell{
        font-size: 20px !important;
    }
}