@import url('https://fonts.googleapis.com/css2?family=Irish+Grover&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

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

/* --------------- Navbar -------------- */
.container_space {
    padding: 30px;
    background-color: transparent;
    position: fixed;
    z-index: 555;
    width: 100%;
}

@media screen and (max-width:850px) {
    .container_space {
        padding: 10px;
    }
}

.inner_navbar {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:850px) {
    .inner_navbar {
        position: relative;
    }
}

.logo {
    font-family: Irish Grover;
    color: #FF0000;
    font-size: 35px;
    cursor: pointer;
    width: 50%;
}

.navbar_manu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;

    ul {
        list-style: none;
        display: flex;
        gap: 40px;
        font-size: 18px;
        font-family: Irish Grover;

        li {
            a {
                text-decoration: none;
                color: black;
                transition: 0.3s;
            }
        }

        li>a:hover {
            text-shadow: 0px 4px 0px #84848491;
            font-size: 22px;
        }
    }
}

.navbar_manu2 {
    display: none;
}

@media screen and (max-width:850px) {
    .navbar_manu {
        display: none;
    }

    .navbar_manu2 {
        width: 80%;
        padding: 30px 0px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 100px;
        right: 0;

        background-color: white;
        border-radius: 20px;
        transition: 0.3s;
        animation: openBox 0.5s ease-in-out forwards;
        overflow: hidden;

        ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 40px;
            font-size: 18px;
            font-family: Irish Grover;

            li {
                a {
                    text-decoration: none;
                    color: black;
                    transition: 0.3s;
                }
            }

            li>a:hover {
                text-shadow: 0px 4px 0px #84848491;
                font-size: 22px;
            }
        }
    }

    @keyframes openBox {
        0% {
            height: 0px;
        }

        100% {
            height: 400px;
        }
    }
}

.nav_btn {
    padding: 14px 40px;
    border-radius: 20px;
    background-color: #FF4800;
    border: none;
    font-size: 20px;
    font-family: Irish Grover;
    color: white;
    cursor: pointer;
}


.hamburger {
    display: none;
}

@media screen and (max-width:850px) {
    .hamburger {
        display: block;
    }
}



/* -------------------------- Hero section ------------------ */
.main_container {
    display: flex;
    flex-wrap: wrap-reverse;
    width: 100%;
}


.hero1_bg {
    background: #002C52;
    width: 50%;
}

@media screen and (max-width:850px) {
    .hero1_bg {
        width: 100%;
    }
}

.hero2_bg {
    background: #00554E;
    width: 50%;
}

@media screen and (max-width:850px) {
    .hero2_bg {
        width: 100%;
    }
}


.hero1_bg_inner1 {
    padding: 250px 50px 150px 50px;
    position: relative;

    h2 {
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 80px;
        line-height: 100%;
        letter-spacing: 0%;
        color: white;
    }

    p {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 29px;
        line-height: 100%;
        letter-spacing: 0%;
        color: white;
        padding: 30px 0px 50px 0px;
    }

    button {
        width: 30%;
        border-radius: 20px;
        background-color: #FF4800;

        font-family: Inria Sans;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        padding: 14px 20px;

        border: none;
        color: white;
    }
}

@media screen and (max-width:850px) {
    .hero1_bg_inner1 {
        padding: 50px 10px 50px 20px;
        position: relative;

        h2 {
            font-family: Irish Grover;
            font-weight: 400;
            font-size: 40px;
            line-height: 100%;
            letter-spacing: 0%;
            color: white;
        }

        p {
            font-family: Inria Sans;
            font-weight: 400;
            font-size: 15px;
            line-height: 100%;
            letter-spacing: 0%;
            color: white;
            padding: 15px 0px 25px 0px;
        }

        button {
            width: 40%;
            border-radius: 10px;
            background-color: #FF4800;

            font-family: Inria Sans;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            padding: 8px 12px;

            border: none;
            color: white;
        }
    }
}

.foot {
    position: absolute;
    right: 15%;
    top: 20%;
}

@media screen and (max-width:850px) {
    .foot {
        position: absolute;
        right: 15%;
        top: 8%;
        width: 15%;
    }
}

.hero1_bg_inner2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0px;

    .dog_img {
        width: 100%;
    }

    .foot2 {
        position: absolute;
        top: 15%;
        left: 5%;
        width: 15%;
    }

    .foot3 {
        position: absolute;
        bottom: 10%;
        right: 5%;
        width: 15%;
    }
}

@media screen and (max-width:850px) {
    .hero1_bg_inner2 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 130px 20px 50px 20px;

        .dog_img {
            width: 70%;
        }

        .foot2 {
            position: absolute;
            top: 25%;
            left: 5%;
            width: 15%;
        }

        .foot3 {
            position: absolute;
            bottom: 10%;
            right: 5%;
            width: 15%;
        }
    }
}


/* ------------------------ section 2 About section ------------------ */
.main-bg {
    background-color: #FFB1BE;
    width: 100%;
}

.main-bg_inner {
    display: flex;
    justify-content: center;
    position: relative;
}

.main_bg_inner_img {
    width: 100%;
    padding: 75px 150px;
}

@media screen and (max-width:850px) {
    .main-bg_inner {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .main_bg_inner_img {
        width: 100%;
        padding: 40px 20px;
    }
}

.main_bg_inner_desc {
    padding: 188px 20px;

    .main_bg_inner_desc_heading {
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 67px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #202020;
    }

    .main_bg_inner_desc_desc {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        padding: 30px 70px 70px 0px;
    }

    button {
        background-color: #FF4800;
        padding: 20px 0px;
        width: 25%;
        color: white;

        border: none;
        border-radius: 20px;
        font-size: 22px;
        font-family: Inria Sans;
        cursor: pointer;
    }
}

.foot4 {
    position: absolute;
    right: 5%;
    bottom: 10%;
}

@media screen and (max-width:850px) {
    .main_bg_inner_desc {
        padding: 18px 20px;

        .main_bg_inner_desc_heading {
            font-family: Irish Grover;
            font-weight: 400;
            font-size: 37px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #202020;
        }

        .main_bg_inner_desc_desc {
            font-family: Inria Sans;
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0%;
            padding: 10px 0px 20px 0px;
            opacity: 0.7;
        }

        button {
            background-color: #FF4800;
            padding: 10px 0px;
            width: 30%;
            color: white;

            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-family: Inria Sans;
            cursor: pointer;
        }
    }

    .foot4 {
        position: absolute;
        right: 5%;
        bottom: 2%;
        width: 15%;
    }
}



/* ---------------------- Section 3 -----------------  */
.sec3_bg {
    background-color: #002C52;
    width: 100%;
    padding: 70px;
    position: relative;
}

@media screen and (max-width:850px) {
    .sec3_bg {
        background-color: #002C52;
        width: 100%;
        padding: 25px;
    }
}

.sec3_bg_heading {
    font-family: Irish Grover;
    font-weight: 400;
    font-size: 67px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: white;
}

@media screen and (max-width:768px) {
    .sec3_bg_heading {
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: white;
    }
}

.carousel_main {
    padding: 100px 0px;
    width: 100%;
    display: flex;
    gap: 50px;
}

@media screen and (max-width:850px) {
    .carousel_main {
        padding: 50px 0px;
        width: 100%;
        display: flex;
        gap: 0px;
    }
}

.Card {
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 30px;

    padding: 24px;
    width: 400px;

}

@media screen and (max-width:850px) {
    .Card {
        background-color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 30px;

        padding: 24px;
        width: 300px;

        img {
            width: 100%;
        }

    }
}

.h3_text {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
}

.p_desc {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: black;
}

.foot5 {
    position: absolute;
    width: 5%;
}

.foot6 {
    position: absolute;
    width: 5%;
    right: 5%;
    bottom: 5%;
}

@media screen and (max-width:850px) {
    .h3_text {
        font-family: Inria Sans;
        font-weight: 700;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
    }

    .p_desc {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
    }

    .foot5 {
        display: none;
    }

    .foot6 {
        display: none;
    }
}



/* ------------------ Section 4 ----------------- */
.main_sec4_bg {
    background-color: #5A0170;
    padding: 50px;
}

.sec4_heading {
    color: white;
    font-family: Irish Grover;
    font-weight: 400;
    font-size: 67px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.inner_contin {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

@media screen and (max-width:1024px) {
    .inner_contin {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
}

@media screen and (max-width:850px) {
    .main_sec4_bg {
        background-color: #5A0170;
        padding: 25px;
    }

    .sec4_heading {
        color: white;
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 25px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        padding-bottom: 20px;
    }

    .inner_contin {
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: start;
        gap: 50px;
    }
}

.silver {
    background-color: white;
    border-radius: 500px;
    text-align: center;
    width: 380px;
    height: 500px;
    padding: 50px 70px;

    .lable {
        font-family: Inria Sans;
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
        letter-spacing: -2%;
        text-align: center;
        color: gray;
    }

    h5 {
        color: gray;
        font-family: Inria Sans;
        font-size: 46px;
    }

    .items {
        text-align: start;

        ul {
            padding-bottom: 20px;

            li {
                color: #757575;
                font-family: Inria Sans;
                padding-top: 20px;
            }
        }
    }

    .btns {
        background-color: #FF4800;
        color: white;
        padding: 12px;
        border: none;
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
    }
}

.premium {
    background-color: #FF4800;
    border-radius: 500px;
    text-align: center;
    width: 380px;
    height: 570px;
    padding: 50px 70px;
    margin-top: 20%;

    .lable {
        font-family: Inria Sans;
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
        letter-spacing: -2%;
        text-align: center;
        color: #ffffff;
    }

    h5 {
        color: #ffffff;
        font-family: Inria Sans;
        font-size: 46px;
    }

    .items {
        text-align: start;

        ul {
            padding-bottom: 20px;

            li {
                color: #ffffff;
                font-family: Inria Sans;
                padding-top: 20px;
            }
        }
    }

    .btns {
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        padding: 12px;
        border: none;
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
    }
}

.Gold {
    background-color: white;
    border-radius: 500px;
    text-align: center;
    width: 380px;
    height: 500px;
    padding: 50px 70px;

    .lable {
        font-family: Inria Sans;
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
        letter-spacing: -2%;
        text-align: center;
        color: gold;
    }

    h5 {
        color: gold;
        font-family: Inria Sans;
        font-size: 46px;
    }

    .items {
        text-align: start;

        ul {
            padding-bottom: 20px;

            li {
                color: #757575;
                font-family: Inria Sans;
                padding-top: 20px;
            }
        }
    }

    .btns {
        background-color: #FF4800;
        color: white;
        padding: 12px;
        border: none;
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
    }
}

@media screen and (max-width:850px) {
    .silver {
        background-color: white;
        border-radius: 500px;
        text-align: center;
        width: 245px;
        height: 380px;
        padding: 30px 40px;

        .lable {
            font-family: Inria Sans;
            font-weight: 600;
            font-size: 26px;
            line-height: 120%;
            letter-spacing: -2%;
            text-align: center;
            color: gray;
        }

        h5 {
            color: gray;
            font-family: Inria Sans;
            font-size: 32px;
        }

        .items {
            text-align: start;

            ul {
                padding-bottom: 20px;

                li {
                    color: #757575;
                    font-family: Inria Sans;
                    padding-top: 10px;
                }
            }
        }

        .btns {
            background-color: #FF4800;
            color: white;
            padding: 12px;
            border: none;
            width: 100%;
            border-radius: 10px;
            cursor: pointer;
        }
    }

    .premium {
        background-color: #FF4800;
        border-radius: 500px;
        text-align: center;
        width: 335px;
        height: 515px;
        padding: 40px 50px;
        margin-top: -30%;
        z-index: 444;

        .lable {
            font-family: Inria Sans;
            font-weight: 600;
            font-size: 26px;
            line-height: 120%;
            letter-spacing: -2%;
            text-align: center;
            color: #ffffff;
        }

        h5 {
            color: #ffffff;
            font-family: Inria Sans;
            font-size: 32px;
        }

        .items {
            text-align: start;

            ul {
                padding-bottom: 20px;

                li {
                    color: #ffffff;
                    font-family: Inria Sans;
                    padding-top: 15px;
                }
            }
        }

        .btns {
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            padding: 12px;
            border: none;
            width: 100%;
            border-radius: 10px;
            cursor: pointer;
        }
    }

    .Gold {
        background-color: white;
        border-radius: 500px;
        text-align: center;
        width: 245px;
        height: 380px;
        padding: 40px 50px;
        margin-top: -25%;

        .lable {
            font-family: Inria Sans;
            font-weight: 600;
            font-size: 26px;
            line-height: 120%;
            letter-spacing: -2%;
            text-align: center;
            color: gold;
        }

        h5 {
            color: gold;
            font-family: Inria Sans;
            font-size: 32px;
        }

        .items {
            text-align: start;

            ul {
                padding-bottom: 20px;

                li {
                    color: #757575;
                    font-family: Inria Sans;
                    padding-top: 10px;
                }
            }
        }

        .btns {
            background-color: #FF4800;
            color: white;
            padding: 12px;
            border: none;
            width: 100%;
            border-radius: 10px;
            cursor: pointer;
        }
    }

}



/* ----------- Section 5 testimonial -------------- */
.sec5_bg {
    background-color: #02504F;
    width: 100%;
    padding: 100px;
    position: relative;
}

.foot7 {
    position: absolute;
    bottom: 10%;
}

@media screen and (max-width:850px) {
    .sec5_bg {
        background-color: #02504F;
        width: 100%;
        padding: 20px;
    }

    .foot7 {
        display: none;
    }
}

.main_sec5 {
    display: flex;
    justify-content: center;
    gap: 100px;
}

@media screen and (max-width:850px) {
    .main_sec5 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

.sec5_bg_inner1 {
    width: 50%;

    .imgs {
        width: auto;
    }
}

@media screen and (max-width:850px) {
    .sec5_bg_inner1 {
        width: 100%;

        .imgs {
            width: 100%;
        }
    }
}

.sec5_bg_inner2 {
    width: 50%;

    h3 {
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 57px;
        line-height: 100%;
        letter-spacing: 0%;
        color: white;
    }

    .text_sec5 {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 29px;
        line-height: 100%;
        letter-spacing: 0%;
        color: white;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width:850px) {
    .sec5_bg_inner2 {
        width: 100%;

        h3 {
            font-family: Irish Grover;
            font-weight: 400;
            font-size: 37px;
            line-height: 100%;
            letter-spacing: 0%;
            color: white;
        }

        .text_sec5 {
            font-family: Inria Sans;
            font-weight: 400;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: 0%;
            color: white;
            padding-top: 25px;
            padding-bottom: 25px;
        }
    }
}

.cardis {
    width: 570px;
    height: 350px;
    box-shadow: 80px 80px 0px 0px #ffffff24 inset;
    border-radius: 57px;
    background-color: #d9d9d91e;
    padding: 50px;
}

@media screen and (max-width:850px) {
    .cardis {
        width: 100%;
        height: 250px;
        box-shadow: 40px 40px 0px 0px #ffffff24 inset;
        border-radius: 57px;
        background-color: #d9d9d91e;
        padding: 25px;
    }
}

.cardis_inner1 {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;

    .cardis_name {
        font-family: Inria Sans;
        font-weight: 600;
        font-size: 22px;
        line-height: 150%;
        letter-spacing: 0%;
        color: white;
    }

    .stars {
        display: flex;
        gap: 10px;
        color: gold;
        font-size: 15px;
    }
}

.p_text_desc {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: white;
    padding: 50px 0px 0px 0px;
}

@media screen and (max-width:850px) {
    .p_text_desc {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: 0%;
        color: white;
        padding: 10px 0px 0px 0px;
    }
}




/* -------------- FOOter ------------------- */

.main_footer {
    background-color: #002C52;
    width: 100%;
    padding: 90px 45px;
}

.spce_footer {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width:850px) {
    .main_footer {
        background-color: #002C52;
        width: 100%;
        padding: 50px 20px;
    }

    .spce_footer {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
    }
}

.Footer_1 {
    width: 25%;

    h2 {
        font-family: Irish Grover;
        font-weight: 400;
        font-size: 72px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #FF5353;
    }

    p {
        font-family: Inria Sans;
        font-weight: 400;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0%;
        color: white;
    }
}

@media screen and (max-width:850px) {
    .Footer_1 {
        width: 100%;

        h2 {
            font-family: Irish Grover;
            font-weight: 400;
            font-size: 72px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #FF5353;
        }

        p {
            font-family: Inria Sans;
            font-weight: 400;
            font-size: 22px;
            line-height: 100%;
            letter-spacing: 0%;
            color: white;
        }
    }
}

.Footer_2 {
    h5 {
        font-family: Inria Sans;
        font-weight: 700;
        font-size: 29px;
        line-height: 180%;
        letter-spacing: 0%;
        color: white;
    }

    a {
        text-decoration: none;
        color: white;
        font-family: Inria Sans;
        line-height: 50px;
    }
}

@media screen and (max-width:850px) {
    .Footer_2 {
        h5 {
            font-family: Inria Sans;
            font-weight: 700;
            font-size: 29px;
            line-height: 150%;
            letter-spacing: 0%;
            color: white;
            padding-top: 25px;
        }

        a {
            text-decoration: none;
            color: white;
            font-family: Inria Sans;
            line-height: 30px;
        }
    }
}

.Footer_3 {
    h5 {
        font-family: Inria Sans;
        font-weight: 700;
        font-size: 29px;
        line-height: 180%;
        letter-spacing: 0%;
        color: white;
    }

    a {
        text-decoration: none;
        color: white;
        font-family: Inria Sans;
        line-height: 50px;
    }
}

@media screen and (max-width:850px) {
    .Footer_3 {
        h5 {
            font-family: Inria Sans;
            font-weight: 700;
            font-size: 29px;
            line-height: 150%;
            letter-spacing: 0%;
            color: white;
            padding-top: 30px;
        }

        a {
            text-decoration: none;
            color: white;
            font-family: Inria Sans;
            line-height: 30px;
        }
    }
}

.Footer_4 {
    h5 {
        font-family: Inria Sans;
        font-weight: 700;
        font-size: 29px;
        line-height: 180%;
        letter-spacing: 0%;
        color: white;
    }

    p {
        text-decoration: none;
        color: white;
        font-family: Inria Sans;
        line-height: 50px;
        width: 70%;
    }
}

@media screen and (max-width:850px) {
    .Footer_4 {
        h5 {
            font-family: Inria Sans;
            font-weight: 700;
            font-size: 29px;
            line-height: 150%;
            letter-spacing: 0%;
            color: white;
            padding-top: 30px;
        }

        p {
            text-decoration: none;
            color: white;
            font-family: Inria Sans;
            line-height: 30px;
            width: 100%;
        }
    }
}

.copy{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-top: 2%;
}

/* ---------- Container for all -------------- */
.container {
    max-width: 1440px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

#animals {
    transition: 0.5s;
}