* {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
}
body {
    width: 100%;
    height: 100vh;
    display: grid;
    align-items:  center;
    background-color: bisque;
    font-family: 'Poppins', sans-serif;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Raleway', sans-serif;
}

.contact-in {
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
    background-color: aqua;
}
.header{
    min-height: 350px;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(contactsus.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center;
}
#nav-menu-container {
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center; 
    border: 1px solid transparent;
}
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    right: 0;
    z-index: 99;
  }
  
  .nav-menu li {
    position: relative;
    white-space: nowrap;
  }
  
  .nav-menu > li {
    float: right;
  }
  
  .nav-menu li:hover > ul,
  .nav-menu li.sfHover > ul {
    display: inline-flex;
  }
  
  .nav-menu ul ul {
    top: 0;
    right: 100%;
  }
  
  .nav-menu ul li {
    min-width: 180px;
  }
  
  /* Nav Menu Arrows */
  .sf-arrows .sf-with-ul {
    padding-right: 30px;
  }

/* Nav Meu Container */
@media (max-width: 368px) {
    #nav-menu-container {
      display: block;
    }
  }
  
  /* Nav Meu Styling */
  .nav-menu a {
    padding: 0 8px 0px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    outline: none;
  }
  /* for hovering the nav bar  */
  .nav-menu li:hover > a {
    color: #f8b600;
  }
  /* positioning the bar in the slab   */
  .nav-menu > li {
    margin-left: 10px;
  }
  /* box cascading from the tabs   */
  .nav-menu ul {
    margin: 22px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
  }
  
  .nav-menu ul li {
    transition: 0.3s;
  }
  /* letters in the box features cascading   */
  .nav-menu ul li a {
    padding: 5px 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 12px;
    text-transform: none;
  }
  /*  hovering after cascading   */
  .nav-menu ul li:hover > a {
    color: #f8b600;
  }
  /* cascading 2nd level features distance */
  .nav-menu ul ul {
    margin-right: 10px;
    margin-top: 0;
  }
  
  /* Mobile Nav Toggle */ /* the nav bars details    */
  #mobile-nav-toggle {
    float: right;
    z-index: 999;
    margin-top: 4px;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
  }
  /* the nav bars features    */
  #mobile-nav-toggle i {
    color: #fff;
    font-weight: 900;
  }
  /* when the nav bar lines are to appear & how   */
  @media (max-width: 300px) {
    #mobile-nav-toggle { 
      display: inline; 
      position: relative;
    }
    #nav-menu-container { 
      display: inline-block;   
    }
  }
  
  /* Mobile Nav Styling */
  #mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
  }
  
  #mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;  
  }
  /* aside navigation downward arrangement  */
  #mobile-nav ul li {
    position: relative; 
    display: grid;
  }
  /* mobile nav aside */ 
  #mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 400;
  }
  /* hovering the aside navigation */
  #mobile-nav ul li a:hover {
    color: #fff;
  }
  /* how inside 2nd cascading happens  */
  #mobile-nav ul li li {
    padding-left: 30px;
  }
  /* indicators of the downward arrows  */
  #mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
  }
  
  #mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #f8b600;
  }
  
  #mobile-nav ul .menu-has-children li a {
    text-transform: none;
  }
  /* area selected or being focused on */
  #mobile-nav ul .menu-item-active {
    color: yellow;
  }
  
  #mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
  }
  
  /* Mobile Nav body classes */
  body.mobile-nav-active {
    overflow: hidden;
  }
  /* visibility after clicking the 3 nav bars */
  body.mobile-nav-active #mobile-nav {
    left: 0;
  }
  /* color of the aside nav-headlines */
  body.mobile-nav-active #mobile-nav-toggle {
    color: yellow;
  }


nav img{
    width: 90px;
    height: 75px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #b6ff00;
    display: block;
    margin: auto;
    transition: 1s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center; 
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff5ee;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover {
        border: 1px solid #f44336;
        background: #f44336;
        transition: 0.3s;
}
nav .fa{
        display: none;
}

@media(max-width: 300px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }

    .nav-links ul {
        padding: 30px;
    }
}

}
.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
    
}
.contact-map iframe{
    width: 100%;
    height: 100%;
    
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px; 
    text-align: center;
}
.contact-form h1 {
    margin-bottom: 10px;
}
.contact-form-txt 
{
    width: 100%;
    height: 40px;
    color: #000;
    border 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-txt::placeholder {
    color: #aaa;
}
.contact-form-txtarea {
    width: 100%;
    height: 140px;
    color: #000;
    border 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Raleway', sans-serif;
}
.contact-form-txtarea::placeholder {
    color: #aaa;
}
.contact-form-btn {
    width: 100px;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: deepskyblue;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
}

/*------ footer -----*/
.footer{
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o{
    color: #f44336;
    
}