@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Rowdies:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* Reset CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lexend Deca", sans-serif;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

/* Sidebar */
aside {
  position: fixed ;
  height: 100vh;
  width: 20%;
  display: flex;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 20px;
  border-right: 1px solid #ddd;
}

main{
  margin-left: 20%;
}

.sidebar h2 {
  font-size: 3vw;
  margin-bottom: auto;
}

.sidebar .list{
  display: flex;
  flex-direction: column;
}

.sidebar .list a {
  font-family: "ADLaM Display", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  margin: 10px;
}

.sidebar .list a:hover {
  color: #ff9807;
  border-radius: 50px;
}

.sidebar .whatsapp {
  margin-top: auto;
  background-color: #25d366;
  color: white;
  text-align: center;
  border-radius: 20px;
  text-decoration: none;
  font-size: 17px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  transition: 0.2s ease-in-out;
}

.sidebar .whatsapp:hover{
  background-color: #ff9807;
  transform: scale(1.1);
}

.sidebar .whatsapp:focus {
    background-color: #ff9807;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
  width: 80%;
  padding: 20px;
}

.main-content h1 {
  line-height: 1.1 !important;
  width: 60vw;
  font-size: 5em;
  overflow-wrap: break-word;
  line-height: 1.4;
  margin-bottom: 20px;
}

.main-content a{
    all: unset;
} 

.sidebar .whatsapp {
}



.whatsapp:hover {
    color: #ffffff;
  }
  
/* .whatsapp a {
    all: unset;
    font-size: 1.5vw;
    background-color: #25d366;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 8px 10px;
    border-radius: 15px;
    margin-left: 5; */
  
  
  
.whatsapp:hover{
    cursor: pointer;
  }
/* Reset CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lexend Deca", sans-serif;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

/* Sidebar */
aside {
  position: fixed ;
  height: 100vh;
  width: 20%;
  display: flex;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 20px;
  border-right: 1px solid #ddd;
}

main{
  margin-left: 20%;
}

.sidebar h2 {
  font-size: 3vw;
  margin-bottom: auto;
}

.sidebar .list{
  display: flex;
  flex-direction: column;
}

.sidebar .list a {
  font-family: "ADLaM Display", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  margin: 10px;
}

.sidebar .list a:hover {
  color: #ff9807;
  border-radius: 50px;
}

.sidebar .whatsapp {
  margin-top: auto;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar .whatsapp:hover {
  background-color: #ff9807;
}

/* Main Content */
.main-content {
  width: 80%;
  padding: 20px;
}

.main-content h1 {
  line-height: 1.1 !important;
  width: 60vw;
  font-size: 5em;
  overflow-wrap: break-word;
  line-height: 1.4;
  margin-bottom: 20px;
}

.main-content a{
    all: unset;
}
/* Hamburger */
.hamburger-menu{
    position: absolute;
    z-index: 10000;
}

#menu__toggle {
    opacity: 0;
  }
  
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  
  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 20px;
  
    width: 26px;
    height: 26px;
  
    cursor: pointer;
    z-index: 3;
  }
  
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    background-color: #636363;
  
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
  
    width: 300px;
    height: 100%;
  
    margin: 0;
    padding: 80px 0;
  
    list-style: none;
  
    background-color: #eeeeee;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  
    transition-duration: .25s;
    z-index: 2;
  }

 .menu__box h1{
    font-size: 2.3em;
    width: 4.5em;
    margin-left: 20px;
 }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
  
    color: #000000;
  
    font-weight: 600;
  
    text-decoration: none;
  
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #ff9807;
    color: rgb(255, 255, 255);
  }




/* title */

.mark{
    background-color: #ff9807;
    color: #fff;
    padding: 5px 5px;
    border-radius: 20px;
    font-weight: bold;
}

.mark:hover{
    cursor: pointer;
}

@media only screen and (min-width: 1920px) {

    .sidebar .list a{
    font-size: 60px;
  }
  
    .title{
      padding: 30px;
    }
  }
  
  @media only screen and (min-width: 769px) {
      .hamburger-menu{
          display: none;
      }
  }
  
  @media only screen and (max-width: 992px) {
  
      .title{
          height: 10%;
      }
      .whatsapp2 {
        margin-bottom: 500px;
      }
  }
  
  @media only screen and (max-width: 768px) {
      aside{
          display: none;
      }
  
      .main-content{
          position: relative;
          right: -13%;
          margin-left: 0;
          
      }
  
      .title h1{
          font-size: 8vw;
        }
  
      .title{
          width: 77%;
          margin-bottom: 20%;
          position: relative;
          right: 8%;
      }
  }

  .whatsapp2 {
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 95%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 11px;
    transition: 300ms ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  }

  i {
    padding-right: 5px;
    font-size: 16px;
  }

  .whatsapp2:hover {
    background-color: #000000;
    cursor: pointer;
    transform: scale(0.99);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  }

  .whatsapp2:focus {
    background-color: #000000;
    cursor: pointer;
    transform: scale(0.95);
    
  }