/* Public styles — paste your public.css here */:root {
  --primary: #CD0011;
  --secondary: #0B1A2F;
  --accent: #E8212A;
  --title: #111111;
  --text: #555555;
  --text2: #888888;
  --bg: #F5F5F5;
  --surface: #FFFFFF;
  --border: #E0E0E0;
  --dark: #1A1A2E;
  --dark-bg: #0A0A0A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(7.5px, 0.520834vw, 10px);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, strong{
  font-family: 'Oswald', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =====================
   LAYOUT UTILITIES
   ===================== */
.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.between {
  justify-content: space-between;
}

.flex_middle {
  align-items: center;
}

.flex_bottom {
  align-items: flex-end;
}

.flex_top {
  align-items: flex-start;
}

.wrap {
  flex-wrap: wrap;
}

.gap {
  gap: 3rem;
}

.center {
  text-align: center;
}

/* =====================
   CONTENT CONTAINER
   ===================== */
.content {
  max-width: 138rem;
  margin: 0 auto;
  
}

.swiper_btns {
  gap: 3rem;
  display: flex;
}
.swiper_btns div {
  width: 5.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/swiper_right.svg) no-repeat center / 33.8%;
  filter: contrast(0) brightness(2);
}
button{
  outline: none;
  border: none;
  background: transparent;
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  filter: brightness(110%);
}

.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #6E7683;
  border-color: rgba(36, 36, 36, 0.45);
}
.swiper_btns div.swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 171.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.white div {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns.white div::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns.white div:hover {
  background-color: transparent;
}
.swiper_btns.white div:hover::after {
  filter: none;
}
.swiper_btns.white div.swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.swiper_btns.white div.swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}

/* =====================
   IMAGE UTILITIES
   ===================== */

.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg:after{
    content: "";
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to right,#0b1a2e,#0b1a2e00);
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.img_aba {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img_aba::before {
  content: '';
  display: block;
  padding-top: var(--h, 56.25%);
}

.img_aba img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_ct img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.img_cv img {
  object-fit: cover;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 2.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn_primary {
  background: var(--primary);
  color: #FFFFFF;
  transition: all 0.3s;
}

.btn_primary:hover {
  background: #c41820;
  color: #FFFFFF;
  filter: brightness(110%);
}

.btn_outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn_outline:hover {
  background: #FFFFFF;
  color: var(--dark);
}

.btn_outline_dark {
  background: transparent;
  color: var(--title);
  border: 1px solid rgba(11, 26, 46, 0.5) !important;
  font-weight: 500;
  
  transition: all 0.3s !important;
}

.btn_outline_dark:hover {
  background: var(--title);
  color: #FFFFFF;
}

/* =====================
   SUBTITLE / SECTION LABELS
   ===================== */
.subtitle {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subtitle:after{
  content: "";
  width: 3rem;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
  transform: translateY(1px);
}

.syedittext h2{
  font-size: 5rem;
  line-height: 6.2rem;
  color: var(--title);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.syedittext p{
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #6b6e78;
}

/* =====================
   HEADER
   ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1a2e;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .content {
  padding-top: 0;
  padding-bottom: 0;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

header .logo img {
  height: 4.3rem;
  width: auto;
}

header .logo p {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

header nav {
  display: flex;
  margin-left: auto;
  margin-right: 5rem;
  justify-content: center;
}

header nav .menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4rem;
}

header nav .menu > li > a {
  display: flex;
  align-items: center;
  height: 8.7rem;
  
  font-size: 1.6rem;
  font-weight: 350;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  font-family: 'Oswald', sans-serif;
}

header nav .menu > li > a:hover {
  color: var(--primary);
}

header nav .menu > li.menu-item-has-children {
  position: relative;
}

header nav .menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.6rem;
  margin-top: -0.2rem;
  display: none;
}

header nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 22rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--primary);
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  z-index: 100;
}

header nav .menu > li:hover .sub-menu {
  display: block;
}

header nav .sub-menu li a {
  display: block;
  padding: 0.9rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--title);
  transition: color 0.3s ease, background 0.3s ease;
}

header nav .sub-menu li a:hover {
  color: var(--primary);
  background: #F8F8F8;
}

header .btns {
  display: flex;
  align-items: center;
  gap: 3.1rem;
}

header .btn_search, header .btn_lang, header .btn_menu {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  width: 2rem;
  height: 2rem;
  background: url('../img/icon-search.svg') no-repeat center center/contain;
}
header .btn_lang{
    background-image: url('../img/icon-lang.svg');
}

header .btn_menu{
    display: none;
}
header .btn_search:hover,
header .btn_lang:hover,
header .btn_menu:hover {
  color: var(--primary);
}

header .btn_quote {
  background: var(--primary);
  color: #FFFFFF;
  padding: 1.45rem 3.6rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  transition: all 0.3s;
}

header .btn_quote:hover {
  background: #c41820;
  filter: brightness(110%);
}

header nav .con {
  display: flex;
  align-items: center;
}

header nav .close_box {
  display: none;
}

header nav .close:not(button) {
  display: none;
}

/* =====================
   CTA FACTORY
   ===================== */
.home_cta_factory {
  background: var(--secondary);
  padding: 4rem 0 4rem;
  overflow: hidden;
}

.home_cta_left {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.home_cta_left h2{
  color: white;
  margin-bottom: 3rem;
}
.home_cta_left p{
  color: white;
  margin-bottom: 3.5rem;
  opacity: 0.7;
}

.cta_btns {
  gap: 1.2rem;
}

.home_cta_right {
  flex: 0 0 52.1%;
  max-width: 52.1%;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cta_img_boat {
  width: 92rem;
  min-width: 92rem;
  transform: translateX(10rem);
}

.cta_img_boat .img,
.cta_img_prop .img {
  width: 100%;
}

.cta_img_boat .img img,
.cta_img_prop .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta_img_prop {
  flex: 0 0 30%;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #F9F9F9;
}

footer .main {
  padding: 11rem 0 2rem;
}

footer .content {
  padding-top: 0;
  padding-bottom: 0;
}

footer .flex.between.wrap.flex_top {
  gap: 19.4rem;
}

.foot_intro {
  flex: 0 0 40.4rem;
  max-width: 40.4rem;
}

footer .logo {
  margin-left: auto;
  display: block;
  width: max-content;
  margin-top: 7.2rem;
}

footer .logo img {
    width: 22.6rem;
    height: auto;
}

footer .logo p {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.foot_intro > strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #0b1a2e;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.foot_intro > p {
  font-size: 1.6rem;
  color: #6b6e78;
  line-height: 2.6rem;
  margin: 0 0 2.5rem;
  max-width: 29.7rem;

}

.foot_intro form {
  display: flex;
  margin-bottom: 3.5rem;
  position: relative;
}

.foot_intro form input[type="email"] {
  flex: 1;
  padding: 0.5rem 2.5rem;
  font-size: 1.7rem;
  border: 1px solid #d3d3d3;
  color: #6b6e78;
  outline: none;
  border-radius: 5px ;
  height: 6rem;
  background-color: transparent;
  transition: all 0.3s;
}

.foot_intro form input[type="email"]::placeholder {
  color: #666666;
}

.foot_intro form input[type="email"]:focus{
  border-color: var(--primary);
}

.foot_intro form input[type="submit"] {
  width: 4.9rem;
  height: 4.9rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 5px;
  transition: background 0.3s ease;
  position: absolute;
  right: 0.7rem;
  top: 50%;
  text-indent: -99999px;
  transform: translateY(-50%);
  background: url('../img/footer_email.svg') no-repeat center/35%;
  background-color: var(--primary);
  transition: all 0.3s;
}

.foot_intro form input[type="submit"]:hover {
  filter: brightness(1.2);
}

.foot_intro .social {
  display: flex;
  gap: 4.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot_intro .social li{
  transition: all 0.3s;
}
.foot_intro .social li:hover{
  transform: translateY(-2px) scale(1.05);
}
.foot_intro .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0;
  color: transparent;
  transition: background 0.3s ease;
  position: relative;
  background: url('../img/facebook.svg') no-repeat center/contain;
}

.foot_intro .social li.instagram a{
    background-image: url('../img/instagram.svg');
}
.foot_intro .social li.youtube a{
    background-image: url('../img/youtube.svg');
}
.foot_intro .social li.linkedin a{
    background-image: url('../img/linkedin.svg');
}
.foot_intro .social li.twitter a{
    background-image: url('../img/twitter.svg');
}

.foot_intro .social li a:hover::before {
  background: #FFFFFF;
}

footer .flex1 {
  flex: 1;
  min-width: 0;
}

footer .foot_link {
  display: none;
}

footer .nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4.5rem 1rem;
}


.foot_nav {
  flex: 1;
  min-width: 21rem;
  justify-self: center;
}

.foot_nav > strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #0b1a2e;
  text-transform: uppercase;
  
  margin-bottom: 2.1rem;
}

.foot_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot_nav ul li {
  margin-bottom: 1.5rem;
}

.foot_nav ul li a {
  font-size: 1.7rem;
  font-weight: 400;
  color: #6b6e78;
  transition: color 0.3s ease;
  line-height: 1.5;

}

.foot_nav ul li a:hover {
  color: var(--primary);
}

footer .bottom {
  background: #F9F9F9;
}
footer .bottom .flex{
    padding: 1.2rem 0;
    border-top: 1px solid #d3d3d3;
}
footer .bottom p {
  font-size: 1.3rem;
  color: #232323;
  font-weight: 500;
  margin: 0;
}

footer .bottom ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .bottom ul li a {
  font-size: 1.3rem;
  color: #232323;
  transition: color 0.3s ease;
}

footer .bottom ul li a:hover {
  color: var(--primary);
}
footer .bottom ul li + li{
    padding-left: 1.8rem;
    margin-left: 1.8rem;
    position: relative;
}
footer .bottom ul li + li:before{
  content: "";
  width: 1px;
  height: 1.4rem;
  background-color: #d3d3d3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#backtop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

#backtop.visible {
  display: flex;
}

#backtop::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-left: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  transform: rotate(45deg) translate(2px, 2px);
}


.swiper-slide {
  height: auto;
}

.news_card {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid #ecedf1;
  overflow: hidden;
  
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: block;
}

.news_card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.news_card .img {
  width: 100%;
  aspect-ratio: 439/265;
  overflow: hidden;
  border-radius: 8px;
}

.news_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news_card:hover .img img {
  transform: scale(1.04);
}

.news_card_body {
  padding: 2.6rem 3rem 2rem;
}

.news_meta {
  margin-bottom: 1rem;
  gap: 0 !important;
}

.news_tag {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news_date {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6b6e78;
  text-transform: uppercase;
  padding-left: 0.9rem;
  margin-left: 0.9rem;
  
  position: relative;
  
}
.news_date:before{
  content: "";
  width: 1px;
  height: 1.3rem;
  background-color: #6b6e78;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news_card_body h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0b1a2e;
  line-height: 3.3rem;
}
.news_card_body .btns{
  margin: 3rem 0 0;
  padding-top:  2.2rem;
  border-top: 1px solid #ecedf1;
  transform: translateY(60%);
  position: relative;
  transition: all 0.3s;
}
.news_card_body .btns p {
  font-size: 1.6rem;
  color: #6b6e78;
  line-height: 2.6rem;
  margin: 0 0 1.6rem;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.3s;
}

.active .news_card_body .btns{
  transform: translateY(0);
}
.active .news_card_body .btns p{
  transform: translateY(0);
  opacity: 1;
}
.active .news_card_body .btns .news_more{
  opacity: 0;
}
.news_more {
  font-family: 'Oswald', sans-serif;
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  color: #0b1a2e;
  margin-top: 2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.news_more::after {
  content: '';
  margin-left: 0.6rem;
  transition: transform 0.3s ease;
  width: 1.3rem;
  height: 1.3rem;
  background: url('../img/read_more.svg') no-repeat center/contain;
}

.news_more:hover {
  color: #c41820;
}

.news_more:hover::after {
  transform: translateX(4px);
}
nav.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 3.2rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.682rem;
  color: #171717;
  cursor: pointer;
  text-align: center;
  border-radius: 0.4rem;
  border: 1px solid #d6d6d6;
  min-width: 3.9rem;
  line-height: 3.7rem;
  padding: 0 0.5rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: #171717;
  border-color: #171717;
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  padding: 0;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: url("../img/nav-r-b.svg") no-repeat center / 18.92%;
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .prev::after {
  transform: rotate(180deg);
}
nav.navigation .omit {
  border: none;
  font-size: 2.056rem;
  min-width: unset;
  margin: 0 0.9rem 0 1rem;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
nav.navigation .nav-page label {
  display: flex;
  align-items: center;
  font-size: 1.402rem;
  color: #171717;
  gap: 1.2rem;
}
nav.navigation .nav-page select {
  font-size: 1.682rem;
  color: #171717;
  border: 1px solid #d6d6d6;
  border-radius: 0.4rem;
  background: url("../img/icon-select-b.svg") no-repeat center right 1.2rem/0.9rem;
  height: 3.9rem;
  padding: 0 3.3rem 0 1.2rem;
  margin-right: -2px;
}


.home_floating_contact {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  
  gap: 1.6rem;
}

.floating_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  
  background: #333333;
  transition: all 0.3s;
}

.floating_item:hover {
  opacity: 0.85;
}

.floating_item.active {
  background: var(--primary);
}

.floating_email {
  background: #333333;
}

.floating_chat {
  background: #333333;
}

.floating_item img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
}

div.search-block {
  position: fixed;
  /* visibility: hidden; */
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  /* opacity: 0; */
  width: 100%;
  bottom: -200vh;
  height: 100vh;
  transition: 0.3s ease;
  opacity: 0;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(135px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/close-black.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}

.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 2rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}

div.jst-language-switcher {
  display: none;
}



@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }

}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }

}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 13px;
    line-height: 30px;
    padding: 5px 20px;
    min-width: 120px;
  }
  .btn_i {
    font-size: 13px;
    gap: 8px;
  }
  .btn_i::after {
    width: 10px;
    height: 10px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translateX(0);
    margin-top: 30px;
    
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  header{
    padding: 2rem 0;
  }
  header .btn_quote{
    display: none;
  }
  header .btn_search, header .btn_lang, header .btn_menu{
    width: 20px;
    height: 20px;
  }
  header .logo img{
    height: 30px;
    width: auto;
  }
  header .btns{
    margin-left: auto;
    gap: 20px;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
    width: 100vw;
    height: 100vh;
    margin-right: 0;
    justify-content: left;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
    display: block !important;
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: var(--secondary);
  }
  header nav .close_box {
    display: flex;
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close-w.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  header nav .close_box + div {
    width: 100%;
    /* overflow: auto; */
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
    font-weight: 400;
    letter-spacing: unset;
    height: auto;
  }
  header nav .menu > li > a:hover {
    background-color: var(--primary);
    color: var(--title);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: var(--primary);
    color: var(--title);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
    filter: contrast(0) brightness(2);
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(255, 255, 255, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
  }
  header nav .menu > li:hover .sub-menu{
    display: none;
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
    color: white;
  }
  header nav .sub-menu > li > a:hover {
    background-color: var(--primary);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btn_menu {
    display: block;
    background-image: url('../img/menu.svg');
    width: 24px;
    height: 24px;
  }
  

  /* CTA Factory */
  .home_cta_factory {
    padding: 6rem 0;
  }

  .home_cta_factory .flex {
    flex-direction: column;
  }

  .home_cta_left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home_cta_left h2 {
    font-size: 2.4rem;
  }

  .home_cta_right {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 3rem;
    justify-content: center;
  }

  .cta_btns {
    flex-wrap: wrap;
  }

  /* Footer */
  footer .flex.between.wrap.flex_top {
    flex-direction: column;
    gap: 3rem;
  }

  .foot_intro {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    
  }
  .foot_intro form{
    margin-bottom: 20px;
  }
  footer .nav {
    gap: 0;
    grid-template-columns: 1fr;
  }
  footer .flex1{
    width: 100%;
    flex: unset;
  }
  .foot_nav {
    flex: 0 0 calc(50% - 1rem);
    min-width: 0;
    flex: unset;
    width: 100%;
  }
  .subtitle{
    font-size: 12px;
  }
  .home_product_range_left h2{
    font-size: 22px;
    line-height: 1.7;
  }
  .swiper_btns div{
    width: 40px;
    height: 40px;
  }
  .syedittext h2{
    font-size: 22px;
  }
  .home_cta_left p{
    margin-bottom: 20px;
  }
  .cta_img_boat{
    width: 100%;
    min-width: 100%;
    transform: translateX(0);
  }
  .home_cta_factory .flex{
    margin-top: 0;
  }

  footer .main{
    padding: 40px 0;
  }
  
  .foot_intro{
    order: 9;
  }
  .foot_intro > strong{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .foot_intro > p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .foot_intro form input[type="email"]{
    height: 45px;
    font-size: 14px;
    padding-left: 20px;
  }
  .foot_intro form input[type="submit"]{
    width: 35px;
    height: 35px;
  }
  .foot_nav > strong{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--dark);
    color: white;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .foot_nav.active > strong:after{
    transform: rotate(180deg);
  }
  .foot_nav > strong:after{
    content: "";
    width: 15px;
    height: 15px;
    filter: contrast(0) brightness(100);
    background: url('../img/select.svg') no-repeat center/contain;
    transition: all 0.3s;
  }
  .foot_nav ul li a{
    font-size: 14px;
  }
  .foot_nav > strong + div{
    padding: 0 20px;
    display: none;
  }
  .foot_nav ul li{
    margin-bottom: 1rem;
  }
  footer .flex.between.wrap.flex_top{
    gap: 15px;
  }
  footer .logo{
    margin-top: 30px;
    margin-right: auto;
  }
  footer .logo img{
    width: 150px;
  }
  footer .bottom .flex{
    justify-content: center;
    gap: 20px;
  }

  .news_card_body{
    padding: 20px;
  }
  .news_tag, .news_date{
    font-size: 12px;
  }
  .news_meta{
    flex-flow: wrap;
    gap: 15px;
  }
  .news_date{
    margin-left: 0;
    padding-left: 0;
  }
  .news_date:before{
    display: none;
  }
  .news_card_body h3{
    font-size: 16px;
    line-height: 1.5;
  }
  .news_card_body .btns{
    padding-top: 15px;
    margin-top: 15px;
  }
  .news_card_body .btns p{
    font-size: 13px;
    line-height: 1.5;
  }
  .news_more{
    font-size: 14px;
    font-weight: 500;
  }
  nav.navigation {
    gap: 20px;
  }
  nav.navigation .nav-links {
    gap: 10px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    line-height: 32px;
    min-width: 32px;
  }
  nav.navigation .omit {
    font-size: 14px;
    margin: 0 10px;
    min-width: unset;
  }
  nav.navigation .nav-page label {
    font-size: 14px;
  }
  nav.navigation .nav-page select {
    font-size: 14px;
    height: 32px;
    padding: 0 30px 0 10px;
    margin-right: 0;
    background-size: 8px;
    background-position: center right 10px;
  }

  .home_floating_contact {
    display: none;
  }

  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  div.search-block input[type='text'] {
    flex: 1;
  }
  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background: url(../img/search.svg) no-repeat center / contain;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }
  div.search-block div.content {
    position: unset;
  }
  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }
  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }
  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    visibility: hidden;
  }
  div.search-block.active {
    top: 20%;
    visibility: visible;
    height: 80%;
    transform: translateY(0);
    bottom: unset;
  }
  .search-block input[type="submit"]:not(:disabled):hover {
    background-size: 1.4rem;
    border: none;
  }

  .default_head{
      padding: 10rem 0 5rem;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }


}

@media screen and (max-width: 576px) {
  

  .cta_btns {
    flex-direction: column;
  }

  .cta_btns .btn {
    width: 100%;
    justify-content: center;
  }

  .home_cta_right {
    flex-direction: column;
    align-items: center;
  }

  .cta_img_boat,
  .cta_img_prop {
    flex: 0 0 80%;
  }

  .endurance_stats {
    gap: 2rem;
  }

  .endurance_stat {
    flex: 0 0 calc(50% - 1rem);
  }

  .process_step {
    padding: 0;
  }

  .foot_nav {
    flex: 0 0 100%;
  }
}