
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.header{
    background-color: #000000;
    border-bottom: 1px solid rgb(122, 122, 122);
    display: flex;
    
}

.icon{
    position: relative;
    top:5px;
}

.logo-container{
    padding: 1.25rem 0.5rem;
    color:#39a9f3;
    font-weight: bold;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Michroma', sans-serif;
    font-weight: bolder;
    font-size: 20px;

}

nav{
    color: rgb(161, 161, 161);
    float: right;
    text-align: right;
    justify-content: right;
    position: absolute;
    right: 20px;
    top: -9px;
    
}

nav .mainMenu{
    display: flex;
    line-height: 60px;
    list-style: none;
    font-size: 14px;
    
   

}

nav .mainMenu li a{
    display: inline-block;
    line-height: 50px;
    padding: 15px 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    color: rgb(233, 233, 233);
    font-weight: bold;

}

nav .mainMenu li a:hover{
    text-decoration: underline;
    color: white;
}

nav .openMenu{
    font-size: 2.5rem;
    margin: 20px;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu , i {
    font-size: 1.5rem;
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
    color: white;
}

nav .openMenu{
    position: absolute;
    right: -30px;
    bottom: -17px;
}


.hero {
    background-color: white;
    height: 600px;
    padding-left: 80px;
    padding-top: 50px;
}

.hero .statement-container .p2 {
    
    font-size: 16px;
    padding-bottom: 10px;
    margin-right: 100px;
    font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.hero .p1 {
    font-size: 50px;
    flex: 1;
    color:#39a9f3;
    padding-right: 20px;
  font-family: "Libre Franklin", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;

}

.hero .p3 {
    font-size: 40px;
    padding-top: 10px;
    font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.hero .p4 {
    font-size: 25px;
    
}


.statement-container {
    background-color: white;
    height: 200px;
    
    height: 400px;
    display: flex;
    width: 100%;
    
    
}

.photo-container {
   
   position: relative;
   right: 3.75rem;
   
   }


.card-container {
    background: linear-gradient(rgb(239, 239, 255), rgb(177, 224, 240)) ;
    width: 800px;
    border-radius: 5px;
    margin: 20px;
    padding: 20px;
    margin-left: 200px;
    box-shadow: 10px 10px 15px rgba(82, 182, 248, 0.6);

    
}

.card-container:hover {
    box-shadow: 13px 13px 20px rgba(82, 182, 248, 0.7);
}

.card-text {
    
    width: 700px;
    margin-left:50px;
    color: rgb(0, 0, 0);
    font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    
    
}

.card-container .card-header {
    text-align: center;
    padding-bottom: 5px;
    padding-top: 20px;
    font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    
}

.divider {
    border: solid 0.5px black;
    margin-bottom: 10px;
}

.footer {
    
    background-color: #000000;
    border-bottom: 1px solid rgb(255, 255, 255);
    display: flex-grid;
    margin-top: 0%;
    height: 200px;
}

.footer p{
    color: white;
    text-align: center;
    align-items: center;
    flex: 1;
    padding: 10px;
    font-family: "Quicksand", serif;
    font-size: 16px;
    
}

 





body { background:rgb(248, 248, 248); }
form { max-width:350px; margin:50px auto; }

.feedback-input {
  color:rgb(0, 0, 0);
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #4d71e9;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:3px solid #1723c7; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#3993dd;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#31e0ec; }




@media(max-width: 800px){

    nav {
        width:max-content;
    }
    nav .mainMenu{
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(0, 0, 0);
        transition: top 1s ease;
        display: none;
        
    }

    nav .mainMenu .closeMenu{
        display: block;
        position: absolute;
        top: 0;
        right: 0;


    }

    nav .openMenu{
            display: block;

    }

    nav .mainMenu li a:hover {
        color:#3993dd;
    }

    .mainMenu i {
        display: inline-block;
        padding: 12px;
        
    }

    .hero img{
        position: relative;
        top: 195px;
        margin-top: 190px;
        justify-content: center;
        margin-left: 50px;
        
    }

    .hero .p1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero .p2 {
        text-align: center;
        position: relative;
    
    }

    .hero .p3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .statement-container .p2 {
        text-align: center;
        position: absolute;
    }

    .card-header{
        position: relative;
        left: 40px;
        margin-top: -10px;
    }

    .divider{
        margin-bottom: 25px;
    }
    
    .hero .card-container {
        position: relative;
        text-align: center;
        font-size: 12px;
        margin-left: 1px;
        width: 380px;
        right: 30px;
    }

    .card-container p{
        padding-right: 1px;
        text-align: center;
        align-items: center;
        width: 250px;
    }
      
    
    

    

    .footer {
        margin-top: 18.75rem;
        width: 100%;
    }
}

@media(max-width: 432px){

    .hero img{
        position: relative;
        right: 0rem;
        top: 22rem;
        
    }

    .hero .card-container {
        width: 300px;
        text-align: center;

    }

    

    .hero .card-header {
        text-align: center;
        padding-right: 57px;
    }

    .hero .card-text {
        width: 200px;
        text-align: center;
        padding-right: 26px;
    }

   

    .footer {
        margin-top: 35rem;
        width: 100%;
    }

    
}
