body, html {
    margin: 0 auto;
    padding: 0;
    overflow-y: scroll; 
    position: relative; 
    background-color: #1e1e1e;
    font-family: "Merriweather Sans", sans-serif;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    }

nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  }
  
section {
  padding: 20px;
  background-color: #ececec;
  }
  
.grad {
  background-color: #1e1e1e;
}
  
.sec_main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
    }
  
p {
  color: white;
  font-weight: lighter;
  }
  
a {
  text-decoration: none;
  }
  
.logo_position {
  display: flex;
}
  
.logo {
 width: 50px;
  height: fit-content;
  padding-top: 3px;
  }
  
.logo_text {
  margin: 0 auto;
  font-size: 28px;
  font-weight: bold;
  margin-left: 10px;
}
.btn_position_nav {
  display: flex;
  align-items: center;
}
 
.btn_position {
  margin-top: 80px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  }
  
.btn_main {
  padding: 10px 32px;
  color: white;
  border: solid 1px #fff;
  border-radius: 4px;
  }
  
.btn_main:hover {
  background-color: white;
  padding: 10px 32px;
  color: black;
  border: solid 1px white;
  border-radius: 4px;
  transition: 0.3s ease;
  }
  


.content {
    position: relative; 
    z-index: 2; 
    padding: 20px;
    text-align: left;
}

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

h1 {
  margin: 0 auto;
  color: white;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 42px;
  text-transform: uppercase;
  }
  
h2 {
  color: #1e1e1edb;
  font-size: 38px;
  text-transform: uppercase;
  }
  
.about {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
  
.about_img {
  max-width: 400px;
  float: right;
  margin-left: 40px;
  height: auto;
  margin-bottom: 40px;
  }
  
.about_text {
  color: #1e1e1edb; 
  }
  
.text_main {
  max-width: 600px;
}

.main_content {
  position: relative;
  z-index: 2;
  margin-top: -10px;
}

.main_bg {
  max-width: 300px;
  margin: 0 auto;
  padding-top: 20px;
  height: fit-content;
  
}

.title_two {
  margin-top: 52px;
  text-align: center;
  color: #fffffff7;
  }

h3 {
  color: white;
  margin: 0px;
  text-transform: uppercase;
}

 .card_two_text {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}
.card_position {
  padding-top: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.card_main {
  background: #0000000f;
  padding: 20px;
  border: solid 1px #bfbfbf0f;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card_img {
  width: 90px;
  float: left; 
  margin-right: 25px; 
  margin-bottom: 5px;
  }

.card_text {
  text-align: left;
  max-width: 700px;
}

.two_position {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}


h4 {
  margin: 0px;
  color: white;
  font-size: 28px;
  text-transform: uppercase;
  }

footer {
  text-align: center;
  padding: 40px;
  align-items: center;
  display: flex;
  flex-direction: column;
  background: black;
  }
    
.foot_text {
  max-width: 600px;
  }
    
.copy {
text-transform: uppercase;
  }

@media (max-width: 1000px) {
  
h1 {
  font-size: 30px;
  }
  
h2 {
  font-size: 24px;
  }
  
h4 {
  font-size: 24px;
  }
  
p {
  font-size: 14px;
  }
  
.main_position {
  flex-direction: column;
}
  
.about_position {
  display: flex;
  flex-direction: column;
}

.main_bg {
  display: flex;
}
}

@media (max-width: 600px) {
.btn_position_nav { 
 display: none;
 }
}

