* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "creato_regular";
  src: url(../font/creato/CreatoDisplay-Regular.otf);
}

@font-face {
  font-family: "creato_medium";
  src: url(../font/creato/CreatoDisplay-Medium.otf);
}

@font-face {
  font-family: "creato_bold";
  src: url(../font/creato/CreatoDisplay-Bold.otf);
}

:root {
  --creato_regular: "creato_regular";
  --creato_medium: "creato_medium";
  --creato_bold: "creato_bold";

  --fs_12: 12px;
  --fs_14: 14px;
  --fs_15: 15px;
  --fs_16: 16px;
  --fs_18: 18px;
  --fs_20: 20px;
  --fs_22: 22px;
  --fs_24: 24px;
  --fs_28: 28px;
  --fs_32: 32px;
  --fs_34: 34px;
  --fs_40: 40px;
  --fs_42: 42px;
  --fs_50: 50px;
  --fs_52: 52px;
  --fs_54: 54px;
  --fs_60: 60px;

  --bg_color_1: #5a6861;
  --bg_color_3: #0b0b0b;
  --bg_color_4: #111;
  --bg_color_5: #ffffff;

  --text_color_1: #101314;
  --text_color_2: #2b3130;
  --text_color_3: #cfd6d2;

  --brand_color_1: #f1b61a;

  --soft_color_1: rgba(0, 0, 0, .08);

}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--creato_regular);

  color: var(--text_color_1);
}

.site-header {
  background: var(--bg_color_1);
  padding: 22px 0 14px;
}

.site-header .brand-mark {
  line-height: 1;
}

.site-header .top-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  margin-bottom: 35px;
}

.site-header .top-links a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .6px;
}

.site-header .top-links a:hover {
  text-decoration: underline;
}

.site-header .top-links .user-icon:hover{
    text-decoration: none;
}

.site-header .top-links .user-icon {
  font-size: 20px;
  line-height: 1;
}

.site-header .searchbar {
  display: flex;
  align-items: stretch;
  /* width: min(500px, 100%); */
  background: var(--bg_color_5);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.site-header .searchbar .form-control {
  border: 0;
  box-shadow: none !important;
  border-radius: 0;
  font-size: 16px;
}

.site-header .searchbar .btn {
  background: var(--bg_color_5);
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, .12);
  width: 54px;
  border-radius: 0;
}

.site-header .searchbar .btn:hover {
  background: rgba(0, 0, 0, .04);
}

.site-nav {
  background: linear-gradient(180deg, var(--bg_color_4), var(--bg_color_3));
}

.site-nav .home-btn {
  width: 44px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg_color_1);
  color: var(--bg_color_5);
  text-decoration: none;
  border-radius: 0;
}

.site-nav .home-btn:hover {
  background: #f2f4f6;
}

.site-nav .main-menu {
  display: none;
  align-items: center;
  gap: 34px;
  padding: 0 10px;
}

.site-nav .main-menu a {
  color: var(--bg_color_5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .6px;
  padding: 14px 0;
  position: relative;
}

.site-nav .main-menu .dropdown .dropdown-menu a {
  color: var(--bg_color_5);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .6px;
  padding: 7px 14px;
  position: relative;
  text-transform: uppercase;
}


.site-nav .main-menu a:hover {
  opacity: .9;
}

.site-nav .main-menu i {
  font-size: 10px;
  opacity: .9;
}

.site-nav .nav-toggle {
  color: var(--bg_color_5);
  border: none;
}

.site-nav .nav-toggle:hover {
  background: rgba(255, 255, 255, .06);
}

.site-nav .main-menu {
  gap: 34px;
  padding: 0 10px;
}

.site-nav .main-menu .dropdown .nav-link {
  color: var(--bg_color_5);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .6px;
  padding: 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav .main-menu .dropdown .nav-link:after {
  display: none;
}

.site-nav .main-menu .dropdown .dropdown-menu {
  background: #111;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  margin-top: 6px !important;
  margin-left: -5px !important;
}

.site-nav .main-menu .dropdown .dropdown-item {
  color: var(--bg_color_5);
}

.site-nav .main-menu .dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, .08);
}

.site-nav .mobile-menu {
  display: none;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.site-nav .mobile-menu a {
  display: block;
  padding: 10px 10px;
  color: var(--bg_color_5);
  text-decoration: none;
  font-size: 14px;
}

.site-nav .mobile-menu a:hover {
  background: rgba(255, 255, 255, .06);
}

.site-nav .mobile-menu .mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-nav .mobile-menu .mobile-item .mobile-link {
  width: 100%;
  background: none;
  border: 0;
  color: var(--bg_color_5);
  padding: 12px 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav .mobile-menu .mobile-item .mobile-link i {
  transition: transform .25s ease;
}

.site-nav .mobile-menu .mobile-item.active .mobile-link i {
  transform: rotate(180deg);
}

.site-nav .mobile-menu .mobile-item .mobile-submenu {
  display: none;
  padding: 6px 0 10px;
}

.site-nav .mobile-menu .mobile-item .mobile-submenu a {
  display: block;
  padding: 0 20px 8px 18px;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav .mobile-menu .mobile-item .mobile-submenu a:hover {
  background: rgba(255, 255, 255, .06);
}

.page-wrap {
  padding: 0 0 0;
}

.page-wrap .page-card {
  background: var(--bg_color_5);
  margin: 0 auto;
  padding: 18px 18px 0;
}

.page-wrap .page-card .hero {
  position: relative;
  overflow: hidden;
}

.page-wrap .page-card .hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-wrap .page-card .hero .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.55) 100%);
}

.page-wrap .page-card .hero .hero-overlay .logoimg {
  max-height: 140px;
}

.page-wrap .soft-divider {
  border: 0;
  height: 1.5px;
  background-color: #000;
}

.page-wrap .top-article .section-title {
  font-size: 16px;
  letter-spacing: .6px;
  font-weight: 600;
  color: #000;
}

.page-wrap .top-article .article-strip .row>div:first-child .article-card {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.page-wrap .top-article .article-strip .row>div:last-child .article-card {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-wrap .top-article .article-strip .article-card {
  display: block;
  border-radius: 0;
  overflow: hidden;
}

.page-wrap .top-article .article-strip .article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-wrap .top-article .article-strip .article-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
}

.page-wrap .top-article .article-strip .topArticleSwiper {
  width: 100%;
}

@media (min-width: 768px) {
  .page-wrap .top-article .article-strip .swiper-slide {
    width: calc(100% / 3) !important;
  }
}

.page-wrap .top-article .article-strip .swiper-slide .article-card {
  display: block;
  border-radius: 0;
  overflow: hidden;
}

.page-wrap .top-article .article-strip .swiper-slide:first-child .article-card {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.page-wrap .top-article .article-strip .swiper-slide:last-child .article-card {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-wrap .top-article .article-strip .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-wrap .spacer-xxl {
  height: 40px;
}

.site-footer {
  background: var(--bg_color_1);
  color: #e9eeeb;
}

.site-footer .footer-links-bar {
  background: #b1b1b1;
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 14px 16px;
  margin: 0 auto 18px;
}

.site-footer .footer-links-bar a {
  color: #101314;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.site-footer .footer-links-bar a span {
  display: inline-block;
  margin-right: 6px;
  font-weight: 800;
}

.site-footer .footer-links-bar a:hover {
  text-decoration: underline;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, .45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg_color_5);
  text-decoration: none;
}

.site-footer .footer-social a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .08);
}

.site-footer .footer-subscribe {
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 18px;
  padding-bottom: 20px;
}

.site-footer .footer-subscribe .subscribe-title {
  font-size: 16px;
  letter-spacing: 1.3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer .footer-subscribe .subscribe-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
}

.site-footer .footer-subscribe .btn-findout {
  background: rgba(0, 0, 0, 0.232);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
}

.site-footer .footer-subscribe .btn-findout:hover {
  background: rgba(0, 0, 0, .32);
  color: var(--bg_color_5);
}

.site-footer .footer-bottom {
  background: #0b0b0b;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer .footer-bottom .bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer .footer-bottom .bottom-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.site-footer .footer-bottom .bottom-links a:hover {
  color: var(--bg_color_5);
}

.sub-topbar {
  background: var(--bg_color_1);
  padding: 16px 0;
}

.sub-brand-logo {
  max-height: 60px;
}

.sub-topbar-right {
  color: rgba(255, 255, 255, .6);
  font-size: var(--fs_16);
  letter-spacing: .5px;
}

.sub-topbar-right a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.sub-topbar-right a:hover {
  text-decoration: underline;
}

.sub-card {
  background: #ffffff;
  padding: 5px 20px 20px 20px;
}

.sub-helper-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.sub-helper {
  font-size: var(--fs_16);
  color: rgba(0, 0, 0, .65);
}

.sub-title {
  padding: 6px 0 8px;
}

.sub-title h1 {
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 0 0 8px;
  font-family: var(--creato_medium);
  font-size: var(--fs_42);
}

.sub-title p {
  margin: 0;
  color: rgba(0, 0, 0, .65);
  font-size: var(--fs_20);
}

.sub-visuals {
  padding: 18px 0 10px;
}

.sub-visual-pack img {
  width: 100%;
  height: auto;
}

.sub-plans {
  padding: 8px 0 0;
}

.sub-plan-card {
  border: 4px double rgba(0, 0, 0, .45);
  background: var(--bg_color_5);
  padding: 18px 18px 16px;
  height: max-content;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-plan-head h3 {
  margin: 0;
  font-size: var(--fs_24);
  font-family: var(--creato_medium);
}

.sub-plan-sub {
  margin-top: 2px;
  font-size: var(--fs_18);
  color: rgba(0, 0, 0, .60);
}

.sub-plan-desc {
  font-size: var(--fs_16);
  line-height: 1.55;
  color: rgba(0, 0, 0, .70);
  margin: 16px 0 14px;
}

.sub-plan-desc a {
  color: rgba(0, 0, 0, .70);
}

.sub-btn {
  /* display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #3f4f49;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  min-width: 150px; */

  background: var(--bg_color_1);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
}

.sub-btn:hover {
  color: #fff;
}

.sub-plan-note {
  margin-top: 40px;
  font-size: var(--fs_16);
  color: rgba(0, 0, 0, .55);
  line-height: 1.35;
}

.sub-midline {
  margin: 40px 0 0 0;
}

.sub-intro {
  font-size: var(--fs_16);
  color: rgba(0, 0, 0, .65);
  letter-spacing: .6px;
  margin-bottom: 8px;
}

.sub-payhelp {
  font-size: var(--fs_20);
  color: rgba(0, 0, 0, .65);
  line-height: 1.45;
}

.sub-payhelp a {
  color: rgba(0, 0, 0, .65);
  text-decoration: none;
}

.sub-corporate {
  margin-top: 18px;
  background: #e6e6e6;
  padding: 18px 16px;
}

.sub-corp-text {
  color: rgba(0, 0, 0, .65);
  font-size: var(--fs_18);
  line-height: 1.5;
}

.sub-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--bg_color_1);
  color: var(--bg_color_5);
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  min-width: 170px;
}

.sub-newsletters {
  padding: 22px 0 0;
}

.sub-h2 {
  font-size: 22px;
  font-family: var(--creato_medium);
  margin: 0 0 10px;
}

.sub-n-desc {
  color: rgba(0, 0, 0, .65);
  font-size: var(--fs_16);
  margin: 30px 0 0 0;
  line-height: 1.55;
}

.sub-n-desc1 {
  color: rgba(0, 0, 0, .65);
  font-size: var(--fs_16);
  margin: 30px 0 40px 0;
  line-height: 1.55;
}

.sub-cover {
  width: auto;
  height: 300px;
}

.sub-footer {
  background: var(--bg_color_1);
  color: rgba(255, 255, 255);
  padding: 24px 0;
  letter-spacing: 1px;
}

.sub-footer p {
  font-size: var(--fs_16);
  margin-bottom: 0;
}

.sub-plan-button {
  margin-top: 80px;
}

.sub-plans .indtroductory_for_free_part {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

.sub-plans .indtroductory_for_free_part h4 {
  text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
  .sub-card {
    padding: 18px 14px 22px;
  }

  .sub-corporate {
    padding: 14px 12px;
  }

  .sub-btn,
  .sub-btn-outline {
    width: 100%;
    min-width: unset;
  }
}

.premium-topbar {
  background: var(--bg_color_1);
  padding: 18px 0 14px;
}

.premium-logo-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
}

.premium-logo {
  max-height: 78px;
}

.premium-black-divider {
  height: 14px;
  background: #000;
}

.premium-page {
  background: #fff;
  padding: 28px 0 24px;
}

.premium-left {
  padding-right: 8px;
}

.premium-title {
  font-family: var(--creato_bold);
  font-size: var(--fs_42);
  line-height: 1.1;
  margin: 0 0 6px;
  color: #000;
}

.premium-subtitle {
  font-family: var(--creato_medium);
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.premium-muted {
  color: rgba(0, 0, 0, .55);
  font-size: var(--fs_14);
  margin-bottom: 14px;
}

.premium-section-head {
  font-family: var(--creato_medium);
  font-size: 20px;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, .65);
}

.premium-para {
  font-size: var(--fs_14);
  line-height: 1.55;
  color: rgba(0, 0, 0, .60);
  max-width: 740px;
  margin-bottom: 18px;
}

.premium-strip {
  background: #bfefff;
  padding: 8px 14px;
  font-family: var(--creato_medium);
  font-size: 18px;
  color: rgba(0, 0, 0, .85);
  margin: 14px 0 14px;
}

.premium-country-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.premium-country-label {
  font-size: var(--fs_16);
  color: rgba(0, 0, 0, .70);
  min-width: 130px;
  margin: 0;
}

.premium-country-input {
  height: 30px;
  border: 1px solid rgba(0, 0, 0, .25);
  padding: 0 10px;
  font-size: var(--fs_16);
  outline: none;
}

.premium-options {
  margin-top: 10px;
}

.premium-option {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.premium-option-left {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
  cursor: pointer;
  flex: 1;
}

.premium-option-left input[type="radio"] {
  margin-top: 8px;
  accent-color: var(--bg_color_1);
}

.premium-option-title {
  font-family: var(--creato_medium);
  font-size: var(--fs_20);
  color: rgba(0, 0, 0, .70);
}

.premium-option-sub {
  grid-column: 2;
  font-size: var(--fs_14);
  color: rgba(0, 0, 0, .50);
  margin-top: 2px;
}

.premium-option-price {
  font-family: var(--creato_medium);
  font-size: 18px;
  color: rgba(0, 0, 0, .55);
  min-width: 110px;
  text-align: right;
  padding-top: 2px;
}

.premium-checkout-bar {
  margin-top: 18px;
  background: #e6e6e6;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.premium-btn-solid {
  background: var(--bg_color_1);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
}

.premium-btn-small {
  min-width: 140px;
  padding: 8px 14px;
}

.premium-promo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.premium-promo-label {
  font-size: var(--fs_14);
  color: rgba(0, 0, 0, .60);
}

.premium-promo-controls {
  display: flex;
  align-items: center;
  gap: 0;
}

.premium-promo-input {
  min-width: 50%;
  max-width: 50%;
  height: 40px;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: var(--fs_14);
  background: #fff;
}

.premium-right {
  padding-left: 12px;
}

.premium-right-block {
  margin-bottom: 22px;
}

.premium-right-block h4 {
  font-family: var(--creato_medium);
  font-size: var(--fs_14);
  margin-bottom: 15px;
  color: rgba(0, 0, 0, .85);
}

.premium-right-block p {
  font-size: var(--fs_14);
  line-height: 1.5;
  color: rgba(0, 0, 0, .55);
  margin: 0;
  letter-spacing: 0.4px;
}

.premium-link {
  color: #4fb5c7;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

.premium-footer {
  background: var(--bg_color_1);
  padding: 18px 0 16px;
  color: rgba(255, 255, 255, .9);
  text-align: center;
}

.premium-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: var(--fs_14);
}

.premium-footer-links a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-size: var(--fs_18);
  letter-spacing: 0.8px;
}

.premium-footer-copy span {
  font-size: var(--fs_12);
  margin-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, .60);
}

@media only screen and (max-width: 992px) {
  .premium-right {
    padding-left: 0;
  }

  .premium-left {
    padding-right: 0;
  }

  .premium-checkout-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-btn-solid {
    width: 100%;
    min-width: unset;
  }

  .premium-promo {
    align-items: flex-start;
    width: 100%;
  }

  .premium-promo-controls {
    width: 100%;
  }

  .premium-promo-input {
    flex: 1;
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .premium-title {
    font-size: var(--fs_34);
  }

  .premium-country-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-country-input {
    width: 100%;
    height: 34px;
  }

  .premium-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-option-price {
    text-align: left;
    padding-top: 0;
  }
}




















.auth_modal_bs .modal-content {
  border-radius: 0;
  border: 1px solid #d9d9d9;
}

.auth_modal_body {
  padding: 40px;
  position: relative;
}

.auth_modal_close_bs {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.auth_modal_close_bs i {
  font-size: 28px;
  color: red;
}

.auth_modal_title {
  font-family: var(--creato_bold);
  font-size: var(--fs_60);
  color: #000;
}

.auth_modal_hr {
  border-top: 2px solid #000;
  margin: 20px 0 40px;
}

.auth_label {
  font-family: var(--creato_regular);
  font-size: var(--fs_20);
  text-align: right;
  padding-right: 20px;
}

.auth_input {
  width: 100%;
  height: 46px;
  border: 1px solid #9d9d9d;
  padding: 10px 14px;
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
}

.auth_options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.auth_checkbox {
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
}

.auth_link {
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
  color: #000;
  text-decoration: none;
}

.auth_btn {
  background: var(--bg_color_1);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
}

.auth_bottom_hr {
  border-top: 2px solid #000;
  margin: 60px 0 30px;
}

.auth_bottom_title {
  font-family: var(--creato_bold);
  font-size: 32px;
}

.auth_bottom_text {
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
  color: rgba(0, 0, 0, .55);
}

.auth_bottom_actions a {
  display: block;
  font-family: var(--creato_medium);
  font-size: var(--fs_16);
  color: #000;
  margin-top: 6px;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  .auth_modal_body {
    padding: 40px 25px;
  }

  .auth_modal_title {
    font-size: 56px;
  }

  .auth_label {
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
  }
}






.reg_header {
  background: #5b6a63;
  padding: 28px 0;
}

.reg_header .logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reg_header .logo_wrap img {
  /* width: 100%; */
  /* max-width: 860px; */
  max-height: 130px;
}

.reg_black_strip {
  background: #000;
  height: 28px;
}

.reg_main {
  padding: 28px 0;
  background: #fff;
}

.reg_title_row {
  margin-bottom: 6px;
}

.reg_title {
  font-family: var(--creato_bold);
  font-size: 44px;
  color: #000;
  margin: 0;
}

.reg_required_note {
  font-family: var(--creato_regular);
  font-size: var(--fs_14);
  color: #000;
  text-align: right;
  padding-top: 12px;
}

.reg_section_bar {
  background: #efefef;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin: 10px 0 28px;
}

.reg_section_bar span {
  font-family: var(--creato_regular);
  font-size: var(--fs_18);
  color: #333;
}


.reg_form_label {
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
  color: #000;
  text-align: right;
  padding-right: 14px;
  white-space: nowrap;
}

.reg_form_label .req {
  color: #c20000;
  font-weight: 700;
}

.reg_input {
  width: 100%;
  height: 36px;
  border: 1px solid #9c9c9c;
  padding: 6px 10px;
  outline: none;
  font-family: var(--creato_regular);
  font-size: var(--fs_15);
  color: #000;
  background: #fff;
}

.reg_row_mb {
  margin-bottom: 16px;
}

.reg_pass_heading {
  font-family: var(--creato_medium);
  font-size: var(--fs_16);
  color: #000;
}

.reg_pass_hint {
  font-family: var(--creato_regular);
  font-size: var(--fs_12);
  color: #333;
  margin-left: 10px;
}

.reg_show_pass {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-family: var(--creato_regular);
  font-size: var(--fs_12);
  color: #000;
}

.reg_show_pass input {
  width: 12px;
  height: 12px;
}

.reg_terms_title {
  font-family: var(--creato_medium);
  font-size: var(--fs_16);
  color: #000;
  margin-top: 80px;
  margin-bottom: 15px;
  margin-left: 100px;
}

.reg_terms_text {
  font-family: var(--creato_regular);
  font-size: var(--fs_14);
  color: rgba(0, 0, 0, .55);
  margin-bottom: 15px;
  margin-left: 100px;
}

.reg_terms_text a {
  color: rgba(0, 0, 0, .55);
  text-decoration: none;
}

.reg_switch {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  margin-left: 100px;
}

.reg_switch input {
  display: none;
}

.reg_switch span {
  width: 44px;
  height: 22px;
  border-radius: 9px;
  background: #cfcfcf;
  position: relative;
  cursor: pointer;
  border: 1px solid #aaa;
}

.reg_switch span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: .2s;
  border: 1px solid #bbb;
}

.reg_switch input:checked+span {
  background: #5b6a63;
  border-color: #5b6a63;
}

.reg_switch input:checked+span::after {
  left: 18px;
}

.reg_captcha_wrap {
  margin-top: 22px;
}

.reg_btn_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.reg_btn {
  background: var(--bg_color_1);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
}


.reg_side h5 {
  font-family: var(--creato_medium);
  font-size: var(--fs_16);
  color: #000;
  margin-bottom: 8px;
}

.reg_side p {
  font-family: var(--creato_regular);
  font-size: var(--fs_14);
  color: rgba(0, 0, 0, .55);
  line-height: 1.45;
  margin-bottom: 22px;
}

.reg_side a {
  color: rgba(0, 0, 0, .55);
  text-decoration: none;
}

.reg_side a:hover {
  text-decoration: underline;
}


.reg_footer {
  background: #5b6a63;
  padding: 18px 0 26px;
  text-align: center;
  color: #fff;
}

.reg_footer a {
  color: #fff;
  text-decoration: none;
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
}

.reg_footer a:hover {
  text-decoration: underline;
}

.reg_footer_small {
  margin-top: 8px;
  font-family: var(--creato_regular);
  font-size: var(--fs_12);
  opacity: .85;
}

@media only screen and (max-width: 991px) {
  .reg_title {
    font-size: 34px;
  }

  .reg_required_note {
    text-align: left;
    padding-top: 6px;
  }

  .reg_form_label {
    text-align: left;
    padding-right: 0;
    white-space: normal;
    margin-bottom: 6px;
  }

  .reg_show_pass {
    justify-content: flex-start;
    margin-top: 6px;
  }
}

@media only screen and (max-width: 576px) {
  .reg_terms_title {
    margin-left: 0;
  }

  .reg_terms_text {
    margin-left: 0;
  }

}



.contact_header {
  background: #5b6a63;
  padding: 28px 0;
}

.contact_header .logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_header .logo_wrap img {
  max-height: 130px;
}

.contact_main {
  padding: 28px 0;
  background: #fff;
  min-height: 68vh;
}

.contact_title_row {
  margin-bottom: 6px;
}

.contact_title {
  font-family: var(--creato_bold);
  font-size: 44px;
  color: #000;
  margin: 0;
}

.contactus_bottom_hr {
  border-top: 2px solid #000;
  margin: 20px 0 30px
}

.contact_required_note {
  font-family: var(--creato_regular);
  font-size: var(--fs_14);
  color: #000;
  text-align: right;
  padding-top: 12px;
}

.contact_section_bar {
  background: #efefef;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin: 10px 0 28px;
}

.contact_section_bar span {
  font-family: var(--creato_regular);
  font-size: var(--fs_18);
  color: #333;
}

.contact_form_label {
  font-family: var(--creato_regular);
  font-size: var(--fs_16);
  color: #000;
  text-align: right;
  padding-right: 14px;
  white-space: nowrap;
}

.contact_form_label .req {
  color: #c20000;
  font-weight: 700;
}

.contact_input {
  width: 100%;
  height: 36px;
  border: 1px solid #9c9c9c;
  padding: 6px 10px;
  outline: none;
  font-family: var(--creato_regular);
  font-size: var(--fs_15);
  color: #000;
  background: #fff;
}

.contact_row_mb {
  margin-bottom: 16px;
}

.message_input {
  width: 100%;
  height: auto;
  border: 1px solid #9c9c9c;
  padding: 6px 10px;
  outline: none;
  font-family: var(--creato_regular);
  font-size: var(--fs_15);
  color: #000;
  background: #fff;
}

.contact_pass_heading {
  font-family: var(--creato_medium);
  font-size: var(--fs_16);
  color: #000;
}

.contact_pass_hint {
  font-family: var(--creato_regular);
  font-size: var(--fs_12);
  color: #333;
  margin-left: 10px;
}

.contact_show_pass {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-family: var(--creato_regular);
  font-size: var(--fs_12);
  color: #000;
}

.contact_show_pass input {
  width: 12px;
  height: 12px;
}

.contact_btn_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.contact_btn {
  background: var(--bg_color_1);
  border: none;
  color: var(--bg_color_5);
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 10px 16px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {

  .contact_form_label {
    text-align: left;
    padding-right: 0;
    white-space: normal;
    margin-bottom: 6px;
  }

}
@media only screen and (max-width: 576px) {

  .premium-promo-input{
    min-width: 100%;
    max-width: 100%;
    min-height: 35px;
  }
  .premium-promo-controls{
    display: flex;
    flex-direction: column;
  }

  .reg_switch{
    margin-left: 0;
  }

  .reg_btn_wrap{
    margin-bottom: 20px;
  }

  .auth_modal_close_bs {
    top: 0;
    right: 0;
  }


}
