@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
* {
  font-family: Lato, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --index: calc(1vw + 1vh);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #4597a4;
  border-radius: 40px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb:horizontal {
  background: #4597a4;
  border-radius: 40px;
}
::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}
.gsap_content {
  will-change: transform;
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  overflow-x: hidden;
}
.gsap_wrapper {
  flex: 1 0 auto;
}
.container {
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 1830px) {
  .container {
    padding: 0 120px;
  }
}
@media (max-width: 1199px) {
  .container {
    padding: 0 20px;
  }
}
h1,
h2 {
  color: #2d626b;
  font-size: 64px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
h3 {
  color: #191c25;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}
h4 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}
h5 {
  color: #2d626b;
  font-size: 17px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h1,
  h2 {
    font-size: 44px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 17px;
  }
  h5 {
    font-size: 15px;
  }
}
.color-sea {
  color: #2d626b !important;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.title span {
  color: #585b5b;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
.title-light span {
  color: #fff;
}
.title-light h2 {
  color: #4597a4;
}
.bg-darck {
  background-image: url(assets/img/Tile.png);
  background-color: #191c25;
  background-repeat: repeat;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  a:hover {
    color: #4597a4 !important;
  }
}
@media (max-width: 1199px) {
  .title span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .title span {
    font-size: 17px;
  }
}
.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 100px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
  width: 100vw;
}
.header.scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
.header__logo {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header__logo img {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__logo span {
  color: #191c25;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 60px;
  list-style-type: none;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__contact_link,
.header__menu a {
  color: #191c25;
  font-size: 17px;
  font-weight: 700;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.header__hamburger {
  display: none;
}
@media (max-width: 1385px) {
  .header {
    height: 90px;
  }
  .header__menu ul {
    gap: 20px;
  }
  .header__logo span {
    font-size: 17px;
  }
  .header__logo img {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 1199px) {
  .header {
    height: 60px;
  }
  .header__menu {
    display: none;
  }
  .header__logo span {
    font-size: 16px;
  }
  .header__contact_link {
    font-size: 16px;
  }
  .header__contact {
    gap: 20px;
  }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 60px;
    background: #ecf4f5;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .hamburger-line {
    transition: all 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform-origin: center;
  }
  .header__hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3.5px);
  }
  .header__hamburger.active .hamburger-line:nth-child(2) {
    transform: rotate(-45deg) translate(3.7px, -3.5px);
  }
  .hamburger-line {
    transition: all 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .header__hamburger.active .hamburger-line {
    transition: all 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
  }
}
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
  .header__logo span {
    font-size: 15px;
  }
  .header__logo {
    gap: 5px;
  }
}
.footer {
  height: 84px;
  background: #cfe8eb;
}
.footer__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  color: #585b5b;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.teampro {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #585b5b;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.teampro a {
  color: #2d626b;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
.arrow__up {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #585b5b;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.arrow__up_btn {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #ecf4f5;
  cursor: pointer;
}
.arrow__up_btn svg path {
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .arrow__up_btn:hover svg path {
    stroke: #4597a4 !important;
  }
}
@media (max-width: 1199px) {
  .footer {
    height: 64px;
  }
  .arrow__up,
  .footer__copy,
  .teampro,
  .teampro a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer {
    height: auto;
    padding: 10px 0;
  }
  .footer__wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .arrow__up_btn {
    width: 30px;
    height: 30px;
  }
  .arrow__up_btn svg {
    height: 13px;
  }
}
.mobile-menu {
  display: none;
}
@media (max-width: 1199px) {
  .mobile-menu {
    display: block;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 60px);
    margin-top: 60px;
    z-index: 10000;
    pointer-events: none;
  }
  .mobile-menu_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
  }
  .mobile-menu_wrapper {
    box-shadow: 0 3px 7px -6px rgba(24, 39, 75, 0.06),
      0 5px 16px -4px rgba(24, 39, 75, 0.05);
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 202px;
    justify-self: flex-end;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: -100%;
    overflow-y: scroll;
  }
  .mobile-menu_wrapper ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .mobile-menu_wrapper ul li a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 150%;
  }
  .mobile-menu.active {
    pointer-events: initial;
  }
  .mobile-menu.active .mobile-menu_bg {
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: initial;
  }
  .mobile-menu.active .mobile-menu_wrapper {
    right: 0;
  }
  .mobile-menu_contact {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-menu_wrapper ul li a {
    font-size: 17px;
  }
  .mobile-menu_wrapper ul {
    gap: 40px;
    align-items: center;
  }
  .mobile-menu_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .mobile-menu_contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu_contact a {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 150%;
  }
}
.banner {
  height: 100vh;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0 180px;
}
.banner__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
.banner__imgs {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 80%;
}
.banner__img {
  max-height: 456px;
  height: 100%;
  will-change: transform, opacity;
}
.banner__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1385px) {
  .banner {
    height: 850px;
  }
}
@media (max-width: 1199px) {
  .banner {
    height: 700px;
  }
  .banner__imgs {
    max-width: 900px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: 500px;
    padding: 80px 0 130px;
  }
  .banner__imgs {
    gap: 1px;
  }
  .banner__wrapper {
    justify-content: space-between;
  }
  .banner__imgs {
    max-width: 532px;
  }
}
.facts {
  position: relative;
}
.facts_before::before {
  content: '';
  display: block;
  width: 100%;
  height: 100px;
  position: absolute;
  top: -50px;
  background-image: url(assets/img/Tile.png);
  background-color: #191c25;
  background-repeat: repeat;
  z-index: -1;
}
.facts-pt {
  padding-top: 100px;
}
.facts {
  padding-bottom: 100px;
}
.facts__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.facts__items {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.facts__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: center;
  justify-content: center;
}
.facts__row:nth-child(2n) .facts__item_img {
  order: 1;
  justify-self: end;
}
.facts__row:nth-child(2n) .facts__item_text {
  order: 2;
}
.facts__row:nth-child(2n + 1) .facts__item_text {
  justify-self: end;
}
.facts__item {
  display: flex;
  align-items: center;
}
.facts__item_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  will-change: transform, opacity;
}
.facts__item_text ul {
  margin-left: 20px;
}
.facts__item_img {
  width: 300px;
  height: 300px;
  will-change: transform, opacity;
}
.facts__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .facts__row {
    gap: 80px;
  }
  .facts__items {
    gap: 60px;
  }
  .facts__wrapper {
    gap: 40px;
  }
  .facts__item_text {
    font-size: 16px;
    gap: 10px;
  }
  .facts {
    padding-bottom: 60px;
  }
  .facts-pt {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .facts__wrapper {
    gap: 20px;
  }
  .facts__items {
    gap: 40px;
  }
  .facts__row {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .facts__item_img {
    order: 1;
    width: 150px;
    height: 150px;
    justify-self: center !important;
  }
  .facts__item_text {
    order: 2;
    font-size: 15px;
  }
  .facts {
    padding-bottom: 40px;
  }
  .facts-pt {
    padding-top: 40px;
  }
}
.fish {
  padding: 100px 0;
}
.fish__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.fish__content {
  position: relative;
}
.fish__bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10%;
}
.fish__bg_img {
  width: 600px;
  max-width: 30%;
  height: 400px;
  will-change: transform, opacity;
}
.fish__bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.fish__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, minmax(190px, auto));
  gap: 40px;
}
.fish__grid_item {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #585b5b;
}
.fish__grid_item:nth-child(2) {
  grid-column: 3;
}
.fish__grid_item:nth-child(3) {
  grid-column: 2;
  grid-row: 4;
}
@media (max-width: 1199px) {
  .fish__bg {
    position: relative;
    height: 365px;
  }
  .fish {
    padding: 60px 0;
  }
  .fish__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .fish__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fish__grid_item {
    font-size: 16px;
  }
  .fish__wrapper {
    gap: 40px;
  }
  .fish__content {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .fish {
    padding: 40px 0;
  }
  .fish__bg {
    position: relative;
    height: 300px;
    padding-bottom: 0;
  }
  .fish__wrapper {
    gap: 20px;
  }
  .fish__content {
    gap: 20px;
  }
  .fish__grid_item {
    font-size: 15px;
  }
  .fish__bg_img {
    max-width: 50%;
    height: auto;
  }
}
.products {
  padding: 100px 0 0;
}
.products__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.products__item:nth-child(2n) {
  background: #f1f6f9;
}
.products__item:first-child .products__item_wrapper {
  padding-top: 0;
}
.products__item_wrapper {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.products__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.products__main_img {
  height: 400px;
  width: 100%;
}
.products__main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.products__main_descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products__main_text {
  color: #585b5b;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
}
.products__main_text-mob {
  display: none;
}
.products__active {
  display: flex;
  flex-direction: column;
}
.products__active_title {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.products__active_btn {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  background: #ecf4f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__active_btn svg {
  transition: all 0.3s ease-in-out;
}
.products__active_btn svg path {
  transition: all 0.3s ease-in-out;
}
.products__active_down {
  position: relative;
  z-index: 2;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  max-width: calc(100vw - 20px);
  color: #191c25;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  will-change: height;
}
.products__active_down table {
  width: 100%;
  border-spacing: 0;
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #585b5b;
}
.products__active_down table tr td {
  padding: 20px 10px;
  border-bottom: 1px solid #d4dadb;
}
.products__active_down table tr:first-child td {
  padding: 30px 10px;
  background: #ecf4f5;
  color: #191c25;
  border-bottom: none;
}
.products__active.active .products__active_down {
  opacity: 1;
  margin: 20px 0 0;
}
.products__active.active .products__active_btn svg {
  transform: rotate(45deg);
}
.products__dosage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products__dosage_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #585b5b;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
}
.products__dosage_text b,
.products__dosage_text strong {
  color: #191c25;
  font-weight: 400;
}
@media (hover: hover) {
  .products__active_title:hover .products__active_btn svg path {
    stroke: #4597a4;
  }
}
.products__active_down::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.products__active_down::-webkit-scrollbar-thumb {
  background: #687479;
  border-radius: 40px;
}
.products__active_down::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.products__active_down::-webkit-scrollbar-horizontal {
  width: 4px;
  height: 4px;
}
.products__active_down::-webkit-scrollbar-thumb:horizontal {
  background: #687479;
  border-radius: 40px;
}
.products__active_down::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}
@media (max-width: 1199px) {
  .products__item_wrapper {
    padding: 20px 0;
    gap: 20px;
  }
  .products__wrapper {
    gap: 20px;
  }
  .products__main {
    grid-template-columns: 270px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px;
  }
  .products__main_text-desc {
    display: none;
  }
  .products__main_text-mob {
    display: block;
    grid-column: 1/3;
  }
  .products {
    padding: 20px 0;
  }
  .products__main_img {
    height: 200px;
  }
  .products__main_text {
    font-size: 16px;
  }
  .products__active_down {
    gap: 10px;
  }
  .products__active.active .products__active_down {
    margin: 10px 0 0;
  }
  .products__active_down table tr:first-child td {
    padding: 20px 10px;
  }
  .products__active_down table {
    font-size: 12px;
  }
  .products__dosage_text {
    font-size: 16px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .products__main {
    grid-template-columns: 140px 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
  }
  .products__main_img {
    height: 110px;
  }
  .products__main_text {
    font-size: 15px;
  }
  .products__active_title {
    justify-content: space-between;
  }
  .products__dosage {
    gap: 10px;
  }
  .products__dosage_text {
    font-size: 15px;
  }
}
.stick {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.stick__card {
  width: 100vw;
  position: sticky;
  top: 0;
  --offset: 100px;
  top: var(--offset);
  height: calc(100vh - var(--offset));
  will-change: filter, transform;
  padding: 20px 0;
}
.stick__card:nth-child(2n + 1) {
  background-image: url(assets/img/Tile.png);
  background-color: #191c25;
  background-repeat: repeat;
}
.stick__card:nth-child(2n + 1) .stick__card_item-text {
  color: #fff;
}
.stick__card:nth-child(2n) {
  background-color: #fff;
}
.stick__card:nth-child(2n) .stick__card_item-text {
  color: #585b5b;
}
.stick__card:last-child .stick__card_item-img {
  width: 400px;
  height: 400px;
  max-height: 55vh;
}
.stick__card_flex {
  display: flex;
  flex-direction: column;
  gap: calc(var(--index) * 3.59);
  height: 100%;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stick__card_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: center;
  justify-content: center;
}
.stick__card_row:nth-child(2n) .stick__card_item-img {
  order: 1;
  justify-self: end;
}
.stick__card_row:nth-child(2n) .stick__card_item-text {
  order: 2;
}
.stick__card_row:nth-child(2n + 1) .stick__card_item-text {
  justify-self: end;
}
.stick__card_item {
  display: flex;
  align-items: center;
}
.stick__card_item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  will-change: transform, opacity;
}
.stick__card_item-text ul {
  margin-left: 20px;
}
.stick__card_item-img {
  width: 300px;
  height: 300px;
  max-height: 30vh;
  will-change: transform, opacity;
}
.stick__card_item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  will-change: transform;
}
@media (max-width: 1385px) {
  .stick__card_item-text {
    font-size: calc(var(--index) * 0.755);
  }
  .stick__card {
    --offset: 90px;
  }
}
@media (max-width: 1199px) {
  .stick {
    gap: 40px;
  }
  .stick__card_row {
    gap: 40px;
  }
  .stick__card {
    --offset: 60px;
  }
}
@media (max-width: 767px) {
  .stick {
    gap: 20px;
  }
  .stick__card {
    position: relative;
    top: initial;
    padding: 40px 0;
    height: auto;
  }
  .stick__card_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .stick__card_item-img {
    height: 150px;
    width: 150px;
    max-height: none;
  }
  .stick__card_item-text {
    font-size: 15px;
  }
  .stick__card_flex {
    gap: 40px;
  }
  .stick__card_item-text {
    order: 2;
  }
  .stick__card_item-img {
    order: 1;
  }
  .stick__card:last-child .stick__card_item-img {
    height: 150px;
    width: 150px;
  }
}
.list {
  padding: 100px 0;
}
.list__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.list__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
.list__item_img {
  width: 100%;
  height: 50px;
}
.list__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.list__item_text {
  color: #585b5b;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list__item_text b,
.list__item_text strong {
  color: #585b5b;
  font-weight: 700;
}
.list__item_text ul {
  margin-left: 25px;
}
@media (max-width: 1199px) {
  .list {
    padding: 60px 0;
  }
  .list__wrapper {
    gap: 20px;
  }
  .list__item_text {
    font-size: 16px;
  }
  .list__item {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .list {
    padding: 40px 0;
  }
  .list__item {
    grid-template-columns: 30px 1fr;
  }
  .list__item_img {
    height: 30px;
  }
  .list__item_text {
    font-size: 15px;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.contact__wrapper {
  background-image: url(assets/img/contact_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
  min-height: 500px;
  height: 500px;
}
.contact__block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: #585b5b;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
}
.contact__block a {
  color: #2d626b;
  font-size: 17px;
  font-weight: 700;
  line-height: 150%;
}
.contact__bg {
  display: none;
}
@media (max-width: 1385px) {
  .contact__wrapper {
    background-image: url(assets/img/contact_bg2.png);
  }
}
@media (max-width: 1199px) {
  .contact__wrapper {
    background-image: url(assets/img/contact_bg3.png);
  }
  .contact {
    gap: 40px;
  }
  .contact__block,
  .contact__block a {
    font-size: 16px;
  }
  .contact__block {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .contact {
    gap: 20px;
  }
  .contact__bg {
    display: block;
    background-image: url(assets/img/contact_bg4.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 150px;
  }
  .contact__wrapper {
    background-image: none;
    height: auto;
    min-height: auto;
  }
  .contact__block {
    padding: 10px 0;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .contact__block,
  .contact__block a {
    font-size: 15px;
  }
}

.error {
  min-height: 100vh;
  padding: 200px 0 50px;
  background-image: url(assets/img/Bg_404.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.error__wrapper {
  max-width: 1010px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.error__title {
  color: #2d626b;
  font-size: 64px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.error__text {
  color: #585b5b;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .error__title {
    font-size: 44px;
  }
  .error__text {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .error {
    padding: 80px 0 20px;
  }
  .error__title {
    font-size: 30px;
  }
  .error__text {
    font-size: 17px;
  }
}
