@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}





.fixed-back-button {
  position: fixed;
  bottom: 100px;
  border-bottom-right-radius: 20px;
  /* left: 20px; */
  border-radius: 80px;
  padding: 4px 8px;
  padding-top: 9px;
  background-color: #3D1053;
  color: white;
  font-size: 22px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}



.footerstamp{
     margin-top:10px;
}






.dropdown-menu {
  display: none;
  background-color: #3D1053; 
}
.dropdown-menu.show {
  display: block;
}
/* Custom styles to remove blue hover background */
.dropdown-item:hover {
  background-color: transparent; /* Remove background color */
  color: inherit; /* Keep the text color */
}
.dropdown-item:focus, .dropdown-item.active {
  background-color: transparent; /* Remove background color when focused or active */
  color: inherit; /* Keep the text color */
}


body{
  background: #f2f2f2;
}

.custom-heading {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #3D1053;
}



#city-selector-section {
  text-align: center;
}
#city-buttons {
    margin-bottom: 20px;
}
nav{
  position: fixed;
  /* background: #ffffff; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10001;
  height: 70px;
  padding: 0 100px;
  width: 100%;
}
nav .logo1{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}
nav .nav-items li{
  list-style: none;
  padding: 0 15px;
}
nav .nav-items li a{
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  /* color: #ff3d00; */
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  /*background: #3D1053;*/
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(0, 4, 255, 0.2);
  
}






nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  /*background: none;*/
  
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #483577;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #483577;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
   color: #3D1053;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}

.content{
  /* position: absolute; */
  margin-top: 22%;
  margin-left: 52%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 2040px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 81px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 7px 63px 0 44px;
    text-align: center;
    background: #3D1053;
    display: inline-block;
    transition: left 0.3s ease;
  }

  nav .nav-items.active{
    left: 0px;
    flex-wrap: wrap;
  }

  nav .nav-items li{
    line-height: 15px;
    margin: 0px 0;
  }

  nav .nav-items li a{
    font-size: 18px;
  }

  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }

  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }

  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #3c3f44;
    margin: -20px 0 0;
  }

  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #3D1053;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  nav .menu-icon{
    display: block;
  }
  
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }

  nav .cancel-icon.show{
    display: block;
  }
}

.content{
  /* position: absolute; */
  margin-top: 32%;
  margin-left: 52%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}

.content button{
  background-color: #483577;
  color: white;
  width: 100px;
  height: 35px;
  border-radius: 10px;
}

.space{
  margin: 10px 0;
  color:  #ffffff;
}
nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }

  .content{
    /* position: absolute; */
    margin-top: 38%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
  }

}



@media (max-width: 680px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
  
  .footerstamp{
     margin-top:170px;
}

    
            .job-card {
            height: 272PX;
        }
    
    

  
  .content{
    /* position: absolute; */
    margin-top: 78%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
  }


}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
  .content{
    /* position: absolute; */
    margin-top: 88%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
  }
  .content header{
    font-size: 30px;
    font-weight: 700;
  }
  .content .text{
    font-size: 30px;
    font-weight: 700;
  }
  .content .space{
    margin: 10px 0;
  }
}

/*  */