@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

html {
    overflow-x: hidden;
}

body{
    width: 95%;
    margin: 20px auto;
    background-color: rgb(252, 254, 255); /*Main Color*/
    overflow-x: hidden;
}

.logo{
    width: 150px;
    height:100px;
    border-radius: 10px;
}

h1{
    margin-top: 25px;
}

/* Nav Link Icon */

nav li {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul i {
    padding-right: 5px;
}

/* Social Icons */

.nav {
    position: relative;
}

.nav a{
    color: black;
}

nav .fb-icon {
    position: absolute;
    top: 44px;
    left: 190px;
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .twitter-icon {
    position: absolute;
    top: 40px;
    left: 220px;
}

nav .instagram-icon {
    position: absolute;
    top: 40px;
    left: 285px;
}

nav .google-icon {
    position: absolute;
    top: 40px;
    left: 252px;
    color: black;
}

nav .google-icon:hover, 
nav .fb-icon:hover, 
nav .instagram-icon:hover, 
nav .twitter-icon:hover {
    opacity: .50;
}

/* Nav Bar */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    font-family: 'poppins', sans-serif;
    background-color: rgb(252, 254, 255); /*Main Color*/
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 60%;
}

.nav-links li{
    list-style: none;
}

.nav-links li i {
    opacity: .8;
}

.nav-links a{
    text-decoration: none;
    font-weight:500;
    color: black;
    font-size: 20px;
    text-underline-offset: 3px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 3px;
    padding: 5px 7px
}

.nav-links li:last-child {
    color: rgb(255, 157, 0);
}

.nav-links a:hover{
    background-color: #000000;
    color: white;
    transition: all ease-in .2s;
}


/* Content */

.content
{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   background-image: url(./Images/water\ drops\ blue.avif);
   background-repeat: no-repeat;
   background-size: cover;
   gap: 20px;
   border-radius: 3px;
   margin-top: 20px;
   padding: 30px 40px;
   border: 3px solid gray;
}

hr{
    margin-bottom: 10px;
}
.content .textbox
{
    width: 90%;
    min-height: 70vh;
    height: auto;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.866);
    border-radius: 3px;
    padding: 0 30px;
    padding-bottom: 30px;
    margin: 30px 30px;
}

.content .textbox h1
{
    font-size: 2em;
    line-height: 2em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.content .textbox p
{
    line-height: 1.5em;
    text-indent: 4%;
    font-family: 'poppins', sans-serif;
}

.content .textbox ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.fineprint
{
    font-style: italic;
    margin-top: 30px;
}

span
{
    font-weight: bolder;
    font-size: 20px;
}

.content .textbox h3
{
    padding-bottom: 10px;
    text-align: center;
    
}

.content .textbox ul
{
    line-height: 1.5em;
    margin-bottom: 25px;
}

/* Form Box */

.formbox {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.content_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.content_wrapper img {
    margin-bottom: 30px;
}

.formbox form
{
    height: 450px;
    width: 325px;
    padding: 0 20px;
    border: 4px solid rgb(195, 195, 195);
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(49, 49, 49, 0.871);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(171, 171, 171);
}

.formbox h2
{
    margin-bottom: 10px;
    margin-bottom: 20px;
}

form input
{
    margin-bottom: 20px;
    padding: 0 10px;
    width: 90%;
    height: 30px;
    border-radius: 5px;
    border: none;
}

form textarea
{
    height: 100px;
    width: 90%;
    padding: 0 10px;
    border-radius: 5px;
    border: none;
    padding-top: 10px;
}

#button
{
    width: 70%;
    padding: 20px 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: x-large;
    font-weight: bold;
    letter-spacing: .1em;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    box-shadow: 5px 5px 5px rgb(62, 62, 62);
    text-align: center;
    transition: all .4s ease-in-out;
    background: #000;
    color: #fff;
}

#button:hover 
{
    background: rgb(251, 167, 49);
    color: #000;
    transition: all .4s ease-in-out;
}

.fb-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Faq Hero */

.faq-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cards */

.cards
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    height: 100%;
    background-image: 
    radial-gradient(
        rgba(225, 225, 225, 0.5), 
        rgba(53, 53, 53, 0.179)
    );
    margin-bottom: 40px;
    margin-right: 5px;
    padding: 0 30px;
    padding-bottom: 20px;
    border-radius: 3px;
    border: 2px solid rgb(194, 194, 194);
    box-shadow: 3px 3px 3px rgb(92, 92, 92);
}

.card
{
    height: 80%;
    width: 100%;
    padding: 10px 10px;
    background-image: 
    radial-gradient(
        rgba(176, 207, 246, 0.5), 
        rgba(38, 96, 173, 0.31)
    );
    border: none;
    border-radius: 5px;
    box-shadow: 3px 3px 3px rgba(48, 48, 48, 0.688);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: 35px 0;
}

.card h3
{
    padding: 10px 0;
    font-size: x-large;
}

.card p{
    font-family: 'poppins', sans-serif;
    font-size: medium;
}

.card1 .card2 .card3 .card4{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10px;
}

/* Bottom Contact Info */

p{
    text-align: center;
    font-weight: 500;
}

/* Bottom Links */

.links{
    width: 100%;
    height: 40px;
    margin-top: 15px;
}

.links ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.links li{
    list-style: none;
}

.links a{
    text-decoration: none;
    margin: 0 40px;
    font-weight: bolder;
    font-size: 20px;
    color: black;
    text-underline-offset: 3px;
}

.links a:hover{
    opacity: .5;
}

.links p{
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 30px;
}


/* Footer */

footer{
    width: 100%;
    height: 50px;
    background-color: #000;
    color:white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    border-radius: 3px;
}

/* Burger */

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: rgb(5, 5, 5);
    transition: all 0.3s ease;
}

@media screen and (max-width: 900px){

    body{
        overflow-x: hidden;
    }
    
    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .formbox form
{
    height: 450px;
    width: 100%;
    padding: 0 20px;
    border: 4px solid rgb(195, 195, 195);
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(49, 49, 49, 0.871);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(171, 171, 171);
}

    .formbox{
        margin-bottom: 30px;
       }

    .content_wrapper img {
        margin-bottom: 10px;
    }
   
    .nav-links{
    position: absolute;
    top: 8vh;
    right: 0px;
    height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background-color: rgb(252, 254, 255);
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    opacity: .9;
   }

   .nav-links li{
    opacity: 0;
   }

   .burger{
    display: block;
    z-index: 1;
   }
    
   .formbox{
    margin-bottom: 30px;
   }

   .cards{
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    }

    .card {
        margin: 10px 10px;
    }
    .card1, .card2, .card3, .card4{
    padding: 30px 30px;
    }

    .faq-section img {
        width: 70%;
        height: auto;
    }
}

@media screen and (max-width: 768px){
   
    body{
        overflow-x: hidden;
    }
   
    .nav-links{
    position: absolute;
    top: 8vh;
    right: 0px;
    height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background-color: rgb(252, 254, 255);
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    opacity: .9;
   }

   .nav-links li{
    opacity: 0;
   }

   .burger{
    display: block;
    z-index: 1;
   }
    
   .formbox{
    margin-bottom: 30px;
   }
}

.nav-active{
    transform: translateX(0%);
}

@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);
}
