/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 50px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #555; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

#myBtn:hover {
    background-color: #FDC300; /* Add a dark-grey background on hover */
    transition: 0.5s;
}
#myBtn svg{
    transition: 0.2s;
}
#myBtn:hover svg{
    height: 40px;
    transition: 0.5s;
}
.wraper {
    max-width: 1300px;
    margin: 0 auto;
    height: auto;
}
.header{
    width: 100%;
    height: 770px;
    border-radius: 0px 0px 120px 120px;
    background-size: 100% 100%;
    background-image: url(/img/snow_header.png);
}
.block1{
    margin-top: 100px;
}
.menu{
    position: absolute;
    width: 100%;
    height: 130px;
    transition: 0.2s;
}
.menu_wraper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    align-items: center;
    margin-top: 40px;
}
.textlogo{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.logotext{
    color: #FDC300;
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.8px;
    font-variant: all-small-caps;
    
}
.punktmenu{
    display: flex;
    flex-direction: row;
    gap:23px;
}
.punkti{
    color: white;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 400;
    transition: 0.2s;
}
.punkti:hover{
    transition: 0.5s;
    color: #FDC300;
    text-decoration: none;
}
.punkti1{
    color: white;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline #FDC300;
    cursor: default;
    transition: 0.2s;
}
.punkti1:hover{
    color: #fff;
    text-decoration: underline #FDC300;
}
.drop_down{
    display: none;
    min-width: 100px;
}
.punkti-drop{
    color: white;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
    display: block;
}
.punkti1:hover .drop_down{
    display: block;
}
.phone{
    width: 200px;
    height: 44px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:10px;
    border:none;
}
.phone_p{
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.bukovel{
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -5px;
}
.header_wraper{
    padding-top: 102px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.logoandtext{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo{
    width: 173px;
    height: 173px;
    background-image: url(/img/logo.png);
    background-size: 100% 100%;
}
.kvadrik{
    background-image: url(/img/snowhod.png);
    width: 697px;
    height: 494px;
    background-size: 100%;
    align-self: flex-end;
    position: absolute;
    margin-top: 240px;
}
.header_left_text{
    color: #FFF;
    width: 862px;
    font-family: 'Montserrat';
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 115px;
}
.plogoandtext{
    color: #FFF;
    width: 630px;
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    margin-top: 50px;
}
.yellow{
    color: #FDC300;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.text1_button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 50px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    gap: 10px;
    margin-top: 50px;
    border: none;
    transition: 0.2s;
}
.text1_button:hover{
    gap: 45%;
    transition: 0.5s;
}
.text1_button_p{
    color: #000;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
}
.block1_wraper{
    display: flex;
    flex-direction: column;
}
.block1_h1{
    color: #000;
    font-family: 'Montserrat';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
    width: 570px;
}
.blocks_poslugs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}
.block{
    width: 420px;
    height: 173px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.number_p{
    color: #448186;
    font-family: 'Montserrat';
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-left: 50px;
}
.block1_button{
    width: 420px;
    height: 60px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border:none;
    align-self: center;
    margin-top: 50px;
    transition: 0.2s;
}
.block1_button:hover{
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
    scale: 1.05;
    transition: 0.5s;
}
.block1_button_p{
    color: #000;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
}
.text_block_p{
    width: 247px;
    color: #224F53;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-left: 30px;
}
.block2{
    margin-top: 100px;
}
.block2_wraper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.h1_block2{
    color: #000;
    font-family: 'Montserrat';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.64px;

}
.p_text_block2{
    margin-top: 40px;
}
.p_block2{
    width: 520px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
}
.p_block2:nth-child(2){
    margin-top: 20px;
}
.block2_button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 50px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    gap: 10px;
    margin-top: 40px;
    border: none;
    transition: 0.2s;
}
.block2_button:hover{
    gap: 45%;
    transition: 0.5s;
}
.photo_block2{
    width: 640px;
    height: 430px;
    border-radius: 20px;
}
.photo_block2 img{
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    border-radius: 20px;
}
.akcia_p{
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-top: 38px;
    text-align:center;
}
.block3{
    margin-top: 100px;
    width: 100%;
    height: 804px;
    border-radius: 120px 120px 0px 0px;
    background-image: url(/img/price_snow.png);
    background-size: 100% 100%;
}
.block3_wraper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.h1_block3{
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-top: 100px;
}
.ramka{
    width: 100%;
    height: 521px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.50);
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ramka_block{
    width: 77%;
    height: 165px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.50);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.ramka_middle_block{
    height: 200px;
    width: 77%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.50);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#tree{
    border-bottom: none;
}
.time{
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.56px;
}
.mests{
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
}
.call_ramka{
    width: 50px;
    height: 50px;
    border-radius: 20px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}
.call_ramka:hover{
    scale: 1.05;
    transition: 0.5s;
}
.cena{
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.56px;
    margin-left: 127px;
}
.second_block_ramka{
    margin-top: 4px;
}
.third_block_ramka{
    display: flex;
    align-items: center;
}
.block4_wraper{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.block4_first_block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.block5{
    margin-top: 100px;
}
.column{
    display: flex;
    flex-direction: column;
}
.first_block_h1{
    color: #000;
    font-family: 'Montserrat';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.64px;
}
.first_block_p{
    width: 509px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-top: 40px;
}
.first_block_h2{
    color: #000;
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}
.first_block_a_b{
    margin-top: 50px;
    gap: 15px
}
.first_block_a{
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-decoration-line: underline;
}
.block4_second_block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.block4_second_left_block{
    margin-top: 100px;
}
.block4_second_number1{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.block4_second_block_numbers{
    margin-top: 40px;
    gap:30px;
    display: flex;
    flex-direction: column;
}
.p_number{
    color: #448186;
    font-family: 'Montserrat';
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.28px;
    width: 50px;
}
.p_text{
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-left: 50px;
    width: 480px;
}
.block4_second_right{
    align-items: center;
    justify-content: space-between;
}
.kvadrik_black{
    width: 612px;
    height: 429px;
    background-image: url(/img/snowhod2.png);
    background-size: 100% 100%;
    align-self: start;
    margin-top: 100px;
}
.block4_button{
    width: 420px;
    height: 50px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.block4_button:hover{
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
    scale: 1.05;
    transition: 0.5s;
}
.block5_wraper{
    display: flex;
    flex-direction: column;
}
.block5_topblock{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.block5_a{
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-decoration-line: underline;
    margin-left: 65px;
}
.swiper {
    width: 100%;
    height: 520px;
    border-radius: 50px;
    margin-top: 40px;
}
.block6{
    margin-top: 100px;
}
.swiper-pagination-bullet{
    background-color: rgba(255, 255, 255);
}
.swiper-pagination-bullet-active{
    background-color: #FDC300;
    width: 16px;
    height: 16px;
}

.swiper-button-next{
    background-image: url(/img/chevron-right.png);
    width: 36px;
    height: 36px;
    background-size: 100% 100%;
}
.swiper-button-prev{
    background-image: url(/img/chevron-left.png);
    width: 36px;
    height: 36px;
    background-size: 100% 100%;
}
.swiper-pagination-horizontal{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.block6_wraper{
    width: 100%;
    height: 640px;
    background-image: url(/img/block6_snow.png);
}
.block6_block{
    width: 970px;
    height: 375px;
    border-radius: 0px 0px 300px 0px;
    background: #FFF;
}
.block6_social{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.social_block{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}
.block6_button{
    width: 420px;
    height: 70px;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid #FDC300;
    color: #000;
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.block6_button:hover{
    scale: 1.05;
    transition: 0.5s;
    color: black;
    text-decoration: none;
}
input:focus{
    border: 2px solid orange;
}
.error_label{
    display: none;
    color: red;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    transition: 0.5s;
}
.block6_instagram{
    width: 100px;
    height: 100px;
    background-image: url(/img/instagram.png);
    background-size: 100% 100%;
}
.block6_facebook{
    width: 100px;
    height: 100px;
    background-image: url(/img/facebook.png);
    background-size: 100% 100%;
}
.block7{
    margin-top: 100px;
    margin-bottom: 50px;
}
.block7_wraper{
    display: flex;
    flex-direction: column;
}
.block7_topblock{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.block7_phone{
    width: 310px;
    height: 54px;
    border-radius: 20px;
    border: 2px solid #FDC300;
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    letter-spacing: 0.4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.block7_phone:hover{
    scale: 1.05;
    transition: 0.5s;
}
.contact-form{
    display: flex;
    flex-direction: column;
}
.contact-form input {
    border: 0 none;
    width: 420px;
    height: 54px;
    font-family: 'Montserrat';
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
    font-size: 20px;
    font-weight: 400;
    padding-left: 15px;
    margin-bottom: 20px;
    outline: none;
    background: #fff;
    border-radius: 20px;
  }
  .contact-form .btn {
    border: none;
    width: 310px;
    height: 54px;
    border-radius: 20px;
    background: #FDC300;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
    color: #000;
    font-family: 'Montserrat';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .btn svg{
    transition: 0.2s;
  }
  .btn:hover svg{
    margin-left: 4px;
    margin-bottom: 4px;
    transition: 0.2s;
  }
.block7_mainblocks{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.block7_leftblock{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.bottom_h1{
    color: #000;
    font-family: 'Montserrat';
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    margin-top: 50px;
}
.warning_block{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.warning{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.warning_svg{
    width: 20.896px;
    height: 18.103px;
    background-image: url(/img/warning.png);
    background-size: 100% 100%;
}
.warning_p{
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}
.block7_rightblock{
    align-self: flex-end;
}
.block7_rightblock iframe{
    width: 640px;
    height: 394px;
    border-radius: 20px;
    
}
.hamburger-menu{
    display: none;
}
#menu__toggle {
    opacity: 0;
  }
  /* стилизуем кнопку */
  .menu__btn {
    display: flex; /* используем flex для центрирования содержимого */
    align-items: center;  /* центрируем содержимое кнопки */
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
  }
  /* добавляем "гамбургер" */
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
    
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
    
}
.black {
    display: flex;
    align-items: center;
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
    margin-top: -7px;
}
.social1 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-self: center;
    margin-top: 30px;
}
.facebook {
    width: 36px;
    height: 36px;
    background-image: url(/img/facebook.png);
    background-size: 100% 100%;
}
.instagram {
    width: 36px;
    height: 36px;
    background-image: url(/img/instagram.png);
    background-size: 100% 100%;
}
.black > span,
.black > span::before,
.black > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: black;
}
.menu__box {
    display: flex;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    flex-direction: column;
    text-align: center;
    background-color: white;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    z-index: 100;
    overflow: hidden;
    }
  /* элементы меню */
  .menu__item {
    display: block;
    padding: 12px 24px;
    width: fit-content;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
  }
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
    background-color: black;
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
    background-color: black;
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    background-color: black;
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  .menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  transition-duration: .25s;
}
.menu__box {
  transition-duration: .25s;
}
.menu__item {
  transition-duration: .25s;
}
.menu__box li{
    display: flex;
    justify-content: center;
}
.menu__box li:nth-child(1){
    margin-top: 150px;
}
.abo{
    display: none;
}
.photo_for_slider_1{
    width: 100%;
    height: 100%;
    background-image: url(/img/slider1.png);
}
.swiper-slide{
    height: 520px;
}
.photo_for_slider_1{
    background-image: url(/img/slider1.png);
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: cover;
}
.photo_for_slider_2{
    background-image: url(/img/photo_for_slider_2.png);
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: cover;
}
.photo_for_slider_3{
    background-image: url(/img/photo_for_slider_3.png);
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: cover;
}
.photo_for_slider_4{
    background-image: url(/img/photo_for_slider_4.png);
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: cover;
}

@media screen and (max-width: 1330px) {
    .wraper{
        max-width: 1200px;
    }
    .block7_rightblock iframe{
        width: 500px;
    }
    .kvadrik_black {
        width: 552px;
        height: 399px;
        align-self: start;
        margin-top: 100px;
    }
    .photo_block2 {
        width: 590px;
        height: 430px;
        border-radius: 20px;
    }
    .block {
        width: 49%;
        height: 173px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .blocks_poslugs {
        display: flex;
        flex-direction: row;
        flex-wrap: none;
        justify-content: none;
        margin-top: 50px;
        gap: 20px;
    }
    .kvadrik {
        width: 647px;
        height: 464px;
        background-size: 100%;
        align-self: flex-end;
        position: absolute;
        margin-top: 280px;
    }
    .swiper {
        width: 100%;
        height: fit-content;
        border-radius: 50px;
        margin-top: 40px;
    }
    
}
@media screen and (max-width: 1230px) {
    .phone{
        display: none;
    }
    .swiper-slide{
        height: 420px;
    }
    .wraper{
        max-width: 1000px;
    }
    .cena {
        color: #FFF;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-left: 80px;
    }
    .kvadrik_black {
        width: 582px;
        height: 429px;
        align-self: center;
        margin-top: 100px;
        order: 2;
    }
    .block4_first_block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .block4_right{
        margin-top: 50px;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding: 50px;
    }
    .block4_left{
        width: 520px;
    }
    .logo {
        width: 123px;
        height: 123px;
        background-image: url(/img/logo.png);
        background-size: 100% 100%;
    }
    .block4_second_block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .block4_button {
        width: 100%;
        height: 70px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        border: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        margin-top: 50px;
    }
    .block4_second_left_block {
        margin-top: 100px;
    }
    .first_block_h2 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        width: 340px;
    }
    .block7_rightblock iframe {
        width: 350px;
    }
    .photo_block2 {
        width: 400px;
        height: auto;
        border-radius: 20px;
        background-image: url(/img/block2_photo_snow_crop.png);
    }
    .p_block2 {
        width: 500px;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
    }
    .kvadrik {
        width: 547px;
        height: 390px;
        background-size: 100%;
        align-self: flex-end;
        position: absolute;
        margin-top: 340px;
    }
    .block4_second_number1 {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 150px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
    }
    .p_number {
        color: #448186;
        font-family: 'Montserrat';
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.28px;
        width: 50px;
        margin-left: 50px;
    }
    .block6_block {
        width: 900px;
        height: 325px;
        border-radius: 0px 0px 300px 0px;
        background: #FFF;
    }
    .block6_button {
        width: 350px;
        height: 60px;
        border-radius: 20px;
        background-color: transparent;
        border: 2px solid #FDC300;
        color: #000;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.48px;
        cursor: pointer;
        transition: 0.2s;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .block6_instagram {
        width: 80px;
        height: 80px;
        background-image: url(/img/instagram.png);
        background-size: 100% 100%;
    }
    .block6_facebook {
        width: 80px;
        height: 80px;
        background-image: url(/img/facebook.png);
        background-size: 100% 100%;
    }
    .block4_left {
        width: 100%;
        height: 250px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding: 50px;
    }
}
@media screen and (max-width: 1025px) {
    .hamburger-menu{
        display: block;
    }
    .punktmenu {
        display: none;
        flex-direction: row;
        gap: 23px;
    }
    .button_block{
        display: none;
    }
    .wraper{
        max-width: 950px;
    }
    .block {
        width: 48.5%;
        height: 173px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .kvadrik {
        width: 547px;
        height: 390px;
        background-size: 100%;
        align-self: flex-end;
        position: absolute;
        margin-top: 360px;
    }
    .logo {
        width: 80px;
        height: 90px;
        background-image: url(/img/logo.png);
        background-size: 100% 100%;
        display: none;
    }
    .menu {
        position: absolute;
        width: 100%;
        height: 130px;
    }
    .p_block2 {
        width: 450px;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
    }
}
@media screen and (max-width: 950px) {
    .plogoandtext {
        color: #FFF;
        width: 630px;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.48px;
        margin-top: 50px;
    }
    .block1_button {
        width: 100%;
        height: 70px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        border: none;
        align-self: center;
        margin-top: 50px;
        transition: 0.2s;
    }
    .wraper{
        max-width: 700px;
    }
    .header_left_text {
        color: #FFF;
        width: 700px;
        font-family: 'Montserrat';
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        margin-top: 115px;
    }
    .kvadrik {
        width: 547px;
        height: 390px;
        background-size: 100%;
        align-self: center;
        position: absolute;
        margin-top: 550px;
    }
    .header {
        width: 100%;
        height: 950px;
    }
    .blocks_poslugs {
        display: flex;
        flex-direction: column;
        flex-wrap: none;
        justify-content: none;
        margin-top: 50px;
        gap: 20px;
    }
    .block {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .text_block_p {
        width: 247px;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        margin-left: 50px;
    }
    .block2_wraper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .p_block2 {
        width: 90%;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
    }
    .photo_block2 {
        width: 100%;
        height: auto;
        border-radius: 20px;
        background-image: url(/img/block2_photo_snow.png);
        margin-top: 50px;
    }
    .time {
        color: #FFF;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.56px;
    }
    .mests {
        color: #FFF;
        font-family: 'Montserrat';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
    }
    .cena {
        color: #FFF;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-left: 30px;
    }
    .ramka_block {
        width: 85%;
        height: 165px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .ramka_middle_block {
        height: 200px;
        width: 85%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .block6_block {
        width: 100%;
        height: 255px;
        border-radius: 0px 0px 0px 0px;
        background: #FFF;
    }
    .block6_button {
        width: 350px;
        height: 60px;
        border-radius: 20px;
        background-color: transparent;
        border: 2px solid #FDC300;
        color: #000;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.48px;
        cursor: pointer;
        transition: 0.2s;
        display: none;
        justify-content: center;
        align-items: center;
    }
    .block6_social {
        display: flex;
        flex-direction: row;
        gap: 100px;
        margin-top: 40px;
    }
    .block7_mainblocks {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .block7_rightblock{
        width: 100%;
        margin-top: 50px;
    }
    .block7_rightblock iframe {
        width: 100%;
    }
    .block6_wraper {
        width: 100%;
        height: 550px;
        background-image: url(/img/block6_snow_crop.png);
        background-size: 100% 100%;
    }
    .photo_for_slider_1{
        background-image: url(/img/photo_for_slider_1.png);
        width: 100%;
        height: 100%;
    }
    .photo_for_slider_2{
        background-image: url(/img/photo_for_slider_2_crop.png);
        width: 100%;
        height: 100%;
    }
    .photo_for_slider_3{
        background-image: url(/img/photo_for_slider_3_crop.png);
        width: 100%;
        height: 100%;
    }
    .photo_for_slider_4{
        background-image: url(/img/photo_for_slider_4_cro.png);
        width: 100%;
        height: 100%;
    }
    .abo {
        display: block;
        color: #000;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-top: 0px;
      }
      .block7_topblock {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .block7_phone {
      width: 100%;
      height: 54px;
      margin-top: 50px;
      border-radius: 20px;
      border: 2px solid #FDC300;
      color: #000;
      font-family: 'Montserrat';
      font-size: 20px;
      letter-spacing: 0.4px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      margin-top: 50px;
    }
    .contact-form input {
      border: 0 none;
      width: 100%;
      height: 54px;
      font-family: 'Montserrat';
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
      font-size: 20px;
      font-weight: 400;
      padding-left: 15px;
      margin-bottom: 20px;
      outline: none;
      background: #fff;
      border-radius: 20px;
    }
    .contact-form .btn {
      border: none;
      width: 100%;
      height: 54px;
      border-radius: 20px;
      background: #FDC300;
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
      color: #000;
      font-family: 'Montserrat';
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      letter-spacing: 0.4px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
}
@media screen and (max-width: 730px) {
    .wraper{
        max-width: 600px;
    }
    .header_left_text {
        color: #FFF;
        width: 95%;
        font-family: 'Montserrat';
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-top: 115px;
    }
    .plogoandtext {
        color: #FFF;
        width: 85%;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.48px;
        margin-top: 50px;
    }
    .header{
        height: 970px;
        background-image: url(/img/header_snow_crop.png);
    }
    .block4_left {
        width: 100%;
        height: 280px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding: 50px;
    }
    .first_block_p {
        width: 90%;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        margin-top: 40px;
    }
    .ramka {
        width: 100%;
        height: fit-content;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.50);
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }
    .block3 {
        margin-top: 100px;
        width: 100%;
        height: fit-content;
        background-image: url(/img/block3_snow_crop.png);
    }
    .akcia_p{
        font-size: 18px;
        margin-bottom: 38px;
    }
    .ramka_block {
        width: 85%;
        height: fit-content;
        border-bottom: 2px solid rgba(255, 255, 255, 0.50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .ramka_middle_block {
        height: fit-content;
        width: 85%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .third_block_ramka {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 0px;
    }
    .call_ramka {
        width: 200px;
        height: 50px;
        margin-bottom: 80px;
        border-radius: 20px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: 0.2s;
    }
    .time {
        margin-top: 80px;
        font-size: 28px;
        margin-bottom: 40px;
    }
    .cena {
        font-size: 28px;
        margin-left: 0px;
        margin-bottom: 40px;
    }
    .mests {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .block7_topblock {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .block7_phone {
        width: 100%;
        height: 54px;
        border-radius: 20px;
        border: 2px solid #FDC300;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        letter-spacing: 0.4px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
        margin-top: 40px;
    }
    .first_block_h1 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.64px;
    }
    .contact-form input {
        border: 0 none;
        width: 100%;
        height: 54px;
        font-family: 'Montserrat';
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        font-size: 20px;
        font-weight: 400;
        padding-left: 15px;
        margin-bottom: 20px;
        outline: none;
        background: #fff;
        border-radius: 20px;
    }
    .mests{
        text-align: center;
    }
    .contact-form .btn {
        border: none;
        width: 100%;
        height: 54px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.4px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .block5_topblock {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .abo{
        display: block;
        color: #000;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-top: 0px;
    }
    .contact-form {
        margin-top: 50px;
    }
}
@media screen and (max-width: 620px) {
    .wraper{
        max-width: 450px;
    }
    .block1_h1 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: normal;
        width: 95%;
    }
    .block2_button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        gap: 10px;
        margin-top: 40px;
        border: none;
        transition: 0.2s;
    }
    .block {
        width: 100%;
        height: 150px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .block4_left {
        width: 100%;
        height: 350px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding: 50px;
    }
    .block4_right {
        margin-top: 50px;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding: 50px;
    }
    .first_block_a {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        text-decoration-line: underline;
        width: 80%;
    }
    .p_text {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        margin-left: 30px;
        width: 70%;
    }
    .p_number {
        color: #448186;
        font-family: 'Montserrat';
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.28px;
        width: 50px;
        margin-left: 30px;
    }
    .kvadrik_black {
        width: 100%;
        height: 329px;
        align-self: center;
        margin-top: 100px;
        order: 2;
    }
    .block5_topblock {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .block5_a {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        text-decoration-line: underline;
        margin-left: 0px;
    }
    .warning_p {
        color: #000;
        font-family: 'Montserrat';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.32px;
        width: 82%;
    }
    .header{
        height: 1000px;
    }
    .kvadrik {
        width: 450px;
        height: 334px;
        background-size: 100% 100%;
        align-self: center;
        position: absolute;
        margin-top: 630px;
    }
    .block6_block {
        width: 100%;
        height: 205px;
        border-radius: 0px 0px 0px 0px;
        background: #FFF;
    }
    .block6_wraper {
        width: 100%;
        height: 400px;
        background-image: url(/img/block6_snow_crop.png);
        background-size: 100% 100%;
    }
    .social_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        gap: 20px;
    }
    .header_left_text {
        color: #FFF;
        width: 95%;
        font-family: 'Montserrat';
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-top: 80px;
    }
    .plogoandtext {
        color: #FFF;
        width: 93%;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.48px;
        margin-top: 50px;
    }
    .block6_instagram {
        width: 60px;
        height: 60px;
        background-image: url(/img/instagram.png);
        background-size: 100% 100%;
    }
    .block6_facebook {
        width: 60px;
        height: 60px;
        background-image: url(/img/facebook.png);
        background-size: 100% 100%;
    }
    .block6_social {
        display: flex;
        flex-direction: row;
        gap: 50px;
        margin-top: 40px;
    }
    .swiper-slide{
        height: 350px;
    }
}
@media screen and (max-width: 470px) {
    .swiper-slide{
        height: 320px;
    }
    .third_block_ramka {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 0px;
        width: 90%;
        margin-top: 40px;
    }
    .call_ramka {
        width: 100%;
        height: 50px;
        border-radius: 20px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: 0.2s;
    }
    .p_block2 {
        width: 100%;
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
    }
    .wraper{
        max-width: 375px;
    }
    .header{
        height: 950px;
        border-radius: 0px 0px 40px 40px;
    }
    .first_block_ramka{
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        border-bottom: 2px solid white;
    }
    .second_block_ramka {
        margin-top: 40px;
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        border-bottom: 2px solid white;
    }
    .block6_wraper {
        width: 100%;
        height: 400px;
        background-image: url(/img/block6_snow_470px.png);
        background-size: 100% 100%;
    }
    .block3{
        border-radius: 0px;
        background-image: url(/img/block3_snow_470px.png);
    }
    .header_left_text {
        color: #FFF;
        width: 95%;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-top: 80px;
    }
    .plogoandtext {
        color: #FFF;
        width: 97%;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.48px;
        margin-top: 50px;
    }
    .block4_left {
        width: 100%;
        height: 450px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding-left: 40px;
    }
    .block4_right {
        margin-top: 50px;
        width: 100%;
        height: 450px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        justify-content: center;
        padding-left: 40px;
    }
    .first_block_h2 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        width: auto;
    }
    .first_block_h1 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.64px;
    }
    .h1_block3 {
        color: #FFF;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 0.64px;
        margin-top: 100px;
    }
    .first_block_a {
        color: #000;
        font-family: 'Montserrat';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        text-decoration-line: underline;
        width: 95%;
    }
    .h1_block2 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.64px;
    }
    .kvadrik_black {
        width: 100%;
        height: 279px;
        align-self: center;
        margin-top: 100px;
        order: 2;
    }
    .abo {
        display: block;
        color: #000;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-top: 0px;
    }
    .bottom_h1 {
        color: #000;
        font-family: 'Montserrat';
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.56px;
        margin-top: 50px;
    }
    .block6_block {
        width: 100%;
        height: 205px;
        border-radius: 0px 0px 0px 0px;
        background: #FFF;
    }
    .number_p {
        font-family: 'Montserrat';
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        margin-left: 40px;
    }
    .text_block_p {
        width: 247px;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        margin-left: 40px;
        margin-top: 20px;
    }
    .block4_second_number1 {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 100%;
        height: 250px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
    }
    .p_number {
        font-family: 'Montserrat';
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.28px;
        width: 50px;
        margin-left: 40px;
    }
    .p_text {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.2px;
        margin-left: 40px;
        width: 300px;
        margin-top: 20px;
    }
    .kvadrik {
        width: 370px;
        height: 304px;
        background-size: 100% 100%;
        align-self: center;
        position: absolute;
        margin-top: 600px;
    }
    #myBtn {
        position: fixed;
        bottom: 30px;
        right: 20px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: #555;
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 10px;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        transition: 0.2s;
    }
    .block {
        width: 100%;
        height: 250px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }
    .block2_button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        gap: 10px;
        margin-top: 40px;
        border: none;
        transition: 0.2s;
    }
    .text1_button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        border-radius: 20px;
        background: #FDC300;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        gap: 10px;
        margin-top: 50px;
        border: none;
        transition: 0.2s;
    }
    .photo_block2 {
        width: 100%;
        height: auto;
        border-radius: 20px;
        background-image: url(/img/block2_photo_snow_crop.png);
        margin-top: 50px;
    }
}
@media screen and (max-width: 400px) {
    .wraper{
         max-width: 350px;
    }
    .kvadrik {
        width: 350px;
        height: 244px;
        background-size: 100% 100%;
        align-self: center;
        position: absolute;
        margin-top: 650px;
    }
    .header_left_text {
        color: #FFF;
        width: 100%;
        font-family: 'Montserrat';
        font-size: 28px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-top: 80px;
    }
    .p_number {
        font-family: 'Montserrat';
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1.28px;
        width: 50px;
        margin-left: 40px;
    }
    .p_text {
        color: #000;
        font-family: 'Montserrat';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.2px;
        margin-left: 40px;
        width: 280px;
        margin-top: 20px;
    }
    .kvadrik_black {
        width: 100%;
        height: 239px;
        align-self: center;
        margin-top: 100px;
        order: 2;
    }
}