@charset "UTF-8";

@font-face {
	font-family: 'Playfair Display';
	src: url('/fonts/PlayfairDisplay/PlayfairDisplay-Black.eot');
	src: local('Playfair Display Black'), local('PlayfairDisplay-Black'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Black.eot?#iefix') format('embedded-opentype'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Black.woff') format('woff'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.eot');
	src: local('Playfair Display Regular'), local('PlayfairDisplay-Regular'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.woff') format('woff'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.eot');
	src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.eot?#iefix') format('embedded-opentype'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.woff') format('woff'),
		url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
    font-family: 'PT Serif';
    src: url('/fonts/PTSerif/PTSerif-Bold.eot');
    src: local('PT Serif Bold'), local('PTSerif-Bold'),
        url('/fonts/PTSerif/PTSerif-Bold.eot?#iefix') format('embedded-opentype'),
        url('/fonts/PTSerif/PTSerif-Bold.woff') format('woff'),
        url('/fonts/PTSerif/PTSerif-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PT Serif';
    src: url('/fonts/PTSerif/PTSerif-Regular.eot');
    src: local('PT Serif'), local('PTSerif-Regular'),
        url('/fonts/PTSerif/PTSerif-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/PTSerif/PTSerif-Regular.woff') format('woff'),
        url('/fonts/PTSerif/PTSerif-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PT Serif';
    src: url('/fonts/PTSerif/PTSerif-Italic.eot');
    src: local('PT Serif Italic'), local('PTSerif-Italic'),
        url('/fonts/PTSerif/PTSerif-Italic.eot?#iefix') format('embedded-opentype'),
        url('/fonts/PTSerif/PTSerif-Italic.woff') format('woff'),
        url('/fonts/PTSerif/PTSerif-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'PT Serif';
    src: url('/fonts/PTSerif/PTSerif-BoldItalic.eot');
    src: local('PT Serif Bold Italic'), local('PTSerif-BoldItalic'),
        url('/fonts/PTSerif/PTSerif-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('/fonts/PTSerif/PTSerif-BoldItalic.woff') format('woff'),
        url('/fonts/PTSerif/PTSerif-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Circe Regular';
    src: url('/fonts/Circe-Regular/Circe-Regular.eot');
    src: local('Circe Regular'), local('Circe-Regular'),
        url('/fonts/Circe-Regular/Circe-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/Circe-Regular/Circe-Regular.woff') format('woff'),
        url('/fonts/Circe-Regular/Circe-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

:root {
    --white: #ffffff;
    --main-text: #090909;
    --elements-dark: #323C44;
    --elements-light: #817F85;
    --elements-hover: #EEEAE7;
    --elements-hover2: #F8F3F0;
    --elements-hover_bright: #EFDACC;
    --background_main: #FAF8F1;    
    --background: #FCFBF8;
}

html {
    min-height: 100%;
}

body {
    --container-padding: 100px;

    position: relative;
    max-width: 100vw;
    min-height: 100vh;
    background: var(--background);
    font-family: 'Circe Regular', sans-serif;
    color: var(--main-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;

    /* For IOS */
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
}

* {
    box-sizing: border-box;
    outline: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    color: var(--main-text);
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1, .h1 {
    font-size: 64px;
    line-height: 0.9;
}

h2, .h2 {
    font-size: 40px;
    margin-bottom: 35px;
}

h3, .h3 {
    font-size: 30px;
}

h4, .h4 {
    font-size: 19px;
}

p {
    margin-bottom: 12px;
}

span {
    font-weight: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

a {
    color: var(--elements-dark);
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

a:hover {
    color: var(--elements-light);
}

.anim-link {
    position: relative;
    white-space: nowrap;
}

.anim-link:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: auto;
    right: 0;
    height: 2px;
    background: var(--elements-hover);
    width: 0;
    transition: width 0.3s ease-out;
    -webkit-transition: width 0.3s ease-out;
    -moz-transition: width 0.3s ease-out;
    -ms-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out;
}

.anim-link:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

/*  */
.animate__link,
.animate__back-link {
    display: inline-block;
    padding-right: 41px;
    color: var(--main-text);
    overflow: hidden;
}

.animate__back-link {
    padding-right: 0;
    padding-left: 60px;
    color: var(--elements-light);
}

.animate__link:hover,
.button__hover .animate__link {
    color: var(--main-text);
}

.animate__back-link:hover {
    color: var(--elements-light);
}

.animate__link span,
.animate__back-link span {
    display: inline-block;
    position: relative;
    font-weight: 700;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
}

.animate__link:hover span,
.button__hover .animate__link span {
    transform: translateX(41px);
    -webkit-transform: translateX(41px);
    -moz-transform: translateX(41px);
    -ms-transform: translateX(41px);
    -o-transform: translateX(41px);
}

.animate__back-link:hover span {
    transform: translateX(-60px);
    -webkit-transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    -o-transform: translateX(-60px);
}

.animate__link span:before,
.animate__link span:after,
.animate__back-link span:before,
.animate__back-link span:after {
    content: '';
    position: absolute;
    top: 60%;
    width: 27px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.animate__back-link span:before,
.animate__back-link span:after {
    width: 44px;
}

.animate__link span:before {
    left: -41px;
    height: 1px;
    background: var(--main-text);
}

.animate__back-link span:after {
    right: -60px;
    height: 1px;
    background: var(--elements-light);
}

.animate__link span:after {
    right: -41px;
    height: 8px;
    background: url('/images/svg/arrow.svg') no-repeat;
}

.animate__back-link span:before {
    left: -60px;
    height: 8px;
    background-image: url('/images/svg/arrow-back.svg');
}
/*  */

.content ul {
    margin-left: 20px;
}

.content li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 14px;
}

.content li:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--elements-light);
}

input,
select,
textarea {
    font-family: 'PT Serif', sans-serif;
    font-size: 16px;
    
    -webkit-appearance: none;
    -moz-appearance: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track-piece {
    background: var(--elements-hover);
}

::-webkit-scrollbar-thumb {
    background: #bdaba9;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(189, 171, 169, 0.7);    
}

/*  */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-size: 22px;
    background: var(--background_main);
    z-index: 1000;
}

.preloader__svg {
    position: relative;
    max-width: 90%;
}

.preloader svg {
    width: 360px;
    max-width: 50vw;
    height: 150px;
}

.inner-page .preloader__text {
    stroke-width: 10;
}

.main-page .preloader__text {
    stroke-dasharray: 0 2000;
}

.main-page .preloader__animate .preloader__text {
    animation: preloaderAnimateText 2.2s linear 0s both;
    -webkit-animation: preloaderAnimateText 2.2s linear 0s both;
}

@keyframes preloaderAnimateText {
    0% {
        stroke-dasharray: 0 2000;
    }
    85% {
        stroke-width: 1;
    }
    90% {
        stroke-dasharray: 1800 200;
    }
    95% {
        stroke-dasharray: 2000 0;
        stroke-width: 10;
    }
    100% {
        stroke-dasharray: 2000 0;
        stroke-width: 10;
    }
}

.main-page .preloader__moon,
.main-page .preloader__svg:after {
    opacity: 0;
    
}

.main-page .preloader__animate .preloader__moon,
.main-page .preloader__animate .preloader__svg:after {
    opacity: 1;
    transition: 0.5s ease-in-out 1.5s;
    -webkit-transition: 0.5s ease-in-out 1.5s;
    -moz-transition: 0.5s ease-in-out 1.5s;
    -ms-transition: 0.5s ease-in-out 1.5s;
    -o-transition: 0.5s ease-in-out 1.5s;
}
/*  */

.shadow {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s 0.3s, height 0s 0.8s;
    -webkit-transition: opacity 0.5s 0.3s, height 0s 0.8s;
    -moz-transition: opacity 0.5s 0.3s, height 0s 0.8s;
    -ms-transition: opacity 0.5s 0.3s, height 0s 0.8s;
    -o-transition: opacity 0.5s 0.3s, height 0s 0.8s;
}

.shadow.show {
    height: 100vh;
    /* opacity: 1; */
    transition: opacity 0.5s, height 0s;
    -webkit-transition: opacity 0.5s, height 0s;
    -moz-transition: opacity 0.5s, height 0s;
    -ms-transition: opacity 0.5s, height 0s;
    -o-transition: opacity 0.5s, height 0s;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: auto;
    padding: 0 var(--container-padding);
    z-index: 1;
}

.container_right {
    width: 100%;
    padding-left: var(--container-padding);
}

.menu {
    position: fixed;
    top: 0;
    left: -600px;
    display: flex;
    justify-content: center;
    width: 600px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0);
    z-index: 10;
    transition: 0.5s ease-in-out 0.2s, transform 0s;
    -webkit-transition: 0.5s ease-in-out 0.2s, transform 0s;
    -moz-transition: 0.5s ease-in-out 0.2s, transform 0s;
    -ms-transition: 0.5s ease-in-out 0.2s, transform 0s;
    -o-transition: 0.5s ease-in-out 0.2s, transform 0s;
}

.inner-page .menu {
    background: var(--background);
    box-shadow: 9px -5px 20px rgba(100, 79, 18, 0.05);
}

.menu.open {
    left: 0;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    transition: 0.6s ease-in-out;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -ms-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    z-index: 100;
}

.inner-page .menu.open {
    background: #ffffff;
}

.menu.close {
    cursor: pointer;
}

.menu p {
    margin-bottom: 0;
}

.menu__block-wrap {
    width: 100%;
    height: 100vh;
}

.menu__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10vh 0 20px 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.menu__logo {
    margin-bottom: 8vh;
}

.menu__logo img {
    width: 264px;
    height: 80px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    margin-bottom: 6vh;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--main-text);
    font-family: 'Circe Regular', sans-serif;
    font-size: 22px;
    line-height: 1.5;
}

.menu__item {
    margin-bottom: 32px;
    transition: 0.7s ease-in-out;
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -ms-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
}

.menu-item__animate {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.menu__list a {
    color: var(--main-text);    
}

.menu__list .anim-link:before {
    height: 4px;
}

.menu__insta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 21px;
    padding: 32px 0 42px 0;
    background: transparent;
    color: var(--elements-dark);
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.menu.open .menu__insta-block {
    background: var(--background_main);
}

.menu__insta-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 297px;
    margin-bottom: 20px;
}

.menu__insta-title {
    margin: 0 20px;
}

.menu__insta-dash {
    width: 100%;
    height: 1px;
    background: var(--elements-hover);
}

.menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__phone {
    margin-bottom: 4px;
}

.menu__copyright,
.menu__creator {
    font-size: 13px;
}

.menu__creator-link,
.menu__creator-link:hover {
    color: #E31E24;
}

.menu__creator .anim-link:before {
    bottom: 0;
    height: 1px;
    background: #E31E24;
}

/* Изменение меню при скролле страницы */
.menu__toggle {
    position: absolute;
    top: 0;
    right: -100px;
    display: flex;
    width: 100px;
    height: 100%;
    background: #fff;
    transition: 0.5s ease-in-out, height 0.5s ease-in-out 0.3s;
    -webkit-transition: 0.5s ease-in-out, height 0.5s ease-in-out 0.3s;
    -moz-transition: 0.5s ease-in-out, height 0.5s ease-in-out 0.3s;
    -ms-transition: 0.5s ease-in-out, height 0.5s ease-in-out 0.3s;
    -o-transition: 0.5s ease-in-out, height 0.5s ease-in-out 0.3s;
}

.inner-page:not(.contact-page) .menu__toggle {
    background: var(--background);
    box-shadow: 9px -5px 20px rgba(100, 79, 18, 0.05);
}

.menu.minify .menu__toggle {
    height: 100px;
    background: transparent;
    box-shadow: 9px -5px 20px rgba(100, 79, 18, 0);
}

.menu.open .menu__toggle {
    right: 30px;
    width: 0;
    background: #fff;
    z-index: 100;
}

.menu.open .menu-toggle__wrap,
.menu:not(.minify) .menu__toggle:hover .menu-toggle__wrap {
    filter: drop-shadow(22px 0px 20px rgba(0, 0, 0, 0.03));
    -webkit-filter: drop-shadow(22px 0px 20px rgba(0, 0, 0, 0.03));
}

.menu-toggle__wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 100px;
    margin: auto;
    transform: translateX(8px);
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu-toggle__svg {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.inner-page:not(.contact-page) .menu-toggle__svg path {
    fill: var(--background);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu.minify .menu-toggle__svg path {
    fill: transparent;
}

.inner-page:not(.contact-page) .menu.open .menu-toggle__svg path {
    fill: #fff;
}

.menu-toggle__lines-wrap {
    position: absolute;
    left: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu.minify .menu-toggle__lines-wrap {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.menu-toggle__lines {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-toggle__line {
    display: block;
    width: 20px;
    height: 4px;
    margin-bottom: 5px;
    background: var(--elements-dark);
    transition: 0.3s ease-in-out, height 0s 0.3s;
    -webkit-transition: 0.3s ease-in-out, height 0s 0.3s;
    -moz-transition: 0.3s ease-in-out, height 0s 0.3s;
    -ms-transition: 0.3s ease-in-out, height 0s 0.3s;
    -o-transition: 0.3s ease-in-out, height 0s 0.3s;
}

.menu.minify .menu-toggle__line {
    width: 18px;
    margin-bottom: 6px;
    transition: 0.3s ease-in-out, height 0s;
    -webkit-transition: 0.3s ease-in-out, height 0s;
    -moz-transition: 0.3s ease-in-out, height 0s;
    -ms-transition: 0.3s ease-in-out, height 0s;
    -o-transition: 0.3s ease-in-out, height 0s;
}

.menu-toggle__line:nth-child(1) {
    width: 40px;
}

.menu.open .menu-toggle__line:nth-child(1) {
    width: 20px;
}

.menu-toggle__line:nth-child(2) {
    width: 0;
    height: 0;
}

.menu.minify .menu-toggle__line:nth-child(2) {
    height: 4px;
}

.menu.minify .menu-toggle__wrap:hover .menu-toggle__line:nth-child(2) {
    width: 30px;
}

.menu-toggle__line:nth-child(3) {
    margin-bottom: 0;
}

.menu.minify .menu-toggle__line:nth-child(3) {
    margin-bottom: 0;
}

.menu.open .menu-toggle__line:nth-child(3) {
    width: 40px;
}

.menu.minify .menu-toggle__line:nth-child(1),
.menu.minify .menu-toggle__line:nth-child(3) {
    width: 30px;
}
/* Изменение меню при скролле страницы -end */

/* Шапка и футер для главной и контактов */
.main__header-wrap,
.main__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

header .container,
footer .container {
    max-width: 100%;
}

.animate-width__line {
    position: absolute;
    width: 100%;
    height: 100px;
    background: var(--white);
    transition: 0s 2.2s;
    -webkit-transition: 0s 2.2s;
    -moz-transition: 0s 2.2s;
    -ms-transition: 0s 2.2s;
    -o-transition: 0s 2.2s;
}

.animate-width__line-top {
    top: 0;
}

.animate-width__line-bottom {
    bottom: 0;
}

.main__header p {
    margin: 0;
}

.header__phone a {
    font-weight: 700;
}
/* --Шапка и футер для главной и контактов - end */


/* Контактная форма  */
.contact-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1320px;
    margin: auto;
}

.contact-form__title {
    padding: 75px 0;
    margin: 0;
}


.contact-form__title h2,
.contact-form__title .h2 {
    margin-bottom: 0;
}

.contact-form__wrap {
    position: relative;
    padding: 80px 22% 80px 3%;  
}

/* .contact-form__wrap:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 148%;
    height: 100%;
    border: 10px solid var(--elements-hover2);
    z-index: -1;
} */


.contact-form__body {
    max-width: 450px;
}

.contact-form__item {
    width: 450px;
}

.contact-form__input {
    position: relative;
    margin-bottom: 30px;
}

.contact-form__input:first-child {
    margin-bottom: 40px;
}

.contact-form__input:before,
.contact-form__input:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.contact-form__input:before {
    width: 0%;
    background-color: var(--main-text);
    z-index: 1;
}

.contact-form__input:hover:before,
.contact-form__input.focus:before {
    width: 100%;
}

.contact-form__input:after {
    width: 100%;
    background-color: #c4c4c4;
}

.contact-form__input input,
.contact-form__input button {
    position: relative;
    width: 100%;
    height: 45px;
    padding: 7px;
    border: none;
    background-color: transparent;
    z-index: 1;
}

.contact-form input:-webkit-autofill {
    box-shadow: inset 0 0 0 50px var(--background)!important;
    -webkit-box-shadow: inset 0 0 0 50px var(--background)!important;
}

.contact-form__input label {
    position: absolute;
    bottom: 10px;
    left: 7px;
    color: var(--elements-light);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.contact-form__input.focus label {
    bottom: 85%;
    font-size: 13px;
    cursor: default;
}

.error-text {
    position: absolute;
    display: block;
    margin-left: 10px;
    opacity: 0;
    font-size: 13px;
    color: #E31E24;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.field_large.has-error .error-text {
    opacity: 1;
}

.contact-form__button {
    position: relative;
    max-width: 226px;
    margin-left: auto;
    background-color: var(--elements-light);
    color: var(--white);
    line-height: 0;
    border-radius: 2px;
}

.contact-form button {
    position: relative;
    /* max-width: 212px; */
    width: 100%;
    height: 60px;
    padding: 0;
    border: none;
    background-color: var(--elements-light);
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    overflow: hidden;
    border-radius: 2px;
}

.contact-form button:before,
.contact-form button:after {
    position: absolute;
    left: 0;
    height: 100%;
}

.contact-form button:before {
    content: '';
    top: 0;
    display: block;
    width: 0;
    background-color: var(--elements-hover_bright);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}

.contact-form button:after {
    content: url(/images/svg/submit.svg);
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.contact-form button.form__btn.active,
.contact-form button.form__btn.sent {
    color: var(--elements-light);
}

.contact-form button.form__btn.clicked:before {
    width: 100%;
}

.contact-form button.form__btn.sent {
    background-color: var(--elements-hover_bright);
}

.contact-form button.form__btn.sent:after {
    top: 0;
}

.contact-form__button label,
.form-btn__content {
    position: absolute;
    top: 50%;
    left: 40px;
    width: calc(100% - 45px - 44px);
    overflow: hidden;
    text-align: left;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.form__btn.clicked .form-btn__content {
    left: 53px;
    width: auto;
}

.form__btn.sent .form-btn__content {
    top: -50%;
}

.contact-form button.form__btn.active .form-btn__content:before {
    width: 100%;
}

.contact-form__button .label__text {
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.contact-form__button .label__text:before,
.contact-form__button .label__text:after {
    content: '';
    position: absolute;
    bottom: calc(50% - 2px);
    display: block;
    width: 44px;
    margin: 0 10px;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.contact-form__button .label__text:before {
    right: 100%;
    height: 1px;
    background-color: var(--white);
}

.contact-form__button .label__text:after {
    left: 100%;
    height: 8px;
    background-image: url(/images/svg/arrow-form.svg);  
    background-repeat: no-repeat;
}

.contact-form__button .form__btn.clicked .label__text:before, 
.contact-form__button .form__btn.clicked .label__text:after {
    display: none;
}

.contact-form__button button:hover .label__text {
    margin-left: 54px;
}

.contact-form__button button.active:hover .label__text,
.contact-form__button button.sent:hover .label__text {
    margin-left: 0;
}

.contact-form__politic {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 13px;
    color: var(--elements-light);
}

.contact-form__politic a  {
    color: var(--main-text);
}

.contact-form__politic a:hover  {
    color: var(--elements-light);
}

.contact-form__svg {
    position: absolute;
    top: 50px;
    right: 50px;
}
/* Контактная форма - end */


/* Слайдер */
.one-slide .slider-button {
    display: none;
}

.swiper-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
    float: left;
    transition: opacity .6s ease, -webkit-transform .3s ease;
    transition: opacity .6s ease, transform .3s ease;
    transition: opacity .6s ease, transform .3s ease, -webkit-transform .3s ease;
}

.swiper-container.loading {
    opacity: 0;
    visibility: hidden;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide .slide-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.swiper-slide .entity-img {
    display: none;
}

.swiper-pagination__wrap {
    width: 30px;
    height: 30px;
    margin: 0 7px;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    width: auto;
    line-height: 30px;
}

.swiper-pagination__wrap svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

.swiper-arrow__next,
.swiper-arrow__prev {
    position: relative;
    display: flex;
    align-items: center;
    width: 50px;
    height: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.swiper-arrow__prev {
    display: none;
}

.swiper-arrow__next.swiper-button-disabled,
.swiper-arrow__prev.swiper-button-disabled {    
    cursor: default;
}

.swiper-arrow__next svg,
.swiper-arrow__prev svg {
    transition: 0.5s  ease-in-out;
    -webkit-transition: 0.5s  ease-in-out;
    -moz-transition: 0.5s  ease-in-out;
    -ms-transition: 0.5s  ease-in-out;
    -o-transition: 0.5s  ease-in-out;
}

.swiper-arrow__next.swiper-button-disabled svg,
.swiper-arrow__prev.swiper-button-disabled svg {    
    width: 0;
}

.swiper-arrow__next path,
.swiper-arrow__prev path {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.swiper-arrow__prev:hover {
    transform: translateX(-10px) rotate(180deg);
    -webkit-transform: translateX(-10px) rotate(180deg);
    -moz-transform: translateX(-10px) rotate(180deg);
    -ms-transform: translateX(-10px) rotate(180deg);
    -o-transform: translateX(-10px) rotate(180deg);
}

.swiper-arrow__next:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.swiper-arrow__prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
/* Слайдер - end */

footer {
    margin-top: auto;
}

.footer__social {
    display: flex;
    align-items: center;
    max-width: 10%;
}

.footer__instagram {
    display: inline-block;
    line-height: 1;
    cursor: pointer;
}

.footer__instagram path {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.footer__instagram:hover path {
    fill: var(--elements-dark);
}

/* Медиазапросы */
/* Медиазапросы для меню относительно высоты экрана */
@media (max-height: 1799px) {
    .menu {
        height: 100vh;
    }

    .menu__block {
        justify-content: space-between;
        height: 100vh;
        padding: 8vh 0 2vh 0;
    }
    .menu__logo {
        margin-bottom: 6vh;
    }

    .menu__list {
        margin-bottom: 3vh;
    }

    .menu__item {
        margin-bottom: 3vh;
    }

    .menu__insta-block {
        margin-bottom: 1vh;
        padding: 2vh 0 2vh 0;
    }
}

@media (max-height: 899px) {
    .menu__block {
        padding: 6vh 0 2vh 0;
    }

    .menu__logo {
        margin-bottom: 2vh;
    }

    .menu__logo img {
        width: 230px;
        height: 75px;
    }

    .menu__list {
        margin-bottom: 2vh;
        font-size: 20px;
    }

    .menu__item {
        margin-bottom: 2vh;
    }
}
/* Медиазапросы для меню относительно высоты экрана - end*/

@media (max-width: 1920px) {
    h1, .h1 {
        font-size: 56px;
    }
}

@media(max-width: 1599px) {
    .contact-form {
        width: 90%;
    }
}

@media(max-width: 1399px) {
    h2, .h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    .contact-form {
        width: 100%;
    }
    .contact-form__wrap {
        padding-right: 20%;
    }
    /* .contact-form__svg svg {
        max-height: 180px;
        max-width: 120px;
    } */
}

@media (max-width: 1360px) {
    h1, .h1 {
        font-size: 52px;
    }
}

@media (max-width: 1280px) {
    h1, .h1 {
        font-size: 42px;
    }
    .body {
        --container-padding: 80px;
    }
    /* .container {
        padding: 0 80px;
    }
    .container_right {
        padding-left: 80px;
    } */
    /* Меню */
    .menu {
        left: -480px;
        width: 480px;
    }

    .inner-page .menu.close {
        box-shadow: 9px -5px 20px rgba(100, 79, 18, 0.0);
    }

    .menu.mobile .menu__toggle,
    .menu-toggle__wrap {
        /* width: 80px;
        height: 80px; */
        /* width: calc(var(--container-padding) + 50px);
        height: calc(var(--container-padding) + 50px); */
        width: calc(var(--container-padding) + 0px);
        height: calc(var(--container-padding) + 0px);
    }
    
    .menu.mobile .menu__toggle {
        /* right: -80px; */
        /* right: calc((var(--container-padding) + 50px) * -1); */
        right: calc((var(--container-padding) + 0px) * -1);
        background: transparent;
    }

    .menu.open .menu__toggle {
        right: 0;
    }

    .menu-toggle__wrap {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    .menu-toggle__lines-wrap {
        left: auto;
        height: 24px;
    }

    .menu.mobile .menu-toggle__wrap:hover .menu-toggle__line:nth-child(2) {
        width: 18px;
    }

    .menu.mobile .menu-toggle__line {
        position: absolute;
    }

    .menu.mobile .menu-toggle__line:nth-child(1) {
        top: 0;
    }

    .menu.mobile .menu-toggle__line:nth-child(3) {
        bottom: 0;
    }

    .menu.mobile.open .menu-toggle__line:nth-child(1) {
        top: calc(50% - 2px);
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .menu.mobile.open .menu-toggle__wrap .menu-toggle__line:nth-child(2) {
        width: 0px;
    }

    .menu.mobile.open .menu-toggle__line:nth-child(3) {
        bottom: calc(50% - 2px);
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .menu-toggle__svg {
        display: none;
    }
    /* Меню - end */
    
    .main__header-wrap, 
    .main__footer,
    .animate-width__line {
        /* height: 80px; */
        height: var(--container-padding);
    }

    .main-header__logo {
        height: 60px;
    }
}

@media(max-width: 1199px) {
    .contact-form__wrap {
        padding: 60px 60px 60px 40px;
    }
}

@media (max-width: 1024px) {
    
    body.hidden {
        overflow: hidden;
    }
    
    .preloader .preloader__moon,
    .preloader .preloader__svg:after {
        opacity: 1;
        
    }
    .preloader .preloader__text {
        stroke-dasharray: 2000 0;
        stroke-width: 10;
    }
    .container_right {
        padding: 0;
    }

    .menu.mobile .menu__toggle,
    .menu-toggle__wrap {
        width: calc(var(--container-padding) + 50px);
        height: calc(var(--container-padding) + 50px);
    }
    
    .menu.mobile .menu__toggle {
        right: calc((var(--container-padding) + 50px) * -1);
    }
    /*  */
    .main,
    .contacts .content {
        /* padding-top: 80px; */
        padding-top: var(--container-padding);
    }
    .main__header,
    .animate-width__line-top {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
    }

    .main-header__logo {
        height: 55px;
    }
    /*  */
    .contact-form__wrap {
        padding: 60px 15% 60px 7%;
    }
    .contact-form__button {
        max-width: 200px;
    }
    .contact-form button {
        height: 50px;
    }
    .form-btn__content {
        width: calc(100% - 64px);
    }
    .contact-form__button button:hover .label__text {
        margin: 0;
    }
    .contact-form button.active .label__text:before,
    .contact-form button.active .label__text:after {
        opacity: 0;
    }

    /* Меню */
    html.menu_open {
        height: 100vh;
    }    

    .shadow.show {
        opacity: 1;
    }

    .menu {
        left: -90%;
        width: 90%;
    }

    .menu__block {
        height: 100vh;
        padding-bottom: 90px;
        overflow-y: auto;
    }

    .menu__block-wrap {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }

    /* .menu__toggle {
        width: 60px;
        height: 100px;
    }

    .menu__toggle svg {
        height: 100px;
    } */
    /* Меню - end */
}

@media (max-width: 990px) {
    .content ul {
        margin-left: 35px;
    }
    .content li {
        line-height: 1.6;
    }
    .contact-form__wrap {
        width: 67%;
        padding: 50px 12% 50px 4%;
    }
    .contact-form__item {
        width: 100%;
    }
    .contact-form__title {
        max-width: 250px;
        padding: 40px 0;
    }
    .contact-form__politic {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
        
        --container-padding: 20px;
    }

    h1, .h1 {
        font-size: 32px;
    }
    /*  */
    .menu-toggle__lines-wrap {
        height: 21px;
    }
    .menu-toggle__line,
    .menu.minify .menu-toggle__line:nth-child(2) {
        height: 3px;
    }
    .menu.mobile.open .menu-toggle__line:nth-child(1) {
        top: calc(50% - 1px);
    }
    .menu.minify .menu-toggle__line:nth-child(1), 
    .menu.minify .menu-toggle__line:nth-child(3) {
        width: 26px;
    }
    /*  */
    
    .main-header__logo {
        height: 40px;
    }

    .header__phone {
        display: none;
    }

    .main__header-wrap {
        justify-content: flex-end;
    }
    /*  */
    
    .contact-form {
        flex-direction: column;
        padding-top: 40px;
    }
    .contact-form__title {
        padding: 0;
        text-align: center;
    }
    .contact-form__title.h2 {
        margin: 0;
    }
    .contact-form__wrap {
        width: 100%;
        padding: 0px 70px 50px 70px;
    }
    .contact-form__body {
        margin: auto;
    }
    .contact-form__input {
        margin-bottom: 25px;
    }
    .contact-form__politic,
    .error-text {
        font-size: 11px;
    }

    /* Меню */
    .menu {
        left: -90%;
        width: 90%;
    }    

    .menu__block {
        padding: 17px 0 90px 0;
    }

    .menu__logo {
        margin-bottom: 30px;
    }

    .menu__logo img {
        height: 40px;
    }

    .menu__list {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .menu__item {
        margin-bottom: 15px;
    }

    .menu__insta-title {
        font-size: 13px;
    }

    .menu__copyright, 
    .menu__creator {
        font-size: 12px;
    }

    /* .menu__toggle {
        right: -60px;
        width: 60px;
    }

    .menu.minify .menu__toggle {
        height: 60px;
    }

    .menu-toggle__wrap {
        width: 60px;
        height: 80px;
    }

    .menu-toggle__svg {
        width: 60px;
        height: 80px;
    } */
    /* Меню - end */
}

@media (max-width: 669px) {
    h1, .h1 {
        font-size: 28px;
    }

    /* Меню */
    .menu__list {
        font-size: 15px;
    }

    .menu__insta-head {
        max-width: 230px;
    }

    .menu__insta-gallery iframe {
        max-width: 230px;
        max-height: 115px;
    }
    /* Меню - end */
}


@media (max-width: 575px) {
    .main__header-wrap, 
    .main__footer,
    .animate-width__line {
        height: 70px;
    }
    .main,
    .contacts .content {
        padding-top: 70px;
    }
    /*  */
    .contact-form__wrap {
        padding: 0 40px 50px 40px;
        font-size: 14px;
    }
    .contact-form__politic {
        margin-bottom: 20px;
    }
    /* Меню */
    /* .menu__toggle {
        width: 70px;
        height: 70px;
    } */

    .menu__logo {
        margin-bottom: 20px;
    }

    .menu__list {
        margin-bottom: 5px;
    }

    .menu__insta-block {
        margin-bottom: 2vh;
        padding: 1vh 0 1vh 0;
    }

    .menu.mobile .menu__toggle {
        right: -70px;
    }
    
    .menu.open .menu__toggle {
        right: 0;
    }

    .menu.mobile .menu__toggle, .menu-toggle__wrap {
        width: 70px;
        height: 70px;
    }

    .menu.mobile .menu__toggle, .menu-toggle__wrap {
        width: 70px;
        height: 70px;
    }
    /* Меню - end */
}

/* Анимации */
.wow {
    animation: 0.7s ease-in-out;
    -webkit-animation: 0.7s ease-in-out;
}

.animated {
   animation-delay: 0.3s;
   animation-fill-mode: both;
}

/*  */
.animateText__wrap {
   overflow: hidden;
}

.animateUpText.animated {
   animation-name: animateUpText;
}

@keyframes animateUpText {
   0% {
       opacity: 0;
       transform: translateY(110%);
       -webkit-transform: translateY(110%);
       -moz-transform: translateY(110%);
       -ms-transform: translateY(110%);
       -o-transform: translateY(110%);
    }
    50% {
        opacity: 1;        
    }
   100% {
       transform: translateY(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateRightText.animated {
   animation-name: animateRightText;
}

@keyframes animateRightText {
   0% {
       transform: translateX(-100%);
       -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
       -ms-transform: translateX(-100%);
       -o-transform: translateX(-100%);
}
   100% {
       transform: translateX(-0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateUp.animated {
   animation-name: animateUp;
}

@keyframes animateUp {
   0% {
       opacity: 0;
       transform: translateY(30px);
       -webkit-transform: translateY(30px);
       -moz-transform: translateY(30px);
       -ms-transform: translateY(30px);
       -o-transform: translateY(30px);
}
   100% {
       opacity: 1;
       transform: translateY(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateDown.animated {
   animation-name: animateDown;
}

@keyframes animateDown {
   0% {
       opacity: 0;
       transform: translateY(-100%);
       -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
       -ms-transform: translateY(-100%);
       -o-transform: translateY(-100%);
   }
   100% {
       opacity: 1;
       transform: translateY(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateLeft.animated {
   animation-name: animateLeft;
}

@keyframes animateLeft {
   0% {
       opacity: 0;
       transform: translateX(100%);
       -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
       -ms-transform: translateX(100%);
       -o-transform: translateX(100%);
   }
   100% {
       opacity: 1;
       transform: translateX(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateLeftHalf.animated {
   animation-name: animateLeftHalf;
}

@keyframes animateLeftHalf {
   0% {
       opacity: 0;
       transform: translateX(50px);
       -webkit-transform: translateX(50px);
       -moz-transform: translateX(50px);
       -ms-transform: translateX(50px);
       -o-transform: translateX(50px);
}
   100% {
       opacity: 1;
       transform: translateX(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateRight.animated {
   animation-name: animateRight;
}

@keyframes animateRight {
   0% {
       opacity: 0;
       transform: translateX(-100%);
       -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
       -ms-transform: translateX(-100%);
       -o-transform: translateX(-100%);
   }
   100% {
       opacity: 1;
       transform: translateX(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateRightHalf.animated {
   animation-name: animateRightHalf;
}

@keyframes animateRightHalf {
   0% {
       opacity: 0;
       transform: translateX(-50px);
       -webkit-transform: translateX(-50px);
       -moz-transform: translateX(-50px);
       -ms-transform: translateX(-50px);
       -o-transform: translateX(-50px);
}
   100% {
       opacity: 1;
       transform: translateX(0);
       -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
       -ms-transform: translateY(0);
       -o-transform: translateY(0);
   }
}

/*  */
.animateFadeIn.animated {
   animation-name: animateFadeIn;
}

@keyframes animateFadeIn {
   0% {
       opacity: 0;
}
   100% {
       opacity: 1;
}
}

/*  */
.animateScaleOut.animated {
   animation-name: animateScaleOut;
}

@keyframes animateScaleOut {
   0% {
       opacity: 0;
       transform: scale(1.5);
       -webkit-transform: scale(1.5);
       -moz-transform: scale(1.5);
       -ms-transform: scale(1.5);
       -o-transform: scale(1.5);
    }
    50% {
        
        opacity: 1;
    }
   100% {
       transform: scale(1);
       -webkit-transform: scale(1);
       -moz-transform: scale(1);
       -ms-transform: scale(1);
       -o-transform: scale(1);
    }
}

/*  */
.animateSvgIn.animated path {
    animation: 2s ease-in-out 0.8s both;
    -webkit-animation: 2s ease-in-out 0.8s both;
    animation-name: animateSvgIn;
}
 
@keyframes animateSvgIn {
    0% {
        stroke-dasharray: 0% 100%;
    }
    100% {
        stroke-dasharray: 100% 0%;
    }
}

/*  */
.animateWidthLeftRight.animated {
    animation-name: animateWidthLeftRight;
    animation-duration: 0.5s;
    transform-origin: 0 0;
}
 
@keyframes animateWidthLeftRight {
    0% {
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
}
    100% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
    }
}

/*  */
.animateHeightTopBottom.animated:before {
    animation: 0.8s ease-in-out 0.3s both;
    -webkit-animation: 0.8s ease-in-out 0.3s both;
    animation-name: animateHeightTopBottom;
    transform-origin: 0 0;
}
 
@keyframes animateHeightTopBottom {
    0% {
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
}
    100% {
        transform: scaleY(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
    }
}


/* Анимация контактной формы */
.animateContactForm.animated .contact-form__title .h2,
.animateContactForm.animated .contact-form__item,
.animateContactForm.animated .contact-form__politic {
    animation: animateRightHalf 0.6s ease-in-out both 0.3s;
    -webkit-animation: animateRightHalf 0.6s ease-in-out both 0.3s;
}

.animateContactForm.animated .contact-form__item:nth-child(1) {
    animation-delay: 0.5s;
}
.animateContactForm.animated .contact-form__item:nth-child(2) {
    animation-delay: 0.6s;
}
.animateContactForm.animated .contact-form__politic {
    animation-delay: 0.8s;
}
.animateContactForm.animated .contact-form__button {
    animation-delay: 1s;
}
/* Анимация контактной формы - end */

/* Настройки анимаций для отдельных элементов */
/*  */
.animateWidthToRight {
    animation-name: animateWidthToRight;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    animation-delay: 0.4s;
 }
 
 @keyframes animateWidthToRight {
    0% {
        opacity: 0;
        width: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        width: 100%;
    }
 }

.animateMenuLeft.animated {
    animation-name: animateMenuLeft;
}

@keyframes animateMenuLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
}
    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

/*  */
.animateMenuRightOut {
    animation-name: animateMenuRightOut;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

@keyframes animateMenuRightOut {
    0% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
    }
}

/*  */

.main__slider.animated,
.top__slider.animated {
    animation-delay: 0s;
    animation-duration: 2.8s;
    animation-timing-function: cubic-bezier(0.77, 0.1, 0.15, 1);
}

.menu.animated {
    animation-delay: 0.8s;
    animation-duration: 1.1s;
}

/* Страница контактов */
.contacts h1.animated, 
.contacts h1 .animateUpText.animated {
    animation-delay: 1s;
}
.contacts-text__block *.animated {
    animation-duration: 0.4s;
}
.contacts-text__phone .contacts-text__subtitle.animated {
    animation-delay: 1.3s;    
}
.contacts-text__phone .contacts-text__link.animated {
    animation-delay: 1.4s;    
}
.contacts-text__mail .contacts-text__subtitle.animated {
    animation-delay: 1.5s;    
}
.contacts-text__mail .contacts-text__link.animated {
    animation-delay: 1.6s;    
}
.contacts__form.animated {
    animation-delay: 1.7s;    
}
.contacts .animateContactForm.animated .contact-form__title .h2 {
    animation-delay: 1.8s;
}
.contacts .animateContactForm.animated .contact-form__item:nth-child(1) {
    animation-delay: 1.9s;
}
.contacts .animateContactForm.animated .contact-form__item:nth-child(2) {
    animation-delay: 2s;
}
.contacts .animateContactForm.animated .contact-form__politic {
    animation-delay: 2.1s;
}
.contacts .animateContactForm.animated .contact-form__button {
    animation-delay: 2.2s;
}




 /* Медиа для анимаций */
 @media(max-width: 767px) {
 
    .animateWidthToRight {
        animation-duration: 0.3s;
        animation-timing-function: ease-in-out;
        animation-delay: 0s;
    }
 
    @keyframes animateWidthToRight {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
 
    .animateRightText.animated,
    /* .animateUp.animated, */
    .animateDown.animated,
    .animateLeft.animated,
    .animateRight.animated,
    .animateRightHalf.animated,
    .animateScaleOut.animated,
    .animateWidthToRight {
        animation-name: animateFadeIn;
        animation-duration: 0.3s;
        animation-timing-function: ease-in-out;
        animation-delay: 0s;
    }

 }
 @media(max-width: 1199px) { 
    .content .wow {
        animation: 0.6s cubic-bezier(0.65, 0.05, 0.35, 1) 0s;
        -webkit-animation: 0.6s cubic-bezier(0.65, 0.05, 0.35, 1) 0s;
}
    .animateUp.animated {
        animation-name: animateUp!important;
        animation-duration: 0.6s!important;
        animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1)!important;
        animation-delay: 0s!important;
        transition: 0s 0s;
        -webkit-transition: 0s 0s;
        -moz-transition: 0s 0s;
        -ms-transition: 0s 0s;
        -o-transition: 0s 0s;
}
}