@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
a {
	outline: 0;
	text-decoration: none;
	cursor: pointer;
	pointer-events: pointer;
	color: inherit;
}
a:hover {
	cursor: pointer;
	pointer-events: pointer;
}
body {
	font-family: "Manrope", sans-serif;
	background: rgb(239, 239, 239);
	overflow-x: hidden;
	color: rgb(0, 0, 0);
}
html {
	scroll-behavior: smooth;
}
.text-yellow {
	color: rgb(252, 211, 77) !important;
}
.light-gray {
	color: rgb(157, 157, 157) !important;
}
.dark-gray {
	color: rgb(128, 128, 128) !important;
}
.letter-spacing {
	letter-spacing: 2px;
}
.firstSection
{
	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../../img/background_img.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.secondSection, .second-lp-section, .third-lp-section {
	background: rgb(239, 239, 239);
}
.forthSection {
	background: rgb(41, 37, 36);
}
.footerSection {
	background: rgb(28, 25, 23);
}
.first-lp-section {
	background-image: url(../../img/background_img3.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.voucher-box {
    position: relative;
    width: 306px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 35px;
}
.voucher-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.voucher-box img.bg-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.voucher-box:hover img.bg-img {
    transform: scale(1.1);
}
.voucher-box .content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: left bottom;
}
.voucher-box:hover .content {
    transform: translateY(-10px);
}
.gift-voucher img {
    transition: transform 0.3s ease;
}
.voucher-box:hover .gift-voucher img {
    animation: giftBounce 0.8s ease forwards;
}
@keyframes giftBounce {
    0%   { transform: rotate(0deg); }
    15%  { transform: rotate(-15deg); }
    30%  { transform: rotate(10deg); }
    45%  { transform: rotate(-10deg); }
    60%  { transform: rotate(7deg); }
    75%  { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}
.voucher-box:nth-child(1) { 
	animation-delay: 0s; 
}
.voucher-box:nth-child(2) { 
	animation-delay: 0.2s; 
}
.voucher-box:nth-child(3) { 
	animation-delay: 0.4s; 
}
.customFormButton {
	background: rgb(0, 0, 0) !important;
	border: 1px solid #1c1917;
	border-radius: 15px;
}
.customFormButton:hover, .customFormButton:focus {
	border: 1px solid #1c1917 !important;
}
.customBorder {
	border-top: 1px solid #d7d7d7;
}
.customForm {
	background: rgb(255, 255, 255) !important;
	border: 1px solid #d7d7d7;
	border-radius: 15px;
	max-width: 800px;
}
.forth-lp-section {
    background-image: none;
	background: rgb(239, 239, 239);
}
.header-terms {
	background-image: url(../../img/terms-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.header-privacy {
	background-image: url(../../img/privacy-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.header-faq {
	background: rgb(116, 116, 116);
}
.custom-white-btn {
	border: none;
	border-radius: 100px;
	box-shadow: 1px 1px 15px rgb(0 0 0 / 30%);
	background: rgb(255, 255, 255);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-transparent-btn {
	border: 1px solid #ffffff;
	border-radius: 100px;
	box-shadow: 1px 1px 15px rgb(255 255 255 / 30%);
	background: rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-white-btn:hover {
	transform: scale(1.03);
	background: rgb(255, 255, 255) !important;
}
.custom-white-btn:focus {
	background: rgb(255, 255, 255) !important;
}
.custom-transparent-btn:focus {
	background: rgba(255, 255, 255, 0.3) !important;
	border: 1px solid #ffffff !important;
}
.custom-transparent-btn:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.3) !important;
  border: 1px solid #ffffff !important;
}
.firstSection .fade-in-up, .first-lp-section .fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 2s ease forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.firstSection .fade-in-up:nth-child(1), .first-lp-section .fade-in-up:nth-child(1) { 
	animation-delay: 0.3s; 
}
.firstSection .fade-in-up:nth-child(2), .first-lp-section .fade-in-up:nth-child(1) { 
	animation-delay: 0.6s; 
}
.firstSection .fade-in-up:nth-child(3), .first-lp-section .fade-in-up:nth-child(1) { 
	animation-delay: 0.9s; 
}
.thirdSection img {
	display: block;
	width: 100%;
	height: auto;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.thirdSection .col-6 {
	overflow: hidden;
}
.thirdSection img {
	transform: scale(1.01);
	transition: transform 0.4s ease;
}
.thirdSection .col-6:hover img {
	transform: scale(1.08);
}
.form-select option {
	background-color: rgb(255, 255, 255);
}
.form-select option:not([selected]) {
	color: rgb(0, 0, 0);
}
.select-wrapper {
	position: relative;
	display: inline-block;
}
.select-wrapper::after {
	content: "▼";
	position: absolute;
	right: 20px;
	top: 70%;
	transform: translateY(-50%);
	color: #606060;
	pointer-events: none;
	font-size: 18px;
}
.select-wrapper select {
	width: 100%;
	padding-right: 30px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	border: 1px solid #d7d7d7 !important;
	padding: 13px;
}
.form-check-input:checked {
	background-color: rgb(144, 143, 143) !important;
	border: 1px solid #d7d7d7 !important;
}
.form-control[type="date"] {
	color-scheme: gray;
}
.form-check-input[type=checkbox] {
	background-color: transparent;
	border: 1px solid #d7d7d7;
}
.form-control:focus,
.form-select:focus {
	background-color: transparent !important;
	border-color: #d7d7d7 !important;
	outline: none !important;
	color: #606060 !important;
	box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, 0.1) !important;
}
input:not([type="checkbox"]):focus, select:focus {
	border: 1px solid #898989 !important;
}
input:not([type="checkbox"]), select {
	border-radius: 15px !important;
	border: 1px solid #d7d7d7 !important;
	color: #606060 !important;
	padding: 13px;
	background: transparent !important;
	box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
input::placeholder {
	color: #606060 !important;
	opacity: 1;
}
.form-check {
	color: rgb(96, 96, 96) !important;
}
.form-check-label {
	padding-left: 2px !important;
}
.form-check-input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.custom-select .selected::after {
	content: "▼";
	padding-left: 5px;
	font-size: 9px;
	vertical-align: middle;
}
.custom-select {
	position: relative;
	width: auto;
	cursor: pointer;
	font-size: 16px;
	border-radius: 4px;
}
.accordion-bg {
	--bs-accordion-bg: transparent;
}
.accordion-item {
	background-color: rgb(255, 255, 255) !important;
	border: 1px solid #d7d7d7 !important;
	margin-bottom: 10px;
	border-radius: 15px !important;
	color: #878787 !important;
}
.accordion-button {
	background-color: rgb(255, 255, 255) !important;
	box-shadow: none !important;
	outline: none !important;
	color: #000000 !important;
}
.accordion-button:focus {
	background-color: rgb(255, 255, 255) !important;
	box-shadow: none !important;
	outline: none !important;
	color: #000000 !important;
}
.accordion-header {
	padding: 20px 20px !important;
}
.accordion-body {
	border-top: 1px solid #d7d7d7 !important;
	padding: 20px 20px !important;
}
.list-group-item {
	border: none !important;
	background-color: transparent !important;
	color: rgb(21, 21, 21) !important;
	border-radius: 18px !important;
	padding: 10px 10px !important;
	margin-bottom: 10px;
}
.list-group-item::before {
	color: rgb(21, 21, 21) !important;
	font-weight: 600;
}
.list-group-numbered .list-group-item {
	display: flex;
	align-items: flex-start;
}
.list-group-numbered .list-group-item::before {
	margin-right: 10px;
	min-width: 20px;
}
.customContainer {
	max-width: 1000px !important;
	margin: 0 auto;
}
@media (max-width: 576px) {
.fs-sm-6 {
	font-size: 0.9rem !important;
}
.voucher-box {
	width: 280px !important;
}
}
@media (min-width: 992px) {
.mx-custom {
	max-width: 550px;
	margin: 0 auto;
}
.forth-lp-section {
	background-image: url('../../img/form-left-image.png'), url('../../img/form-right-image.png');
	background-position: left top, right bottom;
	background-repeat:no-repeat, no-repeat;
	background-size:270px, 270px;
}
.header-terms, .header-privacy, .header-faq {
	padding-top: 140px !important;
	padding-bottom: 80px !important;
}
}