/******************************
*	      Font Family
********************************/
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy/Gilroy-Thin.ttf) format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url(../fonts/Gilroy/Gilroy-Regular.ttf) format("truetype");
  /*.editor-content p*/
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url(../fonts/Gilroy/Gilroy-Medium.ttf) format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url(../fonts/Gilroy/Gilroy-SemiBold.ttf) format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url(../fonts/Gilroy/Gilroy-Bold.ttf) format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Graphik";
  src: url(../fonts/Graphik/GraphikRegular.otf);
  font-weight: 400;
}

@font-face {
  font-family: "Graphik";
  src: url(../fonts/Graphik/GraphikMedium.otf);
  font-weight: 500;
}

@font-face {
  font-family: "Graphik";
  src: url(../fonts/Graphik/GraphikBold.otf);
  font-weight: 600;
}

@font-face {
  font-family: "Graphik";
  src: url(../fonts/Source-Sans-Pro/SourceSansPro-Semibold.otf);
  font-weight: 600;
}

/******************************
  *	    Custom Properties
  ********************************/
:root {
  --primary-color: #0066B3;
  --secondary-color: #ebabb1;
  --bg-color: #090914;
  --bg-alt-color: #18181b;
  --dark-color: #000000;
  --dark-alt-color: #000000c4;
  --dark-lite-color: #030303;
  --light-color: #ffffff;
  --light-alt-color: #f1f1f1;
  --cl-color: #ebabb1;
  --body-color: #859ff8;
  --base-font: "Gilroy-SemiBold", sans-serif;
  --color-dark_lite-sec: #534659;
  --color-gray_lite: #656565;
}

/******************************
  *	      Global CSS
  ********************************/
*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--base-font)!important;
}

body font,
body span,
body p
body div,
body li,
body button,
body a,
body{
    font-family: "Open Sans", sans-serif!important;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

figure,
img,
svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

.flex-ctr {
  display: flex;
  align-items: center;
}

.flex-spb {
  display: flex;
  justify-content: space-between;
}

.flex-ctr-ctr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-ctr-spb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start-spb {
  display: flex;
  justify-content: space-between;
}

.container {
  margin: 0 auto;
  width: clamp(320px, 92%, 1430px);
  padding: 0 15px;
}

.container-alt {
  margin: 0 auto;
  padding: 0 15px;
  width: clamp(320px, 90%, 1400px);
}

@media (max-width: 575px) {
  .container,
  .container-alt {
    width: 100%;
  }
}
html .active {
    color: var(--primary-color) !important;
}
.body-primary {
  background-color: var(--body-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.d-none {
  display: none !important;
}

.hero__text.mb-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.m-0 {
  margin: 0;
}

.table-wrapper.m-0 {
  margin: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.hero__text.mb-40 {
  margin-bottom: 40px;
}

.po-r {
  position: relative;
}

.gp-28 {
  gap: 28px;
}

.gap-16 {
  gap: 16px;
}

.gp-24 {
  gap: 24px;
}

.gp-20 {
  gap: 20px;
}

.gp-13 {
  gap: 13px;
}

.gp-10 {
  gap: 10px;
}

.gp-40 {
  gap: 50px;
}

.gp-50 {
  gap: 50px;
}

.gp-70 {
  gap: 70px;
}

.m-auto {
  margin: auto;
}

.flex {
  display: flex;
}

.f-1 {
  flex: 1;
}

.resize {
  resize: vertical;
}

.flex-ctr-spb-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .flex-ctr-spb-alt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flex-ctr-spb-alt.flex-567 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .flex-ctr-spb-alt.flex-567.gap-16 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }
}

/****************************************
*           Mobile Offcanvas
/****************************************/
.mobile-offcanvas {
  height: 100vh;
  width: 320px;
  max-width: 100%;
  background-color: #ffffff;
  right: -321px;
  top: 0;
  position: fixed;
  padding: 60px 1px 30px 0;
  transition: 0.3s;
  z-index: 999;
  border-left: 1px solid #ddd;
}

.offcanvas-on.mobile-offcanvas {
  right: 0;
}

.mobile-offcanvas__close {
  height: 30px;
  width: 30px;
  background-color: rgba(255, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  cursor: pointer;
}

.offcanvas-logo {
  max-width: 60%;
  margin: 0 auto 30px;
}

.offcanvas-social-links {
  margin-top: 30px;
  padding: 0 20px;
}

.offcanvas-social-links ul {
  display: flex;
}

.offcanvas-social-links ul a {
  margin-right: 10px;
}

.offcanvas-social-links ul svg {
  width: 30px;
  height: auto;
}

.offcanvas-nav-parent a {
  font-size: 16px;
  font-weight: 400;
}

.offcanvas-nav-parent a {
  display: block;
  text-decoration: none;
}

.offcanvas-nav-parent a:hover,
.offcanvas-nav-parent a:focus {
  color: #d52027;
}

.offcanvas-nav-parent > li {
  border-bottom: solid 2px #512c1e21;
}

.offcanvas-nav-parent > li a.offcanvas-nav-item {
  color: #333333;
  padding: 14px 20px;
  background-color: rgba(240, 240, 235, 0.3);
}

.offcanvas-nav-parent > li:hover a.offcanvas-nav-item,
.offcanvas-nav-parent > li.active a.offcanvas-nav-item {
  color: #ffffff;
  background-color: var(--primary-color);
}

.mobile-offcanvas-inner {
  overflow-y: auto;
  height: calc(100vh - 100px);
  padding-bottom: 20px;
}

.offcanvas-subnav {
  display: none;
  border: solid 1px #e9e9e9;
  padding: 10px 10px 10px 15px;
}

.offcanvas-subnav li a {
  color: #000;
  padding: 6px 25px;
}

.offcanvas-nav-parent .has-submenu {
  position: relative;
}

.offcanvas-nav-parent .has-submenu svg {
  width: 15px;
  display: inline-block;
}

.offcanvas-nav-parent .has-submenu .menu-up svg {
  transform: rotate(180deg);
}

.offcanvas-nav-parent .has-submenu svg path {
  stroke: #333333;
}

.offcanvas-nav-parent .has-submenu .submenu-icon {
  background-color: #3780bc38;
  height: 100%;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}

/******************************
  *	       Header CSS
  ********************************/
.header {
  background: var(--body-color);
}

.header__main {
  padding: 16px 0;
}

.header__main .nav__list.flex-ctr {
  gap: 50px;
}

.header__main .nav__link {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--light-color);
  transition: 0.3s;
  padding: 25px 0;
}

.header__main .nav__link:hover {
  color: var(--dark-color);
}

.front-header .header__main .nav__link:hover {
  color: var(--secondary-color);
}

.header__action.flex-ctr {
  gap: 30px;
}

.toggle {
  display: none;
  cursor: pointer;
  width: 22px;
  z-index: 102;
  position: absolute;
  right: 15px;
  bottom: -15px;
}

.toggle span {
  background-color: var(--dark-color);
  width: 22px;
  height: 3px;
  transition: all 0.3s;
  display: block;
  margin-bottom: 6px;
  border-radius: 100px;
  transition: .3s;
  transform-origin: left;
}


.toggle span:nth-child(2){
      transform-origin: center;
}

.active.toggle span:first-child{
    rotate: 50deg
}



.active.toggle span:nth-child(2){
    scale: 0;
}


.active.toggle span:last-child{
    rotate: -50deg
}

.header__main__nav {
  position: relative;
  text-align: right;
}

.header__main__nav li {
  position: relative;
}

.toggle.toggle-active span:first-child {
  transform: rotate(45deg) translateY(13px);
}

.toggle.toggle-active span:nth-child(2) {
  transform: translateX(-2rem);
  opacity: 0;
  visibility: hidden;
}

.toggle.toggle-active span:last-child {
  transform: rotate(-45deg) translateY(-13px);
}

.header__main .nav__list.flex-ctr.active {
  display: block;
  position: absolute;
  width: 190px;
  right: 5%;
  top: 25px;
  background-color: var(--light-color);
  text-align: right;
  padding: 15px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 9999999999;
}

.header__main .nav__list.flex-ctr.active li {
  margin-bottom: 10px;
}

/* Hide Dropdowns by Default */
nav ul ul {
  display: none;
  position: absolute;
  top: 40px; /* the height of the main nav */
  left: -10px;
  box-shadow: 0px 3px 10px #00000021;
  z-index: 9;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
  min-width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul li a {
  display: block;
  background: #ffffff;
  border-top: 1px solid #70707017;
  padding: 13px 18px;
  text-align: left;
  white-space: nowrap;
  color: var(--dark-color);
}

nav ul ul li a.dark-border{
    border-color: #707070;
}


nav ul ul li:first-child a {
    border: none;
}

#nav li a{
  color: var(--dark-color);
}

nav ul ul li a:hover {
  color: var(--primary-color);
}

/* Change this in order to change the Dropdown symbol */
li > a:after {
  content: " +";
}

li > a:only-child:after {
  content: "";
}

/* mlm */
.header__action.border {
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  padding: 10px 16px;
  position: relative;
  width: 165px;
}

.header__action.border a {
  color: var(--light-color);
  font-size: 16px;
  font-family: "Gilroy-Medium";
  letter-spacing: 0.16px;
}

.header__action.border a:hover {
  color: var(--primary-color);
}

.header__action.border .border-r {
  position: absolute;
  left: 55%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--light-color);
}

.b-bottom {
  border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}

.powered-by.d-b {
  display: flex;
  padding: 30px 20px;
  justify-content: inherit;
}

@media (max-width: 1200px) {
  .header__main .nav__list.flex-ctr {
    gap: 20px;
  }

  .gp-50 {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .toggle {
    display: block;
  }

  .header__main .nav__list.flex-ctr {
    display: none;
  }

  .header__main__nav {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .header__action.flex-ctr {
    gap: 15px;
  }
  
  .comission_btn a{
      font-size: 16px !important;
  }

  .header__action.border .border-r {
    position: absolute;
    left: 50%;
  }
}

/******************************
  *	    Footer Section
  ********************************/
.footer__form-section {
  padding: 50px 0;
}

footer .form__title {
  font-family: "Gilroy";
  font-size: 42px;
  line-height: 1.14;
  color: var(--dark-color);
  margin: 0;
  max-width: 290px;
}

.footer .form__input {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding: 17px 20px;
  border: 1px solid #131318;
  border-radius: 45px;
  background-color: transparent;
  width: 260px;
  margin-right: 20px;
  outline: none;
}

.footer .form__input,
.footer .form__input::placeholder {
  color: var(--dark-color);
}

.capsule-btn {
  font-family: "Gilroy";
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 1px;
  color: var(--light-color);
  padding: 16px 20px;
  background-color: var(--bg-color);
  border: none;
  width: 250px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.capsule-btn:hover {
  color: var(--primary-color);
}

.front-footer .capsule-btn:hover {
  color: var(--secondary-color);
}

.footer__main {
  padding: 105px 0 65px;
  background-color: var(--bg-alt-color);
}

.footer__widget__para {
  margin: 20px 0 0;
  max-width: 250px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  color: var(--light-color);
}

.footer__social-list {
  padding-top: 32px;
}

.footer__social-list.flex-ctr {
  gap: 12px;
}

.footer__social-list circle,
.footer__social-list path {
  transition: 0.3s;
}

.footer__widget .list__item:not(:last-child) {
  margin-bottom: 15px;
}

.footer__widget .footer__widget__heading.list__item {
  font-family: "Gilroy-SemiBold";
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.12;
}

.footer__widget .list__item,
.footer__widget .list__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--light-color);
  transition: 0.3s;
}

.footer__widget .list__link:hover {
  color: var(--primary-color);
}

.front-footer .footer__widget .list__link:hover {
  color: var(--secondary-color);
}

.footer__bottom {
  background-color: var(--dark-color);
  padding: 10px 0;
  z-index: 9;
}

.footer__bottom__text {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.14px;
  color: var(--light-color);
  margin: 0;
  text-align: center;
}

@media (max-width: 1260px) {
  .footer__form-section .flex-ctr-spb {
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .form__title {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer__form-section .form__input-area {
    display: flex;
  }

  .footer .form__input {
    max-width: 260px;
    width: 100%;
    flex: 1;
  }
}

@media (max-width: 776px) {
  .footer .form__title {
    text-align: center;
    font-size: 36px;
  }

  .footer__form-section .form__input-area {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer .form__input {
    flex: 0 0 calc(50% - 10px);
    max-width: initial;
    margin: 0;
  }

  .footer .capsule-btn {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .footer__main .footer__widget {
    flex: 0 0 calc(50% - 25px);
  }

  .footer__main .container {
    flex-wrap: wrap;
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .footer .form__input {
    flex: 0 0 100%;
  }

  .footer__main .footer__widget {
    flex: 0 0 calc(100% - 20px);
  }
}

/******************************
  *	           Home
  *   //////////////////////
  *            Hero
  *******************************/
.hero {
  position: relative;
}

.hero__content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.hero__sub-title {
  font-family: "Graphik";
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--light-color);
  margin: 0 0 12px;
}

.hero__main-title {
  font-family: "Graphik";
  font-weight: 600;
  font-size: 60px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0 0 12px;
}

.hero__text {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 24px;
  line-height: 1.75;
  color: var(--light-color);
  margin: 0 0 12px;
  max-width: 760px;
}

.hero__btns-wrap.flex-ctr {
  gap: 16px;
}

.btn-solid,
.btn-transparent {
  font-family: "Gilroy-Bold";
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 2px;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-solid {
  color: #ffffff;
  background-color: var(--primary-color);
}

.btn-solid .icon,
.btn-transparent .icon {
  margin-left: 10px;
}

.btn-solid .icon path,
.btn-transparent .icon path {
  transition: 0.3s;
}

.btn-solid:hover .icon path {
  stroke: var(--secondary-color);
}

.btn-transparent:hover .icon path {
  stroke: var(--light-color);
}

.btn-solid.hero__btn:hover {
  opacity: 0.8;
}

.hero__content.flex-ctr {
  gap: 0px;
  justify-content: center;
  width: 75%;
}

.hero__container.container-alt {
  width: clamp(320px, 70%, 1400px);
}


.user-page {
    display: flex;
    align-items: center;
    background: var(--body-color);
}


.user-page.login-page {
    height: calc(100vh - 117px);
}

.user-page> figure{
    align-self: stretch;
    overflow: hidden;
}


/*@media (min-width: 1260px){*/
/*.user-page.login-page {*/
/*    height: calc(100vh - 138px);*/
/*}*/
/*}*/

.user-page figure {
  flex: 0 0 50%;
  margin: 0;
}

.user-page .body-primary {
  flex: 1;
}

.user-page .login.body-primary {
  background-color: transparent;
}

.user-page figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

  .login {
    padding: 40px 15px;
  }


.form_header {
  text-align: center;
  max-width: 730px;
  width: 100%;
  margin: 0 auto 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.form_header .title {
  font-family: var(--base-font);
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--light-color);
  margin: 0;
  margin-bottom: 10px;
}

.form_header .dec {
  font-family: var(--base-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--light-color);
}

.form_header .dec br{
    display: none;
}

.form_container {
  width: 980px;
  max-width: 100%;
  width: 100%;
  border-radius: 3px;
  margin: 0 auto;
  /*padding-bottom: 30px;*/
}

.form-header__highlight-color {
  padding: 16px 32px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px 3px 0px 0px;
  text-align: center;
}

.form-header__highlight-color .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  color: var(--bg-color);
}

.form_body {
  background-color: var(--light-color);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 16px 32px;
  border-radius: 10px;
}

.label {
  font-family: var(--base-font);
  font-size: 18px;
  line-height: 1.67;
  color: var(--bg-color);
}

.form .input,
.checkout-accordion .input {
  max-width: 536px;
  width: 100%;
  height: 44px;
  font-family: "Gilroy-Regular";
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-dark_lite-sec);
  background: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 10px 12px;
  outline-color: var(--primary-color);
  margin-bottom: 16px;
  appearance: none;
}


.user-page .form_body p:last-child{
    margin: 12px 0 0;
    
}

@media (max-width: 600px) {
  .user-page figure {
    display: none;
  }
}

@media (max-width: 767px) {
  .user-page figure {
    display: none;
  }
}


@media (max-height: 650px){
    .user-page.login-page {
        height: auto;
    }
    .login{
        padding: 30px 15px;
    }
}


@media (max-height: 700px) {
  .user-page .form_header{
      margin-bottom: 15px;
  }
  
  .user-page .form_body{
      margin-top: 15px;
  }
  
  .user-page .form_header .title{
      font-size: 38px;
      margin-bottom: 8px;
  }
}

@media (max-height: 650px) and (max-width: 767px){
        
    .form_body .form_meta .link {
      white-space: nowrap;
    }
    
    .user-page .form_header .title{
        font-size: 32px;
    }
}


@media (max-width: 575px) {
    .form_body{
        padding: 15px;
    }
}

.form .input.mb-10 {
  margin-bottom: 10px;
}

.form_body .form_meta {
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.form_body .form_meta .register {
  font-family: "Gilroy-Regular";
  font-size: 14px;
  line-height: 150.4%;
  color: var(--color-dark_lite-sec);
  margin-bottom: 10px;
}

.form_body .form_meta.flex-ctr-spb .register {
    margin: 0;
}

.form_body .form_meta .link {
  text-decoration: none;
  font-family: "Gilroy-SemiBold";
  color: var(--color-dark_lite-sec);
  white-space: nowrap;
}

.form_body .form_meta .link:hover {
  color: var(--primary-color);
}

.form_body .form_meta .forgot-ps {
  font-family: "Gilroy-Regular";
  font-size: 14px;
  line-height: 1.5;
  text-decoration-line: underline;
  color: var(--color-dark_lite-sec);
}

.form_body .form_btn {
  padding: 10px 0;
  width: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  font-family: "Gilroy-SemiBold";
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  cursor: pointer;
  border: none;
  /*margin-bottom: 30px;*/
  transition: all 0.3s;
}

.header__action.border a.active{
    color:  var(--primary-color)!important;
}

.form_body .form_btn:hover {
  opacity: 0.8;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 2;
}

/* home-body */
.home-body h2 {
  margin: 90px auto;
  color: var(--dark-color);
  text-align: center;
  font-size: 48px;
  font-family: "Graphik";
  font-weight: 600;
  letter-spacing: 0.96px;
}

@media (max-width: 1024px) {
  .hero__sub-title {
    font-size: 32px;
  }

  .hero__main-title {
    font-size: 48px;
  }

  .login {
    /*padding: 80px 40px;*/
  }


  .powered-by {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero__bg {
    height: 550px;
  }

  .hero__bg img {
    height: 100%;
    object-fit: cover;
  }

  .block__filter-title {
    margin-top: 40px;
  }
}

@media (max-width: 776px) {
  .hero__sub-title {
    font-size: 28px;
  }

  .hero__main-title {
    font-size: 38px;
  }

  .hero__text {
    font-size: 20px;
  }

  .hero__btns-wrap.flex-ctr {
    flex-wrap: wrap;
  }

  .container-alt {
    margin: 0 auto;
    padding: 0 15px;
    width: clamp(320px, 100%, 1400px);
  }

  .login {
    /*padding: 60px 15px;*/
  }

  .form_header {
    margin-bottom: 30px;
  }

  .home-body h2 {
    margin: 30px auto;
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .hero__bg {
    height: 453px;
  }

  .hero__sub-title {
    font-size: 20px;
  }

  .hero__main-title {
    font-size: 36px;
  }

  .hero__text {
    font-size: 18px;
  }

  .hero__btn {
    font-size: 14px;
  }


  .form_body {
    width: 96%;
  }

  .form_header .title {
    font-size: 36px;
  }

  .form-header__highlight-color .title {
    font-size: 20px;
  }

  .form_body .form_btn {
    font-size: 18px;
    margin-bottom: 15px;
  }

}

/* bonus */
.ty-up {
  transform: translateY(-20%);
}

.content-bg {
  background: url("../imgs/content-bg.png"), lightgray 50% / cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 60px auto;
  margin-bottom: 40px;
  padding: 0 15px;
}

.text-block-1 .title {
  color: var(--dark-color);
  font-size: 36px;
  font-family: "Graphik";
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.72px;
  margin-top: 0;
}

.p-40-50 {
  padding: 40px 50px;
}

.text-block-1 {
  max-width: 670px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.Bonus .title {
  margin-bottom: 16px;
}

.Bonus .dsc {
  color: var(--dark-color);
  font-size: 24px;
  font-family: "Graphik";
  line-height: 1.5;
}

.Bonus .title .amount-color {
  color: var(--primary-color);
}

/* Table Styles */

.table-wrapper {
  margin: 0 35px 117px;
}

.fl-table {
  font-family: "Graphik";
  font-size: 16px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  background-color: white;
  border-right: 1px solid var(--cl-color);
  border-left: 1px solid var(--cl-color);
}

.fl-table.cl-3 td,
.fl-table.cl-3 th {
  width: 33.33333%;
}

.fl-table td,
.fl-table th {
  text-align: left;
  padding: 10px 5px 10px 16px;
  width: 50%;
}

.table-wrapper.mb-0 {
  margin-bottom: 0;
}

.fl-table td {
  font-size: 14px;
}

.fl-table thead th {
  color: #ffffff;
  background: var(--dark-color);
}

.first-bonus {
  padding-bottom: 70px;
}

.fl-table tr:nth-child(even) {
  background: var(--cl-color);
}

.five-in-seven-bonus {
  padding: 90px 15px;
  padding-top: 0px;
}

/* .monthly-bonus {
  padding: 90px 15px;
} */

.monthly-bonus .title {
  padding: 0 15px;
  margin: 0;
}

.monthly-bonus p {
  padding: 0;
}

.mx-w-209 {
  max-width: 209px;
  width: 100%;
}

.box {
  padding: 10px 5px 10px 16px;
  border-right: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
  font-family: "Graphik";
}

.ban-color {
  background: var(--primary-color);
}

.box.bg-color {
  background: var(--dark-color);
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  font-weight: 600;
  border-right: 1px solid var(--dark-color);
  border-left: 1px solid var(--dark-color);
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-100 {
  margin-bottom: 100px;
}

.flex-nr {
  display: flex;
}

.gap-73 {
  gap: 73px;
}

.bold {
  margin-bottom: 5px;
  display: block;
}

.monthly-bonus.mxw-814 {
  max-width: 814px;
  padding-left: 0;
  padding-right: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .five-in-seven-bonus {
    padding: 50px 15px;
    padding-top: 0px;
  }
}

@media (max-width: 568px) {
  .mb-100 {
    margin-bottom: 50px;
  }

  .monthly-bonus {
    padding: 50px 15px;
  }

  .five-in-seven-bonus {
    padding: 40px 15px;
    padding-top: 0;
  }

  .five-in-seven-bonus p {
    padding: 0;
    margin: 0;
  }

  .first-bonus {
    padding-bottom: 20px;
  }

  .Bonus .title {
    padding-top: 20px;
    font-size: 30px;
    line-height: 1.3;
  }

  .table-wrapper {
    margin: 0 15px 60px;
    border-left: none;
  }

  .fl-table {
    display: block;
    width: 100%;
  }

  .fl-table thead,
  .fl-table tbody,
  .fl-table thead th {
    display: block;
  }

  .fl-table thead th:last-child {
    border-bottom: none;
  }

  .fl-table thead {
    float: left;
  }

  .fl-table tbody {
    width: auto;
    position: relative;
    overflow-x: auto;
  }

  .fl-table td,
  .fl-table th,
  .fl-table.cl-3 td,
  .fl-table.cl-3 th {
    padding: 20px 0.625em 0.625em 0.625em;
    height: 60px;
    vertical-align: middle;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    width: 120px;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  .fl-table.cl-3 td,
  .fl-table.cl-3 th {
    width: 140px;
  }

  .fl-table thead th {
    text-align: left;
    border-bottom: 1px solid #f7f7f9;
  }

  .fl-table tbody tr {
    display: table-cell;
  }

  .fl-table tbody tr:nth-child(odd) {
    background: none;
  }

  .fl-table tr:nth-child(even) {
    background: transparent;
  }

  .fl-table tr td:nth-child(odd) {
    background: #f8f8f8;
    border-right: 1px solid #e6e4e4;
  }

  .fl-table tr td:nth-child(even) {
    border-right: 1px solid #e6e4e4;
  }

  .fl-table tbody td {
    display: block;
    text-align: center;
  }
}

/****************************
*  video
*****************************/
.video {
  padding: 100px 15px;
}

.video_container {
  width: 70%;
  margin: auto;
}

@media (max-width: 568px) {
  .video {
    padding: 60px 15px;
  }
}

/******************************
  *	    Genarel Description
  ********************************/
.general-dsc-body {
  padding: 80px 0;
  background-color: #fff6f5;
}

.general-dsc-body__wrap {
  margin: 0 auto;
  padding: 0 15px;
  width: clamp(320px, 85%, 1200px);
}

@media (max-width: 575px) {
  .general-dsc-body__wrap {
    width: 100%;
  }
}

/* 
.fig-content:not(:last-child) {
  margin-bottom: 80px;
} */

.fig-content.flex-start-spb {
  gap: 70px;
}

.fig-content__figure,
.fig-content__content,
.fig-content__text {
  flex: 1;
  max-width: 50%;
}

.fig-content__figure {
  margin: 0;
}

.fig-content__text h2 {
  color: var(--dark-color);
  font-size: 24px;
  font-family: "Graphik";
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.48px;
  margin: 0 0 16px;
}

.fig-content__text p {
  color: var(--dark-color);
  font-size: 20px;
  font-family: "Graphik";
  line-height: 1.5;
  margin: 0 0 35px;
}

.fig-content__text p:last-of-type {
  margin: 0;
}

.fig-content__text li {
  list-style: disc;
  margin-left: 20px;
}

.fig-content__text li {
  color: var(--dark-color);
  font-size: 20px;
  font-family: "Graphik";
  line-height: 1.5;
  margin-bottom: 5px;
}

.fig-content__link {
  color: var(--dark-color);
  font-size: 16.168px;
  font-family: "Poppins";
  line-height: 1.4;
  margin: 27px 0 5px;
  display: inline-block;
  position: relative;
}

.fig-content__link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  left: 0;
  bottom: -5px;
}

/*******************************************
  *	  	Registration page
  ********************************************/

.Registration {
  padding: 106px 15px;
}

.sub_inputs {
  max-width: 536px;
  width: 100%;
}

.sub_input {
  width: 100%;
}

.reference-id {
  color: #30ab52;
}

/*******************************************
  *	  	mtching page
  ********************************************/

@media (max-width: 1024px) {
  .content-bg .flex-ctr {
    display: block;
  }

  .table-wrapper,
  .table-wrapper.m-0 {
    width: 100%;
    margin: 0;
    margin-top: 30px;
  }
}

@media (max-width: 776px) {
  .Registration {
    padding: 50px 15px;
  }

  .p-40-50 {
    padding: 20px 30px;
  }

  .text-block-1 .title {
    font-size: 30px;
  }

  .mb-40 {
    margin-bottom: 20px;
  }

  .Bonus .dsc {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .p-40-50 {
    padding: 20px 15px;
  }
}

.arrow-dwn {
  position: absolute;
  right: 5px;
  top: 10px;
}

.text-block-1.mx-603 {
  max-width: 620px;
}

.text-block-1.mx-404 {
  max-width: 404px;
}

.text-overlay {
  padding: 100px 0;
  background-image: url(../imgs/hero-alt.webp);
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 99;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.text-overlay::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.67;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.text-overlay h3 {
  color: var(--primary-color);
  font-size: 26px;
}

.text-overlay h2 {
  color: #ffffff;
  font-size: 50px;
  margin: 0 0 20px;
}

.text-overlay p {
  color: #ffffff;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.page-title {
  text-align: center;
  padding: 60px 0;
}

.page-title h1 {
  margin: 0;
  font-size: 60px;
}

.text-block * {
  color: #6d6d75;
}

.text-block .content-wrap {
  background-color: #d1f2eb;
}

.text-block {
  margin-top: 60px;
}

.text-block h5 {
  margin: 0 0 10px;
  font-size: 26px;
}

.text-block h3 {
  font-size: 60px;
  margin: 0 0 30px;
}

.texts {
  padding-right: 40px;
}

.text-block p {
  font-size: 18px;
  line-height: 1.6;
}

span.hg {
  color: var(--primary-color);
}

.title-block {
  margin-top: 40px;
}

.forgot-pass {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
}

.forgot-pass .brand-logo img{
    width: 140px;
}

.forgot-pass .inner {
  max-width: 600px;
  margin: 0 auto;
  background: #efefef;
  padding: 30px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
}

.forgot-pass .inner input {
  display: block;
  width: 100%;
  height: 46px;
  padding: 5px 15px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.forgot-pass .inner label {
  display: block;
}

.forgot-pass .inner button {
  background: var(--primary-color);
  color: #ffffff;
  border: 0;
  padding: 15px 20px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

/*******************************************
*	  	       Editor Content    
********************************************/
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6{
  line-height: 1.3!important;
  font-weight: 600;
  font-family: var(--base-font);
  color: var(--dark-color);
  margin: 0 0 25px;
}

.editor-content h1 {
  font-size: 34px!important;

}

.editor-content h2 {
  font-size: 28px!important;
}

.editor-content h3 {
  font-size: 24px!important;
}

.editor-content h4 {
  font-size: 20px!important;
}

.editor-content h4 + h4 {
  padding-top: 20px!important;
}
.editor-content h5 {
  font-size: 18px!important;
}
.editor-content h6 {
  font-size: 18px!important;
}

.editor-content p {
  /*font-family: var(--base-font);*/
  font-weight: 400;
  font-size: 20px!important;
  line-height: 1.5!important;
  letter-spacing: 0.02em;
  color: var(--dark-lite-color);
}
.editor-content span,
.editor-content p span{
      font-size: 20px!important;
      line-height: 1.5!important;
}
.editor-content ul {
  padding-left: 40px;
  margin-bottom: 30px;
}

.editor-content li,
.editor-content li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--base-font);
}

@media (max-width: 991px) {
  .editor-content h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .editor-content h3 {
    font-size: 22px;
  }

  .editor-content h4 {
    font-size: 20px;
  }

.editor-content span,
  .editor-content p {
    font-size: 17px;
  }

  .editor-content ul {
    padding-left: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
    
    .general-dsc-body{
        padding: 50px 0;
    }
    
    .editor-content h1 {
        font-size: 28px!important;
    
    }
    
    .editor-content h2 {
      font-size: 24px!important;
    }
    
    .editor-content h3 {
      font-size: 20px!important;
    }
    
    .editor-content h4 {
      font-size: 18px!important;
    }
    
    .editor-content h4 + h4 {
      padding-top: 17px!important;
    }
    .editor-content h5 {
      font-size: 16px!important;
    }
    .editor-content h6 {
      font-size: 15px!important;
    }

    
    
    
  .editor-content h4 + h4 {
    padding-top: 10px;
  }
  
.editor-content span,
  .editor-content p,
  .editor-content p span{
    font-size: 16px !important;
    margin: 0 0 10px !important;
  }

  .editor-content li,
  .editor-content li {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .editor-content ul {
    padding-left: 20px;
  }
}

@media (max-width: 575px){
       .general-dsc-body{
        padding: 35px 0;
    }
}

/*******************************************
*	  	       Figure Content    
********************************************/
.fig-content {
  padding: 30px 0;
}

.fig-content.section{
  min-height: calc(100vh - 117px);
}


.section__header {
  text-align: center;
  margin-bottom: 30px;
}

.section__header-figure {
  width: 450px;
  margin: 0 auto;
}

.section__header-figure img {
  width: 100%;
}

.section__header-title {
  font-family: var(--base-font);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--dark-color);
  margin: 0 0 30px;
  text-align: center;
}

.fig-content__main.flex-ctr-spb,
.fig-content__main.flex-spb {
  gap: 50px;
  margin-top: 40px;
}

.fig-content__content,
.fig-content__figure {
  flex: 1;
  max-width: 50%;
}

.fig-content__figure img {
  width: 100%;
}

.fig-content__table {
  padding-top: 60px;
}

.fig-content__table-figure {
  width: 550px;
  margin: 0 auto;
}

.fig-content__table-figure img {
  width: 100%;
}

@media (max-width: 1200px) {
  .section__header-figure {
    width: 350px;
  }

  .fig-content__main.flex-ctr-spb,
  .fig-content__main.flex-spb {
    gap: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 1023px) {
  .fig-content__main.flex-ctr-spb,
  .fig-content__main.flex-spb {
    flex-direction: column;
  }

  .fig-content__content,
  .fig-content__figure {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  /*.fig-content {*/
  /*  padding: 60px 0;*/
  /*}*/

  .section__header-title {
    font-size: 32px;
  }

  .fig-content__table {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .fig-content {
    padding: 20px 0;
  }

  .section__header-figure {
    width: 280px;
    max-width: 280px;
  }

  .section__header-title {
    font-size: 30px;
    margin: 0 0 20px;
  }

  .fig-content__table {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .section__header-figure,
  .fig-content__table-figure {
    width: 100%;
  }
}

/*******************************************
*	  	        Sales Bonus    
********************************************/
@media (max-width: 1023px) {
  .sales-bonus .fig-content__main.flex-ctr-spb {
    flex-direction: column-reverse;
  }
}

/*******************************************
*	  	       How to Join   
********************************************/
.h2-join {
    min-height: calc(100vh - 117px);
  padding: 80px 0;
}

.h2-join__title {
  font-family: var(--base-font);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--dark-color);
  margin: 0 0 50px;
  text-align: center;
}

.h2-join__text {
    font-size: 20px;
}

.h2-join__figure {
  text-align: center;
  margin-top: 50px;
}

.h2-join figure {
  width: 80%;
  margin: 50px auto 0;
}

.h2-join figure img {
  width: 50%;
}

.h2-join__link {
  text-align: center;
  margin-top: 60px;
}

.h2-join__link a {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--base-font);
  text-align: center;
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 8px 30px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 4px;
}

.h2-join__link a:hover {
  color: var(--light-color);
}

@media (max-width: 991px) {
  .h2-join {
    padding: 60px 0;
  }

  .h2-join__title {
    font-size: 30px;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .h2-join {
    padding: 50px 0;
  }

  .h2-join__title {
    font-size: 27px;
    margin: 0 0 20px;
  }
  
  .h2-join__text {
    font-size: 16px;
  }

  .h2-join figure {
    width: 90%;
    margin: 30px auto 0;
  }

  .h2-join__link {
    margin-top: 30px;
  }

  .h2-join__link a {
    font-size: 22px;
    padding: 5px 20px;
  }
}

@media (max-width: 575px) {
  .h2-join figure {
    width: 100%;
  }
}

/*******************************************
*	  	     Infinity Bonus
********************************************/

.infinity-bonus .fig-content__figure {
  max-width: 40%;
}

.infinity-bonus .fig-content__content {
  max-width: 60%;
}

@media (max-width: 1023px) {
  .infinity-bonus .fig-content__figure,
  .infinity-bonus .fig-content__content {
    max-width: 100%;
  }
}

/*******************************************
*	  	     Luxury Bonux
********************************************/
.luxury-bonux__text {
  margin-top: 80px;
}

.luxury-car-bonus .editor-content h2 {
  text-align: center;
}

.luxury-bonux__text p:first-of-type {
  font-style: normal;
}

@media (max-width: 1023px) {
  .luxury-car-bonus .fig-content__main.flex-ctr-spb {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .luxury-bonux__text {
    margin-top: 30px;
  }
}

/*******************************************
*	  	     Monthly Bonus
********************************************/
.medium-img {
  text-align: center;
  width: 500px;
  margin: 30px auto 0;
}

.medium-img img {
  width: 100%;
}

@media (max-width: 1023px) {
  .monthly-bonus .fig-content__main.flex-ctr-spb {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .medium-img {
    width: 90%;
  }
}

@media (max-width: 575px) {
  .medium-img {
    width: 100%;
  }
}

/*******************************************
*	  	    Rental E-commerce
********************************************/
.rental-ecommerce {
  padding: 80px 0;
  min-height: calc(100vh - 155px);
}

.rental-ecommerce h2,
.rental-ecommerce h3,
.rental-ecommerce h4 {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .rental-ecommerce {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .rental-ecommerce {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .rental-ecommerce h2,
  .rental-ecommerce h3,
  .rental-ecommerce h4 {
    padding-left: 10px;
  }
}

/*******************************************
*	  	     Matching Bonus
********************************************/
@media (max-width: 1023px) {
  .matching-bonus .fig-content__main.flex-ctr-spb {
    flex-direction: column-reverse;
  }
}

/*******************************************
*	  	     Monthly Commissions
********************************************/
.monthly-commissions .fig-content__figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.monthly-commissions .fig-content__content figure {
  width: 400px;
  margin: 30px auto 0;
}

.monthly-commissions .fig-content__content figure img {
  width: 100%;
}

@media (max-width: 575px) {
  .monthly-commissions .fig-content__content figure {
    width: 100%;
  }
}

/*******************************************
*	  	     Leadership Monthly Bonus
********************************************/
.leadership-monthly-bonus .editor-content p:first-of-type,
.leadership-monthly-bonus .editor-content h2:first-of-type,
.leadership-monthly-bonus .editor-content h3:first-of-type,
.leadership-monthly-bonus .editor-content h4:first-of-type {
  margin-bottom: 30px;
}

.leadership-monthly-bonus .fig-content__content h2,
.leadership-monthly-bonus .fig-content__content h3,
.leadership-monthly-bonus .fig-content__content h4 {
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--base-font);
  color: var(--dark-color);
  margin: 0 0 25px;
}

.leadership-monthly-bonus .fig-content__figure,
.leadership-monthly-bonus .fig-content__content figure {
  width: 100%;
}

.leadership-monthly-bonus .fig-content__figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.leadership-monthly-bonus .fig-content__content figure img {
  width: 100%;
}


@media (max-width: 1023px) {
  .leadership-monthly-bonus .fig-content__content h2,
  .leadership-monthly-bonus .fig-content__content h3,
  .leadership-monthly-bonus .fig-content__content h4 {
    margin-top: 30px;
    text-align: start;
  }
}

@media (max-width: 767px) {
  .leadership-monthly-bonus .editor-content p:first-of-type,
  .leadership-monthly-bonus .editor-content h2:first-of-type,
  .leadership-monthly-bonus .editor-content h3:first-of-type,
  .leadership-monthly-bonus .editor-content h4:first-of-type {
    margin-bottom: 20px;
  }

  .leadership-monthly-bonus .fig-content__content h2,
  .leadership-monthly-bonus .fig-content__content h3,
  .leadership-monthly-bonus .fig-content__content h4 {
    font-size: 24px;
    margin: 30px 0 15px;
  }
}

.header__main .nav__link.active{
    color: var(--primary-color);
}

.fig-content__content ul li span,
.fig-content__content ul li,
.general-dsc-body__wrap div,
.fig-content__text div,
.fig-content__content,
.fig-content__content p,
.fig-content__content div,
.fig-content__content p span,
.general-dsc-body p span,
.general-dsc-body p{
    font-size: 20px!important;
    line-height: 1.4!important;
}

.general-dsc-body__block{
    align-items: center;
}

.header__logo{
    background-color: #fff;
    padding: 15px;
    margin: -17px 0;
}

a.brand-logo.header__logo img {
    width: 110px;
}


@media (max-width: 767px){
    .fig-content__content ul li span,
    .fig-content__content ul li,
    .general-dsc-body__wrap div,
    .fig-content__text div,
    .fig-content__content,
    .fig-content__content p,
    .fig-content__content div,
    .fig-content__content p span,
    .general-dsc-body p span,
    .general-dsc-body p{
        font-size: 16px !important;
    }
}

@media (max-width: 575px){
    .general-dsc-body p span,
    .general-dsc-body p{
        font-size: 15px !important;
    }
}

.footer__bottom__text a{
    color: #ffffff;
}


