:root {
  --black: #1c1b22;
  --white: #fff;
  --main-bg: #30cc5f;
  --main-color: #1ab248;
  --gray: #f6f7f9;
  --red: #f00;
}


*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style-position: inside;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
}

.body.is_overflow {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .body.is_overflow {
    overflow: visible;
  }
}

.global_container {
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
}

.header {
  padding: 8px 0;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.header_container {
  display: flex;
  align-items: center;
}

.logo {
  width: 170px;
  height: 48px;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.logo_images {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .logo {
    height: 70px;
  }
}

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0;
  right: -768px;
  transition: all 0.8s ease;
  z-index: 2;
}

.nav.is_active {
  right: 0;
  transition: all 0.8s ease;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .nav {
    position: static;
    width: auto;
    background-color: transparent;
    opacity: 1;
  }
}


.nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px 0 0 48px;
  font-size: 48px;
}

@media screen and (min-width: 769px) {
  .nav_list {
    margin: 0 -16px;
    flex-direction: row;
    font-size: 20px;
    padding: 0;
  }
}

.nav_item {
  padding: 16px;
}

@media screen and (min-width: 769px) {
  .nav_item {
    padding: 0 16px;
  }
}

.nav_link {
  cursor: pointer;
  color: var(--white);
}

@media screen and (min-width: 769px) {
  .nav_link {
    color: var(--black);
  }
}

.nav_link:hover,
.nav_link:focus {
  color: var(--main-color);
}

.header_lang {
  width: 170px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.header_lang-active {
  text-transform: uppercase;
  color: var(--main-color);
  cursor: pointer;
}

.header_lang--active:hover,
.header_lang--active:focus {
  color: var(--main-bg);
}

.header_lang-menu {
  position: absolute;
  z-index: 1;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--black);
  right: -8px;
  top: 150%;
  width: 85px;
  display: none;
}

.header_lang-menu.is_active {
  display: block;
}

.lang-menu_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-menu_link {
  display: block;
  padding: 4px 8px;
  cursor: pointer;
  text-align: center;
}

.lang-menu_link:hover,
.lang-menu_link:focus {
  color: var(--main-color);
}

.header_burger {
  width: 50px;
  height: 28px;
  position: relative;
  margin-left: 24px;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .header_burger {
      display: none;
  }
}


.header_burger span {
  position: absolute;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  top: 13px;
  transition: all 0.3s ease 0s;
}

.header_burger:before,
.header_burger:after {
  content: '';
  background-color: var(--main-color);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease 0s;
}

.header_burger:before {
  top: 0;
}

.header_burger:after {
  bottom: 0;
}

.header_burger.is_active span{
  transform: scale(0);
}

.header_burger.is_active:before{
  transform:rotate(45deg);
  top: 18px;
}

.header_burger.is_active:after{
  transform:rotate(-45deg);
  bottom: 9px;
}

.main {
  flex: 1;
}

.hero {
  position: relative;
  height: 30vh;
}

@media screen and (min-width: 769px) {
  .hero {
    height: 80vh;
  }
}

.hero_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  background-image: url('../images/hero-2.jpg');
  background-size: cover;
  display: flex;
  filter: brightness(0.5);
}

.hero_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  filter: brightness(1);
}

.hero_title {
  color: var(--white);
  font-weight: 500;
  font-size: 32px;
}

@media screen and (min-width: 769px) {
  .hero_title {
    font-size: 60px;
  }
}

.hero_subtitle {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .hero_subtitle {
    font-size: 32px;
  }
}

.section {
  padding: 24px 0;
}

@media screen and (min-width: 769px) {
  .section{
    padding: 48px 0;
  }
}

.title {
  text-align: center;
  font-weight: 500;
  margin: 0 0 16px;
  font-size: 32px;
}

@media screen and (min-width: 769px) {
  .title {
    margin: 0 0 32px;
    font-size: 48px;
  }
}

.about-us_text {
  font-size: 18px;
}
.about-us_text p + p {
  margin-top: 8px;
}

.about-us_image  {
  display: none;
}

.about-us_img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .about-us_flex {
    display: flex;
    margin: 0 -16px;
  }
  .about-us_text {
    width: 60%;
    padding: 0 16px;
    font-size: 20px;
  }

  .about-us_image {
    display: block;
    width: 40%;
    padding: 0 16px;
  }
}

.services {
  background-color: var(--black);
  color: var(--white);
}

.services_flex {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}

.services_item {
  width: 50%;
  padding: 8px;
}

.services_image {
  margin: 0 auto 16px;
  width: 100px;
  height: 100px;
}

.services_text {
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .services_flex {
    margin: -16px;
  }
  .services_item {
    width: 25%;
    padding: 16px;
  }
}


@media screen and (min-width: 1200px) {
  .services_text {
    font-size: 24px;
  }
  .services_image {
    margin: 0 auto 24px;
    width: 200px;
    height: 200px;
  }
}

.partners_flex {
  display: flex;
  margin: -8px;
  max-width: 100%;
  overflow-y: auto;
}

.partners_flex::-webkit-scrollbar {
  width: 0;
}

.partners_item {
  padding: 8px;
  flex: 0 0 200px;
}

.partners_link {
  display: flex;
  width: 100%;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  overflow: hidden;
  padding: 8px;
}

.partners_link:hover,
.partners_link:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}

.partners_image {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .partners_flex {
    margin: -16px;
  }
  .partners_item {
    flex: 0 0 20%;
    padding: 16px;
  }
  .partners_link {
    height: 200px;
  }
}

.track {
  background-color: var(--black);
  color: var(--white);
}

.track_input {
  position: relative;
}

.track_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 42px;
    background-color: transparent;
    outline: none;
    border: none;
    padding: 4px 8px;
    z-index: 10;
    cursor: pointer;
}

.track_btn svg {
  fill: var(--main-color);
  width: 100%;
  height: 100%;
}

.track_btn:hover svg {
  fill: var(--main-bg);
}

.form_result_track {
  display: none;
  gap: 16px;
  flex-direction: column;
}

.parcel_info-wrap {
   width: 100%;
}

.parcel_table-wrap {
  width: 100%;
}

.parcel_table-wrap table {
  width: 100%;
  border-collapse: collapse;
}


@media screen and (min-width: 1200px) {
  .form_result_track {
    flex-direction: row;
    gap: 32px;
  }
  .parcel_info-wrap {
      width: 40%;
  }
  .parcel_table-wrap {
      width: 60%;
  }
}


.parcel_info-title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--main-color);
}

.parcel_info-subtitle {
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px;
}

.parcel_info-item {
  margin-top: 16px;
}

.products_title {
  color: var(--red);
}

.products_block + .products_block {
  margin: 24px 0 0;
}

.products_warning {
  color: var(--red);
  background: rgba(255,0,0,0.07);
  border: 2px solid var(--red);
  padding: 16px;
  margin: 0 0 16px;
  font-size: 20px;
}

.products_warning-title {
    margin: 0 0 16px;
    font-size: 24px;
    color: var(--red);
}

.products_list {
  column-count: 1;
  list-style-position: inside;
}

@media screen and (min-width: 1200px) {
  .products_list {
    column-count: 2;
  }
}

.products_li {
  padding-bottom: 8px;
}

.products_li::marker {
  color: var(--red);
}

summary.products_warning-title {
  cursor: pointer;
}

.sanctions_subtitle {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  padding: 0 0 16px;
}

@media screen and (min-width: 769px) {
  .sanctions_subtitle {
    padding: 0 0 32px;
  }
}

.sanctions_desc-title {
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 16px;
}

.sanctions_desc p + p {
   margin-top: 8px;
}

.sanctions_link {
  font-weight: 500px;
  margin-top: 8px;
  text-transform: uppercase;
}

.sanctions_link a {
  color: var(--red);
}

.table_wrap {
  padding-top: 24px;
  overflow-y: auto;
}

.table {
  min-width: 700px;
}

table, th, td {
  border: 1px solid #999;
  border-collapse: collapse;
  font-size: 14px;
}

.th, .td {
  padding: 5px 10px;
}

.td {
  vertical-align: top;
}

.red {
  color: var(--red);
}

.green {
  color: var(--main-color);
}

.contacts {
  background-color: var(--gray);
}

.contacts_container {
  max-width: 1200px;
}

.contacts_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -16px;
}

.contacts_item {
  width: 100%;
  padding: 16px;
}

.info_item + .info_item {
  margin-top: 20px;
}

.info_title {
  color: #9d9da1;
  font-size: 12px;
  margin: 0 0 4px;
}

.info_address {
  font-size: 18px;
}

.info_address + .info_address {
  padding-top: 8px;
}
.contacts_mail,
.contacts_tel {
  font-size: 18px;
  color: var(--black);
  display: inline-block;
  text-decoration: none;
}

.contacts_tel {
  font-weight: 500;
}

.contacts_tel:hover,
.contacts_tel:focus {
  color: var(--main-color);
}

.contacts_mess {
  margin: 8px -8px 0;
  display: flex;
}

.contacts_link {
  width: 48px;
  height: 32px;
  padding: 0 8px;
}

.contacts_link:hover svg,
.contacts_link:focus svg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.contacts_subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  text-align: center;
  text-transform: uppercase;
}

.input_item {
  position: relative;
}

.form_error {
  color: red;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 4px;
  font-weight: 500;

}

.input_item input,
.input_item textarea {
  width: 100%;
  padding: 8px 16px;
  font-size: 18px;
  border: 1px solid var(--black);
  background: var(--white);
  margin-bottom: 16px;
  line-height: 1;
  color: var(--black);
  font-family: 'Roboto';
  height: 42px;
  font-weight: 400;
  border-radius: 4px;
}

.input_item textarea {
  height: 80px;
  resize: none;
}

.contacts_button {
  background: var(--main-bg);
  border: 2px solid var(--main-bg);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  height: 48px;
  cursor: pointer;
  font-family: 'Roboto';
}

.contacts_button:hover,
.contacts_button:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.contacts_button:disabled {
  opacity: .5;
}

.form_result {
  display: none;
  text-align: center;
  padding-top: 8px;
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .contacts_item {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .contacts_item--info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contacts_item--inner {
    padding: 32px 60px;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-radius: 16px;
  }
}

.map_container {
  position: relative;
  height: 450px;
  width: 100%;
}

.map_iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 24px 0;
}

.footer_flex {
  display: flex;
  align-items: center;
}

.logo_footer {
  background-image: url('../images/deck.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 170px;
  height: 48px;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .logo_footer {
    height: 70px;
  }
}

@media screen and (min-width: 769px) {
  .footer{
    padding: 48px 0;
  }
}