/*-----------------------------
    1. GENERIC CSS AND RESET
    2. LP CSS
    3. SECTION PRESENTATION
    4. SECTION FEATURES
    5. SECTION PLANS
    6. SECTION NEWSLETTER
    7. SECTION LEGALS
    8. MEDIA QUERIES
-----------------------------*/

/*-----------------------------
    1. GENERIC CSS AND RESET
-----------------------------*/

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

body {
  color: #a3a3a3;
  background: #171717;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
}

input[type="submit"],
input[type="text"],
input[type="tel"] {
  -webkit-appearance: none;
}

input[type="submit"]:focus,
input[type="tel"]:focus,
button:focus {
  outline: none;
}

a {
  color: inherit;
}

img {
  border: none;
}

html {
  scroll-behavior: smooth;
}

/*-----------------------------
    2. LP CSS
-----------------------------*/

.lp_wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/*-----------------------------
    3. SECTION PRESENTATION
-----------------------------*/

.presentation_wrapper {
  width: 100%;
  background: url(../images/home_bg4.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.header {
  margin: 0px auto;
  max-width: 1680px;
  padding: 20px;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.logo img {
  max-width: 185px;
  width: 100%;
}

.menu_mobile {
  display: none;
}

.menu_list {
  display: flex;
  list-style: none;
}

.menu_item {
  margin-right: 45px;
}

.menu_link:link,
.menu_link:visited {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  padding: 5px 15px;
  border-radius: 8px;
}

.menu_link:hover {
  background-color: #FDC904;
  color: #fff;
}

.presentation {
  position: relative;
  height: 100vh;
}

.presentation_text {
  position: absolute;
  top: 40%;
  transform: translate(0, -50%);
  width: 50%;
}

.presentation_text h1 {
  color: #fff;
  font-size: 55px;
}

hr {
  border: 3px solid #FDC904;
  width: 400px;
  border-radius: 3px 3px 3px 3px;
  margin-top: 30px;
}

.presentation_text p {
  font-size: 22px;
  margin: 40px 0 50px 0;
  line-height: 35px;
}

.presentation_text .submit_bt {
  font-size: 40px;
  font-weight: bold;
  background-color: #FDC904;
  color: #171717;
  padding: 32px;
  border-radius: 20px;
  outline: none;
  border: none;
  max-width: 580px;
  width: 100%;
  cursor: pointer;
}

/*-----------------------------
    4. SECTION FEATURES
-----------------------------*/

.features_wrapper {
  width: 100%;
  padding: 10% 0 0 0;
  height: 100vh;
}

.features {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.features_intro h1 {
  color: #fff;
  font-size: 55px;
  text-align: center;
}

.features_intro hr {
  border: 3px solid #FDC904;
  width: 400px;
  border-radius: 3px 3px 3px 3px;
  margin: 30px auto;
}

.features_intro p {
  font-size: 22px;
  margin: 40px 0 120px 0;
  line-height: 35px;
  text-align: center;
}

.feature_card {
  border-radius: 15px;
  background-color: #232323;
  display: flex;
  align-items: center;
  padding: 120px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  width: 30%;
}

.feature_card a {
  text-decoration: none;
  text-align: center;
}

.feature_card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.feature_card img {
  max-width: 100px;
}

.feature_card_title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0 120px 0;
  color: #fff;
}

.feature_card_title.special {
  margin-top: -15px;
}

.feature_card_text {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin: 30px 0;
}

/*-----------------------------
    5. SECTION PLANS
-----------------------------*/

.plans_wrapper {
  padding: 10% 0 0 0;
  width: 100%;
  background: url(../images/plan_bg.png);
  background-repeat: no-repeat;
  background-size: 100vh;
  background-position-x: 150%;
  background-position-y: 50%;
}

.plans {
  height: 90vh;
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
}

.plans_text {
  position: absolute;
  top: 40%;
  transform: translate(0, -50%);
  width: 50%;
  padding: 30px;
  background-color: #171717;
}

.plans_text h1 {
  color: #fff;
  font-size: 55px;
}

.plans_text hr {
  border: 3px solid #FDC904;
  width: 400px;
  border-radius: 3px 3px 3px 3px;
  margin: 30px 0;
}

.plans_text p {
  font-size: 22px;
  margin: 40px 0 60px 0;
  line-height: 35px;
}

.plans_text .submit_bt {
  font-size: 40px;
  font-weight: bold;
  background-color: #FDC904;
  color: #171717;
  padding: 32px;
  border-radius: 20px;
  outline: none;
  border: none;
  max-width: 590px;
  width: 100%;
  cursor: pointer;
}

.plans_cards {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  gap: 50px;
}

.plans_card.platinum {
  display: none;
}

/*-----------------------------
    6. SECTION ELSE
-----------------------------*/

.else_wrapper {
  width: 100%;
  background: url(../images/else_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.else {
  max-width: 1680px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.else_intro h1 {
  color: #fff;
  font-size: 55px;
  text-align: center;
}

.else_intro hr {
  border: 3px solid #FDC904;
  width: 400px;
  border-radius: 3px 3px 3px 3px;
  margin: 40px auto 120px auto;
}

.else_intro p {
  font-size: 22px;
}

.else_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.else_item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  margin-bottom: 50px;
}

/*-----------------------------
    7. SECTION FAQ
-----------------------------*/

.faq_wrapper {
  padding: 10% 0 0 0;
  width: 100%;
}

.faq {
  height: 90vh;
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
}

.faq_intro h1 {
  color: #fff;
  font-size: 55px;
  text-align: center;
}

.faq_intro hr {
  border: 3px solid #FDC904;
  width: 400px;
  border-radius: 3px 3px 3px 3px;
  margin: 40px auto 120px auto;
}

.faq_text {
  font-size: 22px;
}

summary {
  padding: 15px 30px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  transition: height 1s ease;
  align-items: center;
  background-color: #232323;
  margin-bottom: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "\002B";
  font-size: 42px;
}

details[open] summary {
  border-bottom: 1px solid #FDC904;
  margin: 0 auto 20px auto;
}

details[open] summary:after {
  content: "\00D7";
  font-size: 42px;
}

details[open] div {
  padding: 10px 30px 30px 30px;
  font-size: 18px;
}

/*-----------------------------
    8. SECTION LEGAL
-----------------------------*/

.footer_wrapper {
  width: 100%;
}

.footer_legal {
  width: 100%;
  padding: 20px 0;
  font-size: 14px;
}

.footer_legal img {
  max-width: 150px;
  opacity: 0.6;
}

.footer_legal hr {
  border: 1px solid #FDC904;
  width: 70%;
  border-radius: 3px 3px 3px 3px;
  margin: 40px auto 20px auto;
}

.footer_legal_items {
  max-width: 1680px;
  margin: 0 auto;
  width: 70%;
  text-align: center;
}

.privacy_text,
.terms_text {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  text-align: left;
  z-index: 110;
}

.privacy_wrapper,
.terms_wrapper {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11111;
  padding: 50px;
  max-height: 80%;
  overflow: auto;
  border-radius: 15px;
  background-color: #232323;
}

.privacy_wrapper p,
.terms_wrapper p {
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 20px;
}

.show_privacy_btn,
.show_terms_btn {
  text-decoration: underline;
}

.privacy_wrapper img,
.terms_wrapper img {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 112;
  padding: 5px;
  max-width: 30px;
}

/*-----------------------------
    8. SIGNIN MODAL
-----------------------------*/

.signin_modal {
  position:fixed;
  top:0;
  left:0;
  z-index:1011;
  height:100%;
  width:100%;
  background-color:rgba(0, 0, 0, 0.5);
  text-align:center;
  display:none;
}

.close_icon {
  text-align:right;
}

.screen_wrapper {
  background-color:#f6f6f6;
  border-radius:10px;
  padding:20px;
  max-width:480px;
  width:98%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1111;
}

input[type=text], input[type=password]  {
font-size:18px;
max-width:400px;
border:none;
border-radius:50px;
outline:none;
width:100%;
padding:20px 20px;
display:block;
margin:20px auto 5px auto;
border:1px solid gray;
transition: all .4s;
}

input[type=text]:focus, input[type=password]:focus  {
  border:1px solid rgb(253, 201, 4) !important;
  box-shadow: 0 8px 5px rgba(253, 201, 4, 0.2);
  max-width:440px;
  width:90%;
}

.submit_signin {
  background: #FDC904;
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 20px auto 20px auto;
  max-width: 420px;
  width: 100%;
  outline: none;
  padding: 30px 10px;
  position: relative;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

#loader_access p {
   color:#FDC904;
   font-size:28px;
   font-weight:bold;
   margin-bottom:15px;
}

#screen p {
  color:#000;
   font-size:16px;
   line-height:24px;
}

#screen label {
  color: #000;
  font-size: 16px;
  text-align: left;
  display: block;
  margin: 30px 0 -10px 40px;
}

.signin_error {
  font-size: 14px;
  color:#000;
}

.signin_error span {
  font-size: 18px;
  color:#FDC904;
  font-weight:bold;
}



/*-----------------------------
    8. MEDIA QUERIES
-----------------------------*/

@media screen and (max-width: 1370px) {
  .presentation_text h1,
  .features_intro h1,
  .plans_text h1,
  .else_intro h1,
  .faq_intro h1 {
    font-size: 35px;
  }

  .presentation_text p,
  .features_intro p,
  .plans_text p,
  .else p,
  .faq_text {
    font-size: 18px;
    margin: 30px 0 50px 0;
    line-height: 30px;
  }

  .presentation_text .submit_bt,
  .plans_text .submit_bt {
    font-size: 22px;
  }

  .features_wrapper {
    padding-top: 5%;
  }

  .features {
    padding-top: 50px;
  }

  .feature_card {
    padding: 90px 30px;
  }

  .feature_card img {
    margin: 10px 0;
  }

  .feature_card_title {
    font-size: 22px;
    margin: 10px 0;
  }

  .feature_card_text {
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    margin: 10px 0;
  }

  .plans_wrapper {
    background-size: 75%;
  }

  .else_item img {
    max-width: 50px;
  }

  details[open] div {
    padding: 0px 20px 25px 30px;
    font-size: 16px;
  }

  form > input {
    padding: 10px 20px;
    font-size: 18px;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 780px) {
  .menu {
    display: none;
  }

  .menu_mobile {
    display: none;
  }

  .features {
    text-align: center;
    display: block;
  }

  .feature_card {
    border-radius: 15px;
    background-color: #232323;
    display: block;
    align-items: center;
    padding: 60px 30px;
    width: 90%;
    margin: 10px auto;
  }

  .plans_wrapper {
    background-image: none;
    padding: 50% 0 0 0;
  }

  .plans_text {
    position: relative;
    width: 90%;
    padding: 30px;
    background-color: #171717;
    text-align: center;
    margin: 0 auto;
  }

  .plans_text hr {
    margin: 30px auto;
  }

  .plans {
    height: auto;
  }

  .plans_text {
    transform: none;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 135px;
  }

  hr {
    border: 1px solid #FDC904;
    width: 280px;
  }

  .menu {
    display: none;
  }

  .menu_mobile {
    display: block;
  }

  .header {
    max-width: 480px;
    width: 90%;
    margin: 0 auto;
  }

  .presentation_wrapper {
    background-color: none;
    width: 100%;
    padding-bottom: 0px;
    height: auto;
  }

  .presentation {
    flex-direction: column;
    margin: 40px 0;
    height: auto;
  }

  .presentation_images {
    text-align: center;
    width: 100%;
    order: -1;
  }

  .presentation_text {
    position: relative;
    top: none;
    transform: none;
    width: 90%;
  }

  .presentation_text .submit_bt {
    font-size: 18px;
    padding: 20px 20px;
    margin: 30px auto;
  }

  .features_wrapper {
    width: 100%;
    background-image: none;
    padding-top: 30px;
    height: auto;
  }

  .features_intro hr {
    border: 1px solid #FDC904;
    width: 280px;
  }

  .features {
    padding-top: 0%;
    display: block;
    width: 100%;
    text-align: center;
  }

  .feature_card:not(:last-child) {
    margin-right: auto;
  }

  .feature_card {
    padding: 20px 10px;
  }

  .feature_card_text {
    margin: 10px auto;
    width: 90%;
  }

  .plans_wrapper {
    margin-top: 0px;
    background-image: none;
  }

  .plans {
    padding: 20px 0;
    width: 90%;
  }

  .plans_cards {
    display: block;
    margin-top: 30px;
    flex-direction: column;
  }

  .plans_text {
    position: relative;
    top: -5%;
    transform: none;
    padding: 0px;
  }

  .plans_text hr {
    border: 1px solid #FDC904;
    width: 280px;
    margin: 30px auto;
  }

  .plans_text .submit_bt {
    font-size: 18px;
    padding: 20px 20px;
  }

  .plans_text p {
    font-size: 18px;
    margin: 10px 0 5px 0;
    line-height: 30px;
  }

  .else_wrapper {
    position: relative;
    margin-top: 30%;
  }

  .else {
    height: auto;
  }

  .else_intro hr {
    border: 1px solid #FDC904;
    width: 280px;
    border-radius: 3px 3px 3px 3px;
    margin: 30px auto;
  }

  .else_text {
    display: block;
    width: 98%;
    margin: 0 auto;
  }

  .else_item {
    gap: 25px;
    margin-bottom: 0px;
  }

  .faq {
    height: auto;
  }

  .faq_intro hr {
    border: 1px solid #FDC904;
    width: 280px;
    border-radius: 3px 3px 3px 3px;
    margin: 30px auto;
  }

  .privacy_wrapper,
  .terms_wrapper {
    padding: 50px 10px;
  }

  form > input {
    margin: 40px 0;
  }

  .footer_support_items {
    max-width: 480px;
    margin: 0 auto;
    width: 90%;
    padding: 30px 0;
    text-align: center;
    display: block;
  }

  .footer_support_items img {
    max-width: 135px;
  }

  .footer_support_items p {
    font-size: 14px;
  }

  .footer_legal_items {
    max-width: 480px;
    margin: 0 auto;
    width: 90%;
    text-align: center;
  }

  .footer_legal_items p {
    font-size: 12px;
  }

  .menu_checkbox {
    display: none;
  }

  .menu_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1600;
  }

  .menu_button {
    width: 55px;
    height: 55px;
    position: relative;
    z-index: 1500;
    cursor: pointer;
    text-align: justify !important;
    right: 0px;
    top: 0px;
    display: block;
  }

  .menu_button:hover .menu_icon::before {
    top: -10px;
  }

  .menu_button:hover .menu_icon::after {
    top: 10px;
  }

  .menu_icon,
  .menu_icon::before,
  .menu_icon::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
  }

  .menu_icon::before,
  .menu_icon::after {
    content: "";
    position: absolute;
    transition: all 0.2s;
  }

  .menu_icon::before {
    top: -8px;
  }

  .menu_icon::after {
    top: 8px;
  }

  .menu_section_mobile {
    width: 90%;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: rgba(23, 23, 23, 0.9);
    visibility: hidden;
    opacity: 0;
    width: 0;
  }

  .menu_list_mobile {
    position: relative;
    list-style-type: none;
    text-align: left;
    width: 100%;
  }

  .menu_item_mobile {
    margin: 0px 0px;
  }

  .menu_link_mobile:link,
  .menu_link_mobile:visited {
    display: inline-block;
    text-decoration: none;
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    transition: all 0.3s;
  }

  .menu_checkbox:checked ~ .menu_section_mobile {
    opacity: 1;
    width: 100%;
    visibility: visible;
    z-index: 111;
  }

  .menu_checkbox:checked + .menu_button .menu_icon {
    background-color: transparent;
  }

  .menu_checkbox:checked + .menu_button .menu_icon::before {
    transform: rotate(135deg);
    top: 0;
  }

  .menu_checkbox:checked + .menu_button .menu_icon::after {
    transform: rotate(-135deg);
    top: 0;
  }
}
