
body{
    margin-top: 0px;
}
.header {
    padding-bottom: 16px;
    background: #fff;
    position: unset;
}
.contact-section {
    background: url(../images/contact-us.jpg);
    /* height: 800px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.contact-section:after {
    content: '';
    background: linear-gradient(269deg, #f58876e3, #439ab3f0);
    /* background: linear-gradient(269deg, #0db4c4a1, #294f5be3); */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.contact-inner {
    position: relative;
    z-index: 111;
}
.contact-title h4 {
    font-size: 36px;
    text-align: center;
    letter-spacing: .36px;
    font-family: 'NotoSans-Bold';
    color: #fff;
    margin-bottom: 12px;
    padding-top: 50px;
    text-transform: uppercase;
}
.contact-left h4 {
    text-align: left;
    letter-spacing: .36px;
    font-family: 'NotoSans-Bold';
    color: #fff;
}
.contact-left p {
    color: #fff;
    padding-top: 12px;
    font-size: 18px;
}
.contact-left a { 
    text-decoration: none !important;
}
.contact-left ul {
    padding-left: 0px;
    margin-top: 40px;
}
.contact-left ul li {
    list-style-type: none;
    display: flex;
    padding-bottom: 20px;
}
.contact-left ul li img {
    /* width: 30px; */
    height: 25px;
    margin-right: 15px;
    margin-top: 4px;
}
.contact-left ul li p {
    padding-top: 0px;
    font-size: 17px;
}
.contact-right .contact-form h4 {
    letter-spacing: .36px;
    font-family: 'NotoSans-Bold';
    color: #000;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 20px;
}
.contact-right .contact-form {
    background: #fff;
    border-radius: 52px;
    width: 91%;
    padding: 10px 35px;
    margin-left: auto;
}

/****  floating-Lable style start ****/
.floating-label { 
    position:relative; 
    /* margin-bottom:20px;  */
  }
  .floating-input , .floating-select {
    font-size:14px;
    padding:4px 4px;
    display:block;
    width:100%;
    height:30px;
    background-color: transparent;
    border:none;
    border-bottom:1px solid #757575;
  }
  .contact-form textarea {
      height: 80px;
  }
  
  .floating-input:focus , .floating-select:focus,textarea:focus-visible {
       outline:none;
       border-bottom:2px solid #5264AE; 
  }
  
  label {
    color:#999; 
    font-size:15px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:5px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  
  .floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top:-18px;
    font-size:12px;
    color:#5264AE;
  }
  
  .floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
    top:-18px;
    font-size:12px;
    color:#5264AE;
  }
  
  /* active state */
  .floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
    width:50%;
  }
  .error {
      font-size: 12px;
      color: red;
  }
  
  .captcha-border {
    border: 1px solid #8c8c8c;
    padding: 1px 7px;
    margin-right: 5px;
    font-size: 14px;
    border-radius: 5px;
    height: 28px;
    margin-top: auto;
    line-height: 23px;
}
.sub-btn .btn {
    background: #142857;
    color: #fff;
    border: none;
    border-radius: 11px;
    height: 30px;
    line-height: 10px;
}
.sidenav {
    z-index: 1111;
}

.overlay-popup-bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	display: none;
	z-index: 11111;
}
.popup {
	margin: 35px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	width: 30%;
	position: relative;
	transition: all .5s ease-in-out;
	top: 100px;
}
.popup .close {
	position: absolute;
	top: 6px;
	right: 10px;
	transition: all 200ms;
	font-size: 23px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
    cursor: pointer;
}
.popup .close:hover {
  	color: #C54E47;
}
.popup .content {
  	max-height: auto;
  	overflow: initial;
/*	margin-top: 5%;*/
	text-align: center;
/*	font-weight: bold;*/
}
.popup .content h3 {
    font-size: 20px;
    margin: auto;
}
.popup .content a {
    font-size: 15px;
}
.popup .content a:hover {
    text-decoration: none;
}

.icon-container {
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
    display: none;
  }
  .loader {
    position: relative;
    height: 20px;
    width: 20px;
    display: inline-block;
    animation: around 5.4s infinite;
  }
  
  @keyframes around {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(360deg)
    }
  }
  
  .loader::after, .loader::before {
    content: "";
    background: white;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-color: #333 #333 transparent transparent;
    border-style: solid;
    border-radius: 20px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
  }
  
  .loader::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
  }
  .input-has-value {
      display: block !important;
  }


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


@media (max-width: 600px) {
    .contact-right .contact-form {
        width: 100%;
    }
    .contact-left ul {
        padding-left: 0px;
        margin-top: 30px;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) {
    .contact-right .contact-form {
        width: 80%;
        margin: auto;
    }
    .contact-left ul {
        padding-left: 0px;
        margin-top: 30px;
    }
    .popup{
        width: 70%;
      }
}
@media (width: 1024px) {
    .contact-right .contact-form {
        width: 100%;
    }
}