@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.burger_icon {
  display: none;
}
.burger_icon i {
  color: #fff;
}
nav,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.common_width {
  width: 1300px;
  margin: 0rem auto;
}
body,
input,
select,
button,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
  color: #333;
  /* background-color: #f9f9fb; */
}
.header_wrapper {
  background-color: #008c8c;
  position: sticky;
  top: 0px;
  z-index: 99999;
}
header {
  position: sticky;
  top: 0px;

  z-index: 9999;
}
header,
header nav {
  display: flex;
  align-items: center;
}

header {
  justify-content: space-between;
  height: 70px;
  margin-bottom: 3rem !important;
}
header nav > * + * {
  margin-left: 3rem;
}
.logo img {
  width: 200px;
  border-radius: 5px;
}
header nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
header nav a.active {
  color: #f4c6bf;
}
.main_heading {
  font-size: 50px;
  margin-top: 2rem;
  text-transform: uppercase;
  margin-bottom: 5rem;
}
header nav .button {
  background-color: #f4c6bf;
  color: #008c8c;
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  border: 1px solid #f4c6bf;
  transition: 0.3s ease all;
}
header nav .button:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
@media screen and (max-width: 1350px) {
  .common_width {
    width: 90%;
  }
  header {
    width: 100% !important;
    padding: 0rem 1rem;
  }
}
@media screen and (max-width: 840px) {
  header nav > * + * {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .logo img {
    width: 150px;
  }
}
@media screen and (max-width: 650px) {
  .burger_icon {
    display: block;
  }
  header nav {
    position: fixed;

    top: 0px;
    flex-direction: column;
    height: 100vh;
    width: 200px;
    background-color: #008c8c;
    padding: 2rem 0rem;
    left: -100%;
    z-index: 999999;
    transition: 0.3s ease all;
  }

  header nav.active {
    left: 0px;
  }
  header nav > * + * {
    margin-left: 0px;
    margin-top: 2rem;
  }
  header {
    height: 70px;
  }
  .burger_icon i {
    font-size: 25px;
  }
}
