body{
  font-family: 'Montserrat', sans-serif;
}
.container-body{
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: #8400FF;
  background-image: url(../img/undigit-page-footer-inbox-me-bg-gradiant.png), url(../img/india-map.png);
  background-position: right bottom, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}
.navbar {
    position: relative;
    top: 0px;
    height: 56px;
    z-index: 5;
}
.navbar-brand {
    position: fixed;
    top: 10px;
}
.navmenu {
  top: 20px;
}
.map-pin{
  position: absolute;
  width: 30px;
  height: auto;
  top:60%;
  left: 10%;
}
.element {
  position: relative;
  top:50%;
  left:10%;
  transform: translate(-50%, -50%);
  width: 50px;
  height:50px;
  border-radius:50%;
  background-color: transparent;
}

.pulse {
  position: absolute;
  top: -10px;
  right: -9px;
  height: 20px;
  width: 20px;
  z-index: 10;
  border: 5px solid #fff;
  border-radius: 70px;
  animation: pulse 1s ease-out infinite;
}

.marker {
  position: absolute;
  top: -0px;
  right: 1px;
  height: 10px;
  width: 10px;
  border-radius: 70px;
  background: #fff;
}
.notification{
  width: 100%;
  font-size: 12px;
  background: #ffffff;
  padding: 5px;
  border-radius: 5px;
}
.notification .success{
  font-size: 12px;
  border: 2px solid #03a9f4;
  padding: 5px;
  border-radius: 5px;
  color: #03a9f4;
  text-align: center;

}
.notification .error{
  font-size: 12px;
  border: 2px solid #ff5722;
  padding: 5px;
  border-radius: 5px;
  color: #ff5722;
  text-align: center;

}
.col-6 {
    position: relative;
    float: left;
    width: 50%;
}
.col-12 {
    position: relative;
    float: left;
    width: 100%;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { box-shadow: 0 0 0px 1000px white inset; }

@keyframes pulse {
  0% {
      -webkit-transform: scale(0);
      opacity: 0.0;
  }

  25% {
      -webkit-transform: scale(0.1);
      opacity: 0.1;
  }

  50% {
      -webkit-transform: scale(0.5);
      opacity: 0.3;
  }

  75% {
      -webkit-transform: scale(0.8);
      opacity: 0.5;
    }

  100% {
      -webkit-transform: scale(1);
      opacity: 0.0;
  }
}

@media only screen and (max-width: 600px) {
  /* .navmenu{
    display: block;
    background: rgba(255, 255, 255, 0.5);
    height: 50px;
  } */
}

.connect-div{
  position: absolute;
  top : 25%;
  left: 15%;
}
.connect-div h1{
  color: #fff;
  font-weight: 700;
  font-size: 60px;
}
.connect-div p{
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 22px;
  opacity: 1;
  font-weight: 500;
}

.social-contact{
  list-style: none;
}
.social-contact li{
  float: left;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.social-contact li:first-child{
  margin-left: 0px;
}
.social-contact li a img{
  height: 20px;
  width: 20px;
  color: #fff;
}
.call-now{
  margin-top: 40px;
}
.call-now button{
  width: 50%;
  height: 35px;
  text-align: center;
  font-size: 18px;
  color: #5400a3;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-family: montserrat,sans-serif;
}
button:focus {outline:0;}
.call-now button:hover{
  color: #ed225e;
  border-style: none;
  text-decoration: none;
  cursor: pointer;
}
.contact-form{
  width: 500px;
  position: absolute;
  right: 15%;
  top: 30%;
}
.contact-form .col-6, .contact-form .col-12{
  margin: 0;
  padding: 0;
}

.form-control{
  width: 100%;
  padding: 10px;
  background: transparent;
  outline: none;
  border: 0;
  border-bottom: 2px solid #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  height: 40px;
  z-index: 0;
}

::-webkit-inpu#ffft#fff-placeholder {
  color: #fff;
  font-size: 13px;
}
::-moz-placeholder {
  color: #fff;
  font-size: 13px;
}
:-ms-input-placeholder {
  color: #fff;
  font-size: 13px;
}
::placeholder {
  color: #fff;
  font-size: 13px;
}

.message-btn{
  position: relative;
}
.message-btn .form-control{
  position: absolute;
}

.message-btn button{
  position: absolute;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 10px;
  border-bottom: 5px solid #fff;
  right: -20px;
  top: 15px;
  height: 40px;
  z-index: 2;
}
.hr-div{
  position: absolute;
  width: 90%;
  height: 2px;
  background: #fff;
  bottom: 5%;
  margin-left: 5%;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@media only screen and (max-width: 600px) {
  .element {
    top:21%;
    left:9%;
  }
  .connect-div{
    position: absolute;
    top: 20px;
    left: 20%;
  }
  .connect-div h1 {
    color: #fff;
    font-weight: 700;
    font-size: 10vw;
}
  .connect-div p{
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 18px;
  }

  .contact-form{
    width: 85%;
    position: relative;
    left: 5%;
    top: 22%;
  }

  .form-control{
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 20px;
  }
  .contact-form .col-6 {
    width: 100%;
  }

  .message-btn button{
    right: -10px;
    top: 0px;
    height: 35px;
  }
}

@media screen and (min-width: 992px){
  .element {
    left:12%;
  }
  .contact-form{
    width: 300px;
    position: absolute;
    right: 10%;
    top: 18%;
  }

}

@media screen and (min-width: 1366px){
  .element {
    left:10%;
  }
  .contact-form{
    width: 500px;
    position: absolute;
    right: 14%;
    top: 20%;
  }
}

@media screen and (min-width: 1921px){
  .element {
    top: 50%;
    left:11%;
  }
  .contact-form{
    width: 500px;
    position: absolute;
    left: 5%;
    top: 40%;
  }
}
@media only screen and (max-width: 992px){
  .navmenu {
      display: none;
  }
  .hide{
    display: none;
  }
  .connect-div {
    position: absolute;
    top: 22%;
    left: 32%;
}
}

@media only screen and (max-width: 767px){
  .hide{
    display: none;
  }
  .connect-div {
    position: absolute;
    top: 22%;
    left: 22%;
}
}
