@font-face {
  font-family: 'GeneralSans-Light';
  src: url('../fonts/GeneralSans-Light.woff2') format('woff2'),
    url('../fonts/GeneralSans-Light.woff') format('woff');
  font-weight: 300;
}

@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
    url('../fonts/GeneralSans-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
    url('../fonts/GeneralSans-Medium.woff') format('woff');
  font-weight: 500;
}

@font-face {
  font-family: 'Cloudsters';
  src: url('../fonts/cloudsters-cloudsters-400.otf');
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  margin: 0;
  font-family: 'GeneralSans-Light', sans-serif;
  font-weight: 300;
  color: #09090a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.overflow-hidden {
  overflow: hidden;
}

.display-none {
  display: none;
}

a {
  text-decoration: none;
  color: #0918f9;
}

.container {
  max-width: 1440px;
  margin: auto;
}

.pxy {
  padding-left: 100px;
  padding-right: 100px;
}

.text {
  font-size: 16px;
  line-height: 33px;
  letter-spacing: 0.03em;
}

.font-500 {
  font-family: 'GeneralSans-Medium';
}

.title {
  font-family: 'Cloudsters';
  font-size: 67px;
  line-height: 67px;
  letter-spacing: 0.09em;
  color: #0918f9;
  margin: 166px auto;
  font-weight: 400;
  text-align: center;
}

.sm-title {
  font-family: 'Cloudsters';
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.09em;
  font-weight: 400;
  color: #0918f9;
}

.mb-27 {
  margin-bottom: 27px;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.btn {
  font-size: 18px;
  font-family: 'GeneralSans-Medium';
  color: #0918f9;
  padding-top: 54px;
  display: block;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  cursor: pointer;
}

.icon {
  position: relative;
  right: -11px;
  transition: all 0.3s ease-in-out;
}

.btn:hover .icon {
  right: -16px;
}

/* Hero Section */

.hero-section {
  background-image: url('../images/hero-image.png');
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 1s ease-in-out;
}

.white {
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
}

.right-side-top {
  position: absolute;
  width: 100%;
  height: 100vh;
  clip-path: polygon(100% 50%, 52% 0, 100% 0);
  background: #0918f9;
  transition: all 0.3s ease-in-out;
}

.right-side-bottom {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #0918f9;
  clip-path: polygon(100% 50%, 50% 102%, 100% 100%);
  transition: all 0.3s ease-in-out;
}

.left-side-top {
  position: absolute;
  width: 100%;
  height: 100vh;
  clip-path: polygon(0 50%, 48% 0, 0 0);
  background: #0918f9;
  transition: all 0.3s ease-in-out;
}

.left-side-bottom {
  position: absolute;
  width: 100%;
  height: 100vh;
  clip-path: polygon(0 50%, 50% 102%, 0 100%);
  background: #0918f9;
  transition: all 0.3s ease-in-out;
}

.main-logo {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 218px;
  opacity: 1;
  transform: translate(-50%, 0px);
}

/* Header */

.header .container {
  padding-top: 40px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

.display-block {
  display: block !important;
}

.hero-language {
  color: #0918f9;
}

.hero-language .text {
  color: #0918f9;
  /* font-family: 'GeneralSans-Medium'; */
  font-family: 'Cloudsters';
}

.hero-language .text:hover {
  color: #0918f9;
}

.humburger {
  background-image: url(../images/menu-open.svg);
  width: 22px;
  height: 27px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.header.open {
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
}

.header.open .humburger {
  background-image: url(../images/menu-close.svg);
}

.header .menu-links {
  display: none;
}

.header.open .menu-links {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-top: 130px;
  gap: 80px;
  align-items: center;
}

.menu-links a {
  font-family: 'Cloudsters';
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.009em;
  color: #09090a;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
}

.menu-links .icon {
  margin-right: 23px;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}

.menu-links a:hover .icon {
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.menu-links .move {
  display: block;
  transform: translate(0px, 0px);
  transition: all 0.4s ease-in-out;
}

.menu-links a:hover .move {
  transform: translate(36px, 0px);
}

.menu-links .lng {
  display: flex;
  align-items: center;
}

.menu-links .lng a:first-child {
  border-right: 2px solid #09090a;
  padding-right: 26px;
  margin-right: 26px;
}

.menu-links .lng a {
  position: relative;
}

.menu-links .lng a.active::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 31px;
  left: 0;
  bottom: -8px;
  background-color: #0918f9;
}

/* About us */

.about-us .text {
  max-width: 1212px;
  margin: auto;
  padding: 0px 40px;
  text-align: center;
}

.about-us .btn {
  /* justify-content: flex-start; */
  margin: 50px auto 200px;
}

.video-container {
  max-width: 525px;
  max-height: 726px;
  overflow: hidden;
  display: inline-block;
}

.video-container video {
  width: 100%;
  height: 100%;
}

/* Our expertise */

.our-expertise .container {
  padding-top: 80px;
  padding-bottom: 97px;
  position: relative;
  z-index: 1;
}

.our-expertise .sm-title {
  margin-bottom: 81px;
}

.vessels-bg {
  background-image: url(../images/vessels-bg.png);
  width: 100%;
  height: auto;
  background-size: cover;
  position: relative;
}

.vessels-bg::after {
  content: '';
  position: absolute;
  background-image: url(../images/vesels-bg-overlay.png);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-size: cover;
}

.vessels-cards {
  display: flex;
  gap: 20px;
}

.card {
  padding: 32px;
  text-align: center;
  background-color: #ffffff;
  width: 33%;
}

.card-title {
  font-family: 'Cloudsters';
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.09em;
  margin-bottom: 34px;
}

.card-img {
  max-width: 336px;
  width: 100%;
}

.card-description {
  opacity: 0;
  height: 0;
  padding: 0px 33px;
  transition: all 0s ease-in-out;
}

.card:hover .card-description {
  height: auto;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.card:hover .card-img,
.card:hover .btn {
  display: none;
}

.card .btn {
  padding-top: 20px;
}

/* Making */

.making {
  position: relative;
  height: 100%;
  background-color: #0918f9;
}

.making .container {
  padding-top: 70px;
  padding-bottom: 70px;
}

.making::after {
  content: '';
  position: absolute;
  background-image: url(../images/making-bg-overlay.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.2;
  left: 0;
  top: 0;
}

.making .sm-title {
  margin-bottom: 67px;
}

#making .splide__slide {
  display: flex;
  justify-content: space-between;
  z-index: 500;
}

#making .splide__track {
  /* width: 100%; */
  /* position: absolute; */
}

#making .text-md {
  font-weight: 300;
  margin: 24px 0px 36px;
}

#making .splide__slide col {
  height: 309px;
}

#making .splide__slide img {
  height: auto;
  object-fit: cover;
}

.custom-arrows.splide__arrows {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  z-index: 501;
}

.custom-arrows .splide__arrow {
  position: relative;
  width: 28px;
  background-color: transparent;
  transform: translateY(0);
  opacity: 1;
}

.custom-arrows .splide__arrow:disabled {
  opacity: 0.4;
}

.custom-arrows .splide__arrow--prev {
  left: 0;
  margin-right: 20px;
}

.custom-arrows .splide__arrow--next {
  right: 0;
}

.making .description {
  max-width: 412px;
}

.making .image img {
  position: relative;
}

/* Faq */

.faq {
  padding-top: 116px;
  padding-bottom: 116px;
}

.accordion {
  margin-top: 85px;
}

.accordion .accordion-item {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  border-bottom: 0.7px solid #30353d;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  font-family: 'GeneralSans-Regular';
  font-size: 18px;
  line-height: 37px;
  letter-spacing: 0.03em;
  font-weight: 400;
  border: none;
  outline: none;
  background: none;
  color: #09090a;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 14px;
  height: 14px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 14px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 14px;
  background: currentColor;
}

.accordion .accordion-item button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion .accordion-item button[aria-expanded='true'] + .content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
}

.accordion .content {
  opacity: 0;
  max-height: 0;
  transition: opacity 200ms linear, max-height 200ms linear;
}

.accordion .content p {
  margin-top: 32px;
}

/* Example slider */
.example-slider .splide__track {
  max-height: 301px;
}

.example-slider .splide__slide img {
  width: 420px;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.example-slider .splide__slide img:hover {
  -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}

/* Contact us */

.contact-us {
  padding-top: 116px;
  padding-bottom: 92px;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 85px;
}

.form-group {
  display: flex;
  gap: 20px;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 15px;
}

.sm-text {
  font-family: 'GeneralSans-Regular';
  font-size: 12px !important;
  line-height: 16px;
  letter-spacing: 0.03em;
  margin-top: 22px;
}

input,
select,
textarea {
  width: 100%;
  padding: 0px 27px;
  height: 48px;
  border: 0.7px solid #30353d;
  margin-top: 17px;
  resize: vertical;
  font-family: 'GeneralSans-Regular';
  font-size: 18px;
  line-height: 37px;
  letter-spacing: 0.03em;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none;
  outline: 0 none;
  background-color: transparent;
}

/* Footer */

.footer {
  padding-top: 93px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.footer-content .text {
  max-width: 315px;
}

.footer-nav .text {
  font-family: 'GeneralSans-Medium';
}

.footer .links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin-top: 10px;
}

.footer .links a {
  font-size: 16px;
  color: #09090a;
  line-height: 33px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease-in-out;
}

.footer .links a:hover {
  color: #0918f9;
}

.footer-stt {
  display: flex;
  justify-content: flex-end;
  padding: 52px 0 44px;
  margin-right: 7px;
}

.footer-stt .icon {
  right: -7px;
}

.footer-stt .btn:hover .icon {
  right: -12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}

.dropbtn {
  font-family: 'GeneralSans-Light';
  font-size: 16px;
  line-height: 33px;
  color: #09090a;
  padding-top: 0;
  font-weight: 300;
}

.dropbtn svg {
  margin-left: 8px;
  display: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 4px 10px;
  display: block;
}

.dropdown-content a:hover {
  color: #0918f9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.privacy-policy {
  margin-top: 200px;
}

.privacy-policy ul {
  margin-left: 20px;
}


@media (max-width: 1366px) {
  #making .splide__slide {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .about-us .content {
    margin-left: 30px;
  }
}


@media (max-width: 1054px) {
  .pxy {
    padding-left: 50px;
    padding-right: 50px;
  }

  .title {
    font-size: 50px;
    line-height: 56px;
    margin: 92px 20px;
    text-align: left;
  }

  .about-us .text {
    text-align: left;
    padding: 0 20px;
  }

  #making .splide__slide {
    flex-wrap: wrap;
    gap: 38px;
    flex-direction: column-reverse;
  }

  .making {
    /* min-height: 1054px; */
  }

  .making .sm-title {
    margin-bottom: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 33px;
  }

  .header.open .menu-links {
    margin-top: 80px;
    gap: 70px;
  }
}

@media (max-width: 786px) {
  .pxy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-logo {
    width: 150px;
    top: 45px;
  }

  .hero-language .text {
    font-size: 12px;
  }

  .about-us {
    align-items: flex-start;
    padding-top: 64px;
    flex-direction: column-reverse;
  }

  .about-us .content {
    margin-bottom: 30px;
    margin-left: 0;
  }

  .btn {
    padding-top: 48px;
  }

  .video-container {
    max-width: 320px;
    max-height: 443px;
  }

  .footer-nav .links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .our-expertise .container,
  .faq,
  .contact-us {
    padding-top: 65px;
    padding-bottom: 60px;
  }

  .vessels-cards {
    flex-direction: column;
    gap: 33px;
  }

  .our-expertise .sm-title {
    margin-bottom: 67px;
  }

  .making .description {
    max-width: 100%;
  }

  .splide__slide .sm-title {
    max-width: 165px;
  }

  .accordion {
    margin-top: 65px;
  }

  .accordion button .icon {
    top: 20px;
  }

  .accordion .accordion-item button[aria-expanded='true'] + .content {
    max-height: 500px;
  }

  .accordion-title {
    display: block;
    max-width: 255px;
  }

  .example-slider .splide__slide img {
    width: 300px;
  }

  .form-group {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .making {
    /* min-height: 1220px; */
  }
}
