/*! Reset */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box !important;
    outline: none;
    font-family: "Exo 2", sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background-color: #F5F1E6;
}

ul {
    list-style: none;
}

a {
    color: #343434;
    text-decoration: none;
    outline: none;
    word-break: break-word;
    transition: all .3s ease;
}

input, textarea{
    border: 0;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none !important;
    transition: all .3s ease;
}

input {
    transition: all .3s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: #343434;
    font-weight: 700;
}

/*! Components */
/** Button */
.btn {
    padding-bottom: 5px;
    color: #FF740F;
    font-size: 20px;
    line-height: 100%;
    background: #fff;
    border: 1px solid #FF740F;
    border-radius: 36px;
}

.btn:hover {
    color: #fff;
    background: #FF740F;
    border-color: #fff;
}

/* Filled */
.btn.filled {
    color: #fff;
    background: #FF740F;
    box-shadow: 0 4px 4px rgba(#000000, .25);
}

.btn.filled:hover {
    color: #FF740F;
    background: #fff;
    border-color: #FF740F;
}

/*! Header */
header {
    position: relative;
    top: 0;
	right: 0;
    left: 0;
    z-index: 1000;
    min-height: 600px;
    height: auto;
    color: white;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

header::before {
    border-radius: 30px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Затемнение с прозрачностью (0.5 = 50%) */
    z-index: -1; /* Помещаем псевдоэлемент под контент */
}

/* Logo */
header .logo img {
    max-width: 117px;
}

/* Btn */
.header-btn {
    position: relative;
    margin-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    border-color: #FF740F !important;
    border-radius: 45px;
}

.header-btn span {
    display: block;
    padding-right: 45px;
    font-size: 18px;
    font-weight: 600;
}

.header-btn .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
}

.header-btn .arrow i {
    color: #343434;
    font-size: 20px;
}

/* Btn 2 */
.header-btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 310px;
    text-align: center;
    color: #343434;
}

/* Date */
.header-date {
    font-size: 18px;
    font-weight: 300;
}

/* Title */
.header-title {
    color: #fff;
    font-size: 36px;
}

/* Price */
.header-price {
    font-size: 24px;
    font-weight: 600;
}

/* Reg button */
.header-reg-btn {
    display: block;
    padding: 15px;
    width: 320px;
    text-align: center;
}

/* Stickman */
.header-stickman {
    width: 100%;
    height: 440px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*! Content */
.content.wave-bg {
    padding-bottom: 100px;
    background-image: url('https://panel.systemicds.com/src/images/waves.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

/* Title */
.content-title {
    color: #343434;
    font-size: 36px;
    font-weight: 600;
}

/* Text */
.content-text {
    color: #343434;
    font-size: 20px;
    font-weight: 500;
}

.content .contact-title {
    color: #343434;
    font-size: 22px;
    font-weight: 600;
}

/*! Form */
/* Label */
.form-label {
    margin-bottom: 9px;
    padding-left: 5px;
    display: block;
    width: 100%;
    color: #343434;
    font-size: 18px;
    font-weight: 500;
}

/* Input group */
.input-group {
    position: relative;
}

/* Selection country */
.content .select2-selection {
    position: relative;
    width: 100%;
    height: 43.2px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 116, 15, 0.3);
    border-radius: 30px;
}

.select2-selection .select2-selection__arrow, .select2-selection .select2-selection__clear {
    display: none;
}

.select2-selection .select2-selection__rendered {
    padding: 2px 0;
    line-height: 100% !important;
}

/* Form control */
.form-control, .form-select {
    width: 100%;
    padding: 10px 20px;
    color: #343434;
    font-size: 18px;
    font-weight: 300;
    border: 1px solid rgba(255, 116, 15, 0.3);
    border-radius: 30px;
}

.form-select-container {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #fff;
    border-radius: 30px;
}

.form-select-container:after, .content .select2-selection:after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    content: "\f107";
    color: #FF740F;
    font-family: "Font Awesome 6 Pro";
    font-size: 22px;
    font-weight: 300;
}

.form-select {
    appearance: none;
    background: transparent;
}

textarea.form-control {
    height: 187px;
    resize: none;
}

.form-control:focus {
    border-color: #FF740F;
}

/* Promo button */
.promo-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 236px;
    height: 100%;
}

/* Checkboxes */
.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    position: relative;
    cursor: pointer;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 116, 15, 0.3);
}

.form-check-input:checked {
    border-color: #FF740F;
}

.form-check-input:checked:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    color: #FF740F;
    font-size: 1.125em;
}

.form-check-label {
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
}

.payment-warning {
    font-size: 14px;
    font-weight: 300;
}

/* Submit */
#btn-submit {
    height: 48px;
}

.messagepromo {
	margin-top: 10px;
	font-weight: bold;
}
.messagepromo.success {
	color: green;
}
.messagepromo.error {
	color: red;
}

/** Right column */
.right-column-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.right-column-inner:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.45);
}

.right-column-inner * {
    color: #fff;
}

.right-column__small {
    font-size: 18px;
    font-weight: 300;
}

.right-column__title {
    font-size: 25px;
    font-weight: 700;
}

.right-column__price {
    font-size: 25px;
    font-weight: 300;
}

.right-column-stars i + i {
    margin-left: 10px;
}

.right-column__btn {
    padding: 15px;
    font-size: 18px;
    border: 1px solid #fff;
    border-radius: 45px;
}

.right-column__btn:hover {
    color: #FF740F;
    background: #fff;
}

/*! Properties */
.w-100 {
    width: 100%;
}