:root{

  --middle-blue-green : hs1(176, 35%, 63%);
  --sonic-silver: hsl(0, 0%, 44%);
  --eerie-black: hsl(0, 0%, 9%);
  --ocean-green: hsl(148, 45%, 58%);
  --candy-pink: hsl(356, 65%, 63%);
  --cultured: hsl(0, 0%, 96%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --btn:#3cb472;
  --line-btn: #2a6042;
  --btnn:  hsl(146, 58%, 75%);


  
  --ff-jost: "Jost", sans-serif;

  --fs-1: 2.5rem;
  --fs-2: 1.75rem;
  --fs-3: 1.625rem;
  --fs-4: 1.5rem;
  --fs-5: 1.375rem;
  --fs-6: 1.25rem;
  --fs-7: 1.125rem;
  --fs-8: 0.938rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;


  --transition-1: 0.25s ease;
  --transition-2: 0.75s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  --section-padding: 60px;

}




.left-image {
  height: 270px;
  object-fit: cover;
  box-shadow: 5px 5px 17px rgba(0, 0, 0, 0.35);
}

.right-image {
  height: 390px;
  object-fit: cover;
  box-shadow: 5px 5px 17px rgba(0, 0, 0, 0.35);
}


*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }
a { text-decoration: none;}

a,
img,
span,
input,
button,
ion-icon {display: block;}

input,
button{
  background: none;
  border: none;
  font: inherit;
}

button{
  text-align: left;
  cursor: pointer;
}

input{
  width: 100%;
  outline-color: var(--middle-blue-green);
}

img{ height: auto;}

ion-icon{ pointer-events: none;}

html{

  font-family: var(--ff-jost);
  color: var(--sonic-silver);
  scroll-behavior: smooth;
}

body {
  background-color:rgb(147, 202, 195) ;
  padding-block: 70px;
}

.container { padding-inline: 15px;}
 
a,
button{ transition: var(--transition-1);}

h3 > a { color: inherit;}


.h1,
.h2,
.h3,
.h4{
  color: var(--eerie-black);
  font-weight: var(--fw-600);
  text-shadow: 1px 1px 2px rgb(106, 175, 146), 0 0 25px rgb(147, 209, 162), 0 0 5px rgb(75, 150, 127);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1;
  text-shadow: 1px 1px 2px  rgb(106, 175, 146), 0 0 25px rgb(147, 209, 162), 0 0 5px rgb(75, 150, 127) ;
}
.h2 {
  font-size: var(--fs-2);
  font-weight: var(--fw-500);
  
  
}

.h3 { font-size: var(--fs-6);}

.h4 { 
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.btn {
  background: var(--background , var(--btn));
  color: var(--color, var(--white));
  font-weight: var(--fw-600);
  height: var(--height, 100px);
  padding-inline: 50px;
  border: 1px solid var(--border-color, var(--line-btn));
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:is(:hover, :focus) {
  --background :var(--btnn);
  --color : var(--eerie-black);
  --border-color: var(--line-btn);
}
 .btn-secondary:is(:hover , :focus) {
  --background :var(--btnn);
  --color : var(--eerie-black);
  --border-color: var(--line-btn);
}

.btn-outline {
  --height:50px;
  --background:var(--white);
  --color:var(--eerie-black);
  --border-color:var(--eerie-black);
  padding-inline: 40px;
  
}
.btn-outline:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.section { padding-block: var(--section-padding); }

.w-100 { width: 100%; }

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/*-----------*\
#HEADER
\*---------*/

.header-search {display: none;}

.header {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  padding-block: 20px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 20px  hsle(0, 0%, 0%, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-open-btn span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-1);
}

.nav-open-btn span:nth-child(2) {
  transform: scaleX(0.5);
  transform-origin: right;
}

.nav-open-btn:is(:hover, :focus) span:nth-child(2) {transform: scaleX(1);}

.header-actions {
  background: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  padding-block: 16px 10px;
  box-shadow: 0 -2px 20px hsla(125, 57%, 78%, 0.1);
  z-index: 1;
}

.header-actions-btn {
  position: relative;
  width: 50px;
  text-align: center;
}

.header-actions-btn ion-icon {
  margin-inline: auto;
  font-size: 22px;
  margin-bottom: 2px;

}

.header-actions-label {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) .header-action-label { color: var(--eerie-black); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--background, var(--eerie-black));
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
}
.header-action-btn .btn-badge.green { --background: var(--middle-blue-green); }

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px 25ox;
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
visibility: visible;
transform: translate(-300px);
transition: 0.5s var(--cubic-in);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.navbar-close-btn ion-icon { font-size: 23px;}

.navbar-link {
  padding-block: 10px;
  color: var(--eerie-black);
}

.navbar-list >li:not(:last-child) { border-bottom: 1px solid var(--cultured);}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 2;
}
.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/*--------------*\
hero
\*--------------*/

.hero{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: 100%;
  min-height: 80vh;
  padding-block: var(--section-padding);
  display: flex;
  align-items: center;
}

.hero .container {width: 100%;}

.hero-subtitle {
  color: var(--eerie-black);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  
}
.hero-title {
  margin-bottom: 35px;
  max-width: 12ch;
}



.category {padding-top: 15px;}

.category-list {
  display:flex;
  flex-wrap:wrap-reverse;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.category-item {
  width: 10%;
  position: relative;
}

.category-banner {
  background: var(--cultured);
  aspect-ratio:2/2.35;
  overflow:hidden;
}

.category-banner img {
  height: 100%;
  object-fit:cover;
  transition: var(--transition-2);
}

.category-item:hover .category-banner img {transform: scale(1.05);}

.category-item .btn {
  position:relative;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding-inline: 30px;
}


.blog .section-title {margin-bottom: 40px;}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.blog-card .card-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 1.37;
  overflow:hidden;
  margin-bottom: 25px;
}

.blog-card .card-banner img {
 height: 100%;
 object-fit:cover;
 transition: var(--transition-2);
}

.blog-card:hover .card-banner img {transform: scale(1.05);}

.blog-card .card-content {padding-inline: 20px;}
.blog-card .card-meta-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.blog-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .card-meta-item ion-icon {
  font-size: 17px;
  --ionicon-stroke-width: 30px;
}

.blog-card .card-meta-link {
  color: inherit;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-meta-link:is(:hover, :focus) {color: var(--eerie-black);}

.blog-card .card-title {
  line-height: 1.4;
  text-align: center;
}


.newsletter {padding-bottom: 120px;}

.newsletter-card {
  background-color: var(--cultured);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 80px 15px;
  text-align: center;
}

.newsletter-card .card-title {
  color: var(--eerie-black);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  font-style: oblique;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 30px;
}

.newsletter-card .card-text { margin-bottom: 30px;}

.newsletter-card .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}
 .newsletter-card .input-field {
  background: var(--white);
  height: 40px;
  padding-inline: 50px 20px;
  border-radius: 6px;
 }

 .newsletter-card .input-wrapper ion-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
 }

 .newsletter-card .btn {gap: 10px;
width: 10%;}




 
@media (min-width: 480px) {

  :root {

    --fs-1: 3rem;
    --fs-2: 2rem;

  }
  .category-list > li { width: calc(50% - 15px); }

  .footer-brand { width: 100%; }

  .footer-text { max-width: 470px; }

  .footer-list { width: calc(50% - 20px); }

}


@media (min-width: 580px) {
  :root {
    --fs-1: 3.75rem;
    --fs-2: 2.375rem;
    --fs-3: 2.25rem;

  }

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

}


@media (min-width: 768px) {
  .container { max-width: 700px; }

  .hero {
    background-position: center;
    min-height: 800px;
  }

  .blog-list > li { width: calc(50% - 15px); }

  .newsletter-card > * {
    max-width: 480px;
    margin-inline: auto;
  }

  .newsletter-card .card-form { position: relative; }

  .newsletter-card .input-wrapper { margin-bottom: 0; }

  .newsletter-card .btn {
    position:absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 25%;
    height:inherit;
    padding-inline: 35px;
    border-radius: 0 6px 6px 0;
  }
}
@media (min-width: 992px) {

  :root {
    --fs-1: 5rem;
  }

  body{padding-block: 0;}

  .container{max-width: 950px;}

  .header{
    position: relative;
    padding-block: 15px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    margin-bottom: 67px;
  }

  .header.active {
    position: relative;
    box-shadow: none;
  }

  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .header-search {
    display: block;
    position: relative;
    width: max-content;
  }

  .header-search .input-field {
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    width: 280px;
    padding: 12px 30px;
    border-radius: 6px;
    transition: var(--transition-1);
  }

  .header-search .input-field:focus {outline: 1px solid var(--eerie-black);}

  .header-search .search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--eerie-black);
  }

  .header-search .search-btn ion-icon {--ionicon-stroke-width: 30px; }

  .header .logo {margin-inline: auto;}

  .nav-open-btn,
  .header-action-btn:nth-child(2),
  .navbar-top,
  .overlay{display: none;}


  .header-actions {
    all: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }

  .navbar {
    all: unset;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    background: var(--white);
  }

  .header.active .navbar {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }

  .navbar-list > li:not(:last-child) {border-bottom: none; }

  .navbar-link {
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    padding-block: 20px;
  }

  .navbar-link:is(:hover, :focus) {color: var(--middle-blue-green);}
  

 



   .product-card .card-action-btn:first-child {border-radius: 6px 0 0 6px;}
   .blog-list > li {width: calc(33.33% - 20px);}

   .newsletter-card .card-form { max-width: 650px;}

}

   @media (min-width: 1200px)  {

    :root {
      --fs-1: 6.25rem;

    }
    .container{max-width: 1150px;}

    .header-search .input-field {width: 350px;}

    .footer-brand {width: calc(40% - 30px);}

    .footer-text { max-width: 340px;}

    .footer-list {width: calc(20% - 30px);}

    .footer-bottom .container {justify-content: space-between;}
   }

  
   * {box-sizing: border-box}
   body {font-family: Verdana, sans-serif; margin:0}
   .mySlides {display: none}
   img {vertical-align: middle;}
   
   .academyit1 {
   max-width: 1000px;
   position: relative;
   margin: auto;
   }
   .prev, .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width: auto;
   padding: 16px;
   margin-top: -22px;
   color: white;
   font-weight: bold;
   font-size: 18px;
   transition: 0.6s ease;
   border-radius: 0 3px 3px 0;
   user-select: none;
   }
   .next {
   right: 0;
   border-radius: 3px 0 0 3px;
   }
   .prev:hover, .next:hover {
   background-color: rgba(0,0,0,0.8);
   }
   .academyit3{
   color: #f2f2f2;
   font-size: 15px;
   padding: 8px 12px;
   position: absolute;
   bottom: 8px;
   width: 100%;
   text-align: center;
   }
   .academyit2 {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
   }
   .active, .dot:hover { background-color: #717171; }
   .fade { animation-name: fade; animation-duration: 1.5s; }
   @-webkit-keyframes fade {
   from {opacity: .4}
   to {opacity: 1}
   }
   @keyframes fade {
   from {opacity: .4}
   to {opacity: 1}
   }
   @media only screen and (max-width: 300px) {
   .prev, .next,.academyit3{font-size: 11px}
   }
   #mainNavigation a {
    font-family: 'Cabin', sans-serif;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    text-shadow:1px 1px 2px rgba(0,0,0,0.4)
  }
  
  .dropdown-menu {
    background:#03727d
  }
  a.dropdown-toggle {
    color:#dfdfdf !important
  }
  a.dropdown-item:hover {
    color:#03727d !important
  }
  .nav-item a{
    color:#dfdfdf;
  }
  .nav-item a:hover {
    color:#fff
  }
  .nav-item{
    min-width:12vw;
  }
  #mainNavigation {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:123;
    padding-bottom:120px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  }
  #navbarNavDropdown.collapsing .navbar-nav,
  #navbarNavDropdown.show .navbar-nav{
    background:#037582;
    padding:12px;
  }
  body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
  
  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
  
  a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    a, a:hover {
      text-decoration: none !important; }
  
  .content {
    height: 70vh; }
  
  .footer-32892 {
    background-color: #202126;
    padding: 7rem 0;
    color: #888;
    font-size: 16px; }
    .footer-32892, .footer-32892 h3 {
      font-family: "Poppins", sans-serif; }
    .footer-32892 h3 {
      font-size: 20px;
      color: #fff;
      margin-bottom: 30px; }
    .footer-32892 p {
      font-family: "Source Serif Pro", serif; }
    .footer-32892 .row.gallery {
      margin-right: -5px;
      margin-left: -5px; }
      .footer-32892 .row.gallery > [class^="col-"],
      .footer-32892 .row.gallery > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px; }
    .footer-32892 .gallery a {
      display: block;
      margin-bottom: 10px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .footer-32892 .gallery a:hover {
        opacity: .5; }
    .footer-32892 .quick-info li {
      color: #fff;
      font-size: 16px;
      margin-bottom: 10px; }
      .footer-32892 .quick-info li a {
        color: #fff; }
      .footer-32892 .quick-info li .icon {
        font-size: 20px;
        color: #f88020; }
    .footer-32892 .subscribe {
      position: relative; }
      .footer-32892 .subscribe .form-control {
        background-color: #292b31;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 30px;
        height: 55px;
        padding-left: 30px;
        padding-right: 130px;
        border: none;
        color: #fff; }
        .footer-32892 .subscribe .form-control::-webkit-input-placeholder {
          color: #ccc;
          font-size: 14px; }
        .footer-32892 .subscribe .form-control::-moz-placeholder {
          color: #ccc;
          font-size: 14px; }
        .footer-32892 .subscribe .form-control:-ms-input-placeholder {
          color: #ccc;
          font-size: 14px; }
        .footer-32892 .subscribe .form-control:-moz-placeholder {
          color: #ccc;
          font-size: 14px; }
      .footer-32892 .subscribe .btn-submit {
        background: #f88020;
        height: 47px;
        border-radius: 30px;
        padding-left: 30px;
        padding-right: 30px;
        color: #fff;
        font-weight: bold;
        position: absolute;
        top: 4px;
        right: 4px;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2); }
    .footer-32892 .tweets li {
      margin-bottom: 20px;
      font-size: 15px;
      font-style: italic;
      font-family: "Source Serif Pro", serif; }
      .footer-32892 .tweets li span {
        color: #fff; }
    .footer-32892 .footer-menu-wrap {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem !important;
      margin-top: 7rem; }
    .footer-32892 .footer-menu {
      margin-bottom: 0; }
      .footer-32892 .footer-menu li {
        display: inline-block; }
@media (max-width: 767.98px) {
          .footer-32892 .footer-menu li {
            display: block; } }
        .footer-32892 .footer-menu li a {
          padding: 10px;
          display: inline-block;
          color: #fff; }
@media (max-width: 767.98px) {
    .footer-32892 .footer-menu li a {
              display: block;
              padding-left: 0px; } }
    .footer-32892 .footer-menu li:first-child a {
          padding-left: 0; }

    .footer-32892 .site-logo {
      color: #fff;
      font-size: 20px; }
  



