@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');


*{margin: 0; padding: 0; box-sizing: border-box;}
.main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background: #fff;
    margin: 20px;
    text-align: center;
    font-size: 50px;
    line-height: 100px;
    font-family: sans-serif;
    overflow: hidden;
    box-shadow: 5px 10px 20px rgba(150, 150, 150, .3);
    transition: all .3s ease-out;
}
.icon:hover{
    width: 400px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
}
.icon:hover i{
    color: #fff;
}
.icon .fa-facebook-f{
    color: #1A6ED8;
}
.fb:hover{
    background: #1A6ED8;
}
.icon .fa-twitter{
    color: #1DA1F2;
}
.twt:hover{
    background: #1DA1F2;
}
.icon .fa-linkedin-in{
    color: #0077B5;
}
.lnk:hover{
    background: #0077B5;
}
.icon .fa-instagram{
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}
.git:hover{
  background: linear-gradient(to bottom left, #285AEB 17%, #D6249F 44%, #FD5949 88%, #FDF497 100%, #FDF497 26%);
}
.icon .fa-youtube{
    color: #FE0000;
}
.yt:hover{
    background: #FE0000;
}

/* responsive */
@media only screen and (min-width: 320px) and (max-width: 700px) {
    .main{
        flex-direction: column;
    }
}



/*------------------------------------------------------------*/
.loader {
  display: none;
  animation:spin 1s infinite linear;
  border:solid 2vmin transparent;
  border-radius:50%;
  border-right-color:#09f;
  border-top-color:#09f;
  box-sizing:border-box;
  height:20vmin;
  left:calc(50% - 10vmin);
  position:fixed;
  top:calc(50% - 10vmin);
  width:20vmin;
  z-index:1;
  &:before {
    animation:spin 2s infinite linear;
    border:solid 2vmin transparent;
    border-radius:50%;
    border-right-color:#3cf;
    border-top-color:#3cf;
    box-sizing:border-box;
    content:"";
    height:16vmin;
    left:0;
    position:absolute;
    top:0;
    width:16vmin;
  }
  &:after {
    animation:spin 3s infinite linear;
    border:solid 2vmin transparent;
    border-radius:50%;
    border-right-color:#6ff;
    border-top-color:#6ff;
    box-sizing:border-box;
    content:"";
    height:12vmin;
    left:2vmin;
    position:absolute;
    top:2vmin;
    width:12vmin;
  }
}

@keyframes spin {
  100% {
    transform:rotate(360deg);
  }
}


body {

 
  background-image: linear-gradient(#0b66b0,white,white);
}

.bot{
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 1rem !important;
}

.bot1{
  width: 100
}

#exampleModal{
  padding-top: 10%;
}

/*---------------------------*/

.h{
  margin-top: 20% !important;
}

  h4 {

  display: flex;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  letter-spacing: 15px;
  color: #0e3742;
  width: 100%;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
  Line-height: 0.60em;
  outline: none;
  animation: animate 5s linear infinite;
}

@keyframes animate {

  0%,
  18%,
  20%,
  50.1%,
  60%,
  65.1%,
  80%,
  90.1%,
  92% {
    color: #0e3742;
    text-shadow: none;
  }

  18.1%,
  20.1%,
  30%,
  50%,
  60.1%,
  65%,
  80.1%,
  100% {
    color: white;
    text-shadow: 0 0 10px #03bcf4,
      0 0 20px #03bcf4,
      0 0 40px #03bcf4,
      0 0 80px #03bcf4,
      0 0 160px #03bcf4;

  }
}

  .form_container {
  width: 80%;
  margin: auto;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10%;
  }



.col-lg {
  border: 2px solid red;
}

.b1 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border-radius: 5px;
}

.test {
  display: flex;
  padding: auto;
  margin: auto;
  justify-content: center;
  border: 2px solid red;
  width: 200px;
  height: 200px;
  align-items: center;


}

.t {
  background-image: linear-gradient(#0570c5e0, #31bbee, #0e8bdcdb);
  padding-top: 20px;

}

.t p {
  color: white;
  text-shadow: 0px 0px 2px black;
}

.up_down_animation {
  animation-name: updown;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transition: all .3s;
  filter: drop-shadow(0px 20px 10px #000000a8);
}

@keyframes updown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }


}

body {
  scroll-padding: 0;
  margin-top: 7rem;
}

@media only screen and (max-width:1000px) and (min-width:700px) {

  .col-md-2{
    margin-right: 20px;
  }

  .form_container{
  margin-left: 24px;
  padding-top: 100px;
  }

    .s1 {

      border-radius: 100%;
      width: 100px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .s1:hover {
      width: 120%;
      border-radius: 5px;
      transition: 450ms;
      border-radius: 5px;

    }

    .s1:hover .s2 {

      position: relative;
      left: 0px;
      transition: 500ms;
    }


      #email {
        margin-left: 39px;
        width: 82%;
      }

      #phone_no {
        margin-left: 6px;
      }

      #message {
        width: 100%;
        height: 100px;
        padding-top: 10px;
        padding-left: 25px;
        border-radius: 230px;
      }

      .test2 {
          margin: auto;
        position: relative;
        width: 90%;
        margin-bottom: 0px;
        padding: 10px;
        height: 379px;
        background-color: white;
        top: 2rem;

      }
      .b2 {
        font-size: 20px;
        font-family: 'Kanit', sans-serif;
        margin-left: 10px;
        color: white;
        text-shadow: -3px 2px 2px rgba(0,0,0,0.48);
      }
      .t {
        display: none;


      }

}



@media only screen and (max-width:1366px) and (min-width:1000px) {

  .h{
    margin-top: 5% !important;
  }

  .s1 {

    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .s1:hover {
    width: 100%;
    border-radius: 5px;
    transition: 450ms;
    border-radius: 5px;

  }

  .s1:hover .s2 {

    position: relative;
    left: 0px;
    transition: 500ms;

  }





  #email {
    margin-left: 39px;
    width: 80%;
  }

  #phone_no {
    margin-left: 6px;
  }

  #message {
    width: 100%;
    height: 100px;
    padding-top: 10px;
    padding-left: 25px;
    border-radius: 230px;
  }

  .test2 {
    margin-top: 5rem !important;
    margin: auto;
    position: relative;
    width: 90%;
    margin-bottom: 0px;
    padding: 10px;
    height: 379px;
    background-color: white;
    top: 2rem;

  }
  .b2 {
      font-size: 15px;
      font-family: 'Kanit', sans-serif;
      margin-left: 23px;
      color: white;
      text-shadow: -3px 2px 2px rgba(0,0,0,0.48);
    }


}

@media only screen and (min-width:240px) and (max-width:699px) {

  .s1 {

    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .s1 {
    width: 100%;
    border-radius: 5px;
    transition: 450ms;
    border-radius: 5px;

  }

  .s2 {

    position: relative;
    left: 0px;
    margin-left: -69%;
    transition: 500ms;

  }



  .form_container {
    width: 100%;
    margin-left: 50px;

  }

  .bot{
    margin: auto;
    width: 88%;
  }

  .t {
    display: none;


  }

  #fname {
    width: 90%;
  }

  #email {
    padding-left: 20px;
    margin-left: 10px;
    width: 90%;
  }

  #lname {
    margin-left: 5px;
    width: 90%;
  }

  #phone_no {
    padding-left: 10px;
    margin-left: 10px;
    width: 90%;
  }

  #message {
    width: 80%;
    margin-left: 27px;
    height: 59px;
    padding-left: 52px

  }

  .test2 {
    margin: auto;
    position: relative;
    width: 90%;
    bottom: -50%;
    padding: 10px;
    height: 200px;
    background-color: white;
    border: 2px solid blue;
  }
  .b2 {
    font-size: 26px;
    font-family: 'Kanit', sans-serif;
    margin-left: 13px;
    color: white;
    text-shadow: -3px 2px 2px rgba(0,0,0,0.48);
  }

}

.input_tag {
  padding-left: 12px;
  border: 0;
  outline: 0;
  border-radius: 320px;
  background-color: #EBECF0;
  text-shadow: 1px 1px 0 #FFF;
  height: 40px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.2px;
  font-size: 12px;

}

input {
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;


}

input:focus {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}

.bg-1 {
  background-image: linear-gradient(rgb(156, 227, 249), #0e8bdcdb);

}



/* OTP CSS */


.card {
  width: 400px;
  border: none;
  height: 350px;
  box-shadow: 0px 5px 20px 0px #d2dae3;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center
}

.card h6 {
  color: rgb(0, 115, 255);
  font-size: 20px
}

.inputs input {
  width: 40px;
  height: 40px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0
}

.card-2 {
  background-color: #fff;
  padding: 10px;
  width: 350px;
  height: 100px;
  bottom: -50px;
  left: 20px;
  position: absolute;
  border-radius: 5px
}

.card-2 .content {
  margin-top: 50px
}

.card-2 .content a {
  color: rgb(0, 115, 255);
}

.form-control:focus {
  box-shadow: none;
  border: 2px solid rgb(0, 115, 255);
}

.validate {
  border-radius: 20px;
  height: 40px;
  background-color: rgb(0, 115, 255);
  border: 1px solid rgb(0, 115, 255);
  width: 140px
}

.modal-content {
  border: none;
  background-color: rgb(122 122 123 / 0%);
}

.close_button {
  position: absolute;
  top: 0rem;
  right: 0rem;
  border: none;

}

.msg_sucess_img {
  height: 50px;
  width: 50px;
}

/* MAP */



.test2 iframe {
  width: 100%;
  height: 100%;

}

/* MAP ends here */


/* social media css */
