* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Urbanist', sans-serif;
}

.map-container .vector {
    will-change: opacity;
}

.video-background {
    position: relative; /* Или абсолютное, если требуется */
    width: 100%;
    height: 100vh;
    border: none;
    overflow: hidden;
}

.video-play-button {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}

.video-play-button:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button.hidden {
  display: none;
}

/* Модальное окно поверх фонового блока */
.video-modal {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
}

/* Контейнер видео (70%) */
.video-modal-content {
  position: relative;
  width: 70%;
  height: 70%;
  background: black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.video-modal video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Кнопка закрытия */
.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.video-close:hover {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.green, .animated-image {
    will-change: transform;
}

.update-data {
    color: var(--Light-Grey, #C1C1C1);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-video-text {
    display: inline-flex;
    height: 45px;
    padding: 12px 45px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: 'Urbanist';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 60px;
    cursor: pointer;
    position: relative;
    border: 2px solid white;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.320, 1);
    overflow: hidden;
}

.line-wrap {
  height: 50px;
  position: absolute;
  left: 50%;
  bottom: 0px;

  span {
    width: 118px;
    height: 24px;
    display: block;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
}

.line {
  width: 2px;
  border-radius: 10px;
  height: 80px;
  background: #595959;
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #fff;
    animation-name: mouseScroll;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.05, 0.61, 0.41, 0.95);
  }
}

@keyframes mouseScroll {
  0% {
    transform: translateX(-50%) translateY(-100%);
  }
  100% {
    transform: translateX(-50%) translateY(100%);
  }
}

.line-wrap-text {
    text-decoration: underline white;
}

.logo {
    height: 57px;
    max-width: 330px;
    display: flex;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 1000;
    border: none;
    box-shadow: none;
    justify-content: center;
    display: flex;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-button {
    position: absolute;
    left: 4em;
    background: none;
    font: inherit;
    font-size: 24px;
    margin: -0.5em;
    border: 0;
    color: var(--Bright-white, #FFF);
    font-family: Urbanist;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
    cursor: pointer;
}

.menu-button-text {
    margin-left: 13px;
}

.hr-header {
    border: 1px solid white;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 776px;
    height: 100%;
    background: var(--Bright-white, #FBFBFB);
    z-index: 1000;
    display: none;
    display: flex;
    flex-direction: column;
}

.modal-top {
    height: 144px;
}

.modal-center {
    flex-grow: 1;
    position: relative; /* Required for absolute positioning of modal-contact */
    display: flex;
    align-items: center;
}

.modal-menu {
    position: absolute;
    right: 100px; /* Distance from the right edge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 48px;
}

.btn-menu {
    color: var(--Copper, #B56540);
    text-align: right;
    font-family: Urbanist;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
    letter-spacing: 1.6px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

.btn-menu:first-child {
    margin-top: 0px;
}

.no-visited {
    color: inherit; /* Цвет ссылки до и после перехода остается таким же, как цвет текста */
    text-decoration: none; /* Убирает подчеркивание */
}

.no-visited:visited {
    color: inherit; /* Оставляет цвет после посещения таким же, как и был */
    text-decoration: none; /* Оставляет стиль без изменений */
}

.modal-bottom {
    height: 135px;
    position: relative; /* Required for absolute positioning of modal-contact */
    display: flex;
}

.modal-contact {
    width: 169px;
    height: 66px;
    position: absolute;
    right: 100px; /* Distance from the right edge */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-link {
    color: var(--Copper, #B56540);
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: lowercase;
}

.contact-link:last-child {
    margin-top: 8px;
}

.modal-close {
    margin-top: 35px;
    margin-left: 130px;
    cursor: pointer;
    border: 0;
    color: var(--Copper, #B56540);
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
    background: none;
}

.body_1 {
    width: 100%;
    height: 100%;
}

.container_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.upper-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 480px;
    width: 100%;
    text-align: center;
}

.centered-text {
    color: var(--Main-Dark, #232323);
    text-align: center;
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
    letter-spacing: -0.72px;
    text-transform: uppercase;
}

.lower-section, .second-lower-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    flex-wrap: wrap;
}

.second-lower-section {
    gap: 98px;
}

.block {
    border-left: 1px solid #e9e9e9;
    text-align: left;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin-left: 98px;
    margin-top: 20px;
}

.block:first-child {
    margin-left: 50px;
}

.block-text {
    margin-bottom: 10px;
    text-align: left;
    width: 200px;
    height: 48px;
    margin-left: 15px;
    color: var(--yacht, #333);
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
}

.block-number {
    display: flex;    
    transform: none;
    color: #B56540;
    text-align: center;
    font-family: Urbanist;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.additional-text {
    transform: none;
    color: #B56540;
    text-align: center;
    font-family: Urbanist;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bottom-row {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-left: 15px;
}

.space {
    margin-left: 40px;
}

.full-width-img {
    width: 80%; /* Уменьшение ширины на 10% */
    height: auto; /* Сохранение пропорций изображения */
    display: block; /* Убедитесь, что изображение отображается как блок */
    margin: 5% auto; /* Равные отступы сверху и снизу, выравнивание по центру по горизонтали */
}

.panel-orange {
    width: 100%;
    position: relative;
    height: 1500px;
}

.panel-image, .second-panel-image {
  width: 100%;
  height: auto; /* Сохраняет пропорции изображения */
  display: block; /* Убирает возможные отступы под изображением */
  margin: 0 auto; /* Центрирует изображение внутри контейнера */
}

.animated-image {
    background-size: cover;
    background-position: center;
}

.animated-image2 {
    background-image: url('../images/Steps.jpg');
    background-size: cover;
    background-position: center;
}

.animated-image1 {
    background-image: url('../images/White_ship.jpg');
    background-size: cover;
    background-position: center;
}

.body_2 {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-text {
    flex: 1;
    display: flex;
    align-items: flex-end; 
    justify-content: center; 
    color: var(--Main-Dark, #232323);
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.bottom-text {
    flex: 1;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    height: 50%;
    align-items: center;
    margin-top: 20px;
}

.bottom-text-container {
    width: 944px;
    color: var(--GREY, #464546);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
}

.div-color {
    width: 100%;
    height: 1800px;
}

.two-photos {
  position: relative;
  height: 1400px;
  width: 100%;
}

.left-photo, .right-photo {
  position: absolute;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.left-photo {
  bottom: 0;
  width: calc(50% - 25px);
  left: 0;
  background-image: url('../images/Grey%20Yacht.jpg'); /* Замените на путь к вашему левому фото */
  background-size: cover; /* изображение обрезается и заполняет контейнер, сохраняя соотношение сторон */
  background-position: center; /* изображение центрируется */
}

.right-photo {
  top: 0;
  right: 0;
  width: calc(50% - 25px);
  background-image: url('../images/Marina.jpg'); /* Замените на путь к вашему правому фото */
  background-size: cover; /* изображение обрезается и заполняет контейнер, сохраняя соотношение сторон */
  background-position: center; /* изображение центрируется */
}

.second-two-photos {
  position: relative;
  height: 1400px;
  width: 100%;
}

.second-left-photo, .second-right-photo {
  position: absolute;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.second-left-photo {
  bottom: 0;
  width: calc(50% - 25px);
  left: 0;
  background-image: url('../images/Hammer%20Hand.jpg'); /* Замените на путь к вашему левому фото */
  background-size: cover; /* изображение обрезается и заполняет контейнер, сохраняя соотношение сторон */
  background-position: center; /* изображение центрируется */
}

.second-right-photo {
  top: 0;
  right: 0;
  width: calc(50% - 25px);
  background-image: url('../images/Disc.jpg'); /* Замените на путь к вашему правому фото */
  background-size: cover; /* изображение обрезается и заполняет контейнер, сохраняя соотношение сторон */
  background-position: center; /* изображение центрируется */
}

.animated-text {
    opacity: 0;
    transform: translateY(100px);
}

.body_3, .body_4, .body_5 {
    display: flex;
    width: 100%;
    height: 920px;
    flex-direction: column;
}

.body_3 {
    height: auto;
}

.transform-body_3 {
    transform: translateY(-400px);
}

.second-body_3 {
    transform: translateY(-300px);
}



.box1 {
    align-self: center;
    text-align: center;
    color: var(--Main-Dark, #232323);
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 20px;
}

.box2, .box3, .box1-2, .box1-3 {
    align-self: center;
    margin: 20px;
    color: var(--GREY, #464546);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
}

.box2, .box3 {
    max-width: 944px;
}

.box1-2, .box1-3 {
    max-width: 900px;
}

.body_box {
    width: 100%;
    height: 250px;
}

.second-box1 {
    align-self: center;
    text-align: center;
    max-width: 824px;
    font-size: 48px;
    margin: 20px;
    height: 120px;
}

.second-box2 {
    align-self: center;
    text-align: center;
    height: 300px;
    max-width: 824px;
    font-size: 48px;
    margin: 20px;
}

.animated-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.green, .purple {
    position: relative;
    width: 100%;
    height: 100%;
    
}

.image-container {
  	width: 100%;
	height: 200vh;
	position: relative;
}

.green, .purple {
    position: relative;
    width: 100%;
    height: 100%;
}

.body_4 {
    width: 100%;
    height: auto;
}

.row-1 {
    height: 135px;
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Отступ между строками */
    margin-left: 15px;
    color: var(--Copper, #B56540);
    font-family: Urbanist;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.row-2 {
    height: 50px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: var(--yacht, #333);
    font-family: Urbanist;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.row-3 {
    height: 115px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: var(--yacht, #333);
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.second-lower-block {
    width: 385px;
    border-left: 1px solid #e9e9e9;
    text-align: left;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.animation-text-block {
    position: relative;
}

.second-upper-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 480px;
    width: 100%;
    text-align: center;
}

.second-centered-text {
    color: var(--Main-Dark, #232323);
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 200px;
}

.subscription {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-screen-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.centered-content {
    text-align: center;
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: Urbanist;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.centered-button {
    display: inline-flex;
    height: 45px;
    padding: 12px 60px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: 'Urbanist';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 60px;
    cursor: pointer;
    position: relative;
    border: 2px solid white;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.320, 1);
    overflow: hidden;
}

.centered-button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    border: 1px solid #b56540;
    background-color: #b56540;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.centered-button:hover::before {
    scale: 4;
}

.centered-button:hover {
    scale: 1.1;
    border: 1px solid #b56540;
}

.centered-button:active {
    scale: 1;
}

.before-swiper {
    width: 100%;
    height: 315px;
    background-color: #F0F0F0;
    color: var(--Main-Dark, #232323);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 64.8px */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.before-swiper-text {
    margin-top: 50px;
}

.container-swiper {
    background-color: #F0F0F0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.text-slider {
    height: 462px;
    width: 1220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #F9F9F9;
}

.top-text-slider {
    width: 100%;
    height: 150px;
}

.top-slider {
    margin: 50px;
}

.middle-text-slider {
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.mid-slider {
    color: var(--GREY, #464546);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
}

.slide1 {
    width: 843px;
}

.slide2 {
   width: 881px; 
}

.slide3 {
   width: 706px; 
}

.mid-slider p {
    margin-bottom: 20px;
}

.mid-slider p:last-child {
    margin-bottom: 0;
}

.bot-slider {
    color: var(--yacht, #333);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 26px */
    margin-bottom: 30px;
    margin-top: 20px;
}

.bottom-text-slider {
    width: 100%;
    height: 102px;
    border-top: 1px solid #C1C1C1;
    border: 530px;
}

.line-slider {
    width: 530px;
    border-top: 1px solid #C1C1C1;
    height: 1px;
    margin: 0 auto;
}

.swiper-wrapper {
    display: flex;
}

.container-btn-swiper {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 100px;
    position: relative;
}

.swiper-button-prev {
    background-image: url('../images/Left_Arrow.svg');
    background-size: 100% 100%;
    margin-left: 46%;
    height: 45px;
    width: 82.5px;
    position: relative;
}

.swiper-button-next {
    background-image: url('../images/Right_Arrow.svg');
    background-size: 100% 100%;
    margin-right: 46%;
    height: 45px;
    width: 82.5px;
    right: 0;
    position: absolute;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    scale: 1.2;
}

.swiper-block {
    width: 100%;
    height: 100%;
}

.block-side {
    width: 100%;
}

.block-body {
    min-width: 0;
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    position: static !important;
    margin-top: 80px;
}

.after-swiper {
    width: 100%;
    height: 150px;
    background-color: #F0F0F0;
}

.rect {
    position: relative;
    width: 100vw;
    height: 1000px;
    text-align: center;
}

.rect-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 250px; /* Отступ сверху для первой строки */
}

.line1 {
    width: 520px;
    height: 65px;
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 64.8px */
    text-transform: uppercase;
    margin: 0 auto;
}

.line2 {
    width: 410px;
    height: 30px;
    margin: 20px auto 0 auto;
    color: var(--White, #F0F0F0);
    text-align: center;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.earth {
    position: relative;
    width: 100%;
    height: 129vh;
}

.earth-photo {
    position: absolute;
    width: 100%;
    height: 100%
}

.countries {
    position: relative;
    width: 100%;
    margin-top: 10%;
}

.form {
    height: 900px;
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #464546;
    
}

.form-back {
    width: 100%;
    height: auto;
    margin-top: 20px; /* Задайте нужное значение, чтобы .form-back не налезал на .map-container */
    position: relative;
    z-index: 1;
}

.top-form {
    height: 250px;
    width: 100%;
    position: relative;
}

.top-form-text {
    width: 712px;
    height: 116px;
    align-content: center;
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: Urbanist;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.68px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bot-form {
    height: 650px;
    width: 1680px;
    display: flex;
    flex-direction: column;
}

.bot-form-top {
    height: 425px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top-part {
    height: 270px;
    display: flex;
    justify-content: center;
    padding-top: 100px; /* Отступ сверху */
    gap: 30px; /* Расстояние между строками */
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Расстояние между элементами внутри контейнера */
}

.input-text {
    font-size: 16px;
    display: flex;
    color: white;
    gap: 10px;
}

.input-text-bottom {
    color: #F63030;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
}

.form-name-text {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
    text-transform: uppercase;
}

.required {
    color: #9D9D9D;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
}

.bottom-part {
    height: 140px;
    display: flex;
    justify-content: center;
}

.input-line {
    width: 540px;
    height: 46px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #3F3F3F;
    background: linear-gradient(to bottom, #292929, #292929);
}

.input-line:focus {
    border-color: lightgray; /* Замените #FF0000 на желаемый цвет */
    outline: none; /* Удаление стандартного обвода */
}

.input-message {
    width: 1109px;
    height: 100px;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #3F3F3F;
    background: #292929;
    line-height: 1.2; /* Обеспечивает нормальный интервал между строками */
    resize: none; /* Убирает возможность изменять размер textarea */
    padding: 10px;
}

/* Стилизация ползунка textarea */
.input-message::-webkit-scrollbar {
    width: 12px; /* Ширина ползунка */
}

.input-message::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.input-message::-webkit-scrollbar-thumb {
    border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #444;
}

.bot-form-bottom {
    height: 138px;
    width: 100%;
    position: relative;
}

.message {
    width: 1109px;
    height: 170px;
}

.message-gap {
    display: flex;
    flex-direction: column; /* Выравнивание элементов по вертикали */
    gap: 5px; /* Расстояние между текстом и полем ввода */
    align-items: flex-start; /* Выравнивание по началу контейнера (по умолчанию) */
}

.upload {
    padding: 10px 25px;
    margin: 85px 180px 0 30px;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    background: var(--GREY, #464546);
    width: 359px;
    height: 39px;
    border: none;
    cursor: pointer;
    position: relative;
}

.upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-text {
    margin-left: 5px;
    color: var(--White, #F0F0F0);
    text-align: center;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.upload-optional {
    color: var(--Light-Grey, #C1C1C1);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-top-left {
    margin: 10px 10px 10px 0px; /* Optional margin for spacing */
    width: 21px;
    height: 21px;
    border-radius: 2px;
    background: #4C4C4C;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.btn-bottom-center {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 207px;
    padding: 12px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--Bright-white, #FFF);
    text-align: center;
    font-family: 'Urbanist';
    font-size: 18px;
    border: 1px solid white;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.320, 1);
    overflow: hidden;
    cursor: pointer;
}

.btn-bottom-center::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    border: 1px solid #b56540;
    background-color: #b56540;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-bottom-center:hover::before {
    scale: 4;
}

.btn-bottom-center:hover {
    border: 1px solid #b56540;
}

.btn-bottom-center:active {
    scale: 1;
}

.top-left-container {
    display: flex;
    align-items: center;
}

.input-line {
    width: 540px;
    height: 46px;
    box-sizing: border-box;
    border-radius: 2px;
    border: 1px solid #3F3F3F;
    background: linear-gradient(to bottom, #292929, #292929);
}

.input-line:focus {
    border-color: lightgray; /* Замените #FF0000 на желаемый цвет */
    outline: none; /* Удаление стандартного обвода */
}

.button-text {
    margin-left: 4px;
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
}

.privacy-policy {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.text-in-input {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
    padding-left: 10px;
}

.footer-container {
    width: 100%;
    height: 335px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

.footer-left-blocks {
    display: flex;
    gap: 70px; /* Расстояние между блоками */
    margin-top: 80px;
}

.footer-left-blocks:first-child {
    margin-left: 145px;
}

.footer-block1 {
    width: 207px; /* Ширина блока */
    height: 132px; /* Высота блока */
}

.footer-block2 {
    width: 284px; /* Ширина блока */
    height: 75px; /* Высота блока */
}

.footer-block3 {
    width: 290px; /* Ширина блока */
    height: 75px; /* Высота блока */
}

.footer-right-block {
    width: 170px; /* Ширина правого блока */
    height: 70px; /* Высота правого блока */
    margin-top: 80px;
    margin-right: 145px;
    box-sizing: border-box;
}

.footer-text {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.footer-address {
    color: var(--Light-Grey, #C1C1C1);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: capitalize;
}

.footer-address-margin {
    margin-top: 13px;
}

.footer-link {
    color: #DB7A4D;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    text-decoration-line: underline;
}

.margin-link {
    margin-top: 11px;
}

.company-link {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: lowercase;
}

.company-link:last-child {
    margin-top: 8px;
}

.company {
    width: 169px;
    height: 66px;
    display: flex;
    flex-direction: column;
}

.last {
    width: 100%;
    height: 121px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    background: #1E1E1E;
}

.text-last {
    color: var(--White, #F0F0F0);
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

.last-left {
    display: flex;
    gap: 65px; /* Расстояние между блоками */
    margin-top: 49px;
}

.last-left:first-child {
    margin-left: 145px;
}

.last-block1 {
    width: 230px;
    height: 24px;
}

.last-block2 {
    width: 230px;
    height: 24px;
}

.last-right {
    width: 100px; /* Ширина правого блока */
    height: 40px; /* Высота правого блока */
    margin-top: 41px;
    margin-right: 120px;
    box-sizing: border-box;
}

.last-right::after {
    content: "";
    display: block;
    height: 100px; /* Высота блока, которую нужно скрыть */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white; /* Цвет фона для скрытия содержимого */
    z-index: -1; /* Убедитесь, что этот элемент находится под другим контентом */
}

.linked {
    display: flex;
    gap: 20px;
}

.linked button {
    width: 40px;
    height: 40px;
    background: #1E1E1E;
    border: none;
}

.start-earth {
    width: 100%;
    height: auto;
    margin-top: -500px;
    position: relative;
    background-image: url('../images/Vector%20234.png');
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.vector, .vector1 {
    will-change: opacity, transform;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.popup-top {
    margin-top: 32px;
    width: 73px;
    height: 55px;
}

.popup-middle {
    margin-top: 26px;
    color: var(--Bright-white, #FFF);
    font-family: Urbanist;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.popup-bottom {
    color: var(--Bright-white, #FFF);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 5px;
}

.child-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.input-line1, .input-line2, .input-line3 {
    width: 540px;
    height: 46px;
    box-sizing: border-box;
    border-radius: 5px;
    background: linear-gradient(to bottom, #292929, #292929);
}

.button-icon {
    width: 24px;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    width: 346px;
    height: 207px;
    color: #fff;
    z-index: 1000;
}

/* Медиазапросы для различных устройств */

/* Для телефонов в портретной ориентации */
@media (min-width: 320px) {
    .bot-form-bottom {
        height: 200px;
    }
    
    .animated-image2 {
        background-image: url('../images/Steps_phone.jpg');
    }
    
    .animated-image1 {
        background-image: url('../images/White_ship_phone.jpg');
    }
    
    .right-photo {
        background-image: url('../images/Marina_phone.jpg');
    }
    
    .left-photo {
        background-image: url('../images/Grey_Yacht_phone.jpg');
    }
    
    .second-left-photo {
        background-image: url('../images/Hand_Stone_phone.jpg');
    }
    
    .second-right-photo {
        background-image: url('../images/Disc_phone.jpg');
    }
    
    .centered-button {
        width: 160px;
        padding: 10px 44px;
        font-size: 14px;
    }
    
    .watch-video-text {
        width: 160px;
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .form {
        height: 830px;
    }
    
    .bot-form {
        height: 710px;
    }
    
    .footer-left-blocks {
        margin-top: 60px;
    }
    
    .bottom-text-container {
        width: 270px;
        font-size: 14px;
    }
    
    .div-color {
        height: auto;
        margin-top: 250px;
    }
    
    .box {
        height: 150px;
    }
    
    .body_box {
        height: 150px;
    }
    
    .update-data {
        font-size: 14px;
    }
    
    .button-icon-close {
        display: none;
    }
    
    .start-earth {
        margin-top: -740px;
    }
    
    .before-swiper {
        height: 180px;
    }
    
    .green, .purple {
        height: 100vh;
    }
    
    .scale-photo {
        display: none;
    }
    
    .menu-button-text {
        display: none;
    }
    
    .menu-button {
        font-size: 18px;
        right: 32px;
        left: auto;
    }
    
    .header-container {
        height: 70px;
    }
    
    .logo {
        max-width: 168px;
    }
    
    .centered-text {
        font-size: 23px;
        width: 320px;
    }
    
    .upper-section {
        height: 200px;
    }
    
    .block-number, .additional-text {
        font-size: 48px;
    }
    
    .block:first-child {
        margin-left: 0px;
    }
    
    .block-text {
        font-size: 12px;
        width: 120px;
        height: 30px;
    }
    
    .space {
        margin-left: 10px;
    }
    
    .lower-section {
        justify-content: flex-start;
    }
    
    .panel-orange {
        background-image: url('../images/1_photo_mobile.jpg');
        height: 950px;
        margin-top: 100px;
        background-size: 100% 100%;
    }
    
    .body_2 {
        height: 200px;
    }
    
    .bottom-text {
        margin-top: 5px;
    }
    
    .two-photos {
        height: 916px;
    }
    
    .panel-image, .second-panel-image {
        margin: 0;
    }
    
    .left-photo {
        width: 317px;
        height: 485px;
        z-index: 1;
    }
    
    .right-photo {
        width: 317px;
        height: 485px;
    }
    
    .transform-body_3 {
        transform: translateY(0);
    }
    
    .box1 {
        font-size: 24px;
    }
    
    .box2, .box3 {
        max-width: 300px;
        font-size: 14px;
    }
    
    .box2, .box3, .box1-2, .box1-3 {
        margin: 6px;
    }
    
    .box1-2, .box1-3 {
        max-width: 300px;
        font-size: 14px;
    }
    
    .second-two-photos {
        height: 916px;
    }
    
    .second-left-photo {
        width: 317px;
        height: 485px;
        top: 0;
        bottom: auto;
    }
    
    .second-right-photo {
        width: 317px;
        height: 485px;
        bottom: 0;
        z-index: 1;
        top: auto;
    }
    
    .second-body_3 {
        transform: translateY(0px);
    }
    
    .second-centered-text {
        font-size: 24px;
        margin-bottom: 70px;
        margin-top: 125px;
    }
    
    .row-1 {
        font-size: 48px;
        height: 55px;
    }
    
    .row-2 {
        font-size: 20px;
        height: 40px;
    }
    
    .row-3 {
        font-size: 14px;
        height: 65px;
    }
    
    .second-lower-block {
        width: 300px;
    }
    
    .second-lower-section {
        gap: 35px;
    }
    
    .second-lower-section {
        justify-content: flex-start;
        padding-left: 40px;
    }
    
    .subscription {
        margin-top: 240px;
    }
    
    .centered-content {
        font-size: 30px;
    }
    
    .text-slider {
        width: 100vw;
    }
    
    .before-swiper {
        font-size: 24px;
    }
    
    .slide1, .slide2, .slide3 {
        width: 270px;
        font-size: 14px;
    }
    
    .line-slider {
        width: 280px;
    }
    
    .bot-slider {
        font-size: 16px;
    }
    
    .middle-text-slider {
        margin-bottom: 40px;
    }
    
    .container-btn-swiper {
        margin-top: 55px;
        margin-bottom: 5px;
    }
    
    .swiper-button-next {
        margin-right: 30%;
        width: 57.5px;
    }
    
    .swiper-button-prev {
        margin-left: 30%;
        width: 57.5px;
    }
    
    .after-swiper {
        height: 80px;
    }
    
    .line1 {
        font-size: 24px;
        height: 35px;
    }
    
    .line2 {
        font-size: 14px;
    }
    
    .line1, .line2 {
        width: 300px;
    }
    
    .slideImg {
        height: 40px;
    }
    
    .start-earth {
        background-size: 115vh 100%;        
        background-position: center;
    }
    
    .top-form-text {
        width: 300px;
        font-size: 24px;
        height: 170px;
        padding-bottom: 28px;
    }
    
    .form {
        height: 750px;
    }
    
    .top-part {
        padding-top: 0px;
        height: 310px;
    }
    
    .bot-form-top {
        height: 510px;
    }
    
    .upload-text, .upload-optional {
        font-size: 12px;
    }
    
    .form-name-text, .required, .button-text {
        font-size: 14px;
    }
    
    .btn-bottom-center {
        top: 75px;
        width: 160px;
        padding: 10px 44px;
        font-size: 14px;
    }
    
    .input-container {
        padding-bottom: 10px;
    }
    
    .message {
        height: 150px;
    }
    
    .top-left-container {
        align-items: flex-start;
    }
    
    .button-text {
        margin-top: 10px;
    }
    
    .bot-form-bottom {
        display: flex;
        justify-content: center;
    }
    
    .img-hid {
        visibility: hidden;
    }
    
    .vector, .vector1 {
        height: auto;
    }
    
    .form-back {
        margin-top: 100px;
    }
    
    .bot-form, .message {
        width: 300px;
    }
    
    .modal {
        width: 100%;
    }
    
    .modal-close {
        background-image: url(../images/X.svg);
        color: rgba(0, 0, 0, 0);
        background-size: 100% 100%;
        margin-left: 80vw;
        margin-top: 25px;
    }
    
    .modal-menu {
        right: 30px;
    }
    
    .modal-contact {
        right: 30px;
    }
    
    .btn-menu {
        width: 200px;
    }
    
    .footer-left-blocks, .top-part, .bottom-part, .footer-container, .last-left {
        display: block;
    }
    
    .footer-block-wrapper {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
    .upload {
        margin: 0px 0px 0 0px;
        width: 300px;
    }
    
    .input-line1, .input-line2, .input-line3 {
        width: 300px;
    }
    
    .block {
        margin-left: 0px;
    }
    
    .input-message {
        width: 300px;
    }
    
    .popup {
        display: block;
    }
    
    .last-left:first-child {
        margin-left: 35px;
    }
    
    .footer-left-blocks:first-child {
        margin-left: 0px;
    }
    
    .footer-address-margin {
        margin-top: 8px;
    }
    
    .margin-link {
        margin-top: 4px;
    }
    
    .footer-container {
        height: 400px;
    }
    
    .footer-block-wrapper {
        margin-top: 30px;
    }
    
    .top-text {
        font-size: 24px;
    }
    
    .map-container {
        margin-top: 120px;
    }
    
    .footer-text {
        font-size: 16px;
    }
    
    .footer-address, .footer-link {
        font-size: 12px;
    }
    
    .footer-block1 {
        height: 70px;
        width: 284px;
    }
    
    .footer-block2 {
        height: 55px;
    }
    
    .footer-block3 {
        height: 55px;
    }
    
    .footer-right-block {
        margin-right: 0px;
        width: 100%;
        margin-top: 50px;
    }
    
    .company {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        height: 35px;
    }
    
    .company-link:last-child {
        margin-top: 0px;
    }
    
    .company-link {
        font-size: 16px;
        color: #DB7A4D;
    }
    
    .text-last {
        font-size: 12px;
    }
    
    .last-left {
        margin-top: 30px;
    }
    
    .linkedImg {
        width: 40px;
    }
    
    .last-right {
        margin-top: 16px;
        margin-right: 0;
    }
    
    .last {
        height: 75px;
    }
    
    .rect-text {
        margin-top: 100px;
    }
    
    .body_5 {
        height: 1010px;
    }
}
@media (min-width: 425px) {
    .btn-menu {
        width: auto;
    }
}

@media (min-width: 480px) {
    .centered-text {
        font-size: 28px;
        width: auto;
    }
    
    .lower-section {
        justify-content: center;
    }
    
    .bottom-text-container {
        width: 400px;
        font-size: 14px;
    }
    
    .map-container {
        margin-top: 150px;
    }
    
    .vector, .vector1 {
        height: 100vh;
    }
}

@media (min-width: 500px) {
    .right-photo, .left-photo {
        width: 52vw;
        height: 85vh;
    }
    
    .second-right-photo, .second-left-photo {
        width: 52vw;
        height: 85vh;
    }
    
    .two-photos, .second-two-photos {
        height: 95vh;
    }
    
    .transform-body_3 {
        transform: translateY(-200px);
    }
}

@media (min-width: 700px) {
    .block {
        margin-left: 10px;
    }
    
    .block:first-child {
        margin-left: 50px;
    }
    
    .second-centered-text {
        font-size: 36px;
        margin-bottom: 0px;
        margin-top: 150px;
    }
    
    .second-upper-section {
        height: auto;
        padding-bottom: 100px;
    }
    
    .subscription {
        margin-top: 0px;
    }
    
    .centered-content {
        font-size: 40px;
    }
    
    .before-swiper {
        font-size: 36px;
    }
    
    .slide1, .slide2, .slide3 {
        width: 430px;
        font-size: 16px;
    }
    
    .line2 {
        font-size: 16px;
    }
    
    .vector, .vector1 {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .menu-button-text {
        display: contents;
    }
    
    .second-lower-block {
        width: 340px;
    }
    
    .body_5 {
        height: 880px;
    }
    
    .centered-text {
        width: 520px;
    }
    
    .menu-button {
        font-size: 18px;
        right: auto;
        left: 3em;
    }
    
    .button-icon {
        width: 18px;
    }
    
    .block {
        margin-left: 50px;
    }
    
    .bottom-text-container {
        width: 430px;
        font-size: 16px;
    }
    
    .top-text {
        font-size: 36px;
    }
    
    .before-swiper {
        height: 250px;
    }
    
    .subscription, .rect, .full-screen-photo {
        width: 100%;
    }
    
    .map-container {
        margin-top: 220px;
        height: 108vh;
    }
    
    .top-form-text, .line1 {
        width: 535px;
        font-size: 36px;
    }
    
    .centered-text {
        font-size: 36px;
    }
    
    .update-data {
        font-size: 16px;
    }
    
    .box1 {
        font-size: 36px;
    }
    
    .box2, .box3 {
        max-width: 430px;
        font-size: 16px;
    }
    
    .box1-2, .box1-3 {
        max-width: 430px;
        font-size: 16px;
    }
    
    .bot-form, .message {
        width: 500px;
    }
    
    .input-line1, .input-line2, .input-line3 {
        width: 500px;
    }
    
    .input-message {
        width: 500px;
    }
    
    .upload {
        width: 500px;
    }
    
    .upload-text, .upload-optional {
        font-size: 16px;
    }
    
    .second-lower-section {
        justify-content: center;
    }
    
    .panel-orange {
        background-image: url('../images/1_photo_ipad.jpg');
    }
    
    .text-last {
        font-size: 14px;
    }
    
    .bot-form-bottom {
        height: 200px;
    }
    
    .form {
        height: 830px;
    }
    
    .bot-form {
        height: 710px;
    }
    
    .footer-left-blocks {
        margin-top: 60px;
    }
    
    .body_1 {
        margin-top: 50px;
    }
    
    .upper-section {
        height: 270px;
    }
    
    .block-text {
        font-size: 14px;
        width: 145px;
        height: 35px;
    }
    
    .block-number, .additional-text {
        font-size: 64px;
    }
}

@media (min-width: 860px) {    
    .rect-text {
        margin-top: 250px;
    }
    
    .start-earth {
        margin-top: -500px;
    }
}

@media (min-width: 860px) { 
    .block:first-child {
        margin-left: 40px;
    }
    
    .block {
        margin-left: 50px;
    }
}

@media (min-width: 900px) { 
    .block {
        margin-left: 10px;
    }
    
    .block:first-child {
        margin-left: 0px;
    }
    
    .start-earth {
        background-position: center;
    }
}

@media (min-width: 992px) {
    .block-number, .additional-text {
        font-size: 64px;
    }
    
    .block {
        margin-left: 50px;
    }
    
    .block-text {
        width: 160px;
        font-size: 16px;
        height: 48px;
    }
    
    .lower-section {
        justify-content: center;
    }
    
    .line1, .line2 {
        width: 520px;
        height: 65px;
    }
    
    .line2 {
        font-size: 16px;
        margin: 0px auto 0 auto;
    }
    
    .line1 {
        font-size: 32px;
    }
    
    .top-form-text {
        width: 712px;
    }
    
    .modal-close {
        background-image: none;
        color: var(--Copper, #B56540);
        background-size: 100% 100%;
    }
    
    .btn-menu {
        width: auto;
    }
    
    .modal {
        width: 530px;
    }
    
    .second-centered-text {
        margin-bottom: 0px;
    }
    
    .modal-close {
        margin-top: 25px;
        margin-left: 100px;
        font-size: 20px;
    }
    
    .btn-menu {
        font-size: 28px;
    }
    
    .button-icon-close {
        width: 14px;
    }
    
    .button-icon-close {
        display: inline;
    }
}

@media (min-width: 500px) and (max-height: 500px) { 
    .start-earth {
        background-size: 100% 100%;
        background-position: center;
    }
    
    .rect-text {
        margin-top: 100px;
    }
    
    .start-earth {
        margin-top: -780px;
    }
    
    .img-hid {
        visibility: visible;
    }
}

@media (min-width: 1000px) {
    .start-earth {
        background-size: 100% 100%;
    }
    
    .map-container {
        margin-top: 0px;
        height: 100vh;
    }
    
    .form-back {
        margin-top: 0px;
    }
    
    .start-earth {
        margin-top: -650px;
    }
    
    .rect-text {
        margin-top: 160px;
    }
}

@media (min-width: 1025px) {
    .left-photo, .right-photo {
        width: calc(50% - 25px);
        height: 100%;
    }
    
    .animated-image2 {
        background-image: url('../images/White_ship.jpg');
    }
    
    .animated-image1 {
        background-image: url('../images/Steps.jpg');
    }
    
    .right-photo {
        background-image: url('../images/Marina.jpg');
    }
    
    .left-photo {
        background-image: url('../images/Grey%20Yacht.jpg');
    }
    
    .second-left-photo {
        background-image: url('../images/Hammer%20Hand.jpg');
    }
    
    .second-right-photo {
        background-image: url('../images/Disc.jpg');
    }
    
    .image-container {
        height: 100vh;
    }
    
    .footer-block-wrapper {
        text-align: start;
    }
    
    .centered-button {
        font-size: 16px;
        height: 40px;
        width: 175px;
        padding: 8px 48px;
    }
    
    .watch-video-text {
        font-size: 16px;
        height: 40px;
        width: 175px;
        padding: 8px 30px;
    }
    
    .upper-section {
        height: 200px;
    }
    
    .centered-text {
        width: auto;
    }
    
    .body_1 {
        margin-top: 0px;
    }
    
    .form {
        height: 750px;
    }
    
    .body_5 {
        height: 920px;
    }
    
    .subscription {
        margin-top: 250px;
    }
    
    .map-container {
        margin-top: 100px;
    }
    
    .body_box {
        height: 150px;
    }
    
    .box {
        height: 0px;
    }
    
    .two-photos, .second-two-photos {
        height: 100vh;
    }
    
    .panel-image, .second-panel-image {
        margin: 0 auto;
    }
    
    .block:first-child {
        margin-left: 50px;
    }
    
    .block {
        margin-left: 20px;
        margin-top: 0px;
    }
    
    .slide1, .slide2, .slide3 {
        width: 400px;
        font-size: 16px;
    }
    
    .update-data {
        font-size: 16px;
    }
    
    .modal-close {
        margin-top: 25px;
        margin-left: 100px;
        font-size: 20px;
    }
    
    .btn-menu {
        font-size: 28px;
    }
    
    .swiper-button-next {
        margin-right: 42%;
        width: 82.5px;
    }
    
    .swiper-button-prev {
        margin-left: 42%;
        width: 82.5px;
    }
    
    .company {
        width: 169px;
        height: 66px;
    }
    
    .panel-orange {
        background-image: none !important;
        height: 1000px;
        margin-top: 0px;
    }
    
    .scale-photo {
        display: block;
    }
    
    .start-earth {
        background-size: 100% 100%;
    }
    
    .img-hid {
        visibility: visible;
    }
    
    .footer-left-blocks, .top-part, .bottom-part, .footer-container, .last-left, .last {
        display: flex;
    }
    
    .top-form-text {
        font-size: 32px;
    }
    
    .input-line1, .input-line2, .input-line3 {
        width: 310px;
        height: 40px;
    }
    
    .second-left-photo {
        width: calc(50% - 25px);
        height: 100%;
    }
    
    .bot-form {
        height: 550px;
        width: 1000px;
    }
    
    .message {
        width: 820px;
    }
    
    .upload {
        margin: 85px 0px 0 45px;
        width: 359px;
    }
    
    .btn-top-left {
        margin: 10px 10px 10px 19px;
    }
    
    .form-name-text, .required, .input-text-bottom, .button-text, .privacy-policy {
        font-size: 14px;
    }
    
    .btn-bottom-center {
        font-size: 16px;
        height: 40px;
        width: 175px;
        padding: 8px 48px;
    }
    
    .footer-left-blocks:first-child, .last-left:first-child {
        margin-left: 40px;
    }
    
    .footer-left-blocks {
        margin-top: 60px;
    }
    
    .footer-right-block {
        margin-right: 20px;
        margin-top: 60px;
        width: 170px;
    }
    
    .footer-block1 {
        width: 207px;
        height: 89px;
    }
    
    .footer-left-blocks {
        gap: 35px;
    }
    
    .company-link:last-child {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    .form-name-text, .required, .button-text {
        font-size: 14px;
    }
    
    .upload-text, .upload-optional {
        font-size: 16px;
    }

    .footer-text {
        font-size: 16px;
    }
    
    .bot-form-bottom {
        display: block;
    }
    
    .footer-block-wrapper {
        margin-top: 0px;
    }
    
    .footer-address, .footer-link {
        font-size: 12px;
    }
    
    .margin-link {
        margin-top: -14px;
    }
    
    .company-link {
        font-size: 16px;
    }
    
    .footer-block2 {
        width: 245px;
        height: 75px;
    }
    
    .footer-block3 {
        width: 260px;
        height: 75px;
    }
    
    .footer-container {
        height: 235px;
    }
    
    .last-left {
        gap: 0px;
        margin-top: 20px;
    }
    
    .text-last {
        font-size: 14px;
    }
    
    .last-right {
        margin-top: 10px;
        margin-right: 10px; 
    }
    
    .last {
        height: 60px;
    }
    
    .linkedImg {
        height: 30px;
        width: 30px;
    }
    
    .form-back {
        margin-top: 0px;
    }
    
    .bot-form-top {
        height: 280px;
    }
    
    .top-part {
        height: 220px;
    }
    
    .rect-text {
        margin-top: 180px;
    }
    
    .div-color {
        margin-top: 0px;
    }
    
    .body_2 {
        height: 400px;
    }
    
    .bottom-text-container {
        width: 901px;
        font-size: 16px;
    }
    
    .transform-body_3 {
        transform: translateY(-450px);
    }
    
    .box1 {
        font-size: 32px;
    }
    
    .box2, .box3 {
        max-width: 800px;
        font-size: 16px;
    }
    
    .centered-text {
        font-size: 32px;
    }
    
    .top-text {
        font-size: 32px;
    }
    
    .box1-2, .box1-3 {
        max-width: 710px;
        font-size: 16px;
    }

    .second-right-photo {
        top: 0;
        bottom: auto;
        width: calc(50% - 25px);
        height: 100%;
    }
    
    .second-centered-text {
        font-size: 32px;
        margin-top: 80px;
        padding-bottom: 75px;
    }
    
    .top-text {
        flex: 0.5;
    }
    
    .body_5 {
        height: auto;
    }
    
    .second-body_3 {
        transform: translateY(-300px);
    }
    
    .second-upper-section {
        height: 380px;
    }
    
    .second-lower-section {
        gap: 75px;
        padding-left: 0px;
        justify-content: center;
    }
    
    .row-1 {
        font-size: 65px;
        height: 90px;
    }
    
    .row-2 {
        font-size: 24px;
        height: 40px;
        align-items: self-start;
    }
    
    .row-3 {
        font-size: 16px;
        height: 100px;
        align-items: self-start;
    }
    
    .second-lower-block {
        width: 400px;
    }
    
    .before-swiper {
        font-size: 32px;
    }
    
    .centered-content {
        font-size: 36px;
    }
    
    .top-part {
        height: 140px;
    }
    
    .upload-text, .upload-optional {
        font-size: 14px;
    }
    
    .input-message {
        width: 650px;
    }
    
    .upload {
        padding: 10px 12px;
    }
    
    .button-icon-close {
        width: 14px;
    }
    
    .second-upper-section {
        height: auto;
    }
    
    .vector, .vector1 {
        height: 100vh;
    }
}

/* Для планшетов в ландшафтной ориентации и небольших ноутбуков */
@media (min-width: 1300px) {
    .modal {
        width: 776px;
    }
    
    .map-container {
        margin-top: 0px;
    }
    
    .body_box {
        height: 250px;
    }
    
    .body_box {
        height: 250px;
    }
    
    .btn-menu {
        font-size: 32px;
    }
    
    .input-line1, .input-line2, .input-line3 {
        width: 400px;
        height: 40px;
    }
    
    .upload {
        padding: 10px 20px;
    }
    
    .input-message {
        width: 833px;
    }
    
    .upload-text, .upload-optional {
        font-size: 16px;
    }
    
    .subscription {
        margin-top: 250px;
    }
    
    .second-right-photo {
        top: 0;
        bottom: auto;
        width: calc(50% - 25px);
    }
    
    .second-left-photo, .second-right-photo {
        height: 100%;
    }
    
    .scale-photo {
        display: block;
    }
    
    .slideImg {
        width: auto;
        height: 50px;
    }
    
    .body_2 {
        height: 600px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .centered-text {
        font-size: 32px;
    }
    
    .block-number, .additional-text {
        font-size: 65px;
    }
    
    .block {
        margin-left: 30px;
    }
    
    .block-text {
        font-size: 16px;
        width: 170px;
    }
    
    .block:first-child {
        margin-left: 80px;
    }
    
    .space {
        margin-left: 25px;
    }
    
    .upper-section {
        height: 260px;
    }
    
    .top-text {
        font-size: 32px;
    }
    
    .bottom-text-container {
        font-size: 16px;
        width: 944px;
    }

    .two-photos, .second-two-photos {
        height: 100vh;
    }
    
    .box1 {
        font-size: 32px;
    }
    
    .box2, .box3 {
        max-width: 800px;
    }
    
    .box2, .box3, .box1-2, .box1-3 {
        font-size: 16px;
        margin: 10px;
    }
    
    .bottom-text {
        margin-top: 10px;
    }
    
    .transform-body_3 {
        transform: translateY(-450px);
    }
    
    .box1-2, .box1-3 {
        max-width: 710px;
    }
    
    .second-centered-text {
        font-size: 32px;
        padding-bottom: 75px;
    }
    
    .second-lower-block {
        width: 266px;
    }
    
    .second-lower-section {
        gap: 75px;
        padding-left: 0px;
        justify-content: center;
    }
    
    .row-1 {
        font-size: 65px;
        height: 90px;
    }
    
    .row-2 {
        font-size: 24px;
        height: 40px;
        align-items: self-start;
    }
    
    .row-3 {
        font-size: 16px;
        height: 100px;
        align-items: self-start;
    }
    
    .body_5 {
        height: auto;
    }
    
    .centered-content {
        font-size: 48px;
    }
    
    .centered-button {
        font-size: 16px;
        height: 40px;
        padding: 8px 48px;
    }
    
    .watch-video-text {
        font-size: 16px;
        height: 40px;
        padding: 8px 30px;
    }
    
    .before-swiper {
       font-size: 32px;
       height: 240px;
    }
    
    .swiper-button-next {
        margin-right: 42%;
        width: 82.5px;
    }
    
    .swiper-button-prev {
        margin-left: 42%;
        width: 82.5px;
    }
    
    .text-slider {
        height: 380px;
        width: 635px;
    }
    
    .mid-slider {
        font-size: 16px; 
    }
    
    .slide2, .slide1, .slide3 {
        width: 540px;
    }
    
    .top-text-slider {
        width: 100%;
        height: 80px;
        padding-top: 10px;
    }
    
    .top-slider {
        margin: 23px;
    }
    
    .middle-text-slider {
        height: 210px;
        margin-bottom: 0px;
    }
    
    .bottom-text-slider {
        height: 90px;
    }
    
    .bot-slider {
        margin-bottom: 30px;
        margin-top: 10px;
    }
    
    .line1 {
        font-size: 32px;
    }
    
    .line2 {
        font-size: 16px;
        margin: 0px auto 0 auto;
    }
    
    .rect-text {
        margin-top: 180px;
    }
    

    
    .top-form-text {
        font-size: 32px;
    }
    
    .bot-form {
        height: 550px;
        width: 1300px;
    }
    
    .message {
        width: 820px;
    }
    
    .input-message {
        width: 833px;
    }
    
    .upload {
        margin: 85px 45px 0 45px;
        width: 359px;
    }
    
    .btn-top-left {
        margin: 10px 10px 10px 19px;
    }
    
    .form-name-text, .required, .input-text-bottom, .button-text, .privacy-policy {
        font-size: 14px;
    }
    
    .btn-bottom-center {
        font-size: 16px;
        height: 40px;
        width: 175px;
        padding: 8px 48px;
    }
    
    .footer-left-blocks:first-child, .last-left:first-child {
        margin-left: 40px;
    }
    
    .footer-left-blocks {
        margin-top: 60px;
    }
    
    .footer-right-block {
        margin-right: 20px;
        margin-top: 60px;
        width: 170px;
    }
    
    .footer-block1 {
        width: 207px;
        height: 89px;
    }
    
    .footer-left-blocks {
        gap: 35px;
    }
    
    .footer-text {
        font-size: 16px;
    }
    
    .footer-address, .footer-link {
        font-size: 12px;
    }
    
    .margin-link {
        margin-top: -14px;
    }
    
    .company-link {
        font-size: 16px;
    }
    
    .footer-block2 {
        width: 245px;
        height: 75px;
    }
    
    .footer-block3 {
        width: 260px;
        height: 75px;
    }
    
    .footer-container {
        height: 235px;
    }
    
    .last-left {
        gap: 0px;
        margin-top: 20px;
    }
    
    .text-last {
        font-size: 14px;
    }
    
    .last-right {
        margin-top: 10px;
        margin-right: 10px; 
    }
    
    .last {
        height: 60px;
    }
    
    .linkedImg {
        height: 30px;
        width: 30px;
    }
    
    .form-back {
        margin-top: -100px;
    }
    
    .footer-left-blocks, .top-part, .bottom-part, .footer-container, .last-left, .last {
        display: flex;
    }
    
    .bottom-part {
        height: 140px;
    }
    
    .menu-button {
        font-size: 18px;
    }
    
    .button-icon {
        width: 18px;
    }
    
    .menu-button-text {
        margin-left: 7px;
    }
    
    .logo {
        max-width: 240px;
    }
    
    .modal-close {
        margin-top: 25px;
        margin-left: 100px;
        font-size: 20px;
    }
    
    .btn-menu {
        font-size: 32px;
        margin-top: 30px;
    }
    
    .modal-menu {
        right: 100px;
    }
    
    .contact-link {
       font-size: 24px;
    }
    
    .modal-contact {
        right: 100px;
    }
    
    .second-upper-section {
        height: auto;
    }
    
    .second-body_3 {
        transform: translateY(-300px);
    }
    
    .start-earth {
        background-size: 100% 100%;
    }
    
    .img-hid {
        visibility: visible;
    }
    
    .upload {
        margin: 85px 45px 0 45px;
        width: 359px;
    }
}

/* Для больших ноутбуков и настольных компьютеров */
@media (min-width: 1600px) {
    .update-data {
        font-size: 18px;
    }
    
    .top-text {
        flex: 1;
    }
    
    .form-name-text, .required, .button-text, .privacy-policy {
        font-size: 16px;
    }
    
    .upper-section {
        height: 480px;
    }
    
    .body_1 {
        height: 85vh;
    }
    
    .transform-body_3 {
        transform: translateY(-350px);
    }
    
    .text-slider {
        height: 462px;
    }
    
    .panel-orange {
        height: 1200px;
    }
    
    .second-body_3 {
        height: 690px;
        transform: translateY(-300px);
    }
    
    .second-lower-section {
        gap: 98px;
    }
    
    .second-centered-text {
        font-size: 40px;
    }
    
    .row-1 {
        font-size: 80px;
        height: 135px;
    }
    
    .row-2 {
        font-size: 28px;
        height: 50px;
        align-items: center;
    }
    
    .row-3 {
        font-size: 18px;
        height: 115px;
        align-items: center;
    }
    
    .line1 {
        font-size: 40px;
    }
    
    .line2 {
        font-size: 18px;
        margin: 20px auto 0 auto;
    }
    
    .box1 {
        font-size: 40px;
    }
    
    .box2, .box3, .box1-2, .box1-3 {
        font-size: 18px;
        margin: 20px;
    }
    
    .box1-2, .box1-3 {
        max-width: 900px;
    }
    
    .block-text {
        font-size: 20px;
        width: 200px;
    }
    
    .block-number, .additional-text {
        font-size: 75px;
    }
    
    .top-text-slider {
        height: 150px;
        padding-top: 0px;
    }
    
    .top-slider {
        margin: 50px;
    }
    
    .middle-text-slider {
        margin-bottom: 60px;
    }

    .slide2, .slide1, .slide3 {
        width: 700px;
        font-size: 18px;
    }
    
    .bottom-text-slider {
        height: 102px;
    }
    
    .line-slider {
        width: 530px;
    }
    
    .bot-slider {
        margin-top: 20px;
        font-size: 18px;
    }
    
    .subscription {
        margin-top: 250px;
    }
    
    .centered-content {
        font-size: 64px;
    }
    
    .centered-button {
        font-size: 18px;
        height: 45px;
        padding: 12px 60px;
        width: 210px;
    }
    
    .watch-video-text {
        font-size: 18px;
        height: 45px;
        padding: 12px 45px;
        width: 210px;
    }
    
    .earth {
        height: 155vh;
    }
    
    .rect {
        height: 1000px;
    }
    
    .centered-text {
        font-size: 40px;
    }
    
    .top-text {
        font-size: 40px;
    }
    
    .bottom-text-container {
        font-size: 18px;
    }
    
    .footer-container {
        height: 335px;
    }
    
    .footer-left-blocks {
        gap: 70px;
        margin-top: 80px;
    }
    
    .footer-right-block {
        margin-right: 145px;
        margin-top: 80px;
    }
    
    .footer-left-blocks:first-child {
        margin-left: 145px;
    }
    
    .footer-block1 {
        width: 207px;
        height: 132px;
    }
    
    .footer-text {
        font-size: 20px;
    }
    
    .footer-address, .footer-link {
        font-size: 16px;
    }
    
    .margin-link {
        margin-top: 11px;
    }
    
    .footer-block2 {
        width: 284px;
    }
    
    .footer-block3 {
        width: 290px;
        height: 75px;
    }
    
    .btn-bottom-center {
        top: 80px;
        width: 207px;
        padding: 12px 60px;
        font-size: 18px;
    }
    
    .text-last {
        font-size: 20px;
    }
    
    .last-right {
        margin-top: 41px;
        margin-right: 120px;
    }
    
    .linkedImg {
        width: 40px;
        height: 40px;
    }
    
    .before-swiper {
        font-size: 40px;
        height: 315px;
    }
    
    .last {
        height: 121px;
    }
    
    .last-left:first-child {
        margin-left: 145px;
    }
    
    .last-left {
        gap: 65px;
        margin-top: 49px;
    }
    
    .company-link {
        font-size: 24px;
    }
    
    .modal-close {
        margin-top: 22px;
        margin-left: 50px;
        font-size: 18px;
    }
    
    .top-form-text {
        font-size: 40px;
        height: 250px;
    }
    
    .box {
        height: 0px;
    }
}

@media (min-width: 1680px) {
    .block:first-child {
        margin-left: 98px;
    }
    
    .block {
        margin-left: 78px;
    }
}

@media (min-width: 1900px) {
    .line1 {
        width: 520px;
        height: 65px;
        font-size: 48px;
    }
    
    .form-back {
        margin-top: -40px;
    }
    
    .header-container {
        height: 100px;
    }
    
    .body_2 {
        height: 800px;
    }
    
    .box {
        height: 0px;
    }
    
    .update-data {
        font-size: 20px;
    }
    
    .before-swiper {
        font-size: 48px;
    }
    
    .top-text {
        font-size: 48px;
    }
    
    .bottom-text-container {
        font-size: 20px;
    }
    
    .button-icon-close {
        width: 18px;
    }
    
    .modal-close {
        font-size: 24px;
        margin-top: 45px;
        margin-left: 90px;
    }
    
    .menu-button {
        font-size: 18px;
        left: 4em;
        font-size: 24px;
    }
    
    .button-icon {
        width: 24px;
    }
    
    .logo {
        height: 57px;
        max-width: 330px;
    }
    
    .bottom-text {
        margin-top: 20px;
    }
    
    .body_2 {
        margin-top: -200px;
    }
    
    .body_1 {
        width: 100%;
        height: 100%;
    }
    
    .centered-text {
        font-size: 48px;
    }
    
    .second-lower-block {
        width: 385px;
    }
    
    .block-number, .additional-text {
        font-size: 100px;
    }
    
    .line2 {
        width: 410px;
        height: 30px;
        margin: 20px auto 0 auto;
        font-size: 20px;
    }
    
    .block-number, .additional-text {
        font-size: 100px;
    }
    
    .second-body_3 {
        height: 920px;
        transform: translateY(-500px);
    }
 
    .body_1 {
        height: 100%;
    }
    
    .block-text {
        width: 200px;
        font-size: 20px;
    }
    
    .top-form-text {
        font-size: 48px;
        height: 170px;
    }
    
    .transform-body_3 {
        transform: translateY(-500px);
    }
    
    .panel-orange {
        height: 1500px; 
    }

    .second-centered-text {
        font-size: 48px;
    }
    
    .bot-form {
        height: 650px;
        width: 1680px;
    }
    
    .bot-form-top {
        height: 425px;
    }
    
    .top-part {
        height: 270px;
        padding-top: 100px;
    }
    
    .input-line1, .input-line2, .input-line3 {
        width: 540px;
        height: 46px;
    }
    
    .input-text-bottom {
        font-size: 16px;
    }
    
    .message {
        width: 1109px;
        height: 170px;
    }
    
    .input-message {
        width: 1109px;
    }
    
    .upload {
        margin: 85px 180px 0 30px;
        width: 359px;
    }
    
    .btn-top-left {
        margin: 10px 10px 10px 0px;
    }
    
    .footer-right-block {
        margin-right: 145px;
    }
    
    .box1 {
        font-size: 48px;
    }
    
    .box2, .box3 {
        max-width: 944px;
    }
    
    .box2, .box3, .box1-2, .box1-3 {
        font-size: 20px;
    }
    
    .mid-slider {
        font-size: 20px;
    }
    
    .slide2 {
        width: 881px;
    }
    
    .bot-slider {
        font-size: 20px;
    }
}

@media (min-width: 2100px) {
    .text-slider {
        width: 1220px;
    }
    
    .logo {
        height: 100px;
        max-width: 430px;
    }
    
    .swiper-button-prev {
        margin-left: 46%;
    }

    .swiper-button-next {
        margin-right: 46%;
    }
    
    .body_4 {
        margin-top: 0px;
    }
    
    .body_2 {
        margin-top: 0px;
    }
    
    .panel-orange {
        height: 1800px;
    }
    
    .transform-body_3 {
        transform: translateY(-400px);
    }
    
    .second-body_3 {
        height: 920px;
        transform: translateY(-300px);
    }
    
    .row-1 {
        font-size: 96px;
    }
    
    .row-2 {
        font-size: 32px;
    }
    
    .row-3 {
        font-size: 18px;
    }
    
    .header-container {
        height: 140px;
    }
}