﻿@charset "UTF-8";

/*Обнуление стилей*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  font-size: 100%;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------------------------*/
.button{
  padding:12px 24px;
  background-color: #fff;
  color:#000;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  border-radius: 3px;
  cursor: pointer;
}
.wrapper {
  max-width: 1980px;
  min-width: 320px;
  width: 100%;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
}

[class*="__container"] {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

/* main */

.page {
  flex: 1 1 100%;
  /* min-height: 100%; */
}
.main {
  background-color: #2154ff;
  padding-top: 10px;
}
.main__container {
  display: grid;
  grid-template-columns: 44% 1fr;
  column-gap: 12px;
  row-gap: 25px;
}
@media(max-width:992px){
  .main__container {   
    grid-template-columns:auto;
    column-gap: 12px;
    row-gap: 25px;
  }
}
.main__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main__title {
  color: #ffe115fa;
  font-family: "Roboto", Sans-serif;
  font-size: 87px;
  font-weight: 600;
  line-height: 1.1;
}
@media(max-width:1100px){
  .main__title {  
    font-size: 70px;    
  }
}
@media(max-width:767px){
  .main__title {  
    font-size: 44px;    
  }
}
.main__text {
  font-size: 18px;
}
.main__yellow-link {
  display: block;
  font-size: 17px;  
  color: #040000;
  background-color: #ffe300;
  padding:12px 24px;
  text-align: center;
  border-radius: 3px;
}
.main__button-block{
  padding:16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__button {
  padding:12px 24px;
  background-color: #fff;
  color:#000;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  border-radius: 3px;
}
.main__image {
}
.main__image-link {
  display: block;
  border-radius: 3px;
  overflow: hidden;
}
.main__image-link img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* rewarded */
.rewarded {
  background-color: #3F3281;
  padding:50px 0px 100px;
}
.rewarded__container {
}
.rewarded__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
}
.rewarded__item {
  font-size: 30px;
  text-align: center;
}
@media(max-width:992px){
  .rewarded {    
    padding:30px 0px 60px;
  }
  .rewarded__item {
    font-size: 23px;  
  }
}
@media(max-width:767px){
  .rewarded {   
    padding:20px 0px 30px;
  }
  .rewarded__item {
    font-size: 23px;  
  }
  .rewarded__items{
    flex-direction: column;
  }
}


/* cards */

.cards {
}
.cards__header {
  background-color: #6EBE44;

}
.header-cards {
}
.header-cards__container {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-cards__title {
  font-size: 30px;
  text-align: center;
  color:#000000;
  max-width: 600px;
  line-height: 1.2;
  font-weight: 300;
}
.cards__body {
}
.body-cards {
}
.body-cards__container {
  padding:20px 0px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  justify-content: center;
  text-align: center;
}

.body-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:20px;
}
.body-cards__item-image {
  max-width: 90%;
}
.body-cards__item-label {
  font-weight: 600;
  font-size: 40px;
  color:#000;
}
.body-cards__item-text {
  font-size: 20px;
  color:#000;
}
@media(max-width:767px){
  .body-cards__container{
    grid-template-columns:auto;
  }
  .header-cards__title{
    font-size: 20px;
  }
  .body-cards__item-label {    
    font-size: 30px;   
  }
  .body-cards__item-text {
    font-size: 18px;    
  }
}

/* ========== yellow =========*/

.yellow-block {
  background-color: #FF890E;
  padding:15px 0px 30px;
}
.yellow-block__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:20px;
}
.yellow-block__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.yellow-block__price {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}
@media(max-width:992px){
  .yellow-block__title {
    font-size: 34px;  
  }
  .yellow-block__price {
    font-size: 44px;   
  }
}
@media(max-width:767px){
  .yellow-block__title {
    font-size: 30px;  
  }
  .yellow-block__price {
    font-size: 36px;   
  }
}
.yellow-block__button {
}
.button {  
}


/* ==========reviews========= */
.reviews {
  padding:15px 0px;
}
.reviews__container {
}
.reviews__title {
  font-size: 40px;
  color:#000000;
  margin-bottom: 20px;
  text-align: center;
}
.reviews__items {
 display:grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap:30px;
 justify-content: center;
 align-items: start;
}
.reviews__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
.item-reviews {
}
.item-reviews__image {
  width: 80%;
  margin-bottom: 30px;
}
.item-reviews__image img{
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.item-reviews__text {
  color:#000;
  margin-bottom: 20px;
}
.item-reviews__name {
  color:#000;
  font-weight: 600;
}
.item-reviews__name:not(:last-child) {
  margin-bottom: 25px;
}
.item-reviews__rating {
}
@media(max-width:992px){
  .reviews__title {
    font-size: 35px;        
  }
  .item-reviews__name:not(:last-child) {
    margin-bottom: 15px;
  }
  .item-reviews__image {
    width: 90%;
    margin-bottom: 20px;
  }
}
@media(max-width:767px){
  .reviews__title {
    font-size: 30px;   
    margin-bottom: 20px;    
  }
  .item-reviews__name:not(:last-child) {
    margin-bottom: 12px;
  }
  .item-reviews__image {
    width: 85%;
    margin-bottom: 15px;
  }
}
@media(max-width:480px){
  .reviews__title {
    font-size: 28px;       
  }
  .item-reviews__text {
    font-size: 15px; 
    margin-bottom: 10px;
  }
}
/* ================= подвал ========================= */



.footer {
  background-color: #fff;
  padding: 30px 0;
}

.footer__links {
  display: flex;
 flex-direction: column;
  gap: 6px;
}
.footer__link {
  color: #000;
  font-weight: 500;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__link-separator {
  color: #cccccc;
}

/* ==================== style for terms and policy  ==================== */
.terms-header {
padding-top: 20px;
}
.terms-header__container {  
  min-height: 40px;
  display: flex;  
  align-items: center;
}
.terms-header__main-link {
  color:#111111;
  font-size: 20px;
}
.terms-header__main-link:hover {
  text-decoration: underline;
}
.terms-block {
  color:#111111;
}
.terms-block__colortext{
  margin-top: 20px; 
}
.terms-block__colortext p{
  background-color: #d8613c;
  margin-top: 20px;
  text-transform: uppercase;
  padding:20px 40px;
}
.terms-block__container {
  max-width: 760px;
}
.terms-block__inner {
  padding-top: 140px;
}
.terms-block__title {
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
  font-family: "Cardo", serif;
}
.terms-block__sub-title {
  font-family: "Cardo", serif;
  font-size: 40px;
  margin-bottom: 25px;
}
@media(max-width:992px){
  .terms-block__inner {
    padding-top: 80px;
  }
  .terms-block__title {    
    font-size: 45px;
    margin-bottom: 40px;  
  }
  .terms-block__sub-title {   
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media(max-width:767px){
  .terms-block__inner {
    padding-top: 40px;
  }
  .terms-block__title {    
    font-size: 40px;
    margin-bottom: 30px;  
  }
  .terms-block__sub-title {   
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.terms-block__items {
  font-family: "Inter", sans-serif;
}
.terms-block__item:not(:last-child) {
  margin-bottom: 20px;
}
.item__terms {
}
.item__terms__label {
  font-weight: bold;
  margin-bottom: 20px;
}
.item__terms__text {
}