:root {
  --white: #fff;
  --blue: #0875fe;
  --black: #001449;
  --blue-light: #eaf3ff;
  --blue-dark: #004194;
  --font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: var(--white);
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  color: var(--blue-dark);
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

strong {
  font-weight: 700;
}

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.top--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top--left .title {
  text-align: left;
}
.top--left .pretitle {
  text-align: left;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(32px, 4.8vw, 40px);
  line-height: 130%;
  text-align: center;
  color: var(--blue-dark);
}
.title--white {
  color: #fff;
}

.pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
}

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
  padding: 16px;
  background: var(--blue);
  border-radius: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  border: none;
}
.btn:hover {
  background-color: #1880ff;
}

.sw-nav {
  margin-top: clamp(30px, 4.667vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(30px, 4.667vw, 40px);
}

.slbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background-color: var(--white);
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.slbtn svg path {
  fill: var(--black);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: auto !important;
}
.pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1 !important;
  background-color: var(--white);
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.pagination .swiper-pagination-bullet-active {
  background-color: var(--black);
}

.header {
  position: relative;
  z-index: 10;
  padding: clamp(12px, 2.133vw, 20px) 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 12px rgba(0, 20, 73, 0.06);
          box-shadow: 0 2px 12px rgba(0, 20, 73, 0.06);
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-logo {
  position: relative;
  z-index: 10;
}
.header .header-logo img {
  width: 100%;
  max-width: 168px;
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.header .btn-menu {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .btn-menu span {
  position: absolute;
  z-index: 10;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
}
.header .btn-menu span:nth-child(1) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.header .btn-menu span:nth-child(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header .btn-menu span:nth-child(3) {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.header .btn-menu.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .btn-menu.is-active span:nth-child(2) {
  opacity: 0;
}
.header .btn-menu.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .btn-menu:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.header .header-nav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-dark);
}
.header .btn {
  padding: 12px 20px;
  width: auto;
}
@media (max-width: 1200px) {
  .header .header-logo img {
    max-width: 150px;
  }
  .header__main {
    gap: 24px;
  }
  .header .header-nav ul {
    gap: 20px;
  }
  .header .header-nav ul li a {
    font-size: 16px;
  }
  .header .btn {
    font-size: 16px;
    gap: 8px;
  }
}
@media (max-width: 992px) {
  .header .btn-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__main {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 90px 30px 24px;
    background: var(--white);
    -webkit-box-shadow: 0 20px 50px rgba(0, 20, 73, 0.12);
            box-shadow: 0 20px 50px rgba(0, 20, 73, 0.12);
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    pointer-events: none;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  }
  .header .header-nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .header-nav ul li a {
    text-align: center;
  }
  .header__main.is-open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
  }
  .header__main .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .header__main .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.hero {
  padding-top: 177px;
  height: 771px;
  overflow: hidden;
  background-image: url(../img/hero.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  position: relative;
}
.hero__box .hero-elips {
  position: absolute;
  top: -300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
}
.hero .hero-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 70px;
  line-height: 110%;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}
.hero p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.hero .btn {
  width: auto;
  padding: 16px 40px;
  font-size: 18px;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 60px;
  }
  .hero p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
    height: 571px;
  }
  .hero .hero-title {
    font-size: 48px;
  }
  .hero p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 110px;
    height: 571px;
  }
  .hero .hero-title {
    font-size: 34px;
  }
  .hero p {
    font-size: 16px;
  }
}

.services {
  padding: clamp(80px, 13.333vw, 120px) 0px;
}
.services__box {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.services .services-item {
  height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .services .services-item {
    height: 300px;
  }
}
.services .services-item:nth-child(1) {
  width: calc(33.33% - 13.5px);
}
.services .services-item:nth-child(2) {
  width: calc(33.33% - 13.5px);
}
.services .services-item:nth-child(3) {
  width: calc(33.33% - 13.5px);
}
.services .services-item:nth-child(4) {
  width: calc(50% - 10px);
}
.services .services-item:nth-child(5) {
  width: calc(50% - 10px);
}
.services .services-item__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.services .services-item__image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #001F6E;
  opacity: 0.3;
}
.services .services-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.services .services-item__content {
  position: relative;
  z-index: 10;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  background-image: url(../img/Ellipse.svg);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center;
}
@media (max-width: 1200px) {
  .services .services-item__content {
    padding: 40px 20px;
  }
}
.services .services-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  margin-bottom: 12px;
}
.services .services-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 992px) {
  .services .services-item:nth-child(1) {
    width: calc(50% - 10px);
  }
  .services .services-item:nth-child(2) {
    width: calc(50% - 10px);
  }
  .services .services-item:nth-child(3) {
    width: calc(50% - 10px);
  }
  .services .services-item:nth-child(4) {
    width: calc(50% - 10px);
  }
  .services .services-item:nth-child(5) {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .services .services-item {
    height: 240px;
    width: 100% !important;
  }
  .services .services-item__title {
    font-size: 20px;
  }
  .services .services-item p {
    font-size: 16px;
  }
}

.about {
  padding: clamp(80px, 13.333vw, 120px) 0;
  background: var(--blue-light);
}
.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.about__main {
  width: 50%;
}
.about__content {
  margin-top: 40px;
}
.about .about_p {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--black);
  margin-top: 40px;
}
.about__list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.about .about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.about .about-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.about .about-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.about__image {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
@media (max-width: 992px) {
  .about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__main {
    width: 100%;
  }
  .about__list {
    gap: 30px;
  }
  .about .about-item__title {
    font-size: 20px;
  }
  .about .about-item p {
    font-size: 16px;
  }
  .about__image {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .about .container {
    gap: 40px;
  }
  .about__main {
    width: 100%;
  }
  .about__content {
    margin-top: 30px;
  }
  .about__list {
    gap: 24px;
  }
  .about .about-item img {
    width: 30px;
  }
  .about .about-item__title {
    font-size: 18px;
  }
  .about .about_p {
    font-size: 16px;
    margin-top: 30px;
  }
  .about__image {
    width: 100%;
    height: 400px;
  }
}

.why {
  padding: clamp(80px, 13.333vw, 120px) 0;
}
.why__box {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}
.why .why-item {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 24px;
}
.why .why-item__icon {
  background-color: var(--white);
  border-radius: 8px;
  width: 80px;
  aspect-ratio: 1/1;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.why .why-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.why .why-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 1200px) {
  .why .why-item__title {
    font-size: 22px;
  }
  .why .why-item p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .why__box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why__box {
    gap: 12px;
  }
  .why .why-item__icon {
    width: 50px;
    margin-bottom: 20px;
  }
  .why .why-item__icon img {
    width: 26px;
  }
  .why .why-item__title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .why__box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .why .why-item__icon {
    width: 50px;
    margin-bottom: 20px;
  }
  .why .why-item__icon img {
    width: 26px;
  }
  .why .why-item__title {
    font-size: 18px;
  }
}

.ctablock {
  background: var(--blue-dark);
  padding: 32px 0px;
}
.ctablock .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ctablock__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--white);
}
.ctablock .ctabtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
  background: var(--blue);
  border-radius: 50px;
  padding: 16px 40px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  white-space: nowrap;
}
.ctablock .ctabtn:hover {
  background-color: #167fff;
}
@media (max-width: 992px) {
  .ctablock .container {
    gap: 40px;
  }
  .ctablock__title {
    font-size: 20px;
  }
  .ctablock .ctabtn {
    font-size: 16px;
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .ctablock .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.woks {
  padding: clamp(80px, 13.333vw, 120px) 0;
}
.woks .top {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.woks__box {
  margin-top: 40px;
}
.woks .work-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.woks .work-item .comparison-wrp {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woks .work-item .comparison-wrp .comparison-container {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  -ms-touch-action: none;
      touch-action: none;
}
.woks .work-item .comparison-wrp .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.woks .work-item .comparison-wrp .image-before,
.woks .work-item .comparison-wrp .image-after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.woks .work-item .comparison-wrp .image-before img,
.woks .work-item .comparison-wrp .image-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.woks .work-item .comparison-wrp .slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.woks .work-item .comparison-wrp .slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--white);
  border-radius: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: ew-resize;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .woks .work-item .comparison-wrp .slider-button {
    width: 56px;
    height: 56px;
    gap: 8px;
  }
}
.woks .work-item .comparison-wrp .slider-button::before,
.woks .work-item .comparison-wrp .slider-button::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .woks .work-item .comparison-wrp .slider-button::before,
  .woks .work-item .comparison-wrp .slider-button::after {
    width: 14px;
    height: 14px;
  }
}
.woks .work-item .comparison-wrp .slider-button::before {
  background-image: url(../img/icons/ll.svg);
}
.woks .work-item .comparison-wrp .slider-button::after {
  background-image: url(../img/icons/rr.svg);
}
.woks .slbtn {
  background-color: var(--blue-light);
}
.woks .swiper-pagination-bullet {
  background-color: var(--blue-light);
}
.woks .swiper-pagination-bullet-active {
  background-color: var(--black);
}

.vessels {
  background: var(--blue-dark);
  padding: clamp(80px, 13.333vw, 120px) 0px;
}
.vessels__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 20px;
}
.vessels .vessels-item {
  width: 20%;
}
.vessels .vessels-item__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.vessels .vessels-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.vessels .vessels-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--white);
  margin-top: 22px;
}
@media (max-width: 1200px) {
  .vessels .vessels-item__title {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .vessels__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .vessels .vessels-item {
    width: calc(33.33% - 14px);
  }
  .vessels .vessels-item__title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .vessels .vessels-item {
    width: calc(50% - 10px);
  }
  .vessels .vessels-item__title {
    font-size: 16px;
  }
}

.rew {
  padding: clamp(80px, 13.333vw, 120px) 0px;
  background: var(--blue-light);
}
.rew__box {
  margin-top: clamp(30px, 4.667vw, 40px);
}
.rew .rewSwiper {
  position: relative;
}
.rew .rewSwiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.rew .rewSwiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rew .rew-itm {
  border-radius: 16px;
  background: var(--white);
  padding: 24px;
  min-height: 282px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .rew .rew-itm {
    min-height: 220px;
  }
}
.rew .rew-itm__top {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rew .rew-itm__content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.rew .rew-itm__bottom {
  margin-top: 16px;
}
.rew .rew-itm__name {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.rew .rew-itm__location {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-dark);
}

.contact-det {
  padding: clamp(80px, 13.333vw, 120px) 0px;
}
.contact-det__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 6.667vw, 60px);
}
.contact-det__main {
  width: 50%;
}
.contact-det .top {
  margin-bottom: clamp(40px, 6.667vw, 60px);
}
.contact-det__list {
  display: -ms-grid;
  display: grid;
  gap: clamp(30px, 4.667vw, 40px);
}
.contact-det .contact-det-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(16px, 2.667vw, 24px);
}
.contact-det .contact-det-item img {
  width: clamp(30px, 4.667vw, 40px);
}
.contact-det .contact-det-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 130%;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.contact-det .contact-det-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.contact-det__map {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.contact-det__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .contact-det__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-det__main {
    width: 100%;
  }
  .contact-det__map {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .contact-det__map {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .contact-det__map {
    height: 300px;
  }
}

.contact {
  background-image: url(../img/contact.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: clamp(60px, 9.333vw, 80px) 0px;
}
.contact .contact-form {
  width: 100%;
  max-width: 630px;
  border-radius: 16px;
  background: var(--white);
  padding: clamp(24px, 4.267vw, 40px);
}
.contact .contact-form .top {
  margin-bottom: 40px;
}
.contact .contact-form-group {
  margin-bottom: 16px;
}
.contact .contact-form-group input, .contact .contact-form-group textarea {
  width: 100%;
  background: var(--blue-light);
  border-radius: clamp(20px, 3.333vw, 30px);
  padding: 16px clamp(16px, 2.667vw, 24px);
  border: 1px solid var(--blue-light);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--blue-dark);
}
.contact .contact-form-group input::-webkit-input-placeholder, .contact .contact-form-group textarea::-webkit-input-placeholder {
  color: var(--blue-dark);
}
.contact .contact-form-group input::-moz-placeholder, .contact .contact-form-group textarea::-moz-placeholder {
  color: var(--blue-dark);
}
.contact .contact-form-group input:-ms-input-placeholder, .contact .contact-form-group textarea:-ms-input-placeholder {
  color: var(--blue-dark);
}
.contact .contact-form-group input::-ms-input-placeholder, .contact .contact-form-group textarea::-ms-input-placeholder {
  color: var(--blue-dark);
}
.contact .contact-form-group input::placeholder, .contact .contact-form-group textarea::placeholder {
  color: var(--blue-dark);
}
.contact .contact-form-group input:focus, .contact .contact-form-group textarea:focus {
  border-color: var(--blue);
}
.contact .contact-form-group textarea {
  height: 120px;
  resize: none;
}

.footer {
  background: var(--blue-dark);
  padding: 40px 0;
}
.footer .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding-bottom: 60px;
}
.footer .footer-main img {
  width: 100%;
  max-width: 168px;
}
@media (max-width: 992px) {
  .footer .footer-main {
    gap: 32px;
  }
}
.footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 925px;
}
@media (max-width: 992px) {
  .footer .footer-box {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .footer .footer-col:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .footer .footer-col:nth-child(3) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .footer-nav ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.footer .footer-nav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.footer .footer-contact {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.footer .footer-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.footer .footer-contact__item img {
  width: 20px;
}
.footer .footer-sosial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer .footer-sosial__item {
  border-radius: 8px;
  background-color: var(--blue);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .footer-sosial__item img {
  height: 24px;
}
.footer .footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--white);
}
.footer .footer-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 992px) {
  .footer {
    padding: 36px 0;
  }
  .footer .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 40px;
  }
  .footer .footer-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
    gap: 32px;
  }
  .footer .footer-col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
            flex: 1 1 200px;
    min-width: 200px;
  }
  .footer .footer-nav ul {
    gap: 16px;
  }
  .footer .footer-contact {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }
  .footer .footer-main {
    padding-bottom: 32px;
  }
  .footer .footer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .footer .footer-col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-width: 0;
  }
  .footer .footer-nav ul {
    gap: 12px;
  }
  .footer .footer-contact__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .footer-sosial {
    gap: 12px;
  }
}