body {
    padding: 0;
    margin: auto;
    text-align: center;
  }

  .youtube {
    font-size: 10px;
    position: absolute;
    top: 4px;
    left: 290px;
  }

  .navbar {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    background-color: #1ba27a;
    justify-content: space-around;
    height: fit-content;
    position: relative;
    height: 45px;
  }

  .navbar li {
    display: inline-block;
    margin: 0 8px;
  }

  .navbar li a {
    color: antiquewhite;
    text-decoration: none;
  }
  
  .logo{
  	position: absolute;
  	top: 15%;
  }

  .logo a {
    color: antiquewhite;
    font-size: 24px;
    text-decoration: none;
    font-weight: bolder;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }

  .logo .logo_text {
    position: absolute;
    display: inline-block;
    /*top: 20%;*/
  }

  .navbar a:hover {
    color: rgb(110, 157, 198);
    transition: 0.4s;
  }

  @media all and (max-width: 556px) {
  	.container{
  		width: 100% !important;
  	}
    .navbar {
      flex-direction: column;
      height: 50px;
      transition: 1s;
    }

    .youtube {
      font-size: 10px;
      position: absolute;
      top: 4px;
      left: 165px;
    }

	.logo{
		position: relative;
		top: 0%;
	}
    .logo a {
      position: relative;
      left: 0px;
    }

    .menus {
      flex-direction: column;
      position: absolute;
      animation-name: menuan;
      animation-duration: 1.5s;
      animation-fill-mode: forwards;
      cursor: pointer;
    }

    .menu {
		height: 5px;
		width: 25px;
		background-color: #fff;
		margin: 4px 0px 0px 0px;
		border-radius: 3px;
    }

    .navbar li {
      display: block;
      text-align: end;
      margin-bottom: 10px;
    }
    
    .navbar li a{
    	color: #333;
    }

    ul {
      display: none;
      position: relative;
    }

    .openmenu {
      display: block;
      margin: 30px 0px 0px 0px;
    }

    @keyframes menuan {
      1% {
        right: 500px;
        top: 6px;
      }

      100% {
        right: 10px;
        top: 6px;
      }
    }
  }
  
  
  
/*FOOTER*/

/*Footer*/
/*===== VARIABLES CSS =====*/
:root{
  --header-height: 3rem;

  /*===== Colors =====*/
  --first-color: #3E0E12;
  --first-color-dark: #1ba27a;
  --text-color: #524748;
  --first-color-light: #7B6F71;
  --first-color-lighten: #FBF9F9;

  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*===== Margins =====*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*===== z index =====*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}
  
@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*===== CLASS CSS =====*/
.section {
  padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

/*===== LAYOUT =====*/
.bd-container {
  max-width: 1024px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #000;
}

/*===== FOOTER =====*/
.footer {
  background-color: var(--first-color-dark);
  color: var(--first-color-lighten);
  text-align: center;
}

.footer__container {
  padding: 1rem 0;
}

.footer__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  margin-bottom: var(--mb-3);
}

.footer__social {
  margin-bottom: var(--mb-6);
}

.footer__link {
  font-size: 1.4rem;
  color: var(--first-color-lighten);
  margin: 0 var(--mb-1);
  transition: .3s;
}

.footer__link:hover {
  color: var(--first-color-light);
}

.footer__copy {
  font-size: var(--smaller-font-size);
  /*color: var(--first-color-light);*/
  color: white;
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }
}