@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #d8f3dc;
}

::-webkit-scrollbar-thumb {
    background: #7b7b7b;
    border-radius: 5px;    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #000;
    background: radial-gradient(ellipse at bottom, #d8f3dc 60%, #f1faee 100%);
}

#main {
    width: 100%;
    height: fit-content;
    overflow-x: hidden;
}

header.navbar.sticky {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #111111;

}

@media (max-width: 1023px) {
    header.navbar.sticky {
        position: fixed;
        top: 0;
        left: 0;
    }
}

header .logo {
    padding: 10px 0;
    width: 16vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .logo img {
    width: 6em;
    max-width: 6em;
    height: 6vh;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
  }
  
  header .logo img:hover {
    scale: 1.2;
  }

header .logo span {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 0.7rem;
    transition: all 0.5s ease-in-out;
}

header .logo:hover span {
    text-shadow:
        0 0 5px #d8f3dc,
        0 0 8px #d8f3dc,
        0 0 9px #d8f3dc,
        0 0 10px #d8f3dc,
        0 0 15px #d8f3dc,
        0 0 20px #d8f3dc;
}

/* animation menu hamburger */
.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 1023px) {
    .menu-btn {
        display: flex;
    }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #d8f3dc;
    transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.menu-btn .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
    transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #d8f3dc;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #d8f3dc;
}

.expand-btn:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: " \25BE";
    opacity: 0.75;
    transform: translateY(-50%) rotate(0);
    transition: 0.25s;
}

.expand-btn.open {
    color: #d8f3dc;
}

.expand-btn.open:after {
    transform: translateY(-50%) rotate(180deg);
}

/* navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    padding: 0 40px;
    background: #111111;
    box-shadow: 0 5px 30px 0 #111111;
}

@media (max-width: 1023px) {
    .navbar {
        padding: 10px 20px;
    }
}

.navbar.sticky {
    position: sticky;
    z-index: 999;
    top: 0;
}

.navbar .logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar .menu-items {
    display: flex;
    align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar {
    width: 6px;
    background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    background-color: #fff;
}

@media (max-width: 1023px) {
    .navbar .menu-items {
        scrollbar-gutter: stable;
        position: fixed;
        top: 6rem;
        left: 0;
        display: block;
        width: 350px;
        height: 100%;
        padding-top: 30px;
        padding-bottom: 100px;
        padding-right: 10px;
        background: #111111;
        overflow-y: auto;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
    }

    .navbar .menu-items.open {
        transform: translateY(0);
        height: 100vh;
        width: 100vw;
    }
}

.navbar .menu-items>li>.menu-item {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

@media (max-width: 1023px) {
    .navbar .menu-items>li>.menu-item {
        padding: 1rem 1rem;
        font-size: 1.5rem;
    }
}

.navbar .menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .navbar .menu-items li a {
        padding: 10px 1rem;
        font-size: 1.5rem;

    }
}

.navbar .dropdown {
    position: relative;
}

@media (min-width: 1024px) {
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .navbar .dropdown:hover>.expand-btn:after {
        transform: translateY(-50%) rotate(180deg);
    }
}

@media (min-width: 1024px) {

    .navbar .dropdown .dropdown-right .expand-btn:after,
    .navbar .dropdown .dropdown-left .expand-btn:after {
        right: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .navbar .dropdown-menu {
        position: absolute;
        top: 65px;
        right: 0;
        left: 0;
        width: 190px;
        padding: 5px 0;
        background: #111111;
        border-radius: 0 0 5px 5px;
        opacity: 0;
        box-shadow: 0 20px 50px 0 #111111;
        visibility: hidden;
        transition: all 0.4s ease;
    }
}

@media (max-width: 1023px) {
    .navbar .dropdown-menu {
        display: none;
        position: relative;
        top: 0;
        width: 100%;
        padding-left: 1rem;
        overflow: hidden;
    }
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}

@media (max-width: 1023px) {
    .navbar .menu-right {
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        padding-left: 1.5rem;
    }

    .navbar .menu-right:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 20px;
        width: 1px;
        height: calc(100% - 25px);
        background-color: #111111;
        transform: translateY(-50%);
    }
}

.navbar .menu-left {
    top: 0;
    left: -100%;
}

@media (max-width: 1023px) {
    .navbar .menu-left {
        top: 0;
        left: 0;
        width: 100%;
        padding-left: 1.5rem;
    }

    .navbar .menu-left:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 20px;
        width: 1px;
        height: calc(100% - 25px);
        background-color: #111111;
        transform: translateY(-50%);
    }
}

.navbar .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 14px;
    transition: 0.25s;
}

.navbar .menu-item:hover {
    text-shadow:
        0 0 5px #d8f3dc,
        0 0 8px #d8f3dc,
        0 0 9px #d8f3dc,
        0 0 10px #d8f3dc,
        0 0 15px #d8f3dc,
        0 0 20px #d8f3dc;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

.navbar ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
}

@media (min-width: 1024px) {
    .navbar .dropdownMega {
        position: inherit !important;
    }
}

@media (min-width: 1024px) {
    .navbar .mega-menu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100vw;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
    }
}

@media (max-width: 1023px) {
    .navbar .mega-menu {
        position: relative;
        display: none;
        padding-left: 0;
    }
}

.navbar .mega-menu .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: #111111;
    -webkit-box-shadow: 0 20px 50px 0 #111111;
    box-shadow: 0 20px 50px 0 #111111;
}

@media (max-width: 1023px) {
    .navbar .mega-menu .content {
        grid-template-columns: auto;
    }
}

@media (min-width: 1024px) {
    .navbar .mega-menu .content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 1023px) {
    .navbar .mega-menu .content .col {
        padding: 0;
        width: 100%;
    }
}

.navbar .category .content .col .img-wrapper {
    margin: 1rem 0;
}

.navbar .category .content .col .img-wrapper span img {
    width: 80%;
    height: 80%;
}

.navbar .blog .content {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
    .navbar .blog .content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.navbar .blog .content .col .img-wrapper {
    margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
    font-weight: normal;
    font-size: 1.125rem;
}

.navbar .blog .content .col .menu-title a {
    transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
    color: #d8f3dc;
}

.navbar .content .col {
    display: flex;
    flex-direction: column;
}

.navbar .content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.navbar .content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.navbar .content .col img {
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
    color: #00f5d4;
    font-size: 1.25rem;
    line-height: 1.125rem;
    border-left: 2px solid #00f5d4;
    padding-left: 0.625rem;
}

.navbar .content .col .menu-title a {
    color: #00f5d4;
}

@media (max-width: 1023px) {
    .navbar .content .col .menu-title {
        font-size: 1.5rem;
        
    }
}

.navbar .content .col p {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #ffffff;
}

.navbar .content .col .mega-links {
    padding-left: 1rem;
    border-left: 1px solid #979797;
}

@media (max-width: 1023px) {
    .navbar .content .col .mega-links {
        border-left: 0;
        padding-left: 0;
    }

    .navbar .content .col .mega-links li {
        margin: 0;
    }

    .navbar .content .col .mega-links li a {
        padding: 0 0.5rem;
    }
}

.navbar .content .col .mega-links li {
    margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
    padding: 0;
}

@media (max-width: 1023px) {
    .overflow {
        overflow: hidden;
    }
}

@media (max-width: 1023px) {
    .overlay {
        position: fixed;
        z-index: 500;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay.overlay--active {
        opacity: 1;
        visibility: visible;
    }
}








main {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 4rem;
    margin-top: 10em;
}

.hero h1 {
    width: fit-content;
    color: #111111;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px #545454;
}

.hero h1::after {
    content: "";
    width: 0;
    margin: auto;
    background-color: #111111;
    height: 3px;
    display: block;
    transition: 0.3s;
}

.hero h1:hover::after {
    width: 100%;
}

.hero h4 {
    width: fit-content;
    color: #111111;
    font-size: 2rem;
    line-height: 1;
    margin-top: 2rem;
}

.reveal {
    padding: 1em 0;
    font-kerning: none;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: justify;
}

/* p.reveal::first-letter {
    font-size: 150%;
} */

.reveal span {
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.3rem;
    text-decoration: underline;
}

.containers {
    width: 100%;
    font-size: 1.125rem;
}

.containers ul {
    margin-top: 1rem;
    padding: 0 4rem;
    line-height: 1.5;
}

.containers ul li {
   
    font-weight: 500;
}

.containers p {
    margin-top: 1rem;
    font-weight: 500;
}

.number {
    padding: 0 4rem;
    margin-top: 0.5rem;
    list-style: decimal;
    
}

.number>li {
    margin-top: 1rem;
    font-weight: 700;
}

.number li ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

.number li ul li span {
    font-weight: 700;
}

.number-two {
    padding: 0 4rem;
    margin-top: 0.5rem;
    list-style: square;
    font-size: 1.125rem;
}

.number-two li {
    line-height: 1.5;
    font-weight: 500;

}

.number-two li span {
    font-weight: 700;
}

.para {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.para span {
    font-weight: 700;
    line-height: 1.5;
}

.section-two {
    margin: 2rem auto;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-two .title {
    width: fit-content;
    font-size: 2.5rem;
    color: blue;
}

.section-two .title::after {
    content: "";
    width: 0;
    height: 3px;
    margin: auto;
    background-color: blue;
    display: block;
    transition: all 0.3s ease-in-out
}

.section-two .title:hover::after {
    width: 100%;
}

.section-two p {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

.section-two h3 {
    margin-top: 2rem;
    width: 100%;
    font-size: 1.5rem;
}

.section-two .list {
    padding: 0 4rem;
    align-self: start;
    list-style: decimal;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 600;
}

.section-two .list li {
    margin-top: 1rem;
}

.section-two .list li ul li {
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 0;
}

.section-two .list-step {
    align-self: self-start;
    padding: 2rem 4rem;
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 500;
}



li>span,
p>span {
    margin-right: 5px;
    font-weight: 700;
}

.section-two p {
    align-self: start;
}


@media only screen and (max-width: 768px) {
    .hero {
      margin-top: 8.5rem;
      padding: 0 1.5rem;
    }
  
    .hero h1 {
      font-size: 3rem;
    }
  
    .hero h4 {
      font-size: 1.8rem;
      margin: 1rem 0;
    }
  
    .containers ul {
      padding: 0 1.5rem;
      text-align: justify;
    }
  
    .number {
      padding: 0 1.5rem;
    }
  
    .number li ul {
      padding: 0;
    }
  
    .number li ul li {
      padding: 0.5rem 0;
      text-align: justify;
    }
  
    .number-two {
      padding: 0 1.5rem;
    }
  
    .section-two {
      padding: 0 1.5rem;
    }
  
    .section-two .title {
      font-size: 2rem;
      text-align: center;
    }
  
    .section-two p {
      text-align: justify;
    }
  
    .section-two .list {
      padding: 0 1.5rem;
    }
  
    .section-two .list-step {
      padding: 1.5rem;
    }
  
    .number-two li,
    .section-two .list li,
    .section-two .list-step li {
      text-align: justify;
    }
  }



  .footer {
    position: relative;
    width: 100%;
    height: auto;
    background: #111111;
    margin-top: 2rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  #footer-part {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #footer-logo {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #footer-logo iframe {
    width: 15vw;
    height: 20vh;
    margin-bottom: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #footer-logo iframe:hover {
    box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
      0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
  }
  
  #footer-logo span {
    color: #d8f3dc;
  
  }
  
  .footer-certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
  }
  
  .footer-certificates img {
    width: 100opx;
    height: 100px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }
  
  .footer-certificates img:hover {
    box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
      0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
  }
  
  #footer-part-options {
  
    top: -50%;
    right: 0;
  }
  
  .social-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #d8f3dc;
    text-decoration: none;
    font-size: 2rem;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #d8f3dc;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    font-weight: 300;
  }
  
  .menu__link:hover {
    text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
      0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
  }
  
  .footer .bottom {
    width: 100%;
    padding: 1em;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .footer .bottom p {
    color: #d8f3dc;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  }
  
  .footer .bottom p a {
    text-decoration: none;
    color: #d8f3dc;
    transition: 0.5s;
  }
  
  .footer .bottom p a:hover {
    text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
      0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
  }
  
  @media only screen and (max-width: 768px) {
    .footer {
      margin-top: 3rem;
      padding: 1.5rem;
    }
  
    #footer-part {
      height: auto;
      flex-direction: column;
    }
  
    #footer-logo {
      margin: 1rem 0;
    }
  
    #footer-logo iframe {
      width: 100%;
      height: auto;
      margin-bottom: 1.5rem;
    }
  
    .footer-certificates {
      margin: 1.5rem;
    }
  
    .footer-certificates img {
      width: 50px;
      height: 50px;
    }
  
    .bottom {
      flex-direction: column-reverse;
    }
    .menu {
      flex-direction: column;
    }
  
    .menu__item {
      margin: 0.5rem 0;
    }
  }
  