@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
  --brand: #075447;
  --brand-light: #3BE0C4;
  --yellow: #F7A800;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #454545;
  --dark: #000000;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #696969;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Carlito", sans-serif;
  --heading-font: "Bebas Neue", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font); 
  color: var(--body-text-color);  
}
.ff-heading { font-family: var(--heading-font); }
.spacing { letter-spacing: 0.6px; }
.lead-md {
  font-size: 1.5625rem;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.text-81 {
  font-size: 5.0625rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: rgba(0, 62, 110, 0.07) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--brand);
}
a:hover {
  color: var(--yellow);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
 
.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-primary-light {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--brand);
}
.btn-primary-light:hover, .btn-primary-light:focus, .btn-primary-light:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
 
.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}
 

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.boat__list li {
  padding-left: 2rem;
  position: relative;
}
.boat__list li::before {
  content: "";
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  position: absolute;
  top: 0.25rem;
  left: 0%; 
} 
.boat__list.white li::before {
  filter: contrast(0) brightness(10);
} 

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
} 
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  } 
  .container {
    max-width: calc(100% - 20px);
  }
  .boat__list li::before { 
    width: 1.25rem;
    height: 1.25rem; 
    top: 0.25rem; 
  } 
    .boat__list li {
    padding-left: 1.75rem; 
  }
}
 
 
footer a {
  color: var(--link-color);
  text-transform: capitalize;
  font-size: 0.937rem;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
 

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background-color: var(--brand);
  color: var(--white);
}
.social__links li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .logo__main {
  max-height: 6rem;
  width: auto;filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 4rem;
    width: auto;
  }
  footer .logo {
    max-height: 6rem;
    width: auto;
  }
  .backTop {
      bottom:0;right:1rem;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  } 
}



.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  right: 2rem;
  bottom: 8rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
.call__btn {
  width: 4rem;
  height: 4rem;
  min-height: auto;
  background-color: #33a867;
  color: var(--white);
  z-index: 999;
  left: 2rem;
  bottom: 5rem;
}

@media (max-width: 576px) {
  .whatsapp {
    right: 1rem;
    bottom: 4rem;
  }
  .call__btn {
    left: 0.5rem;
    bottom: 4rem;
  }
}

 

.header__wrapper { min-height: 100vh; }
@media (min-width: 2000px) {
  .header__wrapper {
    min-height: 900px;
  }
}
.why__kayaking__bg__overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: var(--brand-light);
}
.why__kayaking__bg__overlay.align__right {
  left: 0;right: inherit;
}
@media (max-width: 991px) {
  .why__kayaking__bg__overlay {
    width: 140vw;right: -20vw;  
  }
  .why__kayaking__bg__overlay.align__right {
    left: -20vw;right: initial;
  }
}
.bg-primary-light { background-color: var(--brand-light); }

 

.accordion .accordion-item {
  background-color: var(--brand-light);
  border-radius: 3rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--brand-light) !important;
}
.accordion .accordion-item .accordion-button {
  border-radius: 0.65rem;
  color: var(--brand);
  font-size: 1.375rem;
  padding: 1rem 1rem;
  position: relative;
  font-weight: 500;
  min-height: 5rem;
  background-color: var(--brand-light);
}
.accordion .accordion-item .accordion-button::after {
  background-image: var(--plus);
  -webkit-transform: none;
          transform: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--brand);
  background-color: var(--brand-light);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--minus);
}
.accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-item .accordion-button.btnclr {
  color: var(--brand);
  min-height: 6rem;
}
.accordion .accordion-item .accordion-button.btnclr:not(.collapsed) {
  color: #3E3E3E;
}
.accordion .accordion-item .accordion-body {
  background-color: var(--brand-light);
  padding-top: 0;
}
.accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
 