* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

nav ul {
  list-style: none;
}

.main_layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.content_wrapper {
  width: 1200px;
  color: rgb(39, 39, 39);
}

.header {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 125px;
  border-bottom: 4px solid #000;
}

.header_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 5px;
}

.header_contacts {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header_company_number {
  font-size: 30px;
  color: #ed008c;
  font-weight: bold;
}

.header_current_company {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.header_contact_number {
  color: rgb(39, 39, 39);

  font-size: 18px;
}

.main_contact {
  text-decoration: none;
  color: #ed008c;
}

.header_contact_number:hover {
  text-decoration: underline;
}

.header_nav {
  display: flex;
  justify-content: center;
  height: 100%;
  border-top: 1px solid rgb(196, 196, 196);
  width: 100%;
}

.header_nav_list {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 45px;
}

.header_nav_item {
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(39, 39, 39);
  padding: 5px;
}

.header_nav_item:hover,
.active_link {
  border-bottom: 2px solid #ed008c;
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.form_section {
  display: flex;
  width: 100%;
}

.form_img,
.form_wrapper {
  width: 50%;
 height: fit-content;
}

.form {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-top: 10px;
}

input,
select {
  margin: 12px 5px 10px 0;
  height: 2rem;
  border: 1px solid gray;
  font-size: 16px;
}

select {
  background-color: transparent;
}

textarea {
  margin-right: 5px;
  margin-top: 5px;
  border: 1px solid gray;
}

ul,
li {
  margin: 5px 5px 5px 15px;
}

.button {
  height: 2.5rem;
  margin-top: 15px;
  background-color: #ed008c;
  border: 1px solid transparent;
  color: aliceblue;
  font-size: larger;
  cursor: pointer;
}
input,
textarea,
button,
select {
  border-radius: 3px;
  padding: 5px;
}

section {
  margin: 20px;
}

p {
  margin: 10px 0;
}

img {
  max-width: 100%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  background-color: #000;
  margin-top: 50px;
  color: aliceblue;
}

.iframe {
  height: 100vh;
  width: 100%;
  scale: 50%;
}

.burger_menu {
  display: block;
  margin: 0 0 0 10px;
  position: relative;
  width: 30px;
  height: 23px;
  z-index: 101;
  transition: all 0.3s;
}

.burger_menu::before,
.burger_menu::after {
  content: "";
  background-color: rgb(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 3px;
  transition: all 0.3s;
}

.burger_menu::before {
  top: 0;
}

.burger_menu::after {
  bottom: 0;
}

.mobile_nav {
  width: 100%;
  display: none;
}

@media (max-width: 1280px) {
  .content_wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header {
    height: 150px;
  }

  .header_info {
    flex-wrap: wrap;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .header {
    height: 180px;
  }

  .header_info {
    display: flex;
    flex-direction: column;
  }

  .header_nav_list {
    display: none;
  }

  .mobile_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    height: 50px;
  }

  .header_nav_list {
    display: none;
    flex-direction: column;
  }

  .burger_menu_active {
    top: 0;
  }
  .burger_menu_active::before {
    transform: rotate(45deg);
    top: 10px;
  }
  .burger_menu_active::after {
    transform: rotate(-45deg);
    bottom: 10px;
  }

  .mobile_header_active {
    height: 80vh;
    transition: all 0.5s;
  }

  .header_nav_list_active {
    display: flex;
    margin-top: 10px;
  }

  .header_nav {
    background-color: rgb(245, 245, 245);
  }

  .form_section {
    flex-direction: column;
  }

  .form_wrapper,
  .form_img,
  .form {
    width: 96%;
  }
}
