body {
  font-family: 'Inter', sans-serif;
	    color: #09355e;
}
#primary {
    min-height: 800px;
}
.admin-bar .site-header {
    margin-top: 25px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

h2 {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 33px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 90px;
    height: 10px;
    opacity: 0;
    transform: translateX(-50%) scaleX(0.3);
    transform-origin: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 90 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 Q22 2 45 5 T90 4' stroke='%23cfe2f3' fill='none' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

h2.wave-visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

h3.subtitle {
    margin: 5px 0;
	color: #20c5f3;
}
.section-title {
	margin-bottom: 20px;
    margin-top: 10px;
}

#page {
    margin-top: 105px;
}
a:hover, a:focus, a:active {
    color: #20c5f3;
}


@media (max-width: 768px) {
h2 {
    font-size: 26px;
}
}
/*header*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top-bar {
  background: #203345;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  font-size: 14px;
}
.top-bar a {
	color: #fff;
}
.top-bar a:hover {
	color: #f5ffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  background: #fff;
	letter-spacing: 1px;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, .06);
}

.logo img {
  max-height: 94px;
}

.main-nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  font-weight: 400;
}

.main-nav a {
  color: #09355e;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
	text-decoration: underline;
}

header nav.main-nav {
    margin-left: auto;
}

.header-cta a {
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 25px;
  background: #173A5C;
}
.header-cta a:hover {
    background: #20c5f3;
    color: #fff;

}
.header-cta {
    padding-right: 5%;
	padding-left: 20px;
}
header .logo {
    padding-left: 5%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: #173A5C;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #173A5C;
  transform: translateY(-100%);
  transition: 0.3s;
  z-index: 998;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-inner {
display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    
  height: 100%;
  padding: 20px;
}

.mobile-menu-list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0 0 40px;
}

.mobile-menu-list li {
  margin-bottom: 25px;
}

.mobile-menu-list a {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
  text-transform: uppercase;
}
.mobile-menu-list a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {

.mobile-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background: #20c5f3;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-cta a:hover {
  background: #173A5C;
}

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
.main-nav .menu {
    gap: 10px;
	font-size: 14px;
}
	.header-cta a {
    padding: 5px 5px;
    font-size: 12px;
}
	.header-cta {
    padding-right: 10px;
    padding-left: 10px;
}
	header .logo {
    padding-left: 10px;
}
}


/*footer*/
.site-footer {
position: relative;
  background: #173A5C;
  color: #fff;
  padding-top: 0px; 
  overflow: hidden;
}
span.footer-title {
	display: block;
    font-size: 18px;
    font-weight: 400;
	margin: 8px 0 10px 0;
	color: #20c5f3;
	    font-family: 'Playfair Display', serif;
    letter-spacing: .5px;
    text-transform: capitalize;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 60px;
}
.footer-logo img {
  max-width: 160px;
  height: auto;
  margin: 10px 0;
  background: #fff;
  border-radius: 4px;
}

.site-footer a {
  display: inline-block;
  color: #fff!important;
  text-decoration: none;
  transition: 0.25s ease;
}

.site-footer a:hover {
  transform: translateX(3px);
}
.footer-logo a:hover {
  transform: none;
}

.footer-logo {
    justify-content: center;
    display: flex;
}
.footer-logo a {
	opacity:1;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-col-2 a,
.footer-col-2 p {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-col-2 a[href*="maps"] {
  color: #cfcfcf;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 6px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  font-size: 13px;
  opacity: 0.9;
}
.footer-bottom a {
    text-decoration: underline;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.site-footer a:hover {
  color: #ffffff;
}
.footer-col.footer-col-2 a {
  text-decoration-line: underline;
}
.footer-wave {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 120%;
  height: 120px;
  z-index: 5;
  transform: translateX(-50%);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80%;
}
.footer-inner {
  padding-top: 120px;
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 13px;
  opacity: 0.75;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}


.footer-copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
	.footer-wave {
    height: 60px;
	}
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 50px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-logo img {
    max-width: 140px;
  }
	.site-footer .container {
    max-width: 300px;
}
}
/*hero*/
.hero {
  position: relative;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}


.hero-wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120%;
    transform: translateX(-50%);
    height: 80px;
    z-index: 5;
    pointer-events: none;
    line-height: 0;
    overflow: hidden;     
}
.hero-wave svg {
    width: 100%;
    height: 100%;     
    display: block;
	overflow: hidden;
}

.hero--narrow {
  height: 500px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
	background: rgba(10, 30, 60, 0.15);
  /*background: rgba(32, 197, 243, 0.35);
  mix-blend-mode: soft-light;*/
}
.hero .container {
    margin: auto;
    text-align: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
	/*background: rgba(10, 30, 60, 0.15);*/
    /*backdrop-filter: blur(1px);*/
    border-radius: 4px;
}

.hero__title {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero__subtitle {
  font-size: 20px;
  opacity: 0.9;
}
.hero__btn {
    display: inline-block;
    margin-top: 0px;
    padding: 12px 24px;
    background: #173A5C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.hero__btn:hover {
    background: #20c5f3;
    color: #fff;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }
	.hero--narrow {
    height: 400px;
}
	.hero-wave {
		height:60px;
	}
}

/*offers*/
.offers {
  padding: 20px 20px;
      max-width: 1400px;
    margin: auto;	
	margin-bottom: 10px;
}

.offers__title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 10px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.offers__item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}

.offers__item:hover {
  transform: translateY(-5px);
}

.offers__icon {
  margin-bottom: 15px;
}

.offers__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(37%) saturate(1147%) hue-rotate(171deg) brightness(95%) contrast(91%);
}

.offers__item-title {
  font-size: 19px;
  margin-bottom: 10px;
}

.offers__item-text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .offers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .offers__item {
padding: 20px 10px 5px;
	}
}
/*why choose*/
.why-choose-section {
    padding: 20px;
	max-width: 1400px;
    margin: 0 auto;
}
.why-choose-grid {
  display: flex;
}
.why-choose-left {
   padding: 20px;
}
.why-choose-left,
.why-choose-right {
  flex: 1;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
/*text image parallax*/
.text-image-wrapper {
  display: flex;
  align-items: stretch;
  background:#173A5C;
	color: #fff;
}
.text-image-section .text {
    text-align: left;
}

.text-image-section.image-right .text-image-media {
  order: 2;
}

.text-image-section.image-right .text-image-content {
  order: 1;
}

.text-image-media {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.text-image-media img {
  width: 100%;
  height: 100%;
  display: block;
	object-fit: cover;
	display: block;
  transform: translate3d(0,0,0) scale(1.1);
  will-change: transform;
}

.text-image-content {
  flex: 1;
  padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-image-section h2 {
    left: 0;
    transform: none;
}
.parallax-image {
  transform: translateZ(0);
  flex: 0 0 55%;
  max-width: 55%;
}
.text-image-cta {
  margin-top: 24px;
  text-align: center;
	margin-bottom: 10px;
}

.text-image-cta .btn {
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 4px;
	text-transform: uppercase;
	background: #20c5f3;
}

.text-image-cta .btn:hover {
    color: #173A5C;
   background: #fff;

}
@media (max-width: 768px) {
  .text-image-wrapper {
    flex-direction: column;
  }

  .text-image-content {
    order: 1; 
	padding: 20px;  
  }

  .text-image-media {
    order: 2; 
  }
	.parallax-image {
    flex: 100%!important;
            max-width: none!important;
        width: 100%;
}
}

/*wysiwyg block*/

.wysiwyg-block {
  padding: 40px 20px;
}

.wysiwyg-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.wysiwyg-content h2,
.wysiwyg-content h3 {
  margin-top: 30px;
}

.wysiwyg-content p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
	.wysiwyg-content h2 {
    font-size: 26px!important;
	text-align: center;
	}
}
/* step by step*/
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 0px;
  justify-content: center;
}
.how-it-works {
    max-width: 1400px;
    margin: 0 auto;
	padding: 20px 20px;
}

.step-card {
position: relative;
  padding: 10px 20px;
  overflow: hidden;
}
.step-number {
  font-size: 160px;
  font-weight: 700;
  opacity: 0.06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  text-align: center;
  width: 100%;
}
.step-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-content h3 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
.how-it-works-grid .step-content p {
    margin-bottom: 5px !important;
}
  .step-number {
    font-size: 100px;
  }
}
/*image grid*/
.image-grid-section {
  padding: 0 20px;
  margin: auto;
  max-width: 1400px;
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.image-grid-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 400px;
  border-radius: 12px;
  text-decoration: none;
}

.image-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.4s ease;
}

.image-grid-card:hover img {
  transform: scale(1.15);
}

.image-grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.image-grid-overlay h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

.image-grid-card:hover .image-grid-overlay {
  background: rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-grid-card {
    height: 180px;
  }
}
/*gallery*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 0;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 .gallery-grid .gallery-item:nth-child(n+5) {
    display: none;
  }}
/* reviews */
.reviews-section {
  position: relative;
  background-color: #fff; 
  padding: 0px 20px 20px;
  color: #173A5C;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
}

.reviews-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-title {
  font-size: 36px;
}

.reviews-slider {
  margin-top: 20px;
}

@media (max-width: 768px) {
.reviews-title {
    font-size: 26px;
    text-align: center;
}
	.reviews-section {
	padding: 0px 0px 20px;	
	}
}
/*faq*/
.faq-section {
    padding: 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;

  background: none;
  border: none;
  padding: 22px 0;

  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  order: -1;
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #173A5C;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition: all 0.3s ease;
  padding-right: 40px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/*404*/
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.error-404 h1 {
  font-size: 120px;
  margin-bottom: 10px;
}

.error-404 h2 {
  margin-bottom: 20px;
    display: block;
}

.error-404 .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
/*top page block*/
.top-page-h1-block {
    position: relative;
    min-height: 200px;
    padding: 60px 20px;
    background-color: #173A5C; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
}
.top-page-h1-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #20c5f3;
  z-index: 3;
}

.top-page-h1-block::before {
    content: "";
    position: absolute;
    inset: 0;
   /* background: rgba(0,0,0,0.4);*/
    z-index: 1;
}

.top-page-h1-block .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
.top-page-h1-block {
		min-height: 300px!important;
	}
}


/*Default editor*/
section.default-content {
    padding: 20px;
    max-width: 1400px;
    margin: auto;
    margin-bottom: 10px;
}

/*contact us*/
.page-id-292 .wp-block-columns.is-layout-flex {
	gap:0;
}
.column-2>h2.wp-block-heading.wave-visible {
    display: block;
    transform: none;
    left: auto;
}
.cf-custom-block {
    padding: 20px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
	margin-bottom: 20px;
	width: 430px;
}
.cf-custom-block h2 {
    margin: 0px 0px 5px;
}
.cf-custom-block ul {
    margin: 0;
	padding-top: 10px;
}
.column-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-direct {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-btn {
  color: #fff;
  background: #173A5C;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease;
	    font-size: 16px;
}

.contact-btn:hover {
    background: #20c5f3;
    color: #fff;
}
.page-id-292 h2 {
font-size: 26px;
}

@media (max-width: 768px) {
	.page-id-292 h2 {
text-align: center;
}
	.cf-custom-block {
width: auto;
	}
}
/*default hero block*/
.page-hero {
 position: relative;
    display: flex;
    align-items: center;
    min-height: 200px;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.page-hero.has-bg {
  background-size: cover;
  background-position: center;
}

.page-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.page-hero.no-bg {
background: #173A5C;
}

.page-hero .container {
  position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #20c5f3;
    z-index: 3;
}

.page-title {
  color: #fff;
  font-size: 36px;
  margin: 0;
}

/*contact form*/
.required {
	color: #e53935;
}
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

.wpcf7 form p {
  margin-bottom: 5px;
}

.wpcf7 label {
  font-size: 13px;
  color: #09355e;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(9, 53, 94, 0.15);
  border-radius: 8px;
  font-size: 14px;
  color: #09355e;
  background: #fff;
  transition: all 0.25s ease;
  outline: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #20c5f3;
  box-shadow: 0 0 0 3px rgba(32, 197, 243, 0.15);
}

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  background: #09355e;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wpcf7 input[type="submit"]:hover {
  background: #20c5f3;
  color: #fff;
  transform: translateY(-1px);
}

.wpcf7-response-output {
  border: none !important;
  padding: 12px 16px !important;
  margin-top: 15px !important;
  border-radius: 6px;
  font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #fff3f3;
  color: #a10000;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #f0fbff;
  color: #09355e;
  text-align: center;
  font-size: 16px;
}

.form-hint {
  font-size: 12px;
  color: rgba(9, 53, 94, 0.6);
  margin-top: -10px;
  margin-bottom: 10px;
}
.cf-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.cf-col {
  flex: 1;
  min-width: 240px;
}

.cf-col input,
.cf-col textarea,
.cf-col select {
  width: 100%;
}

@media (max-width: 767px) {
.wpcf7-form .wpcf7-form-control-wrap[data-name="preferred-date"] {
    position: relative;
}

.wpcf7-form .wpcf7-form-control-wrap[data-name="preferred-date"]::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5C3.9 4 3 4.9 3 6v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E");
}
.wpcf7-form input[type="date"] {
    padding-right: 50px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
	    min-height: 44px;
}
}
/*about us*/
.page-id-329 .parallax-image {
    flex: 0 0 50%;
    max-width: 50%;
}
.page-id-329 section:nth-of-type(2).text-image-section .text-image-wrapper {
	  background: #fff;
      color: #173A5C;
}
.page-id-329 section.text-image-section:nth-last-of-type(1) .text-image-wrapper {
  background: #fff;
  color: #173A5C;
	    margin-bottom: 30px;
}
/*party boat punta cana page*/
.page-id-348 .top-page-h1-block {
    min-height: 400px;
    background-position: top;
	display: flex;
    align-items: center;
    justify-content: center;
}
.who-its-for {
  text-align: center;
  padding: 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  margin: 0 auto 30px;
  opacity: 0.8;
  text-align: left;
}

.who-lines {
  max-width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.who-lines p {
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0;
  position: relative;
}

.who-lines p::before {
  content: "+";
  margin-right: 8px;
  color: #20c5f3;
  font-weight: 600;
}
.who-lines p:empty {
  display: none;
}
.page-id-348 .wysiwyg-block {
	    padding: 20px 20px;
}
.page-id-348 .wysiwyg-content .who-its-for p {
text-align: left;
}
.page-id-348 .who-its-for p.section-subtitle {
    text-align: left !important;
}
.page-id-348 .wysiwyg-content h2 {
    margin-top: 10px;
	margin-bottom: 20px;
	font-size: 33px;
	display: flex;
    justify-content: center;
}
.wysiwyg-block p.section-subtitle {
    text-align: center;
}
	
@media (max-width: 768px) {	
	.section-title {
  font-size: 28px;
  text-align: center;		
}
}	
/*cta button*/
a.cta-btn {
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 4px;
    background: #173A5C;
}
a.cta-btn:hover {
    background: #20c5f3;
    color: #fff;
}
.cta-wrap {
    text-align: center;
    margin: 16px 0;
}
/*snorkeling page*/
.snorkeling-price__main {
    text-align: center;
}
.snorkeling-price h3 {
    margin-top: 30px;
    text-align: center;
}
.snorkeling-price__value {
    background: #20c5f3;
    padding: 8px;
    border-radius: 10px;
	text-align: center;
	width: fit-content;
	margin: auto;
}
.snorkeling-price__box>p {
	text-align: center;
}
.snorkeling-price__content {
    padding-bottom: 10px;
}
.snorkeling-price h2 {
	margin-top:0;
}
.page-id-394 .top-page-h1-block {
    min-height: 400px;
    background-position: center 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*deep sea fishing page*/
.wysiwyg-content h2 {
    margin-top: 0;
}
.page-id-453 .top-page-h1-block {
    min-height: 400px;
    background-position: center 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}