/* Google font */

@import url('https://fonts.googleapis.com/css2?family=Barlow: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=Rozha+One&display=swap');

@font-face {
  font-family: myFont;
  src: url(../fonts/GrayscaleSignature.ttf);
  font-weight: normal;
}

:root {
  --font-p: "Barlow", sans-serif; 
  --font-h: "Rozha One", serif; 
  --poup-font: myfont;
  --color1: #153967;
  --color2: #12adc5;
  --color3: #e7252c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  font-family: var(--font-p);
  font-weight: 600;
  text-decoration: none;
}

p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 20px);
}
body {
    font-family: var(--font-p);
    margin: 0;
    padding: 0;
}
table {
    margin: 0 !important;
}

.button1 {
    background-color: var(--color2);
    padding: clamp(8px, 2vw, 14px) clamp(16px, 4vw, 28px);
    color: #ffffff;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    display: inline-block;
    font-size: clamp(0.9rem, 1.5vw, 1.3rem);
    z-index: 1;
}

.button1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color1);
    z-index: -1;
    transition: width 0.4s ease;
}
.button1:hover::after {
    width: 100%;
}
.button1:hover {
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
}
.heading1 {
    font-size: clamp(24px, 5vw, 50px);
    margin: 0;
    color: var(--color2);
}
.heading2 {
    font-size: clamp(24px, 5vw, 50px);
    margin: 0;
    color: #ffffff;
}
.heading3 {
    font-size: clamp(24px, 5vw, 50px);
    margin: 0;
    color: var(--color1);
}





/* Header */
.masthead ,
.masthead2 {
    background-color: #ffffff;
}
.masthead ul li a{
    color: var(--color1);
    font-size: clamp(15px, 3vw, 18px);
    transition: all 300ms;
}
.masthead ul li a:hover{
    color: var(--color2);
}
.masthead .button1{
    padding: 10px 20px;
    font-size: inherit;
}
.masthead ul li.current_page_item a{
    color: var(--color2);
}
@media screen and (max-width: 1400px) {
  .masthead .tel span {
    display: none;
  }
}
.masthead .tel,
.masthead2 .tel{
    color: var(--color3) ;
    transition: all 300ms;
}
.masthead .tel:hover,
.masthead2 .tel:hover{
    color: var(--color2) ;
}


.masthead2 ul li {
 margin-top: 12px;
 margin-left: 10px;
}
.masthead2 ul li a{
 color: var(--color1);
 transition: all 300ms;
 font-size: 18px;
}
.masthead2 ul li a:hover, 
.masthead2 ul li.current_page_item a {
 color: var(--color2);
}
.masthead2 .hamburger {
 color: var(--color2);
 font-size: 25px;
}
.masthead2 .hamburger .fa-xmark{
 color: var(--color3);
}
.masthead2 {
 padding-top: 1rem;
 padding-bottom: 1rem;
}
@media screen and (max-width: 600px) {
    .masthead2 a img.img-fluid{
        transform: scale(0.7) !important;
        transform-origin: center center;
        display: block;
    }
    .masthead2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}


/* Home Banner */
.home_banner {
    background-color: #b7e0e6;
}
.home_banner h1 {
    font-size: clamp(2.5rem, 7vw, 8rem);
    color: var(--color1);
    display: inline-block;
    position: relative;
    margin: 3rem 0 1rem 0;
}
.home_banner h1::after {
    content: url(../images/home-after.png);
    position: absolute;
    top: -13%;
    right: 21%;

}
.home_banner h1 span{
    color: var(--color3);
    display: block;
}
.home_banner img{
    filter: drop-shadow(0px 3px 13px rgba(0,0,0,0.6));
}
@media screen and (max-width: 1400px) {
  .home_banner h1::after {
    top: -5%;
    right: 19%;
  }
}
@media screen and (max-width: 800px) {
  .home_banner h1::after {
    content: url(../images/home-after2.png);
    top: 0;
    right: 19%;
  }
}
@media screen and (max-width: 600px) {
.home_banner h1 {
    margin: 1.2rem 0 1rem 0;
}
.home_banner img {
    width: 80%;
}
}

.home-s2 {
    background-color: #effdff;
}
.home-s2 img{
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 50px rgba(18, 173, 197, 0.3);
}
.home-s2 p{
    color: var(--color1);
    font-weight: 600;
    margin: 10px 0 0 0;
}
@media screen and (max-width: 600px) {
  .home-s2 p{
    font-weight: 500;
    margin: 6px 0 0 0;
}
}

.home-s3 .text{
    font-size: clamp(16px, 4vw, 25px);
    font-weight: 500;
}
.home-s3 p:first-child {
    flex-shrink: 0;
}


.home-s4 {
    background-color: #b2f5ff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.home-s4 .side-image{
    position: absolute;
    bottom: -5%;
    right: 0;
    width: 20%;
}
@media screen and (max-width: 1790px) {
  .home-s4 .side-image {
    display: none;
  }
}
.home-s4 .heading1 {
    color: var(--color1);
}
.home-s4 .border-bottom {
    border-color: #8b8b8b !important;
}
.home-s4 .text{
    font-size: clamp(16px, 4vw, 25px);
    font-weight: 500;
}
.home-s4 p:first-child {
    flex-shrink: 0;
}


.home-s5 img{
    border-radius: 30px;
}
.home-s5 .sort-description{
    font-size: clamp(16px, 4vw, 25px);
    font-weight: 500;
    color: var(--color1);
}
.home-s5 .description{
    font-size: clamp(15px, 4vw, 18px);
}


.home-s6 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home-s6 .box{
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 300ms;
}
.home-s6 .box p{
    font-family: var(--font-h);
    font-size: clamp(18px, 2.5vw, 24px);
}
.home-s6 .box:hover{
    background-color: var(--color2);
}
.home-s6 .box:hover p{
    color: #ffffff;
}
.home-s6 .box .image1,
.home-s6 .box .arrow1,
.home-s6 .box:hover .arrow2,
.home-s6 .box:hover .image2{
    display: block;
}
.home-s6 .box .image2,
.home-s6 .box .arrow2,
.home-s6 .box:hover .arrow1,
.home-s6 .box:hover .image1{
    display: none;
}


.home-s7 img{
    border-radius: 30px;
}




/* Service data */
.service-data img {
    border-radius: 30px;
}
.service-data .sort-des {
    margin: 0;
    font-size: clamp(16px, 3vw, 25px);
    font-weight: 500;
}
.service-data p{
    margin-bottom: 20px;
}







/* Custom Banner */
.custom-banner {
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.custom-banner .banner-overlay {
    position: absolute;
    content: "";
    background: #12ADC5;
    background: linear-gradient(90deg, rgba(18, 173, 197, 1) 42%, rgba(18, 173, 197, 0) 73%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.custom-banner .container-fluid{
    position: relative;
    z-index: 3 !important;
}
.custom-banner .heading2{
    font-size: clamp(40px, 8vw, 90px);
    display: inline-block;
    position: relative;

}
.custom-banner .heading2::after{
    position: absolute;
    content: "";
    background-image: url(../images/banner-after.png);
    top: 10%;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}
@media screen and (max-width: 1400px) {
.custom-banner {
    background-position: center;
    background-size: cover;
}
.custom-banner .banner-overlay {
    background: #12adc581;
}
}
@media screen and (max-width: 991.5px) {
.custom-banner .heading2::after{
    background-image: url(../images/mobile-banner-after.png);
    top: 16%;
    right: 10%;
}
}
@media screen and (max-width: 360.5px) {
.custom-banner .heading2{
    padding: 2rem 0 !important;
}
.custom-banner .heading2::after{
    top: 0%;
    right: 5%;
}
}


/* About Main */
.about-main p{
    margin-bottom: 1rem;
}
.about-main .row{
    border-top: 1px solid var(--color2);
}
.about-main .row:first-child{
    border: none;
}
.about-main .heading1{
    font-size: clamp(24px, 4vw, 35px);
}
.about-main .heading1 small{
    display: block;
}
.about-main img {
    border-radius: 30px;
}
.about-main .container .row {
    margin-top: 1.5rem;
}
.about-main .container .row:first-child {
    margin-top: 0;
}



/* Single service content */

.single-service-content img{
    border-radius: 30px;
}
.single-service-content .short-des{
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 500;   
    margin-bottom: 0;
}
.about-main p{
    margin-bottom: 1rem;
}


/* Reviews */
.reviews .content {
    box-shadow: 0 0 15px 1px rgba(46,183,205,0.55) inset;;
    color: var(--color1);
    border-radius: 30px;
}
.reviews .slick-prev, .reviews .slick-next{
    top: -30px;
    background-color: #12ADC5;
    border-radius: 5px;
    width: 70px;
    height: 35px;
}
.reviews .slick-prev {
    left: 0%;
}
.reviews .slick-next {
    right: 0%;
}
.slick-next::before {
    content: "NEXT";
    font-family: var(--font-p);
    font-size: 15px;
    color: #ffffff;
    opacity: 1;
    font-weight: 600;
}
.slick-prev::before {
    content: "PREV";
    font-family: var(--font-p);
    font-size: 15px;
    color: #ffffff;
    opacity: 1;
    font-weight: 600;
}
/* Reviews */
/* .reviews .content {
    box-shadow: 0px 0px 15px -10px rgba(46,183,205,0.55) inset;
}
.reviews .slick-prev, .reviews .slick-next{
    bottom: 0;
    top: 110%;
    background-color: #12ADC5;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
.reviews .slick-prev {
    left: 45%;
}
.reviews .slick-next {
    right: 45%;
}
.slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 0px;
    display: inline-block;
}
.slick-prev::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f104";
    margin-left: 0px;
    display: inline-block;
}
@media screen and (max-width: 991.5px) {
.reviews .slick-prev {
    left: 42%;
}
.reviews .slick-next {
    right: 42%;
}
}
@media screen and (max-width: 767.5px) {
.reviews .slick-prev {
    left: 40%;
}
.reviews .slick-next {
    right: 40%;
}
}
@media screen and (max-width: 520px) {
.reviews .slick-prev {
    left: 35%;
}
.reviews .slick-next {
    right: 35%;
}
} */





/* Contacts */

.contact-details td {
    padding: 10px;    
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 600;
}
.contact-details tr:nth-child(odd) {
    background: var(--color2); 
    color: #ffffff;
}
.contact-details tr:nth-child(even) {
    background: #ffffff;
    color: #000000;
}
.contact-details tr a {
    color: inherit;
}

/* Contacts */

.opening-hr td {
    padding: 10px;    
    font-size: clamp(16px, 3vw, 25px);
    font-weight: 600;
}
.opening-hr tr:nth-child(odd) {
    background: var(--color2); 
    color: #ffffff;
}
.opening-hr tr:nth-child(even) {
    background: #ffffff;
    color: #000000;
}



/* Parking Spot */

.parking td {
    padding: 10px;    
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 600;
}
.parking table {
    width: 60%;
}
@media screen and (max-width: 800px) {
.parking table {
    width: 100%;
}
}


/* Pricing Table */

.pricing td {
    width: 50%;
    padding: 10px;    
    font-size: clamp(16px, 3vw, 23px);
    font-weight: 500;
}
.pricing tr:nth-child(odd) {
    background: var(--color2); 
    color: #ffffff;
}
.pricing tr:nth-child(even) {
    background: #ffffff;
    color: #000000;
}
.pricing tr strong {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 25px);
}
.pricing .extra-text {
    font-weight: 600;
    font-size: clamp(16px, 2vw, 20px);
}






/* Emergencies or Gravely Ill Pet */
.bottom-sec {
    background-color: #2eb7cd;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 52px;
}
.bottom-sec .description{
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 26px);
}
.bottom-sec .box{
    background-color: #ffffff;
    border-radius: 20px;
    height: 100%;
}
.bottom-sec h4{
    color: var(--color1);
}
.bottom-sec .location a{
    font-weight: normal;
    color: #555555;
}
.bottom-sec .tel a{
    font-weight: 500;
    color: #555555;
}
.bottom-sec a i{
    color: var(--color2);
}
.bottom-sec .image{
    margin-bottom: -52px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}
@media screen and (max-width: 991.5px) {
    .bottom-sec {
        margin-bottom: 40px;
    }
    .bottom-sec .image{
        margin-bottom: -40px;
    }
}
@media screen and (max-width: 767.5px) {
    .bottom-sec {
        margin-bottom: 30px;
    }
    .bottom-sec .image{
        margin-bottom: -30px;
    }
}
@media screen and (max-width: 565px) {
    .bottom-sec .image{
        margin-bottom: -6%;
    }
}






/* Footer */
footer .copyright {
    background-color: var(--color2);    
    color: #ffffff;
}
footer .social-icon a, footer .contact ul li .icon {
    color: #ffffff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
footer .contact ul li .icon {
    flex-shrink: 0;
}

footer .social-icon a::after, footer .contact ul li .icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: var(--color2);
    border-radius: 50%;
    z-index: -1;
    transition: all 300ms;
}
footer .social-icon a:hover::after {
    background-color: var(--color1);
}
footer .sitemap ul li {
    list-style: none;
    margin-top: 10px;
}
footer .sitemap ul li a ,
footer .contact ul li a {
    color: #555555;
    font-weight: 500;
    transition: all 300ms;
    font-size: clamp(15px, 3.5vw, 20px);
}
footer .contact ul li a i{
    font-size: 15px;
}
footer .sitemap ul li a:hover {
    color: var(--color2);
    margin-left: 3px;
}
footer .sitemap ul li.current_page_item a {
    color: var(--color2);
}

footer .contact ul li {
    list-style: none;
    margin-top: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
footer .contact ul li a:last-child:hover {
    color: var(--color3);
}
footer h4 {
    font-family: var(--font-p);
    color: var(--color1);
    font-weight: 600;
}

/* Back to top */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--color3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.86) inset;
    transform: translateY(20px);
    transition: all 0.35s ease; /* fade + slide animation */
    z-index: 999;
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    transform: translateY(-5px);
}

@media screen and (max-width: 748px) {
#backToTop {
    width: 35px;
    height: 35px;
    font-size: 17px;
}
}


/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-box {
    background-image: url(../images/popup-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #91d4de;
    max-width: 400px;
    border-radius: 3px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.popup-box .p1,
.popup-box .p4{
    color: var(--color1);
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}
.popup-box .p2{
    font-family: var(--poup-font);
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}
.popup-box .p3{
    font-family: var(--poup-font);
    color: #ffffff;
    font-size: clamp(4rem, 5vw, 5rem);
    margin: 0;
    position: relative;
}
.popup-box .p3::after{
    position: absolute;
    content: "";
    background-image: url(../images/popup-border.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: clamp(53px, 5vw, 64px);

}
.popup-box img{
    margin-bottom: -21px;
}
.popup-box .bottom-box{
    background-color: #fff;
    color: #000;
    font-weight: 600;
}
.popup-box .bottom-box p{
    font-size: 18px;
    width: 75%;
    margin: 0 auto;
}
/* @media screen and (max-width: 500px) {
.popup-box .p3::after{
    right: 53px;
}
} */
