* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
  }
  
  /* h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Merriweather", serif;
  } */
  
  .header a {
    font-family: "Roboto", sans-serif;
  }
  
  .header button {
    font-family: "Roboto", sans-serif;
  }
  
  .main {
    height: 100%;
    width: 100%;
  }
  
  .header {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.5px solid rgb(167, 163, 163);
  }
  
  .header h1 {
    margin: 0;
    color: #003566;
    font-size: 1.8em;
  }
  
  .header a {
    color: black;
    text-decoration: none;
    margin: 0 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 5px;
  }
  
  .header a:hover {
    text-decoration: none;
    color: #022d55;
    background-color: lightgrey;
    
  }
  
  .header button {
    background-image: linear-gradient(to right, #022d55, #0081a7);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: white;
  }
  
  .header button:hover {
    background-image: linear-gradient(to right, #73b2ee, #1f588d);
  }
  .header i{
      display: none;
      font-size: 16px;
      padding: 0 5px;
      border: 2px solid lightgray;
      border-radius: 5px;
      cursor: pointer;
  
  }
  .header i:hover{
    background-color: lightgray;
  }
  .sidenav{
    width: 250px; 
    height: 100vh;
    position: fixed;
    right: 0;
    top:0;
    z-index: 999;
    /* background-color: rgb(255,255,255,0.2);
    backdrop-filter: blur(10px); */
    background-color: white;
    box-shadow: -10px 0 10px rgb(0,0,0,0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 8px;
    animation: slideIn 0.5s forwards;
  }
  @keyframes slideIn {
    from{
      transform: translateX(100%);
    }
    to{
      transform: translateX(0);
    }
    
  }
  .sidenav i{
    margin:12px 0 12px 8px; 
    cursor: pointer;
    border: 1px solid lightgray;
    padding: 0 5px;
    border-radius: 5px;
    
  }
  .sidenav i:hover{
    background-color: lightgray;
  }
  
  .sidenav button{
    background-image: linear-gradient(to right, #022d55, #0081a7);
    margin: 8px 5px;
    padding: 8px 12px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    color: white;
    box-shadow: 0px 5px 3px rgb(0,0,0,0.2);
  }
  .sidenav button:hover{
    background-image: linear-gradient(to right, #064277, #12395d);
  }
  .sidenav a{
    margin: 5px 0px;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    color: black;
  }
  .sidenav a:hover{
    background-color: lightgray;
    color: #022d55;
  }
 

.contactImage{
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url("austin-distel-gUIJ0YszPig-unsplash.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactImage h1{
  color: rgb(206, 204, 240);
  font-size: 48px;
  opacity: 0;
  animation: 1.5s show ease forwards;
  transition: 1.5s;
}
@keyframes show {
  100%{
    opacity: 1;
  }
}

.contact-us {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 40px;
 
}
.contactbox h1 {
  font-size: 24px;
  color: #022d55;
  font-weight: 600;
  margin: 5px 0px 5px 0px;
}
.contactbox h4 {
  color: black;
  font-size: 32px;
}
.contact-container {
 
  width: 100%;
  height: 80%;

  display: flex;
  flex-direction: row-reverse;
}
.contact-container .contactimg {
  width: 50%;
  height:100%;
 
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.contact-container .contactimg{
  opacity: 0;
  transform: translateX(50px);
  animation: slide 1s linear forwards;
}
@keyframes slide {
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.contactimg img,
.blankdiv {
  width: 65%;
  height: 65%;
  border-radius: 8px;
}
.contactimg .blankdiv {
  border: 5px solid #022d55;
  margin: 35px 55px;
}
.contactimg img {
  position: absolute;
  top: 15%;
  right: 20%;
}
.contact-container .contact-form {
  width: 50%;
  height: 100%;

  display: flex;
  flex-direction: column;
  text-align: center;
  /* justify-content: center; */
  align-items: center;
}
.contact-form form {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 20px 20px;
}
.contact-form form{
  opacity: 0;
  transform: translateX(-50px);
  animation: slide 1s linear forwards;
}
@keyframes slide {
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
form h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #022d55;
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

form button {
  width: 40%;
  background-color: #022d55;
  color: white;
  border: none;

  padding: 12px 10px;
  border-radius: 22px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: white;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  color: #022d55;
  border: 2px solid #022d55;
  font-weight: 700;
}
form ul {
  display: flex;
  list-style: none;
  margin-top: 20px;
  justify-content: center;
}
form ul li {
  padding: 10px 10px;
}
form ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 12px;
  background-color: #022d55;
  border-radius: 50px;
}
form ul li a:hover {
  background-color: white;
  color: #022d55;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}







































































 

  



footer {
  background-color: #111111;
  color: white;
  padding: 15px 0px;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 15px;
}
.footer-content .address p {
  color: #777777;
}

.footer-content .address i {
  margin-right: 10px;
}

.list li a {
  color: #777777;
  position: relative;
  text-align: center;
}
.list li a:hover{
  margin-left: 8px;
  transition: all 0.3s ease;
  color: whitesmoke;
}
.social-media li {
  display: inline-block;
  margin: 10px 15px;

  /* text-align: center; */
}
.social-media li a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 60px;
  border: 1px solid #777777;
  color: #777777;
}
.social-media li a:hover {
  color: #022d55;
  border: none;
  background-color: whitesmoke;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.footer-content div {
  flex: 1;
  margin: 8px;
  min-width: 200px;
}

.footer-content h4 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.footer-content p,
.footer-content ul,
.footer-content a {
  margin: 5px 0;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  padding: 5px 0;
  font-size: 17px;
}

.footer-bottom p {
  margin: 0;
  color: #777777;
}
  

@media (max-width: 1024px) {
  .header h1 {
    font-size: 1.5em;
  }
  .header a {
    font-size: 15px;
  }
  .header button {
    font-size: 15px;
    padding: 9px 18px;
  }
  .contact-container .contactimg {
   
    height: 80%;
  }
 
  .footer-content h4 {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5em;
  }

  .header button {
    display: none;
  }

  .headerLinks {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .headerLinks a {
    display: none;
  }
  .headerLinks i {
    display: block;
  }
  .sidenav {
    display: none;
  }

  .contact-us {
    width: 100%;
    height: 150vh;
    justify-content: start;
  }
  .contact-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 5px;
  }
  .contact-container .contactimg {
    width: 70%;
    height: 60%;
    position: relative;
  }
  .contactimg img {
    width: 80%;
    height: 60%;
    position: absolute;
    top: 20%;
    border-radius: 10px;
  }
  .contactimg .blankdiv {
    width: 80%;
    height: 60%;
    margin: 30px 0px 20px 30px;
    border: 6px solid #022d55;
    border-radius: 10px;
  }
  .contact-container .contact-form {
    width: 100%;
    height: 80%;
  }
  .contact-form form {
    width: 100%;
    height: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-content h4 {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px;
  }
  .header h1 {
    font-size: 1.5em;
  }
  .header a {
    font-size: 13px;
    margin: 5px 0;
  }
  .header button {
    font-size: 13px;
    padding: 7px 14px;
  }
  .header i {
    display: block;
  }
  
  .contact-us {
    height: 110vh;
    width: 100%;
    padding: 0px 10px;
  }

  .contactbox h1 {
    font-size: 24px;
  }
  .contactbox h4 {
    font-size: 30px;
  }
  .contact-container .contactimg {
    width: 90%;
    height: 55%;
  }
  .contactimg .blankdiv {
    border: 5px solid #022d55;
  }
  .contact-container .contact-form {
    width: 100%;
    height: 60%;
  }
  .contact-form form {
    padding-top: 0px;
    margin-top: 0px;
    align-items: center;
  }
  form h1 {
    font-size: 20px;
  }
  form button {
    width: 100%;
    font-size: 20px;
    padding: 10px 0px;
  }

  .footer-content {
    padding: 15px;
  }
  .footer-content h4 {
    font-size: 0.9em;
  }
}

@media (max-width: 320px) {
  .header {
    padding: 5px;
  }
  .header h1 {
    font-size: 1em;
  }
  .header a {
    font-size: 12px;
  }
  .header button {
    font-size: 12px;
    padding: 5px 10px;
  }
  .header i {
    display: block;
  }
  .contact-us .contactbox h1 {
    font-size: 18px;
  }
  .contact-us .contactbox h4 {
    font-size: 24px;
  }

  .footer-content {
    padding: 10px;
  }
  .footer-content div {
    margin: 5px;
  }
  .footer-content h4 {
    font-size: 0.8em;
  }
}


   










  