@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@500&display=swap');
*{
    margin:0;
    padding:0;
    overflow-x: hidden;
    font-family: 'Saira Semi Condensed', sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.nav1{
    height: 6vh;
    width: 100vw;
    background: rgb(1, 1, 46);
    display:flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    z-index: 999;
}
.nav1 ul{
    display: flex;
    margin-right: 25px;
}
.nav1 ul li{
    list-style-type: none;
}
.nav1 ul li a{
    display: flex;
    color: white;
    text-decoration: none;
    padding: 5px 7px;
    margin-right: 25px;
}
nav ul li:nth-child(6) a{
    color: rgb(59, 135, 233);
    background-color:white;
    font-size: 28px;
    border-radius: 2px;
    padding-top: 7px;
}
nav{
    width: 100vw;
    display:flex;
    justify-content: space-between;
    position: fixed;
    transition: all 0.5s;
    z-index: 99;
}
.logo{
    margin: 50px 110px 10px 30px;
}
.arrow{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    font-size: 35px;
    text-decoration: none;
    color: whitesmoke;
    position: relative;
    top: 90%;
    margin-right: 35px;
    animation: arrowdown 1.5s infinite;
}
@keyframes arrowdown{
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
      }
      50% {
        transform: translateY(-20px);
        opacity: 1;
      }
}
nav.active{
    width: 100vw;
    display:flex;
    justify-content: space-between;
    position: fixed;
    background: white;
    color:black;
    transition: all 0.5s;
}
nav.active ul li a{
    color:blue;
}
nav ul{
    display: flex;
    margin: 0 30px 0 30px;
    padding-top: 70px;
}
nav ul li{
    list-style-type: none;
    padding-top: 20px;
    position: relative;
}
nav ul li a{
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 50px;
    padding: 0px 10px;
    
}
.line1.active{
    background-color:black;
}
.line2.active{
    background-color:black;
}
.line3.active{
    background-color:black;
}
.slide1{
    position:absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    color:white;
    text-transform: uppercase;
}
.covid{
    position:absolute;
    top: 67%;
    left: 50%;
    font-size: 23px;
    color:white;
    text-transform: uppercase;
    background: maroon;
    padding: 0 10px;
    border-radius: 5px;
    letter-spacing: 3px;
}
.nav-current{
    background-color: rgb(247, 244, 86);
    color:rgb(184, 32, 32);
    border-radius: 5px;
}
.book{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 75%;
    left: 50%;
    background: rgb(243, 243, 62);
    padding: 20px;
    border-radius: 10px;
}
.book p{
    font-size: 24px;
}
/*------------------------------------------------------------------------------------------------
Hamburger Menu for Mobile
-------------------------------------------------------------------------------------------------*/
.burger{
    display: none;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 40px 5px 0;
    transition: all 0.3s ease;
}


@media screen and (max-width:1244px){
    .logo{
        width: 350px;
        margin: 50px 110px 10px 0;
    }
    nav ul li{
        margin-top: 5px;
    }
}
@media screen and (max-width:1009px){
    body{
        overflow-x: hidden;
    }
    .logo{
        margin: 50px 110px 10px 0;
    }
    nav ul{
        position: fixed;
        right:-65vw;
        height: 100%;
        top:15vh;
        z-index: 2;
        background-color: white;
        display:flex;
        flex-direction: column;
        align-items: center;
        width:40vw;
        transition-duration: 0.5s;
    }
    nav ul li{
        margin: .3rem 2rem 2rem .1rem ;
        opacity:0;
    }
    nav ul li a{
        color: black;
        font-weight: bold;
        margin-left: 0px;
        font-size: 18px;
    }
    .burger{
        display: block;
        cursor: pointer;
        position: fixed;
        right: -20px;
        position: relative;
        top: 10vh;
        z-index: 9999;
    }
    .slide1{
        font-size: 30px;
    }
}

.nav-activated{
    transform: translateX(-50vw);
}
@keyframes navLinkFade{
    from{
        opacity:0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}


.load{
    animation: slide 1s;
}
.head{
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-image: url("../assets/english-cocker-spaniel-puppy-sitting-on-ground-beside-grass-1254140.jpg");
}

.content{
    width:100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
}
.service{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
}
.service::before{
    content:'';
    background-image: url("../assets/catndog.jpg");
    background-position: center;
    background-size: cover;
    opacity: .4;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
.service h2{
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    letter-spacing: .05em;
    color: darkblue;
    padding: 0 20px;
}
.service ul li{
    list-style-position: inside;
    list-style-type: circle ;
}
.service ul li a{
    text-decoration: none;
    font-size: 26px;
    line-height: 50px;
    color: black;
}
.service ul li a:hover{
    text-decoration: underline;
    color: blue;
}
.tour{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.tour::before{
    content:'';
    background-image: url("../assets/cat.jpg");
    background-position: center;
    background-size: cover;
    opacity: .4;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
.tour h2{
    text-align: center;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    letter-spacing: .05em;
    color: darkblue;
}
.tour p{
    font-size: 20px;
    margin: 0 60px 40px 60px;
}
.tour a{
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 15px;
    font-size: 24px;
    border: 2px solid black;
    border-radius: 10px;
    font-weight: 900;
    transition: 1s;
}
.tour a:hover{
    background: rgb(90, 90, 224);
    color: white;
    transition: .5s;
    border: 2px solid blue;
}
.operation{
    display: flex;
    padding-top: 70px;
    padding-bottom: 70px;
}
iframe{
    width:50%;
    height: 350px;
    border:1px solid black;
}
.hours{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hours h3{
    font-size: 22px;
    text-decoration: underline;
}
.hours p{
    font-size: 18px;
}
footer{
    height: 100%;
    width: 100%;
    background: rgb(34, 32, 32);
    display: flex;
    justify-content: space-between;
    padding: 40px 40px;
    font-size: 18px;
    color: white;
}
footer a{
    font-size: 22px;
    margin-right: 180px;
    color: silver;
}
@media screen and (max-width:568px){
    .book{
        left:10%;
    }
}
/*------------------------------------------------
About
------------------------------------------------*/
.about{
    height: 100%;
    margin-top:100px;
    margin-bottom: 50px;
    position: relative;
}
.about::before{
    content: "";
    background-image: url("../assets/paw-prints.jpg");
    background-position: center;
    background-size: cover;
    opacity: .1;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
.about h1{
    margin-top:140px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.aboutus{
    display: flex;
    margin-top: 70px;
    width: 100%;
}
.aboutus p{
    margin:0 60px;
    width: 50%;
    text-align: justify;
}
.about img{
    width: 50%;
    margin-right: 60px;
}
/*------------------------------------------------
Services
------------------------------------------------*/
.services{
    display:flex;
    border-bottom:1px solid black;
}
.servicebg{
    position: relative;
}
.servicebg::before{
    content: "";
    background-image: url("../assets/paw-prints.jpg");
    background-position: center;
    background-size: cover;
    opacity: .1;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
.serviceleft{
    width: 50%;
    height:100%;
}
.inner-width{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding: 0 10px;
    overflow:hidden;
}
.section-title{
    text-align:center;
    text-transform: uppercase;
    font-size: 30px;
    margin-top: 220px;
    margin-bottom: 50px;
}
.services-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-box{
    width: 33.33%;
    padding: 10px;
    text-align: center;
}
.service-icon{
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("../assets/1093px-Black_Paw.png");
    background-size: cover;
    background-position: center;
    color: black;
    transform: rotate(45deg);
    margin-bottom: 10px;
    margin-top: 10px;
    transition: 0.3s linear;
}
.service-box:hover .service-icon{
    transform: rotate(-45deg);
}
.service-title{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media screen and (max-width:960px){
    .servicesleft{
        height:100%;
    }
    .service-box{
        max-width: 45%;
    }
}
@media screen and (max-width:768px){
    .servicesleft{
        height:100%;
    }
    .service-box{
        max-width: 50%;
    }
}
@media screen and (max-width:480px){
    .servicesleft{
        height:100%;
    }
    .service-box{
        max-width: 100%;
    }
}
@media screen and (max-height:700px){
    .servicesleft{
        height:100%;
    }
}
.serviceright{
    width:50%;
    margin-right: 60px;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: justify;
}
.serviceright h3{
    text-decoration: underline;
}
/*------------------------------------------------
Policies
------------------------------------------------*/
.policies{
    display: flex;
    justify-content: space-between;
    width: 100vw;
    height: 100%;
    margin-top: 300px;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 200px;
}
.pol{
    position: relative;
}
.pol::before{
    content: "";
    background-image: url("../assets/paw-prints.jpg");
    background-position: center;
    background-size: cover;
    opacity: .1;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
.policies img{
    width: 50%;
    margin-right: 80px;
}
.policy{
    width: 50%;
}
.policy h2{
    margin-bottom: 40px;
}
.policy p{
    margin-right: 180px;
    text-align: justify;
}
/*------------------------------------------------
Clinic Tour
------------------------------------------------*/
.clinictour{
    margin: 220px 40px 0 40px;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}
.gallery{
    margin: 5px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery img{
    margin: 10px;
    width:340px;
    height:200px;
    filter: grayscale(0%);
    transition: 0.5s;
}
.gallery img:hover{
    filter:grayscale(100%);
    transform: scale(1.1);
    transition: 0.5s;
}
.clinic{
    position: relative;
}
.clinic::before{
    content: "";
    background-image: url("../assets/paw-prints.jpg");
    background-position: center;
    background-size: cover;
    opacity: .1;
    position: absolute;
    z-index: -1;
    height:100%;
    width:100%;
}
/*------------------------------------------------
Team
------------------------------------------------*/
section{
    padding: 10rem 0;
    background-color: #fff;
}
.heading{
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-right: -3px;
    margin-bottom: 1rem;
    margin-top: 30px;
    text-align: center;
    position: relative;
}

.card-wrapper{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.card{
    width: 18rem;
    background-color: #ebeef8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    box-shadow: .5rem .5rem 3rem rgba(0,0,0,0.2);
}
.card .card-img{
    width: 100%;
    height: 10rem;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 57%, 0% 100%);
}
.profile-img{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -6rem;
    z-index: 98;
    border: 1rem solid #ebeef8;
    transition: .5s;
}
.profile-img:hover{
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -6rem;
    z-index: 98;
    border: 1rem solid #ebeef8;
    transition: .5s;
}
.card h1{
    font-size: 1.2rem;
    color: #333;
    margin: 1.5rem 0;
}
.aboutteam{
    font-size: 1rem;
    margin: 1.5rem 0.5rem;
    font-style: italic;
    text-align: center;
    color: #333;
}
@media screen and (min-width:700px){
    .card-wrapper{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .card{
        margin: 2rem;
        transition: .5s;
    }
    @keyframes fadeIn{
        from{
            opacity: 0;
        }
        to{
            opacity: 1;
        }
    }
    .card:nth-child(1){
        animation: fadeIn .5s .5s backwards;
    }
    .card:nth-child(2){
        animation: fadeIn .5s .6s backwards;
    }
    .card:nth-child(3){
        animation: fadeIn .5s .7s backwards;
    }
    .card:nth-child(4){
        animation: fadeIn .5s .8s backwards;
    }
    .card:nth-child(5){
        animation: fadeIn .5s .9s backwards;
    }
    .card:nth-child(6){
        animation: fadeIn .5s 1s backwards;
    }
    .card:nth-child(7){
        animation: fadeIn .5s 1.1s backwards;
    }
    .card:nth-child(8){
        animation: fadeIn .5s 1.2s backwards;
    }
}
/*------------------------------------------------
Contact
------------------------------------------------*/
.contactus{
    position: relative;
    margin-top: 20px;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../assets/adorable-animal-blur-cat-617278.jpg");
    background-size: cover;
    background-position: center;
}
.contacttent{
    max-width: 800px;
    text-align: center;
}
.contacttent h2{
    margin-top: 100px;
    font-size: 36px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}
.concontainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}
.contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.icon{
    min-width: 60px;
    height: 60px;
    background:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}
.text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    flex-direction: column;
    font-weight: 300;
}
.text h3{
    font-weight: 500;
    color: #02ffd5;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.captcha div{
    width: 650px;
    height: 100%;
}
.inputBox input, .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none
}
.inputBox span{
    position: absolute;
    left:0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: .5s;
    color: #666;
}
.inputBox input:focus ~ span,
.inputBox input:valid ~ span,
.inputBox textarea:focus ~ span,
.inputBox textarea:valid ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
.inputBox input[type="submit"]{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
}
@media screen and (max-width: 991px)
{
    .contactus{
        padding: 50px;
    }
    .concontainer{
        flex-direction: column;
    }
    .concontainer .contactInfo{
        margin-bottom: 40px;
    }
    .contactInfo{
        width: 100%;
    }
    .contactForm{
        width: 100%;
    }
}
@media screen and (max-width:1244px){
    .slide1{
        font-size: 35px;
    }
    .covid{
        top:72%;
    }
    .book{
        top:80%;
    }
}
@media screen and (max-width:991px){
    .services{
        display: block;
    }
    .serviceleft{
        width: 100%;
        background: #ffd34e;
    }
    .serviceright{
        width: 100%;
        margin: 50px;
    }
    .serviceright p{
        margin-right: 100px;
    }
    .slide1{
        font-size: 32px;
    }
}
@media screen and (max-width:845px){
    .service ul li a{
        font-size: 22px;
    }
    .tour p{
        font-size: 22px;
    }
    .service-title{
        font-size: 14px;
    }
    
    .policies img{
        display: none;
    }
    .policy{
        width: 100%;
    }
    .policy h2{
        text-align: center;
        margin-left: -80px;
    }
    .policy p{
        margin-right: 80px;
    }
    .covid{
        font-size: 18px;
    }
}
@media screen and (max-width:768px){
    .book h2{
        font-size: 18px;
    }
    .book p{
        font-size: 16px;
    }
    .content{
        display: block;
    }
    .service{
        width: 100%;
    }
    .service ul{
        margin: 0px 20px;
    }
    .service h2{
        font-size: 38px;
    }
    .service ul li a{
        font-size: 26px;
    }
    .tour{
        width: 100%;
        padding-bottom: 30px;
    }
    .tour h2{
        font-size: 38px;
    }
    .tour a{
        font-size: 26px;
        padding: 5px 10px;
    }
    .operation{
        display: block;
        padding: 0;
    }
    .hours{
        width: 100%;
        margin: 30px 0;
    }
    iframe{
        width: 100%;
    }
    footer{
        padding: 10px 10px;
        font-size: 14px;
    }
    footer a{
        font-size: 18px;
        margin-right: 80px;
    }
    .about img{
        display: none;
    }
    .aboutus{
        top: 15%;
    }
    .aboutus p{
        width:100%;
        margin: 0 30px;
        text-align: justify;
    }
    .about h1{
        top: 10%;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .services{
        display:block;
    }
    .serviceleft{
        width: 100%;
    }
    .serviceright{
        width: 100%;
    }
    .service-title{
        font-size: 14px;
    }
    .inner-width{
        background: rgb(233, 233, 39);
    }
    .section-title{
        margin-top: 150px;
    }
    .serviceright{
        margin-bottom: 30px;
    }
    .serviceright h3{
        margin:  0 20px;
        margin-right: 100px;
    }
    .serviceright p{
        margin: 0 20px;
        text-align: justify;
    }
    .serviceright p{
        margin-right: 100px;
    }
    section{
        padding: 5rem 0 1.5rem 0;
    }
    .heading{
        margin-top:90px;
        margin-bottom:1.5rem;
    }
}
@media screen and (max-width:664px){
    .book{
        top: 82%;
    }
}
@media screen and (max-width:535px){
    .logo{
        width: 390px;
        margin: 50px 75px 10px 10px;
    }
    nav ul{
        position: fixed;
        right:-65vw;
        height: 100%;
        top:15vh;
        z-index: 2;
        background-color: white;
        display:flex;
        flex-direction: column;
        align-items: center;
        width:50vw;
        transition-duration: 0.5s;
    }
    nav ul li a{
        margin-left: 50px;
    }
    .slide1{
        font-size: 26px;
        top: 50%;
    }
}
@media screen and (max-width:444px){
    .logo{
        width: 300px;
    }
    .service-title{
        font-size: 14px;
    }
    .slide1{
        font-size: 21px;
        top: 40%;
    }
    .covid{
        top: 60%;
    }
    .nav1 ul li a{
        font-size: 14px;
    }
}
@media screen and (max-width:360px){
    .nav1 ul li a{
        font-size: 14px;
    }
    nav{
        display: flex;
    }
    .logo{
        width: 310px;
        margin: 50px 80px 10px 10px;
    }
    nav ul{
        position: fixed;
        right:-60vw;
        height: 100%;
        top:15vh;
        z-index: 2;
        background-color: white;
        display:flex;
        flex-direction: column;
        align-items: center;
        width:50vw;
        transition-duration: 0.5s;
    }
    nav ul li a{
        margin-left: 80px;
    }
    nav ul li{
        margin-bottom: 10px;
    }
    .slide1{
        font-size: 21px;
        top: 50%;
    }
    .content{
        display: block;
    }
    .service{
        width: 100%;
    }
    .service ul{
        margin: 0px 20px;
    }
    .service h2{
        font-size: 34px;
    }
    .service ul li a{
        font-size: 20px;
    }
    .tour{
        width: 100%;
        padding-bottom: 30px;
    }
    .tour h2{
        font-size: 34px;
    }
    .tour a{
        font-size: 20px;
        padding: 5px 10px;
    }
    .operation{
        display: block;
        padding: 0;
    }
    .hours{
        width: 100%;
    }
    iframe{
        width: 100%;
    }
    footer{
        padding: 10px 10px;
        font-size: 14px;
    }
    footer a{
        display: none;
    }
    .about img{
        display: none;
    }
    .aboutus{
        top: 10%;
    }
    .aboutus p{
        width:100%;
        margin: 0 30px;
        text-align: justify;
    }
    .about h1{
        top: 5%;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .services{
        display:block;
    }
    .serviceleft{
        width: 100%;
    }
    .serviceright{
        width: 100%;
    }
    .service-title{
        font-size: 14px;
    }
    .inner-width{
        background: rgb(233, 233, 39);
    }.section-title{
        margin-top: 150px;
    }
    .serviceright{
        margin-bottom: 30px;
    }
    .serviceright h3{
        margin-right: 100px;
        margin-left: 10px;
    }
    .serviceright p{
        margin-right: 100px;
        margin-left: 10px;
        text-align: justify;
    }
    section{
        padding: 5rem 0 1.5rem 0;
    }
    .heading{
        margin-bottom:1.5rem;
    }
}

@media screen and (max-height:720px){
    .slide1{
        font-size: 21px;
        top: 45%;
    }
    .covid{
        font-size: 14px;
    }
}
@media screen and (max-height:668px){
    .slide1{
        top: 30%;
    }
    .covid{
        top: 62%;
    }
    .logo{
        width: 250px;
    }
    .nav1 ul li a{
        font-size: 14px;
    }
}
@media screen and (max-height:568px){
    .nav1 ul li a{
        font-size: 10px;
    }
    .covid{
        font-size: 15px;
    }
}
@media screen and (max-width:280px){
    .nav1 ul li a{
        font-size: 9px;
    }
    .covid{
        font-size: 12px;
    }
    .slide1{
        font-size: 20px;
    }
    .logo{
        width: 220px;
    }
}