@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&display=swap');

:root {
    --primary: #ff9000;
    --accent: #001a2d;
    --danger: #f11925;
    --success: #5ed262;
    --black: #000;
    --white: #fff;
    --default: rgba(255, 255, 255, 0.6);
    --transition: 0.25s linear;

    --primary-lighted: #ffd33a;
    --primary-gradient: linear-gradient(90deg, var(--primary) 0%, var(--primary-lighted) 100%);
    --primary-gradient-hover: linear-gradient(90deg, var(--primary-lighted) 0%, var(--primary) 100%);

    --primary-blue: #366dc0;
    --primary-blue-lighted: #4589ef;
    --btn-outline-blue: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-lighted) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus {
    outline: none;
}

img {
    display: block;
}

ul li {
    list-style: none;
}

p {
    color: rgba(255, 255, 255, 0.85);
}

select::-ms-expand {
    display: none;
}
input::-ms-clear {
    width: 0;
    height: 0;
    display: none;
}

select,
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-radius: 0;
    border: none;
    font-family: 'Jost', sans-serif;
}
.textarea-describe[contenteditable]:empty::before {
    content: 'Describe please';
    color: var(--default);
}

input::-webkit-input-placeholder {
    color: var(--default);
}

input::-moz-placeholder {
    color: var(--default);
}

input::-ms-input-placeholder {
    color: var(--default);
}

input:-ms-input-placeholder {
    color: var(--default);
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    min-width: 320px;
    min-height: 320px;
    background: var(--accent);
}

h1,
.h1,
h2,
.h2,
h3 {
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,
.h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2,
.h2 {
    font-size: 30px;
    line-height: 1.4;
}

h3,
.h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

a {
    color: var(--default);
    text-decoration: none;
    transition: var(--transition);
}

p + p {
    margin-top: 10px;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100%;
    text-align: center;
}

.center {
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--primary-lighted);
    background: var(--primary-gradient);
    border-radius: 4px;
}

.btn:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6), transparent 70%);
}

.btn:hover {
    background: var(--primary-gradient-hover);
}

.btn-outline {
    border-width: 3px;
    background: transparent;
    border-color: var(--primary-lighted);
}
.btn-outline span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-outline:hover {
    background: var(--primary-gradient);
}
.btn-outline-blue {
    border-width: 3px;
    background: transparent;
    border-color: var(--primary-blue-lighted);
}
.btn-outline-blue span {
    background: var(--btn-outline-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-outline-blue:hover {
    background: var(--btn-outline-blue);
}
.btn-outline:hover span,
.btn-outline-blue:hover span {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.btn-outline:before,
.btn-outline-blue:before {
    height: 3px;
    top: -3px;
}

.btn-flat {
    text-transform: none;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.08);
}

.btn-flat:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn-flat:before {
    display: none;
}

.page-bg-wrapper {
    display: none;
}

/****  Hidden class ***/
.is-hidden {
    display: none;
}

/******* HEADER *******/

header.center.sticky {
    background: var(--accent);
}

header.center {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: var(--transition);
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 15px 20px;
    z-index: 1;
}

header .logo {
    position: relative;
    z-index: 2;
}

header .nav-block a,
header .nav-block span {
    display: flex;
    color: inherit;
    cursor: pointer;
}

.nav-text {
    transition: var(--transition);
}

header .nav-text:hover,
header .nav-item.is-active .nav-text {
    color: var(--primary);
}

header .nav-block .nav-item {
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.mobile-btn {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.mobile-btn .mobile-btn-item {
    width: 18px;
    height: 2px;
    margin: 4px 0 4px auto;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: 1;
}

[data-role='dropdown'] span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-item-dropdown {
    display: none;
    padding: 10px 0 0;
}

.nav-item-dropdown a {
    line-height: 1.4;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    opacity: 0.9;
}

.overlay-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/******* // HEADER *******/

/******* SLIDER COMMON STYLES ********/
main.slider-page {
    margin: auto;
    max-width: 100%;
    padding: 0;
}
.slider-page .go-to-all-block {
    padding: 20px 10px;
}
.slider {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.slider-view {
    display: flex;
    height: 100%;
    transition: all 0.4s ease-out;
}

.slider-item {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    user-select: none;
    text-align: left;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(185, 143, 126, 0.4);
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
.slider-item.is-active {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.slider-content {
    display: grid;
    grid-gap: 10px;
    padding: 10px;
}
.slider-header .h3 {
    margin-bottom: 0;
}
.slider-page .subtitle-item {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 4px 14px 4px 0;
}
.slider-page .subtitle-item .icon {
    font-size: 14px;
    margin-right: 8px;
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slider-page .subtitle-item span {
    font-size: 12px;
    color: var(--default);
}
.slider-view img {
    width: 100%;
    user-select: none;
    pointer-events: none;
}
.slider-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 9;
    transition: opacity 0.35s linear 0s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
    background: #324655;
    background: rgba(255, 255, 255, 0.08);
}

.btn-flat:hover {
    background: rgba(255, 255, 255, 0.18);
}

.slider-arrow:before {
    content: '';
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-top: none;
}

.slider-arrow.is-hidden {
    display: none;
}

.slider-arrow.arrow-prev {
    left: 20px;
}

.slider-arrow.arrow-prev:before {
    border-right: none;
    transform: rotate(45deg);
    margin-left: 7px;
}

.slider-arrow.arrow-next {
    right: 20px;
}

.slider-arrow.arrow-next:before {
    border-left: none;
    transform: rotate(-45deg);
    margin-right: 7px;
}

.slider-pagination {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider-pagination-item {
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    margin: 0 3px;
    border: 2px solid #999;
    position: relative;
    transition: all 0.2s linear 0s;
}

.slider-pagination-item.is-active {
    background-color: #999;
}

.slider .slider-nav {
    display: none;
}
/******* // SLIDER COMMON STYLES ********/
/******* CONTACTS SECTION *******/
.section-contacts {
    display: none;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
    background: var(--accent);
}

.section-contacts .close-form-btn {
    display: none;
}

.section-contacts .form-item:first-child label {
    padding-top: 0;
}

.mobile-nav-visible[data-form='is-open'] .section-contacts {
    display: block;
}

.section-contacts .contacts-info {
    display: none;
}

.section-contacts .contact-info {
    padding-top: 20px;
}

.section-contacts .info-wrapper {
    display: grid;
    grid-gap: 20px;
    max-width: 360px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.section-contacts [data-info='phone'] {
    display: grid;
    grid-template-columns: 20px auto 2px auto;
    grid-gap: 6px;
    align-items: center;
}

.section-contacts .info-wrapper .icon {
    font-size: 24px;
    vertical-align: middle;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-contacts [data-info='phone'] .border {
    height: 100%;
    background: var(--primary-gradient);
}

.section-contacts .info-wrapper a {
    color: inherit;
}

/******* // CONTACTS SECTION *******/

/******  FORM ELEMENTS *******/
form .form-field {
    position: relative;
}

form .form-field .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    height: 50px;
    width: 44px;
    text-align: center;
    font-size: 26px;
    vertical-align: middle;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
form .form-field .icon img {
    display: inline-block;
    margin-top: 13px;
}
form .form-field .icon::before {
    line-height: 50px;
}

form .form-field .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: auto;
    z-index: -1;
    box-shadow: 0 0 15px 5px var(--primary);
}

.textarea-describe {
    display: block;
    width: 100%;
    overflow-x: hidden;
    min-height: 50px;
    max-height: 146px;
    color: #fff;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 0px 1px -1px #ffce22, inset 2px 0px 0px #ffb41e;
    padding: 13px 10px 13px 40px;
}
.textarea-describe::-webkit-scrollbar {
    width: 5px;
    background: #273d4d;
}
.textarea-describe::-webkit-scrollbar-thumb {
    border-radius: 40px;
    background: linear-gradient(90deg, #ff9000 0%, #ffd33a 100%);
}
.describe-success-message {
    font-size: 12px;
    margin: 10px auto 0;
    max-width: 447px;
    display: none;
    display: none;
    flex-direction: column;
    justify-content: center;
}
.section-contacts.form-success .contacts-info {
    display: none;
}
.form-success .describe-success-message {
    display: flex;
}
.form-success .contact-form {
    display: none;
}
.describe-success-message .icon {
    font-size: 100px;
    display: block;
    color: #ffbc27;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}
.describe-success-message .h1 div {
    display: block;
    color: #ffbc27;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}
.describe-success-message .h1 {
    margin-bottom: 10px;
    font-size: 40px;
    color: var(--primary);
}
.describe-success-message .h3 {
    font-size: 18px;
    font-weight: 400;
}
form input,
form select,
form .select-value {
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    height: 50px;
    text-align: left;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 0px 1px -1px #ffce22, inset 2px 0px 0px #ffb41e;
    padding: 5px 10px 5px 40px;
}

/* select arrow */
form .select-value {
    position: relative;
}
.select-field:before,
.select-field:after {
    content: '';
    position: absolute;
    top: 23px;
}
.select-field:before {
    width: 0;
    height: 0;
    border: solid transparent;
    border-top-color: var(--primary);
    border-width: 5px;
    right: 10px;
}
.select-field:after {
    width: 1px;
    height: 1px;
    right: 15px;
    z-index: -1;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px var(--primary);
}
.select--focused.select-field:before {
    top: 16px;
    transform: scale(1, -1);
}

/* // select arrow */

form .select-value {
    display: none;
    cursor: pointer;
}

form .select-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 2;
    display: none;
    max-height: 140px;
    padding: 0 0 0 2px;
    overflow-y: auto;
    text-align: left;
    color: var(--default);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: #142c3e;
    box-shadow: inset 1px 0 1px -1px #ffce22, inset 2px 0 0 #ffb41e;
}

.select-dropdown .select-option {
    cursor: pointer;
    padding: 5px 10px;
}

.select-option--selected {
    color: var(--primary);
    background: #17354b;
}

.select-dropdown .select-option:hover {
    background: #17354b;
}

.select-option[value='default'],
select option[value='default'] {
    display: none;
}

.form-field.select--focused .select-dropdown {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    visibility: visible;
    opacity: 1;
}

select option {
    color: #000;
}

.select-dropdown .select-search {
    display: block;
    margin: 0 auto 10px;
    padding: 5px 25px 5px 20px;
    font-size: 14px;
    box-shadow: none;
}

.select-dropdown .select-search-clear {
    position: absolute;
    top: 16px;
    right: 15px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.select-search-clear:before,
.select-search-clear:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: var(--primary);
    left: 50%;
    top: 50%;
    transition: all 0.15s linear;
}

.select-search-clear:before,
.select-search-clear:after {
    width: 13px;
}

.select-search-clear:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.select-search-clear:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.select-search-clear:hover:before,
.select-search-clear:hover:after {
    background: #fff;
}

form .col-2 .form-field {
    max-width: 300px;
}

form .form-item {
    position: relative;
}

form .form-item > label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 25px 0 5px 0;
}

form .form-submit-block {
    margin: 0 auto;
}

form .radio-item {
    display: grid;
    grid-template-columns: 15px auto;
    align-items: center;
    grid-gap: 0 10px;
    margin-bottom: 10px;
    text-align: left;
}

form .radio-item label {
    font-weight: normal;
    color: var(--default);
    padding: 0;
    cursor: pointer;
}

form input[type='radio'] {
    display: none;
}

form .radio-item .icon {
    font-size: 18px;
    order: -1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form input[type='radio']:checked + .icon:before {
    content: '\e900';
}

.is-invalid .form-error {
    opacity: 1;
    z-index: 1;
}

.is-invalid input,
.is-invalid .select-value {
    box-shadow: inset 2px 0px 0px var(--danger);
}

.form-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 3px;
    width: 100%;
    opacity: 0;
    z-index: -1;
    transition: all 0.15s linear;
}

.form-error span {
    display: block;
}

form .btn {
    margin-top: 10px;
    box-shadow: none;
}

/******  // FORM ELEMENTS *******/

/******* FOOTER *******/
.footer {
    margin-top: auto;
    padding: 80px 0 20px;
    color: var(--default);
    background-color: transparent;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-title {
    text-align: center;
    text-transform: uppercase;
    background: var(--btn-outline-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.625;
    padding-top: 5px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer .social-links-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-link a {
    font-size: 24px;
    padding: 5px;
    display: flex;
}

.footer .social-link .icon {
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    display: flex;
    padding: 5px 10px;
}

[data-item='footer-dropdown'] {
    position: relative;
    padding: 5px 10px;
}

[data-item='footer-dropdown'] span {
    cursor: pointer;
}

[data-item='footer-dropdown']:hover .footer-links-dropdown {
    visibility: visible;
    transform: 0;
    opacity: 1;
}

.footer-links-dropdown {
    display: grid;
    grid-gap: 10px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 110%;
    left: 50%;
    min-width: 180px;
    max-height: 400px;
    padding: 10px;
    white-space: nowrap;
    transform: translateX(-50%);
    z-index: 3;
    background: linear-gradient(57.38deg, #001b2f 0%, #1f2b34 100%);
    transition: opacity 0.3s ease-in;
}

.footer .languages-nav {
    margin-top: auto;
    margin-bottom: 2.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .languages-nav li {
    margin-left: 10px;
}

.footer .language-item {
    width: 24px;
    height: 24px;
}

/******* // FOOTER *******/

.is-invalid .form-error {
    opacity: 1;
    z-index: 1;
}
.is-invalid .textarea-describe,
.is-invalid input,
.is-invalid select,
.is-invalid .select-value,
.is-invalid .select-dropdown {
    box-shadow: inset 2px 0px 0px var(--danger);
}
.is-invalid.select--focused .form-error {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.eye {
    background-image: url('/new/img/landing/show.png');
    height: 25px;
    width: 30px;
    position: absolute;
    top: 13px;
    right: 10px;
    cursor: pointer;
}

.eye.hide {
    background-image: url('/new/img/landing/hide.png');
    top: 11px;
}

.terms a {
    color: var(--primary);
}
.btn.current-page,
.nav-text.current-page {
    color: var(--primary);
}
.terms .item {
    color: var(--primary);
}

/* Cookies-popup */

.cookies-popup-wrapper {
	position: fixed;
	top: auto;
	right: 0;
	bottom: 0;
    left: 0;
    font-size: 16px;
	padding: 20px 0;
	color: rgba(255, 255, 255, 0.85);
	background: #001A2D;
    box-shadow: -10px 0px 52px rgba(0, 0, 0, 0.25);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    text-align: left;
	z-index: 100;
}
.cookies-popup-wrapper .center {
    max-width: 936px;
}
.cookies-popup-wrapper.is-active {
	animation: showCookiePopup 0.5s 1s both;
}
.cookies-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}
.cookies-content a:hover {
    text-decoration: none;
}
.cookies-btns {
    display: flex;
    margin-top: 20px;
}
.cookies-btns .btn {
    flex: 1;
    font-size: 16px;
}
.btn.cookies-close-btn:before{
    display: none;
}
.btn.cookies-close-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: none;
}
.cookies-btns .btn:first-child {
    margin-right: 20px;
}

@-webkit-keyframes showCookiePopup {
	0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
	}
	100% {
        -webkit-transform: none;
		transform: none;
	}
}

@keyframes showCookiePopup {
	0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
	}
	100% {
        -webkit-transform: none;
		transform: none;
	}
}
