* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Jersey 25', sans-serif;
  }
  
  .navbar {
    background: #141414;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 70px;
    padding-left: 70px;
  }
  
  #navbar__logo {
    background-color: #17a36d;
    background-image: linear-gradient(-40deg, #633cf0 0%, #21d4fd 100%);
    background-size: 100%;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: double;
    font-size: 4rem;
  }
  
  
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  .navbar__item {
    height: 100px;
  }
  
  .navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1.5rem;
    height: 100%;
    font-weight: 500;
    font-size: 1.4rem;
  }
  
  
  .navbar__links:hover {
    color: #24a4ad;
    transition: all 0.3s ease-in-out;
  }
  
  /* Navbar Responsive Screen Section */

  @media screen and (max-width: 768px) {
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
  
    .navbar__menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 1;
      transition: all 0.5s ease-in-out;
      height: 50vh;
      z-index: -1;
    }
  
    .navbar__menu.active {
      background: #141414;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease-in-out;
      z-index: 99;
      height: 65vh;
      font-size: 1.5rem;
    }
  
    #navbar__logo {
      padding-left: 25px;
    }
  
    .navbar__toggle .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: #fff;
      display: block;
      cursor: pointer;
    }
  
    .navbar__item {
      width: 100%;
    }
  
    .navbar__links {
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: table;
    }
  
    #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
    }
  
    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }
  
    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  /* Main Content / Hero Style Section */

.main {
    background-color: #141414;
  }
  
  .main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 80vh;
    background-color: #141414;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding-right: 50px;
    padding-left: 50px;
  }
  
  .main__content {
    color: #fff;
    width: 100%;
  }
  
  .main__content h1 {
    font-size: 8rem;
    font-weight: bolder;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #a32948 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-align: center;
    padding-bottom: -40px;
  }
  
  .main__content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-top: 10px;
    background-color: #fff;
    background-image: linear-gradient(-40deg, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-align: center;
    padding-bottom: 50px;
  }
  
  .main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    padding-top: 20px;
  }
  
  .main__btn {
    font-size: 1.5rem;
    background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
  }
  
  .main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
  }
  
  .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #b721ff;
    transition: all 0.2s;
    border-radius: 4px;
  }
  
  .main__btn:hover {
    color: #fff;
  }
  
  .main__btn:hover:after {
    width: 100%;
  }
  
  .main__img--container {
    text-align: center;
    
  }
  
  #main__img {
    height: 80%;
    width: 80%;
    border-radius: 10px;
  }
  
  /* Main Content / Hero Section - Screen Responsive*/
  @media screen and (max-width: 768px) {
    .main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: 90vh;
    }
  
    .main__content {
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .main__content h1 {
      font-size: 5rem;
      margin-top: 2rem;
    }
  
    .main__content h2 {
      font-size: 3rem;
    }
  
    .main__content p {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
  }
  
  /* Main Content / Hero - Phone Screen responsive */
  @media screen and (max-width: 640px) {
    .main__content h1 {
      font-size: 4rem;
      margin-top: 3rem;
    }
  
    .main__content h2 {
      font-size: 1.4rem;
    }
  
    .main__content p {
      margin-top: 2rem;
      font-size: 1.5rem;
    }
  
    .main__btn {
      padding: 12px 36px;
      margin: 2.5rem 0;
    }
  }
  
  /* about us Section */

  .aboutUs {
    background: #141414;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .aboutUs h1 {
    background-color: #ff8177;
    background-image: linear-gradient(
      to right,
      #ff8177 0%,
      #ff867a 0%,
      #ff8c7f 21%,
      #f99185 52%,
      #cf556c 78%,
      #b12a5b 100%
    );
    background-size: 100%;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 4.5rem;
  }
  
  .aboutUs h2 {
    background-size: 100%;
    font-size: 2rem;
    font-weight: 200;
    color: #fff;
    text-align: left;
    padding: 0 200px 10px 300px;
  }
  
  .aboutUs h3 {
    background-size: 80%;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    text-align: right;
    padding: 50px 300px 50px 200px;
  }
  
  .aboutUs_container {
    position: sticky;
    height: fit-content;
    padding-top: 500px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* About Us section - Screen responsive */
  
  @media screen and (max-width: 768px) {
    .aboutUs__container {
      display: block;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 50%;
      margin: 0 auto;
      height: 90vh;
      padding: 0 0 0 0;
      position: relative;
    }
  
    .aboutUs {
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .aboutUs h1 {
      font-size: 1.5rem;
      margin-top: 2rem;
    }
  
    .aboutUs h2 {
      font-size: 0.8rem;
    }
  
    .main__content h2 {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
  }

/* Info Section */

.info {
    background: #141414;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: 100vh;
    padding: auto;
  }
  
  .info h1 {
    background-color: #ff8177;
    background-image: linear-gradient(
      to right,
      #f99185 52%,
      #cf556c 78%,
      #b12a5b 100%
    );
    background-size: 100%;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 2rem;
    margin-bottom: 5rem;
    font-size: 4.5rem;
    padding-left: 200px;
    
  }
  
  .info h2 {
    background-size: 100%;
    font-size: 2rem;
    font-weight: 200;
    color: #fff;
    text-align: left;
    padding: 0 400px 0 200px;
  }
  
  .info h3 {
    background-size: 100%;
    font-size: 2rem;
    font-weight: 50;
    color: #fff;
    text-align: right;
    padding: 20px 200px 50px 400px;
  }
  
  .info_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #141414;
  }
  
  
  .info_containerStretch {
    height: 120%;
   padding: 0 0 100px 0; 
   background-color: #141414;
  }
  
  .cookies_img--container {
    text-align: center;
    border: 4px;
  }
  
  #main__img {
    height: 80%;
    width: 80%;
  }
  
  /* Footer Section*/

  .footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
  }
  
  .footer__link--wrapper {
    display: flex;
  }
  
  .footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
  }
  
  .footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }
  
  .footer__link--items a:hover {
    color: #1785b8;
    transition: 0.3s ease-out;
  }
  
  /* Footer Section Web Responsive */
  @media screen and (max-width: 768px) {
    .footer__links {
      padding-top: 2rem;
    }
  
    #footer__logo {
      margin-bottom: 2rem;
    }
  
    .website__rights {
      margin-bottom: 2rem;
    }
  
    .footer__link--wrapper {
      flex-direction: column;
    }
  
    .social__media--wrap {
      flex-direction: column;
    }
    
    .footer__link--items {
      margin: 0;
      padding: 10px;
      width: 100%;
    }
  }
  