body, html {
  width: 100%;
  font-family: 'Inter', sans-serif !important;
  margin: 0;
}

html {
  height: auto;
  min-height: 100%;
}

body {
  min-height: 100vh;
}

a, button {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none !important;
  outline: none;
}

.btn:focus {
  box-shadow: none !important;
}

@media (min-width: 768px) {
  br.only_mobile {
    display: none;
  }
}

.blue_text {
  color: #291FFF;
}

.container-fluid {
  max-width: 1260px;
}

.container-fluid.full_width {
  max-width: 100%;
  padding: 0;
}

.container-fluid.grey_bg {
  background: #F2F2F2;
}

.container-fluid.green_bg {
  background: #0D4F21;
}

.container-fluid.white_bg {
  background: #fff;
}

.homepage_top_section {
  position: relative;
  background: #F2F2F2;
  padding-bottom: 60px;
}

.homepage_top_section_logo_form {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 100;
}

@media (max-width: 1300px) {
  .homepage_contacts_section_logo_form {
    right: 0;
  }
}

.homepage_top_nav_container {
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

@media (max-width: 991px) {
  .homepage_top_nav_container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .homepage_top_nav_container {
    flex-direction: row;
    padding: 16px 0;
  }
}

.homepage_top_nav_left {

}

.homepage_top_nav_logo_link {
  display: inline-block;
}

.homepage_top_nav_logo_link img {
  max-height: 65px;
}

@media (max-width: 767px) {
  .homepage_top_nav_logo_link img {
    max-height: 50px;
  }
}

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

.homepage_top_nav_mobile_items {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
}

.homepage_top_nav_mobile_items.show {
  display: flex !important;
}

@media (min-width: 768px) {
  .homepage_top_nav_mobile_items.show {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .homepage_top_nav_items {
    display: none;
  }
}

.homepage_top_nav_mobile_toggle {
  display: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 2px 4px;
}

.homepage_top_nav_mobile_toggle.open {
  border-color: #424242;
}

@media (max-width: 767px) {
  .homepage_top_nav_mobile_toggle {
    display: inline-block;
  }
}

.homepage_top_nav_item {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: normal;
  margin-left: 24px; 
}

@media (max-width: 991px) {
  .homepage_top_nav_items {
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .homepage_top_nav_item {
    margin-top: 16px;
  }
}

.homepage_top_nav_item:first-of-type {
  margin-left: 0;
}

@media (max-width: 767px) {
  .homepage_top_nav_item:first-of-type {
    margin-left: 24px;
  }
}

.homepage_top_img_container {
  min-height: 416px;
  background: transparent url('../img/homepage_top_bg.webp?v=1') center no-repeat;
  background-size: cover;
  padding-top: 70px;
}

.homepage_top_img_text_container {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
}

.homepage_top_img_text_heading {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: normal;
  margin-right: 35px;
}

.homepage_top_img_text_subheading {
  max-width: 590px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: normal;
  margin-top: 24px;
  margin-right: 75px;
}

@media (max-width: 767px) {
  .homepage_top_img_text_heading {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .homepage_top_img_text_heading {
    width: 100%;
    font-size: 36px;
  }

  .homepage_top_img_text_subheading {
    font-size: 18px;
    font-weight: 400;
    margin-top: 24px;
    margin-right: 0;
  }
}

.homepage_top_categories_container {
  align-items: stretch;
  justify-content: flex-start;
  margin-top: -80px;
}

.homepage_top_categories_item {
  width: 295px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 3px 14px 1px rgba(0, 0, 0, 0.25);
  z-index: 200;
  padding: 24px;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .homepage_top_categories_container {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -100px;
  }

  .homepage_top_categories_item {
    margin: 20px 20px 0;
  }
}

.homepage_top_categories_item_icon {
  text-align: center;
}

.homepage_top_categories_item_icon img {
  margin: 0 auto;
}

.homepage_top_categories_item_heading {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: normal;
  text-align: center;
  margin-top: 20px;
}

.homepage_top_categories_item_text {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: normal;
  margin-top: 20px;
}

.homepage_big_heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  color: #000;
}

@media (max-width: 560px) {
  .homepage_big_heading {
    font-size: 24px;
  }
}

.homepage_big_heading.white {
  color: #fff;
}

.homepage_big_heading_line_container {
  width: 77px;
  height: 4px;
  background: #291FFF;
  margin-top: 12px;
}

.homepage_about_section {
  position: relative;
  background: #fff;
  padding: 62px 0;
}

.homepage_about_short_desc {
  align-items: center;
  justify-content: flex-end;
  max-width: 565px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 140%;
  background: #5A6E79;
  padding: 64px 70px 64px 80px;
  margin-top: 32px;
}

.homepage_about_short_desc_inner {
  max-width: 400px;
}

@media (max-width: 560px) {
  .homepage_about_short_desc {
    justify-content: flex-start;
    font-size: 18px;
    padding: 24px 20px;
  }

  .homepage_about_short_desc_inner {
    max-width: 80%;
  }
}

.homepage_about_left_right {
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 54px;
}

.homepage_about_left {
  width: calc(100% - 700px);
}

@media (max-width: 1230px) {
  .homepage_about_left {
    display: none !important;
  }
}

.homepage_about_left_bg {
  position: absolute;
  left: -40px;
  top: 100px;
  z-index: 100;
}

.homepage_about_left_images {
  align-items: flex-start;
  position: relative;
  z-index: 200;
}

.homepage_about_left_images img {
  
}

.homepage_about_left_images img.left {
  max-width: 265px;
}

.homepage_about_left_images img.right {
  margin-top: 75px;
  margin-left: -135px;
}

.homepage_about_left_years {
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 200;
  margin-top: -50px;
}

.homepage_about_left_years_number {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: normal;
}

.homepage_about_left_years_text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  text-transform: uppercase;
  margin-left: 16px;
}

.homepage_about_right {
  max-width: 700px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: normal;
  background: #F1F1F1;
  padding: 40px;
  margin-top: -220px;
}

.homepage_about_more_text_link {
  display: none;
  font-size: 15px;
  font-weight: 400;
  color: #291FFF;
}

.homepage_about_more_text_link.hide {
  display: none;
}

.homepage_about_more_text {
  display: block;
}

@media (max-width: 1230px) {
  .homepage_about_right {
    max-width: 100%;
    padding: 24px 20px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .homepage_about_more_text_link {
    display: inline-block;
  }

  .homepage_about_more_text {
    display: none;
  }

  .homepage_about_more_text.show {
    display: block;
  }
}

.homepage_about_section .grid .grid-sizer, .homepage_about_section .grid .grid-item {
  width: 247px;
}

@media (max-width: 767px) {
  .homepage_about_section .grid .grid-sizer, .homepage_about_section .grid .grid-item {
    width: 50%;
  }
}

.homepage_about_section .grid .grid-item {
  text-align: center;
  padding: 0 8px;
  margin-top: 16px;
}

.homepage_about_section .grid .grid-item img {
  width: 100%;
}

.homepage_about_gallery {
  margin-top: 40px;
}

.homepage_about_gallery_more_link {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  color: #000;
  background: transparent url('../img/plus_icon.svg') center right 16px no-repeat;
  background-size: 32px;
  border-radius: 8px;
  border: 1px solid #5A6E79;
  cursor: pointer;
  padding: 24px 64px 24px 16px;
}

.homepage_commodities_section {
  position: relative;
  background: #F2F2F2;
  padding-bottom: 120px;
}

.homepage_commodities_section .homepage_commodities_logo_form {
  position: absolute;
  top: 50%;
  right: 0;
}

.homepage_commodities_top_container {
  align-items: stretch;
}

.homepage_commodities_top_left {
  width: 100%;
  max-width: 670px;
  background: transparent url('../img/4.jpg?v=1') center no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .homepage_commodities_top_container {
    padding: 40px 30px;
  }

  .homepage_commodities_top_left {
    display: none !important;
  }
}

.homepage_commodities_top_description {
  width: 100%;
  background: #5A6E79;
  padding: 40px 0;
}

.homepage_commodities_top_description_inner {
  background: #fff;
  padding: 40px 70px;
  margin-left: -70px;
}

@media (max-width: 560px) {
  .homepage_commodities_top_description_inner {
    padding-right: 0;
  }
}

.homepage_commodities_top_description_inner_container {
  max-width: 575px;
}

.homepage_commodities_top_description_text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 24px;
}

.homepage_commodities_items_container {
  flex-wrap: wrap;
  margin: 46px -16px 0;
}

@media (max-width: 767px) {
  .homepage_commodities_top_description {
    padding: 0;
  }

  .homepage_commodities_items_container {
    justify-content: center;
  }
}

.homepage_commodities_item {
  width: 285px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 140%;
  border-radius: 6px;
  background: #fff url('../img/plus_icon.svg') center right 24px no-repeat;
  background-size: 32px;
  border: 2px solid #fff;
  cursor: pointer;
  padding: 36px 60px 36px 24px;
  margin: 24px 16px 0;
}

.homepage_commodities_item.active {
  background: #fff url('../img/minus_icon.svg') center right 24px no-repeat;
  background-size: 32px;
  border: 2px solid #291FFF;
}

.homepage_commodities_text_container {
  margin-top: 32px;
}

.homepage_commodities_text_item {
  position: relative;
  display: none;
  border-radius: 6px;
  border: 1px solid #ACACAC;
  background: #fff;
  z-index: 200;
  padding: 32px;
}

@media (max-width: 560px) {
  .homepage_commodities_text_item {
    padding: 24px 20px;
  }
}

.homepage_commodities_text_item.active {
  display: block;
}

.homepage_commodities_text_item_heading {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 140%;
}

.homepage_commodities_text_item_container {
  align-items: flex-start;
  justify-content: space-between;
}

.homepage_commodities_text_item_text {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 16px;
}

.homepage_commodities_text_item_img {
  margin-top: 16px;
}

.homepage_commodities_text_item_img.more_margin {
  margin-top: 24px;
}

.homepage_commodities_text_item_img img {
  max-height: 300px;
  border-radius: 4px;
}

.homepage_commodities_text_item_img img.smaller {
  max-width: 80%;
}

@media (max-width: 560px) {
  .homepage_commodities_text_item_img img.smaller {
    max-width: 100%;
  }
}

.homepage_commodities_logo_form {

}

.homepage_commodities_bg {

}

.homepage_shipping_bg {
  position: absolute;
  left: 3%;
  bottom: 50px;
}

@media (max-width: 991px) {
  .homepage_shipping_bg {
    left: 20%;
  }
}

.homepage_shipping_top_container {
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 200;
  margin-top: 120px;
}

.homepage_shipping_description_container {
  max-width: 650px;
  background: #fff;
  padding: 40px;
}

@media (max-width: 560px) {
  .homepage_shipping_description_container {
    padding: 24px 20px;
  }
}

.homepage_commodities_top_description_text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 24px;
  margin-right: 40px;
}

.homepage_shipping_top_imgs {
  z-index: 200;
}

@media (max-width: 991px) {
  .homepage_shipping_top_imgs {
    display: none !important;
  }
}

.homepage_shipping_top_imgs img {
  
}

.homepage_shipping_items_container {
  position: relative;
  background: #fff;
  z-index: 200;
  margin-top: 20px;
}

.homepage_shipping_item {

}

.homepage_shipping_item.open .homepage_shipping_item_heading {
  background: transparent url('../img/arrow_down_icon.svg') center right 20px no-repeat;
  background-size: 20px;
}

.homepage_shipping_item.open .homepage_shipping_item_text {
  display: block;
}

.homepage_shipping_item_heading {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  background: transparent url('../img/arrow_left_icon.svg') center right 20px no-repeat;
  background-size: 20px;
  border-top: 1px solid #C2C2C2;
  cursor: pointer;
  padding: 16px 80px 16px 24px;
}

@media (max-width:767px) {
  .homepage_shipping_item_heading {
    font-size: 18px;
  }
}

.homepage_shipping_item_heading.no_border {
  border: none;
}

.homepage_shipping_item_text {
  display: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  border-top: 1px solid #C2C2C2;
  padding: 16px 24px;
}

.homepage_stevoring_section {
  background: #fff;
  padding: 62px 0;
}

.homepage_stevoring_left_right {
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  margin-top: 32px;
}

@media (max-width:767px) {
  .homepage_stevoring_left_right {
    flex-direction: column;
    margin-top: 16px;
  }
}

@media (max-width: 991px) {
  .homepage_shipping_top_imgs {
    display: none !important;
  }
}

.homepage_stevoring_left {
  width: 50%;
  padding-right: 60px;
}

.homepage_stevoring_right {
  width: 50%;
}

@media (max-width:767px) {
  .homepage_stevoring_left {
    width: 100%;
    padding-right: 0;
  }

  .homepage_stevoring_right {
    width: 100%;
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .homepage_stevoring_left.with_img, .homepage_stevoring_right.with_img {
    text-align: center;
  }
}

.homepage_stevoring_heading {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 140%;
}

.homepage_stevoring_text {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 32px;
}

.homepage_logistics_section {

}

.homepage_logistics_top_left_right {
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: -80px;
}

.homepage_logistics_top_left {
  width: 50%;
}

.homepage_logistics_top_left_inner {
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: 646px;
  background: #182434;
  padding: 40px;
}

.homepage_logistics_top_left_inner_text_container {
  margin-right: 140px;
}

@media (max-width: 560px) {
  .homepage_logistics_top_left_inner_text_container {
    margin-right: 0;
  }
}

.homepage_logistics_top_text {
  max-width: 370px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 140%;
  margin-top: 32px;
}

.homepage_logistics_top_right {
  width: 50%;
  max-width: 540px;
  background: #fff;
  border-top: 4px solid #291FFF;
  border-left: 4px solid #291FFF;
  padding: 32px;
  margin-bottom: 20px;
}

@media (max-width: 560px) {
  .homepage_logistics_top_right {
    padding: 24px 20px;
  }
}

.homepage_logistics_left_right {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 130px 0 60px;
}

.homepage_logistics_left {
  width: 50%;
}

.homepage_logistics_right {
  width: 50%;
}

.homepage_logistics_heading {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 140%;
}

.homepage_logistics_heading.white {
  color: #fff;
}

.homepage_logistics_text {
  max-width: 425px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .homepage_logistics_top_left_right {
    flex-direction: column;
    align-items: center;
  }

  .homepage_logistics_top_text {
    max-width: 100%;
  }

  .homepage_logistics_top_left {
    width: 100%;
  }

  .homepage_logistics_top_right {
    width: 100%;
    margin-top: 32px;
  }

  .homepage_logistics_left_right {
    flex-direction: column;
    padding-top: 80px;
  }

  .homepage_logistics_left {
    width: 100%;
    margin-top: 24px;
  }

  .homepage_logistics_right {
    width: 100%;
    margin-top: 40px;
  }

  .homepage_logistics_text {
    max-width: 100%;
  }
}

.homepage_logistics_text.white {
  color: #fff;
}

.homepage_contacts_section {
  padding: 60px 0;
}

.homepage_contacts_section_logo_form {
  position: absolute;
  right: -50px;
  bottom: -150px;
  z-index: 100;
}

@media (max-width: 1300px) {
  .homepage_contacts_section_logo_form {
    right: 0;
  }
}

.homepage_contacts_left_right {
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  background: #F1F1F1;
  padding: 60px 60px 200px 105px;
  margin-top: 80px;
}

@media (max-width: 767px) {
  .homepage_contacts_left_right {
    padding: 40px;
    padding-bottom: 150px;
    margin-top: 40px;
  }
}

@media (max-width: 560px) {
  .homepage_contacts_left_right {
    padding: 20px;
    padding-bottom: 150px;
  }
}

.homepage_contacts_left {
  width: 50%;
}

@media (max-width: 767px) {
  .homepage_contacts_left {
    width: 100%;
  }
}

.homepage_contacts_right {
  align-items: flex-start;
  justify-content: flex-end;
  width: 50%;
}

@media (max-width: 767px) {
  .homepage_contacts_right {
    display: none !important;
  }
}

.homepage_contacts_right img {
  max-width: 400px;
  margin-top: -150px;
}

.homepage_contacts_heading {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 140%;
  margin-top: 24px;
}

.homepage_contacts_text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-top: 8px;
}

.homepage_contacts_emails_block {
  position: relative;
  max-width: 550px;
  background: #5A6E79;
  z-index: 200;
  padding: 32px;
  margin-top: -150px;
}

@media (max-width: 767px) {
  .homepage_contacts_emails_block {
    margin-top: -100px;
  }
}

.homepage_contacts_emails_heading {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 140%;
}

.homepage_contacts_emails_item {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 160%;
  margin-top: 12px;
}

@media (max-width: 560px) {
  .homepage_contacts_emails_item {
    font-size: 14px;
  }
}

.homepage_contacts_emails_item a {
  text-decoration: underline;
  color: #fff;
}

.homepage_contacts_emails_item a:hover, .homepage_contacts_emails_item a:focus {
  color: #fff;
}

.homepage_footer_section {
  position: relative;
  background: #0D4F21;
  z-index: 111;
  padding: 24px 0;
}

.homepage_footer_nav_container {
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

@media (max-width: 991px) {
  .homepage_footer_nav_container {
    flex-direction: column;
  }
}

.homepage_footer_nav_left {
  margin-right: 16px;
}

.homepage_footer_nav_logo_link {
  display: inline-block;
}

.homepage_footer_nav_logo_link img {
  max-height: 65px;
}

.homepage_footer_nav_items {
  align-content: center;
}

.homepage_footer_nav_item {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 140%;
  margin-left: 24px;
}

.homepage_footer_nav_item:first-of-type {
  margin-left: 0;
}

@media (max-width: 991px) {
  .homepage_footer_nav_items {
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .homepage_footer_nav_item {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .homepage_footer_nav_left {
    margin-right: 0;
  }

  .homepage_footer_nav_items {
    flex-direction: column;
  }

  .homepage_footer_nav_item:first-of-type {
    margin-left: 24px;
  }
}

.homepage_footer_bottom_container {
  align-content: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  border-top: 1px solid #757575;
  padding: 16px 16px 0;
  margin-top: 28px;
}

.homepage_footer_bottom_left {

}

.homepage_footer_bottom_right {

}

.homepage_footer_bottom_right a {
  color: #fff;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

@media (max-width: 560px) {
  .homepage_footer_bottom_container {
    flex-direction: column;
    align-items: center;
  }

  .homepage_footer_bottom_left, .homepage_footer_bottom_right {
    width: 100%;
    text-align: center;
  }

  .homepage_footer_bottom_right {
    margin-top: 20px;
  }
}

.footer_ai_text {
  color: #c30800;
}