html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
  background-color: black;
  text-align: center;
}

main {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  }
  
.main_position_text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
  
.card {
  background-color: white;
  border-radius: 6px;
  border: solid 1px #8080801c;
  margin-top: 40px;
}

.card_3 {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  }
  
.card_4 {
  border-radius: 6px;
  padding: 20px;
  background-color: white;
  }
  
.icon_img {
    width: 80px;
  }
  
.main_about {
  max-width: 400px;
  border-radius: 6px;
}

.card_main {
 background: white;
  border-radius: 4px;
}


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

.card_two {
  max-width: 400px;
}
  
h1 {
  font-size: 30px;
  text-transform: uppercase;
  }
  
h2 {
  text-transform: uppercase;
  }
  
 
.main_back {
  max-width: 700px;
  border-radius: 20px;
  margin-right: 40px;
}

.text_two {
  border-bottom: solid 1px gray;
  padding-bottom: 10px;
  text-align: left;
}

.foot {
    display: flex;
  justify-content: center;
    }
  
  .btn_main_black {
  background: #1e1e1e;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: solid 1px #1e1e1e;
  transition: transform 0.3s ease;
}

.btn_main_black:hover {
  background-color: white;
  color: #1e1e1e;
  transform: scale(1.1);
  }
  
.main_position {
    margin-top: 40px;
    margin-bottom: 20px;
    }
  

  
.btn_position {
  display: flex;
  justify-content: space-around;
  }







@media (max-width: 800px)  {
  .card_main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.main_back {
  width: 100%;
    margin-right: 0px;
}

.card {
  margin-top: 10px;
  }
  
.card_3 {
    flex-direction: column;
    }

.card_one {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_two {
  max-width: 100%;
}

.main_position {
  margin-bottom: 40px;
}

.card_bot {
    margin-bottom: 20px;
    }

}



