/* @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*Developed by - aA - abdul anas {abdulanaspnweb@gmail.com}*/

body {
  font-family: 'Exo 2', sans-serif;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Exo 2', sans-serif;
}

p,
a,
span {
  font-family: 'Exo 2', sans-serif;
}


.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #323e48b0;
  transition: opacity 0.5s;
  visibility: hidden;
  opacity: 0;
  display: block;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow-y: scroll;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}


.overlay .close {
  position: absolute;
  top: 20px;
  right: 50px;
  transition: all 200ms;
  font-size: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.overlay .close:hover {
  color: #005fab;
}


.popup .col-mm {
  float: left;
  display: block;
  width: 60% !important;
}

.popup .col-mm-4 {
  float: left;
  display: block;
  width: 40%;
  background: #fff
}

.popup .col-mm-4 img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

/*.popup {display: grid;
  margin: 70px auto;
  padding: 20px;
  border-radius: 5px;
  width: 70%;
  position: relative;
  transition: all 0.5s ease-in-out;
}*/
.popup {
  display: grid;
  margin: 70px auto;
  padding: 30px 30px;
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all 0.5s ease-in-out;
  background: #fff;
}

#vidModal .popup {
  width: 60%;
}

.decoration {
  text-decoration: none;
}

.text-white {
  color: #fff;
}

.overlay .popup h4 {
  margin: 0px;
  margin-top: 60px;
  color: #333;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
}

.popup .content p {
  color: #333;
  text-transform: uppercase;
  padding: 0 !important;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.popup .close:hover {
  color: #06D85F;
}

.popup .content {
  max-height: 30%;
  overflow: auto;
}

.hed-post {
  margin-top: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 20px;
}

.form-enq {
  margin-top: 10px;
}

.form-enq .alert-danger
{
    padding: 7px 12px;
    list-style: none;
    border-radius: 0;
}
.form-enq .alert-danger ul
{
    list-style: none;
    margin: 0;
}

.form-enq iframe {
  border: none; 
}

form .col-md-12 {
  float: left;
  width: 100%;
  /*margin-right: 10px;*/
  display: block;
  margin-bottom: 10px
}

form .col-md-6 {
  float: left;
  width: 50%;
  margin-right: 0px;
  display: block;
  margin-bottom: 10px
}

form input,
textarea {
  width: 98%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #b7b7b785;
}

form .col-md-4 {
  float: left;
  width: 30%;
  margin-right: 0px;
  display: block;
  margin-bottom: 10px
}

form .col-md-6.sub {
  float: right;
}

form .col-md-6 .submit {
  background: #005FAB;
  border: 0px;
  color: #fff;
  font-size: 15px;
  padding: 10px 0;
  width: 170px;
  display: flex;
  justify-content: center;
  float: right;
  cursor: pointer;
}


/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  width: 98%;
  border: 1px solid #b7b7b785;
  border-radius: 5px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
  border-radius: 5px
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: #fff;
  top: 7px;
}

/*style the items (options), including the selected item:*/
/*.select-items div,.select-selected {
  color: #000;
  padding: 15px 16px;
  border-color: #fff;
  cursor: pointer;
  user-select: none;
}*/
.select-items div,
.select-selected {
  color: #838181;
  padding: 14px 16px;
  border-color: #fff;
  cursor: pointer;
  user-select: none;
  /* border: 1px solid #767676; */
  font-size: 14px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid #dcdcdc;
  max-height: 300px;
  overflow-y: scroll;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}









/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container p {
  color: #fff !important
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
      border-radius: 4px;
    border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 700px) {
 
  .box {
    width: 70%;
  }

  .popup {
    width: 90% !important;
    padding: 30px 15px;
  }

  form input,
  textarea {
    width: 100%;
    padding: 15px;
  }

  .hed-post {
    padding: 20px 0 0 0;
  }

  .overlay .popup h4 {
    margin-top: 0;
    font-size: 1.1rem;
  }


}