html, body {min-width: 320px; height: 100%; min-height: 100%;}
body {margin: 0; line-height: 1.32; color: #000; font-family: "Helvetica"; background: #FFF8F2}
a {color: inherit}
a img {border: none;}
* {outline: none;}
* {
    box-sizing: border-box;
}
*:before,
*:after {
    box-sizing: border-box;
}
input, button {
    -webkit-appearance: none;-moz-appearance: none;appearance: none;-webkit-box-shadow: none;
    box-shadow: none;
    padding: 0; margin: 0;
    border: none;
    outline: none;
    background: none;
    box-sizing: border-box;
}
.app{
    width: 100%; overflow: hidden;
}
.title {
    font-family: "BodoniC", serif;
    font-size: 64px; line-height: 1.09;
    color: #000;
}
.title--large{
    font-size: 130px;
    line-height: 0.95;
}
.box {
    max-width: 1680px;
    width: 100%;
    margin: auto;
    position: relative;
}

.title--green{
    color: #92C15C;
}
.title--pink{
    color: #F193A5;
}
.title--blue{
    color: #83BCE1;
}
.title--red{
    color: #B81917;
}
.title--orange {
    color: #D4850E
}

.header{

    top: 0;
    left: 0;
    height: 205px;
    background: #FFF8F2;
    display: -webkit-flex; display: flex;
    -webkit-align-items: center; align-items: center;
    -webkit-justify-content: space-between; justify-content: space-between;
    z-index: 100;
    width: 100%;
    transition: 0.3s ease;
    padding: 0;
    max-width: 1680px;
}
.header-wrap{
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 100;
    width: 100%;
    top: 0px;
    left: 0px;
}
.header_scroll {
    height: 115px !important;
    background: rgb(255,248,242, 0.8);
}
.header .menu-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.mobile{
    display: none;
}

.logo img {
    width: 210px;
    transition: 0.3s ease;
}
.header_scroll .logo img {
    width: 170px;
}
.logo-tvz{
    width: 106px;
    display: inline-block;
}
.logo-tvz img {
    width: 100%;
    max-height: 100%;
}

.btn {
    display: flex;
    margin: 40px 0 124px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 12.5px 36px;
    width: 220px;
    height: 46px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
}
.btn span {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.15;
}
a {
  text-decoration: none;
}
.btn .btn__arrow {
    background-size: contain;
    background: 50% 50% no-repeat;
    width: 31px;
    height: 16px;
    transition: transform .8s ease ;
}
.btn:hover .btn__arrow {
   transform: translateX(20px);
}
.menu{
    font-family: "Helvetica";
    display: -webkit-flex; display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 680px;
}
.menu a {
    font-size: 14px; line-height: 1.2;
    text-transform: uppercase;
    color: #333333;
    text-decoration: none;
}
.menu .selected {
    color: #D5850E;
    font-weight: 700;
}
.menu .logo-tvz,
.menu .logo {
    display: none;
}
.menu span {
    border-bottom: solid 1px transparent;
    transition: border-color 0.3s;
}

.no-touch .menu a:hover span,
.no-touch .menu a.active span
{
    border-color: rgba(0,0,0,0.7);
}

.footer {
    background: #D3D3D3;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 210px;
    padding-right: 100px;
    font-size: 16px;
    position: relative;
}
.footer .menu a:after{
    background: #000;
}
.footer__left{
    max-width: 410px;
    display: flex;
    align-items: center;
}
.footer .menu{
    margin-left: auto;
    display: flex;
    align-content: center;
    flex-direction: column;
    padding-right: 0;
    max-width: 400px;
}

.footer .menu a{
    font-size: 14px;
    line-height: 1.15;
}
.footer .menu a:not(:last-child){
    margin-bottom: 12px;
}
.footer .logo-tvz {
    min-width: 130px;
    height: 130px;
    margin: 0 auto;
}
.copy{
    margin-left: 40px;
}
.amio{
    font-size: 14px;
    font-family: "Helvetica";
    white-space: nowrap;
}
@media (max-width: 1739px) {
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 1680px) {
    .footer {
        font-size: calc(16 / 1680 * 100vw);
        padding-left: calc(210 / 1680 * 100vw);
        padding-right: calc(210 / 1680 * 100vw);
        height: calc(235 / 1680 * 100vw);
        -webkit-justify-content: space-between; justify-content: space-between;
    }
    .footer__left {
        max-width: calc(410 / 1680 * 100vw);
    }
    .footer .menu {
        max-width: calc(400 / 1680 * 100vw);
    }
    .footer .menu a {
        font-size: calc(14 / 1680 * 100vw);
    }
    .footer .menu a:not(:last-child){
        margin-bottom: calc(12 / 1680 * 100vw);
    }
    .logo-tvz{
        width: calc(106 / 1680 * 100vw);
    }
    .footer .logo-tvz {
        min-width: calc(130 / 1680 * 100vw);
        height: calc(130 / 1680 * 100vw);
    }
    
    .amio {
        font-size: calc(14 / 1680 * 100vw);;
    }
    .logo{
        min-width: calc(181 / 1680 * 100vw);
    }
    .header{
        height: calc(205 / 1680 * 100vw);
    }
    .header_scroll {
        height: calc(115 / 1680 * 100vw) !important;
    }
}
@media (max-width: 1300px) {
    .menu{
        max-width: calc(680 / 1680 * 100vw);
    }
    .menu a{
        font-size: calc(22 / 1680 * 100vw);
    }
}
.scroll-helper {
    position: fixed;
    bottom: 100px;
    left: 0;
}
.animate > .fromTop {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 1000ms, opacity 1000ms;
}
.animate > .fromBottom {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1000ms, opacity 1000ms;
}
.animate > .fromRight {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
    transition: transform 1000ms, opacity 1000ms;
}
.animate > .fromLeft {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 1000ms, opacity 1000ms;
}
.fadeIn {
    opacity: 0;
    transition: opacity 1000ms;
}
.animated > .fromTop,
.animated > .fromBottom,
.animated > .fromRight,
.animated > .fromLeft,
.animated > .fadeIn{
    transform: none;
    opacity: 1;
}
.animation-delay-0 {transition-delay: 0s !important;}
.animation-delay-2 {transition-delay: .2s !important;}
.animation-delay-4 {transition-delay: .4s !important;}
.animation-delay-6 {transition-delay: .6s !important;}
.animation-delay-8 {transition-delay: .8s !important;}
.animation-delay-10 {transition-delay: 1s !important;}
.app{
    animation: fadeIn 1s linear;
}
@keyframes fadeIn {
    from{opacity: 0;}
}
.txt{
}
.txt__text{
    font-family: "Helvetica";
}
.txt p {
}
.txt p:first-child{margin-top: 0;}
.txt p:last-child{margin-bottom: 0;}
.txt .title{
}
.index__block-main {
    position: relative;
    margin-top: 205px;
}
.index__block-main .box {
    padding-top: 109px;
    min-height: 710px;
    background: url("../img/bg-main-top.jpg") 50% 50% no-repeat;
    background-size: cover;
}
.index__block-main .lnk-wrap {
    position: absolute;
    left: 20%;
    bottom: 6%;
}
.index__block-main .lnk {
    background-color: #ffffff;
    padding: 0.84em 1.7em;
    line-height: 1.2;
    font-size: 18px;
    color: #9c4a30;
    transition: background-color 0.3s, color 0.3s;
}
.index__block-main .lnk:hover {
    background-color: #9c4a30;
    color: #ffffff;
}
.index__block-main .txt .title{
    color: #F2C94C;
    margin-left: 50%;
    margin-bottom: 0;
}
.index__block-main .txt {
    padding: 0;
}
.txt{
    font-size: 16px;
    line-height: 1.25;
}
.txt__text{
    max-width: 579px;
    margin-bottom: 20px ;
}
.txt p {
    margin: 40px 0;
}
.txt p:first-child{margin-top: 0;}
.txt p:last-child{margin-bottom: 0;}
.txt .title{
    margin-bottom: 37px;
}

.index__block1{
    position: relative;
}
.index__block1 .box {
    padding: 226px 80px 160px;
    position: relative;
    box-sizing: border-box;
}
.index__block1__pic1{
    position: absolute;
    width: 207px;
    height: 294px;
    right: 0;
    top: 66px;
    background-image: url("../img/crown.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.index__block1__pic2{
    position: absolute;
    width: 500px;
    height: 100px;
    left: 0; margin-left: 190px;
    top: 60px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
}
.index__block1__pic3{
    position: absolute;
    width: 750px;
    height: 597px;
    left: 0;
    top: 109px;
    background-image: url("../img/glass_n.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.index__block1__pic4 {
    position: absolute;
    width: 813px;
    height: 401px;
    left: 0;
    top: 371px;
    background: #E36B46;
    z-index: 1;
}
.index__block1__text{
    position: relative;
    left: 50%;
    width: 26%;
    box-sizing: border-box;
    margin-left: 142px;
}
.index__block1 .btn {
    margin: 47px 0 0;
}
.index__block2 .box {
    padding-top: 105px;
    box-sizing: border-box;
    position: relative;
}
.index__block2__pic1{
    position: absolute;
    left: 0;
    top: 784px;
    width: 186px;
    height: 369px;
    background-image: url("../img/graal.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.index__block2__pic2{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 638px;
    background-image: url("../img/bg-block-2.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.index__block2__pic3 {
    position: absolute;
    width: 480px;
    height: 547px;
    right: 0; margin-right: 207px;
    top: 586px;
    background-image: url("../img/graal2.jpeg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.index__block2__pic4 {
    position: absolute;
    width: 363px;
    height: 394px;
    right: 0; margin-right: 383px;
    top: 526px;
    background: #63463D;
}
.index__block2__pic5 {
    position: absolute;
    width: 630px;
    height: 100px;
    right: 0;
    top: 1060px;
    background: #E36B46;
    z-index: 1;
}
.index__block2__pic6, .index__block2__pic7 {
    display: none;
}
.index__block2__text{
    padding: 650px 27px 140px 310px;
    position: relative;
    width: 49%; min-height: 331px;
    left: 0%; margin-left: 0;
    box-sizing: border-box;

}

.index__block2__text .txt {
    position: relative;
    z-index: 2;
}
.index__block2__text .txt__text {
    max-width: 521px;
}

.index__block2__text .title{
    position: relative;
    margin-bottom: 26px;
}
    .index__block2 .btn {
        margin: 40px 0 0
    }

.index__block3 .box {
}
.index__block3__pic1{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 750px;
    background-image: url("../img/bg-block-3.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.index__block3__pic-red1{
    position: absolute; left: 50%; top: 0;
    width: 200px; height: 200px;
    margin-left: -800px;
    margin-top: 583px;
    background: #623E1E;
}
.index__block3__pic2{
    position: absolute;
    left: 0;
    background-image: url("../img/fructs.jpg");
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 590px; height: 489px;
    margin-left: 0;
    top: 690px;
    box-sizing: border-box;
    z-index: 2;

}
.index__block3__pic3{
    position: absolute;
    left: 0%;
    top: 0;
    width: 93px; height: 375px;
    margin-left: 537px;
    margin-top: 640px;
    background: #E36B46;
    z-index: 1;
}
.index__block3__pic-red3{
    position: absolute; left: 50%; top: 0;
    width: 25px; height: 570px;
    margin-left: -240px;
    margin-top: 370px;
    background: #623E1E;
}
.index__block3__text{
    position: relative;
    left: 50%;
    width: 33%;
    box-sizing: border-box;
    margin-left: -125px;
    padding: 800px 0 88px;
    min-height: 376px;
}
.index__block3__text .txt{
    padding-left: 0;
}

.index__block3__text .title{
    margin-bottom: 20px;
}
.index__block3__text .btn{
    margin-left: 0;
}
.index__block3 .btn {
    margin: 68px 0 0;
}
@media (max-width: 1739px) {
    .header {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 1679px) {
    .title{font-size: calc(64 / 1680 * 100vw);}
    .title--large{font-size: calc(130 / 1680 * 100vw);}
    .header {
        padding-left: calc(210 / 1680 * 100vw);
        padding-right: calc(210 / 1680 * 100vw);
        height: calc(205 / 1680 * 100vw);
    }
    .menu {
        width: calc(680 / 1680 * 100vw);
        padding-right: 0;
    }
    .logo img{
        width: calc(181 / 1680 * 100vw);
    }
    .header_scroll .logo img {
        width: calc(170 / 1680 * 100vw);
    }
    .txt {
        font-size: calc(16 / 1680 * 100vw);
    }
    .txt .title {
        margin-bottom:  calc(37 / 1680 * 100vw);
    }
    .txt p {
        margin: calc(40 / 1680 * 100vw) 0;
    }
    
    .btn {
        padding: calc(12.5 / 1680 * 100vw) calc(36 / 1680 * 100vw);
        width: calc(220 / 1680 * 100vw);
        height: calc(46 / 1680 * 100vw);
        margin: calc(40 / 1680 * 100vw) 0 calc(124 / 1680 * 100vw);
    }
    .btn span {
        font-size: calc(18 / 1680 * 100vw);
    }
    .btn .btn__arrow {
        width: calc(41 / 1680 * 100vw);
        height: calc(16 / 1680 * 100vw);
    }
    
    .index__block-main {
        margin-top: calc(205 / 1680 * 100vw);
    }
    .index__block-main .box {
        padding-top: calc(109 / 1680 * 100vw);
        min-height: calc(710 / 1680 * 100vw);
    }
    .index__block-main .lnk {
        font-size: calc(18 / 1680 * 100vw);
    }
    
    .index__block1 .box {
        padding: calc(226 / 1680 * 100vw) calc(80 / 1680 * 100vw) calc(160 / 1680 * 100vw);
    }
    .index__block1__pic1 {
        width: calc(207 / 1680 * 100vw);
        height: calc(294 / 1680 * 100vw);
        top: calc(66 / 1680 * 100vw);
    }
    
    .index__block1__pic2{
        width: calc(500 / 1680 * 100vw);
        height: calc(100 / 1680 * 100vw);
        margin-left: calc(190 / 1680 * 100vw);
        top: calc(60 / 1680 * 100vw);
    }
    .index__block1__pic3{
        width: calc(750 / 1680 * 100vw);
        height: calc(597 / 1680 * 100vw);
        top: calc(109 / 1680 * 100vw);
    }
    .index__block1__pic4{
        width: calc(813 / 1680 * 100vw);
        height: calc(401 / 1680 * 100vw);
        top: calc(371 / 1680 * 100vw);
    }
    .index__block1__text{
        margin-left: calc(142 / 1680 * 100vw);
    }
    
    .index__block1 .btn {
        margin: calc(47 / 1680 * 100vw) 0 0;
    }
    .index__block2 .box {
        padding-top: calc(105 / 1680 * 100vw);
    }
    .index__block2__pic1{
        top: calc(784 / 1680 * 100vw);
        width: calc(186 / 1680 * 100vw);
        height: calc(369 / 1680 * 100vw);
    }
    .index__block2__pic2{
        height: calc(638 / 1680 * 100vw);
    }
    .index__block2__pic3{
        width: calc(480 / 1680 * 100vw);
        height: calc(547 / 1680 * 100vw);
        margin-right: calc(207 / 1680 * 100vw);
        top: calc(586 / 1680 * 100vw);
    }
    .index__block2__pic4{
        width: calc(363 / 1680 * 100vw);
        height: calc(394 / 1680 * 100vw);
        margin-right: calc(383 / 1680 * 100vw);
        top: calc(526 / 1680 * 100vw);
    
    }
    .index__block2__pic5{
        width: calc(630 / 1680 * 100vw);
        height: calc(100 / 1680 * 100vw);
        top: calc(1060 / 1680 * 100vw);
    }
    .index__block2__text{
        padding: calc(650 / 1680 * 100vw) calc(27 / 1680 * 100vw) calc(140 / 1680 * 100vw) calc(310 / 1680 * 100vw);
        min-height: calc(331 / 1680 * 100vw);
    }
    .index__block2__text .title{
        margin-bottom: calc(26 / 1680 * 100vw);
    }
    .index__block2 .btn {
        margin: calc(40 / 1680 * 100vw) 0 0
    }
    .menu a {
        font-size: calc(14 / 1680 * 100vw);
    }
    .copy {
        margin-left: calc(40 / 1680 * 100vw);
    }
    .index__block3 .box {
        min-height: calc(750 / 1680 * 100vw);
    }
   
    .index__block3__pic1{
        height: calc(750 / 1680 * 100vw);
    }
    .index__block3__pic-red1{
        width: calc(200 / 1680 * 100vw);
        height: calc(200 / 1680 * 100vw);
        margin-left: calc(-800 / 1680 * 100vw);
        margin-top: calc(583 / 1680 * 100vw);
    }
    .index__block3__pic-gray{
        width: calc(650 / 1680 * 100vw);
        height: calc(820 / 1680 * 100vw);
        margin-left: calc(-760 / 1680 * 100vw);
        margin-top: calc(-75 / 1680 * 100vw);
    }
    .index__block3__pic2{
        width: calc(590 / 1680 * 100vw);
        height: calc(489 / 1680 * 100vw);
        top: calc(690 / 1680 * 100vw);

    }
    .index__block3__pic3{
        width: calc(93 / 1680 * 100vw);
        height: calc(375 / 1680 * 100vw);
        margin-left: calc(537 / 1680 * 100vw);
        margin-top: calc(640 / 1680 * 100vw);
    }
    .index__block3__pic-red3{
        width: calc(25 / 1680 * 100vw);
        height: calc(570 / 1680 * 100vw);
        margin-left: calc(-240 / 1680 * 100vw);
        margin-top: calc(370 / 1680 * 100vw);
    }
    .index__block3__text{
        margin-left: calc(-125 / 1680 * 100vw);
        padding: calc(800 / 1680 * 100vw) 0 calc(88 / 1680 * 100vw);
        min-height: calc(376 / 1680 * 100vw);
    }
    .index__block3__text .title{
        margin-bottom: calc(20 / 1680 * 100vw);
    }
    .index__block3 .btn {
        margin: calc(68/ 1680 * 100vw) 0 0;
    }
}
@media (max-width: 1100px) {
    .txt {
        font-size: calc(16 / 1680 * 100vw);
    }
    .footer {
        font-size: calc(22 / 1680 * 100vw);
    }
}

@media (max-width: 650px) {
    .mobile {
        display: block;
    }
    .index__block-main {
        margin-top: 0;
        overflow: hidden;
    }
    .index__block-main .box {
        background: url("../img/bg-main-top-mob.jpg") 50% 50% no-repeat;
        background-size: cover;
        min-height: 645px;
        padding: 121px 41px 61px 41px;
    }
    .index__block-main .lnk-wrap {
        left: 30px;
    }
    .index__block-main .lnk {
        font-size: 14px;
    }
    .txt {
        line-height: 18px;
    }
    .index__block-main .title {
        width: 200px;
        margin-left: 0 !important;
    }
    .title {
        font-size: 42px;
        line-height: 44px;
    }
    .txt__text {
        max-width: none;
    }
    .txt .title {
        margin-bottom: 0;
        margin-left: 0;
    }
    .txt p {
        font-size: 14px;
        line-height: 18px;
        margin: 41px 0;
    }
    .txt .btn {
        margin: 30px auto;
    }
    .btn {
        max-width: 144px;
        width: auto;
        min-width: 144px;
        height: 33px;
        padding: 9.5px 16px;
    }
    .btn span {
        font-size: 12px;
    }
    .btn .btn__arrow {
        width: 30px;
        height: 15px;
    }
    .index__block1 {
        padding-top: 20px;
        height: 787px;
    }
    .index__block1__pic1 {
        position: relative;
        opacity: 1 !important;
        width: 100%;
        background: url("../img/bg-block-2-mob.jpg") 50% 100% no-repeat;
        background-size: cover;
        height: 356px;
        z-index: 2;
    }
    .index__block1__pic2 {
        position: relative;
        display: block;
        width: 265px;
        height: 35px;
        top: -364px;
        left: auto;
        margin-left: auto;
        right: 0;
        z-index: 1;
        background-color: #9C4A30;
    }
    .index__block1__pic3 {
        position: relative;
        display: block;
        width: 361px;
        height: 158px;
        top: -150px;
        z-index: 1;
        background: none;
        background-color: #E36B46;
    }
    
    .index__block1__pic4
    {
        display: none;
    }
    .index__block1__text {
        position: relative !important;
        top: -115px;
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
    }
    .index__block1__text .txt{
    
    }
    .index__block1 .box {
        padding: 0;
    }
    .index__block1__text .title {
        position: absolute;
        top: 0;
        left: 30px;
    }
    .index__block1__text .txt {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .index__block2 {
        margin-top: 209px;
    }
    .index__block2__pic1 {
        display: none;
        width: 84px;
        height: 178px;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .index__block2__pic2 {
        display: none;
    }
    
    .index__block2__pic3 {
        position: relative;
        width: 100%;
        left: auto;
        height: 358px;
        top: 0;
        margin: 0 auto;
        background-position: 0 100%;
        background-size: cover;
    }
    .index__block2__pic4 {
        width: 281px;
        height: 296px;
        top: -27px;
        left: 0;
    }
    .index__block2__pic5 {
       width: 317px;
        height: 75px;
        top: 320px;
    }
    .index__block2__text {
        margin-top: 62px;
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
    }
    .index__block2 .box {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }
    
    .index__block2__text .title {
        position: absolute;
        top: -587px;
        left: 41px;
    }
    .index__block2__text .txt {
        transform: none !important;
        opacity: 1 !important;
    }
    .index__block3 {
        margin-top: 131px;
    }
    .index__block3__pic1 {
        position: relative;
        min-height: 267px;
        background-position: 50% 100%;
        z-index: 2;
    }
    .index__block3__pic2 {
        display: none;
        position: relative;
        width: 315px;
        max-width: calc(100vw - 40px);
        left: auto;
        height: 262px;
        top: 381px;
        margin: 0 auto;
        background-size: cover;
    }
    .index__block3__pic3 {
        position: relative;
        width: 317px;
        margin-left: 0;
        left: 0;
        height: 75px;
        top: -38px;
        background-size: cover;
        margin-top: 0;
        z-index: 1;
    }
    .index__block3__text {
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
    }
    .index__block3__text .txt{
        margin-top: 20px;
    }
    .index__block3 .box {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .index__block3__text .title {
        position: absolute;
        top: -63px;
        left: 41px;
    }
    .index__block3__text .txt {
        transform: none !important;
        opacity: 1 !important;
        padding: 0 39px 0 41px;
    
    }
    .footer {
        font-size: 18px;
        line-height: 1.2;
        height: auto;
        background-color: #FFF8F2;
        -webkit-flex-direction: column; flex-direction: column;
        -webkit-justify-content: flex-start; justify-content: flex-start;
        -webkit-align-items: flex-start; align-items: flex-start;
        text-align: center;
        padding: 90px 30px 56px 30px;
    }
    .footer__left,
    .amio {
        transform: none !important;
        opacity: 1 !important;
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        display: block;
        font-size: 14px;
        -webkit-order: 0; order: 0;
    }
    .footer .menu {
        display: none;
    }
    .footer__left {
       -webkit-order: 1;  order: 1;
        width: 100%;
    }
    .amio {
       -webkit-order: 2;  order: 2;
        width: 100%;
        margin-top: 20px;
    }
    .footer .logo-tvz {
        min-width: 136px;
        height: 136px;
        margin: 0 auto 54px auto;
    }
    .copy {
        margin: 0 auto;
        padding: 0 10px;
        width: 230px;
    
    }
    .copy span {
        display: block;
    }
    .header {
        position: relative;
        padding-left: 30px;
        padding-right: 30px;
        height: 100px;
        display: -webkit-flex; display: flex;
        -webkit-align-items: center; align-items: center;
        -webkit-justify-content: space-between; justify-content: space-between;
    }
    .header_scroll {
        height: 100px !important;
    }
    .header .logo-tvz {
       display: none;
    }
    .header .logo {
        -webkit-order: 1;  order: 1;
        width: 124px;
        transform: none !important;
        opacity: 1 !important;
    }
    .header .logo img{
        width: 124px;
    }
    .header .menu {
        position: fixed;
        max-width: 100vw;
        width: 100vw;
        height: 100%;
        right: 0;
        top: 0;
        display: block;
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.3s;
        background: rgb(0,0,0, 0.35);
    }
    .header .menu-content {
        position: relative;
        max-width: 70vw;
        margin-left: auto;
        width: 70vw;
        height: 100%;
        background: #FFFFFF;
        display: block;
        padding: 10% 30px 0;
        z-index: 100;
        transition: transform 0.3s;
    }
    .menu a {
        text-align: center;
        width: 155px;
        font-size: 16px;
        line-height: 18px;
        display: block;
        margin: 0 auto 50px;
    }
    .menu a:last-child {
        margin-bottom: 0;
        margin-top: 70px;
    }
    .open-menu .header .menu {
        transform: none;
        opacity: 1;
    }
    .menu-close {
        position: absolute;
        top: 39px;
        left: 18px;
        width: 24px;
        height: 24px;
    }
    .menu-close .close-el {
        position: fixed;
        z-index: 100;
        width: 24px;
        height: 4px;
        border-radius: 5px;
        background-color: #63463D;
    }
    .menu-close .close-el_first {
        transform: rotate(45deg);
    }
    .menu-close .close-el_second {
        transform: rotate(-45deg);
    }
    .menu .logo {
        display: block;
        width: 184px;
        margin: 0 auto 102px;
        height: 108px;
    }
    .menu .logo img{
        width: 184px;
        height: 108px;
        margin: 0 auto 102px;
    }
    .menu .logo-tvz {
        margin: 0 auto;
        display: block;
        width: 80px;
        height: 80px;
    }
    
    .menu-burger {
        position: fixed;
        z-index: 111;
        right: 71px;
        width: 55px;
        height: 30px;
        -webkit-order: 2;  order: 2;
        display: -webkit-flex; display: flex;
        -webkit-align-items: center; align-items: center;
        -webkit-justify-content: center; justify-content: center;
    }
    .menu-burger span {
        width: 100%;
        height: 5px;
        background: #63463D;
        border-radius: 2px;
        position: relative;
    }
    .menu-burger span:before,
    .menu-burger span:after
    {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        height: 5px;
        background: #63463D;
        border-radius: 2px;
        top: -10px;
        transform-origin: center center;
    }
    .menu-burger span:after {
        width: 37px;
        top: 10px;
    }

    .menu-burger.active span,
    .menu-burger.active span:before,
    .menu-burger.active span:after
    {
        background: transparent;
    }
}
@media (max-width: 374px) {
    .title {
        font-size: 35px;
    }
    .index__block3__text .title,
    .index__block2__text .title {
        font-size: 35px;
    }
}

@media (max-height: 350px) {
    .menu a {
        margin-bottom: 30px;
    }
}

.st-margin{
    margin-left: -4px;
}

@media (max-width: 1200px) {
    .st-margin{
        margin-left: -3px;
    }
}

@media (max-width: 1000px) {
    .st-margin{
        margin-left: -2px;
    }
}

@media (max-width: 650px) {
    .st-margin{
        margin-left: -4px;
    }
}

.philosophy .logo:hover,
.gastronomy .logo:hover,
.cognac .logo:hover {
   opacity: 0.8;
    cursor: pointer;
}
/*Philosophy*/

.philosophy__block-main {
    position: relative;
}

.philosophy__block-main .box {
    min-height: 710px;
    background: url("../img/bg-philosophy-top.jpg") 50% 0 no-repeat;
    background-size: cover;
}
.philosophy__block1 {
    position: relative;
}
.philosophy__block1 .box {
    padding-top: 90px;
    padding-left: 80px;
    padding-right: 80px;
}
.philosophy__block1__pic1 {
    position: absolute;
    width: 510px;
    height: 252px;
    left: 0; margin-left: 90px;
    top: -60px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
}
.philosophy__block1__pic2 {
    position: absolute;
    width: 480px;
    height: 471px;
    left: 210px;
    top: -30px;
    background-image: url("../img/crown.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block1__pic3 {
    position: absolute;
    width: 202px;
    height: 371px;
    right: 0;
    top: 0;
    background-image: url("../img/philosophy-vector-1.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block1__pic4 {
    position: absolute;
    width: 95px;
    height: 417px;
    left: 0; margin-left: 615px;
    top: 80px;
    background: #E36B46;
}


.philosophy__block1__text{
    position: relative;
    left: 50%;
    margin-left: 50px;
    width: 30%;
    box-sizing: border-box;
}

.philosophy__block2 {
    position: relative;
}
.philosophy__block2 .box {
    padding-top: 120px;
    padding-left: 80px;
    padding-right: 80px;
}
.philosophy__block2__pic1 {
    position: absolute;
    width: 210px;
    height: 648px;
    left: 0;
    top: 68px;
    background-image: url("../img/philosophy-vector-2.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block2__pic2 {
    position: absolute;
    width: 789px;
    height: 542px;
    right: 0;
    top: 68px;
    background-image: url("../img/philosophy-block-2.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block2__pic3 {
    position: absolute;
    width: 630px;
    height: 394px;
    right: 0;
    margin-right: 210px;
    top: 312px;
    background: #63463D;
}
.philosophy__block2__text{
    position: relative;
    left: 0;
    width: 24%;
    max-width: 360px;
    box-sizing: border-box;
    margin-left: 250px;
}
.philosophy__block2 .txt__text {
    margin-bottom: 0;
}

.philosophy__block3 {
    position: relative;
}
.philosophy__block3 .box {
    min-height: 822px;
    padding-top: 200px;
    padding-left: 80px;
    padding-right: 80px;
}
.philosophy__block3__pic1 {
    position: absolute;
    width: 695px;
    height: 608px;
    left: 0;
    top: 100px;
    background-image: url("../img/philosophy-block-3.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block3__pic2 {
    position: absolute;
    width: 186px;
    height: 470px;
    right: 0;
    top: 340px;
    background-image: url("../img/philosophy-vector-3.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.philosophy__block3__pic3 {
    position: absolute;
    width: 881px;
    height: 190px;
    left: 0;
    top: 570px;
    margin-left: 410px;
    background: #E36B46;
}

.philosophy__block3__text{
    position: relative;
    left: 50%;
    margin-left: 50px;
    width: 31%;
    box-sizing: border-box;
}

@media (max-width: 1679px) {
    .philosophy__block-main .box {
        min-height: calc(710 / 1680 * 100vw);
    }
    
    .philosophy__block1 .box {
        padding: calc(90 / 1680 * 100vw) calc(80 / 1680 * 100vw) 0;
    }
    
    .philosophy__block1__pic1 {
        width: calc(510 / 1680 * 100vw);
        height: calc(252 / 1680 * 100vw);
        margin-left: calc(90 / 1680 * 100vw);
        top: calc(-60 / 1680 * 100vw);
    }
    
    .philosophy__block1__pic2 {
        width: calc(480 / 1680 * 100vw);
        height: calc(471 / 1680 * 100vw);
        left: calc(210 / 1680 * 100vw);
        top: calc(-30 / 1680 * 100vw);
    }
    
    .philosophy__block1__pic3 {
        width: calc(202 / 1680 * 100vw);
        height: calc(371 / 1680 * 100vw);
    }
    
    .philosophy__block1__pic4 {
        width: calc(95 / 1680 * 100vw);
        height: calc(417 / 1680 * 100vw);
        margin-left: calc(615 / 1680 * 100vw);
        top: calc(80 / 1680 * 100vw);
    }
    
    .philosophy__block1__text {
        margin-left: calc(50 / 1680 * 100vw);
    }
    
    .philosophy__block2 .box {
        padding: calc(120 / 1680 * 100vw) calc(80 / 1680 * 100vw) 0;
    }
    
    .philosophy__block2__pic1 {
        width: calc(210 / 1680 * 100vw);
        height: calc(648 / 1680 * 100vw);
        top: calc(68 / 1680 * 100vw);
    }
    
    .philosophy__block2__pic2 {
        width: calc(789 / 1680 * 100vw);
        height: calc(542 / 1680 * 100vw);
        top: calc(68 / 1680 * 100vw);
    }
    
    .philosophy__block2__pic3 {
        width: calc(630 / 1680 * 100vw);
        height: calc(394 / 1680 * 100vw);
        top: calc(312 / 1680 * 100vw);
        margin-right: calc(210 / 1680 * 100vw);
    }
    
    .philosophy__block2__text {
        margin-left: calc(250 / 1680 * 100vw);
        max-width: calc(360 / 1680 * 100vw);
    }
    
    .philosophy__block3 .box {
        padding: calc(200 / 1680 * 100vw) calc(80 / 1680 * 100vw) 0;
        min-height: calc(822 / 1680 * 100vw);
    }
    
    .philosophy__block3__pic1 {
        width: calc(695 / 1680 * 100vw);
        height: calc(608 / 1680 * 100vw);
        top: calc(100 / 1680 * 100vw);
    }
    
    .philosophy__block3__pic2 {
        width: calc(186 / 1680 * 100vw);
        height: calc(470 / 1680 * 100vw);
        top: calc(340 / 1680 * 100vw);
    }
    
    .philosophy__block3__pic3 {
        width: calc(881 / 1680 * 100vw);
        height: calc(190 / 1680 * 100vw);
        top: calc(570 / 1680 * 100vw);
        margin-left: calc(410 / 1680 * 100vw);
    }
    
    .philosophy__block3__text {
        left: calc(50% / 1680 * 100vw);
        margin-left: calc(50 / 1680 * 100vw);
    }
}


@media (max-width: 650px) {
    .philosophy__block-main {
        margin-top: calc(210 / 1680 * 100vw);
    }
    .philosophy__block-main .box {
        background-position: 48% 0;
        min-height: 559px !important;
        margin-top: 130px;
    }

    .philosophy__block1__text .txt,
    .philosophy__block2__text .txt,
    .philosophy__block3__text .txt
    {
        transform: none !important;
        opacity: 1 !important;
    }
   
    .philosophy__block1 .box {
        display: flex;
        flex-direction: column;
        padding: 0;
        min-height: 100px;
    }
    .philosophy__block1__pic1 {
        position: relative;
       
        width: 265px;
        height: 99px;
        margin-left: 0;
        left: auto;
        right: 0;
        top: 40px;
    }
    .philosophy__block1__pic2 {
      
        position: relative;
        width: 340px;
        left: auto;
        height: 392px;
        margin: 0 auto 0;
        background-size: cover;
    }
    .philosophy__block1__pic3 {
        display: none;
    }
    .philosophy__block1__pic4 {
        position: relative;
       
        width: 275px;
        height: 180px;
        left: auto;
        right: 0;
        margin-top: 0px;
        margin-left: auto;
        top: -151px;
    }
    
    .philosophy__block1__text{
        order: -1;
        padding: 0;
        margin-left: 0;
        margin-top: 41px;
        width: auto;
        left: 0;
        position: initial;
    }
    .philosophy__block1__text .title {
        position: absolute;
        top: -662px;
        left: 41px;
        z-index: 10;
    }
    .philosophy__block2 {
        margin-top: -150px;
    }
    .philosophy__block2 .box {
        padding: 0;
    }
    .philosophy__block2__pic1 {
        display: none;
        width: 125px;
        height: 394px;
        left: 0;
        top: 332px;
        z-index: -1 !important;
    }
    .philosophy__block2__pic2 {
        display: none;
    }
    .philosophy__block2__pic3 {
        display: none;
    
        width: 292px;
        height: 147px;
        left: 50%;
        top: 95px;
        margin-left: -188px;
    }
    .philosophy__block2__text{
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-top: 33px;
        width: auto;
        left: 0;
        position: initial;
    }
    .philosophy__block2__text .txt {
        padding: 0;
    }
    .philosophy__text_first {
        padding: 0 40px;
        margin-bottom: 47px !important;
    }
    .philosophy__block2__text .txt:nth-child(1)  {
        /*padding: 0;*/
    }
    
    .philosophy__block2__text .txt__text div {
        background: url("../img/philosophy-text-bg-mob.jpg") 50% 100% no-repeat;
        background-size: cover;
        padding: 31px 37px 0;
        color: white;
        width: 100%;
        height: 683px;
        
    }
    .philosophy__block3 .box {
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
        position: relative;
    }
    .philosophy__block3__pic1 {
        background: url("../img/philosophy-block-2.jpg") 50% 100% no-repeat;
        position: relative;
        width: 341px;
        height: 360px;
        margin: 30px auto 0;
        background-size: cover;
    }
    .philosophy__block3__pic2 {
        display: none;
    }
    .philosophy__block3__pic3 {
        width: 317px;
        height: 75px;
        top: -305px;
        margin-left: 0;
        z-index: -1;
        margin-top: -50px;
        position: relative;
    }
    
    .philosophy__block3__text{
        padding: 0;
        margin-left: 0;
        margin-top: 32px;
        width: auto;
        left: 0;
        position: initial;
    }
    .philosophy__block3__text txt__text {
        margin-bottom: 0;
    }
    .txt {
        font-size: 14px;
        line-height: 18px;
        padding: 0 39px 0 41px;
    }
    .title {
        font-size: 42px;
    }
    .txt__text {
        max-width: none;
    }
    .txt p {
        margin: 45px 0;
    }
}


/*Cognac*/

.cognac__block-main {
    position: relative;
    /*margin-top: 205px;*/
}

.cognac__block-main .box {
    background: url("../img/bg-cognac.jpg") 50% 50% no-repeat;
    background-size: cover;
}
.cognac__block-main .title {
    display: none;
}
.cognac__block-main .box {
    min-height: 710px;
    padding: 494px 220px 0;
}
.cognac__block1 {
    position: relative;
}
.cognac__block1 .box {
    padding: 0 80px;
    min-height: 590px;
}
.cognac__block1__pic1{
    position: absolute;
    width: 375px;
    height: 234px;
    right: 0;
    top: 60px;
    background-image: url("../img/cognac-vecto-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.cognac__block1__pic2{
    position: absolute;
    width: 527px;
    height: 327px;
    left: 0; margin-left: 210px;
    top: -50px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
}
.cognac__block1__pic3{
    position: absolute;
    width: 710px;
    height: 540px;
    left: 0;
    top: 50px;
    background-image: url("../img/cognac-pic1.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.cognac__block1__pic4 {
    position: absolute;
    width: 620px;
    height: 230px;
    left: 0;
    top: 450px;
    background: #E36B46;
    z-index: 1;
}
.cognac__block1__text{
    position: relative;
    padding-top: 40px;
    left: 50%;
    margin-left: 50px;
    width: 31%;
    box-sizing: border-box;
}

.cognac__block2 {
    position: relative;
}
.cognac__block2 .box {
    padding-left: 80px;
    padding-right: 80px;
    min-height: 648px;
}
.cognac__block2__pic1 {
    position: absolute;
    width: 190px;
    height: 261px;
    left: 0;
    top: 148px;
    background-image: url("../img/cognac-vecto-2.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.cognac__block2__pic2 {
    position: absolute;
    width: 220px;
    height: 350px;
    right: 0;
    margin-right: 690px;
    top: 90px;
    background: #63463D;
    margin-left: -70px;
}
.cognac__block2__pic3 {
    position: absolute;
    width: 580px;
    height: 370px;
    margin-right: 210px;
    right: 0;
    top: 0;
    background-image: url("../img/cognac-pic-2.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.cognac__block2__text{
    padding-top: 170px;
    position: relative;
    left: 310px;
    width: 19%;
    box-sizing: border-box;
    margin-left: -93px;
}

@media (max-width: 1679px) {
    .cognac__block-main {
        /*margin-top: calc(205 / 1680 * 100vw);*/
    }
    .cognac__block-main .box {
        min-height: calc(710 / 1680 * 100vw);
        padding: calc(494 / 1680 * 100vw) calc(220 / 1680 * 100vw) 0;
    }
    
    .cognac__block1 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(590 / 1680 * 100vw);
    }
    .cognac__block1__pic1{
        width: calc(375 / 1680 * 100vw);
        height: calc(234 / 1680 * 100vw);
        top: calc(60 / 1680 * 100vw);
    }
    .cognac__block1__pic2{
        width: calc(527 / 1680 * 100vw);
        height: calc(327 / 1680 * 100vw);
        top: calc(-50 / 1680 * 100vw);
        margin-left: calc(210 / 1680 * 100vw);
    }
    .cognac__block1__pic3{
        width: calc(710 / 1680 * 100vw);
        height: calc(540 / 1680 * 100vw);
        top: calc(50 / 1680 * 100vw);
    }
    .cognac__block1__pic4 {
        width: calc(620 / 1680 * 100vw);
        height: calc(230 / 1680 * 100vw);
        top: calc(450 / 1680 * 100vw);
    }
    .cognac__block1__text{
        padding-top: calc(40 / 1680 * 100vw);
        margin-left: calc(50 / 1680 * 100vw);
    }
    
    .cognac__block2 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(648 / 1680 * 100vw);
    }
    .cognac__block2__pic1 {
        width: calc(190 / 1680 * 100vw);
        height: calc(261 / 1680 * 100vw);
        top: calc(148 / 1680 * 100vw);
    }
    .cognac__block2__pic2 {
        width: calc(220 / 1680 * 100vw);
        height: calc(350 / 1680 * 100vw);
        top: calc(90 / 1680 * 100vw);
        margin-right: calc(690 / 1680 * 100vw);
    }
    .cognac__block2__pic3 {
        width: calc(580 / 1680 * 100vw);
        height: calc(370 / 1680 * 100vw);
        margin-right: calc(210 / 1680 * 100vw);
    }
    
    .cognac__block2__text{
        padding-top: calc(170 / 1680 * 100vw);
        left: calc(310 / 1680 * 100vw);
        margin-left: calc(-93 / 1680 * 100vw);
    }
}

@media (max-width: 650px) {
    .cognac .footer {
        padding-top: 54px!important;
    }
    .cognac__block1__text .txt,
    .cognac__block2__text .txt
    {
        transform: none !important;
        opacity: 1 !important;
    }
    .cognac__block-main {
        /*margin-top: 0;*/
    }
    .cognac__block-main .box {
        min-height: 678px;
        background: url("../img/bg-cognac-mob.jpg") 50% 50% no-repeat;
        background-size: cover;
        padding: 0;
    }
    .cognac__block-main .title {
        display: block;
        padding: 48px 0 0 25px;
        font-size: 42px;
    }
    .cognac__block-main .txt {
        padding: 0;
    }
    .cognac__block1 .box {
        padding: 0;
    }
    .cognac__block1 .title,
    .cognac__block1__pic1,
    .cognac__block1__pic2,
    .cognac__block1__pic3,
    .cognac__block1__pic4
    {
        display: none
    }
    .cognac__block1 .txt {
        padding: 0;
    }
    .cognac__block1 .txt__text {
        background: url("../img/cognacy-text-bg-mob.jpg")50% 100% no-repeat;
        color: white;
        width: 100%;
        height: 812px;
        background-size: cover;
        padding: 34px 35px;
    }
    .cognac__block1__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
    }
    
    .cognac__block2 {
        position: relative;
    }
    .cognac__block2 .box {
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .cognac__block2__pic1{
        background: #E36B46;
        width: 183px;
        height: 127px;
        left: auto;
        right: 0;
        top: 698px;
        z-index: -1 !important;
    }
    .cognac__block2__pic2{
        width: 265px;
        position: relative;
        height: 99px;
        left: 0;
        top: -499px;
        margin-top: -54px;
        margin-left: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;;
    }
    .cognac__block2__pic3{
        position: relative;
        width: 100%;
        height: 492px;
        left: auto;
        top: 0;
        margin: 75px auto 0;
        background-size: cover;
        right: auto;
    }
    .cognac__block2__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 40px;
    }
}

/*Gastronomy*/
.gastronomy__pic {
    position: absolute;
    background-position: 0 0;
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-size: cover;
}
.gastronomy__block-main {
    position: relative;
}
.gastronomy__block-main .box {
    min-height: 710px;
    background: url("../img/bg-gastonomy.jpg") 50% 50% no-repeat;
    background-size: cover;
}
.gastronomy__block1 .txt p,
.gastronomy__block2 .txt p,
.gastronomy__block3 .txt p,
.gastronomy__block4 .txt p,
.gastronomy__block5 .txt p,
.gastronomy__block6 .txt p {
    margin: 24px 0;
}
.gastronomy__block1 {
    position: relative;
}
.gastronomy__block1 .box {
    padding: 0 80px;
    min-height: 470px;
}
.gastronomy__block1__pic1{
    width: 276px;
    height: 297px;
    right: 0;
    top: 0;
    background-image: url("../img/gastonomy-vector1.png");
}
.gastronomy__block1__pic2{
    width: 620px;
    height: 230px;
    left: 0;
    top: 240px;
    background: #E36B46;
}
.gastronomy__block1__pic3{
    width: 569px;
    height: 391px;
    left: 170px;
    top: 40px;
    background-image: url("../img/gastonomy-pic1.jpg");
    z-index: 2;
}
.gastronomy__block1__pic4 {
    width: 380px;
    height: 252px;
    left: 410px;
    top: -32px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
    z-index: 1;
}
.gastronomy__block1__text{
    position: relative;
    padding-top: 176px;
    left: 50%;
    width: 32%;
    box-sizing: border-box;
    margin-left: 50px;
}

.gastronomy__block2 {
    position: relative;
}
.gastronomy__block2 .box {
    padding: 0 80px;
    min-height: 620px;
}
.gastronomy__block2__pic1{
    width: 351px;
    height: 494px;
    left: 0;
    bottom: 0;
    background-image: url("../img/gastonomy-vector2.png");
}
.gastronomy__block2__pic2{
    width: 220px;
    height: 350px;
    right: 0;
    margin-right: 630px;
    top: 0;
    background: #63463D;
}
.gastronomy__block2__pic3{
    width: 311px;
    height: 457px;
    right: 0;
    margin-right: 479px;
    top: 43px;
    background-image: url("../img/gastonomy-pic2.jpg");
    z-index: 2;
}
.gastronomy__block2__pic4 {
    display: none;
}
.gastronomy__block2__text{
    position: relative;
    padding-top: 90px;
    left: 50%;
    margin-left: -520px;
    width: 25.5%;
    box-sizing: border-box;
}

.gastronomy__block3 {
    position: relative;
}
.gastronomy__block3 .box {
    padding: 0 80px;
    min-height: 778px;
}
.gastronomy__block3__pic1{
    width: 253px;
    height: 344px;
    right: 0;
    top: 141px;
    background-image: url("../img/gastonomy-vector3.png");
}
.gastronomy__block3__pic2{
    width: 620px;
    height: 230px;
    left: 160px;
    background: #E36B46;
}
.gastronomy__block3__pic3{
    width: 690px;
    height: 538px;
    left: 0px;
    top: 40px;
    background-image: url("../img/gastonomy-pic3.jpg");
    z-index: 2;
}

.gastronomy__block3__text{
    position: relative;
    padding-top: 23px;
    left: 50%;
    width: 31%;
    box-sizing: border-box;
    margin-left: 50px;
}

.gastronomy__block4 {
    position: relative;
}
.gastronomy__block4 .box {
    padding: 0 80px;
    min-height: 684px;
}
.gastronomy__block4__pic1{
    width: 364px;
    height: 447px;
    left: 0;
    top: 0;
    background-image: url("../img/gastonomy-vector4.png");
}
.gastronomy__block4__pic2{
    width: 220px;
    height: 350px;
    right: 0;
    margin-right: 573px;
    top: -90px;
    background: #63463D;
}
.gastronomy__block4__pic3{
    width: 710px;
    height: 492px;
    right: 0;
    top: 0;
    background-image: url("../img/gastonomy-pic4.jpg");
    z-index: 2;
}
.gastronomy__block4__pic4{
    width: 412px;
    height: 130px;
    right: 0;
    top: 432px;
    background: #E36B46;
}
.gastronomy__block4__text{
    position: relative;
    left: 50%;
    margin-left: -464px;
    width: 31%;
    box-sizing: border-box;
}
.gastronomy__block5 {
    position: relative;
}
.gastronomy__block5 .box {
    padding: 0 80px;
    min-height: 624px;
}
.gastronomy__block5__pic1{
    width: 303px;
    height: 308px;
    right: 0;
    top: 0;
    background-image: url("../img/gastonomy-vector5.png");
}
.gastronomy__block5__pic2{
    width: 476px;
    height: 340px;
    left: 310px;
    top: 166px;
    background: #63463D;
}
.gastronomy__block5__pic3{
    width: 685px;
    height: 444px;
    left: 58px;
    top: 0;
    background-image: url("../img/gastonomy-pic5.jpg");
    z-index: 2;
}
.gastronomy__block5__text{
    position: relative;
    left: 50%;
    width: 30.5%;
    margin-left: 50px;
}

.gastronomy__block6 {
    position: relative;
}
.gastronomy__block6 .box {
    padding: 0 80px;
    min-height: 700px;
}
.gastronomy__block6__pic1{
    width: 487px;
    height: 265px;
    left: 0;
    top: 340px;
    background-image: url("../img/gastonomy-vector6.png");
}
.gastronomy__block6__pic2{
    width: 579px;
    height: 132px;
    right: 213px;
    top: 416px;
    background: #E36B46;
}
.gastronomy__block6__pic3{
    width: 690px;
    height: 460px;
    right: 0;
    top: 0;
    background-image: url("../img/gastonomy-pic6.jpg");
    z-index: 2;
}
.gastronomy__block6__text{
    position: relative;
    left: 230px;
    width: 31%;
}


@media (max-width: 1679px) {
    .gastronomy__block-main .box {
        min-height: calc(710 / 1680 * 100vw);
    }
    .gastronomy__block1 .txt p,
    .gastronomy__block2 .txt p,
    .gastronomy__block3 .txt p,
    .gastronomy__block4 .txt p,
    .gastronomy__block5 .txt p,
    .gastronomy__block6 .txt p {
        margin: calc(24 / 1680 * 100vw) 0;
    }
    
    .gastronomy__block1 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(470 / 1680 * 100vw);
    }
    .gastronomy__block1__pic1{
        width: calc(276 / 1680 * 100vw);
        height: calc(297 / 1680 * 100vw);
    }
    .gastronomy__block1__pic2{
        width: calc(620 / 1680 * 100vw);
        height: calc(230 / 1680 * 100vw);
        top: calc(240 / 1680 * 100vw);
    }
    .gastronomy__block1__pic3{
        width: calc(569 / 1680 * 100vw);
        height: calc(391 / 1680 * 100vw);
        top: calc(40 / 1680 * 100vw);
        left: calc(170 / 1680 * 100vw);
    }
    .gastronomy__block1__pic4 {
        width: calc(380 / 1680 * 100vw);
        height: calc(252 / 1680 * 100vw);
        top: calc(-32 / 1680 * 100vw);
        left: calc(410 / 1680 * 100vw);
    }
    .gastronomy__block1__text{
        padding-top: calc(176 / 1680 * 100vw);
        margin-left: calc(50 / 1680 * 100vw);
    }
    
    .gastronomy__block2 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(620 / 1680 * 100vw);
    }
    .gastronomy__block2__pic1{
        width: calc(351 / 1680 * 100vw);
        height: calc(494 / 1680 * 100vw);
    }
    .gastronomy__block2__pic2{
        width: calc(220 / 1680 * 100vw);
        height: calc(350 / 1680 * 100vw);
        margin-right: calc(630 / 1680 * 100vw);
    }
    .gastronomy__block2__pic3{
        width: calc(311 / 1680 * 100vw);
        height: calc(457 / 1680 * 100vw);
        top:  calc(43 / 1680 * 100vw);
        margin-right: calc(479/ 1680 * 100vw);
    }
    .gastronomy__block2__text{
        padding-top: calc(90 / 1680 * 100vw);
        margin-left: calc(-520/ 1680 * 100vw);
    }
    .gastronomy__block3 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(778 / 1680 * 100vw);
    }
    .gastronomy__block3__pic1{
        width: calc(253 / 1680 * 100vw);
        height: calc(344 / 1680 * 100vw);
        top:  calc(141 / 1680 * 100vw);
    }
    .gastronomy__block3__pic2{
        width: calc(620 / 1680 * 100vw);
        height: calc(230 / 1680 * 100vw);
        left:  calc(160 / 1680 * 100vw);
    }
    .gastronomy__block3__pic3{
        width: calc(690 / 1680 * 100vw);
        height: calc(538 / 1680 * 100vw);
        top:  calc(40 / 1680 * 100vw);
    }
    
    .gastronomy__block3__text{
        padding-top: calc(23 / 1680 * 100vw);
        margin-left: calc(50 / 1680 * 100vw);;
    }
    .gastronomy__block4 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(684 / 1680 * 100vw);
    }
    .gastronomy__block4__pic1{
        width: calc(364 / 1680 * 100vw);
        height: calc(447 / 1680 * 100vw);
    }
    .gastronomy__block4__pic2{
        width: calc(220 / 1680 * 100vw);
        height: calc(350 / 1680 * 100vw);
        top: calc(-90 / 1680 * 100vw);
        margin-right: calc(573 / 1680 * 100vw);
    }
    .gastronomy__block4__pic3{
        width: calc(710 / 1680 * 100vw);
        height: calc(492 / 1680 * 100vw);
    }
    
    .gastronomy__block4__pic4{
        width: calc(412 / 1680 * 100vw);
        height: calc(130 / 1680 * 100vw);
        top: calc(432 / 1680 * 100vw);
    }
    .gastronomy__block4__text{
        margin-left: calc(-464 / 1680 * 100vw);
    }
    .gastronomy__block5 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(624 / 1680 * 100vw);
    }
    .gastronomy__block5__pic1{
        width: calc(303 / 1680 * 100vw);
        height: calc(308 / 1680 * 100vw);
    }
    .gastronomy__block5__pic2{
        width: calc(476 / 1680 * 100vw);
        height: calc(340 / 1680 * 100vw);
        left: calc(310 / 1680 * 100vw);
        top:  calc(166 / 1680 * 100vw);
    }
    .gastronomy__block5__pic3{
        width: calc(685 / 1680 * 100vw);
        height: calc(444 / 1680 * 100vw);
        left: calc(58 / 1680 * 100vw);
    }
    .gastronomy__block5__text{
        margin-left: calc(50 / 1680 * 100vw);
    }
    
    .gastronomy__block6 .box {
        padding: 0 calc(80 / 1680 * 100vw);
        min-height: calc(700 / 1680 * 100vw);
    }
    .gastronomy__block6__pic1{
        width: calc(487 / 1680 * 100vw);
        height: calc(265 / 1680 * 100vw);
        top:  calc(340 / 1680 * 100vw);
    }
    .gastronomy__block6__pic2{
        width: calc(579 / 1680 * 100vw);
        height: calc(132 / 1680 * 100vw);
        top:  calc(416 / 1680 * 100vw);
        right: calc(213 / 1680 * 100vw);
    }
    .gastronomy__block6__pic3{
        width: calc(690 / 1680 * 100vw);
        height: calc(460 / 1680 * 100vw);
    }
    .gastronomy__block6__text{
        position: relative;
        left: calc(230 / 1680 * 100vw);
    }
}
@media(max-width: 650px) {
    .gastronomy .txt {
            padding: 0 27px;
    }
    .gastronomy .txt p {
        margin-bottom: 30px;
    }
    .gastronomy__block1__text .txt,
    .gastronomy__block2__text .txt,
    .gastronomy__block3__text .txt,
    .gastronomy__block4__text .txt,
    .gastronomy__block5__text .txt
    {
        transform: none !important;
        opacity: 1 !important;
    }
    .gastronomy__block-main {
        margin-top: calc(205 / 1680 * 100vw);
    }
    .gastronomy__block-main .box {
        background-position: 81% 50% ;
        margin-top: 119px;
        min-height: 568px;
    }
    .gastronomy__block1 .box {
        display: flex;
        flex-direction: column-reverse;
        padding: 0;
        position: relative;
    
    }
    .gastronomy__block1__pic1{
        display: none;
    }
    .gastronomy__block1__pic2{
        position: absolute;
        width: 265px;
        height: 40px;
        left: 0;
        margin-left: 0;
        top: 0;
    }
    .gastronomy__block1__pic3{
        position: relative;
        width: 100%;
        left: auto;
        height: 583px;
        background-position: 65% 50%;
        margin: 0 auto;
    }
    .gastronomy__block1__pic4 {
        right: 0;
        position: relative;
        width: 265px;
        height: 99px;
        margin-top: -99px;
        left: auto;
        top: 620px;
        z-index: 1;
        margin-left: auto;
    }
    .gastronomy__block1__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 69px;
    }
    .gastronomy__block1__text .title {
        position: absolute;
        top: -656px;
        left: 27px;
        z-index: 10;
    }
    .gastronomy__block2 .box {
        margin-top: 65px;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .gastronomy__block2__pic1{
        position: relative;
        left: 0;
        margin-left: 0;
        top: -428px;
        width: 183px;
        height: 127px;
        margin-top: -127px;
        background: #E36B46;
    }
    .gastronomy__block2__pic2{
        position: relative;
        width: 265px;
        height: 99px;
        margin-top: -99px;
        left: 0;
        margin-left: 0;
        top: 42px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
    }
    .gastronomy__block2__pic3{
        position: relative;
        width: 343px;
        height: 539px;
        margin: 38px auto 0;
        background-position: 40% 50%;
    }
    .gastronomy__block2__pic4 {
        display: none;
    }
    .gastronomy__block2__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 110px;
    }
    .gastronomy__block2__text p {
        margin: 0 !important;
    }
    .gastronomy__block2__text .title {
        position: absolute;
        top: 0;
        left: 27px;
    }
    .gastronomy__block3 {
        position: relative;
    
    }
    .gastronomy__block3 .box {
        margin-top: 85px;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .gastronomy__block3__pic1{
        width: 265px;
        height: 99px;
        left: 0;
        margin-left: auto;
        position: relative;
        margin-top: -121px;
        top: -441px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
    }
    .gastronomy__block3__pic2{
        width: 175px;
        height: 121px;
        left: 0;
        margin-left: 0;
        position: relative;
        margin-top: -121px;
        top: 32px;
    }
    .gastronomy__block3__pic3{
        position: relative;
        width: 100%;
        height: 549px;
        background-position: center;
    }
    .gastronomy__block3__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 80px;
        margin-bottom: 15px;
    }
    .gastronomy__block3__text p {
        margin-bottom: 25px !important;
    }
    .gastronomy__block3__text .title {
        position: absolute;
        top: 0;
        left: 27px;
    }
    .gastronomy__block4 {
        position: relative;
    }
    .gastronomy__block4 .box {
        padding: 0;
        margin-top: 82px;
        display: flex;
        flex-direction: column-reverse;
    }
    .gastronomy__block4__pic1{
        display: none;
    }
    .gastronomy__block4__pic2{
        width: 281px;
        height: 92px;
        left: 0;
        margin-left: auto;
        position: relative;
        margin-top: -92px;
        margin-right: 0;
        top: 20px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
    }
    .gastronomy__block4__pic3{
        position: relative;
        width: 332px;
        height: 423px;
        margin: 0 auto;
        background-position: 50% 50%;
    }
    .gastronomy__block4__pic4{
        width: 202px;
        height: 121px;
        left: 0;
        margin-left: 0;
        position: relative;
        margin-top: -121px;
        top: 103px;
    }
    .gastronomy__block4__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 104px;
    }
    .gastronomy__block4__text p {
        margin-bottom: 25px !important;
    }
    .gastronomy__block4__text p:last-child {
        margin-bottom: 42px !important;
    }
    
    .gastronomy__block4__text .title {
        position: absolute;
        top: 0;
        left: 30px;
    }
    .gastronomy__block5 {
        position: relative;
    }
    .gastronomy__block5 .box {
        margin-top: 58px;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .gastronomy__block5__pic1{
        left: 0;
        position: relative;
        margin-top: -135px;
        top: 50px;
        width: 332px;
        height: 135px;
        margin-left: auto;
        background: #E36B46;
    }
    .gastronomy__block5__pic2{
        width: 244px;
        height: 85px;
        left: 32px;
        margin-left: 0;
        position: relative;
        margin-top: -85px;
        top: -447px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #9C4A30;
    }
    .gastronomy__block5__pic3{
        position: relative;
        width: 100%;
        background-position: 36% 50%;
        left: auto;
        height: 511px;
    }
    .gastronomy__block5__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 115px;
    }
    .gastronomy__block5__text p {
        margin-bottom: 25px !important;
    }
    .gastronomy__block5__text p:last-child {
        margin-bottom: 42px !important;
    }
    .gastronomy__block5__text .txt {
        padding: 0 32px;
    }
    .gastronomy__block5__text .title {
        position: absolute;
        top: 0;
        left: 30px;
    }
    .gastronomy__block6 {
        position: relative;
    }
    .gastronomy__block6 .box {
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .gastronomy__block6__pic1{
        display: none;
    }
    .gastronomy__block6__pic2{
        display: none;
    }
    .gastronomy__block6__pic3{
        display: none;
    }
    .gastronomy__block6__text{
        padding: 0;
        margin-left: 0;
        width: auto;
        left: 0;
        position: initial;
        margin-top: 72px;
    }
    .gastronomy__block6__text p {
        margin-bottom: 25px !important;
    }
    .gastronomy__block6__text .txt {
        padding: 0 43px;
    }
    
    /*.gastronomy__block4__text p:last-child {*/
    /*    margin-bottom: 42px !important;*/
    /*}*/
}
