html, body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

body.dark-bg {
  background-color: #000;
  position: relative;
}

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

.container {
  max-width: 1140px;
  padding: 0 15px;
  background-color: transparent;
}

.header {
  background-color: #fff;
}

.header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
}

.header-container .logo {
  max-width: 470px;
}

.header-container .logo img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-container .logo:hover img {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-container .top-menu {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lang-box {
  position: relative;
  left: auto;
  right: 0;
  bottom: auto;
  display: block;
  margin: 15px 0px 15px auto;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.lang-box .flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
}

.lang-box .select-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 20px 8px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #030729;
  color: #fff;
}

.lang-box .select-toggle .lang {
  margin-right: 5px;
  font-size: 14px;
  text-transform: capitalize;
}

.lang-box .select-toggle .arrow {
  position: absolute;
  right: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px;
  border-color: transparent #fff #fff transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lang-box .select-list {
  right: 0;
  display: none;
  width: 130px;
  padding-top: 4px;
  padding-bottom: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.lang-box .lang-item {
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}

.lang-box .lang-item .lang-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 5px;
  border: 0 none #000;
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.lang-box .lang-item .lang-link.w--current {
  padding: 5px;
}

.w-dropdown-list.w--open {
  display: block;
}

.text-center {
  text-align: center;
}

.justify-center {
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .justify-center {
      text-align: center;
    }
  }
}

.p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}

.nice-btn {
  display: inline-block;
  min-width: 210px;
  border-radius: 5px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e4bb4c), to(#884a0f));
  background-image: linear-gradient(#e4bb4c, #884a0f);
  color: #fff;
  font-size: 20px;
  line-height: 1.2em;
  padding: 17px 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nice-btn:hover {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-section {
  padding: 90px 0 40px;
  background: #000 url("../images/main-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: left;
}

.main-section .title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6em;
  text-align: left;
  max-width: 60%;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.main-items {
  margin: 290px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-items .item {
  padding: 90px 23px 25px;
  position: relative;
  width: calc(33.33% - 7px);
  background-color: #fff;
  color: #000;
  text-align: center;
  margin: 0 7px 0 0;
}

.main-items .item .item-ico-wrapper {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e4bb4c), to(#884a0f));
  background-image: linear-gradient(#e4bb4c, #884a0f);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 8px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  padding: 30px;
}

.main-items .item .item-title {
  font-size: 24px;
  font-weight: 700;
}

.main-items .item .item-text {
  font-size: 16px;
  line-height: 1.4em;
}

.main-button-wrapper {
  margin: 50px 0 0;
  text-align: center;
}

.main-button-wrapper .main-btn {
  font-size: 22px;
  font-weight: 600;
  padding: 24px 30px;
}

.easy-section {
  padding: 40px 0;
  background-color: #000;
  overflow: hidden;
}

.easy-section .p {
  color: #fff;
}

.easy-section .easy-text {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}

.easy-section .easy-row {
  position: relative;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
}

.easy-section .easy-row .easy-row-container {
  color: #fff;
  width: 70%;
  position: relative;
  margin: 0 0 0 auto;
  z-index: 2;
}

.easy-section .easy-row .easy-row-container .easy-row-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.easy-section .easy-row .easy-row-container .easy-row-text {
  text-align: justify;
}

.easy-section .easy-row .easy-row-container .easy-row-btn {
  margin-top: 25px;
  width: 100%;
}

.easy-section .easy-row.easy-row-2 {
  top: 0;
  min-height: 325px;
  margin: 0;
}

.easy-section .easy-row.easy-row-2 .easy-row-container {
  width: 60%;
  margin: 0 auto 0 0;
}

.easy-section .easy-row .easy-row-bg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-29%, -8%);
  transform: translate(-29%, -8%);
  height: 150%;
  width: 55%;
  background: url("../images/easy-trans-1.png") center/contain no-repeat;
  z-index: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.easy-section .easy-row .easy-row-bg.bg-2 {
  left: auto;
  right: 0;
  width: 65%;
  -webkit-transform: translate(30%, -8%);
  transform: translate(30%, -8%);
  background: url("../images/easy-trans-2.png") center/contain no-repeat;
}

.easy-section .easy-row:hover .easy-row-bg {
  -webkit-filter: brightness(1.5);
  filter: brightness(1.5);
  -webkit-transition: 1s;
  transition: 1s;
}

.easy-section .easy-row .easy-row-mobile-img {
  display: none;
}

.faq-section {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.faq-section .faq-title {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.faq-items {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-items .faq-item {
  width: 48%;
  background-color: #fff;
  padding: 15px;
  margin: 0 0 20px;
}

.faq-items .faq-item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.faq-items .faq-item .question .q-num {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e4bb4c), to(#884a0f));
  background-image: linear-gradient(#e4bb4c, #884a0f);
  border-radius: 50%;
  width: 75px;
  min-width: 75px;
  height: 75px;
  line-height: 75px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-right: 20px;
}

.faq-items .faq-item .question .q-txt {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.faq-items .faq-item .answer {
  text-align: justify;
  color: #041d33;
}

.footer-shape {
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 27vw;
  height: calc(1.256 * 27vw);
  background: #000 url("../images/footer-shape.jpg") center/contain no-repeat;
  z-index: 0;
}

.footer {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background-color: #000;
  z-index: 1;
}

.dark-bg .footer {
  background-color: transparent;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

.footer-link {
  display: inline-block;
  padding: 10px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav-item {
  margin: 5px 10px 10px;
  list-style-type: none;
}

.footer-logo-wrapper {
  text-align: center;
  max-width: 400px;
  margin: 30px auto;
}

.footer-logo-wrapper img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-logo-wrapper:hover img {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form-wrapper {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 900;
  display: none;
  overflow: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.register-form {
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 490px;
  margin-top: 15vh;
  padding: 20px 15px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.register-form .form-header {
  font-size: 32px;
  line-height: 1em;
  font-weight: 600;
  color: #161616;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0;
  margin-bottom: 15px;
}

.register-form .warning-icon {
  display: none;
}

.register-form .phone-row, .register-form .form-row-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.register-form .form-control {
  height: 38px;
  margin-bottom: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #aaa;
  border-radius: 0;
  background-color: #fff;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 38px;
  font-weight: 400;
}

.register-form .form-control[readonly], .register-form .form-control[disabled] {
  background-color: #eee;
}

.register-form .form-control.checkbox-policy {
  width: auto;
  height: auto;
  margin-right: 5px;
  margin-left: 0;
}

.register-form .form-control.form-control-bg.email-control {
  height: 50px;
  padding-left: 35px;
  border-color: #000;
  background-color: transparent;
  background-image: url("../images/user-icon_1user-icon.png");
  background-position: 5px 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.register-form .form-control.form-control-bg.pass-control {
  height: 50px;
  padding-left: 35px;
  border-color: #000;
  background-color: transparent;
  background-image: url("../images/password_1password.png");
  background-position: 5px 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.register-form .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}

.register-form .form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: auto;
  align-self: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-right: 1px solid rgba(205, 205, 205, 0.2);
  border-bottom: 1px solid rgba(205, 205, 205, 0.2);
  border-left: 1px dashed rgba(205, 205, 205, 0.2);
}

.register-form .checkbox-group {
  padding: 10px 0;
  display: none;
}

.register-form .checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #4d4d4d;
  font-size: 14px;
  text-align: left;
}

.register-form .form-button {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e4bb4c), to(#884a0f));
  background-image: linear-gradient(#e4bb4c, #884a0f);
  color: #fff;
  width: 100%;
  height: 38px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form .form-button:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.register-form .form-button.generate-pass {
  cursor: pointer;
  padding: 2px 10px;
  font-size: 15px;
  line-height: 16px;
  text-transform: none;
}

.register-form .form-button.btn-submit {
  font-size: 25px;
  line-height: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
  height: 50px;
}

.register-form .form-group {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 6px;
  margin-left: auto;
}

.register-form .form-group.form-group-left {
  margin-right: 0;
}

.register-form .form-group.form-group-right {
  margin-left: 0;
}

.register-form .form-group.full-width {
  max-width: 100%;
}

.register-form .members-form {
  position: relative;
}

.register-form .prefix-cell, .register-form .form-cell-1 {
  width: 50%;
  padding-right: 5px;
}

.register-form .phone-cell, .register-form .form-cell-2 {
  width: 50%;
  padding-left: 5px;
}

.register-form .prefix-cell {
  width: 30%;
}

.register-form .phone-cell {
  width: 70%;
}

.register-form .close-register {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  padding-bottom: 2px;
  padding-left: 1px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #aaa;
  text-align: center;
  cursor: pointer;
  font-size: 40px;
  font-weight: 200;
}

.register-form .form-block {
  width: 80%;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.register-form .short-form-policy {
  font-size: 16px;
}

.register-form .short-form-policy .members-form-policy-tooltip {
  border: solid 5px #e4bb4c;
}

@media screen and (max-width: 991px) {
  .register-form .short-form-policy .members-form-policy-tooltip {
    border: none;
  }
}

.loadingoverlay {
  z-index: 99999 !important;
}

@media screen and (max-width: 991px) {
  .header-container .logo {
    max-width: 380px;
  }
  .main-section {
    padding: 80px 0 40px;
  }
  .main-section .title {
    max-width: 80%;
    font-size: 25px;
  }
  .faq-section .faq-title {
    font-size: 30px;
  }
  .footer-nav-item {
    margin: 0 10px;
  }
  .footer-logo-wrapper {
    max-width: 330px;
    margin: 20px auto;
  }
}

@media screen and (max-width: 767px) {
  .header-container {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-container .top-menu {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
  .header-container .logo {
    max-width: 250px;
    margin-right: 10px;
  }
  .main-section {
    padding: 30px 0;
  }
  .main-section .title {
    max-width: 90%;
    font-size: 22px;
  }
  .main-section .main-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 130px;
  }
  .main-section .main-items .item {
    width: 100%;
    padding: 60px 18px 20px;
    margin-bottom: 110px;
  }
  .main-section .main-items .item:last-child {
    margin-bottom: 0;
  }
  .main-section .main-items .item .item-ico-wrapper {
    width: 130px;
    height: 130px;
  }
  .faq-items .faq-item {
    width: 100%;
  }
  .easy-section .easy-row .easy-row-container {
    width: 100%;
    margin: 0;
  }
  .easy-section .easy-row .easy-row-container .easy-row-title {
    text-align: center;
  }
  .easy-section .easy-row .easy-row-container .easy-row-text {
    text-align: center;
  }
  .easy-section .easy-row.easy-row-2 .easy-row-container {
    width: 100%;
    margin: 0;
  }
  .easy-section .easy-row .easy-row-bg {
    display: none;
  }
  .easy-section .easy-row .easy-row-mobile-img {
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .easy-section .easy-row:hover .easy-row-mobile-img {
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

/**** Login Page ****/
.intro-section {
  padding: 85px 0;
  background: #000 url("../images/main-bg.jpg") 0 center/cover no-repeat;
}

.intro-section .intro-title {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.title {
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 600;
  margin: 0 0 15px;
}

.subtitle {
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 600;
  margin: 0;
}

.form-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.form-section .form-block {
  width: 80%;
  margin: 40px auto;
}

.form-section .login-btn {
  height: 38px;
  padding: 0 5px;
  width: 100%;
}

.still-section {
  padding: 60px 0;
  background: #000 url("../images/main-right-shapes-trans.png") 0 center/contain no-repeat;
  text-align: center;
}

.still-section .title, .still-section .subtitle {
  color: #fff;
}

.still-section .still-btn {
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .intro-section {
    padding: 60px 0;
  }
  .intro-section .intro-title {
    font-size: 30px;
  }
  .form-section, .still-section {
    padding: 40px 0;
  }
  .title {
    font-size: 25px;
  }
  .subtitle {
    font-size: 19px;
  }
}

#termsUpdateModal {
  display: none;
}
