@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

img {
  display: block;
  width: 100%;
  max-width: 1500px;
}

body {
  background: #000;
  color: white;
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  font-family: poppins;
}

section {
  margin: 5rem 2rem;
}
hr{
  height: .2em;
  border: none;
  color: #000;
  background-color: #000;
}

/* Navigation Styles */

header {
  background: black;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 95%;
  max-width: 1500px;
}

.logo {
  font-size: 1.25rem;
  margin: 1rem;
  text-transform: uppercase;
}

nav {
  position: absolute;
  top: 100%;
  left: 0;
  text-align: left;
  background: black;
  width: 100%;
  height: 100vh;
  margin-top: 1rem;
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: white;
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  margin-bottom: 1.5em;
  margin-left: 1em;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: #62AC8A;
}

.nav-toggle:checked ~ nav {
  display: block;
}

@media (min-width: 900px) {
  .nav-toggle-label {
    display: none;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: black;
  }
  
  nav {
    all: unset;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 1em;
  }
  
  nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
   nav li { 
    margin-bottom: 0;
    padding: 0;
  }
}

/* Section One */

.section-one {
  margin: 11rem 2rem 0;
}

.header {
  font-size: 4.5rem;
}

.section-one-paragraph {
  margin: 2rem 0;
  width: 70%;
  max-width: 500px;
  line-height: 1.5rem;
}


.learn-more-btn {
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .8rem;
  text-decoration: none;
  color: black;
}

.learn-more-btn:hover {
  background: #62AC8A;
  color: white;
}

/* Section Two */

/* Section Three */

.section-three h3 {
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

/* Section Four */

.flex-group {
  display: flex;
  /* justify-content: ; */
  align-items: center;
  gap: 3rem;
}

.section-four{
  margin-top: 3rem;
}
.section-four p {
  margin-bottom: 2rem;
}

.section-four-btn {
  margin-bottom: rem;
}

/* Section Five */

.section-five-flex-group {
  flex-direction: row-reverse;
}

.section-five p {
  margin-bottom: 2rem;
}

/* Section Six */

.section-six p {
  margin-bottom: 2rem;
}

/* Flex Group Mobile */

@media (max-width: 800px) {
  .flex-group {
    flex-direction: column;
  }
}

/* Section Seven */
.section-seven{
  text-align: center;
}
.section-seven h3 {
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.section-seven-btn {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  width: 7.5rem;
}

/* Section Eight */

.section-eight h4 {
  margin: 1rem 0;
  font-size: 1.25rem;
}

.section-eight p {
  line-height: 1.5rem;
}

/* .section-eight img {
  
} */

.flex-group-eight {
  display: flex;
  gap: 2rem;
}

@media (max-width: 800px) {
  .flex-group-eight {
    flex-direction: column;
  }
}

/* Section Nine */

.section-nine {
  margin-top: 15rem;
}

.logo-container {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  width: 70%;
  max-width: 700px;
  margin: 0 auto;
}

.section-nine svg {
  fill: white;
  height: 50px;
  cursor: pointer;
  transition: ease-in-out 250ms;
}

.section-nine svg:hover {
  transform: translateY(-10px);
  fill: #62AC8A;
}


/* Section Ten */

.section-ten h3 {
  margin: 15rem auto 2rem;
  width: 80%;
  max-width: 700px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.section-ten-btn {
  text-align: center;
  display: flex;  
  justify-content: center;
  margin: 0 auto;
  width: 7.5rem;
}


form.responsive_one_line {
    position: relative;
    width: 80%;
    max-width: 1000px;
}
form.responsive_one_line, form.responsive_one_line * {
    height: 50px;
    padding: 0;
    border: 0;
    outline: 0;
    margin: 0;
}
form.responsive_one_line label {
    display: none;
}
form.responsive_one_line input, form.responsive_one_line button {
    font-size: 15px !important;
    width: 100%;
    font-weight: 700;
    background: #fff;
    padding: 0 120px 0 0;
}
form.responsive_one_line button {
    cursor: pointer;
    /* position: absolute;
    right: 0;
    bottom: 0; */
    /* width: 200px; */
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0 0 0 0;
    padding: 0 0;
    background: #62AC8A no-repeat center center;
}
form.responsive_one_line button a{
  color: #fff;
  text-decoration: double;
}


form.responsive_one_line.border_radius_top_left input, form.responsive_one_line.border_radius_left input, form.responsive_one_line.border_radius_top input, form.responsive_one_line.border_radius input {
    -moz-border-radius-topleft: 0;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}
form.responsive_one_line.border_radius_top_right input, form.responsive_one_line.border_radius_top_right button, form.responsive_one_line.border_radius_right input, form.responsive_one_line.border_radius_right button, form.responsive_one_line.border_radius_top input, form.responsive_one_line.border_radius_top button, form.responsive_one_line.border_radius input, form.responsive_one_line.border_radius button {
    -moz-border-radius-topright: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
}
form.responsive_one_line.border_radius_bottom_right input, form.responsive_one_line.border_radius_bottom_right button, form.responsive_one_line.border_radius_right input, form.responsive_one_line.border_radius_right button, form.responsive_one_line.border_radius_bottom input, form.responsive_one_line.border_radius_bottom button, form.responsive_one_line.border_radius input, form.responsive_one_line.border_radius button {
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}
form.responsive_one_line.border_radius_bottom_left input, form.responsive_one_line.border_radius_left input, form.responsive_one_line.border_radius_bottom input, form.responsive_one_line.border_radius input {
    -moz-border-radius-bottomleft: 0;
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* About */
.about-heading{
  font-size: 4.2em;
}
.about-paragraph-left {
  font-weight: 500;
  font-size: 1.3rem;
  
}
.about-paragraph-right
 {
  font-weight: 300;
  background: #000;
  color: #E1DFE0;
  margin: 2rem,0;
  padding: 2rem;
  font-size: 1rem;
  width: 90%;
  max-width: 700px; 
}

/* Best Practices */
.container h1{
  margin-bottom: .5em;
  color: #6AB58F;
}
.container ul{
  column-count: 2;
  column-gap: 2rem;
  background-color: #E1DFE0;
  padding-top: 1em;
  padding-bottom: 1em;
  /* padding-left: 1em; */
  
}
@media screen and (max-width: 768px) {
  .container ul {
    column-count: 1;
    column-gap: 5rem;
  }
}
.container {
    position: relative;
    margin-top: 3rem ;
}

@media screen and (min-width: 35.5em) {
    .container {
        max-width: 30.5em;
    }
}

@media screen and (min-width: 48em) {
    .container {
        max-width: 43em;
    }
}

@media screen and (min-width: 64em) {
    .container {
        max-width: 59em;
    }
}

@media screen and (min-width: 80em) {
    .container {
        max-width: 75em;
    }
}
.box {
  position: relative;
  padding: 40px;
}
@media screen and (max-width: 48em) {
  .box {
      padding: 20px;
  }
}
.container a,
.container a:visited,
.container a:focus {
  color: black;
  font-weight: 500;
    text-decoration: none;
}

.container a:hover {
    color:#62AC8A;
    text-decoration: underline;
}

.clear {
    clear: both;
}
.card {
  color: #000;
  margin-bottom: 40px;
}

.card ul{
  color: #000;
  margin-bottom: 4rem;
  line-height: 2em;
}

/* Blog */
.main {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: whitesmoke;
}

.blog {
  max-width: 80rem;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 3rem 0;
}

.blog .deco {
  height: 3rem;
  width: 23rem;
  filter: brightness(120%);
}

.flex-container {
  display: grid;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}
.cards-container {
  padding: 2rem;
}

.card-box {
  display: flex;
  flex-flow: column;
  width: 66.3rem;
  /* background-color: #E1DEE2; */
  font-size: 0.92rem;
  box-shadow: 0px 3px 4px rgb(185, 184, 184);
}

.card-img {
  height: 20rem;
}

.card-data,
.card-title,
.card-description {
  padding: 0 1.5rem;
}

.card-data {
  padding-top: 2rem;
  padding-bottom: 1.3rem;
  width: 100%;
  font-size: 1rem;
}

.card-data p {
  display: inline-block;
  color: #6AB58F;
}

.text-right {
  margin-left: 9.4rem;
  margin-right: 1rem;
}

.autor {
  font-weight: bold;
}

.card-title {
  display: block;
  margin: 0;
  margin-bottom: 1.3rem;
  font-size: 1.5em;
  font-weight: bold;
}


.card-description {
  font-size: 1.15rem;
  line-height: 1.7rem;
  padding-bottom: 2rem;
}

@media all and (max-width: 1200px) {
  .card-box {
    width: 30rem;
  }

  .blog{
    padding: 1%;
  }

  .card-data {
    display: flex;
    justify-content: space-between;
  }

  .text-right {
    margin: 0;
  }

  .card-img {
    height: 20rem;
  }
}

@media all and (max-width: 1000px) {
  .flex-container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
  }

  .card-box {
    width: 100%;
  }

  .card-img {
    height: 27rem;
  }
}

@media all and (max-width: 550px) {
  .card-img {
    height: 20rem;
  }

  .data-text {
    font-size: 0.85rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 1rem;
  }
}

.flex-container a{
  color: #E1DFE1;
  text-decoration: none;
}
.flex-container a:hover{
  text-decoration: underline;
  color: #6AB58F;
}

/* design */

.sub-para{
  /* color: black;  */
  /* padding: 1em; */
  margin-top: .5em;
  font-weight: 500;
  /* background-color: #E1DFE1; */
  color: #E1DFE1;
}