@import"https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap";

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box
}

body {
    background: #480ca8
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    color: rgba(12, 3, 27, .7);
    background: rgba(76, 201, 240, .1)
}

.container {
    width: 82%;
    margin: 0 auto
}

img {
    display: block;
    width: 100%
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2
}


section>h2 {
    text-align: center;
    color: #480ca8
}

section>p {
    text-align: center;
    width: 42%;
    margin: .6rem auto 2.5rem
}

.btn {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 1rem;
    border-radius: 3rem;
    background: #f72585;
    color: #fff;
    cursor: pointer;
    transition: all 400ms ease
}

.btn:hover {
    background: #f84c9b;
    box-shadow: 0 1rem 1.6rem rgba(12, 3, 27, .15)
}

.btn-primary {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 1rem;
    border-radius: 3rem;
    background: #480ca8;
    color: #fff;
    cursor: pointer;
    transition: all 400ms ease
}

.btn-primary:hover {
    background: #580fce;
    box-shadow: 0 1rem 1.6rem rgba(12, 3, 27, .15)
}

@media screen and (max-width: 1024px) {
    .container {
        width: 90%
    }

    section>p {
        width: 55%
    }
}

section>p {
    width: 90%
}

nav {
    width: 100%;
    position: fixed;
    z-index: 10;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #4cc9f0, #ffffff);
    color: #480ca8;
    box-shadow: 0 1rem 1rem rgba(12, 3, 27, .1)
}

nav img{
    width: 50%;
}

nav h1,
nav h2,
nav h3,
nav h4,
nav h5 {
    color: #480ca8
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

nav .container .logo {
    padding: .5rem;
    width: 10rem;
    transition: all 200ms ease
}

nav .container .logo:hover {
    margin: -0.5rem
}

nav .container .btn {
    color: #fff;
    font-weight: 600
}

nav .container ul {
    display: flex;
    gap: 3rem;
    align-items: center
}

nav .container ul li a {
    font-weight: 600
}

nav .container button {
    display: none
}

nav .container a {
    color: #480ca8;
    font-weight: 500;
    font-size: .9rem
}

nav .container .nav__logo h2 {
    color: #480ca8
}

@media screen and (max-width: 1024px) {
    nav .container button {
        display: inline-block;
        background: rgba(0, 0, 0, 0);
        color: #480ca8;
        font-size: 2rem
    }

    nav .container button#close__nav-btn {
        display: none
    }

    nav .container ul {
        position: fixed;
        right: 5%;
        top: 5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none
    }

    nav .container ul li {
        width: 100%;
        opacity: 0;
        animation: flipNavItem 400ms ease forwards
    }

    nav .container ul li:nth-child(2) {
        animation-delay: 200ms
    }

    nav .container ul li:nth-child(3) {
        animation-delay: 400ms
    }

    nav .container ul li:nth-child(4) {
        animation-delay: 600ms
    }

    nav .container ul li:nth-child(5) {
        animation-delay: 800ms
    }

    @keyframes flipNavItem {
        0% {
            transform: rotateX(90deg)
        }

        100% {
            transform: rotateX(0deg);
            opacity: 1
        }
    }

    nav .container ul li a {
        color: #fff;
        height: 100%;
        display: block;
        padding: 1.5rem 2rem;
        border-radius: 0;
        background: linear-gradient(#4cc9f0, #34c2ee)
    }

    nav .container ul li a.btn {
        background: #f72585
    }
}

header {
    background: linear-gradient(135deg, #480ca8, #4cc9f0);
    color: #fff;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden
}

header h1,
header h2,
header h3,
header h4,
header h5 {
    color: #fff
}

header .container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    align-items: center;
    justify-content: space-between
}

header .container .header__content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -3px;
    padding-top: 1rem;
    font-weight: 300
}

header .container .header__content h1 span {
    font-weight: 600
}

header .container .header__content p {
    margin: 1rem 0 2rem;
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem
}

@media screen and (max-width: 1024px) {
    header {
        height: 70vh;
        padding-top: 3rem
    }

    header .container {
        gap: 1rem
    }

    header .container .header__content h1 {
        font-size: 2rem;
        letter-spacing: .5px
    }

    header .container .header__content h2 {
        font-size: 1.1rem
    }
}

@media screen and (max-width: 600px) {
    header {
        height: auto;
        min-height: 100vh;
        padding: 5rem 0 3rem 0
    }

    header .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        margin-top: 0
    }

    header .container .header__image {
        max-width: 90%;
        margin: 0 auto;
        max-height: 40vh;
        overflow: hidden
    }

    header .container .header__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem
    }

    header .container .header__content {
        padding: 0 1.5rem
    }

    header .container .header__content h1 {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        line-height: 1.3;
        margin-bottom: 0.75rem
    }

    header .container .header__content p {
        font-size: 0.9rem;
        margin: 0.75rem 0 1.25rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85)
    }

    header .container .header__content .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem
    }
}

#services .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

#services .container article {
    background: linear-gradient(135deg, #480ca8, #4cc9f0);
    color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    transition: all 1000ms ease;
    text-align: center
}

#services .container article h1,
#services .container article h2,
#services .container article h3,
#services .container article h4,
#services .container article h5 {
    color: #fff
}

#services .container article:hover {
    background: linear-gradient(135deg, #4cc9f0, #ffffff);
    color: #480ca8;
    margin-top: -0.5rem
}

#services .container article:hover h1,
#services .container article:hover h2,
#services .container article:hover h3,
#services .container article:hover h4,
#services .container article:hover h5 {
    color: #480ca8
}

#services .container article i {
    font-size: 2rem;
    text-align: center
}

@media screen and (max-width: 1024px) {
    #services .container {
        grid-template-columns: 1fr 1fr;
        gap: .9rem
    }

    #services .container article {
        padding: 1.2rem;
        gap: .8rem
    }

    #services .container article:hover {
        margin: 0
    }
}

@media screen and (max-width: 600px) {
    #services .container {
        grid-template-columns: 1fr
    }

    #services .container article div h4 {
        margin-bottom: .8rem
    }
}

#about .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem
}

#about .container .about__veterinarian {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 1.5rem rgba(12, 3, 27, .1);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
    transition: all 700ms ease
}

#about .container .about__veterinarian:hover {
    box-shadow: 0 2rem 2rem rgba(12, 3, 27, .15);
    transform: translateY(-0.5rem)
}

#about .container .about__veterinarian .vet__image {
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto
}

#about .container .about__veterinarian .vet__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

#about .container .about__veterinarian .vet__info {
    text-align: left
}

#about .container .about__veterinarian .vet__info h3 {
    color: #480ca8;
    margin-bottom: .5rem;
    font-size: 1.8rem
}

#about .container .about__veterinarian .vet__info h4 {
    color: #4cc9f0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem
}

#about .container .about__veterinarian .vet__info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
    text-align: left
}

#about .container .about__veterinarian .vet__contact {
    margin-top: 1.5rem
}

#about .container .about__commitment {
    background: linear-gradient(135deg, #480ca8, #4cc9f0);
    color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem
}

#about .container .about__commitment h3 {
    color: #fff;
    margin-bottom: 2.5rem;
    font-size: 2rem
}

#about .container .about__commitment .commitment__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem
}

#about .container .about__commitment .commitment__values .value {
    background: rgba(255, 255, 255, .1);
    padding: 2rem 1.5rem;
    border-radius: .75rem;
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

#about .container .about__commitment .commitment__values .value:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-0.3rem);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2)
}

#about .container .about__commitment .commitment__values .value i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem
}

#about .container .about__commitment .commitment__values .value h4 {
    color: #fff;
    margin-bottom: .75rem;
    font-size: 1.15rem
}

#about .container .about__commitment .commitment__values .value p {
    color: rgba(255, 255, 255, .95);
    font-size: .9rem;
    line-height: 1.6
}

#about .container .about__clinic {
    background: linear-gradient(135deg, #480ca8, #4cc9f0);
    color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center
}

#about .container .about__clinic h3 {
    color: #fff;
    margin-bottom: 2.5rem;
    font-size: 2rem
}

#about .container .about__clinic .clinic__values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem
}

#about .container .about__clinic .clinic__values .value {
    background: rgba(255, 255, 255, .1);
    padding: 2rem 1.5rem;
    border-radius: .75rem;
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

#about .container .about__clinic .clinic__values .value:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-0.3rem);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2)
}

#about .container .about__clinic .clinic__values .value i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem
}

#about .container .about__clinic .clinic__values .value h4 {
    color: #fff;
    margin-bottom: .75rem;
    font-size: 1.15rem
}

#about .container .about__clinic .clinic__values .value p {
    color: rgba(255, 255, 255, .95);
    font-size: .9rem;
    line-height: 1.6
}

@media screen and (max-width: 1200px) {
    #about .container .about__commitment .commitment__values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    #about .container .about__clinic .clinic__values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media screen and (max-width: 1024px) {
    #about .container .about__veterinarian {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center
    }

    #about .container .about__veterinarian .vet__image {
        max-width: 350px
    }

    #about .container .about__veterinarian .vet__info {
        text-align: center
    }

    #about .container .about__veterinarian .vet__info p {
        text-align: center
    }

    #about .container .about__commitment {
        padding: 2.5rem
    }

    #about .container .about__commitment .commitment__values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    #about .container .about__clinic {
        padding: 2.5rem
    }

    #about .container .about__clinic .clinic__values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media screen and (max-width: 768px) {
    #about .container {
        gap: 2.5rem
    }

    #about .container .about__veterinarian {
        padding: 1.75rem
    }

    #about .container .about__veterinarian .vet__image {
        max-width: 300px
    }

    #about .container .about__veterinarian .vet__info h3 {
        font-size: 1.5rem
    }

    #about .container .about__commitment {
        padding: 2rem
    }

    #about .container .about__commitment h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem
    }

    #about .container .about__clinic {
        padding: 2rem
    }

    #about .container .about__clinic h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 600px) {
    #about .container {
        gap: 2rem
    }

    #about .container .about__veterinarian {
        padding: 1.5rem
    }

    #about .container .about__veterinarian .vet__image {
        max-width: 280px
    }

    #about .container .about__veterinarian .vet__info h3 {
        font-size: 1.3rem
    }

    #about .container .about__veterinarian .vet__info h4 {
        font-size: 1rem
    }

    #about .container .about__commitment {
        padding: 1.5rem
    }

    #about .container .about__commitment h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem
    }

    #about .container .about__commitment .commitment__values {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    #about .container .about__commitment .commitment__values .value {
        padding: 1.5rem
    }

    #about .container .about__commitment .commitment__values .value i {
        font-size: 2rem
    }

    #about .container .about__commitment .commitment__values .value h4 {
        font-size: 1rem
    }

    #about .container .about__clinic {
        padding: 1.5rem
    }

    #about .container .about__clinic h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem
    }

    #about .container .about__clinic .clinic__values {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    #about .container .about__clinic .clinic__values .value {
        padding: 1.5rem
    }

    #about .container .about__clinic .clinic__values .value i {
        font-size: 2rem
    }
}

@media screen and (max-width: 400px) {
    #about .container .about__veterinarian {
        padding: 1.25rem
    }

    #about .container .about__veterinarian .vet__image {
        max-width: 250px
    }

    #about .container .about__clinic {
        padding: 1.25rem
    }

    #about .container .about__clinic .clinic__values .value {
        padding: 1.25rem
    }
}

#specialists .container {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 2rem
}

#specialists article {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 1.5rem rgba(12, 3, 27, .1);
    position: relative;
    transition: all 700ms ease
}

#specialists article:hover {
    box-shadow: none
}

#specialists article:hover .specialist__image::before {
    left: 0;
    border-radius: 1rem
}

#specialists article:hover .specialist__socials,
#specialists article:hover .specialist__whatsapp {
    opacity: 1;
    visibility: visible
}

#specialists article .specialist__image {
    height: 25rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden
}

#specialists article .specialist__image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: linear-gradient(135deg, rgba(84, 235, 114, 0.7), rgba(72, 12, 168, 0.7));
    border-radius: 50%;
    transition: all 1s ease
}

#specialists article .specialist__details {
    margin: 1.5rem 0;
    text-align: center
}

#specialists article .specialist__socials {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

#specialists article .specialist__socials a {
    background: #fff;
    color: #480ca8;
    padding: .4rem;
    display: flex;
    font-size: .8rem;
    border-radius: 50%;
    transition: all 400ms ease
}

#specialists article .specialist__socials a:hover {
    background: #480ca8;
    color: #fff
}

#specialists article .specialist__whatsapp {
    background: #54eb72;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50%;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 1s 400ms ease
}

@media screen and (max-width: 1024px) {
    #specialists .container {
        grid-template-columns: 1fr 1fr
    }
}

@media screen and (max-width: 600px) {
    #specialists .container {
        grid-template-columns: 1fr
    }
}

.swiper {
    width: 82%;
    margin: 0 auto
}

#testimonials .container {
    width: 82%;
    margin: 0 auto
}

.swiper .swiper-wrapper {
    margin-bottom: 3rem
}

.swiper .swiper-wrapper .swiper-slide {
    background: linear-gradient(135deg, #480ca8, #4cc9f0);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    cursor: default;
    font-size: .9rem;
    text-align: center;
    height: auto;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.swiper .swiper-wrapper .swiper-slide h1,
.swiper .swiper-wrapper .swiper-slide h2,
.swiper .swiper-wrapper .swiper-slide h3,
.swiper .swiper-wrapper .swiper-slide h4,
.swiper .swiper-wrapper .swiper-slide h5 {
    color: #fff
}

.swiper .swiper-wrapper .swiper-slide p {
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1.6
}

.swiper .swiper-wrapper .swiper-slide .petowner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto
}

.swiper .swiper-wrapper .swiper-slide .petowner .avatar {
    width: 2.5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.swiper .swiper-wrapper .swiper-slide .petowner .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.swiper .swiper-wrapper .swiper-slide .petowner .patient__info {
    text-align: center
}

.swiper .swiper-pagination-bullet {
    background: #480ca8
}

@media screen and (max-width: 1024px) {
    .swiper {
        width: 90%
    }

    .swiper .swiper-wrapper .swiper-slide {
        padding: 1.5rem;
        font-size: .85rem;
        min-height: 18rem
    }

    .swiper .swiper-wrapper .swiper-slide p {
        font-size: .9rem
    }
}

@media screen and (max-width: 768px) {
    .swiper {
        width: 90%
    }

    .swiper .swiper-wrapper .swiper-slide {
        padding: 1.25rem;
        min-height: auto
    }

    .swiper .swiper-wrapper .swiper-slide p {
        font-size: .85rem;
        margin-bottom: 1rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner {
        gap: .75rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner .avatar {
        width: 2rem
    }
}

@media screen and (max-width: 600px) {
    .swiper {
        width: 90%
    }

    .swiper .swiper-wrapper .swiper-slide {
        padding: 1.25rem 1rem;
        font-size: .8rem
    }

    .swiper .swiper-wrapper .swiper-slide p {
        font-size: .8rem;
        line-height: 1.5
    }

    .swiper .swiper-wrapper .swiper-slide .petowner .avatar {
        width: 2rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner .patient__info h5 {
        font-size: .9rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner .patient__info small {
        font-size: .75rem
    }
}

@media screen and (max-width: 400px) {
    .swiper {
        width: 90%
    }

    .swiper .swiper-wrapper .swiper-slide {
        padding: 1rem .75rem
    }

    .swiper .swiper-wrapper .swiper-slide p {
        font-size: .75rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner {
        gap: .5rem
    }

    .swiper .swiper-wrapper .swiper-slide .petowner .avatar {
        width: 1.75rem
    }
}

#testimonials {
    padding: 2rem 0
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #480ca8;
    padding: 0 1rem
}

#testimonials > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    padding: 0 1rem
}

@media screen and (max-width: 1024px) {
    #testimonials h2 {
        font-size: 2.2rem
    }

    #testimonials > p {
        font-size: 1rem;
        width: 70%
    }
}

@media screen and (max-width: 768px) {
    #testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: .75rem
    }

    #testimonials > p {
        font-size: .95rem;
        width: 85%;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 600px) {
    #testimonials {
        margin-top: 4rem;
        padding: 1rem 0
    }

    #testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: .5rem
    }

    #testimonials > p {
        font-size: .85rem;
        width: 90%;
        margin-bottom: 1.5rem
    }
}

@media screen and (max-width: 400px) {
    #testimonials h2 {
        font-size: 1.3rem
    }

    #testimonials > p {
        font-size: .8rem;
        width: 95%
    }
}

#appointment .container {
    background: linear-gradient(135deg, #4cc9f0, #ffffff);
    color: #480ca8;
    padding: 5rem 3rem 3rem 3rem;
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 6%;
    border-radius: 2.5rem
}

#appointment .container h1,
#appointment .container h2,
#appointment .container h3,
#appointment .container h4,
#appointment .container h5 {
    color: #480ca8
}

#appointment .container .info p {
    margin: .5rem 0 2.5rem
}

#appointment .container .info article {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem
}

#appointment .container .info article small {
    margin-top: .5rem;
    display: block
}

#appointment .container .info article .info__icon {
    background-color: #f72585;
    color: #fff;
    padding: .5rem .5rem;
    border-radius: .5rem;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
    animation: all 100ms ease
}

#appointment .container .info article .info__icon:hover {
    background-color: #480ca8
}

#appointment .container .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem
}

#appointment .container .form__group label {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #480ca8;
    font-family: "Montserrat", sans-serif
}

#appointment .container .form__group select {
    padding: 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem
}

#appointment .container .form__group input {
    padding: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, .7);
    border-radius: 5px;
    color: #480ca8;
    font-family: "Montserrat", sans-serif
}

#appointment .container .form__group input:focus {
    outline: none;
    border-color: #4cc9f0
}

#appointment .container button {
    padding: .75rem 1rem;
    font-size: 1rem;
    background-color: #4cc9f0;
    color: #fff;
    border: none;
    border-radius: 2rem;
    cursor: pointer
}

#appointment .container button:hover {
    background-color: #f72585;
    transition: all 200ms ease
}

@media screen and (max-width: 600px) {
    #appointment .container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        width: auto;
        height: -moz-fit-content;
        height: fit-content
    }

    #appointment .container .info article {
        gap: 0
    }

    #appointment .container .info article small {
        display: flex
    }

    #appointment .container .info h2,
    #appointment .container .info p {
        text-align: center;
        display: flex
    }

    #appointment .container .form__group label {
        white-space: tfgg
    }

    #appointment .container .form__group select,
    #appointment .container .form__group input {
        width: 100%;
        box-sizing: border-box
    }
}

footer {
    background: #0c031b;
    color: rgba(255, 255, 255, .7);
    padding-top: 6rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    font-size: .85rem
}

footer .container article {
    gap: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column
}

footer .container article>div {
    display: flex;
    align-items: center;
    gap: .7rem
}

footer .container article>h3 {
    color: #fff
}

footer .container article .logo img {
    width: 7rem;
    height: auto;
    margin: 0 auto;
    transition: all 200ms ease
}

footer .container article .logo img:hover {
    transform: translateX(0.5rem)
}

footer .container article .footer__socials {
    gap: .5rem;
    font-size: 1.2rem
}

footer .container a {
    color: rgba(255, 255, 255, .7);
    transition: all 300ms ease
}

footer .container a:hover {
    color: #fff
}

footer .copyright {
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    margin-top: 3.5rem;
    border-top: .5px solid rgba(255, 255, 255, .1);
    font-size: .9rem
}

footer .copyright a {
    color: #fff
}

footer .copyright a:hover {
    color: #f72585
}

@media screen and (max-width: 1024px) {
    footer .container {
        gap: 2.5rem
    }
}

@media screen and (max-width: 600px) {
    footer .container {
        grid-template-columns: 1fr;
        text-align: center
    }

    footer .container .btn,
    footer .container .footer__socials {
        margin: 0 auto
    }

    footer .container article>div {
        justify-content: center
    }
}

/*# sourceMappingURL=style.min.css.map */