/* Fonts */
:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - */
:root { 
  --background-color: #ffffff; 
  --default-color: #444444;
  --heading-color: #092d39; 
  --accent-color: #17c9bc; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: #012970; 
  --nav-hover-color: #17c9bc; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #17c9bc; 
}

/* Color Presets - */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 8px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-getstarted2,
.btn-getstarted2:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 6px 10px;
  margin-left:5px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mbile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* From Uiverse.io by cssbuttons-io */ 
.btn-sp {
  display: inline-block;
  padding: 12px 5px;
  border-bottom: 3px solid var(--accent-color);
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  text-align: left;
  cursor: pointer;
  color: black;
  z-index: 1;
  font-weight:bold;
}

.btn-sp:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn-sp:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #39bda7;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn-sp:hover {
  color: #ffffff;
  border: 1px solid #39bda7;
  border-radius: 6px;
}

.btn-sp:hover:before {
  top: -35%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-sp:hover:after {
  top: -45%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding:0;
  margin: 0;
  color: var(--heading-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 100px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../assets/background/bg-hero.jpg) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 65px;
  line-height: 80px;
  font-weight: 900 ;
  text-transform: uppercase;
  color: var(--accent-color);
  span{
    font-size: 90px;  
    display: block;  
    em{
      font-weight: bold;
    }
  }
}
.hero {
  h2,h3 {
    color: #fff;
  }
  .btn-hero-link{
    color: #fff;
    font-weight: bold;
    font-size: 26px;
  }
}
.hero .btn-get-started {
  color: #193c47;
  background: #fff;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 8px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  .hero h1 ,.hero h1 span {
    font-size: 220%;
    line-height: 70px;    
  }
}

@media (max-width: 767px) {
  .hero h1 ,.hero h1 span {
    font-size: 180%;
    line-height: 45px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.values{
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 76%, rgba(236,252,255,1) 100%); 
}
.values .card {
  background-color: var(--heading-color);
  color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

.values h1 {
  font-size: 3rem;
  color: var(--accent-color);
  font-weight: 900;
}

.values .card h3 {
  font-size: 24px;
  color: var(--surface-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.btn-plans {
  margin-top: -60px;
  position: absolute;
  display: flex;
    width: 100%;
    justify-content: center;
  background: transparent;
  div{
    margin: 20px;
  }
  .btn-getstarted{
    margin-inline: 0;
    font-family: var(--heading-font);
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 8px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
}
.selected-work{
  background-color: #f1fdff;
}
/*--------------------------------------------------------------
# in-house Section
--------------------------------------------------------------*/
.in-house{
  background-color: #092e3a;
}
.in-house .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.in-house .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.in-house .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.in-house .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt in-house Section
--------------------------------------------------------------*/
.alt-in-house{
  background-image: url(../assets/background/bg-in-house.jpg);
  height: 105vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  .row{
    height: 105vh;
  }
}
.alt-in-house .icon-box {
  display: flex;
}

.alt-in-house .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-in-house .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-in-house .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}
@media (max-width:991px) {
  .alt-in-house{
    height: auto;
    .row{
      height: auto;
      padding-block: 50px;
    }
  }
}

/*--------------------------------------------------------------
# JOin Section
--------------------------------------------------------------*/
.join{
  background-color: var(--accent-color);
  clip-path: polygon(0 13%, 100% 0%, 100% 87%, 0% 100%);
  padding-block: 120px;
  margin-top: -60px;
  max-width: 95%;
  h1{
    font-size: 60px;
    font-weight: bold;
    color: #fff;
  }
  p{
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  background-image: url(../assets/background/bg-footer.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.services .service-item {
  height: 100%;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item img {
  position: relative;
  height: 60px;
  margin-bottom: 30px;
  display: inline-block;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 28px;
  font-weight: 700;
}
.services .booking{
  h1{
    font-weight: 900;
    color: var(--accent-color);
    font-size: 3.5rem;
    line-height: 4rem;
    margin-block: 30px;
  }
  h5{
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 60px;
  }
  button{
    font-size: 1.6rem;
    padding: 8px 25px;
    margin-bottom: 60px;
  }
}
.services .links-box {
  background: rgb(10,62,72);
  background: radial-gradient(circle, rgba(10,62,72,1) 0%, rgba(9,50,62,1) 100%); 
  border-radius: 25px;
  padding: 25px;
}
.services .links-box a{
  color: #fff;
}
.services .links-box a:hover{
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.price-heading{
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 24px !important;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  &.one{
    background-color: #cfd3d2;
    color: var(--heading-color);
  }
  &.two{
    background-color: #eda61d;
    border-bottom: 6px solid #f9dca5;
    padding-bottom: 4px;
  }
  &.three{
    background-color: #0b2f3a;
  }
}
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.01);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 767px) {
  .pricing .pricing-tem {
    margin-inline: 25px;
  }
  .pricing + section .btn-getstarted{
    font-size: 1.5rem !important;
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 25px !important;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  color: var(--default-color);
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 15px;
  list-style: disc !important;
  padding-left: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
  background-image: url(../assets/background/bg-faq.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 150px;
}
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 2px solid #999;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-container .faq-item:first-child {
  border-top: 2px solid #999;
}
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
.faq .faq-right{
  background-image: url(../assets/background/bg-faq2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
}

/*--------------------------------------------------------------
# comparisson Section
--------------------------------------------------------------*/
.comparisson {
  margin-top: -100px;
  background-image: url(../assets/background/bg-compare.png);
  background-size: 100% 100%;
  background-position: center left;
  padding-bottom: 8rem;

  .line-box {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .line-box .heading{
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .line-box>div:first-child {
    color: #fff;
  }
  .line-box>div:first-child>div {
    color: var(--heading-color);
  }
  .line-box>div:last-child {
    width: 35%;
  }
  .line-box>div {
    display: flex;
    align-items: center;
  }
  .line-box>div span {
    font-size: 50px;
    line-height: 5px;
    margin-right: 8px;
  }

  .middle {
    border-bottom: 1px solid #999;
    flex-grow: 1;
    margin: 22px 5px;
  }
}
@media (max-width:767px) {
  .comparisson{
    margin-top: 0px;
    background: #072530;
    padding-bottom: 3rem;
    .middle,.line-box>div:last-child span {
      display: none !important;
    }
    .line-box {
      display: block;
      margin: 20px;
    }
    .line-box>div:last-child {
      width: auto;
      color: #fff;
    }
    .line-box>div:last-child::before {
      content: "↳";
      margin-left: 25px;
      margin-right: 8px;
      font-size: 1.2rem;
    }
  }
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio{
  background-image: url(../assets/background/bg-work.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 250px;
}
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

@media (max-width: 991px) {
  .portfolio{
    background:#0c5f74;
    padding-top: 50px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}


.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Offer Section
--------------------------------------------------------------*/
.offer{
  background-image: url(../assets/background/bg-offer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.offer h1{
 font-size: 4rem;
 line-height: 4.5rem;
 font-weight: bold;
 color: var(--accent-color);
 margin-top: 25px;
}
.offer h2{
  font-size: 2rem;
  font-weight: bold;
  color: var(--heading-color);
 }
.offer ul li{
  padding-bottom: 6px;
  letter-spacing: .5px;
  font-weight: 500;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .offer h1{
    font-size: 3rem;
    line-height: 3rem;
    text-align: center;
    padding-inline: 25px;
   }
   .offer h5{
    text-align: center;
   }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients{
  background-color: #f4f6f6;
} 
.clients .swiper-slide img {
  transition: 0.5s;
  opacity: 1;
}

.clients .swiper-slide img:hover {
  transform: scale(1.3);
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Oposite Image slider Section
--------------------------------------------------------------*/
.gallery-box {
  width: 102%;
  margin-left: -1%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27%;
    margin: 15px 18px;
    padding: 0px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
  }
}
.marquee-text h1{
  font-size: 8rem;
  font-weight: 800;
  margin-left: -90% !important;
}
.marquee-text h1::before,
.marquee-text h1::after {
  content: " It's like Design & Animations on turbo! It's like Design & Animations on turbo! ";
}
.border-special{
  border-bottom: 2px solid var(--heading-color);
  transform: rotate(-2deg);
  h2{
    transform: rotate(2deg);
  }
}
 @media (max-width:1200px) {
  .gallery-box .box {
      width: 35%;
  }
 }
 @media (max-width:700px) {
  .gallery-box  .box {
      width: 60%;
  }
 }
 @media (max-width:500px) {
  .gallery-box  .box {
      width: 90%;
  }
 }
  .loader-pulse {
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 0 0 #0005;
  animation: l1 1.2s infinite;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
@keyframes l1 {      
    100% {box-shadow: 0 0 0 20px #0000;transform:scale(1.25)}
}
footer.bg-white {
    display: none !important;
}
header.relative.z-30.bg-white {
    display: none !important;
}