*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
   --avenirNextRegular: "avenir_next_worldregular";
  --avenirNextMedium: "avenir_next_worldmedium";
  --avenirNextBold: "avenir_next_worldbold";
}

@font-face {
  font-family: "avenir_next_worldbold";
  src: url("../fonts/avenirnextworld-bold-webfont.woff2") format("woff2"),
    url("../fonts/avenirnextworld-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "avenir_next_worldmedium";
  src: url("../fonts/avenirnextworld-medium-webfont.woff2") format("woff2"),
    url("../fonts/avenirnextworld-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "avenir_next_worldregular";
  src: url("../fonts/avenirnextworld-regular-webfont.woff2") format("woff2"),
    url("../fonts/avenirnextworld-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  font-family: "avenir_next_worldregular";
}

section {
  padding: 60px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 50px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #565656;
}

.mm-navbar__title>span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */

.registration {
  background: url("../images/registration-bg.png") top no-repeat rgb(0, 31, 51);
  color: rgb(255, 255, 255);
  padding: 50px 50px 20px;
  background-size: cover;
}

.registration span {
    font-size: 7px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    padding: 0 0 0 92px;
    font-weight: 300;
    font-family: var(--avenirNextRegular);
}
.no-reg-form {
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-info ul {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
}

/*.right-info ul li {
  position: relative;
}

.right-info ul li:after {
  position: absolute;
  content: '';
  background: #fff;
  height: 37px;
  width: 2px;
  right: -12px;
  top: -2px;
}*/

.right-info ul li:last-child:after {
  background: transparent
}

.registration-head {
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
    padding-left: 200px;
}

.registration-head h2 {
    padding-bottom: 10px;
    font-size: 24px;
    font-family: var(--avenirNextRegular);
    font-weight:400;
}

.registration-form .form-control {
  height: 55px;
  background: #001F33;
  border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
}

.registration-form ::-webkit-input-placeholder {
  color: #fff;
}

.registration-form ::-moz-placeholder {
  color: #fff;
}

.registration-form :-ms-input-placeholder {
  color: #fff;
}

.registration-form :-moz-placeholder {
  color: #fff;
}

.registration-form .form-control[type=file] {
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.choose-file {
  position: relative;
  height: 55px;
  background: #001F33;
  border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px
}

.registration-form .btn-primary {
    background: #0045E3;
    border: transparent;
    padding: 11px 60px;
    border-radius: 50px;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 20px;
}
.registration span.error {
    text-align: left;
    padding: 0;
}

.registration .form-select {
    background: #001f33 url(../images/Vector.png) right center / 23px no-repeat !important;
    border: 1px solid #fff;
    color: #fff;
    height: 55px;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    /* background-position: right 10px center; */
    /* background: transparent; */
    border-radius: 0;
    font-size: 14px;
}
.registration-form span.error {
    font-size: 14px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:14px;
}
::-moz-placeholder { /* Firefox 19+ */
  font-size:14px;
}
:-ms-input-placeholder { /* IE 10+ */
  font-size:14px;
}
:-moz-placeholder { /* Firefox 18- */
  font-size:14px;
}
.user-policy{
  font-size:12px;
}
.user-policy a {
    color: #fff;
    text-decoration: underline;
    font-size:12px;
}
.social-icons {
  padding: 0 0 5px;
}

.social-icons ul {
  display: flex;
  gap: 5px;
}

.registration-form {
    padding-bottom: 30px;
    width: 550px;
    margin: auto;
}
.form-control.error{
  border: 1px solid #ff0000;
}
.error{
  color: #ff0000;
}



/* ========================== responsive ========================== */
@media (min-width: 1921px) {
.no-reg-form {
    min-height: 67vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
@media (min-width: 1440px) {}

@media (max-width: 1199px) {}

@media (max-width: 1024px) {
  .registration .form-select {
    background: url(../images/Vector.png) right center /
    23px no-repeat !important;
}

  .mobileMenuButton {
    display: inline-block;
  }

  .registration {
    background: url("../images/registration-bg.png") -103px -720px / 130% 180% no-repeat rgb(0, 31, 51);
    padding: 25px;
  }

  .registration-head {
    padding-top: 20px;
  }


  .right-info ul li:after {
    height: 34px;
    width: 1px;
    right: -13px;
    top: -1px;
  }

  .user-policy {
    font-size: 13px;
    line-height: 20px;
  }
   .registration-form{
    width:80%;
  }
  .registration-head{padding-left:185px}
  .registration span{padding:0}
}
@media (max-width: 768px) {
.registration-form {
    width: 100%;
}
}
@media (max-width: 767px) {
  .registration-head h2 {
      font-size: 30px;
      text-align: center;
      width: 100%;
      padding: 0;
  }
  .registration-head {
      padding-left: 0;
  }
  .registration span{
  padding:0;
  }
  .right-info ul {
      justify-content: center;
  }
  .registration-form {
    width: 100%;
    text-align: center;
}

.registration-form p{
  font-size:15px !important;
}

  .choose-file, .registration-form .form-control {
    font-size: 13px;
}
 .registration span {
    font-size: 7px;
    display: flex;
    margin-bottom: 10px;
    text-align: center;
    padding: inherit;
    font-weight: 300;
    font-family: var(--avenirNextRegular);
    justify-content: center;
    padding: 0 0 0 200px;
}
.registration .form-select {
    background: url(../images/Vector.png) right/
    23px no-repeat !important;
}
  .choose-file {
    padding: 5px 12px
  }
.user-policy a {
    font-size: 11px;
}
  .logo {
    margin-bottom: 20px;
  }

  .registration-head h2 {
    font-size: 30px;
}

  .social-icons ul {
    justify-content: center;
  }

  a.policy.text-white {
    display: block;
    text-align: center;
  }

  .user-policy {
    text-align: center !important;
    margin-top: 15px;
  }
.no-reg-form {
    min-height: 285px;
}
}

@media (max-width: 375px) {
  .registration span {
    padding: 0 0 0 150px;
}
}