@font-face {
  font-family: proximanova-regular;
  src: url("../fonts/proximanova-regular.otf");
}
@font-face {
  font-family: proxima-nova-medium;
  src: url("../fonts/proxima-nova-medium.otf");
}
@font-face {
  font-family: proxima-nova-semibold;
  src: url("../fonts/proxima-nova-semibold.otf");
}
@font-face {
  font-family: proxima-nova-bold;
  src: url("../fonts/proxima-nova-bold.otf");
}

body{
  font-family: 'Inter', sans-serif !important;
  overflow-x: hidden;
}

.text-orange{
  color: #e96920;
}
.text-navy{
  color: #0c374f;
}
.text-blue{
  color: #1870a2;
}
.text-sky{
  color: #1490b4;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.z-index-1{
  z-index: 1;
}

/* 
**********************************
**********************************
******* Navbar Css ******** 
********************************** 
**********************************
*/
#navbarContent{
  justify-content: end;
}
nav.navbar.navbar-expand-xl.fixed-top.navbar-light.custom-nav{
  padding: 12px 0px !important;
}
.nav-btns-container{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.nav-btns-container .btn-signup,
.nav-btns-container .btn-login{
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: proximanova-regular;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 28px 12px 28px;
  outline: 0;
  box-shadow: none;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.nav-btns-container .btn-signup{
  background-color: #e9651b;
  border: 2px solid #e9651b;
  margin-right: 10px;
}
.nav-btns-container .btn-login{
  background-color: #1490b4;
  border: 2px solid #1490b4;
}

.nav-btns-container .btn-signup .icon{
  width: 22px;
  margin-right: 10px;
}
.nav-btns-container .btn-login .icon{
  width: 25px;
  margin-right: 10px;
}
/* .login-hover::after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}
.login-hover:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
} */


/* 
**********************************
**********************************
******* Login Page Css ******** 
********************************** 
**********************************
*/

/* Start Login Page */
.section-login {
  padding: 120px 0 55px;
  overflow: hidden;
  margin-top: 101px;
  background: url("../images/login-banner.png") no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #00000042;
  background-position: left center;
}
.section-login .heading {
  padding-left: 70px;
  position: relative;
}
.section-login .heading:before {
  content: "";
  background-image: url("../images/check_img.png");
  height: 100px;
  width: 150px;
  position: absolute;
  left: -30px;
  top: -54px;
  background-repeat: no-repeat;
}
.section-login .heading .sub_title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-login .heading .title {
  font-size: 55px;
  font-weight: 700;
  color: #fe7e36;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.section-login .form_box {
  padding: 90px 60px 35px 60px;
  background: linear-gradient(to bottom right, #ffffffa3 70%, #1490b4 100%);
  border-radius: 30px;
  width: 85%;
  float: right;
  position: relative;
}
.section-login .form_box .sheild_box {
  background: #fff;
  border: 5px solid #e9651b;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translate(0px, -50%);
}
.section-login .form_box .sheild_box img{
  width: 80px;
  margin-top: 5px;
}
.section-login .form_box .title {
  font-family: proxima-nova-bold;
  font-size: 28px;
  color: #0d3850;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.section-login .form_box .desc {
  font-family: proxima-nova-bold;
  font-size: 16px;
  color: #0d3850;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.section-login .form_box .btn-login {
  position: relative;
  display: block;
  min-width: 240px;
  font-family: proxima-nova-bold;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  background: #e96920;
  padding: 18px 30px;
  border-radius: 30px;
  box-shadow: 0px 12px 23px #001823ad;
  margin: 40px auto 0;
  border: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.form_box .btn-login span {
  position: absolute;
  width: 20%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 20%) - 10px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.form_box .btn-login:hover {
  color: #fff !important;
  /* border: 2px solid #fff !important; */
}
.form_box .btn-login:hover span {
  transform: translateY(0) scale(2);
}
.form_box .btn-login span:nth-child(1) {
  --n: 1;
}
.form_box .btn-login span:nth-child(2) {
  --n: 2;
}
.form_box .btn-login span:nth-child(3) {
  --n: 3;
}
.form_box .btn-login span:nth-child(4) {
  --n: 4;
}
.form_box .btn-login span:nth-child(5) {
  --n: 5;
}




.section-login .form_box .form-group{
  margin-bottom: 25px;
}
.section-login .form_box label {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  line-height: 1;
  margin-bottom: 8px;
}
.section-login .form_box label span{
  color:#ba1414;
}
.section-login .form_box input {
  font-size: 15px;
  font-weight: 400;
  height: 45px;
  border: 1px solid #0d3850;
  border-radius: 8px;
  padding: 10px 20px;
  outline: 0;
  box-shadow: none;
}

.section-login .form_box .forgot_password {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e96920;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid #e96920;
  padding-bottom: 5px;
}
.section-login .form_box .checkbox label {
  font-size: 16px;
  font-weight: 400;
}
.section-login .checkbox_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;
}
.section-login .checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
      border-radius: 8px;
}
.section-login .checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 8px;
}
.section-login .checkbox_container:hover input ~ .checkmark {
  background-color: #fff;
  border-radius: 8px;
}
.section-login .checkbox_container input:checked ~ .checkmark {
  background-color: #e96920;
  border-radius: 8px;
}
.section-login .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.section-login .checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
.section-login .checkbox_container .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section-login label.checkbox_container {
  font-size: 16px !important;
  font-weight: 400 !important;
  margin-bottom: 0;
  margin-right: 20px;
}
/* End Login Page */

/* Start Footer Section */
.section-footer{
  position: relative;
  padding: 60px 0 80px;
  background-color: #d5dbe0;
}
.section-footer::before{
  content:"";
  background-image: -moz-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -webkit-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -ms-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 6px;
}
.section-footer .first .footer-logo{
  display: block;
  margin-bottom: 45px;
}
.section-footer .first .footer-logo img{
  max-width: 230px;
}
.section-footer .first .address{
  font-weight: 600;
  font-size: 16px;
  color: #6f7478;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-footer .footer-links{
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.section-footer .footer-links li{
  margin-bottom: 30px;
  line-height: 1;
}
.section-footer .footer-links li:last-child{
  margin-bottom: 0;
}
.section-footer .footer-links li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.section-footer .footer-links li a::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background: #1490b4;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.section-footer .footer-links li a:hover:after {
  transform: scaleX(1);
}
.section-footer .forth .contact-info{
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.section-footer .forth .contact-info .phone-numb{
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 5px;
}
.section-footer .forth .contact-info .timings{
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
}
.section-footer .forth .email-info{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.section-footer .forth .email-info .email{
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.section-footer .forth .contact-info .icon,
.section-footer .forth .email-info .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  line-height: 32px;
  background-color: transparent;
  color: #e9651a;
  border: 2px solid #e9651a;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.section-footer .forth .contact-info:hover .icon,
.section-footer .forth .email-info:hover .icon,
.section-footer .forth .social-icons .item:hover{
  background-color: #1490b4;
  color: #fff;
  border: 2px solid #1490b4;
}
.section-footer .forth .social-icons{
  display: flex;
  align-items: center;
}
.section-footer .forth .social-icons .item{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  line-height: 32px;
  background-color: transparent;
  color: #e9651a;
  border: 2px solid #e9651a;
  border-radius:50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
/* End Footer Section */
