@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200&family=Roboto:wght@300;400&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200&display=swap');

  :root {
    --dark-red: #330001;
    --red: #be181a;
    --yellow: #fab736;
    --light-yellow: #fff5e2;
    --grey: #fafafa;
    --dark-grey: #b7b7b7;
    --white: #ffffff;
    --trans-white: rgba(255, 255, 255, 0.2);
    --max-width: 1100px;
    --max-width-Laptop:100%;
    --margin-mobile: 0 1.5em;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body{
    overflow-x: hidden;
  }
  .container{
    max-width: var(--max-width);
    margin: 0 auto;
  }
  section{
    margin-top: 1.5em;
  }

  div.nav{
    background-color: var(--white);
    position:sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    max-width: var(--max-width);
    margin: auto;
  }
  .landing-mobile-css{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
  }

  nav h2.logo img{
    width: 70px;
  }
  
  nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  nav ul li a {
    text-decoration: none;
    color: black;
    transition: all 500ms;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
  }
  nav ul li a.active {
    color: var(--red);
    font-weight: 700;
  }
  nav ul li a:hover {
    text-decoration: none;
    color: var(--red);
  }
  nav h2.get_a_quote a {
    text-decoration: none;
    color: #fff;
    background-color: var(--red);
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
  }
  nav h2.get_a_quote a:hover {
    background-color: var(--yellow);
  }
  nav h2#menu{
    display: none;
  }
    /* Mobile Nav */
    .hamburger{
      height: 65px;
      display: none;
    }
    .hamburger #menu {
      font-size: 35px; 
      animation: animatezoom-rotate1 0.4s ease-out;
    }
    @keyframes animatezoom-rotate1 {
      from {
        transform: rotate(360deg);
      }
      to {
        transform: rotate(0deg);
      }
    }
    .hamburger #menu-close{
      font-size:300%;
      /* margin-top: -5px; */
      animation: animatezoom-rotate 0.4s ease-in;
    }
    @keyframes animatezoom-rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    .drop-down{
      display: none;
      background: #2d0606f5;
      backdrop-filter: blur(100px);
      position: fixed;
      padding-top: 10%;
      z-index: 100;
      width: 100%;
      height: 43%;
      font-family: poppins;
      text-align: center;
      -webkit-animation: animatezoom 0.4s ease-out;
      animation: animatezoom 0.4s ease-in;
    
    }
    @-webkit-keyframes animatezoom {
      from{
        -webkit-transform: scale(0);
      }
      to {
        -webkit-transform: scale(1);
      }
    }
    @keyframes animatezoom {
      from {
        transform: scale(0);
      }
      to {
        transform: scale(1);
      }
    }
    
    .drop-down li a{
     text-decoration: none;
     font-size: 300%;
     color: #fff;
     text-align: center;
     line-height: 230%;
     
    }
    .drop-down li a.active{
      color: #fab736;
    }

  /* Footer */

footer {
    padding: 2em 0;
    background-color: #2D0606;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    /* margin-top: 80px; */
    width: 100%;
  }
  footer .footer-contents {
    height: 55vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-contents article h3 {
    margin-bottom: 1.7em;
  }
  
  footer .footer-contents article h3.address {
    position: relative;
    top: -2em;
  }
  footer .footer-contents article ul {
    list-style: none;
    line-height: 30px;
  }
  footer .footer-contents article ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-style: oblique;
    transition: all 500ms;
  }
  
  footer .footer-contents article ul li a:hover {
    color: var(--yellow);
  }
  
  footer .copyright {
    display: flex;
    justify-content: center;
    gap: 100px;
    height: 40px;
    align-items: center;
  }
  footer .copyright-mobile{
    display: none;
  }

  /* Laptop L Design */
@media (max-width:1024px){
  .container {
    max-width: var(--max-width-Laptop);
    margin: 0 auto;
    margin: var(--margin-mobile);
        
  }
  
  /*  Nav Menu Styling */
  nav {
    max-width: var(--max-width-Laptop);
  }
  

nav ul {
  gap: 15px;
}
nav ul li a {
  font-size: 14px;
}
nav h2.get_a_quote a {
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 12px;
  position: relative;
  right: 2em; 
  top: -3px;
}
nav h2.get_a_quote a:hover {
  background-color: var(--yellow);
}
/* Footer */
article#address h3.address{
  top: -1.3em;
}

article#address p.address{
  width: 250px;
}

footer .copyright {
  display: flex;
  justify-content: center;
  gap: 100px;
  height: 40px;
  align-items: center;
}
footer .copyright-mobile{
  display: none;
}


}
  

/*Tablet */

@media (max-width:770px){

  /* Nav menus */
  nav{
    /* margin: var(--margin-mobile); */
  }
nav ul{
  display: none;
}
nav h2.get_a_quote a{
  display: none;
}
nav h2#menu {
  display: block;
}

/* Mobile Nav */
.hamburger{
  display: grid;
  align-content: center;
  font-family: poppins;
  margin-right: 5%;
 }
 .hamburger #menu{
  display:block;
  
 }
 .hamburger #menu-close{
  display: none;
 }
.hamburger #menu-close.active{
  display: block;
}
.hamburger #menu.active{
  display: none;
}
.drop-down.active{
  display: block;
  font-family: poppins;
}
.drop-down{
  height: 80%;
}
.drop-down li a{
  line-height: 200%;
  font-size: 180%;
}

/* Footer */

footer .footer-contents{
  margin: var(--margin-mobile);
}
footer article#address{
  display: none;
  
}
footer .copyright {
  display: none;
}
footer .copyright-mobile{
  display: block;
}
footer .copyright-mobile div{
  display: flex;
  justify-content: center;
  gap: 50px;
}
footer .copyright-mobile h2{
  margin: 2em 0;
  text-align: center;
}
}

/* Mobile Designs */
@media (max-width:520px){
  nav h2.logo img{
    width: 50px;
  }
  footer .footer-contents {
    height: fit-content;
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width:435px){
  div.nav{
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Footer */
  footer h3{
    font-size: 12px;
  }
  footer .footer-contents article ul li a{
    font-size: 13px;
    font-weight: 100;
  }
  footer div.copyright-mobile h2{
    font-size: 16px;
  }

}
@media screen and (max-width:375px){
  .nav{
    /* width: 100%; */
  }
}



  