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

body {
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    height: 70px;
}

nav {
    height: 70px;
    width: 100%;
    background-color: black;
    position: fixed;
    z-index: 1000;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0px 50px;

}

nav .logo {
    font-size: 30px;
    color: #ca3969;
    font-weight: bold;
    padding: 0px 70px;
    font-family: "Anton SC", sans-serif;
    letter-spacing: 3px;

}

nav ul li {
    margin: 0 5px;
    width: auto;
}


nav ul {
    width: auto;
    display: flex;
    list-style: none;
    /* background-color: red; */
    justify-content: space-between;

}

/* 
nav ul li{
    font-size: 30px;
} */
nav ul li a {
    color: #ca3969;
    font-weight: bold;
    text-decoration: none;
    /* font-size: 0px; */
    letter-spacing: 1px;
    font-size: auto;
    padding: 15px 20px 15px 20px;
}

nav ul li a:hover {
    color: #89133d;
    background-color: white;
    border-radius: 20px;
    font-weight: bold;
}


nav .menu_bttn {
    color: white;
    cursor: pointer;
    font-size: 20px;
    display: none;
}

#click {
    display: none;
}


.img_bg {
    background-color: #ca3969;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 110vh;
    text-align: center;
    justify-content: space-evenly;
    align-self: center;
}

.intropage img {
    width: 80%;
    height: 80vh;
    /* align-items: center; */
}

.why_us {
    width: 100%;
    height: auto;
    background-color: green;
    /* justify-content: space-around   ; */
    gap: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;

}

.why_us_container {
    height: auto;
    margin-bottom: 20px;
}

.why_us_element1 {
    font-size: 30px;
    font-weight: 900;
    color: #89133d;
    margin-top: 50px;

    align-items: center;
    /* background-color: pink; */
}



.why_us_element2 {
    /* background-color: yellow; */
    /* justify-content: space-around; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    gap: 30px;

}

.why_us_element3 {
    border-color: #b1b1b0;
    border-style: groove;
    border-radius: 3px;
    box-shadow: 0px 4px 8px 10px rgba(0, 0, 0, 0.1);
    width: 380px;
    height: 70vh;
    text-align: center;
    font-size: 15px;
    display: flex;
    font-weight: 800;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0px 30px;

}


.why_us_element3 .circle {
    background-color: #89133d;
    width: 10vh;
    height: 10vh;
    align-self: center;
    border-radius: 50px;
}

.why_us_element3:hover {
    background-color: #89133d;
    color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);

}

.why_us_element3:hover .circle {
    color: white;
    background-color: white;
    transition: 0.7s ease;
}


.why_us_element3 .para {
    font-size: 17px;
    text-align: justify;
    font-weight: 300;
}

.about_us {
    width: 100%;
    height: 100vh;
    /* background-color: yellow; */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

 .about_us .about_us_image{
width: auto;
} 

.about_us img {
    height: 75%;
    width: 90%;
    padding: 0vh 0vh;
    align-self: flex-end;
}

.about_us .textpara {
    /* background-color: rebeccapurple; */
    width: 50%;
    padding: 10vh 3vh;
    height: auto;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    gap: 5%;
    align-items: center;
    /* justify-content: space-evenly; */
}


.about_us .title {
    /* background-color: red; */
    width: 95%;
    padding: 20px 20px;
    font-family: "Anton SC", sans-serif;
    height: 12vh;
    font-size: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;


}

.about_us .text2 {
    height: auto;
    max-height: 40vh;

    width: 95%;
    padding: 7px 15px;
    /* background: gray; */
    margin-bottom: 1%;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    text-align: left;
    /* justify-content:flex-start;  */
    /* align-items: flex-start; */
    font-size: 15px;
    /* align-items: center; */
}


.about_us button {
    background-color: #ca3969;
    border-radius: 8px;
    border-color: grey;
    color: white;
    border-color: none;
    height: 7vh;
    width: 40%;
    font-size: 80%;

}

@keyframes aboutus {
    0% {
        background-color: #ca3969;
    }

    50% {
        background-color: #89133d;
    }
}


.about_us button:hover {
    background-color: #89133d;
    cursor: pointer;
    animation-name: aboutus;
    animation-duration: 2s;
}


.about_us .button {
    width: 90%;
    height: 7vh;
    /* background-color: lightcoral; */
    display: flex;
    justify-content: start;
    /* font-size: 20px; */

}





footer {
    background-color: #333333;
    justify-content: space-between;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.footer_elements {
    /* background-color: red; */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    color: lightgrey;
}

.footer_element1 img {
    height: 75px;
    width: 150px;
}

.footer_element1 {
    height: auto;
    width: 300px;
    /* background-color: red; */
    align-items: start;
    /* text-align: center; */
    text-align:justify;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    color: white;
}


.footer_element1 .text {
    font-size: 20px;
    font-weight: bold;
    /* background-color: yellow; */
    /* text-align: justify */
    height: 10vh;
    width: 80px;
    margin-bottom: 10px;
}

.footer_element2 {
    height: 30vh;
    width: 80px;
    /* background-color: yellow; */
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: justify;

}
.footer_element1 .text1{
    height: 2vh;
    margin-bottom: 2px;
}
.footer_element1 .contactdetails{
    height: auto;
    width:auto;
    margin-bottom: 10px;
}


.footer_element2 a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    /* font-weight: bold; */
    text-align: justify;
    margin-bottom: 10px;
}

/* 
@media(min-width:1400){

    .why_us_element3 .para{
        font-size: 30px;
    }

} */



@media (max-width:940px) {

    nav {
        background-color: black;
        /* width: 100%; */
        justify-content: space-around;
    }

    nav .logo {
        padding: 0px 0px;
    }

    nav .menu_bttn {
        display: block;


    }

    #click:checked~.menu_bttn :before {
        content: "\f00d";
        height: 10px;
        display: block;

    }


    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: #111;
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.4s;
    }

    nav ul li {
        margin: 40px 0;
    }

    #click:checked~ul {
        left: -0%;
    }


    nav ul li a {
        color: white;
        display: block;

    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #ca3969;
    }

    .intropage img {
        height: 50vh;
    }

    .img_bg {
        width: 100%;
        height: 50vh;
    }

    .intropage img {
        width: 80%;
        height: 40vh;
    }

    .why_us_container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        /* background-color: rebeccapurple; */
    }

    .why_us {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        /* justify-content: start; */

    }

    .why_us_element1 {
        font-size: 30px;
        font-weight: 900;
        color: #89133d;
        margin-top: 50px;
        margin-bottom: 0;
        justify-content: center;
        /* align-items: center; */
        align-self: center;
    }

    .why_us_element2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 150vh;
        gap: 30px;
    }

    .why_us_element3 {
        width: 95%;
        height: 100vh;
    }

    .why_us_element3 .circle {
        background-color: #89133d;
        width: 8vh;
        height: 8vh;
        align-self: center;
        border-radius: 50px;
    }

    .why_us_element3:hover .circle {
        color: white;
        background-color: white;
        transition: 0.7s ease;
    }


    .about_us {
        width: 100%;
        height: 50vh;
        padding-bottom: 10px;
        /* background-color: yellow; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* .about_us .about_us_image{
    
    } */

    .about_us img {
        height: 30vh;
        width: 80%;
        display: none;
        /* padding:3vh 2vh; */
        align-self: flex-end;
    }

    .about_us_image {
        width: 80%;
        display: none;
        flex-direction: row;
        align-items: center;
        /* background-color: red; */
    }

    .about_us .textpara {
        /* background-color: rebeccapurple; */
        width: 90%;
        padding: 1vh 1vh;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }


    .about_us .title {
        /* background-color: red; */
        width: 90%;
        padding: 2px 2px;
        font-family: "Anton SC", sans-serif;
        height: 15vh;
        font-size: 40px;
        display: flex;
        /* justify-content: center; */
        /* align-items: center;
    text-align: center; 
    
     */

    }

    .about_us .text2 {
        height: auto;
        max-height: 30vh;

        width: 95%;
        padding: 2px 2px;
        /* background: gray; */
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;

        font-size: 15px;

    }


    .about_us button {
        background-color: #ca3969;
        border-radius: 15px;
        color: white;
        border-color: none;

        height: auto;
        width: 130px;

    }

    @keyframes aboutus {
        0% {
            background-color: #ca3969;
        }

        50% {
            background-color: #89133d;
        }
    }


    .about_us button:hover {
        background-color: #89133d;
        cursor: pointer;
        animation-name: aboutus;
        animation-duration: 2s;
    }


    .about_us .button {
        width: 95%;
        height: 7vh;
        padding: 2px 2px;
        /* background-color: lightcoral; */
        display: flex;
        justify-content: start;
    }


    footer {
        background-color: #333333;
        width: 100%;
        height: 130vh;

    }

    .footer_elements {

        width: 100%;
        height: 130vh;
        display: flex;
        flex-direction: column;
        /* background-color: red;     */
        justify-content: center;
        color: lightgrey;
    }

    .footer_element1 img {
        height: 50px;
        width: 80px;
    }

    .footer_element1 {
        height: 30vh;
        width: 89%;
        padding: 5% 4%;
        /* background-color: green; */
        align-items: start;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        font-size: 10px;

        text-decoration: none;
        color: white;

    }


    .footer_element1 .text {
        font: 30px;
    }
}