/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dbefff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0c3485;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  padding: 20px;
  color: #000;
  text-align: left!important;
}

a {
  text-decoration: none;
  color: #268FE7;
}

ul {
  padding: 0;
  list-style: none;
}

.text-primary {
  color: #0c3485 !important;
}

.btn {
  padding: 12px 40px;
  font-weight: 400;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 18px;
  transition: 0.5s all;
}

.btn:hover {
  color: #fff;
}

.btn:focus,
.btn.active:focus {
  box-shadow: none !important;
}

.btn-darkblue {
  background: #0c3485;
  border: 1px solid #0c3485;
  transition: 0.5s all;
}

.btn-darkblue:hover {
  color: #fff;
  background: transparent;
  border-color: #0c3485;
  color: #0c3485;
}

.btn-gradient {
  background: linear-gradient(93.6deg, #0c3485 -2.39%, #2999f2 100%);
  transition: 0.5s all;
  border: 1px solid transparent;
}

.btn-gradient:hover {
  background: linear-gradient(93.6deg, #0c3485 100%, #2999f2 0%);
  color: #fff;
  border-color: #0c3485;
}

.btn-blue {
  background: #2999f2;
  color: #fff;
  border: 1px solid #2999f2;
  transition: 0.5s all;
}

.btn-blue:hover {
  color: #fff;
  background: #2083d3;
}

.btn-outline {
  background: transparent;
  color: #000;
  box-shadow: inset 0px 0px 0px 1px #000;
}

.btn-outline:hover {
  color: #fff;
  background: #000;
}

.btn-dark {
  background: #000;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

.btngroup {
  display: flex;
  gap: 14px;
}

.socialbtn {
  border-radius: 50px;
  background: #0c3485;
  color: #fff;
  padding: 12px 22px;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}

.socialbtn a {
  color: #fff;
  font-size: 16px;
  border-left: 1px solid #fff;
  padding: 0 8px;
  line-height: 1;
}

.socialbtn a:first-child {
  border: none;
}

.socialbtn a:last-child {
  padding-right: 0;
}

section.banner {
  overflow: visible;
}

section {
  overflow: hidden;
}

.heading {
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #0c3485;
}
.heading span {
  font-weight: bold;
}
.mheading {
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0c3485;
}

.subheading {
  border: 1px solid #0c3485;
  color: #0c3485;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 50px;
}

.para-lg {
  font-size: 20px;
  font-weight: 500;
}

.headwrap {
  background: rgba(219, 239, 255, 1);
  padding: 30px;
  padding-top: 40px;
  border-radius: 20px;
  margin-bottom: 300px;
}

.navbar-toggler {
  border: 1px solid #0c3485;
  margin-left: 10px;
  font-size: 26px;
  color: #0c3485;
  padding: 2px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav {
  width: 100%;
  padding: 30px 0px;
  justify-content: space-between;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0;
  margin: 10px;
}

.banner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  /* margin-top: 40px; */
  margin-bottom: -300px;
}

.banner::before {
  content: "";
  border-radius: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: #00153f;
  backdrop-filter: blur(17px);
  z-index: 1;
}

.banner-carousel {
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner-carousel img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: 20px;
  filter: none;
  object-fit: cover;
}

.banner .banner-text .heading {
  color: #fff;
  font-weight: 400;
}

.banner .banner-text .heading span {
  font-weight: 800;
  display: block;
}

.banner .banner-text p {
  color: #fff;
}

.banner-text {
  padding-left: 40px;
}

.innerwrap {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.bannform {
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 10px #33333336;
}

.bannform .btn {
  width: 100%;
  margin-top: 20px;
}

.bannform label {
  font-weight: 600;
  color: #000;
  font-size: 18px;
  margin-bottom: 8px;
}

.form-icon {
  position: relative;
}

.form-group {
  margin-bottom: 16px;
}

.form-icon .form-control {
  border-radius: 160px;
  background: #e7e7e7;
  border: none;
  height: 60px;
  padding: 12px;
  padding-left: 60px;
  font-size: 18px;
  color: #000;
}

.form-icon i {
  position: absolute;
  transform: translate(0px, -50%);
  top: 50%;
  left: 8px;
  border-radius: 36px;
  background: #0c3485;
  padding: 12px;
  color: #fff;
  font-size: 18px;
}

.form-icon .form-select {
  border-radius: 160px;
  background-color: #e7e7e7;
  border: none;
  height: 60px;
  padding: 12px;
  padding-left: 60px;
  font-size: 18px;
  color: #000;
  background-position: right 1.2rem center;
}

.form-control {
  border-radius: 50px;
  border: 1px solid #0c3485;
  background: #e0f1ff;
  border-color: transparent;
  padding: 12px 18px;
}

.form-control:focus,
.form-select:focus {
  background: #e0f1ff;
  box-shadow: none;
}

.section-padding {
  padding: 80px 0;
}

.featured {
  background: rgba(219, 239, 255, 1);
  border-radius: 20px;
}

.caravans-box {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  position: relative;
  border: 1px solid #fff;
  height: 100%;
  /* margin-left: 30px; */
}

.caravans-box:hover .rating {
  background: #0c3485;
  color: #fff;
}

.caravans-box .rating {
  background: #fff;
  display: inline-block;
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 1;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 999;
}

.caravans-box:hover {
  /* border: 1px solid #0c3485; */
  box-shadow: 0px 0px 10px 0px #00000036;
}

.caravans-box:hover .rating span {
  color: rgba(255, 184, 0, 1);
}

.caravans-box .rating span {
  font-size: 18px;
}

.caravans-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.seaview img {
  filter: none;
  object-fit: cover;
  height: 500px;
  width: 100%;
  border-radius: 20px;
}

.exclusive {
  background: #fff;
  display: inline-block;
  border-radius: 50px;
  padding: 6px 10px;
  color: #9c9c9c;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 99;
}

.caravans-text {
  padding-top: 20px;
}

.caravans-text h2 {
  color: rgba(12, 52, 133, 1);
  font-size: 28px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.caravans-box .para-lg {
  color: rgba(119, 119, 119, 1);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
}

.caravans-box .btn-dark:hover {
  background: #2999f2;
}

.caravans-text .btn {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.caravans-box ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.caravans-box li {
  display: inline;
  padding: 0px 7px;
}

.holiday-text {
  padding-right: 35px;
}

.holiday-text h3 {
  font-size: 18px;
  font-weight: 600;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 16px;
  height: 16px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  transition: opacity 0.6s ease;
  border-radius: 100%;
  background: transparent;
  border: 1px solid #fff;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #2999f2;
  border-color: transparent;
}

.carousel-item img {
  border-radius: 20px;
  max-height: 500px;
  object-fit: cover;
}

.slick-dots {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 15px;
  bottom: 0;
  z-index: 9;
}

.slick-dots li button {
  background: transparent;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  font-size: 0;
  outline: none;
  border: 1px solid #fff;
}

.slick-dots li.slick-active button {
  background: #2999f2;
}

.primrose {
  background: rgba(219, 239, 255, 1);
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

textarea.form-control {
  height: 218px !important;
  border-radius: 30px;
  width: 100%;
}

.corner-card {
  border-radius: 20px;
  background: #061f52;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 20px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

.corner-card h2 {
  font-size: 24px;
}

.corner-card p {
  margin-bottom: 2px;
}

.corner-card ul {
  display: flex;
  font-size: 12px;
  gap: 12px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 4px 0;
  margin: 8px 0;
}

.corner-card .btn-link {
  padding: 0;
  font-size: 16px;
}

.colist {
  display: flex;
  border-radius: 20px;
  background: #a0cff5;
  padding: 24px;
}

.colist p {
  margin-bottom: 0;
}

.colist h5 {
  color: #0c3485;
  margin-bottom: 2px;
}

.review-sec {
  background: rgba(219, 239, 255, 1);
  border-radius: 20px;
  padding-bottom: 120px;
}
.review-slider .slick-dots {
  right: auto;
  left: 50%;
  bottom: -60px;
  transform: translate(-50%, 0px);
  gap: 4px;
}

.review-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: #addbff;
  border: none;
  border-radius: 15px;
}
.review-slider .slick-dots li.slick-active button {
  background: #0c3485;
  width: 30px;
}
.wrap {
  text-align: center;
}

.wrap .stars {
  background: transparent;
  font-size: 24px;
}

.wrap .info {
  margin-bottom: 10px;
}

.wrap .info .name {
  color: #0c3485;
  font-size: 26px;
  font-weight: 700;
  /* 117.857% */
  margin-bottom: 0;
}

.wrap .info p {
  font-style: italic;
  color: #6c6c6c;
}

.wrap .team img {
  width: 65px;
  margin: 0 2px;
  display: inline-block;
  filter: none;
}

footer {
  background-image: url("../images/footer.png");
  background-position: center;
  background-size: cover;
  padding: 40px 0;
  border-radius: 0px 0px 20px 20px;
}

.newsletter {
  text-align: left;
}

.newsletter h4 {
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}

.newsletter .flex {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter input {
  border-radius: 64px;
  border: 1px solid #fff;
  background: transparent;
  padding: 12px 22px;
  color: #fff;
  font-size: 18px;
  width: 100%;
}

.newsletter input:focus,
.newsletter input:focus-visible {
  outline: none;
}

.newsletter input::placeholder {
  color: #fff;
  opacity: 0.6;
}

.newsletter button {
  border-radius: 50px;
  background: #fff;
  border: none;
  padding: 13px 30px;
  font-size: 18px;
  white-space: nowrap;
}

footer .links {
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin: 30px 0;
  padding: 20px 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 18px;
}

footer .links a {
  color: #fff;
}

footer .contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .contact a {
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
}

footer .contact .social {
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
}

footer .contact .social a {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
footer .contact .social a:hover {
  border-color: #2999f2;
}
.copyright {
  padding: 20px 0;
  padding-bottom: 0;
}

.copyright p {
  margin-bottom: 0;
}

.copyright a {
  color: #000;
}

.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: center;
}

.rating span {
  display: inline-block;
  position: relative;
  font-size: 24px;
  letter-spacing: -4px;
}

.rating span::before {
  font-family: "icomoon";
  content: "\ea1d";
  color: #bcbcbc;
  cursor: pointer;
}

.rating span:hover:before,
.rating span:hover~span:before {
  color: gold;
}

.rating input {
  margin-left: -14px;
  position: relative;
  top: -3px;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.newsletter button:hover {
  background: #2999f2;
  color: #fff;
  transition: 0.2s;
}

.socialbtn a:hover {
  color: #2999f2;
  transition: 0.2s;
}

footer a:hover {
  color: #2999f2;
  transition: 0.2s;
  text-decoration: none;
}

.social a i:hover {
  color: #2999f2;
  transition: 0.2s;
}

.newsletter input:hover:focus {
  border: 1px solid #2999f2;
  transition: 0.2s;
}

.rating input:checked~span:before {
  color: gold;
}

.copyright a:hover {
  transition: 0.2s;
}

.logo img {
  width: 100%;
  /* max-width: 550px; */
}



.btn-blue:hover {
  background: white;
  color: #2999f2;
}

.navbar-nav .nav-item a {
  position: relative;
}

.navbar-nav .nav-item a:hover {
  color: #2999F2;
}

.navbar-nav .nav-item a::after,
.navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
  background-color: #2999F2;
}

/* .navbar-nav .nav-item a:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #0c3485;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
} */

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #2999F2;
}

.navbar-nav .nav-item a.nav-link.active:after {
  transform: scaleX(1);
  background-color: #2999F2;
}

.navbar-nav .nav-item.active a.nav-link {
  color: #2999F2;
}

img {
  filter: drop-shadow(2px 4px 6px #0c348570);
}

.banner-slider-btn.carousel-indicators {
  justify-content: end;
  margin-right: 1%;
}



.btn.btn-outline {
  color: #2999f2;
  background: white;
  border: 1px solid #2999f2;
  box-shadow: none;
}

.btn.btn-outline:hover {
  background: #2999f2;
  color: #fff;
}

.gallery-item {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 20px;
}

.seaview .slick-dots,
.gallery-slider .slick-dots {
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.featured .slick-arrow {
  display: none !important;
}

.featured .slick-dots {
  left: 50% !important;
  transform: translateX(-50%) !important;
  justify-content: center !important;
}

.featured .slick-dots {
  bottom: -66px;
}

.see-more {
  margin-top: 30px;
}

.banner:before {
  display: none;
}

.banner video {
  width: 100%;
  /*max-width: 1200px;*/
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: top;
  /*margin: 0 auto;*/
  /*display: block;*/
}

  .img-fluid {
  border-radius: 20px;
}

footer .footlogo {
  max-width: 440px;
}
.contact-sub-heading {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
}

.address {
  font-weight: 500;
}

.phone {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.sub-banner {
  text-align: center;
  background-image: url(../images/sub-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  border-radius: 30px;
  margin-bottom: -300px;
}

.sub-banner .heading {
  color: #fff;
  font-weight: 700;
}


.carvans-listing .caravans-box {
  border: 1px solid #0c3485;
}

.carvans-listing .nav {
  justify-content: center;
}

.btn-tab {
  border: 1px solid #0c3485;
  color: #0c3485;
  display: inline-block;
  background: transparent;
  padding: 10px 30px;
  font-weight: 400;
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s all;
  margin-left: 10px;
  box-shadow: none;
}

.btn-tab.active {
  color: #fff;
  background: linear-gradient(94deg, #0C3485 -2.39%, #2999F2 100%);
}

.btn-tab:hover {
  color: #fff;
  background: linear-gradient(94deg, #2999F2 -2.39%, #0C3485 100%);
}

.p-with-bg {
  padding: 10px;
  border-radius: 20px;
  background: #DBEFFF;
}


.btn-underline {
  font-weight: 600;
  text-decoration: underline;
}

.btn-back {
  outline: none;
  background: transparent;
  border: none;
  color: #0c3485;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 0;
}

.btn-back:before {
  content: "";
  background: url(../images/back.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: -30px;
  background-size: contain;
}

.bg-white {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.14);
  height: 100%;
  padding: 30px;
}

.bg-white .phone {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
}

.bg-white .sub-heading {
  color: #0c3485;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}

.custom-list {
  display: flex;
  font-weight: 500;
}

.custom-list li:before {
  content: "";
  background: url(../images/li.svg);
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-right: 50px;
}


.slider-for,.slider-nav {
  margin-bottom: 15px;
}

.slider-for img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
}

.slider-for .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 0;
  z-index: 1;
}
.slider-for .slick-arrow:before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.slider-for .slick-prev {
  left: 30px;
}
.slider-for .slick-prev:before {
  background: url('../images/arrowleft.svg');
  left: 0;
}
.slider-for .slick-next:before {
  background: url('../images/arrowright.svg');
  right: 0;
}
.slider-for .slick-next {
  right: 30px;
}

.slider-nav .slick-list {
  padding: 0;
}

.slider-nav .slick-list .slick-track img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 10px;
}
.proimg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proimg img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.proimg h4 {
  margin-bottom: 0;
  font-size: 20px;
  color: #000;
}
.proimg p {
  margin-bottom: 0;
  color: #6F6F6F;
  font-size: 16px;
  font-weight: 400;
}

.detail-card {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.14);
  padding: 35px;
}

.detail-card p {
  color: #777;
  font-size: 18px;
}

.detail-card .heading {
  margin-bottom: 5px;
  font-size: 32px;
  font-weight: 700;
}

.detail-card h4 {
  color: #2999F2;
  font-size: 24px;
  margin-bottom: 12px;
}

.detail-card .price {
  color: #0C3485;
  font-size: 40px;
}

.detail-card .title {
  color: #000;
  font-size: 26px;
}

.detail-card .alert {
  border-radius: 10px;
  background: #DBEFFF;
  display: flex;
  align-items: center;
}

.detail-card .alert p {
  color: #0C3485;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 500;
  margin-right: 4px;
}

.detail-card .alert p:last-child {
  color: #000;
}

.detail-card .btngroup {flex-wrap: unset;margin-bottom: 12px;}

.detail-card .btngroup a {
  width: 50%;
}

.detail-card a {
  width: 100%;
}
.detail-card .checkwrap .heading {
  font-size: 26px;
  font-weight: 600;
}

.checkwrap .flexwrap {
    display: flex;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.checkwrap .flexwrap .custom-checkbox {
    padding-right: 10px;
}


.title {
  color: #0C3485;
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 600;
}

.para-lg {
  font-size: 24px;
  line-height: 1.2;
}

.stars {
  color: #FFB800;
  font-size: 45px;
  letter-spacing: -5px;
}

.reviewwrap .inner {
  border-radius: 20px;
  border: 1px solid #0C3485;
  background: #D3ECFF;
  padding: 24px;
  margin-top: 30px;
}

.reviewwrap .outer {
  border-radius: 20px;
  background: #8fa0ad;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  margin-top: 10px;
  margin-left: 250px;
}

.flex_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviewwrap p {
  margin-bottom: 0;
  margin-top: 14px;
  font-size: 18px;
}

.reviewwrap .proimg img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewwrap .proimg .stars {font-size: 18px;letter-spacing: -2px;}

.reviewwrap .flex_between p {
  margin-top: 0;
  font-size: 14px;
}

.commentwrap {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.14);
  padding: 50px;
}


.backbtn {
  display: inline-block;
}

.backbtn button {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0C3485;
  font-size: 28px;
  font-weight: 700;
}

.backbtn button img {
  height: 45px;
  width: 45px;
  object-fit: contain;
}

.after-login {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
}
.after-login .dropdown-menu.notification-drop {
  min-width: 18rem;
  height: 400px;
  overflow: auto;
}
.after-login a {
  color: #292D32;
  font-size: 28px;
}

.after-login .proimg img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0C3485;
}
.zindex-999 {
  position: relative;
  z-index: 999;
}
.after-login .dropdown-toggle {
  font-size: 35px;
}

.after-login .dropdown-toggle:after {
  display: none;
}

.property-card {
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 24px;
}

.property-card .img-card {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #FFF;
}

.property-card .title {
  font-size: 32px;
}

.property-card .price {
  font-size: 30px;
  font-weight: 600;
}

.property-card ul {
  font-size: 18px;
}

.property-card ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.team {
    border-radius: 20px;
    background: #DBEFFF;
}
.teamwrap img {
    border-radius: 0;
    filter: none;
    margin-bottom: 10px;
    height: 400px;
    width: 100%;
    object-fit: fill;
}

.teamwrap .title {
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
}

.teamwrap h6 {
    color: #6C6C6C;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
}


.slick-arrow {
  position: absolute;
  top: -80px;
  right: 0;
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: none;
  background: #0c348545;
  font-size: 0;
  color: #4f6374;
}

.slick-prev {
  right: 60px;
}

.slick-arrow:focus,.slick-arrow:hover {
  background: #0C3485;
  color: #fff;
}

.slick-arrow:before {
  font-family: 'icomoon';
  font-size: 26px;
}

.slick-prev:before {
  content: "\e92f";
}

.slick-next:before {
  content: "\e930";
}

.team-slider .slick-slide {
  margin: 0 12px;
}
.partner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.partner img {
  filter: none;
  height: 80px;
}
.service-select {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.14);
  padding: 30px;
}

.service-select .item {
  margin: 20px 0;
  position: relative;
}

.service-select .item:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.15) 53.9%, rgba(0, 0, 0, 0.00) 100%);
  height: 1px;
}

.service-select .item label {
  font-size: 20px;
  font-weight: 600;
}
.servprofile {
  margin-bottom: 20px;
}
.servprofile img {
  filter: none;
  margin-bottom: 20px;
}

.servprofile .proimg {
  margin-bottom: 12px;
}

.servprofile .proimg img {
  margin-bottom: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.servprofile p {
  color: #727272;
}

.profile-banner {
  margin-bottom: -300px;
}

.profile-banner .cover {
    position: relative;
}

.profile-banner .cover .cimg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: none;
}

.profile-banner .cover .cover-upload {position: absolute;right: 100px;bottom: -20px;}

.profile-img {
    margin-top: -100px;
    display: inline-block;
    position: relative;
}

.profile-img .pimg {
    width: 200px;
    height: 200px;
    filter: none;
    object-fit: fill;
    border-radius: 50%;
    border: 2px solid #fff;
}

.profile-img .upload {
    position: absolute;
    bottom: 10px;
    right: 8px;
    height: 50px;
    width: 50px;
    object-fit: cover;
}
.profile-banner .title {
  font-size: 54px;
}

.profile-banner .proimg {
  align-items: end;
}

.profile-form {
  border-radius: 30px;
  border: 1px solid #0C3485;
  background: #FFFFFE;
  padding: 40px;
}

.profile-form .iconn-field {
  position: relative;
}

.profile-form .iconn-field .icon {
  position: absolute;
  left: 15px;
  top: 12px;
  height: 26px;
}

.profile-form .iconn-field .form-control {
  padding-left: 46px;
  font-family: "Inter", sans-serif;
}

.profile-form  .form-control {
  background: #DAD9D9;
}

.profile-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.profile-form .title {
  color: #2999F2;
}
.nofooter footer {
  display: none;
}

.nofooter .copyright {
  border-radius: 70px;
  background: #00153F;
  padding: 16px 10px;
  color: #fff;
}

.nofooter .copyright a {
  color: #fff;
}


.modal-content {
  border-radius: 20px;
  border: 1px solid #0C3485;
  background: #DBEFFF;
}
.modal-content .title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal-body {
  padding: 30px;
}

.modal-backdrop {
  background: rgb(0 0 0 / 85%);
  backdrop-filter: blur(12px);
}

.modal-backdrop.show {
  opacity: 1;
}
.close-outside {
  position: absolute;
  right: 10px;
  width: 32px;
  height: 32px;
  opacity: 1;
  top: 10px;
  z-index: 999;
  /* background: transparent; */
  border: none;
  padding: 0;
  font-size: 24px;
}

.modal-body .form-group {
  text-align: left;
}

.modal-body .form-group .form-control {
  background: #fff;
}

.sideimg {
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
@media (min-width: 992px) {
  .sideimg-modal {
      max-width: 950px;
  }
}
.digit-group .form-group {
  text-align: center;
}
.digit-group .form-group .form-control {
  display: inline-block;
  width: 72px;
  height: 72px;
  border: 1px solid #5E5E5E;
  border-radius: 10px;
  margin: 0 6px;
  text-align: center;
  padding: 5px;
  font-size: 20px;
}
.digit-group .form-group .form-control:focus, .digit-group .form-group .form-control:valid {
  border-bottom: 1px solid #242837;
  box-shadow: none;
}


.timer{
  text-align: center;
  height: 200px;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.timer svg {
  height: 350px;
}

.booknow .form-group {
  margin-bottom: 10px;
}

.booknow .form-group label {
  font-size: 14px;
  font-weight: 500;
}

.booknow .form-group .form-control {
  border-radius: 8px;
  border: 1px solid #0C3485;
  background: #FFF;
  padding: 10px 14px;
  font-size: 14px;
}

.booknow .price {
  font-size: 28px;
  color: #0C3485;
}

.booknow .dates {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.booknow .dates .booking {
  position: relative;
  padding-left: 14px;
}

.booknow .dates .booking:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c3485;
}


.booknow .dates .booking:last-child:before {
  opacity: .5;
}

.date-available {
  border-radius: 16px;
  border: 1px solid #0C3485;
  background: #FFF;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 10px;
}

.date-available h5 {
  font-size: 18px;
  color: #0C3485;
  font-weight: 600;
  margin-bottom: 0;
}

.date-available p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

.date-available input[type="checkbox"] {
  height: 20px;
  width: 20px;
  display: block;
  margin-left: auto;
}

.date-available a {
  font-size: 12px;
  display: inline-block;
  white-space: nowrap;
  text-decoration: underline;
}

#datepicker {
  font-family: "Inter", sans-serif;
  background: #fff;
  border-radius: 10px;
}
#datepicker .datepicker-inline {
  padding: 20px;
  width: 100%;
}

#datepicker .datepicker-inline .table-condensed {
  width: 100%;
  border-spacing: 4px;
  border-collapse: unset;
  font-size: 16px;
}

#datepicker .datepicker-inline .table-condensed td.day {
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
}
#datepicker .ui-datepicker {
  width: 100%;
  border: 1px solid #0C3485;
  border-radius: 10px;
  padding: 10px;
}

#datepicker .ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
  color: #1B1A4E;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}





#datepicker2 {
  font-family: "Inter", sans-serif;
  background: #fff;
  border-radius: 10px;
}
#datepicker2 .datepicker-inline {
  padding: 20px;
  width: 100%;
}

#datepicker2 .datepicker-inline .table-condensed {
  width: 100%;
  border-spacing: 4px;
  border-collapse: unset;
  font-size: 16px;
}

#datepicker2 .datepicker-inline .table-condensed td.day {
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
}
#datepicker2 .ui-datepicker {
  width: 100%;
  border: 1px solid #0C3485;
  border-radius: 10px;
  padding: 10px;
}

#datepicker2 .ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
  color: #1B1A4E;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.history-tab .btn-tab {
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 40px;
  color: #000;
  padding: 20px 30px;
}

.history-tab .btn-tab.active,.history-tab .btn-tab:hover {
  background: #C3E5FF;
  color: #0C3485;
  border-color: #C3E5FF;
}

.history-tab {
  justify-content: center;
}
.history-inner-tab {
  justify-content: center;
}

.history-inner-tab .btn-tab {
  border-radius: 50px;
  background: #DDD;
  color: #626262;
  border-color: #DDD;
  font-size: 18px;
  font-weight: 600;
}

.history-inner-tab .btn-tab.active {
  border-radius: 50px;
  border: 1px solid #0C3485;
  background: #DBEFFF;
  color: #0C3485;
}
.table.dataTable.table {
  border-spacing: 0px 15px;
  border-collapse: unset;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.table.dataTable.table thead th {
  background: #C9E7FF;
  border: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 20px;
  color: #0C3485;
  white-space: nowrap;
}

.table.dataTable.table thead th:first-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.table.dataTable.table thead th:last-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.table.dataTable.table td, .table.dataTable.table th {
  border: none;
}

.table.dataTable.table tbody tr td {
  background: #FFF;
  box-shadow: 20px 0px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 14px 20px;
  border: 1px solid #0C3485;
  border-left: 0;
  border-right: 0;
  vertical-align: middle;
}

.table.dataTable.table tbody tr td:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
  border-left: 1px solid #0C3485;
}

.imgflex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.imgflex img {
  width: 80px;
  border-radius: 10px;
}

.imgflex h4 {
  margin-bottom: 0;
  font-size: 18px;
  color: #0C3485;
  font-weight: 500;
}
.proimg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proimg img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.proimg h4 {
  margin-bottom: 0;
  font-size: 20px;
  color: #000;
}
.proimg p {
  margin-bottom: 0;
  color: #6F6F6F;
  font-size: 16px;
  font-weight: 400;
}
.table.dataTable.table tbody tr td:last-child {
  border-right: 1px solid #0C3485;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
div.dt-container div.dt-length select {
  width: auto;
  display: inline-block;
  margin-right: 0.5em;
  border-radius: 4px;
  background: transparent;
  border: 1px solid #000;
  cursor: pointer;
  appearance: auto;
  padding-left: 10px;
}
div.dt-container div.dt-search input {
  border-radius: 4px;
  background: transparent;
  border: 1px solid #000;
  padding-left: 10px;
}
.linkwrap a {
  display: block;
  padding: 12px 30px;
  border-radius: 10px;
  border: 1px solid #000;
  background: #fffffe;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
.custom-control-label {
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-switch {
  padding-left: 0;
}
.custom-switch .custom-control-label::before {
  cursor: pointer;
  left: 0;
  width: 4rem;
  height: 1.8rem;
  pointer-events: all;
  border-radius: 5rem;
}
.custom-switch .custom-control-label::after {
  cursor: pointer;
  top: calc(0.25rem + 3px);
  left: calc(0rem + 4px);
  width: calc(1.6rem - 3px);
  height: calc(1.6rem - 3px);
  background-color: #adb5bd;
  border-radius: 5rem;
  transition: background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
      -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
      -webkit-transform 0.15s ease-in-out;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(2rem);
  transform: translateX(2rem);
}

.togglewrap {
  border-radius: 10px;
  background: #dbefff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  margin-bottom: 16px;
  gap: 10px;
}

.togglewrap p {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
  color: #0c3485;
}

.togglewrap .custom-switch {
  padding-left: 60px;
  height: 35px;
}
.infocard {
  height: 100%;
  /* background: #efefef; */
  background: linear-gradient(178deg, #0c3485, #6c84b5);
  color: #fff;
}

.infocard .card-body {
  padding: 22px;
  text-align: center;
}

.infocard .contact-sub-heading {
  font-size: 22px;
}

.infocard p {
  margin-bottom: 2px;
}
.infocard .carrdimg {
  width: 150px;
  height: 100px;
  object-fit: contain;
}
.booknow .dates .lateDealsColor {
  position: relative;
}
  @media (max-width: 1399px) {
    .caravans-box img {
      height: 200px;
    }

    .caravans-text .btn {
      padding: 10px 10px;
      font-size: 16px;
    }

    .navbar-nav {
      gap: 20px;
    }

    .navbar-light .navbar-nav .nav-link {
      padding: 0;
    }

    .copyright a:hover {
      text-decoration: underline;
      transition: 0.2s;
    }

    .navbar-light .navbar-nav .nav-link {
      margin: 0 5px;
      font-size: 16px;
    }

    div#navbarNav {
      justify-content: center;
    }



    .btn {
      padding: 10px 30px;
    }

    body {
      overflow-x: hidden;
    }

    .heading {
      font-size: 50px;
    }
    .mheading {
      font-size: 44px;
    }
    .para-lg {
      font-size: 18px;
    }
    body {
      font-size: 16px;
    }
    .banner-carousel img {
      max-height: 512px;
    }

    .seaview .carousel-indicators {
      bottom: 30px;
    }

    .holiday-img {
      position: relative;
    }

    .carousel-item img {
      max-height: 400px;
    }

    footer .img-fluid {
      max-width: 300px;
    }

    .primrose img {
      object-fit: cover;
      width: 100%;
      border-radius: 20px;
    }

    .section-padding {
      padding: 50px 0;
    }
    .review-sec {
      padding-bottom: 100px;
    }
    .form-icon .form-control {
      font-size: 16px;
    }

    .caravans-text h2 {
      font-size: 22px;
    }

    .newsletter button:hover {
      background: #0c3485;
      color: #fff;
      transition: 0.2s;
    }

    .socialbtn a:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    footer .links a:hover {
      color: #2999f2;
      transition: 0.2s;
      text-decoration: underline;
    }

    .social a i:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    .newsletter input:hover:focus {
      border: 1px solid #2999f2;
      transition: 0.2s;
    }

    .copyright a:hover {
      text-decoration: underline;
      transition: 0.2s;
    }
  }

  @media (max-width: 1199px) {
    .property-card {
      display: block;
  }

  .property-card .img-card {
      width: 100%;
      margin-bottom: 16px;
  }
    footer .links {
      gap: 12px;
      font-size: 16px;
    }

    .caravans-text h2 {
      font-size: 20px;
    }

    .heading {
      font-size: 54px;
    }

    .navbar-nav {
      gap: 6px;
    }

    .navbar-light .navbar-nav .nav-link {
      font-size: 15px;
    }

    .newsletter button:hover {
      background: #2999f2;
      color: #fff;
      transition: 0.2s;
    }

    .socialbtn a:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    footer .links a:hover {
      color: #2999f2;
      transition: 0.2s;
      text-decoration: underline;
    }

    .social a i:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    .newsletter input:hover:focus {
      border: 1px solid #2999f2;
      transition: 0.2s;
    }

    .copyright a:hover {
      text-decoration: underline;
      transition: 0.2s;
    }
  }

  @media (min-width: 992px) {
    .navbar-toggler {
      display: none;
    }
    .offcanvas-lg {
        position: unset;
        width: auto;
        transform: none;
        border: none;
        visibility: unset;
        background: transparent;
        display: block;
    }

    .offcanvas-lg .offcanvas-header {
        display: none;
    }

    .navbar-expand-lg {
        display: block;
    }
  }
  @media (max-width: 991px) {
    #datepicker .datepicker-inline .table-condensed td.day,#datepicker2 .datepicker-inline .table-condensed td.day {
      height: 50px;
    }
    .gallery-item {
      height: 400px;
    }
    .offcanvas-header .logo img {
        max-width: 180px;
    }

    .offcanvas-header {
        align-items: flex-start;
    }

    .offcanvas-body .navbar-nav {
        gap: 10px;
    }

    .offcanvas-body .navbar-nav .nav-link {
        font-size: 20px;
        font-weight: 400;
    }
    .copyright p,
    .copyright a {
      font-size: 12px;
    }

    footer .contact a {
      font-size: 14px;
    }

    .newsletter button {
      padding: 11px 20px;
      font-size: 14px;
    }

    .newsletter input {
      padding: 10px 18px;
      font-size: 14px;
    }

    .newsletter h4 {
      font-size: 24px;
    }

    footer .contact .social a {
      height: 26px;
      width: 26px;
      font-size: 12px;
    }

    footer .contact .social {
      font-size: 14px;
    }

    footer .links {
      gap: 8px;
      font-size: 12px;
    }

    .banner-text {
      padding-left: 0;
    }

    .bannform {
      margin: 0;
      margin-bottom: 20px;
    }

    .navbar-collapse {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: #dbefff;
      z-index: 111;
      padding: 0px 20px;
    }

    .rp-right {
      padding-right: 80px;
    }

    .socialbtn {
      font-size: 0;
      padding: 17px 14px;
    }

    .newsletter button:hover {
      background: #2999f2;
      color: #fff;
      transition: 0.2s;
    }

    .socialbtn a:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    footer .links a:hover {
      color: #2999f2;
      transition: 0.2s;
      text-decoration: underline;
    }

    .social a i:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    .newsletter input:hover:focus {
      border: 1px solid #2999f2;
      transition: 0.2s;
    }

    .copyright a:hover {
      text-decoration: underline;
      transition: 0.2s;
    }
  }

  @media (max-width: 767px) {
    .commentwrap {
      border-radius: 10px;
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.14);
      padding: 16px;
  }
    .stars {
      font-size: 24px;
      letter-spacing: -3px;
  }
    .detail-card .alert {
      padding: 10px;
    }
    .modal-body .flex_between {
        flex-wrap: wrap;
    }
    .booknow .dates {
        gap: 10px;
        font-size: 12px;
    }
    .modal-body {
        padding: 30px 14px;
    }
    .profile-form {
        border-radius: 20px;
        padding: 20px;
    }
    .profile-banner .title {
        font-size: 30px;
        margin-top: 40px;
    }
    .profile-img .pimg {
        width: 140px;
        height: 140px;
    }
    .profile-banner .cover .cimg {
      height: 260px;
    }
    .profile-banner {
      margin-bottom: 0px;
  }
    .property-card {
      border-radius: 15px;
      padding: 14px;

  }
  .property-card .img-card {
    height: 200px;
  }
    .checkwrap .flexwrap .custom-checkbox {
      font-size: 10px;
  }
    .detail-card .checkwrap .heading {
      font-size: 22px;
  }
    .btngroup {
      gap: 4px;
  }
    .detail-card .title {
      font-size: 22px;
  }
    .detail-card {
      padding: 20px;
  }
    .detail-card .heading {
      font-size: 28px;
  }
    .slider-nav .slick-list .slick-track img {
      height: 80px;
      width: 80px;
      border-radius: 8px;
      margin-right: 6px;
  }
    .slider-for img {
      height: 280px;
      border-radius: 16px;
  }
    .btn-tab {
      padding: 8px 14px;
      font-size: 16px;
    }
    .partner img {
        height: 55px;
    }
    .mheading {
      font-size: 32px;
  }
    body {
      padding: 10px;
    }
    .gallery-item {
      height: 300px;
    }
    .caravans-box .para-lg {
      font-size: 16px;
    }
    .banner,.sub-banner {
      margin-bottom: 0;
      margin-top: 10px;
    }
    .sub-banner {
      min-height: 220px;
      border-radius: 16px;
    }
    .section-padding {
      padding: 40px 0;
    }
    .review-sec {
      padding-bottom: 80px;
    }
    .bannform {
      padding: 16px;
    }

    footer .links {
      display: inline-block;
      width: 46%;
      vertical-align: middle;
      border: none;
      padding: 0;
      padding-right: 4px;
      margin-right: 4px;
      border-right: 1px solid #fff;
    }

    footer .links a {
      display: block;
      margin-bottom: 2px;
    }

    footer .contact {
      display: inline-block;
      width: 48%;
      vertical-align: middle;
    }

    footer .contact a {
      display: block;
      margin-bottom: 8px;
    }

    p {
      font-size: 14px;
    }

    .para-lg {
      font-size: 18px;
    }

    .holiday-text h3 {
      font-size: 16px;
    }

    .heading {
      font-size: 32px;
    }

    .innerwrap {
      padding: 30px 15px;
    }

    .form-icon i {
      padding: 10px;
      font-size: 16px;
    }

    .form-icon .form-control,
    .form-icon .form-select {
      height: 50px;
      padding: 10px;
      padding-left: 50px;
      font-size: 16px;
    }

    .btn {
      padding: 10px 18px;
      font-size: 16px;
    }



    .headwrap {
      padding: 20px;
      margin-bottom: 0;
    }

    .socialbtn {
      display: none;
    }

    .newsletter button:hover {
      background: #0c3485;
      color: #fff;
      transition: 0.2s;
    }

    .socialbtn a:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    footer .links a:hover {
      color: #2999f2;
      transition: 0.2s;
      text-decoration: underline;
    }

    .social a i:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    .newsletter input:hover:focus {
      border: 1px solid #2999f2;
      transition: 0.2s;
    }

    .copyright a:hover {
      text-decoration: underline;
      transition: 0.2s;
    }
  }

  @media (max-width: 440px) {
    #datepicker .datepicker-inline,#datepicker2 .datepicker-inline {
      padding: 10px;
    }
    #datepicker .datepicker-inline .table-condensed td.day,#datepicker2 .datepicker-inline .table-condensed td.day {
      height: 35px;
      min-width: 35px;
    }
    #datepicker,#datepicker2 {
        max-width: 300px;
    }
    .seaview img {
      height: 280px;
    }
    footer .contact .social {
      font-size: 12px;
    }



    footer .contact a {
      font-size: 12px;
    }

    .newsletter button:hover {
      background: #0c3485;
      color: #fff;
      transition: 0.2s;
    }

    .socialbtn a:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    footer .links a:hover {
      color: #2999f2;
      transition: 0.2s;
      text-decoration: underline;
    }

    .social a i:hover {
      color: #2999f2;
      transition: 0.2s;
    }

    .newsletter input:hover:focus {
      border: 1px solid #2999f2;
      transition: 0.2s;
    }
  }
