@import url('https://fonts.googleapis.com/css2?family=Lato&family=Pacifico&family=Righteous&family=Roboto&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,800,900&display=swap');
body{
  font-family: 'montserrat' sans-serif;
}

.nav-link{
  font-size:20px;
  margin-right: 20px;

}
.nav-link:hover{
  color:#89CFF0 !important ;
}
.dropdown-menu .dropdown-item:hover{
  color: #89CFF0 !important;
}
 .dropdown-menu .active1{
  color: #89CFF0 !important;
}
.active .nav-link{
  color:#89CFF0 !important;
}
.emp{
  color:gray;
  font-size: 40px;
  right: 0;
}
.emp:hover{
  color:#89CFF0 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; // remove the gap so it doesn't close
 }
 .header{
   position: relative;
   width: 100%;
 }
 .header-inner{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 99;
   background-color: white;
 }
 .logo{
   width: 40%;
   border-width: 20px;
   color: #ffffff;
 }
 .nav-item .nav-link{
   display: block;
   line-height: 36px;
   text-transform: capitalize;
   font-size: 16px;
   font-weight: 500;
   color: black;
   transition: 0.15s;
 }
 .nav-item .nav-link:hover{
   color: #FE4066;
 }
 .navbar-scroll{
   background-color: #ffffff;
   padding: 0;
   position: fixed;
   top: 0;
   z-index:99;
   box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
   transition-duration: 0.6s;
 }
 .navbar-scroll .nav-item .nav-link{
   color: black;
 }
 .navbar-scroll .header-btn{
   color: #ffffff;
   background-color: #fe4066;
 }
 .navbar-scroll .logo{
   color: #000;
   font-weight: 500;
 }
@media only screen and (min-width:1200){
  .nav-item > .nav-link{
    padding: 5px 20px !important;
    display: block !important;
  }
}
@media only screen and (max-width:992px){
  .header-inner{
    background-color: white !important;
    }
    .nav-item > .nav-link{
      color: black !important;
    }
    .logo{
      color: #000 !important;
      font-weight: 600!important;
    }

}
/*section*/
section{
  background:url("../images/login.png") no-repeat center fixed;
  background-size: cover;
  align-items: center;
  justify-content: center;
  min-height: 130vh;
  display: flex;
  position:relative;
  display: flex;
  padding:150px 100px 100px;
  font-family: "georgian",sans-serif;
  opacity: 1;
  width: 100%;
}
.wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 450px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  /*box-shadow: 4px 4px 2px rgba(254,236,164,1);*/
}

.wrapper h2{
  text-align: center;
  margin-bottom: 20px;
  /*text-transform: uppercase;*/
  letter-spacing: 2px;
  color: #332902;
}

.wrapper .input_field{
  margin-bottom: 10px;
}

.wrapper .input_field input[type="text"],
.wrapper textarea{
  border: 1px solid #e0e0e0;
  width: 100%;
  padding: 10px;
}
a:hover{
  color:green;
  text-decoration: none;
}
.wrapper .btn input[type="submit"]{
  border: 0px;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  width: 190%;
  background: #3fb0ac;/* #fece0c;*/
  color:white;/* #332902;*/
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  /*border-radius: 25px;*/
  cursor: pointer;
  margin-left: 90%;
}

#error_message{
  margin-bottom: 20px;
  background: #fe8b8e;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

/*footer*/
footer{
  bottom: 0px;
  width: 100%;
  background-color: #242124;
  color: #d9d9d9;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.main-content{
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main-content .box{
  flex-basis: 50%;
  padding: 40px 20px;
}
.box h2{
  font-size: 1.125rem;
  font-weight: 600;
  /*text-transform: uppercase;*/
}
.left{
  margin-left: 20px;
}
.left p{
  font-size: 15px;
}
.box .content{
  margin: 20px 0 0 0;
  position: relative;
}
.box .content:before{
  position: absolute;
  content: '';
  top: -10px;
  height: 2px;
  width: 100%;
 background: #1a1a1a;
}
.box .content:after{
  position: absolute;
  content: '';
  height: 2px;
/*  width: 15%;*/
  background: #f12020;
  top: -10px;
}
.left .content .social{
  margin: 20px 0 0 0;

}
.left .content .social a{
  padding: 0 2px;
    color: white;
}
.left .content .social a span{
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.left .content .social a span:hover{
  background: #89CFF0;
    color: gray;
}
.center{
  margin-left: 80px;
}
.center .content .fas{
  font-size: 1.4375rem;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.center .content .fas:hover{
  background: #89CFF0;
  color: gray;
}
.center .content .text{
  font-size:15px;/* 1.0625rem;*/
  font-weight: 500;
  padding-left: 10px;
}
.center .content .phone{
  margin: 15px 0;
}
.right h2{
    margin-left: 40px;
}
.right .content{
  margin-left: 45px;
}
.right .content .link{
  text-decoration: none;
    color: #d9d9d9;
}
.right .content .link:hover{
  text-decoration: none;
  color: #89CFF0;
}
@media screen and (max-width: 900px) {
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-content{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box{
    margin: 5px 0;
  }
}
