@-webkit-keyframes spin {
  0% {-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);-ms-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes spin {
  0% {-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);-ms-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes show {
  from {opacity: 0;}
  to {opacity: 1;}
}
@-webkit-keyframes pulse {
  0% {-webkit-box-shadow: 0 0 0 0 rgba(62, 59, 59, 0.7)}
  70% {-webkit-box-shadow: 0 0 0 30px rgba(204, 169, 44, 0)}
  100% {-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)}
}
@keyframes pulse {
  0% {-moz-box-shadow: 0 0 0 0 rgba(62, 59, 59, 0.7);box-shadow: 0 0 0 0 rgba(62, 59, 59, 0.7)}
  70% {-moz-box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);box-shadow: 0 0 0 30px rgba(204, 169, 44, 0)}
  100% {-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)}
}

* {
  -webkit-appearance: none;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-smoothing: antialiased;
  margin: 0;
  outline: none;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: 0;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #ffffff;
  min-width: 320px;
  scroll-behavior: smooth;
  color: #000000;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: normal;
	font-weight: 400;
}
button {
  border: none;
  background: transparent;
}
li {
  list-style-type: none;
}
a {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: inherit;
}
img {
  border: 0;
  cursor: inherit;
}
font {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
input,
textarea {
  outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
::-moz-selection {
  background: #dddddd;
}
::selection {
  background: #dddddd;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ffd749;
  border-radius: 10px;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
#preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: #FFFFFF;
   z-index: 999999;
   transition: opacity 0.5s ease-out;
   opacity: 1;
   visibility: visible;
}
#preloader.opacity-0 {
   opacity: 0;
}
#preloader.hide {
  visibility: hidden;
}
#loader {
   display: block;
   position: relative;
   left: 50%;
   top: 50%;
   width: 150px;
   height: 150px;
   margin: -75px 0 0 -75px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: #F7CB6A;
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
}
#loader:before {
   content: "";
   position: absolute;
   top: 5px;
   left: 5px;
   right: 5px;
   bottom: 5px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: #FFBE2E;
   -webkit-animation: spin 3s linear infinite;
   animation: spin 3s linear infinite;
}
#loader:after {
   content: "";
   position: absolute;
   top: 15px;
   left: 15px;
   right: 15px;
   bottom: 15px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: #CF920C;
   -webkit-animation: spin 1.5s linear infinite;
   animation: spin 1.5s linear infinite;
}
.new-header {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    line-height: normal;
    font-variant-numeric: lining-nums;
    position: fixed;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 22px;
    width: 100%;
    z-index: 100;
    border-radius: 20px;
    background-color: #ffd749;
    -webkit-transition: .3s;
    transition: .3s;
    max-width: 1300px;
}
.header-sticky {
    top: 0;
}
.new-header .container-header {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}
.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 13px 20px;
    position: relative;
}
.header-wrap__logo {
    display: block;
    max-width: 121px;
    margin-right: 15px;
}
.header-wrap__logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-wrap__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 16px;
}
.header-wrap__flex {
    display: none;
}
.header-wrap__nav--menu .menu {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-wrap__nav--menu .menu .menu-item {
    margin-right: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-wrap__nav--menu .menu .menu-item a,
.header-wrap__nav--menu .menu .menu-item p {
    font-weight: 500;
    color: #000;
    padding: 12px 9px;
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 14px;
    cursor: pointer;
}
.header-wrap__nav--menu .menu .menu-item a:hover,
.header-wrap__nav--menu .menu .menu-item p:hover {
    background-color: #fff;
}
.header-wrap__nav--menu .menu .menu-item.mobile-item-business a,
.header-black .header-wrap__nav--menu .menu .menu-item.desktop-individuals-btn a {
    font-weight: 700;
}
.header-wrap__nav--menu .menu .menu-item-has-children a,
.header-wrap__nav--menu .menu .menu-item-has-children p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-wrap__nav--menu .menu .menu-item-has-children a:not(.internal-item)::after,
.header-wrap__nav--menu .menu .menu-item-has-children p:not(.internal-item)::after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url('/wp-content/themes/global_post/images/header/dropdown.svg') no-repeat center center / contain;
    margin-left: 5px;
    -webkit-transition: .3s;
    transition: .3s;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu {
    position: absolute;
    left: 0px;
    top: 75px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(240, 240, 240);
    border-image: initial;
    padding: 30px 23px;
    transition: 0.3s;
}
.header-wrap__nav--menu .menu .open .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item {
    width: 24%;
    margin: 0px;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: rgb(117, 117, 117);
    padding: 0px;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu .sub-menu {
    display: block;
    position: static;
    width: 100%;
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
    border-radius: 0px;
    background: 0px 0px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu .sub-menu a {
    width: fit-content;
    margin: 0px 0px 10px;
    background-color: rgb(255, 255, 255);
    margin-left: -10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu .sub-menu a:hover {
    background-color: #ffd749;
}
.header-wrap__nav .sub-menu__list {
    width: 24%;
    display: none;
}
.header-wrap__nav .sub-menu__gallery {
    width: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu__gallery,
.header-wrap__nav--menu .menu .menu-item .sub-menu__list {
    display: block;
}
.header-wrap__nav--menu .menu .menu-item .sub-menu__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-wrap__nav .sub-menu__list .item.internal-item {
    border: solid 1px #f0f0f0;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3px 7px 15px 20px;
    margin-bottom: 16px;
}
.header-wrap__nav .sub-menu__list .item-content {
    width: 100%;
    max-width: 135px;
    margin-right: 15px;
}
.header-wrap__nav .sub-menu__list .item-image {
    max-width: 108px;
}
.header-wrap__nav .sub-menu__list .item-content__title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 9px;
}
.header-wrap__nav .sub-menu__list .item-content__link {
    -webkit-transition: .3s;
    transition: .3s;
    display: block;
}
.header-wrap__nav .sub-menu__gallery--title {
    font-size: 12px;
    line-height: 14px;
    margin-right: 30px;
    font-weight: 500;
    color: #757575;
}
.header-wrap__nav .sub-menu__gallery a.item {
    max-width: 72px;
    margin-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    transition: .3s;
}
.header-wrap__nav .sub-menu__gallery a.item:hover {
    transform: scale(1.06);
}
.header-wrap__nav .sub-menu__gallery a.item img {
    width: 100%;
}
.new-header .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: solid 1px #da2c38;
    padding: 9px 19px;
    background: 0 0;
    background-color: #da2c38;
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 25px;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    font-family: Raleway, sans-serif;
}
.new-header .btn:hover {
    background-color: inherit;
    color: #000;
}
.new-header .btn-primary {
    background-color: inherit;
    color: #000;
}
.new-header .btn-primary:hover {
    background-color: #da2c38;
    color: #fff;
}
.header-wrap__nav .btn {
    margin-right: 10px;
}
.header-wrap__nav--search {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border: solid 1px #da2c38;
    -webkit-transition: .3s;
    transition: .3s;
}
.header-wrap__nav--search:hover {
    background-color: #da2c38;
}
.header-wrap__nav--search svg * {
    -webkit-transition: .3s;
    transition: .3s;
}
.header-wrap__nav--search:hover svg * {
    fill: #fff;
}
.header-wrap__nav--phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 28px;
    margin-left: 47px;
}
.header-wrap__nav--phone svg {
    margin-right: 10px;
}
.header-wrap__nav--phone a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
}
.header-wrap__nav--phone a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: .3s;
    transition: .3s;
}
.header-wrap__nav--phone a:hover::after {
    width: 100%;
}
.header-wrap__nav--language {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
}
.header-wrap__nav--language.mobile-language {
  display: none;
}
.wpm-switcher-dropdown, .wpm-switcher-dropdown .wpm-language-dropdown, .wpm-switcher-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.wpm-switcher-dropdown {
    position: relative;
}
.header-wrap__nav--language ul {
    background-color: #fff;
    border-radius: 30px;
}
.wpm-switcher-dropdown>li {
    position: relative;
}
.header-wrap__nav--language li {
    padding: 5px 10px;
}
.header-wrap__nav--language li {
    transition: .3s;
    border-radius: 2px;
}
.header-wrap__nav--language .wpm-item-language-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-wrap__nav--language li span {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    color: #000;
    text-transform: lowercase;
}
.wpm-switcher-dropdown .wpm-language-dropdown {
    display: none;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
}
.header-wrap__nav--language .wpm-item-language-main ul {
    width: 100%;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.header-wrap__nav--language:hover ul {
    border-radius: 10px 10px 0 0;
}
.header-wrap__nav--language ul.wpm-language-dropdown {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.wpm-switcher-dropdown a, .wpm-switcher-list li a, .wpm-switcher-list li>span {
    color: #333;
}
.header-wrap__nav--language li a {
    display: block;
    width: 100%;
    height: 100%;
}
.header-wrap__nav--language .wpm-item-language-main::after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url("/wp-content/themes/global_post/images/header/lang.svg") no-repeat center center / contain;
    margin-left: 5px;
}
.wpm-switcher-dropdown .wpm-item-language-main>span:hover {
    cursor: pointer;
}
.header-wrap__nav--language .wpm-language-dropdown li:hover {
    background-color: rgb(255, 241, 170);
}
.new-header .desktop-search {
    position: absolute;
    left: 0;
    top: 75px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: solid 1px #f0f0f0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
.new-header .desktop-search .wpfts_search_widget form {
    width: 100%;
    padding: 20px 40px;
}
.new-header .desktop-search .wpfts_search_widget form input[type="search"]::-webkit-search-decoration,
.new-header .desktop-search .wpfts_search_widget form input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
    width: 16px;
    height: 16px;
    background: url('/wp-content/themes/global_post/images/close.png') no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: .3s;
}
.new-header .desktop-search .wpfts_search_widget form input[type="search"]::-webkit-search-decoration:hover,
.new-header .desktop-search .wpfts_search_widget form input[type="search"]::-webkit-search-cancel-button:hover {
    transform: scale(1.05);
}
.new-header .desktop-search.header-wrap__search--active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.new-header .desktop-search .wpfts_search_widget input[type="submit"] {
    display: none;
}
.new-header .desktop-search .wpfts_search_widget input {
    padding: 15px 20px;
    border: solid 1px #d9d9d9;
    background: 0 0;
    background-color: #fff;
    border-radius: 8px;
    color: #000;
    font-family: "Inter", sans-serif;
    display: block;
    width: 100%;
    -webkit-transition: .3s;
    transition: .3s;
}
.new-header .mobile-search {
    display: none;
}
.custom-dropdown-search-result {
    border-radius: 0px 0px 8px 8px !important;
    padding: 6px !important;
    background-color: #fcfcfc !important;
}
.custom-dropdown-search-result li {
    padding: 6px !important;
    transition: .3s;
    border-radius: 4px;
}
.custom-dropdown-search-result li a {
    font-family: "Raleway", sans-serif !important;
    font-size: 14px !important;
    cursor: pointer !important;
    border: none !important;
    background: none !important;
}
.custom-dropdown-search-result li:hover {
    background-color: #fee27c;
}
.breadcrumb_wrap_new {
    margin-top: 110px;
}
.container-1330 {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: auto;
    font-family: "Inter", sans-serif;
    padding-bottom: 29px;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs .aioseo-breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    color: #000000;
    border-radius: 0;
    text-transform: none;
    font-size: 10px;
    box-shadow: none;
    padding: 0;
    letter-spacing: normal;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs .aioseo-breadcrumb:first-child a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    width: 18px;
    height: 18px;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs .aioseo-breadcrumb-separator {
    display: inline-block;
    margin: 5px;
    font-size: 20px;
    line-height: normal;
    color: #999999;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs .aioseo-breadcrumb:not(:first-child) {
    background-color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
}
.breadcrumb_wrap_new .aioseo-breadcrumbs .aioseo-breadcrumb:not(:last-child):hover {
    background: transparent;
}
.header-black {
  background-color: #000000;
}
.header-black .header-wrap__nav--menu .menu .menu-item a,
.header-black .header-wrap__nav--menu .menu .menu-item p {
  color: #FFFFFF;
}
.header-black .header-wrap__nav--menu .menu .menu-item a:hover,
.header-black .header-wrap__nav--menu .menu .menu-item p:hover {
  color: #000000;
}
.new-header.header-black .btn-primary {
  color: #fff;
  border-color: #fff;
}
.header-black .header-wrap__nav--search {
  opacity: 0;
  visibility: hidden;
}
.header-black .header-wrap__nav--phone a {
  color: #FFFFFF;
}
.header-black .header-wrap__nav--phone svg * {
  fill: #FFFFFF;
}
.new-header.header-black .btn:hover {
  color: #FFFFFF;
}
.new-header.header-black .btn-primary:hover {
  color: #000000;
  background-color: #FFFFFF;
}
.header-black .header-wrap__nav--phone a:hover::after {
  background-color: #FFFFFF;
}
.ecommerce-submenu {
  margin-top: 110px;
}
.ecommerce-list,
.ecommerce-list__slider {
  position: relative;
}
.ecommerce-list__nav {
  position: relative;
  padding-bottom: 10px;
}
.ecommerce-list__menu {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 30px;
  background-color: #fff;
  border: solid 1px #f0f0f0;
  width: 100%;
  padding: 30px 23px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  overflow-y: auto;
  z-index: 10;
  font-family: "Raleway", sans-serif;
}
.ecommerce-list__menu--active {
  opacity: 1;
  visibility: visible;
}
.ecommerce-list__slider::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 90px;
  height: 100%;
  background: -webkit-gradient(linear,left top,right top,from(rgba(245,245,243,0)),color-stop(50%,#f5f5f3));
  background: linear-gradient(90deg,rgba(245,245,243,0) 0,#f5f5f3 50%);
  position: absolute;
  right: 0;
  top: 0;
}
.ecommerce-list__slider .item {
  font-family: "Raleway", sans-serif;
  color: #000000;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  border-radius: 20px;
  background-color: #d5d5d5;
  margin-right: 5px;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.ecommerce-list__slider .active {
  background-color: #000000;
  color: #ffffff;
}
.ecommerce-submenu .slick-arrow {
  font-size: 0;
  border: solid 1px #f0f0f0;
  background: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}
.ecommerce-submenu .slick-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ecommerce-submenu .ecommerce-list__nav .slick-arrow {
  position: absolute;
  left: 0;
  top: -25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  background-color: #000;
  border-color: #000;
}
.ecommerce-submenu .ecommerce-list__nav .slick-prev {
  opacity: 0;
  visibility: hidden;
}
.ecommerce-submenu .ecommerce-list__nav .slick-next {
  left: auto;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.ecommerce-submenu .ecommerce-list__nav .slick-arrow svg {
  max-width: 12px;
  max-height: 12px;
  margin-left: -2px;
}
.ecommerce-submenu .slick-arrow svg * {
  -webkit-transition: .3s;
  transition: .3s;
}
.ecommerce-submenu .ecommerce-list__nav .slick-arrow svg * {
  fill: #fff;
}
.ecommerce-list__menu--row {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ecommerce-list__menu--row-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ecommerce-list__menu--row ul {
  width: 20%;
  list-style-type: none;
}
.ecommerce-list__menu--row ul li {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #757575;
  margin-bottom: 10px;
}
.ecommerce-list__menu--row ul li:first-child {
  padding: 10px;
}
.ecommerce-list__menu--row ul li a {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
}
.ecommerce-list__menu--row ul li a:hover {
  background-color: rgb(255, 215, 73);
}
.ecommerce-list__menu--row-more {
  width: 25%;
}
.ecommerce-list__menu--row-more .item {
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: solid 1px #f0f0f0;
  margin-bottom: 10px;
  padding: 16px;
  color: #000;
}
.ecommerce-list__menu--row-more .item:last-child {
  margin-bottom: 0;
}
.ecommerce-list__menu--row-more .item-content {
  width: 100%;
  max-width: 135px;
  margin-right: 22px;
}
.ecommerce-list__menu--row-more .item-image {
  max-width: 94px;
}
.ecommerce-list__menu--row-more .item-image img {
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ecommerce-list__menu--row-more .item-content__title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 9px;
}
.header-wrap__nav--menu .menu-ecommerce {
  display: none;
}
.new-header .btn.btn-business {
  display: none !important;
}
.popup_wrap {
	display: none;
}
.popup_wrap .popup_content {
  background-color: #000
}
.fancybox-content {
	padding: 40px 20px !important;
}
.popup_content {
  border-radius: 40px;
  box-shadow: 0px 2px 20px rgba(255,190,46,0.3);
  max-width: 820px !important;
}
.popup_content .popup_form {
  margin: 0;
  width: 100%;
  max-width: 420px;
}
.popup_content .popup_form .form_title {
  text-align: center;
}
.popup_content .popup_form .form_title h4 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 15px;
}
.popup_content .popup_form .form_title h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
.popup_content .popup_form .wpcf7-form {
  margin-top: 30px;
}
.popup_content .popup_form .wpcf7-form p {
  margin-bottom: 15px;
}
.popup_content .popup_form .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}
.popup_content .popup_form .wpcf7-form p label br {
  display: none;
}
.popup_content .popup_form .wpcf7-form p label .wpcf7-form-control-wrap {
  display: block;
}
.popup_content .popup_form .wpcf7-form p label .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
  height: 75px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #FFBE2E;
  border-radius: 7px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
}
.popup_content .popup_form .wpcf7-form p label .wpcf7-form-control-wrap .wpcf7-textarea {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.2;
}
.popup_content .popup_form .wpcf7-form p .ajax-loader {
  display: none;
}
.popup_content .popup_form .wpcf7-form p .wpcf7-submit {
  cursor: pointer;
  outline: none;
  margin: 20px auto 0 auto;
  width: 100%;
  height: 75px;
  box-shadow: 0px 3px 20px rgba(255,190,46,0.6);
  border-radius: 42.5px;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
}
.popup_content .popup_form .wpcf7-form p .wpcf7-submit:hover {
  background-color: #000;
  box-shadow: 0px 3px 20px rgba(0,0,0,0.6);
}
.popup_content .popup_form .wpcf7-form .acceptance {
  font-size: 14px;
  padding-left: 30px;
}
.popup_content .popup_form .wpcf7-form .acceptance .wpcf7-list-item {
  margin: 0 10px 0 0;
}
.popup_content .popup_form .wpcf7-form .acceptance .wpcf7-list-item label input {
  display: none;
}
.popup_content .popup_form .wpcf7-form .acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  position: relative;
}
.popup_content .popup_form .wpcf7-form .acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  top: 0;
  left: -30px;
  bottom: 0;
  margin: auto;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #FFBE2E;
  border-radius: 50%;
}
.popup_content .popup_form .wpcf7-form .acceptance .wpcf7-list-item label input:checked~.wpcf7-list-item-label:before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "\2714";
  top: 0px;
  left: -28px;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  line-height: 0.8;
}
.popup_content .popup_form .wpcf7-form .acceptance .politica {
  text-decoration: underline;
}
.popup_content .popup_title {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 25px;
}
.popup_content .track_the_parcel_block {
  margin: 30px 0;
}
.popup_content .track_the_parcel_block .invoice_number {
  width: 320px;
  height: 50px;
  border: 1px solid #FFBE2E;
  border-radius: 7px;
  margin-right: 10px;
  padding: 0 10px;
}
.popup_content .track_the_parcel_block .submit {
  box-shadow: 0px 3px 20px rgba(255,190,46,0.6);
  border-radius: 40px;
  color: #3E3B3B;
  line-height: 1;
  font-size: 25px;
  font-weight: 700;
  width: 260px;
  height: 76px;
  cursor: pointer;
}
.popup_content .info_about_parcel {
  margin-bottom: 30px;
}
.popup_content .info_about_parcel p {
  margin-bottom: 10px;
}
.popup_content .info_about_parcel p strong {
  width: 250px;
  display: inline-block;
}
.popup_content .track_the_parcel_text a {
  font-weight: 700;
  text-decoration: underline;
}
.error_page_content {
  background: linear-gradient(180deg,#FFEFCD 0%,rgba(242,190,74,0.2) 100%);
  padding: 20px 0;
  height: 100vh;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
}
.error_page_content h1 {
  font-weight: 900;
  line-height: 1;
  font-size: 80px;
  margin-bottom: 20px;
}
.error_page_content p {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 30px;
}
.error_page_content a {
  margin-top: 60px;
  background: #FFBE2E;
  border-radius: 38px;
  line-height: 1;
  width: 280px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error_page_content a:hover {
  background-color: #3E3B3B;
}
.error_page_content .error_page_image {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  display: block;
}
.error404 .footer, .error404 .header {
  display: none;
}
.block_pading {
	padding: 80px 0;
}
.container {
	width: 1430px;
	margin: 0 auto;
}

@media (max-width: 1600px) {
  .block_pading {
		padding-top: 50px;
		padding-bottom: 50px;
	}
  .container {
		padding: 0 100px;
		width: 100%;
	}
}

@media (max-width: 1300px) {
    .header-wrap__nav .btn {
        margin-right: 5px;
        padding: 9px;
    }
    .header-wrap__nav--menu .menu .menu-item {
        margin-right: 15px;
    }
    .header-wrap__nav--menu .menu .menu-item a,
    .header-wrap__nav--menu .menu .menu-item p {
        padding: 5px;
    }
    .header-wrap__nav--phone {
        margin: 0 10px;
    }
}

@media (max-width: 1200px) {
  .block_pading {
		padding-top: 30px;
		padding-bottom: 30px;
	}
  .container {
		padding: 0 50px;
	}
}

@media (max-width: 1100px) {
  .container-1330 {
    padding: 0 5px;
  }
  html {
    position: relative;
  }
  html::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 90;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  html.fix {
    overflow: hidden;
  }
  html.fix::after {
    opacity: 1;
    visibility: visible;
  }
  .new-header .container-header {
    padding: 0 5px;
  }
  .new-header .desktop-search {
    display: none;
  }
  .header-wrap__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-wrap__flex .header-wrap__nav--phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 33px;
  }
  .header-wrap__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 23px;
    height: 16px;
    position: relative;
  }
  .header-wrap__icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: url("/wp-content/themes/global_post/images/header/menu.svg") no-repeat center center/100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-wrap__icon--active {
    -webkit-transform: translateY(0.4em);
    -ms-transform: translateY(0.4em);
        transform: translateY(0.4em);
  }
  .header-wrap__icon--active span:nth-child(1) {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
        transform: rotate(40deg);
  }
  .header-wrap__icon--active span:nth-child(2) {
    position: absolute;
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
        transform: rotate(-40deg);
  }
  .header-wrap__icon--active span:nth-child(3) {
    display: none;
  }
  .header-wrap__nav--phone a {
    font-size: 16px;
  }
  .header-wrap__nav {
    position: fixed;
    left: 5px;
    top: 80px;
    width: calc(100% - 10px);
    max-height: calc(100vh - 80px);
    background-color: #fff;
    border-radius: 10px;
    border: solid 1px #F0F0F0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 12px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow-y: auto;
  }
  .header-wrap__nav--active {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap__nav--menu {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 5px;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-wrap__nav .btn {
    padding: 9px 19px;
  }
  .header-wrap__nav--phone,
  .header-wrap__nav--search,
  .header-wrap__nav--menu .menu .menu-item .sub-menu__gallery,
  .header-wrap__nav--menu .menu .menu-item .sub-menu__list {
    display: none;
  }
  .header-wrap__nav--language li {
    background-color: #F0F0F0;
  }
  .new-header .wpm-language-dropdown.dropdown,
  .header-wrap__nav--menu .menu {
    display: block !important;
  }
  .header-wrap__nav--menu .menu .menu-item {
    margin: 0 0 20px;
    border-bottom: dashed 1px #D9D9D9;
    padding-bottom: 20px;
    width: 100%;
  }
  .header-wrap__nav--menu .menu .menu-open {
    border: none;
    margin-bottom: -20px;
  }
  .header-wrap__nav--menu .menu .menu-item a,
  .header-wrap__nav--menu .menu .menu-item p {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    line-height: 16px;
  }
  .header-wrap__nav--menu .menu .menu-item .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
    border: none;
    margin-top: 20px;
    display: none;
    border-radius: 0;
    border-top: dashed 1px #d9d9d9;
    padding-top: 20px;
    pointer-events: auto;
    margin-left: 20px;
  }
  .header-wrap__nav--menu .menu .menu-open .sub-menu {
    display: block;
  }
  .header-wrap__nav--menu .menu .menu-item-has-children a::after,
  .header-wrap__nav--menu .menu .menu-item-has-children p::after {
    width: 16px !important;
    height: 16px !important;
    -webkit-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
    transform: rotate(-90deg) !important;
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url("/wp-content/themes/global_post/images/header/dropdown.svg") no-repeat center center / contain;
    margin-left: 5px;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header-wrap__nav--menu .menu .menu-open a::after,
  .header-wrap__nav--menu .menu .menu-open p::after {
    -webkit-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    transform: rotate(0) !important;
  }
  .header-wrap__nav--menu .menu .menu-item-has-children .sub-menu .sub-menu a::after,
  .header-wrap__nav--menu .menu .menu-item-has-children .sub-menu .sub-menu p::after {
    display: none !important;
  }
  .header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item {
    width: 100%;
    margin: 0 0 20px;
  }
  .header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item a,
  .header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #000;
  }
  .header-wrap__nav--menu .menu .menu-item .sub-menu .menu-item .sub-menu {
    margin-top: 22px;
    padding: 0 20px;
    display: none;
  }
  .header-wrap__nav--menu .menu .menu-open__second .sub-menu {
    display: block !important;
  }
  .new-header .mobile-search {
    display: block;
    width: 100%;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    margin: 20px 0 40px;
  }
  .new-header .mobile-search .wpfts_search_widget form {
    width: 100%;
  }
  .new-header .mobile-search .wpfts_search_widget form input[type="search"]::-webkit-search-decoration,
  .new-header .mobile-search .wpfts_search_widget form input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
    width: 16px;
    height: 16px;
    background: url('/wp-content/themes/global_post/images/close.png') no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: .3s;
  }
  .new-header .mobile-search .wpfts_search_widget form input[type="search"]::-webkit-search-decoration:hover,
  .new-header .mobile-search .wpfts_search_widget form input[type="search"]::-webkit-search-cancel-button:hover {
    transform: scale(1.05);
  }
  .new-header .mobile-search .wpfts_search_widget input[type="submit"] {
    display: none;
  }
  .new-header .mobile-search .wpfts_search_widget input {
    padding: 15px 20px;
    border: solid 1px #d9d9d9;
    background: 0 0;
    background-color: #fff;
    border-radius: 8px;
    color: #000;
    font-family: "Inter", sans-serif;
    display: block;
    width: 100%;
    -webkit-transition: .3s;
    transition: .3s;
  }
  #ui-id-1.custom-dropdown-search-result {
    position: static !important;
  }
  .header-wrap__nav .sub-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
  }
  .header-wrap__nav .sub-menu__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    flex-wrap: wrap;
    padding: 0 6px;
  }
  .header-wrap__nav .sub-menu__gallery--title {
    display: none;
  }
  .header-wrap__nav .sub-menu__gallery a.item {
    margin-right: 50px;
    margin-bottom: 16px;
  }
  .breadcrumb_wrap_new {
    margin-top: 77px;
  }
  .breadcrumb_wrap_new .aioseo-breadcrumbs {
    padding-bottom: 20px;
  }
  .ecommerce-list {
    display: none;
  }
  .header-black .header-wrap__nav .btn-primary {
    color: #000;
    border-color: #DA2C38;
  }
  .header-black .menu#menu-header-menu {
    display: none !important;
  }
  .header-black .header-wrap__nav--menu .menu-ecommerce {
    display: block;
  }
  .header-black .header-wrap__nav--menu .menu .menu-item a, .header-black .header-wrap__nav--menu .menu .menu-item p {
    color: #000000;
    padding: 5px 5px 5px 15px;
  }
  .header-black .menu-ecommerce .sub-menu {
    margin-bottom: 20px;
  }
  .header-black .menu-ecommerce .sub-menu a::after,
  .header-black .menu-ecommerce .sub-menu p::after {
    display: none !important;
  }
  .header-black .menu-ecommerce .sub-menu ul li:first-child {
    color: #000000;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .header-black .menu-ecommerce .sub-menu ul li:not(:first-child) {
    margin-bottom: 10px;
  }
  .header-black .menu-ecommerce .sub-menu ul li:last-child {
    margin-bottom: 0;
  }
  .new-header .btn.btn-business {
    display: flex !important;
    background-color: #000000;
    border-color: #000000;
  }
  .new-header .btn.btn-business:hover {
    border-color: #da2c38;
    background-color: #ffffff;
    color: #000000;
  }
  .header-wrap__nav--language.mobile-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  .header-wrap__nav--language.mobile-language aside {
    max-width: 60px;
  }
  .header-wrap__nav--language.desktop-language, .header-wrap__nav--menu .menu .menu-item.mobile-item-business {
    display: none;
  }
  .popup_content {
    border-radius: 20px;
 }
  .popup_content .popup_title {
    font-size: 24px;
    margin-bottom: 20px;
 }
  .popup_content .track_the_parcel_block {
    margin: 30px 0;
 }
  .popup_content .track_the_parcel_block .invoice_number {
    width: 100%;
    max-width: 400px;
    height: 44px;
 }
  .popup_content .track_the_parcel_block .submit {
    border-radius: 20px;
    font-size: 18px;
    width: 100%;
    max-width: 400px;
    height: 44px;
    margin-top: 20px;
 }
  .popup_content .info_about_parcel {
    margin-bottom: 30px;
 }
  .popup_content .info_about_parcel p {
    margin-bottom: 10px;
 }
  .popup_content .info_about_parcel p strong {
    width: auto;
    display: block;
 }
  .popup_content .track_the_parcel_text a {
    font-weight: 700;
    text-decoration: underline;
 } 
}

@media (max-width: 820px) {
  .popup_content .popup_form .form_title {
    text-align: center;
 }
  .popup_content .popup_form .form_title h4 {
    font-weight: 600;
    font-size: 30px;
 }
  .popup_content .popup_form .form_title h5 {
    font-weight: 600;
    font-size: 18px;
 }
  .popup_content .popup_form .form_title h6 {
    font-weight: 400;
    font-size: 14px;
 }
  .popup_content .popup_form .wpcf7-form {
    margin-top: 25px;
 }
  .popup_content .popup_form .wpcf7-form p {
    margin-bottom: 15px;
 }
  .popup_content .popup_form .wpcf7-form p label .wpcf7-form-control-wrap .wpcf7-form-control {
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
 }
  .popup_content .popup_form .wpcf7-form p label .wpcf7-form-control-wrap .wpcf7-textarea {
    padding: 10px 15px;
    font-size: 16px;
 }
  .popup_content .popup_form .wpcf7-form p .wpcf7-submit {
    height: 50px;
    font-weight: 600;
    font-size: 18px;
 } 
 .block_pading {
  padding-top: 20px;
  padding-bottom: 20px;
  }
  .error_page_content h1 {
    font-size: 30px;
  }
  .error_page_content p {
    font-size: 24px;
  }
  .error_page_content .error_page_image {
    max-width: 600px;
  }
  .error_page_content a {
    font-size: 18px;
  }
  .container {
		padding: 0 10px;
	}
}

@media (max-width: 550px) {
    .new-header {
        top: 10px;
    }
    .header-wrap {
        padding: 16px;
        border-radius: 10px;
    }
    .header-wrap__logo {
        max-width: 85px;
        margin-right: 3px;
    }
    .header-wrap__nav--phone a {
        font-size: 14px;
    }
    .header-wrap__logo img {
        max-width: 100%;
    }
    .header-wrap__nav .sub-menu__gallery a.item {
        margin-right: 20px;
    }
    .breadcrumb_wrap_new {
        margin-top: 60px;
    }
}

@media (max-width: 420px) {
  .new-header .btn.btn-business {
    margin-top: 10px;
  }
}