* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: "Poppins", sans-serif;
}

button{
  cursor: pointer;
}

.image_contain {
  background-image: url(/img/cover3.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(30, 30, 30, 0.585);
  background-blend-mode: overlay;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: center;
}

.bar img {
  cursor: pointer;
  width: 30px;
}

.cart {
  cursor: pointer;
  display: flex;
  align-items: center;
}

header .header_tabs {
  display: none;
  /* display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
  border-bottom: 1px solid white;
  padding-bottom: 4px;
  align-items: center;
  justify-content: center; */
}

.sidebar {
  display: none;
  flex-direction: column;
  justify-content: center;
  background-color: black;
  align-items: center;
  padding: 50px 10px 150px 10px;
  background-size: contain;
  font-size: 2.8rem;
  font-weight: 700;
  position: fixed;
  inset: 0;
  z-index: 1;
}

.sidebar a {
  text-decoration: none;
}

.sidebar .cross {
  width: 50px;
  align-self: flex-start;
  padding-bottom: 20px;
}

.sidebar img {
  width: 100%;
}

header .logo img {
  width: 70px;
  border-radius: 50%;
}

header .cart img {
  width: 30px;
}

.main_image {
  width: 180px;
}

.main_image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 black;
}

.main {
  padding: 60px 20px 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_para {
  margin-left: 20px;
  color: white;
}

.main_para p {
  font-size: 0.6rem;
}

.main h1 {
  line-height: 2rem;
  margin-bottom: 10px;
}

.resources {
  display: flex;
  flex-direction: column;
}

.res_color {
  background-color: black;
  padding-top: 30px;
  padding-bottom: 120px;
}

.res_head {
  display: flex;
  color: white;

  align-items: center;
  justify-content: center;
}

#res {
  padding: 20px 18px;
  display: flex;
  align-items: flex-end;
}

#res_para p {
  padding-bottom: 10px;
}

#res_para h1 {
  padding-bottom: 17px;
}

.res1_para {
  padding-right: 10px;
}

.res2_para {
  padding-left: 14px;
}

#res_para button {
  color: black;
  cursor: pointer;
  background-color: #7affff;
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  transition: all ease 0.3s;
}

#res_para button:hover {
  background-color: #0b525f;
  color: white;
}

#res_img img {
  width: 12rem;
  border-radius: 50%;
}

.footer {
  background-color: #0b525f;
  background-image: url(/img/f5.png);  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  background-position-x: right;
  padding-bottom: 80px;
}

.email_box {
  padding: 30px 20px 50px 20px;
}

.mail_para h2 {
  padding-bottom: 30px;
}

.mail_para p {
  font-weight: 600;
  padding-bottom: 40px;
}

.mail input {
  color: black;
  margin-bottom: 20px;
  border: none;
  padding: 20px 15px;
  width: 18rem;
}

.mail input[type="submit"] {
  background-color: black;
  border: none;
  color: white;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  width: 120px;
  font-size: 1rem;
}

.mail {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  align-items: center;
}

.respect p {
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 715px) {
  .res2,
  .res1 {
    gap: 40px;
  }
}

@media (min-width: 470px) {
  .mail {
    flex-direction: row;
    justify-content: flex-start;
  }

  .mail input {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

@media (min-width: 490px) {
  .main_image {
    width: 250px;
  }

  .main_image img {
    width: 100%;
  }

  .main_para h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .main_para p {
    font-size: 0.8rem;
  }
}

@media (min-width: 655px) {
  .main_image {
    width: 350px;
  }

  .main_image img {
    width: 100%;
  }

  .main_para h1 {
    font-size: 3.4rem;
    line-height: 3.4rem;
  }

  .main_para p {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .main_image {
    width: 450px;
  }

  .main_image img {
    width: 100%;
  }

  .main_para h1 {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }

  .main_para p {
    font-size: 1.2rem;
  }

  .bar {
    display: none;
  }

  header {
    justify-content: space-between;
  }

  header .cart {
    margin-left: 200px;
  }

  header .header_tabs {
    display: flex;
    color: white;
    font-weight: 600;
    gap: 20px;
  }

  .header_tabs a {
    text-decoration: none;
    border-bottom: 2px solid white;
    transition: all ease 0.3s;
  }

  .header_tabs a:hover {
    background-color: #0b525f;
    border-radius: 10px;
    padding: 0 10px;
  }
}
