* { margin: 0; padding: 0; box-sizing: border-box;}

body { font-family: calibri; font-weight: 200;}
a { text-decoration: none;}
li { list-style: none;}
.navbar { display: flex;  align-items: center;  justify-content: space-between;  padding: 20px;  background-color: #fff;  color: #000000;}
.nav-links a { color: #000;}
.nav-links a:hover { color: #E868A2;}

/* LOGO */
.logo { width: 50%;}

/* NAVBAR MENU */
.menu { display: flex;  gap: 1em;  font-size: 16px;}
.menu li:hover { background-color: #fff;  border-radius: 5px; transition: 0.3s ease;}
.menu li { padding: 5px 14px;}

/* DROPDOWN MENU */
.services { position: relative; }
.dropdown { background-color: rgb(1, 139, 139);  padding: 1em 0; position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;  border-radius: 8px; top: 35px;}
.dropdown li + li {  margin-top: 10px;}
.dropdown li { padding: 0.5em 1em; width: 8em;  text-align: center;}
.dropdown li:hover { background-color: #4c9e9e;}
.services:hover .dropdown { display: block; }
input[type=checkbox] { display: none;} 

/* HAMBURGER MENU */
.hamburger {  display: none;  font-size: 24px; user-select: none;}

.imgresponsive { width: 100%; height: 600px; background-size: cover;  z-index:-999;}

.showcase {
  width: 100%;
  height: 600px;
  position: relative;
  color: white;
  text-align: center;
}

.showcase img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index:-999;
}

.showcase .overlay {
  width: 100%;
  height: 600px; padding: 10% 0%;
  background-color: rgba(0, 35, 82, 0.7);
  /* position: absolute; */
  top: 0;
  left: 0;
  z-index:-999;
}

.showcase h2 {
  font-size: 3em;  color: #fff;
}

.showcase p {
  margin-top: 8px;
  font-size: 1.2em;
}

.helpwraper { width: 90%; margin: 30px auto; padding: 30px 0px; text-align: center;}

h2 { font-size: 40px; font-weight: bold; text-align: center; color: #575656;}
p { font-size: 20px; text-align: center; padding: 0% 24%;}



.helpbox { display: flex ; margin: 60px 0px; }

.helpbox h2 { font-size: 50px;  color: #fff; text-align: center;}
.helpbox p { font-size: 20px; text-align: center; color: #fff; padding: 0% 14%;}

.chatbox1 { background: #556D7F; width: 100%; padding: 90px 0px; border-radius: 20px 0px 0px 20px;}



.chatbox2 { background: #E868A2; width: 100%; padding: 90px 0px; border-radius: 0px 20px 20px 0px;}

.prowraper { display: flex ; padding: 0px 0px; flex-direction: row; justify-content: center; flex-wrap: wrap; margin: 60px auto; background: #F8F8F8; width: 96%;}

.probox {box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; text-align: center; padding: 35px 30px; border-radius: 20px; margin:40px 20px; width: 30%; height: 100%; }
.probox h3 { font-size: 24px;  color: #575656; text-align: center; margin-top: 15px;}
.probox p { font-size: 16px; text-align: center; color: #131313; padding: 0% 13%;}




.btn {
  background-color: #354C5B;
  color: white;
  padding: 12px 30px; border-radius: 50px;
  font-size: 14px; border: none;
  cursor: pointer; margin-top: 20px;
    color: white;
    min-width: 26%; 
    height: 40px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: #2A3F4D;
}


.btn1 {
  background-color: #A73E6E;
  color: white;
  padding: 12px 30px; border-radius: 50px;
  font-size: 14px; border: none;
  cursor: pointer; margin-top: 20px;
    color: white;
    min-width: 26%; 
    height: 40px;
}

/* Darker background on mouse-over */
.btn1:hover {
  background-color: #892753;
}

.imagerespo { width: 30%; height: auto; margin-top: 10px;}










.form-wrapper {
    background-color: #f6f6f63a;
    
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
   
    margin: 100px auto;
    overflow: hidden;
    padding: 8px;
    width: 40%;
  }
  
  .form-wrapper #search {
    border: 1px solid #CCC;
   
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #999;
    float: left;
    font: 16px Lucida Sans, Trebuchet MS, Tahoma, sans-serif;
    height: 41px;
    padding: 10px;
    width: 79%;
}
  
  .form-wrapper #search:focus {
    border-color: #aaa;
    -webkit-box-shadow: 0 1px 1px #bbb inset;
    -moz-box-shadow: 0 1px 1px #bbb inset;
    box-shadow: 0 1px 1px #bbb inset;
    outline: 0;
  }
  
  .form-wrapper #search:-moz-placeholder,
  .form-wrapper #search:-ms-input-placeholder,
  .form-wrapper #search::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
  }
  
  .form-wrapper #submit {
    background-color: #A73E6E;
   
    border: 1px solid #A73E6E;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
   
    color: #fafafa;
    cursor: pointer;
    height: 42px;
    float: right;
    font: 15px Arial, Helvetica;
    padding: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0 ,0, .3);
    width: 20%;
  }
  
  .form-wrapper #submit:hover,
  .form-wrapper #submit:focus {
    background-color: #892753;
  
  }
  
  .form-wrapper #submit:active {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    outline: 0;
  }
  
  .form-wrapper #submit::-moz-focus-inner {
    border: 0;
  }


  .footer { background: #354C5B; text-align: center; color: #fff; padding: 40px 0px; }
  .footer h6 { font-size: 18px; margin: 10px 0px; }
  .footer p { font-size: 16px;}
      
/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
.menu {  display:none;    position: absolute;  z-index: 999;  background-color:#E868A2; top:90px; color: #fff;  right: 0;  left: 0;  text-align: center;  padding: 16px 0;  }      
.menu li:hover { display: inline-block;  background-color:#4c9e9e;  transition: 0.3s ease;  }     
.menu li + li {  margin-top: 12px;  }      
input[type=checkbox]:checked ~ .menu { display: block;  }      
.hamburger { display: block;  }      
.dropdown { left: 50%; top: 30px;  transform: translateX(35%); }      
.dropdown li:hover { background-color: #4c9e9e;  }   
.imgresponsive { width: 100%; height: 200px; background-size: cover;}
.prowraper { width: 100%;}
.probox { width: 40%;}
.form-wrapper {width: 50%;}
.showcase {height: 400px;}
.showcase .overlay { height: 400px;}
.form-wrapper {  margin: 40px auto;}

}



@media (max-width: 480px) {

  .probox { width: 100%;}
  p { padding: 0% 8%;}
  h2 {padding: 0px 20px; font-size: 34px;}
  .showcase {
    height: 300px;
}

.showcase h2 {
  font-size: 30px;
}
.showcase p {
  font-size: 16px;
}

.form-wrapper {
  width: 80%;
}

.form-wrapper #search { width: 75%;
}

.form-wrapper #submit {
  width: 23%;
}

.helpwraper {padding: 30px 0px 0px 0px;}

.helpbox {
    flex-direction: column;
}

.chatbox1 { margin: 20px 0px; border-radius: 20px;}
.chatbox2 { margin: 20px 0px; border-radius: 20px;}
.btn {width: 50%;}
.btn1 {width: 50%;}

.showcase .overlay {
    height: 300px;
}


}
     