@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-Bold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/design/fonts/Gilroy-ExtraBold.ttf");
  font-weight: 800;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Gilroy';
  color: #2B2B30;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #08372C;
}

.mb_150 {
  margin-bottom: 150px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.4s ease;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

section {
  overflow: hidden;
}

:root {
  --main-color: #FFAB18;
}



@media (min-width: 992px) {
  .hidden-anim {
    opacity: 0;
    transition: 1s;
    visibility: hidden;
  }

  .title_anim.hidden-anim {
    opacity: 1;
  }

  .title_anim {
    transition: 1s ease-out;
    transition-delay: 0.5s;
    translate: -103%;
  }

  .title_wrapper_section .title_anim {
    translate: -102%;
  }

  .leftAnim {
    translate: -50px 0;
    transition: 1s;
  }

  .rightAnim {
    translate: 50px 0;
  }

  .bottomAnim {
    translate: 0 50px;
  }

  .topAnim {
    translate: 0 -50px;
  }

  .delay_03 {
    transition-delay: 0.3s;
  }

  .delay_05 {
    transition-delay: 0.5s;
  }


  .show-elements.leftAnim,
  .show-elements.rightAnim,
  .show-elements.bottomAnim,
  .show-elements.topAnim {
    translate: 0;
    opacity: 1;
  }
}


.desktop-hide {
  display: none;
}

.container {
  max-width: 1180px !important;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  border-bottom: 2px solid #FFFFFF80;
  transition: 0.3s;
}

.header.sticky {
  background-color: white;
}

.header-logo-img-dark {
  display: none;
}

.header.sticky .header-logo-img-dark {
  display: block;
  width: 60%;
}
.header-logo-img  {
  width: 65%;
} 

.header.sticky .header-logo-img {
  display: none;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  overflow: hidden;
  border-right: 2px solid #FFFFFF80;
  border-left: 2px solid #FFFFFF80;
  transition: 0.3s;
}

.header.sticky .header_wrapper {
  padding: 0;
  overflow: unset;
}

.logo-wrapper {
  padding: 0 30px;
  position: relative;
  max-width: 270px;
}

.logo-wrapper:after {
  content: '';
  position: absolute;
  top: -23px;
  bottom: 34px;
  right: 0;
  border-right: 2px solid #FFFFFF80;
  display: block;
  height: 100px;
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 0;
}

.menu-header ul li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  transition: 0.3s;
}

.menu-header ul li a:hover {
  color: var(--main-color);
}

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  font-weight: bold;
  transition: 0.3s;
}

.dropdown_lang .dropdown_menu a:hober {
  color: var(--main-color);
}

.header_right-side {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}

.header_right-side:after {
  content: '';
  position: absolute;
  top: -23px;
  bottom: 34px;
  left: 0;
  border-left: 2px solid #FFFFFF80;
  display: block;
  height: 110px;
  display:none
}

.header_lang__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.header.sticky .menu-header ul li a {
  color: black;
}

.header.sticky .dropdown_lang .dropdown_menu a,
.header.sticky .header_lang__btn span {
  color: black;
}

.dropdown_lang svg {
  margin-bottom: 5px;
}

.dropdown_lang svg path {
  transition: 0.3s;
}

.header.sticky .dropdown_lang svg path {
  fill: black;
}

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 10px;
  position: relative;
  top: -4px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header.sticky .dropdown_lang .dropdown_menu {
  background-color: white;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}


.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 20px;
  padding-right: 15px;
}

.header_contactus {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  background-color: var(--main-color);
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0 35px;
  margin: 0 20px;
  position: relative;
  transition: 0.3s;
  border-radius: 5px;
}

.header_contactus:hover {
  background-color: #FFBC47;
  color: #FFFFFF;
}

.header_contactus:after {
  content: '';
  position: absolute;
  top: -23px;
  bottom: 34px;
  left: -23px;
  border-left: 2px solid #FFFFFF80;
  display: block;
  height: 110px;
}

.header.sticky .header_contactus:after,
.header.sticky .logo-wrapper:after,
.header.sticky .header_right-side:after {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}








.top_section {
  background-image: url(/assets/design/images/top-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.top_section:before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  z-index: -1;
}

.top_section_title {
  font-weight: 500;
  font-size: 60px;
  line-height: 73px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}



.top_section_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title_wrapper {
  overflow: hidden;
  margin: 0 auto 20px;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.title_wrapper_section {
  overflow: hidden;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin: 0;
}

.title_wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
  width: 10px;
  height: 44px;
  background-color: var(--main-color);
}

.title_wrapper:has(h2):before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  display: block;
  width: 10px;
  height: 36px;
  background-color: var(--main-color);
}

.show-elements.title_anim {
  translate: 0;
  visibility: visible;
}

.top_section_subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  display: block;
  max-width: 695px;
  margin: 0 auto;
}

.top_contact_us {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  border: 2px solid #FFFFFF;
  max-width: 170px;
  width: 100%;
  margin: 44px auto 0;
  transition: 0.3s;
  border-radius: 5px;
}

.top_contact_us:hover {
  border: 2px solid var(--main-color);
  color: var(--main-color);
}

.trading {
  padding-top: 50px;
  margin-top: -50px;
}

.trading_title {
  margin-bottom: 10px;
  text-align: left;
}

.trading_subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #246D5C;
  display: block;
}

.trading_items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.trading_item {
  position: relative;
  overflow: hidden;
}

.trading_item img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.trading_item:hover img {
  filter: brightness(1.3);
  scale: 1.07;
}

.trading_item span {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 20px 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  max-width: 150px;
  width: 100%;
  display: block;
  transition: 0.2s;
  cursor: default;
}



.about {
  padding: 150px 0;
  background-image: url(/assets/design/images/text-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about .title_wrapper {
  margin-bottom: 0;
}

.about_text {
  margin-top: 40px;
  text-align: center;
}

.about_text p {
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  color: #246D5C;
  margin-bottom: 40px;
}

.about_text p:last-child {
  margin-bottom: 0;
}

.about_text p span {
  color: var(--main-color);
  text-transform: uppercase;
}

.advantages {
  background-image: url(/assets/design/images/advatn-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0;
  background-position: top;
  position: relative;
  isolation: isolate;
}

.advantages:before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  z-index: -1;
}

.advantages_title {
  text-align: left;
  color: white;
  margin-bottom: 10px;
}

.advantages_subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #FFFFFF;
  display: block;
}

.advantages_items {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 41px;
}

.advantages_item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advantages_item_number {
  font-size: 55px;
  line-height: 73px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border: 10px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.advantages_item_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: #FFFFFF;
}

.logistic {
  background-color: #F9F9F9;
  padding: 150px 0;
}

.logistic_top_text {
  padding-left: calc((100vw - 1180px) / 2 + 15px);
}

.logistic_title {
  text-align: left;
  margin-bottom: 40px;
}

.logistic_top {
  display: flex;
  gap: 80px;
}

.logistic_top_text p {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #246D5C;
  width: 100%;
  max-width: 462px;
}

.logistic_top_text p span {
  color: var(--main-color);
  text-transform: uppercase;
}

.logistic_top_text p:last-child {
  margin-bottom: 0;
}

.logistic_top_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logistic_blocks {
  background: #F7F7F7;
  display: flex;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 42px 0;
  margin: 60px 0;
}

.logistic_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21px;
  border-right: 1px solid rgba(172, 172, 172, 0.2);
}

.logistic_block:last-child {
  border-right: none;
}

.logistic_block img {
  height: 60px;
}

.logistic_block span {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #246D5C;
}

.logistic_bottom p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #246D5C;
}

.contact_title {
  text-align: left;
  margin-bottom: 10px;
}

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

.contact_side {
  flex-basis: 50%;
}

.contact_text_block {
  margin-bottom: 40px;
}

.contact_block_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #08372C;
  display: block;
  margin-bottom: 20px;
}

.contact_text {
  padding-right: 20px;
}

.tel_mail_wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

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

.phone,
.addres {
  flex-basis: 44%;
}

.email,
.social {
  flex-basis: 56%;
}

.tel_mail_item a {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #08372C;
}

.soc_block {
  display: flex;
}

.contact_block_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #08372C;
}

.social_item {
  margin-right: 18px;
}

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

.legal_item_title {
  flex-basis: 36%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #747474;
}

.legal_item_value {
  font-weight: 500;
  flex-basis: 64%;
  font-size: 16px;
  line-height: 36px;
  color: #08372C;
}

.contact {
  padding-top: 150px;
}

.contact_form {
  background: #F9F9F9;
  padding: 50px;
}

.input_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #246D5C;
  display: block;
  margin-bottom: 4px;
}

.contact_form br {
  display: none;
}

.wpcf7-form-control-wrap input {
  border: 1px solid #ACACAC;
  border-radius: 4px;
  width: 100%;
  height: 53px;
  padding-left: 15px;
  margin-bottom: 25px;
}

.wpcf7-form-control-wrap input.wpcf7-not-valid {
  border: 1px solid red;
}

.email_phone_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wpcf7-not-valid-tip {
  display: none;
}

.email_phone_form .wpcf7-form-control-wrap input {
  max-width: 245px;
  width: 100%;
}

.email_phone_form .wpcf7-form-control-wrap input::placeholder,
.wpcf7-form-control-wrap textarea::placeholder {
  font-family: 'Gilroy';
}

.wpcf7-form-control-wrap textarea {
  border: 1px solid #ACACAC;
  border-radius: 4px;
  height: 106px;
  width: 100%;
  padding-left: 15px;
  padding-top: 15px;
  resize: none;
}

.wpcf7-submit {
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  padding: 0 38px;
  margin-top: 38px;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  background-color: #FFBC47;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em !important;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(172, 172, 172, 0.2);
}

.footer-menu-side,
.footer_menu_contact {
  display: flex;
  flex-direction: column;
}

.footer {
  background-color: #F9F9F9;
  padding: 100px 0 45px;
}

.footer_soc_block {
  margin-top: 30px;
}

.footer_soc_block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer_menu_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #08372C;
  display: block;
  margin-bottom: 30px;
}

.footer-menu-side a {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #246D5C;
  margin-bottom: 20px;
  display: block;
  transition: 0.3s;
}

.footer-menu-side a:hover {
  color: var(--main-color);
}

.footer_menu_contact a,
.footer_menu_contact .footer_contact_info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #08372C;
  margin-bottom: 10px;
  transition: 0.3s;
  text-align: start;
}

.footer_menu_contact a:hover {
  color: var(--main-color);
}

.footer_menu_contact a svg,
.footer_menu_contact .footer_contact_info svg {
  width: 21px;
}

.footer_content_bottom {
  padding-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_content_bottom span {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #747474;
}

.footer_content_bottom span a {
  transition: 0.3s;

}

.footer_content_bottom span a:hover {
  color: var(--main-color);
}

.policy_text {
  margin: 120px 0 50px;
}

.policy_text h1 {
  text-align: center;
  margin-bottom: 30px;
}

.first_block_title {
  font-size: 22px;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.block_title {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 22px;
  font-weight: 500;
}

.policy_text li {
  margin-bottom: 15px;
}

.policy_text ul {
  list-style-type: disc;
  padding-left: 40px;
}

.policy_text ul li {
  margin-bottom: 0;
}

.list_title {
  font-weight: 600;
  margin-top: 20px;
  display: block;
}

.bottom_text {
  margin-top: 30px;
}

.page-id-27 .header-logo-img {
  display: none;
}

.page-id-27 .header-logo-img-dark {
  display: block;
}

.page-id-27 .menu-header ul li a {
  color: black;
}

.page-id-27 .dropdown_lang .dropdown_menu a,
.page-id-27 .header_lang__btn span {
  color: black;
}

.page-id-27 .dropdown_lang svg path {
  fill: black;
}

.page-id-27 .header {
  box-shadow: 0 0px 17px 0 rgba(0, 0, 0, .3);
}







@media (max-width: 992px) {

  .menu-header,
  .header_right-side {
    display: none;
  }

  .burger-menu-wraper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1100;
  }

  .mobile_menu,
  .mobile_menu .menu-header {
    display: block;
  }

  .mobile_menu {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background: rgba(38, 38, 38, 42%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translate(105%, 0);
    transition: 0.4s ease-in-out;
    padding-top: 250px;
  }

  .mobile_menu.show-menu {
    transform: translate(0, 0);
  }

  .mobile_menu .menu-header ul {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .menu-header ul li a {
    font-size: 35px;
  }

  .header_contactus {
    height: 62px;
    max-width: 400px;
    font-size: 26px;
    margin: 0 auto;
  }

  .header_contactus:after {
    display: none;
  }

  .lang-switcher-mob ul {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
  }

  .lang-switcher-mob ul li a {
    font-size: 28px;
    color: white;
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid white;
    justify-content: center;
    align-items: center;
  }

  .header-logo-img {
    position: relative;
    z-index: 1000;
  }

  .header.sticky .header-logo-img-dark {
    display: none;
  }

  .header.sticky .header-logo-img {
    display: block;
  }

  .header.sticky .header_wrapper {
    padding: 14px 0;
  }

  .header.sticky {
    background: rgba(0, 0, 0, 80%);
    /* backdrop-filter: blur(10px); */
  }

  .header_wrapper {
    transition: unset;
    border: unset;
  }

  .header.sticky .menu-header ul li a {
    color: white;
  }

  .top_section_title {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .mb_150 {
    margin-bottom: 50px;
  }

  .trading_items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

  .trading_item span {
    font-size: 18px;
    padding: 15px 0;
    max-width: 120px;
  }

  .about {
    padding: 50px 0;
  }

  .title_wrapper:has(h2):before {
    top: 9px;
  }

  .advantages_items {
    margin-top: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .advantages {
    padding: 50px 0;
  }

  .advantages_item_number {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .logistic {
    padding: 50px 0;
  }

  .logistic_top_text {
    padding: 0 15px;
  }

  .logistic_top {
    flex-direction: column;
    gap: 40px;
  }

  .logistic_top_text p {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .logistic_title {
    margin-bottom: 30px;
  }

  .logistic_blocks {
    margin: 30px 0;
  }

  .contact {
    padding-top: 45px;
  }

  .contact_content {
    flex-direction: column;
  }

  .contact_side {
    flex-basis: 100%;
    width: 100%;
  }

  .legal_item_title {
    flex-basis: 44%;
  }

  .legal_item_value {
    flex-basis: 56%;
  }

  .email_phone_form .wpcf7-form-control-wrap input {
    max-width: 340px;
  }

  .contact_form {
    padding: 25px;
  }

  .footer_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer {
    padding: 50px 0 45px;
  }

  .footer_soc_block {
    justify-content: center;
  }

  .footer_soc_block a svg {
    width: 50px;
    height: 50px;
  }

  .footer_menu_title {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .footer-menu-side a {
    font-size: 24px;
    line-height: 28px;
  }

  .logo-wrapper:after {
    display: none;
  }
}

@media (max-width: 500px) {
  .logo-wrapper {
    padding: 0;
  }

  .header-logo-img {
    width: 130px;
  }

  .mobile_menu {
    padding-top: 170px;
  }

  .menu-header ul li a {
    font-size: 25px;
  }

  .menu-header ul {
    gap: 35px;
  }

  .header_contactus {
    font-size: 22px;
    max-width: 340px;
  }

  .lang-switcher-mob ul li a {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }

  .top_section_title {
    font-size: 26px;
  }

  .top_section_subtitle {
    font-size: 18px;
    font-weight: 400;
  }

  h2 {
    font-size: 20px;
  }

  .trading_items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    gap: 10px;
  }

  .about_text p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about {
    padding: 30px 0;
  }

  .about_text {
    margin-top: 20px;
  }

  .advantages {
    padding: 35px 0;
  }

  .trading_item span {
    font-size: 14px;
    padding: 8px 0;
    max-width: 100px;
  }

  .advantages_items {
    margin-top: 25px;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }

  .advantages_item {
    gap: 8px;
  }

  .logistic_title {
    margin-bottom: 12px;
  }

  .advantages_item_text {
    font-size: 16px;
  }

  .advantages_item_number {
    width: 65px;
    height: 65px;
    font-size: 24px;
    border: 7px solid rgba(255, 255, 255, 0.3);
  }

  .logistic {
    padding: 30px 0;
  }

  .logistic_top_text p {
    font-size: 16px;
  }

  .logistic_blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 0;
  }

  .logistic_block {
    border: none;
    gap: 5px;
  }

  .logistic_bottom p {
    font-size: 16px;
  }

  .tel_mail_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact {
    padding-top: 30px;
  }

  .title_wrapper:has(h2):before {
    top: 0;
    height: 29px
  }

  .contact_block_title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact_form .contact_block_title {
    text-align: center;
  }

  .advantages_title {
    margin-bottom: 20px;
  }

  .tel_mail_item a {
    font-size: 16px;
  }

  .tel_mail_item {
    gap: 10px;
  }

  .phone,
  .addres {
    flex-basis: 50%;
  }

  .contact_block_text {
    font-size: 18px;
  }

  .contact_text {
    padding-right: 0;
  }

  .legal_item_value {
    line-height: 24px;
    font-size: 14px;
  }

  .legal_item {
    margin-bottom: 13px;
  }

  .contact_form {
    padding: 15px;
  }

  .wpcf7-form-control-wrap input {
    height: 40px;
    margin-bottom: 17px;
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .wpcf7-form-control-wrap {
    display: flex;
    justify-content: center;
  }

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

  .email_phone_form div p {
    width: 100%;
  }

  .email_phone_form .wpcf7-form-control-wrap input {
    max-width: 100%;
  }

  .email_phone_form {
    gap: 0;
    flex-direction: column;
  }

  .wpcf7-submit {
    margin-top: 25px;
    margin-bottom: 10px;
    width: 100%;
  }

  .wpcf7-spinner {
    display: none;
  }

  .legal_item_title {
    flex-basis: 50%;
  }

  .footer-logo-img-dark {
    width: 130px;
  }

  .footer_soc_block a svg {
    width: 40px;
    height: 40px;
  }

  .footer_menu_title {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .footer-menu-side a {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 14px;
  }

  .footer_content_bottom {
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
  }

  .footer_content {
    padding-bottom: 20px;
    gap: 10px;
  }

  .footer {
    padding: 50px 0 32px;
  }

  .logistic_block img {
    height: 47px;
  }

  .logistic_block span {
    font-size: 20px;
  }

  .title_wrapper_section {
    padding-left: 20px;
  }

  .footer_soc_block {
    margin-top: 20px;
  }

  .footer_menu_contact a,
  .footer_menu_contact .footer_contact_info {
    font-size: 18px;
  }

  .trading {
    padding-top: 30px;
  }

  .policy_text h1 {
    font-size: 32px;
  }
}

@media (max-width: 380px) {
  .top_section_title {
    font-size: 25px;
  }

  .top_section_subtitle {
    font-size: 17px;
  }

  .social_item {
    margin-right: 5px;
  }

  .legal_item_value {
    font-size: 13px;
  }
}
ul#menu-footer-menu-en li {
  display: inline-flex
;
  padding: 0 20px;
}
.card-body.align-items-center.text-center a {
  color: black;
}

section.breadcrumbs {
    background-image: url(/assets/design/images/top-bg.jpg);
    background-position: center center;
    background-size: cover;
    padding: 160px 0px 45px;
    position: relative;
}
section.breadcrumbs:after {
    content: '';
    position: absolute;
    z-index: 0;
    background: #00000063;
    width: 100%;
    height: 100%;
    top: 0px;
}
section.breadcrumbs > * {
    position: relative;
    z-index: 3;
}
ul.B_crumbBox {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
ul.B_crumbBox a {
    color: #fff;
}
ul.B_crumbBox li {
    padding: 5px 10px 5px 0px;
}
ul.B_crumbBox li:last-child:after {
    display:none;
}
ul.B_crumbBox li:after {
    content: '>';
    color: #fff;
    padding-left: 10px;
    vertical-align: middle;
}
h1.head-title {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
}
.menu-header ul{margin-bottom:0px;}
.product-main-section__points {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.product-main-section__points .product-main-section__points-item {
    text-align: center;
}
.btn-warning{
    background:var(--main-color) !important;
    color:#fff !important;
}
.btn-warning:hover{
    background:#FFBC47 !important;
    color:#fff !important;
}
section.product-main-section {
    background: #f8fdff;
}
.product-main-section-img {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 15px 25px #0000000a;
    overflow:hidden;
}
.product-main-section-img .swiper-button-next, .product-main-section-img .swiper-button-prev{
    color:var(--main-color);
}
.card a{color:black;}
.card a:hover{text-decoration:none;}
a:hover{text-decoration:none;}
button.btn-quote {
    padding: 0.6rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 7px;
}

@media (max-width:768px){
.card-image img {
    width: 100%;
}
section.products-list .card, .related-items .card {
    margin-bottom: 25px;
    height: auto !important;
}
h1.product-main-section__title {
    margin-top: 25px;
}
section.description .card {
    margin-bottom: 25px;
}
	
}