/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'Slamming';
  src: url('../fonts/slamming.woff2') format('woff2'), /* Modern browsers */
  url('../fonts/Slamming.woff') format('woff');   /* Fallback for older browsers */
  font-weight: normal;
  font-style: normal;
}

/* Optional: Set up global font variables */
:root {
  --font-default: 'Slamming', sans-serif;
  --font-primary: 'Slamming', sans-serif;
  --font-secondary: 'Slamming', sans-serif;
  --font-heading: 'Slamming', sans-serif;
}

:root {
  --color-default: #FFFFFF;
  --color-primary: #f0a51e;
  --color-secondary: #2a2a2a;
  --color-accent: #FF4500;
  --color-third: #e9af8c;
}

:root {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 15px;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  width: 15px;
  transition: all 0.4s ease;
}

::-webkit-scrollbar-track {
  background: #2E2E2E; /* Dark Gray track to complement dark themes */
  width: 15px;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: url(../images/bg-pattern.jpg), #121212; /* Dark background with subtle pattern */
  background-repeat: repeat;
  background-size: 168px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent); /* Bright Red for hover state */
  text-decoration: underline;
}

p {
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

/* Additional Classes for Specific Elements */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

button {
  background: var(--color-accent);
  color: var(--color-default);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background: var(--color-primary);
  color: #121212; /* Dark text for contrast on hover */
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
  line-height: 1;
}

h3,
h4{
 font-size: 1.5em;
}

dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.w-100{
  width: 100%;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.mt-20 {
  margin-top: 20px;
}

.ml-60{
  margin-left: 60px;
}

.ml-70{
  margin-left: 80px;
}

img {
  border-radius: 0 20px;
  transition:all 1s;
}

.img-fluid:hover {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 90px 0;
  overflow: hidden;
  position: relative;
  z-index: 90;
}

.section {
  padding: 90px 0;
  overflow: hidden;
}

.bg-grey{
  background: #2b2b2b;
}

.sections-bg{
  color: #fff;
  background: url(../images/cta-bg.png) center bottom;
  background-size: contain;
  border-radius: 0px;
  overflow: hidden;
  background-repeat-x: repeat;
  background-repeat-y: no-repeat;
  background-position: bottom;
}

.sections-bg .section-header h2,
.sections-bg .section-header p{
  color: #ffffff;
}

.section-header {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.section-header h2 {
  font-size: 3rem;
  position: relative;
  color: var(--color-primary);
}
.section-header hr {
  content: '';
  height: 4px;
  width: 7%;
  background: var(--color-primary);
  margin: 0 auto;
  z-index: 5;
  opacity: 1;
  margin-bottom: 20px;
  border-radius: 20px;
  border-top: unset;
}

.section-header p {
  margin-bottom: 0;
  color: #e9af8c;
  width: 60%;
  font-style: italic;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 0;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #f0a51e;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .section-header{
    flex-direction: column;
  }
  .section-header h2{
    font-size: 30px;
  }
  .section-header p{
    width: 100% !important;
  }
  .pagination{
    flex-direction: column;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  height: 45px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  position: relative;
  width: 100%;
  background: transparent;
}

.topbar .contact-info i {
  font-style: normal;
  color: var(--color-primary);
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: var(--color-primary);
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

@media (max-width: 787px) {
  .topbar {
    display: none !important;
  }
  .pagination .pages {
    flex-direction: column;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.topbar .social-links a {
  color: var(--color-primary);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #414141;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  height: 79px;
  background: transparent;
  width: 100%;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
}

.header.stikcy-menu {
  background: #f0a51e;
}

.header .logo img {
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 3em;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-shadow: 3px 4px 0px var(--color-secondary);
  font-weight: 500;
  transition: 0.3s;
}

.header.stikcy-menu .logo h1 {
  color: var(--color-secondary);
  text-shadow: 3px 4px 0px var(--color-primary);
  transition: 0.3s;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.logo-shape{
  display: block;
  width: 15px;
  background: var(--color-primary);
  height: 48px;
  border-radius: 0 20px;
  margin-right: 10px;
}

section {
  scroll-margin-top: 70px;
  position: relative;
  z-index: 90;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar>ul>li img{
  max-width: 30px;
  margin-right: 10px;
}
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 16px;
    border-radius: 0 20px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 1.5em;
    color: var(--color-default);
    text-shadow: 1px 1px 1px var(--color-secondary);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.3px;
  }
  .header.stikcy-menu  .navbar a{
    color: var(--color-secondary);
    text-shadow: 0px 0px 0px var(--color-secondary);
  }
  .header.stikcy-menu .navbar li:hover a{
    color: #ffff;
  }


  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 56px;
    bottom: 5px;
    left: 0;
    z-index: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 0 20px;
  }

  .navbar hover:before,
  .navbar li:hover:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active a,
  .navbar .active:focus a,
  .navbar li:hover a {
    color: var(--color-default);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    background: #f0a51e;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0 20px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 3px 20px;
    font-size: 1.5em;
    text-transform: none;
    font-weight: 400;
    color: #ffffff;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul li:hover {
    background: #2b2b2b;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}


@media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 1.5em;
    color: rgb(255 255 255);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-default);
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: var(--color-default);
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: var(--color-default);
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    color: #fff;
    background: #f0a51e;
    border-radius: 0 12px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Watch Video Header
--------------------------------------------------------------*/
.watch-video {
    padding: 200px 0;
    color: #fff;
    background: url(../images/cta-bg.png) center bottom;
    background-size: contain;
    border-radius: 0px;
    overflow: hidden;
    background-repeat-x: repeat;
    background-repeat-y: no-repeat;
    background-position: bottom;
}

.watch-video h2 {
  margin-bottom: 0px;
}

.watch-video .white {
    color: #ffffff;
    border-radius: 50%;
    display: block;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: .5s;
    width: 100px;
    margin: 0 auto;
    height: 98px;
    line-height: 1;
    margin-bottom: 30px;
}

.watch-video .big{
  font-size: 6rem;
}

@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

/*--------------------------------------------------------------
# Our Roadmap Section
--------------------------------------------------------------*/
.roadmap-list-item{
  display: -webkit-inline-box;
  gap: 20px;
}
.number{
  width: 90px;
  background: #f0a51e;
  height: 90px;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  display: flex;
  font-size: 2em;
  color: #fff;
  border-radius: 0 20px;
  border: 5px solid #f0a51e;
}
.roadmap-list-item h3{
  color: var(--color-primary);
}
.step-1,
.step-2,
.step-3,
.step-4,
.step-5{
  margin-bottom: 20px;
}
.step-1{
  max-width: 80%;
}
.step-2{
  max-width: 83%;
}
.step-3{
  max-width: 81%;
}
.step-4{
  max-width: 83%;
}
.step-5{
  max-width: 80%;
}

@media (max-width: 991px) {
  .roadmap-list-item{
    display: flex;
    flex-direction: column;
  }
  .step-1,
  .step-2,
  .step-3,
  .step-4,
  .step-5{
    margin-bottom: 20px;
    max-width: 100%;
  }
  .ml-60,
  .ml-70{
    margin-left: unset;
  }
}

/*--------------------------------------------------------------
# Our seekers Section
--------------------------------------------------------------*/
.seekers .member {
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.seekers .member img {
  overflow: hidden;
  border-radius: 0 17px;
  transition: 0.3s;
}
.seekers .member img:hover{
  transform: scale(1.1);
}

.seekers .member .member-content {
  padding: 0 20px 30px 20px;
}

.seekers .member h4 {
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 2rem;
  color: #f0a51e;
}

.seekers .member span {
  font-style: italic;
  display: block;
  font-size: 1em;
  color: #e9af8c;
}

.seekers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.seekers .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.seekers .member .social a {
  color: #e9af8c;
  transition: 0.3s;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seekers .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.seekers .member .social i {
  font-size: 14px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# shipmates Section
--------------------------------------------------------------*/
.shipmates .shipmates-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.shipmates .shipmates-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  background: #2b2b2b;
  border-radius: 0 17px;
  margin-bottom: 20px;
  color: #ffffff;
}

.shipmates .shipmates-flters li:hover,
.shipmates .shipmates-flters li.filter-active {
  color: var(--color-primary);
}

.shipmates .shipmates-flters li:first-child {
  margin-left: 0;
}

.shipmates .shipmates-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .shipmates .shipmates-flters li {
    font-size: 14px;
  }
}

.shipmates .shipmates-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 17px;
  height: 100%;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.shipmates .shipmates-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.shipmates .shipmates-wrap:hover .shipmates-info{
  display: flex;
  transition: 0.3s;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.shipmates .shipmates-wrap .shipmates-info {
  background: linear-gradient(0deg, #f0a51e 0%, #F4D2A5 100%);
  position: absolute;
  z-index: 2;
  display: none;
  width: 100%;
  top: 0;
  height: 100%;
  transition: 0.3s;
  border-radius: 0 17px;
}

.shipmates .shipmates-wrap .shipmates-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.shipmates .shipmates-wrap .shipmates-info h2 a {
  color: #ffffff;
  transition: 0.3s;
}

.shipmates .shipmates-wrap .shipmates-info h2 a:hover {
  color: #ffffff;
}

.shipmates .shipmates-wrap .shipmates-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.shipmates .shipmates-wrap:hover img {
  transform: scale(1.1);
}
.shipmates .shipmates-wrap .shipmates-info .project-btn a{
  color: #fff;
}

/*--------------------------------------------------------------
# Shipmates Details Section
--------------------------------------------------------------*/
.shipmates-details .shipmates-details-slider img {
  width: 100%;
}

.shipmates-details .shipmates-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.shipmates-details .shipmates-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.shipmates-details .swiper-button-prev,
.shipmates-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.shipmates-details .swiper-button-prev:after,
.shipmates-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.shipmates-details .swiper-button-prev:hover:after,
.shipmates-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .shipmates-details .swiper-button-prev,
  .shipmates-details .swiper-button-next {
    display: none;
  }
}

.shipmates-details .shipmates-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.shipmates-details .shipmates-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #10bab9;
  left: 0;
  bottom: 0;
}

.shipmates-details .shipmates-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.shipmates-details .shipmates-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 1em;
}

.shipmates-details .shipmates-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.shipmates-details .shipmates-info .btn-visit {
  padding: 8px 40px;
  background: #eb4680;
  color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.shipmates-details .shipmates-info .btn-visit:hover {
  background: #eb4680;
}

.shipmates-details .shipmates-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}

.shipmates-details .shipmates-description p {
  padding: 0;
}

.shipmate-details-aside .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.shipmate-details-aside .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 2px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.shipmate-details-aside .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.shipmate-details-aside .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.shipmate-details-aside .testimonial-item .quote-icon-left,
.shipmate-details-aside .testimonial-item .quote-icon-right {
  color: #10bab9;
  font-size: 26px;
  line-height: 0;
}

.shipmate-details-aside .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.shipmate-details-aside .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.shipmate-details-aside .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  position: relative;
  background-size: 128%;
  min-height: 800px;
  background: url(../images/bg-pattern.jpg), #faf1df;
  z-index: 0;
  padding: 200px 0 100px 0;
  height: 100vh;
}

.hero .circle {
  position: absolute;
  top: -60px;
  right: 0;
  color: #f0a51e;
  font-size: 5rem;
  background: linear-gradient(0deg, #f6fff2 0%, #c3ffa9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-main-video {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    transform: scale(1.5);
}
.hero-main-image {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    animation: crescendo 20s alternate infinite ease-in;
    border-radius: 0 !important;
}

.position-bottom{
  position: absolute;
  bottom: 0;
  width: 100%;
}

.position-bottom img{
  width: 100%;
}
@keyframes crescendo {
  0%   {transform: scale(1);}
  100% {transform: scale(1.1);}
}
.image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    bottom: 0;
    z-index: 0;
    transition: all 0.5s ease-in-out 0s;
    background: linear-gradient(0deg, #262626, #2d2d2d 786px);
    opacity: 0.8;
}
.video-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    transition: all 0.5s ease-in-out 0s;
    background: #000000;
    opacity: 0.4;
}

.fill-button {
  background: #f0a51e;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0 20px;
}

.fill-button:hover{
  color: #f0a51e;
  background: #ffffff;
}

.hero h2 {
  font-size: 6rem;
  text-transform: capitalize;
  margin-bottom: 0px;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(0deg, #f0a51e 0%, #F4D2A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(7px 4px 0px #000);
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #ffffff;
}

.hero h3 {
  color: #ffffff;
  text-shadow: 3px 4px 0px #0D2538;
  margin-bottom: 20px;
}

.hero p {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 30px;
}

.btn-dfl {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 20px;
  transition: 0.3s;
  color: var(--color-default);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--color-secondary);
  border-radius: 0 17px;
}

.btn-dfl:hover {
  position: relative;
  background: var(--color-secondary);
  color: var(--color-default);
  border: 2px solid var(--color-secondary);
}

.btn-watch-video {
  font-size: 1em;
  transition: 0.5s;
  margin-left: 25px;
  color: #ffffff;
  font-weight: 500;
  padding: 0 20px;
}

.hero .btn-watch-video i {
  color: #ffffff;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.btn-watch-video:hover{
    border-radius: 0;
    color: #ffffff;
    background: var(--color-primary);
}

.ape-fixed{position: absolute;left: 0;bottom: 0;z-index: -1;width: 100%;max-width: 25%;border-radius: 0;}
.ape-fixed-right{position: absolute;right: 0;bottom: 0;z-index: -1;width: 100%;max-width: 25%;}
.ape-fixed:hover{
  transform: unset;
}

@media (max-width: 767px) {
  .hero-main-video{
    height: auto;
    min-height: auto;
    width: auto;
    transform: scale(1);
  }

  .hero .btn-dfl,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .hero::after {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .hero {
    position: relative;
    background-size: cover;
    min-height: 501px;
    height: 100vh;
    background-repeat: no-repeat;
    background-color: #fff;
  }
}

@media (min-width: 768px) {
  .hero .btn-dfl,
  .hero .btn-watch-video {
    font-size: 1.5em;
  }

  .icon-boxes .card-two {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.top-icon-box .icon-boxes {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .top-icon-box .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.top-icon-box .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 17px;
}

.top-icon-box .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.top-icon-box .icon-box .icon:hover {
  border-color: #fff;
}

.top-icon-box .icon-box .title a:hover {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.top-icon-box .icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.top-icon-box .icon-box p {
  color: #9b9b9b;
  transition: 0.3s;
}

.top-icon-box .icon-box .icon {
  margin-bottom: 20px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}

.top-icon-box .icon-box .icon img {
  max-width: 100px
}

/*--------------------------------------------------------------
# Animation Arrow dropdow
--------------------------------------------------------------*/
.scroll-wrap{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
}
.scroll-arrow {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  animation: arrow-wave 1s infinite;
  animation-direction: alternate;
}
.scroll-arrow:nth-child(1) {
  animation-delay: 0.1s;
}
.scroll-arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-arrow:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes arrow-wave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* --------------------------------------------------------------
 * Counter Section Style
 -------------------------------------------------------------- */
.counter-area {
    color: #fff;
    background: url(../images/cta-bg.png) center bottom;
    background-size: contain;
    border-radius: 0px;
    overflow: hidden;
    background-repeat-x: repeat;
    background-repeat-y: no-repeat;
    background-position: bottom;
}
.counter-area ul li{
  color: #ffffff !important;
}
.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 0 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.counter-container:hover {
  transform: scale(1.2) !important;
}
.counter-container i{
  margin-bottom: 0px;
}
.counter-container img{
  max-width: 100px;
}
.counter-container ul{text-align: left;margin-top: 30px;}
.counter-container ul li{
  line-height: 33px;
}
.counter-container .icon{
  width: 100%;
  text-align: center;
}
.counter-container .icon img{
  width: 100%;
  max-width: 100px;
}
.counter {
  font-size: 4rem;
  line-height: 100px;
  margin-top: 10px;
  font-weight: 900;
}
.counter-area span {
  margin-top: 0px;
}

@media (max-width: 580px) {
  body {
    flex-direction: column;
  }
}

button.btn-dfl {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 0;
  transition: 0.3s;
  color: var(--color-default);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--color-primary);
}

button.btn-dfl:hover {
  background: #2a2a2a;
  color: #fff;
  border: 2px solid #2a2a2a;
}

.image-main-wrapper .btn-dfl {
  position: absolute;
  top: 20%;
  z-index: 10;
}

.contact-section .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-section .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.with-errors {
  color: #dc3545;
}

.messages {
  margin-top: 30px;
}

.alert-success {
  margin-left: 15px;
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
  position: relative;
  background: url(../images/footer-bg.png) center bottom;
  background-size: contain;
  border-radius: 0px;
  overflow: hidden;
  background-repeat-x: repeat;
  background-repeat-y: no-repeat;
  background-position: bottom;
  padding: 50px 0 402px 0;
}

.footer-section .contact-info{
  margin-bottom: 10px;
}

.footer-section .contact-info i{
  margin-right: 10px;
}

.footer-section .contact-info h6{
  color: #ffffff;
}

.footer-section .contact-info h6,
.footer-section .contact-info p{
  margin-bottom: 0;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #c00113;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #c00113;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
  color: white;
}

.footer-logo img {
    max-height: 36px;
    min-height: 50px;
    margin-right: 10px;
    background: linear-gradient(0deg, var(--color-secondary), 0%, #F4D2A5 100%);
    border-radius: 0 17px;
    padding: 8px;
}

.footer-logo h1 {
  color: white;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #ffffff;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-default);
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 2em;
  margin-right: 15px;
}

.footer-social-icon i {
  height: auto;
  width: 100px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.footer-social-icon i:hover{
  color: var(--color-primary);
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #f0a51e;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: #ffffff;
  text-transform: capitalize;
}

.footer-widget ul li a i {
  margin-right: 10px;
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  color: #ffffff;
}

.copyright-text p a {
  color: var(--color-primary);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

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

.footer-menu li a {
  font-size: 14px;
  color: #ffffff;
}

.footer-menu li a:hover {
  color: #000000;
}

.shipmates-raydium {
  background: linear-gradient(0deg, #6455f9 0%, #141340 100%) !important;
}
.shipmates-coinbase {
  background: linear-gradient(0deg, #2654fc 0%, #fcfdfd 100%) !important;
}
.shipmates-binance {
  background: linear-gradient(0deg, #e8ba21 0%, #161a1c 100%) !important;
}
.shipmates-crypto {
  background: linear-gradient(0deg, #0d295f 0%, #fdfdfd 100%) !important;
}
.shipmates-kraken {
  background: linear-gradient(0deg, #5745d6 0%, #fcfdfe 100%) !important;
}
.shipmates-bybit {
  background: linear-gradient(0deg, #16192a 0%, #fdfdfd 100%) !important;
}
.shipmates-pumpfun {
  background: linear-gradient(0deg, #71d090 0%, #fdfdfe 100%) !important;
}
.shipmates-upbit {
  background: linear-gradient(0deg, #193886 0%, #fdfdfe 100%) !important;
}
#play-pause-button:focus {
  outline: none;
  box-shadow: none;
}

#play-pause-button {
  font-size: 1.7em;    
}

#roadmap ul {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

strong {
  text-shadow: 1px 1px 0px #1e3a5fb5;
  font-weight: 100;
}

#getting-started .img-fluid {
  max-width: 50%;
}

.step {
  text-align: center;
  color: var(--color-third);
}

.step h4 {
  color: var(--color-primary);
}

.step img {
  padding-bottom: 20px;
}

#memes {
  text-align: center;
}
.swiper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.swiper-slide img, .swiper-slide video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide img {
  cursor: pointer;
}

p.meme-share {
  font-size: 0.8rem;
  font-style: italic;
  padding-top: 15px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev, .swiper-button-prev, .swiper-rtl .swiper-button-next {
  color: var(--color-secondary) !important;
}
