@font-face {
  font-family: 'MontserratCust'; /*a name to be used later*/
  src: url(/css/fonts/Montserrat-VariableFont_wght.ttf);
  }
  
html{
  box-sizing: border-box;
  font-size: 16px;
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  scroll-behavior: smooth;
}

h1 {
  margin-top: 5%;
  text-align: center;
}

.bg-template{
  background: rgb(3,10,18);
  background: linear-gradient(160deg, rgba(3,10,18,1) 0%, rgba(10,12,18,1) 99%);
}

.fullWidth{
    width: 100%;
}

.ta-c{
    text-align: center;
}

.mg-5-pct{
  margin: 5% 0;
}

.pd-5-pct{
  padding: 5% 0;
}

.mg-20 {
  margin: 20px 0;
}

.popup_text{
  font-size: 2em;
  color: #fff;
  font-weight: bold;
}

.ft-bd {
  font-weight: bold;
}

.dg-input {
  background: #FAFAFB;
  border: 1px solid #1A2E35;
  border-radius: 8px;
  padding: 5px;
  width: 350px;
  height: 40px;
  margin-top: 5px;
}

.dg-submit {
  background: #a4742c;
  border: 1px solid #231F20;
  border-radius: 8px;
  padding: 15px 50px;
  text-decoration: none;
  display: inline-block;
  width: max-content;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
}

.form{
  color: #fff;
}

.about-us-img{
    /* border-top-left-radius: 50%; */
    /* border-bottom-right-radius: 50%; */
    border-radius: 8px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .menu-toggle {
    display: none;
  }

  .selectbox1 {
    border: 1px solid #ccc;
    width: 200px;
    border-radius: 3px;
    overflow: hidden;
    background: #fafafa url("http://2.bp.blogspot.com/-T3aZyed1Ql8/VFHNFmecaTI/AAAAAAAACqI/BlgRLXWKvPs/s1600/ic_arrow_drop_down_48px-32.png") no-repeat 90% 50%;
	box-shadow:0px 0px 5px #ccc;
}

.selectbox1 select {
    padding: 5px 8px;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
	
}

.selectbox1 select:focus {
    outline: none;
}
  
  @media only screen and (max-width: 768px) {
    nav {
      display: none;
    }
    .menu-toggle {
      display: block;
      font-size: 24px;
      cursor: pointer;
    }
    .menu-toggle i {
      margin: 5px;
    }
    header {
      flex-direction: column;
    }
    .logo, nav {
      width: 100%;
      text-align: center;
    }
    nav ul {
      flex-direction: column;
      margin: 0;
      padding: 0;
    }
    nav li {
      margin: 10px 0;
    }
  }

  .dg-btn{
    border: 1px solid #1A2E35;
    border-radius: 8px;
    padding: 12px 23px;
    display: inline-block;
    cursor: pointer;
    background: #fff;
    font-weight: bold;
    font-size: 1em;
  }

  @media(max-width:576px){
    .dg-input{
      width: 100%;
    }
    .dg-btn{
      margin-top: 10px;
      display: block;
      text-align: center;
      width: 100%;
    }
  }

  .overlay{
    background-color: #000;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
  }
  .popup{
    border-radius: 5px;
    display: none;
    opacity: 0;
    position: fixed;
    text-align: center;
    top: 26%;
    width: 100%;
    z-index: 100001;
  }
  .popup-display-block{
    display: inline-block;
  }
  .popup-container{    
    background-size: 100% 100%;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    height: 600px;
    width: 600px;
  }
  .popup-close-icon{
    align-items: center;
    background-color: #eee;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    display: flex;
    float: right;
    height: 25px;
    justify-content: center;
    margin: -12px;
    position: absolute;
    top: 0;
    width: 25px;
    z-index: 10000;
  }
  .popup-close-icon svg{
    width: 16px;
  }
  @media (max-width: 576px){
    .popup-container{
      height: 320px;
      width: 320px;
    }
    .popup{
      top: 25%;
    }
  }