@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


*::-webkit-scrollbar {
    width: 10px;
    background-color: #5B5B5F;
  }
  
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000;
	border: 1px solid #ccc;
  }
  
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #f9f9fd;
}

*{
	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{
	width: 100%;
	font-size: 100%;
	line-height: 1.4;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: #211100;
  font-family: "Montserrat", 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;color: #fff;}
a:hover{text-decoration: none;}
ul li {
    list-style: inherit;
    margin-left: 30px;
}
img{vertical-align: top;width: 100%;}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h1{
	font-size: 38px;
}

h2{
	font-size: 40px;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: .6em 0;
}


div {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

.link__button {
  cursor: pointer;
}

button.link__button {
  color: #000000;
  background: linear-gradient(181deg, #fced59, #fdb92f);
  padding: 14px 70px;
  width: fit-content;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0px -3px 30px -1px rgb(253 185 47);
  transition: .3s;
}


@media (max-width: 768px) {
  button.link__button {
    width: 100%;
  }}

button.link__button:hover {
  padding: 14px 100px;
  transition: .3s;
}





.header {
    background-color: #fcd544;
    padding: 2px 0;
    height: 98px;
    display: flex;
    align-items: center;
}

.container {
  max-width: 1470px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* header START */

.header__logo_img {
    max-width: 143px;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content_left {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.menu__box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 40px;
}

.menu__box li a {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

/* header END */

/* burger AMP START */

.menu__btn, .input__burger{
	display: none;
}

@media(max-width:992px){

#menu__toggle {
	opacity: 0;
  }

  .menu__btn {
display: flex
;
        align-items: center;
        position: absolute;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
}

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
        background-color: #ffffff;
  }
  .menu__btn > span::before {
	content: '';
	top: -8px;
  }
  .menu__btn > span::after {
	content: '';
	top: 8px;
}

.menu__box {
  z-index: 5;
  display: flex;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
  background-color: #fcd544;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

  .menu__item {
	display: block;
	padding: 12px 24px;
	color: #333;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
  }
  .menu__item:hover {
	background-color: #CFD8DC;
  }
  #menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
	visibility: visible;
	left: 0;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	transition-duration: .25s;
  }
  .menu__box {
	transition-duration: .25s;
  }
  .menu__item {
	transition-duration: .25s;
  }

  .header__button{
	margin-right: 60px;
  }
}

/* burger AMP END */

/* BANNER START */

.banner__image {
  max-height: 490px;
  object-fit: cover;
  object-position: top;
  margin: 30px 0;
  border-radius: 5px;
}

/* BANNER END */



main {
  min-height: 500px;
  margin: 100px 0;
}

@media (max-width: 768px) {
  main {
    margin: 0;
  }}

footer {
    min-height: 20px;
    background: #1d1d1d;
    padding: 40px 0 60px;
    border-radius: 25px 25px 0 0;
}


.main-wrapper {
  display: flex;
  gap: 58px;
  margin: 75px 0;
}

@media (max-width: 768px) {
  .main-wrapper {
    flex-wrap: wrap;
    margin: 30px 0;
  }}


img.main-img {
  max-width: 580px;
  border-radius: 25px;
  object-fit: cover;
}


button.link__button.green {
color: #fff;
    background: linear-gradient(181deg, #59d069, #23902f);
    box-shadow: inherit;
    border-radius: 50px;
    width: 100%;

  }


  .block-info {
    max-width: 580px;
  }


  .stars-block img {
    width: 20px;
    height: 20px;
  }


  .pc-block {
    margin: 20px 0;
    display: flex;
    gap: 12px;
}
  .pc-block img {
    width: 23px;
    object-fit: contain;
  }


  .info-elements-wrap {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    grid-gap: 20px;
    grid-auto-rows: 1fr;
    margin-bottom: 60px;
}


@media (max-width: 768px) {
  .info-elements-wrap {
    grid-template-columns: 4fr 4fr;
    margin-bottom: 0;
  }}

.info-elements-title {
  color: #666B7A;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: .6em;
}

.info-elements-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.play {
  width: 145px;
  height: 145px;
  transition: .3s;
}


.play:hover {
  cursor: pointer;
  transform: scale(1.5);
  transition: .3s;
}

.demo-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 915px;
  align-items: center;
  padding: 70px 0;
  background: linear-gradient(45deg, black, transparent), url(/wp-content/uploads/2025/06/demo.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.title-demo {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}


.demo-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 915px;
  align-items: center;
  padding: 70px 16px;
  background: linear-gradient(45deg, #000000bd, #00000085), url(/wp-content/uploads/2025/06/demo.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  margin-bottom: 50px;
}


@media (max-width: 768px) {
  .demo-block {
    height: 500px;
  }}


img.logo_provider {
  max-width: 310px;
  object-fit: contain;
}

@media (max-width: 768px) {
  img.logo_provider {
    max-width: 100%;
  }}


.provider-elem {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .provider-elem {
    flex-wrap: wrap;
  }}

.name_provider {
  font-size: 24px;
  font-weight: 600;
}


button.link__button.green {
  width: fit-content !important;
}


@media (max-width: 768px) {
  button.link__button.green {
    width: 100% !important;
  }}

.raiting-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}



 /* FAQ START */

 .faq_section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}

.faq_repeater {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__box {
  position: relative;
  height: auto;
  overflow: hidden;
}

.faq_question {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: .4s;
  background: linear-gradient(361deg, #fced59, #fdb92f);
  margin-bottom: 0;
}

.panel {
  padding: 0 18px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out;
  color: #000;
  border-radius: 0 0 6px 6px;
}

.active {
  border-radius: 6px 6px 0 0;
}

.faq_question.active+.panel {
  padding: 5px 18px;
}

.faq__icon {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.faq__title{
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 15px 0;
}

/* FAQ END */



section.section_content {
  margin: 50px 0;
}


footer div {
  color: #fff;
}


.footer_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}


@media (max-width: 768px) {
  .footer_wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }}




.header__logo_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer_partners {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  gap: 20px;
}


.footer_partners img {
  max-width: 150px;
  object-fit: contain;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 210px;
  width: 100%;
}


.footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__mail_link{
    color: #FDD243;
    display: inline-block;
}

.title_nav {
  font-size: 24px;
  position: relative;
}


.title_nav:before {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background: linear-gradient(86deg, #fead2500, #fdb32a, #fdb92f0d);
  position: absolute;
  bottom: 0;
}




.menu__box {
  list-style-type: none;
}


/* Iframe demo START   */
  .iframe-container {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            text-align: center;
        }
        
        .iframe-blocker {
    width: 100%;
    height: 450px;
    background: linear-gradient(45deg, #000000bd, #00000085), url(/wp-content/uploads/2025/06/demo.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    border-radius: 8px;
    position: relative;
    justify-content: space-around;
}
        
        .load-btn {
            padding: 12px 24px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        .load-btn:hover {
            background-color: #45a049;
        }
        
        iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 8px;
        }


        button#loadButton {
    color: #000000;
    background: linear-gradient(181deg, #fced59, #fdb92f);
    padding: 14px 70px;
    width: fit-content;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0px -3px 30px -1px rgb(253 185 47);
    transition: .3s;
}

/* Iframe demo END   */

.footer__social_wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer__social_box {
    display: flex;
    gap: 20px;
}

.footer__social_link {
    width: 36px;
    height: 36px;
    background: linear-gradient(361deg, #fced59, #fdb92f);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.footer__social_link img {
    width: 24px;
    height: 24px;
    filter: invert(.3);
}

@media(max-width:380px){
    .footer__mail_link{
        font-size: 16px;
    }
}