/********** Template CSS **********/

/* blue primary : #1692cc */
:root {

    /* --primary: #1692cc; */
    --primary: #069acf;
    --light: #FAFAFA;
    --dark: #1D242B; 
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
      font-family: DM Sans !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
      font-family: DM Sans !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
      font-family: DM Sans !important;
}

p,
.p{
    font-size: medium;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    color: #fff !important;
    background-color: #000 !important;
    border-color: #fff !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--light);
    border-color: #fff;
    border-radius: 50%;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--dark);
    border-color: var(--light);
}

.btn-outline-light {
  border-radius: 5px;
}

.btn-outline-light:hover {
  color:var(--light) ;
  background-color: var(--primary);
  border-color: rgb(248, 248, 248);
}

.btn-outline-light i {
  font-size: 20px; 
  
}

.btn-outline-light:hover i {
  animation: rotateIcon 1s infinite linear; /* Apply animation on hover */
}


.btn-outline-dark {
  border-radius: 5px;
}

.btn-outline-dark:hover {
  color:var(--light) ;
  background-color: var(--primary);
  border-color: rgb(248, 248, 248);
}

.btn-outline-dark i {
  font-size: 20px; 
  
}

.btn-outline-dark:hover i {
  animation: rotateIcon 1s infinite linear; /* Apply animation on hover */
}


/* Video section */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area while maintaining aspect ratio */
}
	.bannerVideo
	{
		display: block;
	}

/*** Navbar ***/
.navbar .dropdown-toggle::after { 
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
@media screen and (min-width: 992px) and (max-width: 1182px)  {
  .navbar .navbar-nav .nav-link {
      font-size: 12px; /* Adjust the font size as needed */
  }

  .navbar-brand h2{
    font-size: 22px;
  }
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Video Slider Responsiveness */

/* @media (max-width: 768px) {
    #sliderVideo {
        height: auto;
        width: 100%;
    }
} */
/*** Header ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
      position: relative;
      min-height: 500px;
  }
  
  .header-carousel .owl-carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
      font-size: 14px !important;
      font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
      font-size: 30px;
      font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* hero section banner */

.about{
	cursor: pointer;
	background-color: var(--dark);
	color: #FFFFFF;
	
}

.about span {
	display: block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	margin:auto;
	border-radius:50%;  
	font-size: 40px;
	color: #FFFFFF;
	opacity: 0.7;
	background-color: var(--primary);
	border: 2px solid var(--light);

	webkit-transition:all .5s ease;
 	moz-transition:all .5s ease;
 	os-transition:all .5s ease;
 	transition:all .5s ease;

}
.about-item:hover span{
	opacity: 1;	
	border: 2px solid var(--primary);
	font-size: 42px;
	-webkit-transform: scale(1.1,1.1) rotate(360deg) ;
	-moz-transform: scale(1.1,1.1) rotate(360deg) ;
	-o-transform: scale(1.1,1.1) rotate(360deg) ;
	transform: scale(1.1,1.1) rotate(360deg) ;
}
.about-item:hover h2{
	opacity: 1;
	-webkit-transform: scale(1.1,1.1)  ;
	-moz-transform: scale(1.1,1.1)  ;
	-o-transform: scale(1.1,1.1)  ;
	transform: scale(1.1,1.1) ;
}
.about .lead{
	/* color: #CC0039; */
	font-size: 14px;
	font-weight: bold;
}



/* Why Choose Us */

.item span, a, a:hover {
display: inline-flex;
text-decoration: none;
color: inherit;
align-items: center;
justify-content: center;
}

.section-head {
  margin-bottom: 60px;
}
.section-head h4 {
  position: relative;
  padding:0;
  color:var(--primary);
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;  
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}
.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right:0;  
  margin:0 auto;
}
.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color:var(--light)
}



/* .extra-text {
    font-size:34px;
    font-weight: 700;
    color:#2f2f2f;
    margin-bottom: 25px;
    position:relative;
    text-transform: none;
} */
.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.extra-text span {
    font-weight: 700;
    color:var(--primary);
}
.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover{
    background:var(--primary);
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
    background:#fff;
    border-radius:10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item p{
  color: #000;
}

.item:hover h5, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color: var(--primary);   
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}
.item .feature_box_col_one{
    background:rgba(247, 198, 5, 0.20);
    color:var(--primary)
}
.item .feature_box_col_two{
    background:rgba(255, 77, 28, 0.15);
    color:var(--primary)
}
.item .feature_box_col_three{
    background:rgba(0, 147, 38, 0.15);
    color:var(--primary)
}
.item .feature_box_col_four{
    background:rgba(0, 108, 255, 0.15);
    color:var(--primary)
}
.item .feature_box_col_five{
    background:rgba(146, 39, 255, 0.15);
    color:var(--primary)
}
.item .feature_box_col_six{
    background:rgba(23, 39, 246, 0.15);
    color:var(--primary)
}
.item p{
    font-size:15px;
    line-height:26px;
}
.item h6 {
    margin-bottom:20px;
    color:#2f2f2f;
}
.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.skills {
    padding-top:0px;
}
.skills .prog-item {
    margin-bottom: 25px;
}
.skills .prog-item:last-child {
    margin-bottom: 0;
}
.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius:20px;
    position: relative;
}
.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary);
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight:600;    
    color: #fff;
    background:rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}


/* Our Services */

.services {
	/* width: 1100px;  */
	/* display: grid; */
	/* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
	/* grid-gap: 15px; */
	/* margin: 0 auto; */
}

.services .Card {
	position: relative;
	width: 300px;
	height: 400px;
	margin: 0 auto;
	background: #fff;
	transition: 0.5s;
}
.services .Card:hover {
	box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}
.services .Card .face {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.services .Card .face.face1 {
	box-sizing: border-box;
	padding: 20px;
	text-align: center;
	background: #fff;
	color: var(--primary);
}
.services .Card .face.face1 h2 {
	margin-top: 60px;
}
.services .Card .face.face2 {
	background: var(--primary);
	transition: 0.5s;
}
.services .Card:hover .face.face2 {
	height: 80px;
	width: 80px;
	border-radius: 50%;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	border: 2px solid var(--primary);
	background: transparent;
}
.services .Card .face.face2 h2 {
	margin: 0;
	padding: 0;
	font-size: 10em;
	color: #fff;
	transition: 0.5s;
}
.services .Card .face.face1 a {
	display: inline-block;
	padding: 5px 10px;
	margin-top: 20px;
	text-decoration: none;
	color: var(--primary);
	border: 2px solid var(--primary);
}
.services .Card .face.face1 a:hover {
	color: #ffff;
	background: var(--primary);
}
.services .Card:hover .face.face2 h2 {
	color: var(--primary);
	font-size: 2em;
}




/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}






/*** 

====================================================================
		Testimonial Section
====================================================================

***/

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 210px;
  overflow: hidden;
  &:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/ring-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
  }
  .sec-title2 {
    position: relative;
    margin-bottom: 115px;
    .title {
      margin-bottom: 20px;
    }
  }
  .testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 -50px;
  }
}

.testimonial-block {
  position: relative;
  padding: 50px;
  .inner-box {
    padding: 80px 80px;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }
  .text2 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
  }
  .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
    .thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 82px;
      width: 82px;
      img {
        border: 6px solid #e5e6fa;
        border-radius: 50%;
        overflow: hidden;
        display: block;
        
        box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
      }
    }
    .name {
      position: relative;
      display: block;
      font-size: 21px;
      line-height: 1.2em;
      color: #382c4d;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: "Niramit", sans-serif;
    }
    .designation {
      position: relative;
      display: block;
      font-size: 16px;
      line-height: 24px;
      color: var(--primary);
      font-weight: 400;
      font-family: "Muli", sans-serif;
    }
  }
}

.testimonial-carousel {
  .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
  }
  .owl-next, .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .owl-next:hover, .owl-prev:hover {
    background-color: #000;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
  }
}

.arrow-right, .arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-image: url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/arrow-left-2.png);
  background-repeat: no-repeat;
  background-position: center;
	filter: brightness(2.5);
}

.arrow-right {
  background-image: url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
  .image {
    position: relative;
    margin-right: 0;
    img {
      display: inline-block;
      max-width: 100%;
      height: auto;
    }
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .sec-title {
    margin-bottom: 50px;
  }
  .testimonial-block {
    padding: 0;
    .inner-box {
      box-shadow: none;
      border: 2px solid #f1f1f1;
    }
  }
  .testimonial-carousel {
    .owl-nav {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 20px;
      text-align: center;
    }
    .owl-next, .owl-prev {
      border: 2px solid #f1f1f1;
    }
  }
}

@media only screen and (max-width: 1366px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid #fff;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* tabs */

    /* custom CSS styles here */
 

    .tab-content {
        display: none;
        padding: 20px;
    }

    .tab-content img {
        max-width: 100%;
        height: auto;
    }

    .tab-content.active {
        display: block;
    }

    .tab-buttons {
        text-align: center;
        margin-top: 20px;
        
        
    }

    .tab-button {
        background-color: #ececec;
        color: #000;
        font-weight: 900;
        padding: 15px 25px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .tab-button:hover {
        background-color: #0056b3;
        color: #fff;
        
    }

    .tab-button:focus {
        background-color: #0056b3 !important;
        color: #fff;
    }

    /* Transparent Header */


.bgcolor.scrolled{
  background-color: rgba(0, 0, 0, 0.856);
}

/* .bg-video{
    margin-top: -8rem;
} */


.bg-video {
    position: relative;
}

.video-container {
    position: relative;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; 
}

.text-overlay h1 {
    margin: 0;
    font-size: 5rem; 
}

@media (max-width: 767px) {
    .text-overlay h1 {
        margin: 0;
        font-size: 1.5rem; 
    }
}


/* CSS for changing background color on mobile */
@media (max-width: 767px) {
    .mobile-navbar-open {
        background-color: black !important; /
    }
}

/* About 3rd Section */

/* Style the icon list container */
.nectar-icon-list.completed {
    list-style: none;
    padding: 0;
  }
  
  /* Style individual list items */
  .nectar-icon-list-item {
    margin-bottom: 20px;
    display: flex;
    /* align-items: center; */
  }
  
  /* Style the icon holder */
  .list-icon-holder {
    background-color: #f9f9f9;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }
  
  /* Style the icons */
  .list-icon-holder i {
    font-size: 24px;
    color: #007bff; 
  }
  
  /* Style the content */
  .content {
    flex: 1;
    text-align: start !important;
  }
  
  /* Style the heading */
  .content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  /* Style the description */
  .content p {
    font-size: 16px;
    color: #666;
  }
  

/* map */
.map-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%; 
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Pricing */

/* Section Styles */
.padding {
    padding: 40px 0;
}


.section-title_home h2 {
    font-size: 28px;
    color: #333;
}

.section-title_home .b-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto;
}

/* Feature Box Styles */
.feature-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box h1 {
    font-size: 36px;
    color: #000;
}

.feature-box p {
    font-size: 16px;
    color: #000;
}

.feature-box ul {
    list-style-type: none;
    padding: 0;
}

.feature-box ul li {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

/* Button Styles */
.btn-text {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FEDC00;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
}

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

/* Additional Styles */
.content {
    text-align: center;
   
}

/* Media Queries for Responsiveness (Adjust as needed) */
@media (max-width: 768px) {
    .feature-box {
        margin-top: 20px;
    }
}

   

/* Bell Icon */
.whatsapp {
    position: fixed;
    right: 25px;
    top: 77%;
    z-index: 9999;
}
.whatsapp h5 {
    color: white;
    background: var(--primary);
    padding: 12px 16px;
    border-radius: 100%;
    border: 2px solid white;
}

/* Pulse Annimate */

.animatePulse{
    animation: animatePulse 0.5s infinite alternate;
}

@keyframes animatePulse {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.0);
    }
}


/* Front Page CSS */

.blur-circle1{
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom,rgba(26, 113, 243, 0.397),rgba(78, 63, 216, 0.39));
    border-radius: 50%;
    filter:blur(120px);
    position: absolute;
    left: 5%;
    top:20%;
    /* transform: translate(50%); */
}
.blur-circle2{
    width: 200px;
    height: 100px;
    background: linear-gradient(to bottom,rgba(26, 113, 243, 0.397),rgba(78, 63, 216, 0.39));
    border-radius: 50%;
    filter:blur(100px);
    position: absolute;
    right: 0%;
    top:50%;
  
}


  
  /* Start Landing Page */
  .landing-page header {
    min-height: 80px;
    display: flex;
  }
  @media (max-width: 767px) {
    .landing-page header {
      min-height: auto;
      display: initial;
    }
  }
  .landing-page header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 767px) {
    .landing-page header .container {
      flex-direction: column;
      justify-content: center;
    }
  }
  .landing-page header .logo {
    color: #5d5d5d;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
  }
  @media (max-width: 767px) {
    .landing-page header .logo {
      margin-top: 20px;
      margin-bottom: 20px;
    }
  }
  .landing-page header .links {
    display: flex;
    align-items: center;
  }
  @media (max-width: 767px) {
    .landing-page header .links {
      text-align: center;
      gap: 10px;
    }
  }
  .landing-page header .links li {
    margin-left: 30px;
    color: #5d5d5d;
    cursor: pointer;
    transition: .3s;
  }
  @media (max-width: 767px) {
    .landing-page header .links li {
      margin-left: auto;
    }
  }
  .landing-page header .links li:last-child {
    border-radius: 20px;
    padding: 10px 20px;
    color: #FFF;
    background-color: #6c63ff;
  }
  .landing-page header .links li:not(:last-child):hover {
    color: #6c63ff;
  }
  .landing-page .content .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 140px;
    min-height: calc(100vh - 80px);
  }
  @media (max-width: 767px) {
    .landing-page .content .container {
      gap: 0;
      min-height: calc(100vh - 101px);
      justify-content: center;
      flex-direction: column-reverse;
    }
  }
  @media (max-width: 767px) {
    .landing-page .content .info {
      text-align: center;
      margin-bottom: 15px 
    }
  }
  .landing-page .content .info h1 {
    color: #bbbbbb;
    font-size: 44px;
  }
  .landing-page .content .info p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    color: #b3b3b3;
  }
  .landing-page .content .info button {
    border: 0;
    border-radius: 20px;
    padding: 12px 30px;
    margin-top: 30px;
    cursor: pointer;
    color: #FFF;
    background-color: #6c63ff;
  }
  .landing-page .content .image img {
    max-width: 100%;
  }
  /* End Landing Page */

  .main-image{
    /* mix-blend-mode:exclusion */
    width: 600px;
    height: 400px;
  }
   h1,p{
    color:white;
  }


  /* =================== */
 
.one, .two, .three, .four, .five {
  /* border: none; */
  border-radius: 4px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.48);
  /* overflow: hidden; */
  /* padding: 20px 50px 20px 70px; */
  /* margin-bottom: 20px; */
  font-size: 18px;
  /* position: relative; */
  color: white;
  /* outline: none; */
  /* cursor: pointer; */
  /* width: 100%; */
  /* -webkit-transition: background-position .7s,box-shadow .4s;
  transition: background-position .7s,box-shadow .4s; */
  /* background-size: 110%; */
  /* font-family: 'Oswald', sans-serif; */
}




.four {
    /* box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.16) inset, 0px 0px 10px 0px #000000; */
    background-image: linear-gradient(to bottom, #069acf, #1b5d93), url("");
  }
  
  .four:hover {
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.16) inset, 0px 0px 12px 0px #069acf;
  }
  

  .four i {
    font-size: 20px; 
    
  }
  
  .four:hover i {
    animation: rotateIcon 1s infinite linear; /* Apply animation on hover */
  }
  
  @keyframes rotateIcon {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

  



  .buttons a:hover {
    color: #fff !important;
  }
  

  
  @media (max-width: 767px) {
    /* .one, .two, .three, .four, .five {
     
      font-size: 12px;
    } */

    .margin-reset{
      margin-left: 0 !important;
    }


  }


  /* Reserve Button */
  :root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    /* --body-color: #393937; */
    --accent-color: #ffffff;
    --white-color: #FAFAFA;
    --box-shadow:  0 0 1px #ffffff, 0 0 5px #ffffff, 0 0 5px #ffffff, 0 0 1px #ffffff;


  /*=============== GOOGLE FONTS ===============*/

      /*========== Font and typography ==========*/
      /*.5rem = 8px | 1rem = 16px ...*/
      /* --body-font: "Montserrat", sans-serif;
      --normal-font-size: 1rem; */

      /*========== Font weight ==========*/
      /* --font-regular: 400;
      --font-semi-bold: 600; */

      /*========== z index ==========*/
      /* --z-tooltip: 10;
      --z-fixed: 100; */
    }


  .button-animation {
    position: relative;
    display: inline-block;
    /* padding: 20px 30px; */
    color: var(--accent-color);
    /* text-transform: uppercase; */
    overflow: hidden;
    letter-spacing: 2px;
    transition: 0.5s;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
  

    &:hover {
      background-color: var(--accent-color);
      color: #023a4b;
    }

    span {
      position: absolute;
      display: block;
    }

    span:nth-child(1) {
      top: 0;
      left: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent-color));
      animation: btn-anim1 1s linear infinite;
    }

    span:nth-child(2) {
      top: -100%;
      right: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, transparent, var(--accent-color));
      animation: btn-anim2 1s linear infinite;
      animation-delay: 0.25s;
    }

    span:nth-child(3) {
      bottom: 0;
      right: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(270deg, transparent, var(--accent-color));
      animation: btn-anim3 1s linear infinite;
      animation-delay: 0.5s;
    }

    span:nth-child(4) {
      bottom: -100%;
      left: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(360deg, transparent, var(--accent-color));
      animation: btn-anim4 1s linear infinite;
      animation-delay: 0.75s;
    }
  }

  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,
    100% {
      left: 100%;
    }
  }

  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,
    100% {
      top: 100%;
    }
  }

  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,
    100% {
      right: 100%;
    }
  }

  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,
    100% {
      bottom: 100%;
    }
  }


  @media screen and (max-width: 1024px) and (max-height: 652px) {
    .box__link {
        font-size: 13px; /* Adjust the font size as needed */
    }
}



  /* Infinity Animation */

  .rotate-left-to-right {
    animation: rotateLeftToRight 15s linear infinite;
}

@keyframes rotateLeftToRight {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}




/*  */


.circle {
	--size: 160px;
	position: relative;
	width: var(--size);
	height: var(--size);

	border-radius: 50%;
}

@media (max-width: 767px) {

  .circle {
  
    margin-left: 5rem !important;
    
  }
	
	.bannerVideo
	{
		display: none;
	}
	.bannerContaent:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    z-index: 0;
}
.bannerContaent {
        background-image: url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/hero-section-2.png);
        height: 560px !important;
        background-position: center;
        background-size: cover;
        background-repeat: repeat;
        position: relative !important;
}
	.indexing
	{
		z-index: 3;
	}
	

}

.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	border-radius: 50%;

	width: 100px;
	height: 100px;
	background-image: url(https://island-cruizer-boat-rental.searchsoltest.com/wp-content/uploads/2024/04/front-page-img.jpeg);
	background-size: cover;
	filter: grayscale(60%);
}

.text {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: arcAnimation 10s linear infinite;
	color: #2b616d;
}
.text span {
	position: absolute;
	left: 50%;
	font-size: 1rem;
	transform-origin: 0 calc(var(--size) / 2);
}

@keyframes arcAnimation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}




/* Arrow */

.arrow-container {
  width: 25px;
  /* cubic-bezier-easing = sine / mehr Beispiele: https://easings.net/ */
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  cursor: pointer;
  height: 20px;
}

.arrow-down {
  height: 6px;
  background: white;
  transform: rotate(45deg);
  transform-origin: 0% 0%;
  border-radius: 5px;
}
.arrow-down:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 100%;
  border-radius: 5px;
  background: white;
  transform: rotate(-90deg);
  transform-origin: 0% 100%;
}

@keyframes bounce {
50% {
    transform: translateY(-15px);
  }
}


.arr {
  margin-left: 20rem ;
}

@media (max-width: 767px) {

  .arr {
    margin-left: 10rem !important;
    
  }

}

@media screen and (min-width: 992px) and (max-width: 1182px)  {
  .arr {
    margin-left: 20rem ;
  }
}


/* About Us */


/* .sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
} */

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

/* .sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
} */

/* .sec-title.light h2{
  color: #ffffff;
} */

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

/* .list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
} */

.list-style-one li a:hover{
  color: #44bce2;
}

/* .btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #00aeef;
} */

.btn-style-one:hover{
  background-color: #0794c9;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}



.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 80px;
  padding-bottom: 0px;
}
.about-section .image-column .inner-column .author-desc{
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: var(--dark);
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}
.about-section .image-column .inner-column .author-desc h2{
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
  margin: 0;
}
.about-section .image-column .inner-column .author-desc span{
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
  display: block;
  font-weight: 400;
}
.about-section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid var(--primary);
}

.about-section .image-column .image-1{
  position: relative;
}
.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  /* box-shadow: 0 30px 50px rgba(8,13,62,.15); */
      border-radius: 46px;
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}





@media (max-width: 768px) {
  .inner-column .section-title {
    color: var(--dark) !important;
  }
}


@media (min-width: 992px) {
  .no-display-on-computer {
      display: none;
  }
}
