* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none !important;
}

body {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Archivo' !important;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.page-container, .main-content {
  min-height: 100vh;
}  
.layoutmain{
  overflow-x: hidden;
}
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


body h1, h2, h3, h4, h5, h6, p,span, div, input, textarea, button {
    font-family: 'Archivo', sans-serif;
}

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-SemiBold.eot');
  src: url('../fonts/Archivo-SemiBold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Archivo-SemiBold.woff2') format('woff2'),
      url('../fonts/Archivo-SemiBold.woff') format('woff'),
      url('../fonts/Archivo-SemiBold.svg#Archivo-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Regular.eot');
  src: url('../fonts/Archivo-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Archivo-Regular.woff2') format('woff2'),
      url('../fonts/Archivo-Regular.woff') format('woff'),
      url('../fonts/Archivo-Regular.svg#Archivo-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Bold.eot');
  src: url('../fonts/Archivo-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Archivo-Bold.woff2') format('woff2'),
      url('../fonts/Archivo-Bold.woff') format('woff'),
      url('../fonts/Archivo-Bold.svg#Archivo-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Medium.eot');
  src: url('../fonts/Archivo-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Archivo-Medium.woff2') format('woff2'),
      url('../fonts/Archivo-Medium.woff') format('woff'),
      url('../fonts/Archivo-Medium.svg#Archivo-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bakbak One';
  src: url('../fonts/BakbakOne-Regular.eot');
  src: url('../fonts/BakbakOne-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/BakbakOne-Regular.woff2') format('woff2'),
      url('../fonts/BakbakOne-Regular.woff') format('woff'),
      url('../fonts/BakbakOne-Regular.svg#BakbakOne-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.row {
  width: 100%;
}
.maincover {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.layoutmain {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

/* NAVBAR SECTION */
.sectionmenubar {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 6px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px 10px 0px;
  background-color: #fff;
  width: 90%;
}

.logo {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 5px 15px;
}

.nav-links a.active {
  background-color: #00a2e8;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
}

.nav-links a:hover {
  color: #ffffff;
  background-color: #00a2e8;
  border-radius: 20px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.layoutmain .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
}
.layoutmain .slick-dots {
  position: absolute;
  display: flex;
  width: 94%;
  justify-content: end;
  bottom: 40%;
}
.layoutmain .slick-dots li.slick-active {
  border-color: rgb(255 255 255);
}
.contact-btn {
  background-color: #00a2e8;
  color: white;
  border: none;
  font-size: 18px;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #0077b6;
}
.search-container:hover #search-input {
  width: 200px;
  opacity: 1;
}

/* Search Container Styles */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
}

#search-input {
  width: 0;
  padding: 5px;
  border: 1px solid #00a2e8;
  border-radius: 20px;
  outline: none;
  opacity: 0;
  position: absolute;
  right: 35px;
  transition: width 0.4s ease, opacity 0.4s ease;
  z-index: 1;
  top: 5px;
}

#search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #00a2e8;
  padding: 5px;
}

/* Show search input on button click */
.search-container:hover #search-input {
  width: 200px;
  opacity: 1;
}
.slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  text-align: right;
  bottom: 50px;
}
/* NAVBAR SECTION END */
.sectionone {
  /* background: url("../images/slider.png");
  background-repeat: no-repeat;
  background-size: cover; */
  width: 100%;
  /* height: 949px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin-top: -50px;
}
.sectionone .controls {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 28%;
}
.sectionone .controls .container.baner {
max-width: calc(100% - 120px);
width: 100%;
}
.container {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  padding: 10px 0px 10px 0px;
  width: 90%;
}
.hdrs{
  font-family: Archivo;
  font-size: 25px;
  font-weight: 700;
  line-height: 28.09px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(3, 143, 203, 1)
}
tbody tr {
  background: rgba(228, 228, 228, 0.29);
}
th{
  font-family: Archivo;
font-size: 16px;
font-weight: 400;
line-height: 28.09px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
}
.ford {
  margin-top: 10px;
}
.leftside {
  background-color: #f0f0f000;
  box-shadow: -14.37px 14.37px 14.37px 0px #ffffff28 inset,
    14.37px -14.37px 14.37px 0px #c2c2c228 inset, 0px 4px 10.9px 0px #00000040;
  backdrop-filter: blur(50.28px);
  color: #333;
  padding: 20px 12px 15px 12px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  top: -120px;
  right: 50px;
  border: 1px solid #038FCB;
}
.textlll {
  width: 100%;
}
.leftside div {
  margin-bottom: 10px;
  font-family: Archivo;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
}
.leftside span {
  background: linear-gradient(90deg, #FFFFFF 0%, #E9E9E9 100%);
}
.leftside span {
  font-size: 25px;
  padding: 5px 15px;
  border-radius: 10px;
}
.rightside p {
  font-size: 25px;
  position: relative;
  top: -50px;
}
/* SLECT BOX START  */

.searchmain .search-container {
  background: rgba(255, 255, 255, 0.8);
  padding: 26px 60px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  max-width: max-content;
  background-color: #f0f0f000;
  backdrop-filter: blur(10.28px);
  border: 3px solid #fff;
  box-shadow: -8.27px 8.27px 8.27px 0px #ffffff79 inset;
  box-shadow: 8.27px -8.27px 8.27px 0px #06497179 inset;
  backdrop-filter: blur(28.956666946411133px);
  margin: 0 auto;
}

.searchmain .search-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.search-container h2 span {
  font-size: 16px;
  font-weight: normal;
  margin-left: 10px;
  color: #000;
}

.search-filters {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2px 0;
}

.search-filters select {
  padding: 2px 10px;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background: transparent;
}

.search-filters select:hover {
  border-color: #000;
}

.search-btn {
  background-color: #038FCB;
  color: white;
  border: none;
  font-size: 18px;
  padding: 2px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-btn:hover {
  background-color: #0077b6;
  transform: translateY(-2px);
}
.searchmain {
  position: absolute;
  display: flex;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  padding: 0 20px;
}
img.sldimg {
  width: 100%;
}
.sectionone{
  position: relative;
}
/* SLECT BOX END */
/* PACKAGES SECTION START  */

.mainncont {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sectiontwo {
  display: flex;
  justify-content: space-between;
  width: 90%;
  flex-direction: column;
}
.maindff {
  display: flex;
  justify-content: space-between;
}
.leftbox h4 {
  color: #038fcb;
  font-family: Archivo;
  font-size: 81.25px;
  font-weight: 700;
  line-height: 138.13px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.divfl {
  display: flex;
}
.sectiontwo h2 {
  background: linear-gradient(180deg, #d9d9d9 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: Archivo;
  font-size: 180px;
  font-weight: 800;
  line-height: 240px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 0;
}
.sectiontwo.monohills > .allyatch {
  max-width: 1280px;
  margin: auto;
}
.percentage {
  display: flex;
  flex-direction: column;
}
/* .percent {
  font-size: 229px;
  color: #c2c2c2;
} */

.percentage h3 {
  font-size: 40px;
  line-height: 68px;
  color: #c2c2c2;
}
.bkbbbjn {
  background: #038fcb;
  max-width: max-content;
  border-radius: 60px;
  padding: 4px 20px;
  color: #fff;
  text-decoration: none;
}
.contbutton p {
  font-family: Archivo;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
/*PACKAGES SECTION  END */
/* ABOUT SECTION  START */
.mainncontttt {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sectiontwooo {
  display: flex;
  justify-content: space-between;
  width: 90%;
  flex-direction: column;
}

.countmtt {
  margin-top: 90px;
}
.imgbox {
  width: 30%;
  display: flex;
  margin-top: 45px;
}
.contbutton {
  width: 67%;
}
.contbutton p {
  font-size: 16px;
  line-height: 27.2px;
  letter-spacing: 0.4px;
  margin-bottom: 80px;
}
.readmore {
  color: #fff;
  text-decoration: none;
  background: #038fcb;
  border-radius: 60px;
  padding: 7px 28px;
  position: relative;
  font-family: Archivo;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
a.readmore:before {
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 19px;
  position: absolute;
  background: rgba(3, 143, 203, 1);
  z-index: -1;
  border-radius: 50px;
  filter: blur(12.6px);
}
.readmore:hover,
.viewmore:hover,
.readmore:hover {
  background: #065577;
  transition: 0.5s;
}
.contbutton h2 {
  text-align: left;
  margin-left: -115px;
}
/*ABOUT SECTION  END  */
/* MONOHILLS SECTION START  */
.monohills {
  margin-top: 20px;
  margin-bottom: 120px;
}
.firstmono {
  display: flex;
  flex-direction: column;
  border: 2px solid #fff;
  max-width: 305px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(3, 143, 203, 0.4);
}
.secondsec h5 {
  margin-bottom: 20px;
}
.firstsec{
  padding: 20px 20px 0px 20px;
  line-height: 25px;
}
.secondsec {
  padding: 20px;
  line-height: 25px;
}
.firstsec h4 {
  font-family: Archivo;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.41px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-top: 16px;
}
.firstsec h3, .secondsec h3 {
  color: #038fcb;
  font-family: Archivo;
  font-size: 20px;
  font-weight: 600;
  line-height: 21.76px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 8px 0;
}
.uytrewq{
  height: unset !important;
}
.firstsec h5 {
  font-family: Archivo;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.23px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.secondsec h5 {
  font-family: Archivo;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.sectionyatch {
  display: flex;
  justify-content: space-around;
}
.buttonnn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
/* MONOHILLS SECTION END */
/* TWOHILLS START */
.twohills {
  margin-top: -50px;
}
.backgroundmount {
  width: 100%;
  margin-top: -225px;
  z-index: -1;
  margin-bottom: -120px;
}
/* TWOHILLS END */
/* WHY US START  */
.whyussec {
  display: flex;
  justify-content: space-between;
  width: 80%;
  flex-direction: column;
}

.buttonnnnn {
  justify-content: left;
}
.contflysky {
  padding: 15px;
  max-width: 580px;
  width: 58%;
}
.flyship {
  display: flex;
  border-radius: 10px;
  align-items: center;
  max-width: 1006px;
  width: 75%;
  justify-content: space-between;
  position: relative;
}
.flyship:before {
content: '';
position: absolute;
width: 103%;
height: 103%;
background: transparent;
border-radius: 10px;
z-index: -1;
border: 10px solid #deeffd;
left: -1.3%;
top: 0;
}
.boatfly {
  margin-bottom: -3px;
}
.contflysky p {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1px;
}
/* WHY US END  */
/* SAFETY SECTION START  */
.shipcont {
  display: flex;
  column-gap: 40px;
  align-items: center;
  margin-top: -115px;
}
.shipcont h3 {
  font-size: 25px;
  line-height: 30px;
}
.shipcont p {
  line-height: 27px;
  margin-top: 14px;
}
.firsrpatta {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 50px;
}
.mainfour {
  margin-top: 30px;
}
.firsrpatta img {
  background: #EBEBEB;
  height: 70px;
  width: 70px;
  padding: 12px;
  border-radius: 50%;
}
.firsrpatta p {
  background: #EBEBEB;
  height: 70px;
  width: 295px;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  color: #000;
}
.firsrpatta p {
  position: relative;
}

.firsrpatta p::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-image: url("../images/arrow.png");
  z-index: 1;
  background-repeat: no-repeat;
}
.firsrpatta p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  background-image: url("../images/arrow.png");
  z-index: 1;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  width: 36px;
  height: 31px;
}

/* b_dev */
.mainfour {
  /* margin: 30px auto; */
  display: flex;
  flex-wrap: wrap;
  gap: 30px 100px;
  justify-content: space-between;
  max-width: 1162px;
}
/* b_dev */
.pattaflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
/* SAFETY SECTION END */
/* FOLLOW US START  */
.divimg {
  display: flex;
  /* justify-content: space-evenly; */
  column-gap: 20px;
}
.centerimg,
.rightimg {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.maindffhead {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* FOLLOW US END */
/* FAQ START  */
.backgroundcolor {
  background: linear-gradient(180deg, #fff 32%, #dff0fe 86.5%, #fff 100%);
  height: 778px;
}

.faq-container {
  width: 80%;
  background-color: transparent;
  border-radius: 10px;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(215, 214, 214, 1);
}

.faq-title {
  padding: 25px 35px 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item.active .faq-title {
  padding: 25px 35px 5px 35px !important;
}

.faq-title h4 {
  color: #038FCB;
  font-family: Archivo;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.faq-title span {
  font-size: 30px;
  color: #007bff;
  transition: transform 0.3s ease;
  font-weight: 700;
}

.faq-content {
  padding: 5px 52px 35px 35px;
  display: none;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  transition: .2s all ease-in-out;
}
.faq-content p {
  font-family: Archivo;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  white-space: pre-wrap;
    word-break: break-all;
}
.sectiontwo.twohills.mbfifty {
  margin-top: -130px;
}
.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-title span {
  color: #fff;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-family: Archivo;
  font-size: 34px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .faq-item.active .faq-title span:before {
  content: '';
  background: #007bff;
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
} */
.faq-item.active .faq-title span::before {
	content: 'x';
	font-size: 20px;
	font-family: sans-serif;
	margin-top: -4px;
}
.faq-item.active .faq-title span {
  background-color: rgba(3, 143, 203, 1);
  font-size: 0;
}
.faq-item.active {
  border-color: rgba(3, 143, 203, 1);
}
/* FAQ END */

/* TESTIMONIALS SLIDER START  */
.bgmount {
  background-image: url("../images/bgmountain.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  /* height: 813px; */
  display: flex;
  justify-content: center;
  /* margin-top: -160px; */
}

/* .mainsectesti {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-image: url("../images/bgmountain.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */


.mainsectesti {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-image: url("../images/bgmountain.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.testisec {
  display: flex;
  justify-content: center;
  width: 40%;
  flex-direction: column;
}
.mainsectesti h2 {
  background: linear-gradient(180deg, #d9d9d9 0%, #ffffff 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-top: -55px;
}
.testimonials {
  margin: 0 auto;
  /* max-width: 642px; */
  /* height: 222px; */
  /* background: #fff;
  border-radius: 20px; */
  text-align: center;
  /* border: 4px solid #edf3f7; */
}
.testimonials .contcent {
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  border: 4px solid rgb(196 216 229);
  padding: 45px;
  width: 100%;
}
.bgmount .slick-dots {
  position: absolute;
  display: flex;
  width: 100%;
  text-align: center;
  /* bottom: 195px; */
  justify-content: center;
  top: 46%;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}
.slick-dots li {
  position: relative;
  display: flex;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
}
.slick-dots li.slick-active{
  border-color: rgba(3, 143, 203, 1);
}
.contcent h4 {
  font-size: 25px;
  line-height: 30px;
  color: #42abd8;
}
.contcent p {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 20px 61px;
}
.testimonials > img {
  margin-bottom: -40px;
  z-index: 2;
}




.bgmount #slick-slide12 img {
  height: 80px;
  width: 80px;
}
.bgmount #slick-slide13 img {
  height: 80px;
  width: 80px;
}
.bgmount #slick-slide11 img {
  height: 80px;
  width: 80px;
}
.bgmount #slick-slide10 img {
  height: 80px;
  width: 80px;
}


.bgmount #slick-slide12 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bgmount #slick-slide13 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bgmount #slick-slide11 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bgmount #slick-slide10 {
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* TESTIMONIALS SLIDER END */
/* BLOGS SECTION START  */
.allyatchslide {
  margin-top: -270px;
}

.slider .slick-prev::before, .slider .slick-next::before {
  font-family: 'slick';
  font-size: 28px;
  line-height: 1;
  opacity: 1;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contaiii .firstsec > h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


#slick-slide40 {
  width: auto !important;
}


.contaiii {
  display: flex;
  flex-direction: column;
  border: 2px solid #fff;
  width: max-content;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(3, 143, 203, 0.4);
  /* width: 92%; */
}

.mainncont .slick-initialized .slick-slide {
  display: flex;
  padding: 16px;
  justify-content: center;
}
.slick-prev.slick-arrow, .slick-next.slick-arrow {
  background:#038FCB;
  height: 40px;
  width: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .slick-prev::before, .slider .slick-next::before {
  font-size: 28px;
  line-height: 0;
  opacity: 1;
  color: #fff;
  position: relative;
}

/* BLOGS SECTION END */
/* FORM SECTION START  */
.mainsectform {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.bgmounform {
  background-image: url("../images/lastboatbgc.png");
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center; /* Centers the image */
  width: 100%;
  height: 560px;
  display: flex;
  justify-content: center;
  margin-top: 75px;
  align-items: center;
  flex-direction: column;
}




.containerrr {
  background: linear-gradient(283.01deg, rgba(217, 217, 217, 0.34) -114.28%, rgba(115, 115, 115, 0.34) 64.51%);
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 480px;
}


h2 {
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
}

.input-row {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	text-align: left;
}
.subscribe-form > .mb-3 {
	text-align: left;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  outline: none;
}

textarea {
  resize: none;
  margin-bottom: 30px;
}

button {
  background-color: #038FCB;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0077aa;
}
.input-row input {
  color: #000;
  opacity: 1;
  font-weight: 400;
}

.subscribe-form textarea {
  color: #000;
  font-weight: 400;
}
input::placeholder {
  color: #000;
}
textarea::placeholder {
  color: #000;
}
/* FORM SECTION END */
/* FOOTER SECTION START  */
.footermain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.bgcfooter {
  background-image: url("../images/Footer.png");
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center; 
  width: 100%;
  /* height: 276px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.maincontainerfooter {
  width: 70%;
  text-align: center;
  color: #fff;
}
.maincontainerfooter hr {
  color: #fff;
  margin: 20px 0;
  border-top: 2px solid #ffff;
}
.maincontainerfooter h2 {
  font-size: 52px;
  line-height: 62px;
  color: #fff;
  margin-top: 30px;
  font-family: Bakbak One;
}
.mail a {
  display: flex;
  justify-content: center;
  padding: 10px;
  column-gap: 14px;
}
.text {
  display: flex;
  justify-content: center;
  color: #fff;
  column-gap: 32px;
  font-size: 20px;
}
.maincontainerfooter a, .maincontainerfooter a p {
  text-decoration: navajowhite;
  color: #fff;
}
.anchor {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
.rightside {
  max-width: 474px;
}
.mail img {
object-fit: contain;
}
.mail p{
margin-bottom: 0;
}
.imgdiv > img {
border-radius: 20px;
}
.buttonnn a, .readmore{
border: 1px solid #038fcb;
}
.buttonnn:hover a, .readmore:hover, .bkbbbjn:hover, .tab-contact:hover {
color: #038fcb;
text-decoration: none;
background: #fff;
border: 1px solid #038fcb;
}
h2.big-heading.about {
  margin-left: -20%;
  text-transform: uppercase;
}
.blogs .sectiontwo.twohills {
  max-width: 1296px !important;
}
.s-share {
  display: flex;
  flex-direction: row ;
}

.text > h5 {
  font-size: 16px;
  font-weight: 400;
}
h2.big-heading.testi {
  z-index: 1;
}
/* FOOTER SECTION END */ 
.page_yacht .main-content > .container,
.page_yachtgallery .main-content > .container,
.page_profile .main-content > .container,
.page_yachtvideo .main-content > .container,
.page_frontlogin , .page_frontregister, .page_yacht{
	width: 100%;
	max-width: 1400px;
}
.page_yacht .main-content > .container > .row,
.page_yachtgallery .main-content > .container > .row,
.page_profile .main-content > .container > .row,
.page_yachtvideo .main-content > .container > .row,
.page_frontlogin ,.page_frontregister ,.page_yacht{
	margin-left: auto;
	margin-right: auto;
}


.btnsyp {
  width: 175px;
  height: 34px;
  border: none;
  border-radius: 60px;
  padding: 3px 19px;
  background: rgba(3, 143, 203, 1);
  color: #fff;
  font-family: "Archivo";
  font-size: 16px;
  font-weight: 400;
  line-height: 28.09px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(3, 143, 203, 1);
}
.btnsyp:hover {
  background: #fff;
  color: #000;
}
strong {
  font-family: "Archivo";
  font-size: 16px;
  font-weight: 400;
  line-height: 28.09px;
  color: rgba(0, 0, 0, 1);
}
label{
  font-family: Archivo;
font-size: 16px;
font-weight: 400;
line-height: 28.09px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
}
.ufds {
  max-height: 70vh;
  overflow-y: auto;
}
.ifdswq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mainncont.blogs .slick-prev {
  left: -44px;
}
.mainncont.blogs .slick-next {
  right: -44px;
}
.hiddentext img {
	width: 25px;
}
.ufddsa nav svg {
	width: 20px !important;
	max-width: 20px !important;
	min-width: 20px !important;
	height: 20px !important;
}
.d-flex.justify-content-center.mt-4.ufddsa nav > .sm\:hidden {
  display: none;
}
.ufddsa .flex.items-center.justify-between {
	width: 100%;
}
.ufddsa .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ufddsa .relative.z-0.inline-flex.rtl\:flex-row-reverse.shadow-sm.rounded-md > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ufddsa .relative.z-0.inline-flex.rtl\:flex-row-reverse.shadow-sm.rounded-md {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ufddsa .relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-r-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150.dark\:bg-gray-800.dark\:border-gray-600.dark\:active\:bg-gray-700.dark\:focus\:border-blue-800 {
	display: flex;
}



/* .ufddsa span.relative.inline-flex.items-center.px-4.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.leading-5.dark\:bg-gray-800.dark\:border-gray-600 {
  padding: 0 !important;
  margin: 0;
  height: 30px !important;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
} */

/* .ufddsa > nav > span> a {
  padding: 0 !important;
  margin: 0;
  height: 30px !important;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
} */
 
/* .ufddsa nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between > div > span > a {
  padding: 0 !important;
  margin: 0;
  height: 30px !important;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
} */
span,a{
  cursor: pointer;
}
.ufddsa nav .relative.inline-flex.items-center {
  padding: 0 !important;
  height: 30px !important;
  width: 30px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
