@import url("reset.css");

@font-face {
    font-family: "Myriad Pro";
    src: url('../fonts/MyriadPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Myriad Pro";
    src: url('../fonts/MyriadPro-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*----------------------body-----------------*/
header, nav, section, article, aside, footer {
    display: block
}

html {
    /*height: 100%*/
}

body {
    font: normal 20px/24px Arial, Helvetica, sans-serif;
    color: #333;
}

body.scroll {
    /*overflow-y: hidden;*/
}

.main {
    min-height: 100%;
    margin: 0 auto;
    width: 100%;
    /*overflow: hidden;*/
    position: relative;
}

.container {
    max-width: 1440px;
    padding: 0 24px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}

.hidden, input[type="text"].hidden {
    display: none !important;
}

.cnt {
    text-align: center;
}

.clear {
    clear: both;
}

a, img {
    outline: none;
}

a:focus {
    outline: none;
}

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

a:hover {

    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

* {
    box-sizing: border-box;
}

/*----------------------------header----------------------*/
.header {
    background: #fff;
    position: absolute;
    z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 0;
}
.logo_mobil{
	transition: all 0.2s linear;
}
.logo_mobil:hover{
	opacity: .7;
}

.logo_mobil span{
	display: block;
	font: 600 14px/14px "Myriad Pro", Arial, Helvetica, sans-serif;
	 background: linear-gradient(90deg, #ffd54f, #ffb300, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 6s linear infinite;
	text-align: center;
	margin-top: 5px;
}

.lang {
    position: relative;
    font: 500 24px/24px "Myriad Pro", Arial, Helvetica, sans-serif;
    padding: 5px 0;
}

.lang a:first-child{
	margin-right: 20px;
}

/*------------------------nav---------------------------*/
.nav {
    z-index: 10;
}

.nav ul {

}

.nav ul li {
    padding: 0px 0px 0px 37px;
    position: relative;
}

.nav ul li:first-child {
    padding: 0;
}

.nav ul li a {
    position: relative;
    display: block;
    color: #4e3eb5;
    font: 500 24px/24px "Myriad Pro", Arial, Helvetica, sans-serif;
    transition: all 0.2s linear;
    white-space: nowrap;
    padding-left: 26px;

}

.nav ul li.active a, .nav ul li a:hover, .nav ul li.current-menu-item a{
	color: #da9436;
}

.nav_open {
    cursor: pointer;
    transition: all 0.3s linear;
    z-index: 100;
    text-transform: uppercase;
    display: none;
    flex-direction: column;
}

@media (min-width: 769px) {
    .nav_open {
        display: none !important;
    }
}

.nav_open span {
    background: #4e3eb5;
    height: 4px;
    width: 40px;
    margin-top: 7px;
    display: block;
    transition: all 0.2s linear;
}

.nav_open span:first-child {
    margin-top: 0;
}

.nav_open.active span {
    transform: rotate(45deg);
    margin-top: 0;
}

.nav_open.active span + span {
    transform: rotate(0deg);
    margin-top: 0;
    visibility: hidden;
}

.nav_open.active span + span + span {
    transform: rotate(-45deg);
    margin-top: -7px;
    visibility: visible;
}

.nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.nav_overlay.active {
    display: block;
}


/*------------------------------button-------------------------*/
.btn {
    height: 52px;
	width: 250px;
    display: block;
    transition: all 0.2s linear;
    cursor: pointer;
    box-sizing: border-box;
    font: 400 20px/22px Font-Base, sans-serif;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    background: #4e3eb5;
    text-transform: uppercase;
	border-radius: 10px;
}

.btn:hover {
    background: #da9436;
}


/*-------------------------home-----------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* высота первого экрана */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(70%); /* затемнение для читаемости текста */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-family: sans-serif;
}
.hero-content h1{
	font-size: 48px;
	line-height: 1.2em;
	font-weight: 600;
	margin-bottom: 40px;
	font-family: "Myriad Pro";
}
.hero-content h3{
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 600;
	margin: 10px 0;
	font-family: "Myriad Pro";
}

.gradient-text {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffd54f, #ffb300, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 6s linear infinite;
  
}

/* ====== Анимация градиента ====== */
@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-content h1 span{
 text-transform: uppercase;
color: #da9436;
}
.hero-content .btn{
	margin: 30px auto 0;
}
.section_about{
	padding: 80px 0;
	
}
.section_bg{
	background: #fadcc3;
}
.section_bg .about_pic{
	order:-1;
}
.body_about{
	display: flex;
	justify-content: space-between;
}
.body_about > div{
	width: 47%;
}
.body_about h2{
	font: 600 36px/1.2em "Myriad Pro", Arial;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.body_about h3{
	font: 600 30px/1.2em "Myriad Pro", Arial;
	margin-bottom: 25px;
}
.body_about p, .body_about ul{
	margin-bottom: 24px;
}
.body_about img{
	border-radius:10px;
}
.about_text ul li{
	padding: 5px 0 5px 25px;
	position: relative;
}
.about_text ul li:before{
	position: absolute;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #da9436;
	top: 15px;
	left:0;
}
.about_text ol{
	margin-left: 20px;
}
.about_text ol li{
	list-style: decimal;
	padding: 5px 0;
}
/*--------------------------footer--------------------*/

.footer {
    background: #da9436;
    transition: all 0.3s linear;
    color: #fff;
    padding: 50px 0px;
}
.footer_left{
	text-align: center;
}
.footer_left span{
	display: block;
	margin-top: 15px;
}
.footer_top {
	align-items: flex-start;
}
.footer_top h4{
	font: 600 30px/1.2em "Myriad Pro", Arial;
	margin-bottom: 25px;
}
.footer_bottom{
	text-align: center;
	font-size: 14px; 
	margin-top: 40px;
}
.logo{
	color: #fff;
	transition: all 0.2s linear;
}
.logo:hover{
	color: #fff;
	opacity: .7;
}
/*-------------------------------form---------------------------*/


input[type="text"], input[type="email"], input[type="tel"], textarea {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    width: 100%;
    height: 28px;
    position: relative;
    font: normal 14px/21px 'Font-Base', Arial, Helvetica, sans-serif;
    color: var(--color-white);
    padding: 0px 0px 6px;
    display: block;
    margin: 0 0px 17px;
    text-align: left;
    transition: all 0.3s linear;
    box-sizing: border-box;
    border-radius: 0px;
    background: none;

}

input[type="text"]:hover, input[type="text"]:focus, input[type="email"]:hover, input[type="email"]:focus, input[type="tel"]:hover, input[type="tel"]:focus, textarea:hover, textarea:focus {
    border-bottom: 1px solid var(--color-white);
}

textarea {
    height: 74px;
    resize: none;
}

button[type="submit"] {
    border: none;
    display: block;
    font: 500 16px/21px 'Font-Base', Arial, Helvetica, sans-serif;
    height: 93px;

    text-decoration: none;
    background: #D49D75;
    text-align: center;
    padding: 28px 10px 23px;
    color: #FAF8F4;
    text-transform: uppercase;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    transition: all 0.3s linear;
}

button[type="submit"]:hover, button[type="submit"]:hover {
    background: rgba(186, 127, 84, 0.78);
}


::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

::-moz-placeholder {
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

:-moz-placeholder {
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobil_show {
    display: none;
}

.top_title a.mobil_show {
    display: none;
}

.gift_reg_2 {
    display: none;
}

/*---------------------media------------------*/
@media (max-width: 1440px) {
    
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content h3 {
        font-size: 24px;
    }
    .body_about h2 {
        font-size: 30px;
    }
    .body_about h3 {
        font-size: 24px;
    }
    .footer_top h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nav_open {
        display: block !important;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav ul li, .nav ul li:first-child{
        padding: 0 0 20px 0;
        width: 100%;
    }
    
    .nav ul li a {
        padding-left: 0;
    }
    
    .lang {
        display: none;
    }
  
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content h3 {
        font-size: 18px;
    }
    
    .section_about {
        padding: 50px 0;
    }
    
    .body_about {
        flex-direction: column;
    }
    
    .body_about > div {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .body_about > div:last-child {
        margin-bottom: 0;
    }
    
    .body_about .about_pic {
        order: 1;
     }
    
    .footer_top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_top > div {
        text-align: center;
        margin: 0 auto
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }
    .hero-content h3 {
        font-size: 16px;
    }
    .gradient-text {
        font-size: 40px;
        display: block;
        margin-top: 10px;
    }
    .body_about h2 {
        font-size: 24px;
    }
    .body_about h3 {
        font-size: 20px;
    }
    .nav {
        width: 100%;
    }
}

