@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--family: 'Open Sans', sans-serif;

	--transition: 0.35s;

	--bg: #e4f3df;
	--bg-green: linear-gradient(90deg, rgba(58, 180, 74, 1) 0%, rgb(253 243 29 / 38%) 50%, rgba(58, 180, 74, 1) 100%);
	--bg-green2: #3ab44a;
	--bg-orange: #e3c843;
	--color: #212529;
	--color-placeholder: #787a7d;
	--color-white: #fff;
	--footer: #0080001c;

	--wrap:  1100px;
}

::placeholder {
	color: var(--color-placeholder);
}

:focus::placeholder {
	color: transparent;
}

input, button, textarea {
	background: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	font-size: 15px;
	color: var(--color);
	font-family: var(--family);
}

textarea {
	resize: none;
}

input[type="submit"], button[type="submit"] {
	cursor: pointer;
}

a, input[type="submit"], button[type="submit"] {
	transition: var(--transition);
}

* {
	padding: 0;
	margin: 0;
	outline: 0;
}

html * {
	max-height: 1000000px;
}

html, body {
	background: var(--bg);
	font-size: 14px;
	color: var(--color);
	-webkit-text-size-adjust: 100%;
	font-family: var(--family);
}

a {
	color: var(--color);
	text-decoration: none;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}

.wrap {
	max-width: var(--wrap);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

.header-animation {
	height: 58px;
	background: var(--bg-green);
	position: relative;
}

.header-animation:after {
	background-image: url(../img/wave.svg);
	background-repeat: repeat-x;
	background-size: 210px auto;
	background-position: bottom;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	height: 200px;
	animation: wave 3s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
	z-index: 1;
	content: '';
}

@keyframes wave {
	0% {
		background-position-x: 0%;
	}

	100% {
	
	background-position-x: -210px;
	}
}

.header {
	height: 80px;
	position: relative;
	z-index: 1;
	margin-top: -20px;
	margin-bottom: 30px;
}

.header .wrap {
	height: 100%;
	display: flex;
	align-items: center;
}

.header-logo {
	width: 75px;
	height: 75px;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	background: var(--bg-green2);
	box-shadow: inset 0 -5px 15px #ebefec4a;
	overflow: hidden;
}

.header-logo:after {
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 75px;
	height: 75px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	animation: shake 5s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, 1px) rotate(-1deg); }
}

.header-logo:before {
	width: 27px;
    height: 25px;
    background: var(--color-white);
    opacity: 0.7;
    position: absolute;
    bottom: 10px;
    left: 11px;
    content: '';
    border-radius: 80%;
    filter: blur(10px);
	animation: shake 5s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

.header-logo_text {
	margin-left: 15px;
}

.header-logo_flex {
	display: flex;
	flex-direction: column-reverse;
	text-align: right;
	line-height: 18px;
}

.header-logo_text b {
	font-size: 25px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--bg-green2);
}

.header-logo_text span {
	opacity: 0.5;
	font-size: 12px;
}

.header-buttons {
	margin-left: auto;
	display: flex;
}

.header-buttons_link {
	margin-left: 15px;
}

.btn {
	height: 40px;
	border-radius: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 10px;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
}

.btn-type_1:after {
	background: var(--bg);
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	content: '';
	border-radius: 10px;
	z-index: -1;
	transition: var(--transition);
}

.btn-type_1 {
	background: var(--bg-green2);
}

.btn-type_1:hover:after {
	opacity: 0;
}

.btn-type_1:hover {
	color: var(--color-white);
	text-shadow: 0 0px 15px rgba(0,0,0, 0.5);
}

.btn-type_2 {
	border: 2px solid var(--bg-orange);
}

.btn-type_2:hover {
	background-color: var(--bg-orange);
	color: var(--color-white);
	text-shadow: 0 0px 15px rgba(0,0,0, 0.5);
}

.footer {
	margin-top: auto;
	background: var(--footer);
}

.footer .wrap {
	padding: 15px;
}

.title {
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	color: var(--bg-green2);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
	font-weight: 500;
}

.title:after {
	width: 100px;
    height: 5px;
    background: var(--bg-green2);
    display: block;
    content: '';
    margin-top: 5px;
    border-radius: 10px 50px;
}

.title.title-orange {
	color: var(--color);
}

.title.title-orange:after {
	background: var(--bg-orange);
}

.block {
	padding: 50px 0;
}

.block-promotion_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}

.block-promotion_item {
	background: #e3c8432e;
	border-radius: 10px 20px;
	//box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15), inset 0 0 20px #0080000f;
	border: 2px solid var(--bg-orange);
	padding: 15px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.whyus {
	border: 2px solid var(--bg-green2);
	background-color: #3ab44a17;
	padding: 30px;
	border-radius: 10px 20px;
	overflow: hidden;
}

.about {
	border: 2px solid var(--bg-orange);
	    background: #e3c8432e;
	padding: 30px;
	border-radius: 20px 10px;
}

.container {
	display: flex;
	flex-direction: column;
}

.block-promotion_item:hover .promotion_item-image {
	transform: scale(1.15);
}

.promotion_item-image {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition);
}

.promotion_item-image img {
	max-width: 40px;
}

.promotion_item-title {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

.promotion_item-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

[data-social="Instagram"] {
	background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}

[data-social="Telegram"] {
	background: #1c92d2;
  background: linear-gradient(to right, #1c92d2, #bbd3d7);
}

[data-social="YouTube"] {
	background: #e52d27;
  background: linear-gradient(
    to right,
    #e52d27,#b31217
  );
}

[data-social="TikTok"] {
	background: #e5295c;
  background: linear-gradient(
    to right,
    #e5295c,#7eaebc
  );
}

[data-social="FaceBook"] {
	 background: #00c6ff;
  background: linear-gradient(
    to right,
    #00c6ff,#0072ff
  );
}

[data-social="Twitter"] {
	background: #008abb;
  background: linear-gradient(
    to right,
    #008abb,#00a8e2
  );
}

[data-social="Twitch"] {
	background: #6441A5;
  background: linear-gradient(
    to right,
    #6441A5,#2a0845
  );
}

[data-social="Soundcloud"] {
	 background: #fe8c00;
  background: linear-gradient(
    to right,
    #fe8c00,#f83600
  );
}

[data-social="Spotify"] {
background: #1dbc55;
  background: linear-gradient(
    to right,
    #1dbc55,#1cd55e
  );
}

[data-social="LinkedIn"] {
background: #0172ac;
  background: linear-gradient(
    to right,
    #0172ac,#064c70
  );
}

[data-social="Snapchat"] {
	 background: #ffc800;
  background: linear-gradient(to right, #ffc800, #c3a618);
}

[data-social="Threads"] {
 background: #111111;
  background: linear-gradient(
    to right,
    #111111,#2e2f2f
  );
}

.whyus {
	list-style: none;
	position: relative;
	counter-reset: item;
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
	z-index: 1;
	//display: grid;
    /grid-template-columns: repeat(3, 1fr);
    //grid-gap: 20px;
}

.whyus:after {
	background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 256px;
    height: 256px;
    position: absolute;
    top: -20px;
    right: -40px;
    content: '';
    opacity: 0.20;
    z-index: -1;
}

.whyus li:after {
	content: counter(item) '.';
    counter-increment: item;
    font-weight: 600;
    font-size: 26px;
    width: 30px;
    color: transparent;
    -webkit-text-stroke: 1px #3ab44a;
    position: absolute;
    top:-10px;
    left: 0;
}

.whyus li {
	position: relative;
	box-sizing: border-box;
	//border: 2px solid var(--bg-green2);
	//border-radius: 10px 20px;
	//padding: 15px;
	width: 280px;
	margin: 15px;
	padding-left: 30px;
}

.whyus-title {
	font-size: 18px;
	font-weight: 600;
	color: #3ab44a;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.whyus-description {
	font-size: 15px;
	font-weight: 500;
	color: #474444;
	line-height: 16px;
}

.about-description {
	font-size: 15px;
	color: #474444;
	line-height: 22px;
}

.about-title {
	color: #e3c843;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about-list {
	padding-left: 40px;
}

.footer .wrap {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: space-between;
	font-size: 13px;
}

.footer_url {
	padding: 3px;
}

.footer_url:hover {
	text-decoration: underline;
}

.faq-item {
	border: 2px solid var(--bg-green2);
	border-radius: 13px;
}

.faq-item_title {
	min-height: 30px;
	padding: 10px 15px;
	background: var(--bg-green2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	font-size: 18px;
	font-weight: 500;
	color: var(--bg-green2);
	transition: color var(--transition), text-shadow var(--transition);
}

.faq-item_title:after {
	background: var(--bg);
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	content: '';
	z-index: -1;
	border-radius: 10px;
	transition: opacity var(--transition);
}

.faq-item_description {
	
	border-top: 0;
    background-color: #3ab44a17;
    border-radius: 10px;
    padding: 15px;
    margin-top: -15px;
    font-size: 15px;
	color: #474444;
	line-height: 22px;
	box-sizing: border-box;
	padding-top: 25px;
}

.faq-item.active .faq-item_title:after {
	opacity: 0.1;
}

.faq-item.active .faq-item_title {
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

.faq {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    align-items: baseline;
}

.speedbar a:hover {
	text-decoration: none;
}

.speedbar a {
	text-decoration: underline;
}

.speedbar span {
	color: #878484;
	font-weight: 500;
}

.block-promotion_item.short_item:not(.short-no_white) .promotion_item-image {
	background: #fff;
	box-shadow: 0 0 30px #fff;
	border: 2px solid var(--bg-orange);
}

.block-promotion_item.short_item:not(.short-no_white) .promotion_item-image img {
	width: 50px;
	max-height: 50px;
	max-width: 50px;
}

.promotion_item-price {
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	margin-top: auto;
	text-transform: uppercase;
}

.promotion_item-btn {
	text-align: center;
	justify-content: center;
	margin-top: 5px;
}

.block-promotion_item.short_item .promotion_item-title {
	margin-bottom: 15px;
	color: var(--bg-green2);
}

.block-promotion_item.short_item .promotion_item-btn:after {
	background: #e4ebc3;
}

.page-txt {
	white-space: pre-line;
	font-size: 15px;
	line-height: 24px;
	font-weight: 500;
	color: #474444;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button {
    display: none
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}
  .custom-select-wrapper select {
    display: none;
  }
  .custom-select {
    position: relative;
    display: block;
  }
    .custom-select-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding-right: 85px;
      padding-left: 15px;
      padding-top: 10px;
      padding-bottom: 10px;
      box-sizing: border-box;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
     	background: var(--bg-orange);
     	color: #fff;
      border-radius: 10px;
      cursor: pointer;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    }
      .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px; height: 10px;
        top: 50%; right: 15px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
      }
      .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
      }
  .custom-options {
    position: absolute;
    display: block;
    top: 100%; left: 0; right: 0;
    min-width: 100%;
    margin: 10px 0;
    border-radius: 10px;
    box-sizing: border-box;
    background: var(--bg-orange);
    transition: all .4s ease-in-out;
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    z-index: 100;
  }
  .custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
    .custom-options:before {
      position: absolute;
      display: block;
      content: '';
      bottom: 100%; right: 15px;
      width: 7px; height: 7px;
      margin-bottom: -4px;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      background: var(--bg-orange);
      transform: rotate(45deg);
      transition: all .4s ease-in-out;
    }
    .custom-option {
      position: relative;
      display: block;
      padding: 10px 15px;
      border-bottom: 1px solid #b39d30;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: all .4s ease-in-out;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    }
    .custom-option:first-child {
      border-radius: 10px 10px 0 0;
    }
    .custom-option:last-child {
      border-bottom: 0;
      border-radius: 0 0 10px 10px;
    }
    .custom-option:hover {
      color: #8d770c;
      text-shadow: none;
    }

.full_short-item {
	margin-bottom: 20px;
}

.full_short-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
}

.full_short-input {
	height: 40px;
	background: #fff;
	width: 100%;
	padding: 0 15px;
	border-radius: 10px;
	font-size: 14px;
}

.full_short-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 35px;
}

.full_short-price p:nth-child(2) {
	font-size: 20px;
	font-weight: 600;
}

.full_short-link:after {
	background: #e4ebc3;
}

.full_short-quantity {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.quantity_input {
	width: 100%;
	height: 40px;
	background: #fff;
	border-radius: 10px;
	text-align: center;
	padding: 0 15px;
	font-size: 18px;
	font-weight: 600;
	margin: 0 10px;
}

.quantity_minus,
.quantity_plus {
	width: 40px;
	height: 40px;
	border: 1px solid #ccc;
    background: #fff;
	border-radius: 10px;
	cursor: pointer;
	color: var(--color);
	font-size: 22px;
	transition: text-shadow var(--transition);
}

.quantity_minus:hover,
.quantity_plus:hover {
	text-shadow: 0 5px 5px #000;
}

.full_short-grid {
	display: flex;
	list-style: none;
	justify-content: space-between;
	margin: 0 -10px;
}

.full_short-grid li {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #ccc;
	background: #cccccc54;
	margin: 0 10px;
	height: 34px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	transition: var(--transition);
	padding: 0 10px;
	box-sizing: border-box;
}

.full_short-grid li:hover {
	border-color: var(--bg-green2);
	color: var(--bg-green2);
}

.spoiler-btn:after {
	background: url(../img/arrow.svg);
	width: 24px;
	height: 24px;
	content: '';
	margin-left: 5px;
	margin-top: 3px;
	transition: transform var(--transition);
}

.spoiler-btn.act:after {
	transform: rotate(180deg);
}

.spoiler-btn {
	display: flex;
	width: max-content;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 7px;
	border: 2px solid var(--bg-orange);
	height: 44px;
	padding: 0 15px;
	align-items: center;
	border-radius: 10px 20px;
	cursor: pointer;
}

.spoiler-txt {
	background: #cccccc5c;
	border-radius: 10px 20px;
	padding:15px;
}

@media(max-width: 1000px) {
	.wrapper {
		min-width: 340px;
	}

	.header {
		margin-bottom: 20px;
	}

	.block {
		padding: 20px 0;
	}

	.whyus:after {
		display: none;
	}

	.whyus {
		justify-content: center;
	}

	.title {
		margin-bottom: 15px;
	}

	.block-promotion_grid {
		grid-gap: 10px;
	}

	.about {
		padding: 15px;
	}

	.whyus {
		padding: 5px 0;
	}

	.full_short-item {
		margin-bottom: 10px;
	}

	.full_short-panel {
		margin-top: 20px;
	}
}

@media(max-width: 900px) {
	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(max-width: 800px) {
	.footer .wrap {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.footer-text {
		margin-bottom: 5px;
	}
}

@media(max-width: 700px) {
	.block-promotion_grid:not(.short_grid) {
		grid-template-columns: repeat(3, 1fr);
	}

	.faq {
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 10px;
	}

	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 600px) {
	.full_short-grid {
		display: none;
	}
}

@media(max-width: 550px) {
	.header {
		height: auto;
	}

	.header .wrap {
		flex-wrap: wrap;
		justify-content: center;
	}

	.header-buttons {
		margin-right: 30px;
		margin-left: 30px;
		margin-top: 15px;
	}

	.header-buttons_link.btn.btn-type_1 {
		margin-left: 0;
	}

	.speedbar {
		text-align: center;
	}
}

@media(max-width: 500px) {
	.block-promotion_grid:not(.short_grid) {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 450px) {
	.full_short-link {
		width: 150px;
    padding: 10px;
    height: auto;
    text-align: center;
    font-size: 16px;
	}
}

@media(max-width: 400px) {
	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.header-animation:before {
	background: var(--bg);
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 4px;
	content: '';
	z-index: 1;
}

.lang {
  display: flex;
    list-style: none;
    margin-left: auto;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
}

.lang-line {
  margin: 0 5px;
  opacity: 0.5;
}

.lang li:not(.lang-line) {
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.lang li:not(.lang-line):after {
  height: 2px;
  background: var(--bg-green2);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  content: '';
  opacity: 0;
  transition: opacity var(--transition);
}

.lang li:not(.lang-line).act:after {
  opacity: 1;
}

.lang li:not(.lang-line).act {
  color: var(--bg-green2);
}

@media(max-width: 650px) {
  .lang {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    justify-content: center;
  }

  .header .wrap {
    padding-top: 50px;
  }
}

.header-animation {
  opacity: 0;
  animation-name: header-animation;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.5s;
}

@keyframes header-animation {
 100% {
   opacity: 1;
 }
}