/* Variables */
:root {
    --color-default: #191f21;
    --color-primary: #ed1c24;
    --color-secondary: #d28c64;
    --color-paragraph: #57585b;
    --color-light: #d3d3d3;
    --transition: all 0.5s ease-in-out;
}
html {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    color: var(--color-default);
    font-family: "Montserrat", "Spartan", "Spartan MB", "Goldman", "Cairo",
        Arial, sans-serif;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
.container-fluid {
    padding-left: 6vw /* 125/19.2 */;
    padding-right: 6vw /* 125/19.2 */;
}
/*Font css*/
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Black.ttf");
    font-weight: 900;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Spartan";
    src: url("../fonts/Spartan-Black.ttf");
    font-weight: 900;
}
@font-face {
    font-family: "Goldman";
    src: url("../fonts/Goldman-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "Goldman";
    src: url("../fonts/Goldman-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Black.ttf");
    font-weight: 900;
}
* {
    box-sizing: border-box;
    outline: none !important;
}
/* width */
::-webkit-scrollbar {
    width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #ccc;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}
::-moz-selection {
    background: var(--color-primary);
    color: #fff;
}
::selection {
    background: var(--color-primary);
    color: #fff;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
textarea {
    resize: none !important;
}
a,
a:hover {
    color: var(--color-primary);
}
.text-primary {
    color: var(--color-primary) !important;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 167px;
    max-width: 100%;
    height: 70px;
    border-radius: 35px !important;
    color: #fff !important;
    background: var(--color-primary) !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 21px;
    text-transform: uppercase;
    transition: var(--transition);
    overflow: hidden;
}
.btn-outline-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 54px;
    border-radius: 30px;
    border: 3px solid #bac2c4 !important;
    background: transparent !important;
    color: rgba(25, 31, 33, 0.55) !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    z-index: 1;
    overflow: hidden;
}
.btn-outline-primary.view-all {
    font-size: 13px;
    line-height: 17px;
    text-align: initial;
    padding-left: 60px;
}
.btn-outline-primary:hover {
    border: 3px solid rgba(25, 31, 33, 0.67) !important;
    color: rgba(25, 31, 33, 0.67) !important;
}
.btn-outline-primary:before,
.btn-outline-primary:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border-radius: 30px;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    transition: var(--transition);
}
.btn-outline-primary:before {
    background: #bac2c4;
    opacity: 0.19;
    z-index: -2;
}
.btn-outline-primary:hover:before {
    opacity: 0.55;
}
.btn-outline-primary:after {
    background: url("../images/Group 54744.svg") center no-repeat;
    background-size: cover;
    z-index: -1;
}
.btn-outline-primary:hover:after {
    filter: invert(1);
}
.btn-outline-primary.view-all:after {
    background: url("../images/Group 56743.svg") center no-repeat;
    background-size: contain;
    width: 35px;
    height: 30px;
    left: 20px;
    right: auto;
    opacity: 0.55;
    filter: none;
}
.btn-outline-primary.view-all:hover:after {
    opacity: 0.67;
}
.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.06em;
    color: #6f7e83;
    width: 237px;
    max-width: 100%;
    height: 44px;
    border-radius: 22px;
    background: transparent;
    border: 1px solid #bac2c4;
    text-transform: uppercase;
}
header {
    position: relative;
    display: block;
    z-index: 9998;
}
header > img {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transition: var(--transition);
}
header.mega-products > img,
header.mega-services > img {
    display: block;
}
.navbar {
    background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0) 100%);
    border: none;
    width: 100%;
    padding: 50px 0 26px;
    margin: 0;
    z-index: 9999;
    transition: var(--transition);
}
.mega-products .navbar,
.mega-services .navbar,
.mega-locations .navbar {
    position: fixed !important;
    top: 0 !important;
}
.mega-locations .navbar {
    transition: none;
}
.navbar .navbar-brand {
    margin-top: -20px;
    transition: var(--transition);
}
.navbar .navbar-brand img {
    height: 87px;
    transition: var(--transition);
}
.navbar .navbar-nav {
    padding-top: 35px;
}
.navbar-nav > .nav-item > .nav-link {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.06em;
    color: var(--color-default);
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 1rem 1rem 0 !important;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
.navbar-nav > .nav-item.active > .nav-link {
    font-weight: 900;
    color: var(--color-primary);
}
.navbar .toggle-location img,
.navbar .toggle-search img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: var(--transition);
}
.navbar-collapse {
    position: relative;
}
.navbar .top-links {
    position: absolute;
    bottom: 50px;
    right: 0;
    color: #fff;
    padding-top: 0;
}
.navbar .top-links .site-email {
    display: block;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: -0.06em;
    margin-top: -5px;
    text-transform: initial;
    text-align: right;
    text-decoration: none !important;
    color: var(--color-default);
}
.navbar .top-links .site-tel {
    display: block;
    font-weight: normal;
    font-size: 28px;
    letter-spacing: -0.06em;
    line-height: 1;
    text-decoration: none !important;
    color: var(--color-default);
}
.navbar .top-links .site-tel span {
    font-weight: 900;
    color: var(--color-primary);
}
/* Mega Menu */
.mega-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    width: calc(100vw - 10px);
    height: calc(100vh - 160px);
    background: none;
    border: none;
    margin: 0 auto;
    overflow-y: auto;
    z-index: 5;
    transition: var(--transition);
}
.mega-menu.active {
    display: block;
}
.mega-menu .container-fluid {
    height: 100%;
}
/* Location */
.location-menu-wrapper {
    text-align: center;
    padding-top: 0;
    overflow: auto;
}
.mega-locations .location-menu-wrapper {
    transition: var(--transition);
}
.mega-locations:before {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #fff 0%, #ebeded 100%);
    z-index: -2;
}
.location-menu-wrapper:after {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url("../images/location-map.png") center no-repeat;
    background-size: contain;
    width: 61.927vw /* 1189/19.2 */;
    height: 30.573vw /* 587/19.2 */;
    z-index: -1;
    transition: var(--transition);
}
.location-menu-wrapper.active {
    display: block;
}
.location-menu-wrapper .close-location {
    display: block;
    background: url("../images/close.svg") center no-repeat;
    background-size: contain;
    border: none !important;
    width: 22px;
    height: 22px;
    margin: 20px 0 20px auto;
}
.location-menu-wrapper ul.language-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.location-menu-wrapper ul.language-menu li {
    display: inline-block;
    margin-left: 40px;
}
.location-menu-wrapper ul.language-menu li {
    display: inline-block;
    margin-left: 40px;
}
.location-menu-wrapper ul.language-menu li:first-of-type {
    margin-left: 0;
}
.location-menu-wrapper ul.language-menu li a {
    display: inline-block;
    font-weight: 900;
    font-size: 25px;
    line-height: 28px;
    text-decoration: none !important;
    color: #b8c2c4;
}
.location-menu-wrapper ul.language-menu li.active a {
    font-weight: bold;
    color: var(--color-primary);
}

.location-menu-wrapper .location-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.location-menu-wrapper .location-title .masaha-img {
    display: inline-block;
    height: 39px;
    width: auto;
}
.location-menu-wrapper .location-title .location-global {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 56px;
    color: var(--color-default);
    margin: 0 18px;
}
.countries-block {
    display: block;
    margin-top: 20px;
}
.location-wrapper .countries-block {
    display: block;
    margin: 0;
}
ul.countries-list {
    display: block;
    margin-bottom: 30px;
}
ul.countries-list li {
    display: block;
    font-weight: bold;
    font-size: 27px;
    line-height: 30px;
    color: #455157;
    margin: 5px auto;
    text-align: initial;
}
.location-wrapper ul.countries-list li {
    font-size: 22px;
    line-height: 24px;
}
ul.countries-list li a {
    display: block;
    font-weight: 500;
    font-size: 23px;
    line-height: 30px;
    color: #132944;
    text-transform: capitalize;
    transition: var(--transition);
}
.location-wrapper ul.countries-list li a {
    font-size: 17px;
    line-height: 22px;
}
ul.countries-list li a.global,
ul.countries-list li a.active {
    color: var(--color-primary);
}
.location-country {
    display: none;
    transition: var(--transition);
}
.location-country.active {
    display: block;
}
.location-country > div {
    display: none;
    transition: var(--transition);
}
.location-country > div.active {
    display: block;
}
.location-country .country-name {
    position: absolute;
    bottom: 40px;
    right: 205px;
    margin: 0;
    font-weight: 500;
    font-size: 23px;
    text-transform: capitalize;
}
.location-country .country-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 200px;
}
.location-country .country-map img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}
/* Tabs */
.vertical-tabs {
    /*position: relative;*/
    /*width: 100%;*/
}
.vertical-tabs .nav-tabs {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    border: none;
    height: calc(100vh - 200px);
}
.vertical-tabs .nav-tabs .nav-link {
    position: relative;
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 31px;
    line-height: 29px;
    color: #bac2c4 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 1vw;
    transition: var(--transition);
}
.vertical-tabs .nav-tabs .nav-link.active,
.vertical-tabs .nav-tabs .show > .nav-link {
    color: var(--color-primary) !important;
}
.vertical-tabs .nav-tabs .nav-link.active:before,
.vertical-tabs .nav-tabs .show > .nav-link:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 5px;
    height: 100%;
    background: var(--color-default);
}
.categories-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}
.categories-list li {
    position: relative;
    display: inline-block;
    width: 25%;
    padding: 0.521vw /* 10/19.2 */ 1.042vw /* 20/19.2 */ 2.604vw /* 50/19.2 */;
    margin: 1.042vw /* 20/19.2 */ 0;
    transition: var(--transition);
}
.categories-list:nth-of-type(2) li {
    padding: 2.604vw /* 50/19.2 */ 1.042vw /* 20/19.2 */ 0.521vw /* 10/19.2 */;
}
.services-menu-wrapper .categories-list li {
    width: 100% !important;
}
.categories-list li:before {
    content: "";
    position: absolute;
    right: 0;
    background: rgba(175, 191, 196, 0.57);
}
.categories-list li:before {
    bottom: 0;
    width: 1px;
    height: 100%;
}
.categories-list li:last-of-type:before {
    display: none;
}
.categories-list .category-item {
    display: flex;
    align-items: start;
    text-decoration: none !important;
}
.categories-list .category-item .category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    min-width: 7.083vw /* 136/19.2;; */;
    width: 7.083vw /* 136/19.2 */;
    height: 7.083vw /* 136/19.2 */;
    text-align: center;
    margin-top: 2vw;
    margin-right: 0.9375vw /* 18/19.2 */;
    transition: var(--transition);
    overflow: hidden;
}
.categories-list .category-item .category-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.categories-list .category-item .category-details {
    display: inline-block;
    /*max-width: 170px;*/
}
.categories-list .category-item .category-details .category-title {
    display: block;
    font-size: 1.198vw /* 23/19.2 */;
    font-weight: bold;
    line-height: 0.96;
    letter-spacing: -0.04vw /* -0.76/19.2 */;
    text-transform: capitalize;
    text-decoration: none !important;
    color: var(--color-default);
    transition: var(--transition);
    margin-bottom: 0.26vw /* 5/19.2 */;
}
.categories-list .category-item:hover .category-details .category-title {
    color: var(--color-primary);
}
.categories-list .category-item .category-details .category-info {
    display: block;
    font-weight: 500;
    font-size: 0.99vw /* 19/19.2 */;
    line-height: 1.21;
    letter-spacing: -0.0328125vw /* -0.63/19.2 */;
    text-transform: capitalize;
    color: var(--color-default);
    margin-top: 0.46875vw /* 9/19.2 */;
    transition: var(--transition);
}
.categories-list .category-item .category-details .category-info:hover {
    color: #000;
}
.categories-list .category-item .category-details .btn.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 30px;
    border-radius: 17px;
    background: rgba(184, 194, 196, 0.27);
    box-shadow: none !important;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-default);
    padding: 6px 13px;
    margin: 6px 0 0;
}
.categories-list .category-item .category-details .btn.read-more img {
    display: inline-block;
    width: 12px;
    margin-left: 10px;
}
.categories-list .more-links {
    display: block;
    font-size: 1.198vw /* 23/19.2 */;
    font-weight: bold;
    line-height: 0.96;
    letter-spacing: -0.76px;
    color: var(--color-default);
    margin-bottom: 0.729vw /* 14/19.2 */;
    margin-left: 6vw;
}
/* Product */
.mega-menu .product-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}
.mega-menu .product-item .product-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 400px;
    padding: 0;
    margin: 0 auto 12px;
    text-align: center;
    overflow: hidden;
}
.mega-menu .product-item .product-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.mega-menu .product-item .product-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.mega-menu .product-item .product-details .product-logo {
    display: flex;
    align-items: flex-end;
    width: 64px;
    margin-bottom: 15px;
}
.mega-menu .product-item .product-details .product-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.mega-menu .product-item .product-details .product-logo .product-popular {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    line-height: 15px;
    color: var(--color-primary);
    margin: 0 7px;
}
.mega-menu .product-item .product-details .product-code {
    display: block;
    font-weight: bold;
    font-size: 30px;
    line-height: 32px;
    color: #455157;
}
.mega-menu .product-item ul.product-features {
    display: flex;
    align-items: flex-start;
}
.mega-menu .product-item ul.product-features li {
    display: inline-block;
    margin: 0 15px 10px 15px;
    text-align: center;
}
.mega-menu .product-item ul.product-features li .feature-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    overflow: hidden;
}
.mega-menu .product-item ul.product-features li .feature-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.mega-menu .product-item ul.product-features li .feature-info {
    display: block;
    font-weight: 500;
    font-size: 19px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}
.mega-menu .product-item ul.product-features li .feature-info div {
    color: #abb3b7;
    margin-top: 3px;
}
.mega-menu .product-item .product-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px auto 0;
}
.mega-menu .product-item .product-actions .btn {
    margin: 0 5px;
}
.mega-menu .product-item .spare-parts-dept {
    display: inline-flex;
    border-radius: 21px;
    background: var(--color-primary);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: -0.05em;
    line-height: 23px;
    text-align: left;
    color: #fff;
    padding: 10px 25px;
    margin: 15px auto 30px;
}
.mega-menu .product-item .spare-parts-nums {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.mega-menu .product-item .spare-parts-nums a {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none !important;
    color: var(--color-default);
    transition: var(--transition);
}
.mega-menu .product-item .spare-parts-nums a:hover {
    color: var(--color-primary);
}
/* Rent & Buy */
.rent-buy-categories {
    position: relative;
    display: block;
    text-align: center;
}
.mega-menu .rent-buy-categories {
    max-width: 860px;
    text-align: start;
    margin: 0 auto;
}
.rent-buy-categories .category-item {
    position: relative;
    display: inline-block;
    width: 298px;
    height: 317px;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
    box-shadow: 0 22px 33px rgba(117, 118, 119, 0.21);
    vertical-align: middle;
    padding: 50px 25px 25px;
    margin: 40px 40px 40px 0;
}
.rent-buy-categories .explore-categories-title {
    width: 640px;
    height: auto;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 53px;
    line-height: 50px;
    text-align: initial;
    text-transform: uppercase;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.rent-buy-categories .explore-categories-title div {
    font-size: 97px;
    line-height: 93px;
}
.mega-menu .rent-buy-categories .category-item {
    width: 180px;
    height: 192px;
    padding: 15px;
    margin: 20px 40px 20px 0;
}
.mega-menu .rent-buy-categories .category-item:nth-of-type(4n + 4) {
    margin-right: 0;
}
.rent-buy-categories .category-item.empty {
    background: none;
    border: none;
    box-shadow: none;
}

.rent-buy-categories .category-item .category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 125px;
    overflow: hidden;
}
.mega-menu .rent-buy-categories .category-item .category-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto;
}
.rent-buy-categories .category-item .category-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.rent-buy-categories .category-item .category-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
}
.mega-menu .rent-buy-categories .category-item .category-info {
    margin-top: 30px;
}
.rent-buy-categories .category-item .category-info .category-title {
    display: inline-block;
    font-weight: 900;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: start;
    color: var(--color-primary);
}
.mega-menu .rent-buy-categories .category-item .category-info .category-title {
    font-size: 13px;
    line-height: 14px;
    min-height: calc(14px * 2);
}
.mega-menu
    .rent-buy-categories
    .category-item
    .category-info
    .category-title.small {
    font-size: 11px;
}
.rent-buy-categories .category-item .category-info .category-title div {
    color: var(--color-default);
}
.rent-buy-categories .category-item .category-info .category-explore {
    display: inline-block;
    font-weight: 500;
    font-size: 7px;
    line-height: 8px;
    color: var(--color-default);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
}
.mega-menu
    .rent-buy-categories
    .category-item
    .category-info
    .category-explore {
    font-size: 6px;
    line-height: 5px;
}
.rent-buy-categories .category-item .category-info .category-explore img {
    display: block;
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin: 0 auto 6px;
}
.mega-menu
    .rent-buy-categories
    .category-item
    .category-info
    .category-explore
    img {
    width: 21px;
    height: 21px;
    margin-bottom: 4px;
}

/* Hero wrapper */
.hero-wrapper {
    position: relative;
    display: block;
    background: url("../images/Mask Group 18829.png") top right no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    padding-top: 280px;
    margin-top: -160px;
    z-index: 1;
}
.hero-wrapper .hero-content {
    position: relative;
    display: block;
    width: 100%;
}
.hero-wrapper .hero-title {
    display: block;
    font-weight: 300;
    font-size: 65px;
    letter-spacing: -0.06em;
    line-height: 1;
    color: #fff;
    margin: 0 auto 40px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition);
}
.hero-wrapper .hero-title span,
.hero-wrapper .hero-title div {
    font-weight: 900;
}
.hero-wrapper .hero-title div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-wrapper .hero-title div img {
    display: inline-block;
    width: 50px;
    height: 44px;
    object-fit: contain;
}
/* Search */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    z-index: 5;
    transition: var(--transition);
}
.search-wrapper.active {
    height: auto;
    padding: 20px 0;
}
.search-wrapper.active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #edeeef;
    border-radius: 49px;
    filter: drop-shadow(0px 33px 77px rgba(18, 108, 168, 0.35));
    z-index: -1;
    transition: var(--transition);
}
.search-wrapper .browse-products {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 33px;
    transition: var(--transition);
}

.search-wrapper.active .browse-products {
    width: calc(100% - 330px);
}
.search-wrapper .top-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.search-wrapper .top-bar .right-content {
    display: none;
    transition: var(--transition);
}
.search-wrapper.active .top-bar .right-content {
    display: inline-flex;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}
.search-wrapper .close-search {
    display: inline-block;
    box-shadow: none;
    background: url("../images/close.svg") center / 14px 14px no-repeat;
    border: 1px solid #6c757d;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0 25px;
    transition: var(--transition);
}
.search-group {
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    transition: var(--transition);
}
.search-wrapper.active .search-group {
    width: 100%;
    margin: 0;
}
.search-group .input-group {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 816px;
    height: 70px;
    border-radius: 35px;
    background: #fff;
    /*box-shadow: 0 33px 77px rgba(18, 108, 168, 0.35);*/
    margin: 0 auto;
    transition: var(--transition);
}
.search-wrapper.active .search-group .input-group {
    width: 100%;
    max-width: 100%;
    height: 54px;
    box-shadow: none;
    margin: 0;
}
.search-group .input-group .input-group-prepend {
    padding: 0 30px;
}
.search-wrapper.active .search-group .input-group .input-group-prepend {
    padding-left: 0;
}
.search-group .input-group .input-group-prepend button {
    position: relative;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #455157;
    padding: 0 10px;
    transition: var(--transition);
}
.search-group .input-group .input-group-prepend button.active {
    color: var(--color-primary);
}
.search-group .input-group .input-group-prepend button.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    background: url("../images/Polygon 39.svg") center no-repeat;
    background-size: contain;
    width: 14px;
    height: 13px;
    transition: var(--transition);
}
.search-wrapper.active
    .search-group
    .input-group
    .input-group-prepend
    button.active:before {
    bottom: -10px;
}

.search-group .input-group .form-control {
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    box-shadow: none;
    background: url("../images/search.svg") 20px center no-repeat;
    background-size: 24px 24px;
    padding-left: 55px;
    font-weight: 500;
    font-size: 15px;
    color: #6f7e83;
}
.search-wrapper.active .search-group .input-group .form-control {
    background-color: #edeeef;
    border-radius: 49px 0 0 49px;
    margin-right: -40px;
}
.search-group .input-group .btn-primary {
    height: 100%;
    z-index: 3;
}
/* Brose Products */
.search-wrapper .browse-products-block {
    display: none;
    margin-top: 25px;
    transition: var(--transition);
}
.search-wrapper.active .browse-products-block {
    display: block;
}
.search-wrapper .products-slider {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}
.search-wrapper .products-slider .item {
    display: none;
}
.search-wrapper .products-slider .item:nth-of-type(1),
.search-wrapper .products-slider .item:nth-of-type(2) {
    display: inline-block;
    width: 50%;
}
@media screen and (min-width: 768px) {
    .search-wrapper .products-slider .item {
        display: none;
    }
    .search-wrapper .products-slider .item:nth-of-type(1),
    .search-wrapper .products-slider .item:nth-of-type(2),
    .search-wrapper .products-slider .item:nth-of-type(3) {
        display: inline-block;
        width: 33.3%;
    }
}
@media screen and (min-width: 1600px) {
    .search-wrapper .products-slider .item:nth-of-type(1),
    .search-wrapper .products-slider .item:nth-of-type(2),
    .search-wrapper .products-slider .item:nth-of-type(3),
    .search-wrapper .products-slider .item:nth-of-type(4) {
        display: inline-block;
        width: 25%;
    }
}
.products-slider .product-item {
    display: block;
    width: 310px;
    max-width: 100%;
    background: #fff;
    border-radius: 53px;
    padding: 10px;
    margin: 10px auto;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}
.products-slider .product-item:hover {
    background: #f0f3f4;
}
.products-slider .product-item .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
    overflow: hidden;
}
.products-slider .product-item .product-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.products-slider .product-item .product-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 10px;
}
.products-slider .product-item .product-details .product-logo {
    display: block;
    height: 28px;
    margin-bottom: 10px;
}
.products-slider .product-item .product-details .product-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.products-slider .product-item .product-details .product-code {
    display: block;
    font-weight: bold;
    font-size: 14px;
    line-height: 15px;
    color: #455157;
}
.products-slider .product-item ul.product-features {
    display: flex;
    align-items: flex-start;
}
.products-slider .product-item ul.product-features li {
    display: flex;
    margin: 0 0 10px 10px;
    text-align: center;
}
.products-slider .product-item ul.product-features li .feature-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 28px;
    margin: 0 auto 8px;
    overflow: hidden;
}
.products-slider .product-item ul.product-features li .feature-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.products-slider .product-item ul.product-features li .feature-info {
    display: block;
    font-weight: 500;
    font-size: 11px;
    line-height: 12px;
    text-align: center;
    color: #000;
}
.products-slider .product-item ul.product-features li .feature-info div {
    color: #abb3b7;
}
.products-slider .product-item .btn-outline-primary {
    width: 148px;
    height: 36px;
    border-color: rgba(25, 31, 33, 0.67) !important;
    color: #fff !important;
}
.products-slider .product-item .btn-outline-primary:before {
    background: var(--color-default);
    opacity: 0.55;
    height: calc(100% - 4px);
}
.products-slider .product-item .btn-outline-primary:after {
    filter: brightness(0) invert(1);
    opacity: 0.55;
    height: calc(100% - 4px);
}
.products-slider.owl-theme .owl-nav {
    margin-top: 0;
}
.products-slider.owl-carousel .owl-nav button.owl-next,
.products-slider.owl-carousel .owl-nav button.owl-prev,
.equipment-slider.owl-carousel .owl-nav button.owl-next,
.equipment-slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #455157;
    border-radius: 50%;
    color: #455157;
    font-size: 30px;
    padding: 0;
}
.products-slider.owl-carousel .owl-nav button.owl-next {
    top: -94px;
    right: 78px;
}
.product-page .products-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.products-slider.owl-carousel .owl-nav button.owl-prev {
    top: -94px;
    right: 136px;
}
.product-page .products-slider.owl-carousel .owl-nav button.owl-prev {
    right: 58px;
}
.equipment-slider.owl-carousel .owl-nav button.owl-next {
    top: 125px;
    right: 0;
}
.equipment-slider.owl-carousel .owl-nav button.owl-prev {
    top: 125px;
    right: 56px;
}
/* Browse Categories */
.search-wrapper .browse-title {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #abb3b7;
    margin-top: 10px;
}
.browse-categories {
    display: none;
    width: 330px;
    border-right: 1px solid #dfe5e6;
    /*margin: 20px 0;*/
    padding: 0 33px;
    margin-top: 50px;
}
.search-wrapper.active .browse-categories {
    display: inline-block;
}
/* Explore Categories */
.explore-categories {
    position: relative;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}
.search-wrapper.active .explore-categories {
    justify-content: flex-start;
    margin: 0;
}
.explore-categories li {
    display: inline-block;
    margin: 10px 5px 0;
}
.explore-categories li a {
    display: inline-block;
    width: 77px;
    height: 100px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
    box-shadow: 0 22px 33px rgba(117, 118, 119, 0.21);
    text-align: center;
    text-decoration: none !important;
    transition: var(--transition);
}
.explore-categories li a:hover {
    background: #fff;
    transform: scale(1.1);
}
.explore-categories li.explore-all a {
    width: 119px;
    padding: 0 15px;
}
.explore-categories li a .category-icon {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    max-width: 90%;
    height: 52px;
    margin: 8px auto;
    filter: grayscale(1);
    overflow: hidden;
    transition: var(--transition);
}
.explore-categories li a:hover .category-icon {
    filter: grayscale(0);
}
.explore-categories li.explore-all a .category-icon {
    filter: grayscale(0) !important;
    transform: scale(1) !important;
}
.explore-categories li a .category-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.explore-categories li a .category-title {
    display: block;
    font-weight: 500;
    font-size: 8px;
    line-height: 9px;
    text-align: center;
    color: #000;
    margin: 0 15px;
}
/* */
.services-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.services-block .why-masaha {
    display: inline-block;
    font-weight: 900;
    font-size: 20px;
    line-height: 19px;
    text-transform: uppercase;
    margin: 20px;
}
.services-block .why-masaha i {
    display: inline-block;
    font-size: 8px;
    font-weight: 100;
}
.service-item {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    margin: 20px;
}
.hero-footer .service-item {
    margin: 0;
}
.service-item .service-icon {
    display: inline-block;
    margin-right: 10px;
}
.service-item .service-icon img {
    width: auto;
    height: 29px;
    object-fit: contain;
}
.masaha-service .service-item .service-icon img {
    height: 22px;
}
.service-item .service-title {
    font-weight: 300;
    font-size: 17px;
    letter-spacing: -0.06em;
    line-height: 18px;
    color: #f7f7f7;
}
.masaha-service .service-item .service-title {
    font-size: 11px;
    line-height: 12px;
    color: #455157;
}
.service-item .service-title div {
    font-weight: 600;
}
/* Hero footer*/
.hero-footer-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.hero-footer-wrapper .hero-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: calc(100% - 130px);
    border-radius: 49px;
    background: linear-gradient(#fff 0%, #fff 100%);
    border: 1px solid #edeeef;
    box-shadow: 0 33px 77px rgba(114, 126, 130, 0.27);
    margin-top: 140px;
    margin-bottom: -80px;
    padding: 35px;
    z-index: 1;
    transition: var(--transition);
}
.hero-footer-wrapper .hero-footer > div {
    margin: 0 20px;
}
.need-category {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 436px;
    height: 93px;
    border-radius: 16px;
    background: #f5f8f8;
    padding: 22px 30px 14px;
    transition: var(--transition);
}
.need-category .category-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 102px;
}
.need-category:nth-of-type(2) .category-img {
    right: -20px;
}
.need-category .category-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.need-category .category-details {
    display: inline-block;
}
.need-category .category-details .do-need {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
}
.need-category .category-details .category-title {
    display: block;
    font-weight: 900;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 5px;
}
.need-category .category-details .category-info {
    display: block;
    font-size: 8px;
    line-height: 9px;
    color: #455157;
}
.need-category .category-details .category-info span {
    font-weight: 600;
}

/* masaha-service */
.masaha-service {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 160px;
    height: 93px;
    border-radius: 16px;
    background: #f5f8f8;
}
.masaha-service .masaha-img {
    display: block;
    height: 20px;
    margin-top: 8px;
    margin-bottom: 2px;
}
.masaha-service .masaha-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.masaha-service .service-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #455157;
}
.masaha-service .service-name span {
    font-weight: 800;
}
.masaha-service .service-img {
    position: absolute;
    top: -10px;
    right: -10px;
}
.masaha-service .service-img img {
    width: auto;
    max-height: 138px;
    object-fit: contain;
}
/* Chat */
.btn-chat {
    position: fixed;
    bottom: -60px;
    left: 6.51vw /* 125/19.2 */;
    background: url("../images/chat-s.svg") center no-repeat;
    background-size: cover;
    border: none;
    box-shadow: none;
    /*filter: drop-shadow(0px 3px 77px rgba(72, 81, 86, 0.53));*/
    width: 122px;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition: var(--transition);
    z-index: 1020;
}
.btn-chat:hover {
    bottom: 0;
}
.btn-chat.active {
    height: 182px;
    visibility: visible;
    transition: var(--transition);
}
.btn-chat .chat-icon {
    position: absolute;
    top: 35px;
    right: 15px;
    width: 38px;
    height: 38px;
    overflow: hidden;
}
.btn-chat .chat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.btn-chat .need-help {
    position: absolute;
    top: 65px;
    left: 15px;
    display: block;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: -0.06em;
    color: #fff;
}
.btn-chat .chat-us {
    position: absolute;
    top: 75px;
    left: 15px;
    display: block;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: -0.06em;
    color: #fff;
}
.chat-wrapper {
    position: fixed;
    bottom: 0;
    left: 15px;
    display: block;
    width: 430px;
    height: 0;
    background: url("../images/chat-x.svg") center no-repeat;
    background-size: cover;
    filter: drop-shadow(0px 3px 77px rgba(72, 81, 86, 0.53));
    color: #fff;
    padding: 175px 45px 45px 80px;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}
.chat-wrapper.active {
    height: 507px;
    visibility: visible;
}
.chat-wrapper .close-chat {
    position: absolute;
    top: 15px;
    right: 16px;
    background: url("../images/close-2.svg") center no-repeat;
    background-size: contain;
    border: none !important;
    box-shadow: none !important;
    width: 50px;
    height: 50px;
}
.chat-wrapper .assistant-block {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.chat-wrapper .assistant-block .assistant-img {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 6px;
    overflow: hidden;
}
.chat-wrapper .assistant-block .assistant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat-wrapper .assistant-block .assistant-info {
    display: inline-block;
}
.chat-wrapper .assistant-block .how-help {
    display: block;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.06em;
}
.chat-wrapper .assistant-block .business-account {
    display: block;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.06em;
}
.chat-wrapper .choose-department {
    display: block;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.06em;
    margin: 0 auto;
    text-align: center;
}
.chat-wrapper ul.departments-list {
    display: block;
}
.chat-wrapper ul.departments-list li.department-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 298px;
    height: 45px;
    border-radius: 23px;
    background: #fff;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-default);
    padding: 15px 25px;
    margin-top: 15px;
}
.chat-wrapper ul.departments-list li.department-item .btn {
    position: absolute;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 85px;
    height: 100%;
    border-radius: 23px;
    background: var(--color-primary);
    box-shadow: none;
}
/* New Equipments */
.equipments-wrapper {
    position: relative;
    display: block;
    width: 100%;
    margin: 300px 0 0;
    z-index: 1;
}
.equipments-wrapper:before {
    content: "";
    position: absolute;
    top: 400px;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 654px;
    background: linear-gradient(rgba(201, 201, 201, 0) 0%, #fff 100%);
    z-index: -1;
}
.equipments-wrapper .equipments-title {
    position: relative;
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    line-height: 39px;
    color: var(--color-default);
    text-transform: uppercase;
}
.equipments-wrapper .equipments-title > div:first-of-type {
    font-size: 32px;
}
.equipments-wrapper .equipments-title > div:nth-of-type(2) {
    font-size: 41px;
}
.equipments-wrapper .equipments-title > div:nth-of-type(2) span {
    color: var(--color-primary);
}
.equipments-wrapper .equipments-title .ready-for {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: var(--color-primary);
    margin-top: 10px;
    margin-left: 0.5em;
}
.equipments-wrapper .equipments-title .ready-for:before,
.equipments-wrapper .equipments-title .ready-for:after {
    background-color: #132944;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 47px;
}
.equipments-wrapper .equipments-title .ready-for:before {
    right: 0.5em;
    /*margin-left: -50%;*/
}
.equipments-wrapper .equipments-title .ready-for:after {
    left: 0.5em;
    /*margin-right: -50%;*/
}
.equipments-wrapper .equipment-slider-wrapper {
    position: relative;
}
.equipments-wrapper .equipment-slider {
    margin-top: -200px;
    height: 900px;
}
.equipments-wrapper .equipment-item {
    position: relative;
    display: block;
    width: 250px;
    max-width: 100%;
    height: 900px;
    padding-top: 350px;
    margin: 0 auto;
    transition: var(--transition);
}
.equipments-wrapper .center .equipment-item {
    width: 600px;
    padding-top: 150px;
}
.equipments-wrapper .equipment-item .equipment-img {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 180px;
    margin: 0 auto 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
.equipments-wrapper .center .equipment-item .equipment-img {
    height: 420px;
}
.equipments-wrapper .equipment-item .equipment-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.equipments-wrapper .equipment-item .equipment-details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.equipments-wrapper .equipment-item .equipment-details > div:first-of-type {
    display: inline-block;
}
.equipments-wrapper .equipment-item .equipment-details > div:nth-of-type(2) {
    display: none;
    text-align: end;
}
.equipments-wrapper
    .center
    .equipment-item
    .equipment-details
    > div:nth-of-type(2) {
    display: inline-block;
}
.equipments-wrapper .equipment-item .equipment-details .equipment-from-series {
    display: block;
    font-weight: 900;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    color: #b8c2c4;
}
.equipments-wrapper
    .center
    .equipment-item
    .equipment-details
    .equipment-from-series {
    font-size: 27px;
    line-height: 30px;
    color: var(--color-default);
}
.equipments-wrapper .equipment-item .equipment-details .equipment-series {
    display: block;
    font-weight: 900;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    color: #b8c2c4;
}
.equipments-wrapper
    .center
    .equipment-item
    .equipment-details
    .equipment-series {
    font-size: 44px;
    line-height: 48px;
    color: var(--color-default);
}
.equipments-wrapper .equipment-item .equipment-details .equipment-code {
    display: block;
    font-weight: 900;
    font-size: 42px;
    line-height: 47px;
    color: #b8c2c4;
}
.equipments-wrapper .center .equipment-item .equipment-details .equipment-code {
    font-size: 80px;
    line-height: 88px;
    color: var(--color-default);
}
.equipments-wrapper .equipment-item ul.equipment-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.equipments-wrapper .equipment-item ul.equipment-features li {
    display: flex;
    /* margin: 0 15px; */
    align-items: center;
    text-align: center;
}
.equipments-wrapper .equipment-item ul.equipment-features li .feature-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 32px;
    height: 32px;
    /* margin: 0 auto 10px; */
    overflow: hidden;
}
.equipments-wrapper .equipment-item ul.equipment-features li .feature-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.equipments-wrapper .equipment-item ul.equipment-features li .feature-info {
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}
.equipments-wrapper .equipment-item ul.equipment-features li .feature-info div {
    color: #abb3b7;
    margin-top: 3px;
}
.equipments-wrapper .equipment-item .equipment-actions {
    display: block;
}
.equipments-wrapper .equipment-item .equipment-actions .btn {
    margin-top: 10px;
}
.equipments-wrapper .equipment-slider-wrapper .btn-outline-secondary {
    position: absolute;
    top: 128px;
    right: 120px;
    z-index: 1;
}
/* Categories */
.categories-page {
    position: relative;
    background: #fafafa;
    margin: 0 auto;
}
.categories-page + footer {
    margin-top: 0;
}
.categories-page .categories-header {
    display: inline-block;
    width: 100%;
    border-radius: 0 0 43px 43px;
    box-shadow: 0 3px 55px 0 rgba(82, 82, 82, 0.05);
    border: solid 1px #e8ebeb;
    background-color: #f8f8f8;
    margin-bottom: 35px;
}
.categories-page .categories-header .categories-filter-header {
    display: none;
}
.categories-page .categories-header .breadcrumb {
    background: none;
    padding: 0;
    margin-top: 26px;
    margin-bottom: 40px;
}
.categories-page .categories-header .breadcrumb li,
.categories-page .categories-header .breadcrumb li a {
    font-size: 17px;
    font-weight: normal;
    line-height: 1.06;
    letter-spacing: -0.56px;
    color: var(--color-default);
}
.categories-page .categories-tabs {
    display: flex;
    align-items: end;
    justify-content: space-around;
    border-bottom: 0;
}
.categories-page ul.categories-tabs li button {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    font-size: 1.09375vw /* 21/19.2 */;
    font-weight: bold;
    line-height: 1.05;
    letter-spacing: -0.69px;
    text-align: center;
    color: var(--color-default);
    padding: 0 0.26vw /* 5/19.2 */ 1.40625vw /* 27/19.2 */;
    margin: 1vw 1vw 0;
}
.categories-page ul.categories-tabs li button img {
    width: auto;
    height: 4.479vw /* 86/19.2 */;
    object-fit: contain;
    margin-bottom: 0.417vw /* 8/19.2 */;
}
.categories-page ul.categories-tabs li button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary) !important;
}
.categories-wrapper {
    position: relative;
    display: block;
    padding: 100px 0;
    z-index: 1;
}
.categories-page .categories-wrapper {
    padding-top: 0;
}
.categories-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(226, 226, 226, 0.04) 0%,
        rgba(113, 113, 113, 0.01) 100%
    );
    z-index: -1;
}
.categories-page .categories-wrapper:before {
    display: none;
}
/* categories Filter */
.categories-filter {
    position: relative;
    display: block;
    width: 428px;
    max-width: 100%;
    border-radius: 67px;
    background: #fff;
    border: 1px solid #f0f3f4;
    box-shadow: 0 0.15625vw /* 3/19.2 */ 2.865vw /* 55/19.2 */
        rgba(82, 82, 82, 0.05);
    padding: 0 40px 70px;
}
.categories-header .categories-filter {
    display: none;
}
.categories-filter .categories-filter-title {
    display: block;
    font-weight: bold;
    font-size: 29px;
    line-height: 35px;
    margin-top: 50px;
}
.categories-filter .categories-filter-title span {
    color: var(--color-primary);
}
.categories-filter .categories-filter-search {
    margin: 0 auto;
}
.categories-filter .categories-filter-search .input-group-text {
    height: 46px;
    background: #fff;
    border: 1px solid #edeeef;
    border-right: none;
    border-radius: 23px 0 0 23px;
    color: #455157;
}
.categories-filter .categories-filter-search .form-control {
    height: 46px;
    background: #fff;
    border: 1px solid #edeeef;
    border-left: none !important;
    border-radius: 0 23px 23px 0;
    box-shadow: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 8px;
    color: #6f7e83;
}
.categories-filter hr {
    margin-bottom: 25px;
}
.checkboxes-group {
    display: block;
}
.checkboxes-group .checkbox-container {
    position: relative;
    display: block;
    padding-left: 52px;
    margin-bottom: 30px;
}
.categories-page .checkboxes-group .checkbox-container {
    margin-bottom: 20px;
}
.checkboxes-group .checkbox-container:last-of-type,
.categories-page .checkboxes-group .checkbox-container:last-of-type {
    margin-bottom: 0;
}
.checkboxes-group .checkbox-container label {
    display: block;
}
.categories-page .checkboxes-group .checkbox-container,
.checkboxes-group .checkbox-container .checkbox-all,
.checkboxes-group .checkbox-container .checkbox-single {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkboxes-group .checkbox-container .checkbox-single {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #132944;
    padding-left: 30px;
}
/* Hide the browser's default checkbox */
.checkboxes-group .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.checkboxes-group .checkbox-container .checkmark {
    position: absolute;
    top: 25px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #ecf2f4;
}
.categories-page .checkboxes-group .checkbox-container .checkmark {
    top: -3px;
}
.checkboxes-group .checkbox-container .checkbox-single .checkmark {
    top: 3px;
    width: 15px;
    height: 15px;
    border-radius: 5px;
}
/* On mouse-over, add a grey background color */
.checkboxes-group .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}
/* Create the checkmark/indicator (hidden when not checked) */
.categories-page .checkboxes-group .checkbox-container .checkmark:after,
.checkboxes-group .checkbox-container .checkbox-all .checkmark:after,
.checkboxes-group .checkbox-container .checkbox-single .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.checkboxes-group .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.checkboxes-group .checkbox-container .checkmark:after {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 5px;
    background: var(--color-primary);
}
.checkboxes-group .checkbox-container .checkbox-single .checkmark:after {
    width: 7px;
    height: 7px;
    border-radius: 2px;
}
.checkboxes-group .category-item {
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.checkboxes-group .category-item .category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 80px;
    text-align: center;
    margin-right: 15px;
    transition: var(--transition);
    overflow: hidden;
}
.checkboxes-group .category-item .category-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.checkboxes-group .category-item .category-details {
    display: inline-block;
}
.checkboxes-group .category-item .category-details .category-title {
    display: block;
    font-weight: 900;
    font-size: 13px;
    line-height: 14px;
    text-transform: uppercase;
    color: var(--color-default);
    transition: var(--transition);
}
.checkboxes-group
    input:checked
    ~ .category-item
    .category-details
    .category-title
    div {
    display: block;
    color: var(--color-primary);
    transition: var(--transition);
}
.checkboxes-group .category-item .category-details .category-info {
    display: block;
    font-weight: 500;
    font-size: 8px;
    line-height: 9px;
    color: var(--color-primary);
    margin-top: 6px;
}
.sub-category-item {
    margin-top: 25px;
    margin-bottom: 10px;
}
.collapse-category {
    position: relative;
    display: block;
    text-decoration: none !important;
}
.collapse-category:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    background: url("../images/Masaha-DropDOwn-Menu-icon.svg") center / contain
        no-repeat;
    width: 11px;
    height: 18px;
    transform: translateY(-50%);
    transition: var(--transition);
}
.collapse-category[aria-expanded="false"]:after {
    transform: translateY(-50%) rotate(180deg);
}
.collapse-category[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(0deg);
}
/* Popular Equipment */
.popular-equipment-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 10px;
}
.popular-equipment-header .popular-equipment-title {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 29px;
    line-height: 35px;
    white-space: nowrap;
    margin-right: 60px;
    color: var(--color-primary);
}
.popular-equipment-header .popular-equipment-title span {
    color: var(--color-default);
}
.popular-equipment-header .filter-result {
    font-weight: normal;
    font-size: 17px;
    line-height: 18px;
    color: #191f21;
    margin-top: 4px;
}
.popular-equipment-header .equipment-search .input-group-text {
    height: 46px;
    background: #fff;
    border: 1px solid #edeeef;
    border-radius: 23px 0 0 23px;
    color: #455157;
}
.popular-equipment-header .equipment-search.active .input-group-text {
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid rgba(25, 31, 33, 0.1);
    color: var(--color-default);
}
.popular-equipment-header .equipment-search .form-control {
    height: 46px;
    background: #fff;
    border: 1px solid #edeeef;
    border-left: none !important;
    border-radius: 0 23px 23px 0;
    box-shadow: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 8px;
    color: #6f7e83;
}
.popular-equipment-header .equipment-search.active .form-control {
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid rgba(25, 31, 33, 0.1);
    color: var(--color-default);
}

.popular-equipment-item {
    position: relative;
    display: block;
    width: 338px;
    max-width: 100%;
    border-radius: 29px;
    background: #fff;
    border: 1px solid #edebe8;
    box-shadow: 0 0.15625vw /* 3/19.2 */ 2.865vw /* 55/19.2 */
        rgba(131, 99, 44, 0.17);
    padding: 25px;
    margin: 35px auto 0;
}
.popular-equipment-item .equipment-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
    overflow: hidden;
}
.popular-equipment-item .equipment-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.popular-equipment-item .equipment-title {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    color: var(--color-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.popular-equipment-item .equipment-details {
    display: block;
    margin: 15px auto;
}
.popular-equipment-item .equipment-details .equipment-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    height: 20px;
    margin-bottom: 15px;
}
.popular-equipment-item .equipment-details .equipment-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.popular-equipment-item .equipment-details ul.equipment-features {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: flex-start;
    text-align: center;
}
.popular-equipment-item .equipment-details ul.equipment-features li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    text-align: center;
}
/* .popular-equipment-item
    .equipment-details
    ul.equipment-features
    li:nth-of-type(2) {
    margin: 0 20px;
} */
.popular-equipment-item
    .equipment-details
    ul.equipment-features
    li
    .feature-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 28px;
    /* margin: 0 auto 8px; */
    overflow: hidden;
}
.popular-equipment-item
    .equipment-details
    ul.equipment-features
    li
    .feature-icon
    img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.popular-equipment-item
    .equipment-details
    ul.equipment-features
    li
    .feature-info {
    display: flex;
    justify-content: space-evenly;
    font-weight: 500;
    font-size: 11px;
    line-height: 11px;
    text-align: left;
    color: #000;
}
.popular-equipment-item
    .equipment-details
    ul.equipment-features
    li
    .feature-info
    div {
    color: #abb3b7;
}
.popular-equipment-item .btn-group-toggle {
    width: 100%;
}
.popular-equipment-item .btn-group-toggle {
    height: 55px;
    background: #fafafa;
    border: 1px solid #eceff0;
    border-radius: 27px;
}
.popular-equipment-item .btn-group-toggle .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 27px;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    color: #455157;
    transition: var(--transition);
}
.popular-equipment-item .btn-group-toggle .btn.active {
    background: var(--color-primary);
    border-radius: 27px !important;
    color: #fff;
    width: 50%;
}
.popular-equipment-item .btn-group-toggle .btn:first-of-type {
    border-radius: 27px 0 0 27px;
    margin-right: -5%;
}
.popular-equipment-item .btn-group-toggle .btn:last-of-type {
    border-radius: 0 27px 27px 0;
    margin-left: -5%;
}
.popular-equipment-item .btn-primary {
    min-width: auto;
    width: 100%;
    height: 55px;
    font-size: 18px;
    line-height: 1;
}
.popular-equipment-item .btn-primary.disabled {
    flex-flow: column;
    background: #e7e8e8 !important;
    color: #606060 !important;
    opacity: 0.47;
}
.popular-equipment-item .btn-primary.disabled .not-available {
    font-weight: 500;
    font-size: 10px;
}
/* Location */
.location-wrapper {
    position: relative;
    display: block;
    margin-top: 100px;
    padding: 200px 0;
    overflow: hidden;
    z-index: 6;
}
.location-wrapper .location-title {
    display: flex;
    align-items: center;
    font-family: "Goldman", serif;
    font-weight: 500;
    font-size: 51px;
    line-height: 57px;
    color: var(--color-primary);
}
.location-wrapper .location-title img {
    display: inline-block;
    height: 42px;
    /*vertical-align: middle;*/
    /*margin-right: 20px;*/
}
.location-wrapper .serving-you {
    display: block;
    font-family: "Goldman", serif;
    font-weight: 500;
    font-size: 51px;
    line-height: 50px;
    text-transform: uppercase;
    margin: 35px auto;
}
.location-wrapper > img {
    position: absolute;
    top: 0;
    left: 35%;
    height: 800px;
    z-index: -1;
}
/* Rent & Buy */
.rent-buy-wrapper {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}
.rent-buy-wrapper > img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.rent-buy-wrapper .rent-buy-tabs {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}
.rent-buy-tabs .nav-tabs {
    display: flex;
    flex-direction: column;
    border: none;
}
.rent-buy-tabs .nav-tabs .nav-link {
    width: 428px;
    max-width: 100%;
    height: 310px;
    background: #fff !important;
    border: none !important;
    border-radius: 40px !important;
    color: var(--color-default) !important;
    filter: drop-shadow(0px 3px 55px rgba(82, 82, 82, 0.05));
    padding: 85px 85px 65px 85px;
    z-index: 1;
}
.rent-buy-tabs .nav-tabs .nav-link:last-of-type {
    margin-top: -80px;
    padding-top: 130px;
}
.rent-buy-tabs .nav-tabs .nav-link.active {
    background: var(--color-primary) !important;
    color: #fff !important;
    z-index: 2;
}

.rent-buy-tabs .nav-tabs .nav-link:last-of-type.active {
    padding-top: 85px;
}
.rent-buy-tabs .nav-tabs .nav-link .tab-title {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 44px;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.rent-buy-tabs .nav-tabs .nav-link .tab-text {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
}
.rent-buy-content {
    display: block;
    margin: 20px 0 60px;
}
.rent-buy-content h3 {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 29px;
    line-height: 35px;
    text-transform: uppercase;
    color: #fff;
}
.rent-buy-content p {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
}
/* Maintenance */
.maintenance-wrapper {
    position: relative;
    display: block;
    padding-bottom: 500px;
    margin-top: 200px;
    text-align: center;
    z-index: 2;
}
.maintenance-wrapper .maintenance-hl-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.maintenance-wrapper .maintenance-hl-block > img {
    height: 37px;
    object-fit: contain;
    margin-right: 50px;
}
.maintenance-wrapper .maintenance-hl-block .maintenance-high-level {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: initial;
}
.maintenance-wrapper .maintenance-high-level img {
    display: inline-block;
    width: 44px;
    height: 44px;
    margin-right: 20px;
}
.maintenance-wrapper .maintenance-high-level .title {
    display: inline-block;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.06em;
    line-height: 25px;
    color: var(--color-primary);
}
.maintenance-wrapper .maintenance-high-level .title div {
    font-weight: 300;
}
.maintenance-wrapper .maintenance-title {
    display: block;
    font-weight: 800;
    font-size: 51px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 90px;
}
.maintenance-wrapper .maintenance-title span {
    font-weight: 500;
    color: var(--color-primary);
}
.maintenance-wrapper > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}
/* Partners */
.partners-wrapper {
    position: relative;
    display: block;
    width: 100%;
    margin: 110px 0;
}
.partners-wrapper .partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 52px;
    letter-spacing: 0.22em;
    line-height: 59px;
    margin: 110px auto;
}
.partners-wrapper .partners-title img {
    height: 40px;
    margin-right: 20px;
}
.partners-slider .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    height: 60px;
}
.partners-slider .partner-logo img {
    width: auto;
    max-width: 100%;
    height: auto;

    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.partners-wrapper .partners-text {
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin: 60px auto 0;
}
.partners-wrapper .partners-text-2 {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #b8c2c4;
    margin: 30px auto;
}
/* Product page*/
.product-page {
    position: relative;
    margin-top: -160px;
    padding-top: 220px;
}
.product-page:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    background: url("../images/Group 54694w.svg") center no-repeat;
    background-size: cover;
    border-radius: 0 0 0 75px;
    width: 48%;
    height: 1200px;
}

.product-page.contact-page:before {
    right: auto;
    left: 0;
    border-radius: 0 0 75px 0;
}
.product-page .col-lg-5 {
    padding-left: 40px;
}
.product-page .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 50px;
}
.product-page .breadcrumb .breadcrumb-item {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #abb3b7;
}
.product-page .breadcrumb .breadcrumb-item a {
    color: #abb3b7;
}
.product-page .breadcrumb .breadcrumb-item.active {
    font-weight: bold;
}
.product-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #abb3b7;
    content: ">";
}
.product-page .product-category {
    position: absolute;
    left: -50px;
    width: 77px;
    height: 103px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
    box-shadow: 0 22px 33px rgba(117, 118, 119, 0.21);
    text-decoration: none !important;
    padding: 10px;
    transition: var(--transition);
}
.product-page .product-category .category-icon {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    text-align: center;
}
.product-page .product-category .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    transition: var(--transition);
}
.product-page .product-category:hover .category-icon img {
    filter: grayscale(0);
}
.product-page .product-category .category-title {
    display: block;
    font-weight: 500;
    font-size: 8px;
    line-height: 9px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
.product-short-details {
    position: relative;
    display: block;
}
.product-page .from-series {
    display: block;
    font-weight: 900;
    font-size: 27px;
    line-height: 30px;
    text-transform: uppercase;
}
.product-page .product-short-details .from-series {
    font-size: 17px;
    line-height: 19px;
}
.product-page .product-title {
    display: block;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
}
.product-page .product-short-details .product-title {
    font-size: 27px;
    line-height: 29px;
}
.product-page .product-code {
    display: block;
    font-weight: 900;
    font-size: 70px;
    line-height: 78px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.product-page .product-short-details .product-code {
    font-size: 55px;
    line-height: 61px;
    color: var(--color-default);
}
.product-page .product-text {
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    font-size: 15px;
    color: #727e82;
}
.product-page .product-text .download-brochure {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 11px 22px;
    border-radius: 17px;
    box-shadow: 0 22px 33px 0 rgba(117, 118, 119, 0.21);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -0.53px;
    text-decoration: none !important;
    margin-bottom: 10px;
    margin-right: 23px;
}
.product-page .product-text .download-brochure img {
    width: 25px;
    margin-right: 15px;
}
.product-page .product-details-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #abb3b7;
    margin-top: 20px;
}
.product-page .product-short-details .product-details-title {
    font-size: 9px;
    line-height: 9px;
    margin-top: 10px;
    margin-bottom: 0;
}
.product-page .btn-outline-primary {
    margin-bottom: 20px;
}
.product-page .product-short-details .btn-outline-primary {
    width: 196px;
    height: 46px;
    margin-bottom: 0;
}
.product-page .product-short-details .btn-outline-primary:after {
    display: none;
}
.product-page .product-short-details .btn-outline-primary img {
    width: 25px;
}
.product-page .btn-stock {
    position: relative;
    font-size: 17px;
    font-weight: bold;
    min-width: 167px;
    height: 31px;
}
.product-page .btn-stock.disabled {
    filter: grayscale(0.9);
}
.product-page .product-short-details .btn-stock {
    font-size: 9px;
    min-width: 100px;
    height: 20px;
}
.product-page .btn-stock:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: url("../images/Group 55490.svg") center no-repeat;
    background-size: contain;
    width: 57px;
    height: 50px;
}
.product-page .btn-stock:hover:after {
    width: 170px;
    height: 34px;
    left: 0;
}
.product-page ul.product-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-page ul.product-features li {
    display: flex;
    align-items: center;
    margin: 0 60px 40px 0;
    text-align: center;
}
.product-page ul.product-features li:last-of-type {
    margin-right: 0;
}
.product-page ul.product-features li .feature-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.product-page ul.product-features li .feature-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.product-page ul.product-features li .feature-info {
    display: block;
    font-weight: 500;
    font-size: 27px;
    line-height: 27px;
    color: #000;
    /* margin-top: 8px; */
}
.product-page ul.product-features li .feature-info div {
    color: #abb3b7;
}
.product-page .product-info {
    display: block;
    margin-top: 450px;
}
.product-page .product-info li {
    display: block;
    margin-bottom: 200px;
}
.product-page .product-info li h1 {
    display: block;
    font-weight: 900;
    font-size: 53px;
    line-height: 59px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.product-page .product-info li:nth-of-type(even) h1 {
    color: var(--color-default);
}
.product-page .product-info li p {
    display: block;
    font-size: 23px;
    color: #727e82;
    margin-top: 10px;
}
/* Carousel */
.product-page .product-gallery {
    position: sticky;
    margin-top: -2vw;
    top: 8vw;
}
.product-page .splide__slide {
    transition: var(--transition);
}
.product-page .thumbnail-carousel {
    padding: 0 60px;
    margin-top: 10px;
    margin-bottom: 5px;
}
.product-page .thumbnail-carousel .splide__list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.product-page .splide__track--nav > .splide__list > .splide__slide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f0f3f4;
    border-radius: 17px;
    opacity: 0.6;
}
.product-page .splide__track--nav > .splide__list > .splide__slide.is-active {
    border: 3px solid #f0f3f4;
    opacity: 1;
}
.product-page .splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}
.product-page .main-carousel .splide__slide img {
    width: 100%;
    max-height: 22vw;
    object-fit: contain;
    object-position: center;
}
.related-products {
    position: relative;
    display: block;
    margin: 300px auto 0;
}
.related-products .related-products-title {
    display: block;
    font-weight: 900;
    font-size: 27px;
    line-height: 30px;
    color: var(--color-default);
    margin-bottom: 50px;
}
.request-quotation {
    position: relative;
    display: block;
}
.request-quotation .request-quotation-title {
    display: block;
    font-weight: 900;
    font-size: 53px;
    line-height: 59px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.request-quotation .form-group {
    margin-bottom: 22px;
}
.request-quotation .form-control {
    min-height: 66px;
    border-radius: 33px;
    background: #fff;
    border: none;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: -0.06em;
    color: var(--color-primary);
    padding: 25px 35px;
}
.request-quotation .form-control::placeholder {
    color: #6f7e83;
    font-weight: 500;
}

.upload-file {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 20px;
}
.upload-file .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 68px;
    border-radius: 23px;
    background: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.06em;
    text-align: initial;
    color: #b8c2c4;
    transition: var(--transition);
}
.upload-file .btn img {
    height: 48px;
    margin-right: 10px;
}
.upload-file input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: #ffffff00;
}
.selected-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 16.146vw /* 310/19.2 */;
    border-radius: 3.28125vw /* 63/19.2 */;
    background: #fff;
    border: 1px solid #e4e9eb;
    border-right: 0;
    box-shadow: 0 11px 33px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 3.125vw /* 60/19.2 */;
}

.selected-product .product-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 13.542vw /* 260/19.2 */;
    width: 13.542vw /* 260/19.2 */;
    height: 13.542vw /* 260/19.2 */;
    padding-left: 15px;
    margin: 0 auto;
}
.selected-product .product-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.selected-product .product-details {
    display: inline-block;
    padding: 1.5625vw /* 30/19.2 */ 1.823vw /* 35/19.2 */ 0;
}
.selected-product .product-details .product-category {
    position: relative;
    left: 0;
    right: 0;
    width: 53px;
    height: 71px;
    padding: 6px;
    margin-right: 20px;
}
.selected-product .product-details .product-category .category-icon {
    height: 34px;
}
.selected-product .product-details .product-category .category-title {
    font-size: 5px;
    line-height: 6px;
    margin-top: 6px;
}
.selected-product .product-details .from-series {
    font-size: 0.9375vw /* 18/19.2 */;
    line-height: 1.042vw /* 20/19.2 */;
}
.selected-product .product-details .product-title {
    font-size: 1.5625vw /* 30/19.2 */;
    line-height: 1.71875vw /* 33/19.2 */;
}
.selected-product .product-details .product-code {
    font-size: 3.177vw /* 61/19.2 */;
    line-height: 3.542vw /* 68/19.2 */;
}
.selected-product .product-details .product-details-title {
    font-size: 0.833vw /* 16/19.2 */;
    line-height: 0.833vw /* 16/19.2 */;
}
.selected-product .product-details .product-text {
    font-size: 0.833vw /* 16/19.2 */;
    line-height: 1.042vw /* 20/19.2 */;
    height: calc(4 * 1.042vw /* 20/19.2 */);
    overflow: hidden;
}
.selected-product .remove-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 5.208vw /* 100/19.2 */;
    height: 100%;
    background: #f5f7f8;
    border: none !important;
    box-shadow: none;
}
.selected-product .remove-product img {
    width: 1.042vw /* 20/19.2 */;
}
.you-may-need {
    display: block;
    font-weight: 900;
    font-size: 27px;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.select-products .checkbox-container {
    display: block;
    position: relative;
    margin: 20px auto;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default checkbox */
.select-products .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.select-products .checkbox-container .checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 28px; /* (100-44)/2 */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
}
/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
.select-products .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.select-products .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.select-products .checkbox-container .checkmark:after {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    width: 12px;
    height: 20px;
    border: solid var(--color-primary);
    border-width: 0 5px 5px 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.select-products .checkbox-container .product-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 142px;
    border-radius: 53px;
    background: #fff;
    border: 1px solid #e4e9eb;
    box-shadow: 0 11px 33px rgba(0, 0, 0, 0.03);
    padding: 0 100px 0 0;
    overflow: hidden;
}
.select-products .checkbox-container .product-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: #f5f7f8;
}
.select-products .checkbox-container .product-item .product-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 240px;
    height: 120px;
    margin-right: 30px;
}
.select-products .checkbox-container .product-item .product-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.select-products .checkbox-container .product-item .product-details {
    display: flex;
    padding-top: 25px;
    padding-bottom: 10px;
}
.select-products .checkbox-container .product-item .product-logo {
    display: block;
    width: 44px;
}
.select-products .checkbox-container .product-item .product-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.select-products .checkbox-container .product-item .product-code {
    font-weight: bold;
    font-size: 15px;
    line-height: 17px;
    color: #455157;
    margin-bottom: 10px;
}
.select-products .checkbox-container .product-item ul.product-features {
    margin-left: 100px;
}
.select-products .checkbox-container .product-item ul.product-features li {
    margin: 0 20px 0 0;
}
.select-products
    .checkbox-container
    .product-item
    ul.product-features
    li
    .feature-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
}
.select-products
    .checkbox-container
    .product-item
    ul.product-features
    li
    .feature-info {
    font-weight: 500;
    font-size: 9px;
    line-height: 9px;
}
.select-products .checkbox-container .product-item .btn-outline-primary {
    width: 113px;
    height: 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 9px;
    letter-spacing: -0.06em;
    color: #6f7e83;
    padding-left: 30px;
}
.select-products .checkbox-container .product-item .btn-outline-primary:before {
    width: 104px;
    height: 16px;
}
.select-products .checkbox-container .product-item .btn-outline-primary:after {
    width: 12px;
    height: 15px;
    left: 10px;
}
.select-products
    .checkbox-container
    .product-item
    .btn-outline-primary:hover:after {
    width: 100%;
    height: 100%;
    left: 0;
}
.thank-wrapper {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto;
}
.thank-wrapper .thank-you {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 85px;
    line-height: 95px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.thank-wrapper .thank-you span {
    display: inline-block;
    color: var(--color-default);
}
.thank-wrapper .for-choosing {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 29px;
    line-height: 38px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}
.thank-wrapper .for-choosing img {
    height: 25px;
    margin: 0 20px;
    vertical-align: middle;
}
.thank-wrapper .contacted-by {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
}
.need-help-block {
    position: relative;
    display: inline-block;
    text-align: initial;
    margin: 130px auto 70px;
}
.need-help-block .need-help {
    display: block;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -0.06em;
}
.need-help-block .chat-us {
    font-weight: 900;
    font-size: 37px;
    letter-spacing: -0.06em;
    color: var(--color-primary);
}
.need-help-block img {
    position: absolute;
    top: -90px;
    right: -30px;
}
.terms-use {
    display: block;
    margin-bottom: 50px;
}
.terms-use .terms-title {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--color-default);
    opacity: 0.69;
}
.terms-use .terms-text {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #b8c2c4;
}
/* To top */
#back-to-top {
    opacity: 0;
    position: fixed;
    bottom: 2.604vw /* 50/19.2 */;
    right: 2.604vw /* 50/19.2 */;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border-radius: 50%;
    border: 4px solid #bebfc5;
    color: #bebfc5;
    font-size: 20px;
    text-decoration: none !important;
    transition: opacity 0.5s ease-out;
    z-index: 2;
}
#back-to-top.show {
    opacity: 1;
}
#back-to-top img {
    width: 60px;
    height: 60px;
}
.contact-block {
    position: relative;
    display: block;
    background: #fff;
    padding: 50px 0;
    margin: 0 auto;
    z-index: 1;
}
.contact-block:nth-of-type(odd) {
    background: #fafbfb;
}
.contact-block.subscribe-newsletter {
    background: grey;
}
.quick-support {
    margin-top: 150px;
}
.subscribe-newsletter {
    padding-top: 55px;
    padding-bottom: 150px;
}
.quick-support:before {
    content: "CONTACT";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 14.271vw /* 274/19.2 */;
    line-height: 305px;
    color: #e7e8e8;
    opacity: 0.2;
    z-index: -1;
}
.contact-block .contact-title {
    display: block;
    font-weight: 900;
    font-size: 53px;
    line-height: 59px;
    text-transform: uppercase;
    color: #191f21;
    margin-bottom: 15px;
}
.contact-block .contact-text {
    display: block;
    font-weight: normal;
    font-size: 26px;
    letter-spacing: 0.15em;
    color: #6f7e83;
}
.contact-block.subscribe-newsletter .contact-text {
    color: #191f21;
}
.contact-block.subscribe-newsletter .btn-outline-primary {
    color: #fff !important;
}
.contact-block .socials {
    margin: 130px auto 0;
}
.contact-block .socials span {
    font-size: 36px;
    margin: 0 40px;
}
.subscribe-newsletter .btn-outline-primary {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
}
.contact-block + footer {
    margin-top: 0;
}
.contact-information .contact-info {
    display: block;
    width: 100%;
    margin: 20px auto 50px;
    text-align: center;
}
.contact-information .contact-info .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    text-align: center;
}
.contact-information .contact-info .contact-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.contact-information .contact-info .contact-title {
    display: block;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: -0.05em;
    line-height: 37px;
    color: var(--color-default);
    margin: 20px auto 100px;
}
.contact-information .contact-info .contact-link {
    display: block;
    font-weight: 500;
    font-size: 26px;
    text-align: center;
    color: #6f7e83;
    text-decoration: none !important;
}
.contact-information .contact-info .contact-link.phone-num {
    font-weight: bold;
    font-size: 30px;
    color: var(--color-default);
}
.contact-information .contact-info .contact-link.phone-num span {
    font-weight: bold;
    color: var(--color-primary);
}
.contact-links {
    margin-top: 100px;
    text-align: center;
}
.contact-links a {
    font-weight: 500;
    font-size: 26px;
    line-height: 52px;
    color: var(--color-default);
}
.contact-links .btn-primary {
    width: auto;
    height: 67px;
    padding-left: 50px;
    padding-right: 50px;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: -0.05em;
}
/* Footer */
footer {
    position: relative;
    background: #f6f7f7;
    padding-top: 90px;
    margin-top: 200px;
    z-index: 1;
}
.footer-logo {
    display: block;
    width: 500px;
    max-width: 100%;
    margin-bottom: 30px;
}
.footer-logo img {
    width: auto;
    max-width: 100%;
}
footer .your-gate-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
footer .your-gate-wrapper .your-gate {
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: -0.06em;
    line-height: 19px;
    color: #191f21;
    text-transform: uppercase;
    margin-right: 42px;
}
footer .your-gate-wrapper .your-gate:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -28px;
    width: 1px;
    height: 29px;
    border-radius: 1px;
    background: rgba(25, 31, 33, 0.37);
}
footer .your-gate-wrapper .your-gate span {
    font-weight: 300;
}
footer .your-gate-wrapper .your-gate div {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
footer .your-gate-wrapper .your-gate img {
    height: 12px;
    margin-top: -3px;
}
footer .your-gate-wrapper .authorized-dealer {
    display: inline-block;
}
footer .your-gate-wrapper .authorized-dealer .authorized-dealer-text {
    display: block;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: -0.06em;
    line-height: 11px;
    color: rgba(25, 31, 33, 0.37);
    text-transform: uppercase;
    margin-bottom: 4px;
}
footer .your-gate-wrapper .authorized-dealer .authorized-dealer-text span {
    font-weight: 300;
}
footer .your-gate-wrapper .authorized-dealer .authorized-dealer-images {
    display: flex;
    align-items: center;
}
footer .your-gate-wrapper .authorized-dealer .authorized-dealer-images img {
    width: auto;
    max-width: 70px;
    height: auto;
    max-height: 18px;
    object-fit: contain;
    margin-right: 14px;
}
footer
    .your-gate-wrapper
    .authorized-dealer
    .authorized-dealer-images
    img:last-of-type {
    margin: 0 !important;
}

footer .search-group .input-group {
    width: 100%;
    max-width: 100%;
    height: 65px;
    box-shadow: 0 33px 77px rgba(173, 179, 183, 0.35);
}
footer .search-group .input-group .input-group-prepend button {
    font-size: 17px;
}
footer .search-group .input-group .btn-primary {
    min-width: 155px;
}
footer .certifications-block {
    display: block;
    margin-top: 70px;
    margin-bottom: 60px;
}
footer .certifications-block .certifications-title {
    display: block;
    font-weight: 900;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}
footer .certifications-block .certifications-images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
footer .certifications-block .certifications-images img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
}
footer ul.footer-menu {
    display: block;
}
footer ul.footer-menu li {
    display: block;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
footer ul.footer-menu li:first-of-type {
    margin-bottom: 14px;
}
footer ul.footer-menu li a {
    display: block;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.07em;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--color-default);
    opacity: 0.4;
    transition: var(--transition);
}
footer ul.footer-menu li a:hover {
    opacity: 1;
}
footer .get-touch {
    display: block;
    text-align: end;
}
footer .get-touch a {
    color: var(--color-default);
    /*text-decoration: none !important;*/
}
footer .get-touch .get-touch-text {
    display: block;
    font-weight: bold;
    font-size: 33px;
    letter-spacing: -0.07em;
}
footer .get-touch .masaha-email {
    display: block;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: -0.07em;
}
footer .get-touch .masaha-email a {
    font-weight: bold;
}
footer .get-touch .masaha-tel {
    display: block;
    font-weight: bold;
    font-size: 73px;
    letter-spacing: -0.1em;
    text-decoration: none !important;
}
footer .get-touch .masaha-tel span {
    font-weight: 900;
    color: var(--color-primary);
}
footer .get-touch .masaha-working-hours {
    display: block;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: -0.07em;
}
footer .get-touch .masaha-address {
    display: block;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.07em;
    margin-top: 10px;
}
footer .footer-bottom {
    display: inline-block;
    width: 100%;
    margin: 65px auto;
}
footer .privacy-policy {
    display: block;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.07em;
    text-align: left;
    opacity: 0.43;
    margin-bottom: 5px;
}
footer .privacy-policy a {
    color: var(--color-default);
}
footer .copy-rights {
    display: block;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.07em;
    text-align: left;
    color: var(--color-default);
    opacity: 0.43;
}
footer .made-with {
    font-weight: 100;
    font-size: 18px;
    letter-spacing: -0.05em;
    line-height: 16px;
    color: #50595c;
}
footer .made-with a {
    font-weight: normal;
    color: #50595c;
}
footer .made-with a:hover {
    text-decoration: none !important;
    color: #ee674d;
}
footer .made-with i {
    color: var(--color-primary);
}
/* Socials*/
.socials {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.socials a {
    text-decoration: none !important;
    vertical-align: middle;
}
.socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-primary);
    margin: 0 8px;
    text-align: center;
    transition: var(--transition);
}
.socials .fa-facebook-f:hover {
    color: #4267b2;
}
.socials .fa-instagram:hover {
    color: #d6249f;
}
.socials .fa-twitter:hover {
    color: #55acee;
}
.socials .fa-linkedin-square:hover {
    color: #0077b5;
}
.socials .fa-youtube-play:hover {
    color: #f00;
}
.socials .fa-snapchat:hover {
    color: #000;
}
/* Pages  */
.page-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}
.page-title {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 42px;
    letter-spacing: -0.05em;
    line-height: 59px;
    color: var(--color-primary);
    text-transform: uppercase;
    text-align: center;
    margin: 50px auto 30px;
}
.page-title.privacy-page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-default);
}
.page-title.privacy-page-title img {
    height: 26px;
    margin: 0 10px;
}
.page-banner {
    position: relative;
    display: block;
    width: 100%;
    height: 25vw /* 480/19.2 */;
    margin-bottom: 5.208vw /* 100/19.2 */;
    overflow: hidden;
}
.page-banner.partner-banner {
    height: 26.927vw /* 517/19.2 */;
}
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-text {
    display: block;
    font-weight: 500;
    font-size: 1.25vw /* 24/19.2 */;
    line-height: 1.875vw /* 36/19.2 */;
    margin-bottom: 2.083vw /* 40/19.2 */;
}
.privacy-title {
    display: block;
    font-weight: bold;
    font-size: 1.458vw /* 28/19.2 */;
    line-height: 1.875vw /* 36/19.2 */;
    color: var(--color-primary);
}
.service-page .page-text {
    color: #000;
}
ul.page-list {
    display: block;
}
ul.page-list li {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 1.146vw /* 22/19.2 */;
    padding-left: 1.198vw /* 23/19.2 */;
    margin: 12px auto;
}
ul.page-list li:before {
    content: "";
    position: absolute;
    top: 0.55vw;
    left: 0;
    background: url("../images/Group 53908.svg") center no-repeat;
    background-size: contain;
    width: 0.729vw /* 14/19.2 */;
    height: 0.729vw /* 14/19.2 */;
}
.page-info {
    position: relative;
    display: block;
    padding: 0 4vw;
    margin-top: 4.01vw /* 77/19.2 */;
}
.page-info > img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    max-width: 6.25vw /* 120/19.2 */;
    max-height: 6.25vw /* 120/19.2 */;
    object-fit: contain;
}
.page-info.text-right > img {
    left: auto;
    right: 0;
}
.page-info .page-info-title {
    display: block;
    font-weight: bold;
    font-size: 1.198vw /* 23/19.2 */;
    letter-spacing: -0.05em;
    line-height: 1.71875vw /* 33/19.2 */;
}
.page-info .page-info-phone {
    display: block;
    font-weight: bold;
    font-size: 2.135vw /* 41/19.2 */;
    line-height: 3.5vw;
    color: var(--color-default);
}
.page-info .page-info-phone span {
    color: var(--color-primary);
}
.page-info .page-info-mail {
    display: block;
    font-weight: 500;
    font-size: 1.71875vw /* 33/19.2 */;
    letter-spacing: -0.05em;
    line-height: 3.5vw;
    color: #191f21;
}
#map {
    display: block;
    width: 100%;
    height: 24.6875vw /* 474/19.2 */;
    border-radius: 2.604vw /* 50/19.2 */;
    margin: 2.604vw /* 50/19.2 */ auto;
}
.contact-page #map {
    height: 694px;
}
/* Media */
.media-title {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 31px;
    letter-spacing: -0.09em;
    line-height: 44px;
    text-transform: uppercase;
    margin: 50px auto;
}
.media-title span {
    color: var(--color-primary);
}
.event-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 20px auto;
}
.event-item .event-img {
    display: inline-block;
    min-width: 12.5vw /* 240/19.2 */;
    width: 12.5vw /* 240/19.2 */;
    max-width: 100%;
    height: 150px;
    margin-right: 12px;
}
.featured-block .event-item .event-img {
    min-width: 107px;
    width: 107px;
    height: 67px;
    margin-right: 0;
}
.event-item .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.event-item .event-details {
    display: inline-flex;
    border-top: 1px solid #bac2c4;
}
.featured-block .event-item .event-details {
    border-top: none;
}
.event-item .event-details .event-date {
    position: relative;
    display: inline-flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 86px;
    height: 94px;
    background: #fff;
    box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.16);
    font-family: "Goldman", serif;
    padding: 15px 20px;
    margin-top: 1.458vw /* 28/19.2 */;
    margin-left: -38px;
    margin-right: 26px;
}
.featured-block .event-item .event-details .event-date {
    min-width: 38px;
    height: 41px;
    padding: 5px;
    margin-top: 12px;
    margin-left: -14px;
    margin-right: 10px;
}
.event-item .event-details .event-date .month {
    display: block;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: -0.08em;
    line-height: 14px;
}
.featured-block .event-item .event-details .event-date .month {
    font-size: 6px;
    line-height: 6px;
}
.event-item .event-details .event-date .day {
    display: block;
    font-weight: bold;
    font-size: 43px;
    letter-spacing: -0.08em;
    line-height: 40px;
    color: #ed1c24;
}
.featured-block .event-item .event-details .event-date .day {
    font-size: 19px;
    line-height: 18px;
}
.event-item .event-details .event-date .year {
    display: block;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: -0.08em;
    line-height: 9px;
}
.featured-block .event-item .event-details .event-date .year {
    font-size: 4px;
    line-height: 4px;
}
.event-item .event-details .event-info {
    position: relative;
    display: inline-block;
    padding-top: 16px;
    padding-left: 20px;
}
.featured-block .event-item .event-details .event-info {
    padding-top: 10px;
    padding-left: 10px;
}
.event-item .event-details .event-info:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 1px;
    height: 95px;
    background: #bac2c4;
}
.featured-block .event-item .event-details .event-info:before {
    top: 13px;
    height: 42px;
}
.event-item .event-details .event-info .event-title {
    display: block;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.06em;
    line-height: 19px;
    margin-bottom: 1px;
}
.featured-block .event-item .event-details .event-info .event-title {
    font-size: 14px;
    max-height: 38px;
    overflow: hidden;
}
.event-item .event-details .event-info .event-category {
    display: block;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.06em;
    line-height: 19px;
    color: #818080;
    margin-bottom: 3px;
}
.event-item .event-details .event-info .event-text {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.06em;
    line-height: 19px;
    /*height: calc(19px * 5);*/
    overflow: hidden;
    margin-bottom: 5px;
}
.event-item .event-details .event-info .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(184, 194, 196, 0.27);
    color: #191f21 !important;
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
    text-decoration: none !important;
    padding: 5px 10px;
}
.featured-block .event-item .event-details .event-info .read-more {
    font-size: 8px;
    padding: 3px 6px;
}
.event-item .event-details .event-info .read-more img {
    margin-left: 7px;
}
.featured-block .event-item .event-details .event-info .read-more img {
    width: 8px;
}
.featured-block .featured-title {
    display: block;
    font-weight: bold;
    font-size: 24px;
    line-height: 44px;
    text-transform: uppercase;
    margin: 40px auto;
}
/* Gallery */
.gallery-item {
    position: relative;
    display: block;
    width: 300px;
    max-width: 100%;
    height: 419px;
    color: #fff !important;
    text-decoration: none !important;
    margin: 50px auto 20px;
    z-index: 1;
}
.gallery-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #000 100%);
    opacity: 0.7;
    z-index: 2;
}
.gallery-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item .gallery-date {
    position: absolute;
    top: -34px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 86px;
    height: 95px;
    background: #fff;
    box-shadow: 3px -1px 4px rgba(0, 0, 0, 0.16);
    color: var(--color-default);
    font-family: "Goldman", serif;
    padding: 15px 20px;
    z-index: 3;
}
.gallery-item .gallery-date .month {
    display: block;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: -0.08em;
    line-height: 14px;
}
.gallery-item .gallery-date .day {
    display: block;
    font-weight: bold;
    font-size: 43px;
    letter-spacing: -0.08em;
    line-height: 40px;
    color: #ed1c24;
}
.gallery-item .gallery-date .year {
    display: block;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: -0.08em;
    line-height: 9px;
}
.gallery-item .gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    padding: 12px 40px;
    z-index: 3;
}
.gallery-item .gallery-info .gallery-title {
    display: block;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.06em;
    line-height: 19px;
    height: calc(19px * 2);
    overflow: hidden;
    margin-bottom: 2px;
}
.gallery-item .gallery-info .gallery-text {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    line-height: 19px;
    height: calc(19px * 4);
    overflow: hidden;
}
/* Video */
.videos-wrapper {
    position: relative;
    display: block;
    background: #ebebeb;
    padding: 80px 0;
}
.videos-wrapper .video-item {
    position: relative;
    display: block;
    width: 430px;
    max-width: 100%;
    color: var(--color-default);
    text-decoration: none !important;
    margin: 20px auto;
}
.videos-wrapper .video-item .video-published {
    display: block;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.06em;
    line-height: 19px;
    text-align: right;
}
.videos-wrapper .video-item .video-published .video-date {
    display: inline-block;
    color: #818080;
}
.videos-wrapper .video-item .video-img {
    display: block;
    width: 100%;
    height: 247px;
    overflow: hidden;
    margin-bottom: 8px;
}
.videos-wrapper .video-item .video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.videos-wrapper .video-item .video-title {
    display: block;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.06em;
    line-height: 26px;
}
.videos-wrapper .video-item .video-text {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    line-height: 19px;
    height: calc(19px * 3);
    color: #606060;
    overflow: hidden;
}
.pagination {
    margin-top: 50px;
    border: none !important;
}
.pagination .page-item .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    color: var(--color-default);
}
.videos-wrapper .pagination .page-item .page-link {
    font-size: 32px;
    line-height: 44px;
    color: rgba(25, 31, 33, 0.4);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link.active {
    color: var(--color-primary);
}
.pagination .page-item.disabled .page-link {
    opacity: 0.4;
}
.pagination .page-item:first-of-type .page-link img,
.pagination .page-item:last-of-type .page-link img {
    width: 37px;
    height: 37px;
    vertical-align: middle;
}
.videos-wrapper .pagination .page-item:first-of-type .page-link img,
.videos-wrapper .pagination .page-item:last-of-type .page-link img {
    width: 44px;
    height: 44px;
}
.leave-message {
    font-weight: normal;
    font-size: 26px;
    letter-spacing: -0.06em;
    color: #6f7e83;
    margin-bottom: 35px;
}
.project-gallery-page,
.news-event-page {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 50px;
}
.news-event-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.news-event-page .socials {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-align: end;
    width: auto;
    margin: 0;
}
.news-event-page .socials span {
    font-size: 24px;
    color: #707070;
}
.news-event-page .socials .fa-share-alt {
    color: var(--color-default);
    margin-left: 30px;
}

.project-gallery-page .project-title,
.news-event-page .news-event-title {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 41px;
    letter-spacing: -0.09em;
    line-height: 44px;
    text-align: center;
    margin-bottom: 10px;
}
.news-event-page .news-event-title {
    color: var(--color-primary);
    margin-bottom: 0;
    text-align: start;
}
.project-gallery-page .project-date,
.news-event-page .news-event-date {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
}
.news-event-page .news-event-date {
    text-align: start;
}
.project-gallery-page .project-text {
    display: block;
    font-weight: 500;
    font-size: 22px;
    line-height: 37px;
    text-align: center;
    margin: 60px auto;
}
.video-block {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.video-block video {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.project-gallery-slider .gallery-img {
    display: block;
    width: auto;
    height: 26.979vw /* 518/19.2 */;
    margin: 0 auto 40px;
    text-align: center;
    overflow: hidden;
}
.project-gallery-slider .gallery-img img {
    width: auto;
    height: 100%;
    object-fit: contain;
    opacity: 0.35 !important;
}
.project-gallery-slider .center .gallery-img img {
    opacity: 1 !important;
}
.owl-theme .owl-dots .owl-dot span {
    background: #818080;
    border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-primary);
}
.product-images-block {
    position: relative;
    display: block;
}
.product-images-block .product-images-item {
    position: relative;
    display: block;
    width: 100%;
    height: 332px;
    margin: 15px auto;
    text-decoration: none !important;
    z-index: 3;
    transition: var(--transition);
}
.product-images-block .product-images-item.height-2 {
    height: 694px;
}
.product-images-block .product-images-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}
.product-images-block .product-images-item:hover:before {
    opacity: 0.3;
}
.product-images-block .product-images-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-images-block .product-images-item .product-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 66px;
    background: #191f21;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.product-images-block .product-images-item:hover .product-title {
    top: 80px;
    opacity: 1;
}
.projects-block {
    position: relative;
    display: block;
    width: 100%;
}
.projects-block .project-item {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 352px;
    text-decoration: none !important;
    margin: 15px auto;
    overflow: hidden;
}
.projects-block .project-item .project-img {
    display: inline-block;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.projects-block .project-item .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.projects-block .project-item .project-info {
    display: inline-block;
    width: 50%;
    height: 100%;
    background: var(--color-default);
    padding: 45px 15px;
}
.projects-block .project-item .project-info .project-title {
    display: block;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.06em;
    line-height: 19px;
    margin-bottom: 10px;
    color: #fff;
}
.projects-block .project-item .project-info .project-text {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.06em;
    line-height: 19px;
    height: calc(19px * 12);
    overflow: hidden;
    color: #fff;
}
.post-single {
    display: block;
}
.post-single .post-title {
    display: block;
    font-weight: 900;
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 44px;
    margin: 50px auto;
}
.post-single .post-subtitle {
    display: block;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 44px;
    margin-bottom: 24px;
}
.featured-block {
    display: block;
    width: 100%;
    border-left: 1px solid #bac2c4;
    padding-left: 20px;
}
/* About */
.about-block {
    position: relative;
    display: block;
    min-height: 53.333vw /* 1024/19.2 */;
    overflow: hidden;
    z-index: 9;
}
.about-block:nth-of-type(2) {
    margin-top: 10.417vw /* 200/19.2 */;
}
.about-block > img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -18.4375vw /* -354/19.2 */;
    width: 63.646vw /* 1222/19.2 */;
    height: auto;
    object-fit: contain;
    z-index: -1;
}
.about-block:nth-of-type(2) > img {
    right: auto;
    left: -19.01vw /* -365/19.2 */;
    width: 67.708vw /* 1300/19.2 */;
}
.about-block .about-title {
    position: relative;
    display: block;
    font-weight: 900;
    font-size: 2.34375vw /* 45/19.2 */;
    height: 3.073vw /* 59/19.2 */;
    color: var(--color-primary);
    margin-top: 2.604vw /* 50/19.2 */;
    margin-bottom: 0.417vw /* 8/19.2 */;
}
.about-block .about-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: -5.46875vw /* -105/19.2 */;
    background: url("../images/Masaha-ABoutPage-Our-Mission-Icon.png") center
        no-repeat;
    background-size: contain;
    width: 4.115vw /* 79/19.2 */;
    height: 3.646vw /* 70/19.2 */;
}
.about-block .about-text {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 1.302vw /* 25/19.2 */;
    line-height: 1.771vw /* 34/19.2 */;
    color: #000;
    margin-bottom: 0;
}
.about-block .about-our-mission {
    padding-left: 2vw;
}
.about-block .about-our-vision {
    padding-left: 9vw;
}
.about-block .about-our-goal {
    padding-left: 14vw;
    margin-top: 3.8vw;
}
.about-block .about-our-values {
    padding-left: 8vw;
}
.why-masaha {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.why-masaha .why-text {
    display: inline-block;
    font-weight: 900;
    font-size: 62px;
    letter-spacing: -0.05em;
    line-height: 86px;
    color: var(--color-primary);
}
.why-masaha img {
    display: inline-block;
    height: 50px;
    margin-left: 30px;
    margin-right: -70px;
    z-index: 1;
}
.why-masaha .why-question {
    display: inline-block;
    font-weight: 900;
    font-size: 237px;
    letter-spacing: -0.05em;
    line-height: 330px;
}
.why-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    background: url("../images/DJI_0344.png") center no-repeat fixed;
    background-size: cover;
    padding: 10.417vw /* 200/19.2 */ 0;
    z-index: 2;
}
.why-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #4a3a3b;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.why-wrapper .why-text {
    display: block;
    font-weight: 500;
    font-size: 1.146vw /* 22/19.2 */;
    line-height: 1.5625vw /* 30/19.2 */;
    text-align: center;
    color: #fff;
    margin-bottom: 2.5vw;
}
.why-wrapper + footer {
    margin-top: 0;
}
.error-block {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px auto;
}
.error-block > img {
    display: block;
    width: 350px;
    max-width: 80%;
    object-fit: contain;
    margin: 0 auto;
}
.error-block > h1 {
    display: block;
    font-family: "Goldman", serif;
    font-weight: bold;
    font-size: 101px;
    letter-spacing: -0.06em;
    line-height: 115px;
    color: var(--color-primary);
}
.error-block > h3 {
    display: block;
    font-family: "Goldman", serif;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: -0.06em;
    line-height: 57px;
    color: var(--color-default);
}
.error-block > p {
    display: block;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: -0.06em;
    color: var(--color-default);
    margin-top: 10px;
}
/* Brands */
.brands-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    margin-top: 35px;
    margin-bottom: 50px;
}
.brands-filter .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    border-radius: 9px !important;
    background: #fff;
    border: 1px solid #eceff0;
    box-shadow: none !important;
    color: #6f7e83;
    font-family: "Goldman", serif;
    font-size: 16px;
    font-weight: bold;
    margin: 5px;
}
.brands-filter .btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff !important;
}
.brands-filter .btn img {
    width: auto;
    max-width: 80px;
    height: auto;
    max-height: 18px;
    object-fit: contain;
}
.brands-filter .btn.active img {
    filter: brightness(0) invert(1);
}
.products-not-found {
    display: block;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: #191f21;
    opacity: 0.7;
    text-align: center;
    margin: 100px auto 50px;
}
.products-not-found img {
    display: block;
    width: 500px;
    max-width: 80%;
    margin: 30px auto 0;
}
.products-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
/* Pre Loader*/
#preLoader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    z-index: 9999;
}
#preLoader.active {
    display: block;
    align-items: center;
    justify-content: center;
}
#preLoader img {
    position: fixed;
    top: 50%;
    /*margin: 200px auto;*/
    text-align: center;
    width: 100px;
    z-index: 99;
    -webkit-animation: rotate 1.5s forwards alternate-reverse infinite
        ease-in-out;
    animation: rotate 1.5s forwards alternate-reverse infinite ease-in-out;
}
@-webkit-keyframes rotate {
    0% {
        opacity: 0;
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        opacity: 1;
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) rotate(360deg);
    }
}

.side-wrapper {
    display: none;
}
.coming-soon {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    font-family: "Goldman", serif;
    font-weight: normal;
    font-size: 6.354vw /* 122/19.2 */;
    letter-spacing: -0.06em;
    line-height: 7.24vw /* 139/19.2 */;
    text-transform: uppercase;
    color: #191f21;
}
.coming-soon img {
    display: block;
    width: 19.01vw /* 365/19.2 */;
    max-width: 80%;
    margin-bottom: 2.083vw /* 40/19.2 */;
}
/* Responsive*/
@media screen and (max-width: 1599px) {
    .navbar {
        padding: 30px 0 20px;
    }
    .vertical-tabs .nav-tabs .nav-link {
        font-size: 26px;
    }
    .hero-wrapper {
        padding-top: 180px;
    }
    .hero-wrapper .hero-title {
        font-size: 54px;
        margin: 0 auto 30px;
    }
    .btn-outline-primary.view-all {
        font-size: 11px;
        line-height: 15px;
    }
    .btn-chat {
        left: 60px;
    }
    .btn-outline-secondary {
        width: 180px;
    }
    .search-wrapper .close-search {
        width: 36px;
        height: 36px;
        margin: 0 15px !important;
    }
    .popular-equipment-item {
        padding: 20px;
    }
    .products-slider.owl-carousel .owl-nav button.owl-next,
    .products-slider.owl-carousel .owl-nav button.owl-prev {
        top: -40px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    .products-slider.owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    .products-slider.owl-carousel .owl-nav button.owl-prev {
        right: 55px;
    }
    .search-wrapper.active .search-group {
        width: 100%;
    }
    .search-wrapper .btn-outline-secondary {
        font-size: 16px;
        width: 170px;
        height: 36px;
        position: absolute;
        top: 50px;
        right: 110px;
    }
    .search-group .input-group .input-group-prepend button {
        font-size: 16px;
        line-height: 16px;
        padding: 0 10px;
    }
    .search-wrapper.active .btn-primary {
        min-width: 130px;
        font-size: 14px;
        line-height: 26px;
    }
    .search-wrapper.active .search-group .input-group {
        height: 36px;
        max-width: 100%;
    }
    .search-wrapper.active .top-bar .right-content {
        margin-right: 0;
        margin-left: 0;
    }
    .search-wrapper .browse-products-block {
        margin-top: 35px;
    }
    .products-slider .product-item {
        width: 260px;
    }
    .products-slider .product-item .btn-outline-primary {
        font-size: 16px;
    }
    .equipments-wrapper .equipment-slider .equipment-item {
        width: 220px;
    }
    .hero-footer-wrapper .hero-footer {
        width: 100%;
        padding: 30px 10px;
    }
    .hero-footer-wrapper .hero-footer > div {
        margin: 0 15px;
    }
    .need-category {
        max-width: 330px;
        padding: 20px 20px 14px;
    }
    .need-category .category-details .category-title {
        font-size: 16px;
    }
    .masaha-service .service-img img {
        width: auto;
        max-height: 120px;
        object-fit: contain;
    }
    .masaha-service {
        padding-left: 20px;
        padding-right: 140px;
    }
    .equipments-wrapper .equipment-item {
        padding-top: 250px;
    }
    .equipments-wrapper .center .equipment-item {
        width: 450px;
        padding-top: 100px;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-from-series {
        font-size: 20px;
        line-height: 22px;
    }
    .equipments-wrapper .equipment-item .equipment-details .equipment-series {
        font-size: 18px;
        line-height: 22px;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-series {
        font-size: 30px;
        line-height: 34px;
    }
    .equipments-wrapper .equipment-item .equipment-details .equipment-code {
        font-size: 36px;
        line-height: 40px;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-code {
        font-size: 50px;
        line-height: 56px;
    }
    .equipments-wrapper .equipment-item .equipment-actions .btn {
        width: 180px;
        height: 46px;
    }
    .equipments-wrapper
        .equipment-item
        .equipment-actions
        .btn-outline-primary.view-all:after {
        width: 30px;
    }
    .equipments-wrapper .equipment-item ul.equipment-features li {
        margin: 0 10px;
    }
    .equipments-wrapper .equipment-item ul.equipment-features li .feature-icon {
        width: 28px;
        height: 28px;
    }
    .equipments-wrapper .equipment-item ul.equipment-features li .feature-info {
        font-size: 12px;
    }
    .popular-equipment-item .equipment-img {
        height: 200px;
    }
    /* .popular-equipment-item
        .equipment-details
        ul.equipment-features
        li:nth-of-type(2) {
        margin: 0 15px;
    } */
    .popular-equipment-item .btn-primary {
        height: 46px;
        font-size: 16px;
    }
    .popular-equipment-item .btn-primary.disabled .not-available {
        font-size: 8px;
        margin-top: 4px;
    }
    footer .search-group .input-group .input-group-prepend button {
        font-size: 12px;
        padding: 0 5px;
    }
    .search-group .input-group .input-group-prepend {
        padding: 0 20px;
    }
    .product-page {
        padding-top: 200px;
    }
    .product-page .from-series {
        font-size: 24px;
        line-height: 26px;
    }
    .product-page .product-title {
        font-size: 38px;
        line-height: 40px;
    }
    .product-page .product-code {
        font-size: 76px;
        line-height: 80px;
    }
    .product-page .product-info li h1 {
        font-size: 40px;
        line-height: 44px;
    }
    .product-page .product-info li p {
        font-size: 18px;
    }
    .product-page .product-short-details .from-series {
        font-size: 14px;
        line-height: 16px;
    }
    .product-page .product-short-details .product-title {
        font-size: 22px;
        line-height: 24px;
    }
    .product-page .product-short-details .product-code {
        font-size: 46px;
        line-height: 50px;
    }
    .upload-file .btn {
        height: 60px;
        font-size: 10px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .upload-file .btn img {
        height: 36px;
        margin-right: 5px;
    }
    .thank-wrapper .thank-you {
        font-size: 64px;
        line-height: 70px;
    }
    .thank-wrapper .for-choosing {
        font-size: 24px;
        line-height: 24px;
    }
    .thank-wrapper .for-choosing img {
        height: 22px;
        margin: 0 15px;
    }
    .mega-menu .product-item ul.product-features li {
        display: inline-block;
        margin: 0 10px 5px 10px;
        text-align: center;
    }
    .mega-menu .product-item .product-details .product-logo {
        height: 36px;
    }
    .mega-menu .product-item .product-details .product-code {
        font-size: 26px;
        line-height: 28px;
        text-align: start;
    }
    .mega-menu .product-item ul.product-features li .feature-icon {
        width: 30px;
        height: 30px;
    }
    .mega-menu .product-item ul.product-features li .feature-info {
        font-size: 14px;
        line-height: 16px;
    }
    .mega-menu .product-item .product-img {
        /*max-height: 250px;*/
    }
    footer .copy-rights {
        font-size: 16px;
    }
    .mega-menu .product-item .product-details .product-logo .product-popular {
        font-size: 12px;
    }
    .equipments-wrapper {
        margin: 250px 0 0;
    }
    .search-group .input-group {
        height: 60px;
    }
    .location-wrapper .location-title img {
        height: 36px;
    }
    .location-wrapper .serving-you {
        font-size: 42px;
        line-height: 48px;
    }
    .location-wrapper ul.countries-list li {
        font-size: 20px;
        line-height: 26px;
    }
    .location-wrapper ul.countries-list li a {
        font-size: 16px;
        line-height: 20px;
    }
    .rent-buy-categories .explore-categories-title {
        font-size: 46px;
    }
    .rent-buy-categories .explore-categories-title div {
        font-size: 80px;
        line-height: 84px;
    }
    .request-quotation .request-quotation-title {
        font-size: 44px;
        line-height: 50px;
    }
    .request-quotation .form-control {
        min-height: 56px;
    }
    .gallery-item {
        height: 350px;
    }
    .post-single .post-title {
        font-size: 24px;
        line-height: 34px;
    }
    .product-page .product-info {
        margin-top: 50px;
    }
    ul.countries-list li {
        font-size: 24px;
        line-height: 28px;
    }
    ul.countries-list li a {
        font-size: 20px;
        line-height: 24px;
    }
    .location-menu-wrapper .location-title {
        height: 160px;
    }
    .location-menu-wrapper .location-title .masaha-img {
        height: 30px;
    }
    .location-menu-wrapper .location-title .location-global {
        font-size: 46px;
    }
    .location-country .country-map {
        width: 120px;
        height: 160px;
    }
    .location-country .country-name {
        right: 170px;
        bottom: 30px;
    }
    .location-menu-wrapper ul.language-menu li a {
        font-size: 20px;
    }
    .location-menu-wrapper .close-location {
        margin-top: 0;
    }
    .mega-menu {
        height: calc(100vh - 134px);
    }
}
@media screen and (max-width: 1199px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .btn-chat {
        left: 15px;
    }
    .navbar-nav > .nav-item > .nav-link {
        font-size: 14px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .search-wrapper.active .btn-primary {
        min-width: 80px;
        font-size: 12px;
        line-height: 20px;
    }
    .hero-footer-wrapper .hero-footer {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        margin: 20px auto -150px;
    }
    .hero-footer-wrapper .hero-footer > div {
        margin: 15px auto;
    }
    .hero-footer .need-category,
    .hero-footer .masaha-service {
        width: 360px;
        max-width: 100%;
    }
    .equipments-wrapper {
        margin: 200px 0 0;
    }
    .categories-wrapper {
        padding-top: 100px;
    }
    .categories-filter {
        padding: 0 20px 50px;
    }
    .checkboxes-group .checkbox-container {
        padding-left: 45px;
    }
    .checkboxes-group .checkbox-container .category-item .category-icon {
        width: 80px;
    }
    .location-wrapper > img {
        left: 40%;
    }

    .rent-buy-categories .category-item {
        width: 250px;
        height: 280px;
        margin: 20px 20px 20px 0;
    }
    .rent-buy-categories .category-item .category-icon {
        height: 80px;
    }
    .rent-buy-categories .explore-categories-title {
        width: 530px;
        height: 140px;
    }
    .rent-buy-categories .explore-categories-title div {
        font-size: 70px;
        line-height: 76px;
    }
    .rent-buy-categories .category-item .category-info .category-title {
        font-size: 18px;
        line-height: 22px;
    }
    footer .get-touch {
        display: block;
        margin-top: 40px;
        text-align: start;
        color: #455157;
    }
    .product-page .product-short-details .btn-outline-primary.btn-stock {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .product-page .product-info li {
        margin-bottom: 100px;
    }
    .product-page .product-info li h1 {
        font-size: 38px;
        line-height: 40px;
    }
    .product-page .product-info li p {
        font-size: 16px;
    }
    .selected-product {
        height: 18vw;
    }
    .select-products .checkbox-container .product-item ul.product-features {
        margin-left: 30px;
    }
    .select-products .checkbox-container .product-item:after {
        width: 70px;
    }
    .select-products .checkbox-container .checkmark {
        right: 13px;
    }
    .request-quotation .d-flex {
        display: block !important;
        text-align: center;
        margin: 0 auto;
    }
    .thank-wrapper .thank-you {
        font-size: 54px;
        line-height: 60px;
    }
    .thank-wrapper .for-choosing {
        font-size: 20px;
        line-height: 22px;
    }
    .thank-wrapper .for-choosing img {
        height: 16px;
    }
    .thank-wrapper .contacted-by {
        font-size: 18px;
        line-height: 22px;
    }
    ul.countries-list li {
        font-size: 20px;
        line-height: 24px;
    }
    ul.countries-list li a {
        font-size: 18px;
        line-height: 20px;
    }
    footer .certifications-block {
        margin-top: 40px;
    }
    footer .certifications-block .certifications-images img {
        max-height: 64px;
    }
    footer .get-touch .masaha-email {
        font-size: 20px;
        margin-top: 10px;
    }
    footer .get-touch .masaha-tel {
        font-size: 50px;
    }
    footer .get-touch .masaha-working-hours {
        font-size: 18px;
    }
    footer .get-touch .masaha-address {
        font-size: 16px;
    }
    .product-images-block .product-images-item {
        height: 250px;
    }
    .product-images-block .product-images-item.height-2 {
        height: 530px;
    }
    .product-page ul.product-features li .feature-icon {
        width: 48px;
        height: 48px;
    }
    .product-page ul.product-features li {
        margin: 0 40px 30px 0;
    }
    .product-page ul.product-features li .feature-info {
        font-size: 22px;
    }
    .collapse-category:after {
        right: 0;
    }
    .product-page .product-title {
        font-size: 30px;
        line-height: 36px;
    }
    .product-page .product-code {
        font-size: 60px;
        line-height: 66px;
    }
    .select-products .checkbox-container,
    .selected-product {
        width: 100%;
        max-width: 600px;
        margin: 20px auto;
    }
    .product-page .product-text {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 991px) {
    .navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar .navbar-brand .gate-developments {
        display: none;
    }
    .equipments-wrapper .equipments-title > div:first-of-type {
        font-size: 28px;
    }
    .equipments-wrapper .equipments-title > div:nth-of-type(2) {
        font-size: 34px;
    }
    .equipments-wrapper .equipments-title .ready-for {
        font-size: 16px;
        line-height: 18px;
    }
    .equipments-wrapper .equipment-slider {
        margin-top: -175px;
        height: auto;
    }
    .equipments-wrapper .equipment-item {
        width: 200px;
        padding-top: 260px;
        margin: 0 auto;
    }
    .equipments-wrapper .center .equipment-item {
        width: 250px;
        height: auto;
        padding-top: 95px;
        margin: 0 auto;
    }
    .equipments-wrapper .center .equipment-item .equipment-img {
        padding-top: 0;
        height: 300px;
    }
    .equipments-wrapper .center .equipment-item .equipment-img:before {
        width: 200px;
        height: 230px;
    }
    .equipments-wrapper .equipment-item .equipment-details {
        flex-flow: column;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-from-series {
        font-size: 16px;
        line-height: 20px;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-series {
        font-size: 24px;
        line-height: 30px;
    }
    .equipments-wrapper
        .center
        .equipment-item
        .equipment-details
        .equipment-code {
        font-size: 44px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .popular-equipment-header {
        display: block;
    }
    .popular-equipment-header .equipment-search {
        margin-top: 20px;
    }
    .popular-equipment-item .equipment-img {
        height: 140px;
    }
    .popular-equipment-item .btn-group-toggle {
        height: 40px;
    }
    .popular-equipment-item .btn-group-toggle .btn {
        font-size: 16px;
        line-height: 18px;
    }
    .popular-equipment-item .equipment-title {
        font-size: 14px;
        line-height: 16px;
    }
    .location-wrapper .location-title {
        font-size: 44px;
        line-height: 48px;
    }
    .location-wrapper .location-title img {
        height: 36px;
    }
    .location-wrapper .serving-you {
        font-size: 40px;
        line-height: 42px;
    }
    .rent-buy-wrapper > img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .rent-buy-wrapper .rent-buy-tabs {
        position: relative;
        top: 0;
        transform: none;
        padding: 200px 0 100px;
    }
    .rent-buy-tabs .nav-tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin-bottom: 40px;
    }
    .rent-buy-tabs .nav-tabs .nav-link {
        width: 60%;
        height: 220px;
        padding: 40px 60px 0;
    }
    .rent-buy-tabs .nav-tabs .nav-link:last-of-type {
        margin-top: 0;
        padding-top: 40px !important;
        margin-left: -10%;
        padding-left: calc(10% + 60px);
    }
    .rent-buy-tabs .nav-tabs .nav-link:last-of-type.active {
        /*padding-left: 10%;*/
    }
    .rent-buy-categories .category-item.empty {
        display: none;
    }
    .rent-buy-categories .category-item {
        width: 220px;
        height: 250px;
        padding: 50px 20px 25px;
    }
    .rent-buy-categories .explore-categories-title {
        width: 100%;
        height: auto;
        margin: 20px auto !important;
    }
    .rent-buy-categories .category-item .category-info .category-title {
        font-size: 16px;
        line-height: 20px;
    }
    .package-block.golden-pack .btn-outline-primary {
        max-width: 90%;
    }
    .maintenance-wrapper {
        padding-bottom: 150px;
    }
    .partners-wrapper .partners-title {
        font-size: 40px;
        line-height: 46px;
        margin: 50px auto;
    }
    .partners-wrapper .partners-title img {
        height: 36px;
    }
    .product-page:before {
        display: none;
    }
    .product-page .thumbnail-carousel {
        margin-bottom: 40px;
    }
    .product-page .product-info {
        margin-top: 100px;
    }
    .selected-product {
        margin-top: 30px;
    }
    .request-quotation,
    .thank-wrapper {
        background: #f6f6f6;
        border-radius: 50px;
        padding: 50px;
        margin-bottom: 50px;
    }
    .request-quotation .d-flex {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .location-menu-wrapper {
        padding-top: 120px;
    }
    ul.countries-list li a {
        font-size: 16px;
        line-height: 18px;
    }
    .vertical-tabs .nav-tabs {
        display: flex;
        flex-flow: row;
        align-items: end;
        justify-content: space-evenly;
    }
    .vertical-tabs .nav-tabs .nav-link {
        display: inline-block;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        margin-bottom: 50px;
    }
    .vertical-tabs .nav-tabs .nav-link div {
        display: inline-block;
    }
    .vertical-tabs .nav-tabs .nav-link.active:before,
    .vertical-tabs .nav-tabs .show > .nav-link:before {
        content: "";
        position: absolute;
        top: auto;
        bottom: -10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 5px;
    }
    .mega-menu .product-item {
        max-width: 350px;
    }
    footer {
        padding-top: 60px;
        margin-top: 100px;
    }
    .footer-logo {
        width: 400px;
        margin-bottom: 50px;
    }
    .footer-logo {
        text-align: center;
        margin: 0 auto 40px;
    }
    .your-gate-wrapper {
        align-items: center;
        justify-content: center;
        margin: 0 auto 40px;
    }
    footer .search-group {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    footer .search-group .input-group {
        height: 56px;
        margin-bottom: 50px;
    }
    footer .get-touch {
        text-align: center;
    }
    footer .get-touch .masaha-tel {
        font-size: 60px;
    }
    footer .get-touch .masaha-email,
    footer .get-touch .masaha-address,
    footer .get-touch .masaha-working-hours {
        font-size: 18px;
    }
    footer .certifications-block {
        margin-top: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    footer .certifications-block .certifications-images {
        justify-content: center;
    }
    footer .footer-bottom {
        position: relative;
        padding-top: 60px;
        margin: 20px auto;
        text-align: center;
    }
    footer .footer-bottom .socials {
        position: absolute;
        top: -55px;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }
    footer .privacy-policy,
    footer .copy-rights {
        text-align: center;
    }
    footer .copy-rights {
        margin-top: 10px;
    }
    footer .made-with {
        margin-top: 25px;
    }
    .about-block {
        min-height: auto;
    }
    .about-block > img {
        display: none;
    }
    .page-title {
        font-size: 32px;
        line-height: 38px;
        margin: 30px auto 20px;
    }
    .page-text {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-bottom: 15px !important;
    }
    ul.page-list li {
        font-size: 16px;
        padding-left: 20px;
    }
    ul.page-list li:before {
        top: 7px;
        width: 10px;
        height: 10px;
    }
    .about-block:nth-of-type(2) {
        margin-top: 40px;
    }
    .about-block .about-our-mission,
    .about-block .about-our-vision,
    .about-block .about-our-goal,
    .about-block .about-our-values {
        padding-left: 30px;
    }
    .about-block .about-title {
        font-size: 24px;
        height: auto;
        margin-top: 20px;
        margin-bottom: 5px;
    }
    .about-block .about-title:before {
        top: 7px;
        left: -30px;
        width: 20px;
        height: 20px;
    }
    .about-block .about-text {
        font-size: 16px;
        line-height: 20px;
    }
    .why-wrapper .why-text {
        font-size: 16px !important;
        line-height: 20px !important;
        margin-bottom: 20px !important;
    }
    .popular-equipment-item .btn-primary {
        height: 36px;
        font-size: 14px;
    }
    .request-quotation .request-quotation-title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 20px;
    }
    .leave-message {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .request-quotation .form-control {
        min-height: 50px;
        font-size: 16px;
        padding: 20px 35px;
    }
    .contact-page #map {
        height: 80vh;
    }
    .contact-block {
        padding: 50px 0;
    }
    .contact-block .contact-title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 10px;
    }
    .contact-block .contact-text {
        font-size: 20px;
    }
    .contact-information .contact-info .contact-icon {
        width: 48px;
        height: 48px;
    }
    .contact-information .contact-info .contact-title {
        font-size: 20px;
        line-height: 24px;
        margin: 20px auto;
    }
    .contact-information .contact-info .contact-link.phone-num {
        font-size: 36px;
    }
    .contact-information .contact-info .contact-link {
        font-size: 20px;
    }
    .contact-links {
        margin-top: 50px;
    }
    .contact-links a {
        font-size: 20px;
    }
    .contact-links .btn-primary {
        margin-top: 50px !important;
    }
    .contact-block .socials {
        margin: 50px auto 0;
    }
    .gallery-item {
        height: 300px;
    }
    .gallery-item .gallery-info {
        position: absolute;
        padding: 12px 20px;
    }
    .product-images-block .product-images-item {
        height: 250px !important;
        max-width: 400px;
    }
    .featured-block {
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid #bac2c4 !important;
        margin-top: 20px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .product-page .product-gallery {
        position: relative;
        margin-top: 0;
        top: 0;
    }
    .product-page .main-carousel .splide__slide img {
        max-height: 300px;
    }
    .related-products {
        margin: 100px auto 0;
    }
    .selected-product {
        justify-content: flex-start;
        height: auto;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    .selected-product .product-img {
        min-width: 200px;
        width: 200px;
        height: 260px;
        margin: 0;
    }
    .selected-product .product-details {
        width: calc(100% - 238px);
    }
    .selected-product .product-details .from-series {
        font-size: 18px;
        line-height: 24px;
    }
    .selected-product .product-details .product-title {
        font-size: 24px;
        line-height: 28px;
    }
    .selected-product .product-details .product-code {
        font-size: 44px;
        line-height: 50px;
    }
    .selected-product .product-details .product-details-title {
        font-size: 14px;
        line-height: 18px;
    }
    .selected-product .product-details .product-text {
        font-size: 14px;
        line-height: 18px;
        height: calc(4 * 18px);
    }
    .selected-product .remove-product {
        position: absolute;
        top: 0;
        right: 0;
    }
    .selected-product .remove-product img {
        width: 16px;
    }
    .page-info .page-info-title {
        font-size: 16px;
        line-height: 26px;
    }
    .page-info .page-info-phone {
        font-size: 20px;
        line-height: 30px;
    }
    .page-info .page-info-mail {
        font-size: 16px;
        line-height: 26px;
    }
    .privacy-title {
        font-size: 20px;
        line-height: 26px;
    }
    .product-page .product-category {
        position: relative;
        display: block;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: 30px;
    }
    .error-block {
        margin: 20px auto;
    }
    .error-block > img {
        width: 150px;
        margin: 0 auto;
    }
    .error-block > h1 {
        font-size: 64px;
        line-height: 80px;
    }
    .error-block > h3 {
        font-size: 30px;
        line-height: 36px;
    }
    .error-block > p {
        font-size: 14px;
        margin-top: 10px;
    }
    .product-page .col-lg-5 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .project-gallery-slider .gallery-img {
        margin: 0 auto 10px;
    }
    .search-wrapper.active .browse-categories {
        display: none;
    }
    .search-wrapper.active .browse-products {
        width: 100%;
    }
    .navbar .top-links .site-tel {
        font-size: 24px;
    }
}
@media screen and (max-width: 767px) {
    body {
        padding-top: 108px;
    }
    .navbar {
        position: fixed;
        top: 0;
        height: 108px;
        background-color: #fff;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
        padding: 18px 0;
    }
    .navbar .navbar-brand {
        margin-top: 0;
    }
    .navbar .navbar-brand img {
        height: 50px;
    }
    .navbar .navbar-brand .gate-developments {
        display: none;
    }
    .collapse:not(.show) {
        display: block;
    }
    .navbar .navbar-nav {
        display: flex;
        flex-flow: row;
    }
    .navbar .top-links {
        bottom: 0;
        padding-top: 48px;
    }
    .top-links li:first-of-type {
        position: absolute;
        top: 0;
        right: 0;
    }
    .navbar .top-links .nav-link img {
        width: 19px;
        height: 19px;
        object-fit: contain;
        object-position: center;
    }
    .navbar-nav > .nav-item > .nav-link.toggle-search {
        display: none;
    }
    .navbar .top-links .site-tel {
        font-size: 17px;
        font-weight: 900;
        text-align: end;
    }
    .navbar .top-links .site-email {
        margin-top: 0;
    }
    .navbar .toggle-menu img:first-of-type {
        display: block;
    }
    .navbar .toggle-menu img:last-of-type {
        display: none;
    }
    .navbar .toggle-menu.active img:first-of-type {
        display: none;
    }
    .navbar .toggle-menu.active img:last-of-type {
        display: block;
    }
    /* Sidebar*/
    .side-wrapper {
        display: block;
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        margin: 0 auto;
        height: 0;
        background: #fff url("../images/Mask Group 18876.png") center / cover
            no-repeat;
        padding: 30px 0;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        z-index: 9999;
        transition: var(--transition);
    }
    .side-wrapper.active {
        height: calc(100vh - 108px);
        opacity: 1;
        visibility: visible;
    }
    .side-wrapper::-webkit-scrollbar {
        width: 4px;
    }
    .side-wrapper::-webkit-scrollbar-thumb {
        background: #bbb;
    }
    /* Side Menu */
    ul.side-menu {
        position: relative;
        display: block;
        margin: 0;
        z-index: 1;
    }
    ul.side-menu > li {
        position: relative;
        display: block;
        padding: 18px 30px;
        border-bottom: 1px solid #e7e8e8;
    }
    ul.side-menu > li:last-of-type {
        border-bottom: none;
    }
    ul.side-menu > li > a {
        position: relative;
        display: block;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: -0.66px;
        color: var(--color-default);
        text-decoration: none !important;
        transition: var(--transition);
    }
    ul.side-menu .dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--color-default);
        transition: var(--transition);
    }
    ul.side-menu .dropdown .dropdown-toggle[aria-expanded="true"] {
        font-weight: 800;
        color: var(--color-primary);
    }
    ul.side-menu .dropdown .dropdown-toggle:after {
        margin-left: auto;
        margin-right: 0;
        float: right;
        vertical-align: middle;
    }
    ul.side-menu .dropdown .dropdown-toggle[aria-expanded="false"]:after {
        color: var(--color-default);
    }
    ul.side-menu .dropdown .dropdown-toggle[aria-expanded="true"]:after {
        color: var(--color-primary);
    }
    ul.side-menu .dropdown-menu {
        position: relative !important;
        background: none;
        border: none;
        box-shadow: none;
        transform: none !important;
        float: none !important;
        margin-top: 15px;
        margin-bottom: 0;
    }
    ul.side-menu .dropdown-menu li {
        position: relative;
        margin-bottom: 16px;
    }
    ul.side-menu .dropdown-menu li:last-of-type {
        margin-bottom: 0;
    }
    ul.side-menu .dropdown-menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.66px;
        color: var(--color-default);
        padding: 0;
    }
    ul.side-menu .dropdown-menu li a i {
        font-size: 13px;
        float: right;
    }
    ul.side-menu .dropdown-menu li a.active i {
        transform: rotate(45deg);
    }
    ul.side-menu .dropdown-menu li .submenu {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        margin-left: 30px;
        margin-right: 0;
    }
    ul.side-menu .dropdown-menu li .submenu a {
        font-size: 18px;
        font-weight: normal;
        letter-spacing: -0.59px;
        color: #606060;
        text-transform: capitalize;
    }
    ul.side-menu .dropdown-item:focus,
    ul.side-menu .dropdown-item:hover {
        background: none;
    }
    .location-menu-wrapper .navbar-nav {
        position: absolute;
        top: -80px;
        right: 0;
    }
    .location-menu-wrapper .location-title {
        display: block;
        height: auto;
        margin: 50px auto;
    }
    .location-menu-wrapper .location-title .masaha-img {
        display: block;
        height: 24px;
        margin: 10px auto;
    }
    .location-menu-wrapper .location-title .location-global {
        font-size: 30px;
        line-height: 34px;
        margin: 10px auto;
    }
    .location-country .country-map {
        width: 100px;
        height: 100px;
    }
    .row-cols-4 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    ul.countries-list li {
        margin: 10px auto;
    }
    ul.countries-list li {
        font-size: 18px;
        line-height: 20px;
    }
    ul.countries-list li a {
        font-size: 14px;
        line-height: 16px;
    }
    .location-wrapper ul.countries-list li {
        font-size: 18px;
        line-height: 22px;
    }
    .location-wrapper ul.countries-list li a {
        font-size: 12px;
        line-height: 14px;
    }
    .btn-chat {
        bottom: -66px;
    }
    .mega-menu {
        height: calc(100vh - 120px);
    }
    .hero-wrapper {
        padding-top: 150px;
        padding-bottom: 50px;
        margin-top: -113px;
    }
    .hero-wrapper .hero-title {
        font-size: 30px;
        line-height: 40px;
    }
    .hero-wrapper .hero-title div img {
        width: 24px;
        height: 24px;
        margin: 2px;
    }
    .search-wrapper .browse-products {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 0 10px !important;
        transition: var(--transition);
    }
    .categories-filter {
        width: 100%;
        margin: 0 auto 30px;
    }
    .checkboxes-group .checkbox-container {
        display: inline-block;
        width: 48%;
    }
    .search-group .input-group .input-group-prepend {
        display: none;
    }
    .search-group .input-group {
        height: 50px;
        padding-left: 15px;
    }
    .search-group .input-group .btn-primary {
        min-width: auto;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 16px;
    }
    .search-wrapper .close-search {
        width: 30px;
        height: 30px;
        margin: 0 10px !important;
    }
    .side-wrapper .search-group .input-group .btn-primary {
        padding-left: 1px;
        padding-right: 10px;
        font-size: 14px;
    }
    .services-block {
        display: block;
        text-align: center;
    }
    .services-block .why-masaha {
        margin: 15px;
    }
    .service-item {
        display: block;
        margin: 15px;
    }
    .service-item .service-icon {
        display: block;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-footer-wrapper {
        display: none;
    }
    .hero-footer-wrapper .hero-footer {
        display: block;
    }
    .equipments-wrapper {
        padding: 0;
        margin: 50px auto;
    }
    .equipments-wrapper .equipment-slider {
        margin-top: 0;
    }
    .equipments-wrapper .equipment-item {
        display: none;
    }
    .equipments-wrapper .center .equipment-item {
        display: block;
        padding-top: 70px;
    }
    .equipments-wrapper .center .equipment-item .equipment-img {
        padding-top: 0;
        height: 200px;
    }

    .equipments-wrapper .equipment-slider-wrapper .btn-outline-secondary {
        top: 34px;
        display: inline-flex;
        height: 36px;
        width: 180px;
        font-size: 16px;
    }
    .products-slider.owl-carousel .owl-nav button.owl-next,
    .products-slider.owl-carousel .owl-nav button.owl-prev,
    .equipment-slider.owl-carousel .owl-nav button.owl-next,
    .equipment-slider.owl-carousel .owl-nav button.owl-prev {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    .equipment-slider.owl-carousel .owl-nav button.owl-next,
    .equipment-slider.owl-carousel .owl-nav button.owl-prev {
        top: 30px;
    }
    .equipments-wrapper .equipment-item .equipment-details,
    .equipments-wrapper .equipment-item ul.equipment-features {
        align-items: center;
        justify-content: start;
    }
    .equipments-wrapper .equipment-item .equipment-details > div:first-of-type {
        display: block;
        width: 100%;
        margin: 0;
        text-align: start;
    }
    .equipments-wrapper
        .equipment-item
        .equipment-details
        > div:nth-of-type(2) {
        width: 100%;
        text-align: start;
    }
    .equipments-wrapper .equipment-item .equipment-actions {
        margin-top: 10px;
    }
    .owl-theme .owl-nav {
        margin: 0;
    }
    .equipments-wrapper .equipments-title {
        line-height: 30px;
    }
    .equipments-wrapper .equipments-title > div:first-of-type {
        font-size: 24px;
    }
    .equipments-wrapper .equipments-title > div:nth-of-type(2) {
        font-size: 24px;
    }
    .equipments-wrapper .equipments-title .ready-for {
        font-size: 14px;
    }
    .equipments-wrapper .equipments-title .ready-for:before,
    .equipments-wrapper .equipments-title .ready-for:after {
        width: 25px;
    }
    .categories-wrapper {
        padding-top: 50px;
    }
    .popular-equipment-header .popular-equipment-title {
        font-size: 24px;
        line-height: 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .location-wrapper {
        padding: 100px 0 0;
        margin: 50px 0;
    }
    .location-wrapper > img {
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
    }
    .location-wrapper .serving-you {
        font-size: 24px;
        line-height: 26px;
    }
    .location-wrapper .row-cols-4 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .location-wrapper ul.countries-list li {
        font-size: 16px;
        line-height: 20px;
    }
    .location-wrapper ul.countries-list li a {
        font-size: 14px;
        line-height: 14px;
    }
    .rent-buy-tabs .nav-tabs .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 20px !important;
        text-align: center;
    }
    .rent-buy-tabs .nav-tabs .nav-link:last-of-type {
        padding: 20px !important;
    }
    .rent-buy-tabs .nav-tabs .nav-link .tab-title {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 0;
    }
    .rent-buy-tabs .nav-tabs .nav-link .tab-text {
        display: none;
    }
    .rent-buy-content h3 {
        font-size: 22px;
        line-height: 24px;
    }
    .rent-buy-categories .category-item {
        width: 45%;
        height: 220px;
        padding: 25px 15px 15px;
        margin: 2% !important;
    }
    .rent-buy-categories .explore-categories-title {
        font-size: 24px;
        line-height: 28px;
        width: 98%;
        height: auto;
    }
    .rent-buy-categories .explore-categories-title div {
        font-size: 36px;
        line-height: 42px;
    }
    .rent-buy-categories .category-item .category-icon {
        height: 48px;
    }
    .rent-buy-categories .category-item .category-info {
        display: block;
        margin-top: 20px;
    }
    .rent-buy-categories .category-item .category-info .category-title {
        display: block;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        margin-bottom: 15px;
    }
    .popular-equipment-item {
        width: 260px;
        max-width: 100%;
        padding: 15px;
    }
    .maintenance-wrapper .maintenance-hl-block {
        display: block;
        text-align: center;
    }
    .maintenance-wrapper .maintenance-hl-block > img {
        display: block;
        height: 36px;
        object-fit: contain;
        margin-left: auto;
        margin-right: auto;
    }
    .maintenance-wrapper .maintenance-hl-block .maintenance-high-level {
        display: inline-flex;
        margin: 15px auto;
    }
    .maintenance-wrapper .maintenance-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 0;
    }
    .maintenance-packages {
        display: block;
        text-align: center;
    }
    .package-block {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    .package-block.standard-pack {
        max-width: 100%;
        margin: 100px auto;
    }
    .maintenance-wrapper {
        padding-bottom: 300px;
    }
    .partners-wrapper .partners-title {
        display: block;
        font-size: 36px;
        line-height: 40px;
        margin: 20px auto;
    }
    .partners-wrapper .partners-title img {
        height: 30px;
        margin-bottom: 5px;
    }
    footer .search-group .input-group .btn-primary {
        font-size: 14px;
        min-width: auto;
    }
    ul.footer-menu li a {
        font-size: 13px;
        line-height: 16px;
    }
    footer .get-touch .get-touch-text {
        font-size: 24px;
    }
    footer .get-touch .masaha-email,
    footer .get-touch .masaha-address,
    footer .get-touch .masaha-working-hours {
        font-size: 14px;
        margin: 5px auto;
    }
    footer .get-touch .masaha-tel {
        font-size: 34px;
    }
    .search-wrapper.active {
        height: auto;
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .search-wrapper.active:before {
        top: 0;
    }
    .search-wrapper.active .browse-products {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .products-slider .product-item {
        width: 220px;
    }
    .products-slider .product-item .product-img {
        height: 120px;
    }
    .product-page .from-series {
        font-size: 18px;
        line-height: 20px;
    }
    .product-page .product-title {
        font-size: 26px;
        line-height: 30px;
    }
    .product-page .product-code {
        font-size: 50px;
        line-height: 60px;
    }
    .product-page ul.product-features li {
        margin: 0 20px 20px 20px;
    }
    .product-page ul.product-features li .feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
    }
    .product-page ul.product-features li .feature-info {
        font-size: 18px;
        line-height: 20px;
    }
    .product-page .product-info {
        margin-top: 50px;
    }
    .product-page .product-info li {
        margin-bottom: 50px;
    }
    .product-page .product-info li h1 {
        font-size: 18px;
        line-height: 18px;
    }
    .product-page .product-info li p {
        font-size: 14px;
    }
    .related-products {
        margin: 100px auto 50px;
    }
    .related-products .related-products-title {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .request-quotation .request-quotation-title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .request-quotation,
    .thank-wrapper {
        border-radius: 35px;
        padding: 40px 30px;
    }
    .request-quotation .form-control {
        min-height: 48px;
        font-size: 16px;
    }
    .request-quotation .d-flex {
        display: block !important;
    }
    .thank-wrapper .thank-you {
        font-size: 36px;
        line-height: 40px;
    }
    .thank-wrapper .for-choosing {
        font-size: 18px;
        line-height: 20px;
    }
    .thank-wrapper .for-choosing img {
        height: 14px;
    }
    .thank-wrapper .contacted-by {
        font-size: 16px;
        line-height: 20px;
    }
    .need-help-block {
        margin: 70px auto 35px;
    }
    .need-help-block .need-help {
        font-size: 20px;
    }
    .need-help-block .chat-us {
        font-size: 24px;
    }
    .need-help-block img {
        top: -40px;
        width: 64px;
    }
    .search-group .input-group .form-control {
        font-size: 14px;
    }

    footer .certifications-block .certifications-images img {
        max-height: 48px;
    }
    .why-masaha .why-text {
        font-size: 30px;
        line-height: 36px;
    }
    .why-masaha img {
        height: 22px;
        margin-left: 10px;
        margin-right: -30px;
    }
    .why-masaha .why-question {
        font-size: 140px;
        line-height: 200px;
    }
    .page-banner {
        min-height: 120px;
    }
    .page-title {
        font-size: 24px;
        line-height: 30px;
    }
    .contact-links .btn-primary {
        height: 50px;
        padding-left: 25px;
        padding-right: 25px;
        font-size: 18px;
    }
    .contact-block .socials span {
        font-size: 24px;
        margin: 0 10px;
    }
    .contact-block .contact-title {
        font-size: 30px;
        line-height: 36px;
    }
    .btn-outline-primary {
        height: 50px;
        font-size: 16px;
    }
    .subscribe-newsletter .btn-outline-primary {
        padding-left: 25px;
        padding-right: 25px;
    }
    .project-gallery-page .project-title,
    .news-event-page .news-event-title {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .project-gallery-page .project-date,
    .news-event-page .news-event-date {
        font-size: 18px;
        line-height: 22px;
    }
    .project-gallery-page .project-text {
        font-size: 16px;
        line-height: 20px;
        margin: 30px auto;
    }
    #map {
        height: 250px;
    }
    .media-title {
        font-size: 24px;
        line-height: 30px;
        margin: 20px auto;
    }
    :not(.featured-block) .event-item {
        flex-flow: column;
        width: 100%;
        max-width: 250px;
        padding-top: 40px;
    }
    :not(.featured-block) .event-item .event-img {
        min-width: 100%;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    :not(.featured-block) .event-item .event-details {
        display: block;
    }
    :not(.featured-block) .event-item .event-details .event-date {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto !important;
        min-width: 64px;
        width: 64px;
        height: 80px;
    }
    :not(.featured-block) .event-item .event-details .event-info {
        padding-top: 16px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    :not(.featured-block) .event-item .event-details .event-info:before {
        display: none;
    }
    .product-images-block .product-images-item {
        height: 200px !important;
        margin: 10px;
    }
    .product-images-block .product-images-item:before {
        opacity: 0.3;
    }
    .product-images-block .product-images-item .product-title {
        opacity: 1;
        top: auto !important;
        bottom: 0;
    }
    .projects-block .project-item {
        display: block;
        height: auto;
    }
    .projects-block .project-item .project-img {
        width: 100%;
        height: 160px;
        margin: 0;
    }
    .projects-block .project-item .project-info {
        width: 100%;
        padding: 30px 20px;
        margin: -7px 0 0;
    }
    .projects-block .project-item .project-info .project-text {
        height: auto;
    }
    .news-event-page {
        display: block;
    }
    .news-event-page .socials {
        margin: 20px 0 0;
    }
    .post-single .post-subtitle {
        font-size: 24px;
        line-height: 28px;
    }
    .page-title.privacy-page-title {
        display: block;
    }
    .page-title.privacy-page-title img {
        display: block;
        margin: 0 auto 10px;
    }
    .selected-product {
        display: block;
    }
    .selected-product .product-img {
        height: 160px;
    }
    .selected-product .product-details {
        width: 100%;
        margin: 0 auto;
    }
    .selected-product .remove-product {
        position: absolute;
        padding: 15px;
        height: auto;
        background: transparent;
    }
    .categories-filter {
        display: none;
    }
    .location-wrapper .location-title {
        font-size: 38px;
        line-height: 1;
    }
    .location-wrapper .location-title img {
        height: 24px;
    }
    .footer-logo {
        width: 250px;
        max-width: 80%;
        margin: 0 auto 25px;
    }
    .quick-support {
        margin-top: 0;
    }
    .contact-information .contact-info .contact-link {
        font-size: 16px;
    }
    .contact-information .contact-info .contact-link.phone-num {
        font-size: 24px;
    }
    .contact-information .contact-info {
        margin: 10px auto 20px;
    }
    .contact-information .contact-info .contact-icon {
        width: 36px;
        height: 36px;
    }
    .contact-links {
        margin-top: 20px;
    }
    .contact-links a {
        font-size: 16px;
        line-height: 36px;
    }
    .page-info {
        text-align: start !important;
    }
    .page-info.text-right > img {
        left: 0;
        right: auto;
    }
    .location-menu-wrapper {
        padding-top: 0;
    }
    .vertical-tabs .nav-tabs {
        height: auto;
    }
    .categories-list li {
        width: 48%;
    }
    .mega-menu .product-item .spare-parts-nums a {
        font-size: 16px;
    }
    .brands-filter {
        margin-top: 20px;
        margin-bottom: 0;
    }
    .brands-filter .btn {
        height: 30px;
        font-size: 14px;
        margin: 3px;
    }
    .brands-filter .btn img {
        max-width: 70px;
        max-height: 14px;
    }
    .navbar .top-links .site-email,
    .navbar .top-links .site-tel {
        white-space: nowrap;
    }
    #preLoader img {
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }
    .categories-page .categories-header {
        padding-bottom: 28px;
    }
    .categories-page .categories-header .breadcrumb {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .categories-page .categories-header .breadcrumb li,
    .categories-page .categories-header .breadcrumb li a {
        font-size: 12px;
        font-weight: 300;
    }
    .categories-slider button {
        width: 84px;
        height: 108px;
        margin: 0;
        padding: 10px 10px 12px;
        border-radius: 13px;
        box-shadow: -1px 4px 4px 0 rgba(117, 118, 119, 0.09);
        border: solid 1px #fff;
        background-color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        font-weight: normal;
        line-height: 0.85;
        letter-spacing: -0.95px;
        color: var(--color-default);
    }
    .categories-slider button.active {
        border-color: #e7e8e8;
        background-color: #fff;
        color: var(--color-primary);
    }
    .categories-slider button img {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 64px;
        height: 42px;
        margin: 0 0 8px;
        object-fit: contain;
        object-position: center;
        mix-blend-mode: luminosity;
    }
    .categories-slider button.active img {
        mix-blend-mode: normal;
    }
    .categories-page .categories-header .categories-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 35px;
        margin-bottom: 10px;
    }
    .categories-filter-header .categories-filter-search {
        display: flex;
        width: 220px;
        height: 40px;
        border: 1px solid #bac2c4;
        border-radius: 20px;
    }
    .categories-filter-header .categories-filter-search .input-group-text {
        height: 100%;
        background: none;
        border: none;
        box-shadow: none;
    }
    .categories-filter-header .categories-filter-search .form-control {
        height: 100%;
        background: none;
        border: none;
        box-shadow: none;
        font-size: 12px;
        font-weight: 500;
    }
    .categories-filter-header
        .categories-filter-search
        .form-control::placeholder {
        color: rgba(25, 31, 33, 0.13);
    }
    .categories-filter-header .filter-btn {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        font-size: 12px;
        font-weight: normal;
        color: #606060;
    }
    .categories-header .categories-filter {
        display: block !important;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        margin: 0;
        width: 100%;
        border-radius: 38px;
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: var(--transition);
        z-index: 9999;
    }
    .categories-header .categories-filter.active {
        height: auto;
        opacity: 1;
        visibility: visible;
    }
    .categories-filter .categories-filter-title {
        font-size: 18px;
        font-weight: bold;
        color: var(--color-default);
        margin-top: 35px;
    }
    .categories-filter hr {
        border-color: transparent;
    }
    .categories-page .checkboxes-group .checkbox-container {
        font-size: 14px;
        font-weight: 500;
        color: #132944;
    }
    .popular-equipment-header {
        display: none;
    }
    .search-wrapper .browse-products-block {
        margin-top: 20px;
    }
    footer .your-gate-wrapper .your-gate {
        font-size: 10px;
        line-height: 13px;
        margin-right: 20px;
    }
    footer .your-gate-wrapper .your-gate:after {
        right: -10px;
        height: 25px;
    }
    footer .your-gate-wrapper .your-gate img {
        height: 10px;
        margin-top: -2px;
    }
    footer .your-gate-wrapper .authorized-dealer .authorized-dealer-images img {
        max-width: 40px;
        max-height: 16px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 575px) {
    .checkboxes-group .checkbox-container {
        width: 100%;
    }
}

.note-editor .note-editable {
    line-height: 1.2;
}
