body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}


body,
p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

strong {
  font-weight: 700;
}


h1 {
  font-family: "Akshar", sans-serif;
  font-weight: 700;
}

h2 {
  font-family: "Akshar", sans-serif;
  font-weight: 600;
}

h3 {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}

h4 {
  font-family: "Akshar", sans-serif;
  font-weight: 400;
}


* {
  outline: 0px solid red;
}







.header {
    display: none;
  }


  /* Show mobile header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 0px;
  
    z-index: 100;
  }

  .logo {
  width: 150px;
  height: auto;
}

 

  /* Hamburger button */
  .mobile-menu-button {
    display: inline-block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    background-color: #f8f8f8;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #08A4BD;
    margin: 5px 0;
    transition: 0.3s;
  
  }

  .mobile-menu-button.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 99;
    background-color: #000;
  }

  .mobile-nav.active {
    display: flex;
    background-color: #000;
  }

  .mobile-nav a {
    font-size: 20px;
    color: #08A4BD;
    padding: 10px 0;
    text-decoration: none;
  }

  .mobile-nav a:hover {
    color: #08A4BD;
  }




























  




@media (min-width: 1025px) {

.mobile-header  {
  display: none;
}

.mobile-nav {
  display: none;
}



/* GLOBAL */

h2 {
   text-align: center;
  font-weight: 500;
  margin: 0px;
  color: #ffffff;
  font-size: 60px;
  line-height: 50px;
  letter-spacing: 1;
}

.p {
  font-weight: 00;
  text-align: center;
  font-size: 30px;
  padding: 30px 0px 80px 0px;
  margin: 0px 80px;
  color: #fff;
  line-height: 35px;
  letter-spacing: 0;

}















/* HEADER HERO */

.header-hero_background {
 
   display: block;
  background-image: url('picture/home-background.png');
  background-repeat: no-repeat;
  background-position: center top; /* anchor the image */
  background-size: 100% auto; /* same width across all pages */
  
 
  min-height: 50vh; /* keeps full height look even if less content */
}

.header-hero {
  max-width: 1200px;
  padding: 0px 75px;
  margin: 0px auto;
  overflow-x: hidden;
  display: block;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 20px;
}

.logo {
  width: 230px;
  height: auto;
}


.header-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}


.nav {
  display: flex;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.nav li {
  margin: 0;
}


.header-nav button {
  margin-left: auto;
}

.nav a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 100;
  color: #3d3d3d;
  font-size: 22px;
  padding-bottom: 4px;
}

.nav a:hover {
  color: #08A4BD;
  border-bottom: 2px solid #08A4BD;
}

button {
  --primary-color: #08A4BD;
  --secondary-color: #fff;
  --hover-color: #24c3db;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: var(--hover-color);
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

/* HERO */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 100px 0px 0px 0px;
}

.hero h1 {
  font-size: 55px;
  color: #08A4BD;
  margin: 0;
}







/* SECTION1 */
.section1_space {
   
  background-color: #08A4BD;
}
.section1 {
  max-width: 1200px;
  padding: 0px 75px;
  margin: 0px auto;
  overflow-x: hidden;
  display: block;
  padding: 100px 0px 100px 0px;


    justify-items: center;
}
.section1 h2 {
 font-size: 40px;
 padding-bottom: 50px;
}

.snip1517 {
display: flex;
flex-direction: row;
  color: #08A4BD;
  text-align: left;
  font-size: 16px;
  width: 100%;
  max-width: 1000px;
  margin: 30px 10px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}



.snip1517 .plan {
  margin: 0 0.5%;
  width: 24%;
  padding-top: 10px;
  position: relative;

  overflow: hidden;
  background-color: #ffffff;
  border-radius: 8px;
}

.snip1517 .plan:hover i,
.snip1517 .plan.hover i {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.snip1517 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.snip1517 header {
  color: #08A4BD;
}

.snip1517 .plan-title {
  line-height: 60px;
  position: relative;
  margin: 0;
  padding: 0 20px;
  font-size: 1.6em;
  letter-spacing: 2px;
  font-weight: 700;
}

.snip1517 .plan-title:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 20px;
  width: 30px;
  height: 3px;
  background-color: #fff;
}

.snip1517 .plan-cost {
  padding: 0 20px;
  margin: 0;
}

.snip1517 .plan-price {
  font-weight: 400;
  font-size: 2.8em;
  margin: 10px 0;
  display: inline-block;
}

.snip1517 .plan-type {
  opacity: 0.8;
  font-size: 0.7em;
  text-transform: uppercase;
}

.snip1517 .plan-features {
  padding: 0 0 20px;
  margin: 0;
  list-style: outside none none;
  font-size: 0.9em;
}

.snip1517 .plan-features li {
  padding: 8px 20px;
}

.snip1517 .plan-features i {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.snip1517 .plan-select {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
}

.snip1517 .plan-select a {
  background-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
}

.snip1517 .plan-select a:hover {
  background-color: #1b8ad8 !important;
}

.snip1517 .featured {
  margin-top: -10px;
  z-index: 1;
  border-radius: 8px;
  border: 2px solid #156dab;
  background-color: #ffffff;
}

.snip1517 .featured .plan-select {
  padding: 30px 20px;
}

.snip1517 .featured .plan-select a {
  background-color: #10507e;
}

@media only screen and (max-width: 767px) {
  .snip1517 .plan {
    width: 49%;
    margin: 0.5%;
  }
  .snip1517 .plan-title,
  .snip1517 .plan-select a {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .snip1517 .plan-select,
  .snip1517 .featured .plan-select {
    padding: 20px;
  }
  .snip1517 .featured {
    margin-top: 0;
  }
  .snip1517 .featured header {
    line-height: 70px;
  }
}







}






























































/****************************** TABLET ****************************/
@media (max-width: 768px) {}


/****************************** LAPTOP ****************************/
@media (max-width: 1024px) {}