/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #7D7D7D;
    padding-top: 60px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {
    padding: 50px 0;
}

.hero-space {
    padding: 120px 0;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    font-optical-sizing: auto;
    color: #000000;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 54px;
    line-height: 64px;
}

h2 {
    font-size: 32px;
    line-height: 40px;
}

h3 {
    font-size: 18px;
    line-height: 24px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 18px;
    line-height: 24px;
}

strong {
    font-weight: 700;
}

a {
    color: #000000;
    text-decoration: none;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #000000;
    outline: 0;
    text-decoration: none;
}

p {
    color: #7D7D7D;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 18px;
}

.form-group {
    margin: 0 0 20px 0;
}

.heading {
    color: #000000;
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 10px 0;
}

.headings {
    text-align: center;
    margin: 0 0 20px 0;
}

.btn {
    font-size: 14px;
    line-height: 34px;
    font-weight: bold;
    height: 34px;
    padding: 0 20px;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-primary {
    color: #fff;
    background-color: #ED1C24;
    border-color: transparent;
    box-shadow: 0 14px 38px -8px rgba(237, 28, 36, 0.47);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #C00000;
    border-color: transparent;
    outline: none;
}

.btn-outline-primary {
    color: #ED1C24;
    background-color: transparent;
    border: 1px solid #ED1C24;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: #ED1C24;
    background-color: transparent;
    border: 1px solid #ED1C24;
    outline: none;
}

.btn-secondary {
    color: #fff;
    background-color: #FE575B;
    border-color: transparent;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #F5474B;
    border-color: transparent;
    outline: none;
    box-shadow: none !important;
}

header {
    padding: 10px 0;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 105;
    transition: all .2s;
    background-color: #fff;
    box-shadow: 0 4px 60px 0 rgba(34, 32, 80, .08);
}

header .logo img {
    height: 40px;
}

header nav {
    text-align: right;
}

header nav ul {
    display: inline-block;
}

header nav ul li {
    position: relative;
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    text-transform: uppercase;
    display: block;
}

header nav ul li a:hover {
    color: #ED1C24;
}

.langs {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    cursor: pointer;
}

.langs .selected-lang {
    position: relative;
    top: -2px;
    padding: 0 17px 0 0;
}

.langs .selected-lang:after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    background: url("../imgs/icons/arrow-down.svg") center center no-repeat;
    width: 10px;
    height: 10px;
}

.langs img {
    height: 15px;
    border-radius: 4px;
    box-shadow: 0px 2px 10px 0px #880B0F66;
}

.langs ul:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    height: 30px;
    width: 100%;
}

.langs ul {
    background-color: #fff;
    text-align: left;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    border-radius: 6px;
    width: auto;

    position: absolute;
    left: 0;
    top: 30px;
    z-index: 2;

    box-shadow: 0 20px 66px -20px #22205029;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.langs:hover ul {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.langs ul li {
    display: block;
    margin: 5px 0;
}

.langs ul li:first-of-type,
.langs ul li:last-of-type {
    margin-top: 0;
}

header nav ul li a.link-mega-menu span {
    background: url("../imgs/icons/menu-arrow.svg") center center no-repeat;
    background-size: 10px;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 3;

    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.mega-menu:before {
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    height: 32px;
    width: 170px;
}

.mega-menu {
    background-color: #fff;
    text-align: left;
    padding: 25px 20px;
    opacity: 0;
    visibility: hidden;
    border-radius: 6px;
    width: 600px;

    position: absolute;
    top: 30px;
    left: -40px;
    z-index: 2;

    box-shadow: 0 20px 66px -20px #22205029;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

header nav ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.mega-product svg {
    height: 60px;
}

.mega-product svg path {

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.mega-product:hover svg path {
    fill: #ED1C24;
}

.mega-product:hover svg path.other-color {
    fill: rgba(237, 28, 36, 0.16) !important;
}

.mega-product {
    display: block;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 6px;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.mega-product:hover {
    border-color: #ED1C24;
}

.mega-product .lab {
    color: #000000;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0 0 0;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.mega-product:hover .lab {
    color: #ED1C24;
}


.btn-contacts {
    float: right;
    padding: 0 40px;
}


.container-fluid {
    max-width: 1300px;
}

.container {
    max-width: 1140px;
}


.intro .carousel-caption {
    text-align: left;
    width: 40%;
    top: 50%;
    bottom: inherit;
    transform: translate(0, -50%);
}

.intro .carousel-caption h1 {
    color: #fff;
    margin: 0 0 15px 0;
}

.intro .carousel-caption ul li {
    color: #fff;
    margin: 10px 0;
}

.intro .carousel-caption ul li img {
    margin-right: 5px;
    height: 22px;
    position: relative;
    top: -2px;
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(0) grayscale(100);
}


.start {
    background-color: #F7F7F7;
    position: relative;
}

.start:before {
    content: "";
    background: url("../imgs/start-fragment.svg") top left no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 26%;
    z-index: 1;
}

.start:after {
    content: "";
    background: url("../imgs/start-bgr.png") center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.start .container {
    position: relative;
    z-index: 3;
}

.start h3 {
    margin: 10px 0 15px 0;
    width: 80%;
}

.assortment {
    position: relative;
    overflow: hidden;
}

.assortment .headings {
    margin: 0 0 80px 0;
}

.assortment .assortment-item {
    padding: 25px 0;
}

.assortment .type-text .lab {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.assortment-item ul {
    padding: 0 0 0 5px;
}

.assortment-item ul li {
    margin: 4px 0;
}

.assortment-item .type-img {
    position: relative;
    display: block;
}

.assortment-item .type-img img {

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.assortment-item .type-img:hover img {
    transform: scale(1.1);
}

.assortment-item.assortment-type-01 .type-img:after {
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #CE6D43;
    display: block;
    position: absolute;
    top: 9%;
    right: 20%;

    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.assortment-item.assortment-type-02 .type-img:after {
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #F1B5CB;
    display: block;
    position: absolute;
    top: 16%;
    right: 40%;

    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.assortment-item.assortment-type-03 .type-img:after {
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #B16FD2;
    display: block;
    position: absolute;
    bottom: 14%;
    left: 46%;

    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.assortment-item .type-text {
    padding-top: 60px;
}

.assortment-item.assortment-type-02 .type-text,
.assortment-item.assortment-type-04 .type-text {
    display: table;
    margin: 0 0 0 auto;
}

.assortment-item.assortment-type-04 .type-img:after {
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #FFAA4C;
    display: block;
    position: absolute;
    top: 25%;
    right: -6%;

    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.assortment-item.assortment-type-01 .type-img:before,
.assortment-item.assortment-type-02 .type-img:before,
.assortment-item.assortment-type-03 .type-img:before,
.assortment-item.assortment-type-04 .type-img:before {
    opacity: 0;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.assortment-item.assortment-type-01 .type-img:hover:before,
.assortment-item.assortment-type-02 .type-img:hover:before,
.assortment-item.assortment-type-03 .type-img:hover:before,
.assortment-item.assortment-type-04 .type-img:hover:before {
    opacity: 1;
    transform: scale(1.2);
}

.assortment-item.assortment-type-01 .type-img:before {
    content: "";
    width: 305px;
    height: 305px;
    background: url("../imgs/top-left.svg") center center no-repeat;
    background-size: 100%;
    display: block;
    z-index: -1;
    position: absolute;
}

.assortment-item.assortment-type-02 .type-img:before {
    content: "";
    width: 305px;
    height: 305px;
    background: url("../imgs/top-right.svg") center center no-repeat;
    background-size: 100%;
    display: block;
    z-index: -1;
    position: absolute;
}

.assortment-item.assortment-type-03 .type-img:before {
    content: "";
    width: 305px;
    height: 305px;
    background: url("../imgs/bottom-left.svg") center center no-repeat;
    background-size: 100%;
    display: block;
    z-index: -1;
    position: absolute;
}

.assortment-item.assortment-type-04 .type-img:before {
    content: "";
    width: 305px;
    height: 305px;
    background: url("../imgs/bottom-right.svg") center center no-repeat;
    background-size: 100%;
    display: block;
    z-index: -1;
    position: absolute;
}

.assortment-item.assortment-type-01 .type-text .lab {
    color: #CE6D43;
}

.assortment-item.assortment-type-01 ul li:before {
    content: "";
    background: url(../imgs/icons/type-01.svg) center center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 10px;
}

.assortment-item.assortment-type-02 .type-text .lab {
    color: #F1B5CB;
}

.assortment-item.assortment-type-02 ul li:before {
    content: "";
    background: url(../imgs/icons/type-02.svg) center center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 10px;
}

.assortment-item.assortment-type-03 .type-text .lab {
    color: #B16FD2;
}

.assortment-item.assortment-type-03 ul li:before {
    content: "";
    background: url(../imgs/icons/type-03.svg) center center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 10px;
}

.assortment-item.assortment-type-04 .type-text .lab {
    color: #FFAA4C;
}

.assortment-item.assortment-type-04 ul li:before {
    content: "";
    background: url(../imgs/icons/type-04.svg) center center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 10px;
}

.approach {
    background-color: #F7F7F7;
}

.approach .headings p {
    width: 60%;
    margin: 0 auto;
}

.approach .approach-item {
    text-align: center;
    padding: 50px 30px 0 30px;
    margin: 10px 0;
    border: 1px solid #D9D9D9;
    border-radius: 8px;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.approach .approach-item:hover {
    margin: 0;
    padding: 65px 30px 45px 30px;
    background-color: #FFFFFF;
}

.approach .approach-item svg {
    height: 100px;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.approach .approach-item:hover svg {
    margin: -30px 0 0 0;
}

.approach .approach-item svg path {

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.approach .approach-item:hover svg path {
    fill: #ED1C24;
}

.approach .approach-item:hover svg path.other-color {
    fill: rgba(237, 28, 36, 0.16) !important;
}

.approach .approach-item h3 {
    margin: 30px 0 20px 0;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.approach .approach-item:hover h3 {
    margin: 30px 0 10px 0;
}

.approach .approach-item p {
    opacity: 0;
    margin: 0;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.approach .approach-item:hover p {
    opacity: 1;
}


.delivery-logistics {
    background: url("../imgs/delivery-logistics-bgr.jpg") center center no-repeat;
    background-size: cover;
}

.delivery-logistics h2,
.delivery-logistics h3,
.delivery-logistics p {
    color: #fff;
}

.delivery-logistics .delivery-type {
    text-align: center;
    margin: 20px 0;
}

.delivery-logistics .delivery-type img {
    margin: 0 0 15px 0;
    height: 100px;
}

.delivery-logistics .btn {
    margin: 0 auto;
    display: table;
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    border-radius: 100%;

    box-shadow: 0 14px 38px -8px #212121;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: block;
    font-size: 22px;
    line-height: 1;
    position: relative;
    top: -1px;
}


footer {
    padding: 50px 0 0 0;
    background-color: #282828;
}

footer .copyright {
    margin: 25px 0 0 0;
    padding: 25px 0;
    background-color: #1E1E1E;
}

footer .footer-text a {
    display: inline-block;
    margin: 0 0 30px 0;
}

footer .footer-nav li {
    display: block;
    margin: 20px 0;
}

footer .footer-nav li a {
    color: #fff;
    display: block;
    border-left: 1px solid #ED1C24;
    padding: 0 0 0 10px;
    text-transform: uppercase;
}

footer .footer-nav li a:hover {
    color: #ED1C24;
}

footer .footer-contacts {
    margin: 12px 0 0 0;
}

footer .footer-contacts li {
    display: block;
    margin: 7px 0;
}

footer .footer-contacts li a {
    color: #fff;
    display: block;
}

footer .footer-contacts li a:hover {
    color: #ED1C24;
}

footer .footer-contacts li a img {
    margin-right: 5px;
    position: relative;
    top: -2px;
}

footer .footer-socials {
    border-top: 1px solid #4A4A4A;
    width: 100%;
    text-align: right;
    padding: 10px 0 0 0;
    margin: 20px 0 0 0;
}

footer .footer-socials li {
    display: inline-block;
    margin: 0 13px
}

footer .footer-socials li:last-of-type {
    margin-right: 0;
}

footer .footer-socials li a {
    display: block;
}

footer .copyright ul {
    text-align: right;
}

footer .copyright ul li {
    display: inline-block;
    margin: 0 13px;
}

footer .copyright ul li:last-of-type {
    margin-right: 0;
}

footer .copyright ul li a {
    color: #7D7D7D;
    display: block;
}


.hero-about-us {
    background: url("../imgs/about-us-hero.jpg") center center no-repeat;
    background-size: cover;
}


.timeline {
    background: #F7F7F7 url("../imgs/timeline-bgr.png") top center no-repeat;
    background-size: cover;
}

.timeline .date-right {
    text-align: right;
}

.timeline .timeline-icon {
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 100%;
    position: relative;
    z-index: 2;
}

.timeline .timeline-text {
    padding: 30px 30px;
    margin: 50px 0;
    border-radius: 8px;
    background-color: #FFFFFF;
}

.timeline .timeline-text.timeline-left {
    margin-right: 50px;
    position: relative;
    z-index: 2;
}

.timeline .timeline-text.timeline-right {
    margin-left: 50px;
    position: relative;
    z-index: 2;
}

.timeline .timeline-text p {
    margin: 0;
}

.timeline .timeline-simple {
    position: relative;
}

.timeline .timeline-simple:after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #FFFFFF;
}

.timeline .timeline-date {
    position: relative;
    z-index: 2;
}

.assortment-nav {
    margin: 30px 0 0 0;
}

.assortment-nav li button {
    position: relative;
    background: none;
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.assortment-nav li button.active {
    border-color: #ED1C24;
}

.assortment-nav li button .lab {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40%;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.assortment-nav li button.active .lab {
    color: #ED1C24;
}

.assortment-content {
    padding: 30px 0;
    margin: 20px 0 0 0;
    border: 1px solid #ED1C24;
    border-radius: 8px;
}

.assortments {
    max-height: 320px;
    overflow-y: scroll;
    padding: 0 30px 0 0;
    margin: 0 10px 0 0;
}

.assortments-without-scroll {
    padding: 0 30px 0 0;
    margin: 0 10px 0 0;
}

.svg-figure {
    margin: 0 auto;
}

.svg-figure path:hover {
    fill: #ED1C24;
}

.assortment-list .assortment-item {
    text-align: center;
    margin: 15px 0;
}

.assortment-list .assortment-item .lab {
    color: #ED1C24;
    margin: 10px 0 0 0;
}

.types-nav {
    position: relative;
    max-height: 320px;
    overflow-y: scroll;
}

.types-nav li {
    display: block;
}

.types-nav li button {
    background: none;
    border: none;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 0;
    width: 100%;
    text-align: left;
}

.types-nav li button:hover {
    background-color: #f9f9f9;
}

.types-nav li button .type-icon {
    width: 100px;
    text-align: center;
    display: inline-block;
}

.types-nav li button.active {
    color: #ED1C24;
}

.types-nav li button.active .type-icon svg path {
    stroke: #ED1C24;
}


/*.modal-products .modal-dialog {*/
/*    max-width: max-content;*/
/*}*/

/*.modal-products .modal-products-header {*/
/*    padding: 40px 45px 0;*/
/*}*/

.products {
    padding-bottom: 70px;
}

.products-list .product-block {
    text-align: center;
    padding: 0 0 35px 0;
    position: relative;
}

.products-list .product-block h2 {
    font-size: 26px;
    line-height: 30px;
    text-align: left;
}

.products-list .product-block .product-img {
    position: relative;
    margin: 10px 0 80px 0;
}

.products-list .product-block .product-img .product-main-img {
    transition: all .3s;
}

.products-list .product-block .product-img .overflow-hidden {
    border-radius: 6px;
}

.products-list .product-block .product-img:hover .product-main-img {
    transform: scale(1.1);
}

.products-list .product-block .product-pack-img {
    position: absolute;
    left: 50%;
    bottom: -80px;

    transform: translate(-50%, 0);
}

.products-list .product-block .hint svg {
    display: inline-block;
    margin: 0 5px;
    height: 30px;
    width: 30px;
}

.products-list .product-block .badges-info {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
}

.products-list .product-block .badges-info .badge-block {
    background: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 16px;
    color: #CE6D43;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.products-list .product-block .badges-info .badge-block.frozen {
    color: #3C3B6E;
}

.products-list .product-block .badges-info .badge-block img {
    margin: -1px 3px 0 0;
}

.contacts {
    position: fixed;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    padding: 30px 40px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;

    transform: translate(100%, 0);
}

.overlay {
    background-color: #000000;
    opacity: 0;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.contacts-show .overlay {
    opacity: .3;
    z-index: 4;
}

.contacts-show .contacts {
    transform: translate(0, 0);
}

.map {
    margin: 30px 0;
    width: 100%;
    height: 200px;
    background-color: #f8f8f8;
}

.contacts form .btn {
    display: block;
    width: 100%;
}

.contacts .contact-info {
    text-align: center;
}

.contacts .contact-info img {
    margin: 0 0 15px 0;
    height: 40px;
}

.contacts .contact-info .lab {
    color: #000000;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    margin: 0 0 5px 0;
}


.locations {
    background-color: #F7F7F7;
}

.locations-list .location-item {
    padding: 30px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
}

.locations-list .location-item img {
    width: 100%;
    border-radius: 8px;
}

.locations-list .location-item .lab {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 15px 0 10px;
}

.locations-list .location-item .btn {
    margin: 20px 0 0 0;
}


.logistics {
    position: relative;
    background-color: #F7F7F7;
}

.hero-logistics {
    background: url("../imgs/logistics-hero.jpg") center center no-repeat;
    background-size: cover;
}

.logistics:before {
    content: "";
    background: url("../imgs/start-fragment.svg") top right no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    z-index: 0;
}

.logistics .container {
    position: relative;
    z-index: 2;
}

.logistics .headings {
    text-align: left;
}

.logistics .btn {
    margin: 20px 0 0 0;
}

.logistics-features .feature {
    padding: 15px 0;
}

.logistics-features .feature .lab {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    padding: 0 50px 0 0;
}


.logistics-transport {
    padding: 0 0 50px 0;
    background-color: #F7F7F7;
}

.logistics-transport .transport {
    padding: 30px;
    margin: -20px 0 0 0;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 13px 80px 0 rgba(125, 125, 125, 0.16);
}


.hero-warehouses {
    background: url("../imgs/warehouses-hero.jpg") center center no-repeat;
    background-size: cover;
}


.individual {
    background-color: #F7F7F7;
}

.individual .headings p {
    width: 50%;
    margin: 0 auto;
    display: table;
}

.individual .method {
    padding: 30px 30px 30px 30px;
    margin: 20px 0 0 0;
    border: 1px solid rgba(217, 217, 217, 1);
    border-radius: 8px;
    min-height: 190px;
}

.individual .method p {
    margin: 0;
}


.testimonials {
    background-color: #F7F7F7;
}

.testimonials .headings {
    text-align: left;
}

.testimonials .testimonial {
    padding: 60px 60px;
    border: 1px solid #D9D9D9;
}

.testimonials .testimonial .person-avatar {
    height: 70px;
}

.testimonials .testimonial .person-name {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.testimonials .testimonial .testimonial-text {
    font-style: italic;
    margin: 20px 0 0 0;
    padding: 0 50px 0 0;
    min-height: 100px;
}

.testimonials .testimonial .testimonial-rate ul {
    display: inline-block;
}

.testimonials .testimonial .testimonial-rate ul li {
    font-size: 20px;
    color: #ED1C24;
    display: inline-block;
}

.testimonials .testimonial .rate-val {
    display: inline-block;
}

.owl-testimonials .owl-stage .owl-item:nth-child(even) {
    background-color: #ED1C24;
}

.owl-testimonials .owl-stage .owl-item:nth-child(even) .person-name,
.owl-testimonials .owl-stage .owl-item:nth-child(even) .person-pos,
.owl-testimonials .owl-stage .owl-item:nth-child(even) .testimonial-text,
.owl-testimonials .owl-stage .owl-item:nth-child(even) .testimonial-rate ul li,
.owl-testimonials .owl-stage .owl-item:nth-child(even) .rate-val {
    color: #FFFFFF;
}

.warehouses-map {
    position: relative;
}

.warehouses-map .city {
    color: #FFFFFF;
    font-size: 0;
    line-height: 40px;
    text-align: center;
    font-style: italic;
    width: 40px;
    height: 40px;
    background-color: #ED1C24;
    position: absolute;
    border-radius: 100%;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.warehouses-map .city:hover {
    color: #FFFFFF;
    font-size: 10px;
    line-height: 100px;
    text-align: center;
    font-style: italic;
    width: 100px;
    height: 100px;
    background-color: #ED1C24;
    position: absolute;
    border-radius: 100%;
}

.warehouses-map .city.city-01 {
    top: calc(58% - 20px);
    right: calc(19% - 20px);
}

.warehouses-map .city.city-02 {
    top: calc(38% - 20px);
    right: calc(45% - 20px);
}

.warehouses-map .city.city-03 {
    top: calc(65% - 20px);
    right: calc(60% - 20px);
}

.warehouses-map .city.city-01:hover {
    top: calc(58% - 50px);
    right: calc(19% - 50px);
}

.warehouses-map .city.city-02:hover {
    top: calc(38% - 50px);
    right: calc(45% - 50px);
}

.warehouses-map .city.city-03:hover {
    top: calc(65% - 50px);
    right: calc(60% - 50px);
}

.owl-testimonials .owl-nav {
    width: auto;
    position: absolute;
    top: -60px;
    right: 0;
}


.results {
    background-color: #F7F7F7;
}

.results .result {
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 8px;

    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
}

.results .result .val {
    font-family: 'Lexend Deca', sans-serif;
    color: #ED1C24;
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    margin: 0 0 5px 0;
}


.look {
    background: url("../imgs/look-bgr.jpg") center center no-repeat;
    background-size: cover;
}

.look .look-text {
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.look img {
    height: 50px;
    margin: 0 0 10px 0;
}

.look-text .btn-contacts {
    float: none;
    padding: 0 20px;
}

.btn-contacts-close {
    background: none;
    border: 0;
    outline: none;
    position: absolute;
    top: 20px;
    right: 20px;
}


.animation {
    position: relative;
    display: table;
    margin: 0 auto;
    overflow: hidden;
}

.animation .animation-img {
    width: 240px;
    height: 240px;
    padding: 25px;
}

.animation .orbit {
    width: 240px;
    height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -120px;
    margin-left: -120px;
    animation: orbitRotate 40s linear infinite;
}

@keyframes orbitRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {

        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    75% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.hero-logistics .animation {
    position: relative;
    top: 60px;
    left: -20%;
}


.hero p {
    font-size: 16px;
    line-height: 20px;
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #e7e7e7;
}

::-webkit-scrollbar-thumb {
    background-color: #ED1C24;
}

.product-intro {
    background: url("../imgs/products-intro-bgr.jpg") center right no-repeat;
    background-size: cover;
}

.product-intro h1 {
    color: #fff;
    font-size: 64px;
    line-height: 74px;
}

.product-intro p {
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}

.products .product-filter li .btn-outline-secondary {
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-transform: inherit;
    height: auto;
    padding: 12px 13px;
    border-color: #D9D9D9;
    color: #7D7D7D;
}

.products .product-filter li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 8px;
}

.products .product-filter li .btn-outline-secondary:hover {
    border-color: #ED1C24;
    background: transparent;
    color: #7D7D7D;
}

.products .product-filter li.active .btn-outline-secondary {
    border-color: #ED1C24;
    color: #ED1C24;
}

.products .filter-select {
    position: relative;
}

.products .filter-select select {
    padding-right: 30px;
}

.products .filter-select:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    background: url("../imgs/icons/arrow-down.svg") center center no-repeat;
    width: 10px;
    height: 10px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 30px 0 40px 0;
    white-space: nowrap;
    padding-bottom: 5px;
}

.breadcrumbs::-webkit-scrollbar {
    height: 5px;
}

.breadcrumbs li {
    font-size: 16px;
    font-weight: 400;
    color: #ED1C24;
}

.breadcrumbs li a {
    color: #7D7D7D;
}

.breadcrumbs .separator {
    margin: 0 12px 0 8px;
}

.pagination {
    justify-content: center;
    margin: 20px 0;
}

.pagination li {
    display: inline-block;
    margin: 0 12px;
}

.pagination li a {
    width: 46px;
    height: 46px;
    line-height: 44px;
    text-align: center;
    background: #fff;
    box-shadow: 0 14px 38px -8px rgba(217,217,217,1);
    -webkit-box-shadow: 0 14px 38px -8px rgba(217,217,217,1);
    -moz-box-shadow: 0 14px 38px -8px rgba(217,217,217,1);
    border: 1px solid transparent;
    border-radius: 100px;
    display: block;
    color: #4A4A4A;
    font-size: 18px;
    font-weight: 700;
}

.pagination li a img {
    margin: -3px 0 0 0;
}

.pagination li.active a, .pagination li a:hover {
    border-color: #ED1C24;
    color: #ED1C24;
}

.form-group.search {
    max-width: 380px;
    margin: 35px auto 20px auto;
}

.form-group.search button {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 10px;
    margin-top: 12px;
    border: none;
    background: transparent;
}

.form-group.search .form-control {
    padding: 10px 36px 10px 15px;
    border-color: #D9D9D9;
    border-radius: 8px;
    box-shadow: none;
}

.form-group.search .form-control:focus, .form-group.search .form-control:active {
    border-color: #000;
}

.form-group.search .form-control::placeholder {
    color: #B7B7B7;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }