@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --body-size: 18px;
  --secondary: #F4F2F3;
  --error: #df2226;
  --search-form-padding: 15px;
  --search-form-padding-min: -15px;
  --form-padding-x: 7px;
  --extra-small-container: 40px;
  --footer-marign-top: 274px;
}
::-moz-selection {
  text-shadow: none;
  color: var(--default);
  background: var(--primary);
}
::selection {
  text-shadow: none;
  color: var(--default);
  background: var(--primary);
}
* {
  list-style: none;
  outline: none !important;
}
html,
body {
  overflow-x: hidden;
}
body {
  color: var(--default);
  font-size: var(--body-size);
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-family);
  position: relative;
}
ul,
p {
  margin: 0;
  padding: 0;
}
iframe {
  width: 100%;
  height: 347px;
  border: 0;
  overflow: hidden;
}

img{
  pointer-events: none;
}







.btn,
.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
}
.btn {
  border-radius: 25px;
  border-width: 2px;
  font-size: 1em;
  font-weight: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:hover {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  padding: 0;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
.grecaptcha-badge {
  display: none;
}
.text-email {
  margin-left:-10px;
  height: 1.5em;
  vertical-align: -0.4em;
}

.black-background{
  background-color: #231F20;
}
blockquote {
  padding: 40px;
  background-color: #ffffff;
  border-left: 2px solid #ff7171;
  position: relative;
  z-index: 9;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: -7px;
  left: 25px;
  font-size: 120px;
  color: #7f7f7f;
  z-index: -1;
  opacity: 0.1;
}
blockquote p {
  line-height: 1.3;
  font-style: italic;
  color: #232323;
  font-size: 26px;
  margin-bottom: 10px;
  z-index: 9;
}
blockquote cite {
  font-size: 16px;
  font-style: normal;
  color: #7f7f7f;
}




/***
Website
*/
.cat-fw-hover:hover {
    font-weight: 600 !important;
}
.menu-content-box {
    display: none;
}
.menu-content-box.active{
    display: block;
}
.sub-cat-menu {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-left: 100px;
    transition: all .5s ease;
    width: max-content;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    row-gap: 20px;
}
.sub-cat-menu.active{
    left: 100%;
    z-index: 100;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
header .logo {
    margin-left: var(--extra-small-container);
}
.header-links-col {
    column-gap: 42px;
}
.link-hover:hover {
    color: var(--default);
}
.header-box {
    padding-top: 22px;
    /*padding-bottom: 15px;*/
}
.header-link:hover {
    color: var(--default);
}
.link-hover {
    z-index: 1;
}
.link-hover:not(.industrial):before,
.header-link > span:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: width .5s ease;
}
.link-hover.industrial > span:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: width .5s ease;
}
.link-hover.industrial:hover > span:before{
    width: 100%;
}
.link-hover:not(.industrial):hover:before,
.header-link:hover > span:before,
.header-link.active >span:before {
   width: 100%;
}
.search-input-main input {
    background: none;
    outline: none;
    color: var(--default-50) !important;
    font-size: 16px;
    height: 100%;
    /*width: 200px;*/
    width: 191px;
    border: none;
    transition: all .5s ease;
}
.search-input-main input::placeholder {
    color: var(--default-50) !important;
    font-size: 16px;
}
.search-col {
    border: 2px solid var(--default-50);
    overflow: hidden;
    height: 34px;
    z-index: 200;
    padding-left: 10px;
    padding-right: 10px;
}
.search-col.active {
    border-color: white;
}
body.fixed-header-showed .search-col {
    display: none !important;
}
.typed-search-box-shown .search-col {
    overflow: visible !important;
}
.search-input-main {
    /*right: -165%;*/
    transition: all .5s ease;
    z-index: 100;
}
.search-input-main.active {
    right: 0;
}
.search-input-main.active input{
    width: 239px;
}
.search-icon {
    width: 18px;
    filter: grayscale(1) brightness(0) opacity(.5);
    -webkit-filter: grayscale(1) brightness(0) opacity(.5);
    margin-right: 15px;
    /*cursor: pointer;*/
}
.typed-search-box {
    position: absolute;
    top: 100%;
    left: -43px;
    right: -60px;
}
.search-title-box {
    padding: 8px 10px 7px 13px;
}
.search-product-box {
    margin: 0 12px 10px 13px;
}
.footer-logo {
    padding: 101px 33px 71px 33px;
    border-top: 2px solid var(--default);
    border-bottom: 2px solid var(--default);
}
.footer-logo img {
    height: 119px;
}
.footer-right {
    width: 51%;
}
.footer-media > a {
    width: 30px;
    height: 30px;
}
.footer-media > a > img {
    filter: grayscale(1) brightness(0) opacity(.5);
    -webkit-filter: grayscale(1) brightness(0) opacity(.5);
    transition: all .5s ease;
}
.footer-media > a:hover > img {
    filter: none;
    -webkit-filter: none;
}
.footer-eqa {
    height: 56px;
}
.footer-right .top {
    padding-bottom: 22px;
    border-bottom: 4px solid var(--primary);
}
.footer-right .bottom {
    margin-top: 116px;
}
.footer-email img{
    width: 155px;
    filter: grayscale(1) brightness(0);
    -webkit-filter: grayscale(1) brightness(0);
    transition: all .5s ease;
}
.footer-email:hover img{
    filter: none;
    -webkit-filter: none;
}
.footer {
    margin-top: var(--footer-marign-top);
    margin-bottom: 35px;
}
.text-initial {
    text-transform: initial !important;
}
.header-menu-dropdown {
    position: absolute;
    min-height: 210px;
    left: 120%;
    right: var(--min-grid);
    top: 100%;
    background-color: white;
    padding-bottom: 40px;
    padding-top: 28px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    box-shadow: -3px 7px 5px 1px rgba(0,0,0,0.25);
    -webkit-box-shadow: -3px 7px 5px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: -3px 7px 5px 1px rgba(0,0,0,0.25);
}
.header-menu-dropdown.active {
    left: -30px;
    pointer-events: all;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}
/*.header-menu-dropdown.brands {*/
.header-menu-dropdown {
    /*padding-left: 188px;*/
    padding-left: 30px;
}
.header-menu-dropdown.brands {
    padding-left: 241px;
}
/*.header-menu-dropdown {*/
/*    padding-left: 303px;*/
/*}*/
.cat-arrow img {
    width: 7px;
    transition: all .5s ease;
    filter: grayscale(1) brightness(0) opacity(.5);
    -webkit-filter: grayscale(1) brightness(0) opacity(.5);
}
.cat-arrow {
    cursor: pointer;
}
.cat-arrow-cats.active img,
.toggle-sub-cats.active img,
.cat-arrow.active img,
.menu-content-main.active .cat-arrow img{
    transform: rotate(-90deg);
    filter: none;
    -webkit-filter: none;
}
.menu-sub-cat-box {
    display: none;
}
.menu-sub-cat-box.active {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}
.menu-toggle-content:hover img{
    filter: none;
    -webkit-filter: none;
}
/***
Homepage
**/
.swiper-button-prev:after,
.swiper-button-next:after{
    content: none;
}
.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: auto !important;
    margin: 0 !important;
    height: auto !important;
}
.swiper-button-prev img,
.swiper-button-next img{
    width: 30px;
    filter: grayscale(1) brightness(4);
    -webkit-filter: grayscale(1) brightness(4);
    transition: all .5s ease;
}
.swiper-button-prev:hover img,
.swiper-button-next:hover img {
    filter: none;
    -webkit-filter: none;
}
.swiper-button-prev {
    transform: scaleX(-1);
}
.home-slider-box {
    position: absolute;
    left: var(--grid);
    bottom: 35px;
    z-index: 10;
    max-width: 70%;
}
.home-slider-box > div {
    padding-left: var(--extra-small-container);
}
.home-slider-line {
    position: absolute;
    left: 0;
    top: 23px;
    bottom: 0;
    width: 10px;
    background-color: white;
}
.home-slider-btn {
    padding:  8px 37px 8px 37px;
    background-color: var(--primary);
    color: var(--default);
    transition: all .5s ease !important;
    border-radius: 0;
}
.home-slider-btn:hover {
    background-color: var(--default);
    color: var(--primary);
}
.home-slide-img {
    position: relative;
    padding-top: 33.5%;
}
.home-slide-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .35);
    z-index: 5;
}
.home-top-swiper-btns {
    position: absolute;
    right: 0;
    bottom: 35px;
    z-index: 10;
}
.btns-box {
    column-gap: 50px;
}
/*.home-top-swiper-btns .swiper-pagination {*/
.swiper-pagination {
    position: static;
    column-gap: 35px;
}
/*.home-top-swiper-btns .swiper-pagination-bullet {*/
.swiper-pagination-bullet {
    width: 87px;
    opacity: 1;
    height: 2px;
    transition: all .5s ease;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 0;
}
/*.home-top-swiper-btns .swiper-pagination-bullet-active {*/
.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
}
.home-cat-container {
    background-color: var(--default);
    padding-top: 120px;
    padding-bottom: 120px;
}
.home-cat-top-swiper .swiper-slide,
.home-cat-bottom-swiper .swiper-slide {
    width: auto !important;
}
.home-cat-top-swiper .swiper-wrapper,
.home-cat-bottom-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.home-cat-outer-text {
    color: var(--default);
    -webkit-text-stroke: 1px transparent;
    text-shadow:
            -1px -1px 0 white,
            1px -1px 0 white,
            -1px  1px 0 white,
            1px  1px 0 white;
    transition: all .5s ease;
    opacity: .6;
    min-width: 250px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.ticker{
    overflow:hidden;
    white-space:nowrap;
    width:100%;
    contain: layout paint;
}
.ticker-track{
    display:flex;
    width:max-content;
    will-change:transform;
    animation: scroll var(--ticker-track-ms) linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}
.ticker-track.bottom{
    animation: scroll-opposite var(--ticker-track-ms) linear infinite;
}
.ticker-group {
    display:flex;
    gap: 105px;
    padding-right: 105px;
    flex: 0 0 auto;
    flex-shrink: 0;
}
@keyframes scroll{
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes scroll-opposite{
    from { transform: translate3d(-50%, 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}
.ticker-track:hover {
    animation-play-state: paused;
}
.home-cat-outer-text:hover{
    color: white;
}
.home-excellence-box {
    padding-left: var(--grid);
    padding-top: 175px;
    z-index: 20;
    /*margin-bottom: 392px;*/
    margin-bottom: 21%;
}
.home-excellence-box > div {
    padding-left: var(--extra-small-container);
}
.home-excellence-box > div > h3{
    margin-bottom: 106px;
    max-width: 44%;
}
.home-excellence-squares-img {
    position: absolute;
    top: 0;
    bottom: 30px;
    right: 0;
    width: 50.3%;
    z-index: -1;
    clip-path: polygon(0px 0px, 100% 0px, 99.9% 99.93%, -0.05% 64.38%);
    max-height: 100%;
}
.home-excellence-box-arrow-main {
    background-image: url("/public/images/home-yellow-big-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 230px 0 34px 0;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    width: 52%;
    text-align: center;
}
.home-brand-icon  img{
    height: 110px;
}
.home-brands {
    column-gap: 45px;
}
.home-brands-swiper .swiper-slide {
    width: auto !important;
}
/*.brand-first-icon img{*/
/*    height: 110px;*/
/*}*/
/*.brand-second-icon img {*/
/*    height: 103px;*/
/*}*/
/*.brand-third-icon img {*/
/*    height: 44px;*/
/*}*/
/*.brand-fourth-icon img {*/
/*    height: 71px;*/
/*}*/
/*.brand-last-icon img {*/
/*    height: 65px;*/
/*}*/
.home-excellence-box > :before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 0;
    left: 0;
    width: 10px;
    background-color: var(--primary);
}
.home-excellence-p {
    max-width: 31%;
}
.home-excellence-btn {
    background-color: var(--default);
    color: var(--primary);
    transition: all .5s ease;
    padding: 15px 45px 15px 45px;
}
.home-excellence-btn:hover {
    background-color: var(--primary);
    color: var(--default);
}
.home-excellence-squares-icon {
    position: absolute;
    top: 7%;
    left: -19%;
    right: 0;
    bottom: 0;
    z-index: 6;
    height: 100%;
    max-width: none;
}
.home-values-main-container {
    margin-top: 239px;
}
.home-values-btn {
    margin-top: 220px;
    background-color: var(--default);
    color: var(--primary);
    transition: all .5s ease;
    padding: 15px 10px 15px 10px;
}
.home-values-btn:hover {
    background-color: var(--primary);
    color: var(--default);
}
.home-value-box {
    padding-left: var(--extra-small-container);
}
.home-value-box:not(.about) {
    margin-top: 61px;
    margin-bottom: 295px;
}
.home-value-box.about {
    margin-top: -16px;
}
.about-value-pt {
    padding-top: 507px;
    max-width: 89%;
}
.home-value-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.home-value-box-icon img {
    height: 95px;
}
.home-value-icon img {
    filter: opacity(.2);
    -webkit-filter: opacity(.2);
    transition: all .5s ease;
    /*height: 103px;*/
}
.home-value-icon {
   height: 140px
}
.home-value-icon.first img{
    height: 114px
}
.home-value-icon.second img{
    height: 114px
}
.home-value-icon.third img{
    height: 136px
}
.home-value-icon.fourth img{
    height: 114px
}
.home-value-box-col-main:hover .home-value-icon img{
    filter: invert(1) opacity(1) brightness(4);
    -webkit-filter: invert(1) opacity(1) brightness(4);
}
.home-value-box-col {
    z-index: 10;
    padding-left: 35px;
    padding-right: 35px;
}
.home-value-box-col-main {
    padding-top: 225px;
    /*align-items: center;*/
    transition: all .5s ease;
    border-top: 1px solid var(--default-20);
    border-bottom: 1px solid var(--default-20);
    border-left: 1px solid var(--default-20);
}
.home-value-box-col-main:hover{
    color: white;
}
.home-value-key {
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    transition: all .5s ease;
}
.home-value-box-col-main:hover .home-value-key {
    border-color: white;
}
.home-value-desc {
    line-height: 1.2;
}
.home-value-desc,
.home-value-banner {
    opacity: 0;
    transition: all .5s ease;
}
.home-value-box-col-main:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .55);
    z-index: 3;
    opacity: 0;
}
.home-value-box-col-main:hover .home-value-desc,
.home-value-box-col-main:hover .home-value-banner,
.home-value-box-col-main:hover:before {
    opacity: 1;
}
.home-value-banner {
    z-index: 1;
}
.container-right-xl-none {
    padding-right: 0;
}
.more-info-main {
    padding-top: 75px;
    padding-bottom: 94px;
}
.more-info-title {
    color: var(--default);
    -webkit-text-stroke: 2px transparent;
    text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
    transition: all .5s ease;
    letter-spacing: 13px;
}
.more-info-box {
    /*position: absolute;*/
    /*top: 100%;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    width: 100%;
    padding-top: 25px;
    padding-bottom: 118px;
    background-image: url("/public/images/home-big-aroow-black.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/*.info-big-arrow {*/
/*    position: absolute;*/
/*    top: -26px;*/
/*    left: 50%;*/
/*    z-index: -1;*/
/*    transform: translateX(-50%);*/
/*        --r:30px; !* border radius *!*/

/*        width: 180px;*/
/*        aspect-ratio: 1/cos(30deg);*/
/*        -webkit-mask:*/
/*                linear-gradient(0deg,#0000 calc(3*var(--r)/2),#000 0),*/
/*                radial-gradient(var(--r) at 50% calc(100% - 2*var(--r)),#000 98%,#0000 101%);*/
/*        clip-path: polygon(50% 100%,100% 0,0 0);*/
/*        background:var(--default);*/
/*}*/
/*.info-big-arrow{*/
/*        position: absolute;*/
/*        top: -26px;*/
/*        left: 50%;*/
/*        z-index: -1;*/
/*        transform: translateX(-50%);*/
/*        --r:30px; !* border radius *!*/

/*        width: 100%;*/
/*        aspect-ratio: 1/cos(30deg);*/
/*        -webkit-mask:*/
/*                linear-gradient(0deg,#0000 calc(3*var(--r)/2),#000 0),*/
/*                radial-gradient(var(--r) at 50% calc(100% - 2*var(--r)),#000 98%,#0000 101%);*/
/*        clip-path: polygon(50% 100%,100% 0,0 0);*/
/*        background: var(--default);*/
/*}*/
/*.info-big-arrow {*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    top: -26px;*/
/*    width: 50%;*/
/*}*/
.more-info-btn {
    background-color: var(--primary);
    color: var(--default);
    padding: 15px 39px 15px 39px;
    transition: all .5s ease;
}
.more-info-btn:hover {
    background-color: white;
    color: var(--default);
}
.arrow-up-down img {
    height: 65px;
}
.more-info-arrow {
    animation-name: up-down-arrow;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.2s;
}

@keyframes up-down-arrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.footer-get-touch {
    margin-bottom: 85px;
}
/**
page top box
*/
.arrow-animated {
    animation-name: animated-arrow;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.2s;
    padding-left: var(--extra-small-container);
    margin-top: 133px;
}
.arrow-animated img {
    height: 148px;
}
@keyframes animated-arrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.pages-top-box .content {
    padding-left: var(--extra-small-container);
}
.pages-top-box .content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.pages-top-box .content .desc {
    max-width: 41%;
    margin-top: 119px;
}
.pages-top-box {
    padding-top: 235px;
}
.pages-square-icon {
    position: absolute;
    top: -16%;
    right: -21%;
    z-index: 20;
    max-width: none;
    width: 97.8%;
}

/**
Chemicals Page
*/
.league-font {
    font-family: "League Spartan", sans-serif;
}
.montserrat-font {
    font-family: "Montserrat", sans-serif;
}
.chemicals-top-subtitle {
    max-width: 39%;
    margin-bottom: 165px;
}
.chemicals-top,
.chemicals-bottom {
    padding-left: var(--extra-small-container);
}
.chemicals-top:before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.chemicals-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.chemicals-bottom{
    margin-top: 144px;
}
.chemicals-div-title {
    border-bottom: 2px solid var(--default);
    padding-bottom: 4px;
    margin-bottom: 12px;
}
.chemicals-li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--default);
}
.chemicals-page {
    margin-top: 234px;
}
.chemical-boxes {
    position: absolute;
    top: 20px;
    left: -16%;
    right: -9%;
    z-index: -1;
}
.contact-left-top {
    padding-left: var(--extra-small-container);
    margin-bottom: 180px;
}
.contact-left-bottom {
    padding-left: var(--extra-small-container);
}
.contact-left-top:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.contact-left-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.contact-email img {
    width: 180px;
    filter: grayscale(1) brightness(0) opacity(.4);
    -webkit-filter: grayscale(1) brightness(0) opacity(.4);
    transition: all .5s ease;
}
.contact-email a:hover img {
    filter: none;
    -webkit-filter: none;
}
.contact-page{
    margin-top: 234px;
}
.contact-form-bg {
    background-color: rgba(234, 234, 234, .5);
    padding: 49px var(--grid) 43px 50px;
    margin-top: 142px;
}
.contact-form label{
    letter-spacing: 0 !important;
}
.contact-form input{
    background: white !important;
    border-radius: 0 !important;
    border: none !important;
    height: 57px !important;
    outline: none !important;
    letter-spacing: 0 !important;
}
.contact-form textarea{
    background: white !important;
    border-radius: 0 !important;
    border: none !important;
    height: 157px !important;
    outline: none !important;
    letter-spacing: 0 !important;
}
.contact-submit {
    background-color: var(--default);
    color: var(--primary);
    padding: 11px 46px 11px 46px;
    transition: all .5s ease;
    border: none;
    border-radius: 0;
    outline: none;
}
.contact-submit:hover {
    background-color: var(--primary);
    color: var(--default);
}
.form-control-with-label.focused label {
    font-size: 14px !important;
}
.contact-map {
    padding-top: 34.7%;
    border: 17px solid var(--primary);
    margin-top: 288px;
    border-radius: 0 !important;
}
.contact-map iframe {
    position: absolute;
    inset: 0;
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
}
.contact-error-msg {
    position: absolute !important;
    left: 0 !important;
    bottom: -25px !important;
    font-size: 12px !important;
    text-align: left !important;
    top: auto !important;
}
#contact-form-error-agree {
    position: absolute;
    right: 0;
    bottom: -10px;
}
/**
About page
*/
.about-page {
    margin-top: 234px;
}
.about-top {
    padding-left: var(--extra-small-container);
}
.about-top:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.about-top-p {
    max-width: 47%;
}
.arrow-animated .about {
    margin-top: 85px;
}
.about-top-main {
    margin-bottom: 590px;
}
.about-unicol-p-top {
    max-width: 40%;
}
.about-unicol-p-bottom {
    max-width: 43%;
}
.about-unicol-box {
    padding-left: var(--extra-small-container);
}
.about-unicol-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.about-values {
    margin-bottom: 280px;
}
.about-swiper {
    border: 17px solid var(--primary);
}
.about-slide-img{
    padding-top: 35.5%;
}
.about-swiper-btns {
    position: absolute;
    bottom: 31px;
    right: 46px;
    z-index: 10;
}
.about-swiper-btns-box {
    column-gap: 40px;
}
.about-swiper-btns .swiper-pagination-bullet {
    width: 76px;
}
.about-swiper-btns .swiper-pagination {
    column-gap: 20px;
}
.about-find-title {
    margin-bottom: 229px;
    max-width: 87%;
    margin-top: -19px;
}
.about-find-btn {
    background-color: var(--default);
    color: var(--primary);
    padding: 14px 45px 14px 45px;
    transition: all .5s ease;
}
.about-find-btn:hover {
    background-color: var(--primary);
    color: var(--default);
}
.about-find-box {
    padding-left: var(--extra-small-container);
}
.about-find-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    bottom: 0;
    width: 10px;
    background-color: var(--primary);
}
.about-unicol {
    margin-bottom: 297px;
}
.about-top-boxes {
    position: absolute;
    top: -68px;
    right: -35%;
    left: -12%;
    z-index: -1;
}
.about-find-boxes {
    position: absolute;
    right: -29%;
    width: 152%;
    z-index: 10;
    top: -27px;
}
/*
industrial publish
**/
.industrial-gallery {
    margin-top: 283px;
}
.industrial-p {
    margin-top: 112px;
}
.content-cat-industrial-publish {
    max-width: 48%;
    padding-left: var(--extra-small-container);
}
.content-cat-industrial-publish:before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 0;
    left: 0;
    width: 10px;
    background-color: var(--primary);
}
.industrial-left {
    padding-top: 73%;
}
.industrial-right {
    padding-top: 55.4%;
}
.product-publish-swiper{
    box-shadow: 1px -3px 11px 1px rgba(0,0,0,0.25);
    -webkit-box-shadow: 1px -3px 11px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px -3px 11px 1px rgba(0,0,0,0.25);
}
.product-publish-swiper-btns {
    padding: 9px 20px 9px 20px;
}
.product-publish-swiper-btns > :nth-child(2){
    column-gap: 17px;
}
.product-publish-swiper-btns .swiper-button-prev img,
.product-publish-swiper-btns .swiper-button-next img{
    width: 16px;
}
.cat-publish-boxes {
    position: absolute;
    top: -85px;
    right: -8%;
    left: -12%;
    z-index: -1;
}
.cat-publish-boxes img {
    object-fit: cover;
}
.menu-phone-main {
    display: none;
}
.newsletter-box {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}
.newsletter-box.active {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
    pointer-events: all;
}
.newsletter-backdrop {
    position: fixed;
    inset: 0;
    background-color: var(--default-80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}
.newsletter-box-content ul {
    column-gap: 10px;
}
.newsletter-box-content {
    border-left: 10px solid var(--primary);
    background-color: white;
    padding: 10px 15px 24px 30px;
    z-index: 100;
    width: 728px;
    max-width: 95%;
    margin: auto;
}
.newsletter-li:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--default);
}
.newsletter-box-text-line span {
    position: relative;
}
.newsletter-box-text-line span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    right: 0;
    height: 8px;
    z-index: -1;
    background-color: var(--primary);
}
.newsletter-box-content input {
    height: 56px;
    background: white !important;
    border: none !important;
    outline: none !important;
    border-radius: 0 !important;
    letter-spacing: 0 !important;
    padding-left: 10px !important;
}
.newsletter-box-content label {
    letter-spacing: 0 !important;
    padding-left: 10px !important;
}
.newsletter-box-content form {
    width: 69%;
}
.newsletter-submit {
    background-color: var(--default);
    color: var(--primary);
    padding: 10px 7px 10px 7px;
    transition: all .5s ease;
    border: none;
    outline: none;
    border-radius: 0;
}
.newsletter-submit:hover {
    background-color: var(--primary);
    color: var(--default);
}
.newsletter-box-content > img {
    position: absolute;
    top: 0;
    right: -20px;
    left: 1px;
    z-index: -1;
    object-fit: cover;
    height: 104%;
}
.news-error-msg {
    position: absolute !important;
    right: 0 !important;
    bottom: -13px !important;
    font-size: 12px !important;
    width: 100% !important;
    margin: 0 !important;
}
.news-error-msg > label {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}
.close-news-letter-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: all .5s ease;
}
.close-news-letter-popup img{
    width: 10px;
    filter: grayscale(1) brightness(0);
    -webkit-filter: grayscale(1) brightness(0);
    transition: all .5s ease;
}
.close-news-letter-popup:hover img{
    filter: none;
    -webkit-filter: none;
}
body.newsletter-opened,
html.newsletter-opened {
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
    -webkit-touch-callout: none;
}

.news-letter-duplicate {
    position: absolute;
    right: 0;
    top: 0;
}
#newsletter-form-error-agree {
    position: absolute !important;
    bottom: -13px !important;
    right: 0 !important;
    width: 100% !important;
}
    /***
    end website
    */

















.stick-side-menu-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.9);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stick-side-menu {
  position: fixed;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10000;
}
.side-button {
  background-color: var(--primary);
  color: var(--white);
  fill: var(--white);
  width: 45px;
  cursor: pointer;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
  box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
  padding: 10px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
}
.stick-side-menu > .side-button {
  margin: 25px 0;
}
.side-button svg.stroke {
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke: var(--white);
}
.side-button:hover {
  background-color: var(--default);
}
.side-button-text {
  white-space: nowrap;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -ms-transform: translateX(-100%) rotate(-90deg);
  transform: translateX(-100%) rotate(-90deg);
  display: inline-block;
  position: relative;
  left: 23px;
  bottom: 1em;
  line-height: 1;
}
.loader {
  position: relative;
  pointer-events: none;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.btn.btn-b-width-2.loader:before,
.btn.btn-b-width-2.loader:after {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
}
.input-group-append .btn.loader::before,
.input-group-append .btn.loader::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader:before {
  content: "";
  background-color: rgba(255,255,255,0.5);
}
.loader:after {
  content: "";
  -webkit-animation:la-spin 2s infinite linear;
  animation:la-spin 2s infinite linear;
  color: var(--primary);
  width: 30px;
  height: 30px;
  margin: auto;
  background-image: url('/public/images/loader.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.loader:before,
body.loader:after {
  position: fixed;
  z-index: 1000;
}
.circle-text-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  -webkit-animation: la-spin 20s infinite linear;
  animation: la-spin 20s infinite linear;
  overflow: hidden;
}
.circle-text {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: rotate(-50deg) translate(50%,0);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.circle-text span {
  height: 115px;
  position: absolute;
  left: -1px;
  top: 0;
  transform-origin: bottom center;
  transform: rotate(8.6deg);
  width: 1em;
  text-align: center;
}
.circle-text-wrap.default .circle-text {
  color: var(--default);
}
.arrow-text {
  height: 0;
  display: inline-block;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
}
.arrow-text.left {
  border-right: 0.35em solid;
}
.arrow-text.right {
  border-left: 0.35em solid;
}
/*Forms*/
.form-control,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  box-shadow: none;
  outline: none;
  border-radius: 20px;
  height: 52px;
  padding: 0 20px;
  background: white;
  border: 2px solid var(--default-10);
}
.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
  outline: none;
}
textarea {
  resize: none;
}
textarea.form-control {
  height: 250px;
}
::-webkit-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::-moz-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
.line-control .form-control {
  padding: 5px 0;
  height: auto;
  border-bottom: 2px solid var(--default-20);
  letter-spacing: 0.05em;
}
.form-control-with-label .form-control,
.form-control-with-label .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 20px var(--form-padding-x) 3px;
}
.form-control-with-label.line-2 .form-control {
  padding: 45px var(--form-padding-x) 3px;
}
.form-control-with-label.line-control .form-control {
  padding: 20px 0 3px;
}
.form-control-with-label.line-control.line-2 .form-control {
  padding: 45px 0 3px;
}
.form-control-with-label label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 3px var(--form-padding-x);
  font-size: 1em;
  color: var(--default);
  margin: 0;
  pointer-events: none;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 23px;
  font-weight: 500;
}
.form-control-with-label.line-control label {
  padding: 3px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form-control-with-label label span {
  display: block;
}
.form-control-with-label {
  position: relative;
}
.form-control-with-label.focused label,
.form-control-with-label.always-focused label {
  opacity: 0.5;
  font-size: 13px;
  font-weight: 500;
}
.form-control-with-label:not(.always-focused):not(.focused) label {
  min-height: 100%;
  padding: 5px var(--form-padding-x);
}
.form-control-with-label.textarea-label:not(.always-focused):not(.focused) label {
  min-height: 50px;
}
.form-control-with-label .bootstrap-select > .dropdown-toggle::after {
  margin-top: -15px;
}
.input-group .form-control-with-label:first-child .form-control {
  border-right: 0;
}
.form-control-with-label.line-control .form-control {
  background-color: transparent;
}
.form-control-with-label.line-control textarea.form-control {
  height: 160px;
}
.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control-with-label.is-invalid .form-control,
.form-radio-group.is-invalid  {
  background-image: none;
  border-color: rgba(223,34,38,0.2);
  color: var(--error);
}
.form-control-with-label.is-invalid label,
.form-radio-group.is-invalid .form-radio-group-label {
  color: var(--error);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: none;
}
.sk-checkbox.form-control {
  padding: 10px;
}
.form-control:focus {
  color: var(--default);
  border-color: var(--primary);
}
.form-radio-group {
  border-bottom: 2px solid var(--default-20);
}
.form-radio-group-label {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.sk-checkbox,
.sk-radio {
  padding-left: 0;
  font-size: inherit;
}
.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
  position: relative;
  display: inline-block;
  top: 0;
  margin-right: 0.15em;
}
.sk-square-check,
.sk-rounded-check {
  border: 2px solid var(--default-20);
  height: 1.2em;
  width: 1.2em;
}
.sk-square-check {
  border-radius: 0;
  height: 0.7em;
  width: 0.7em;
  vertical-align: -0.1em;
  border: 1px solid;
}
.sk-square-check::after {
  margin-left: 0;
  margin-top: -0.6em;
  width: 0.4em;
  height: 0.8em;
}
.sk-rounded-check::after {
  margin-left: 0;
  margin-top: 0;
  width: auto;
  height: auto;
  border-radius: 50%;
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  background-color: var(--default);
}
.sk-square-check.square::after {
  width: auto;
  height: auto;
  border: 0;
  -webkit-transform: none;
  transform: none;
  background-color: var(--default);
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  margin: auto;
}
.sk-checkbox > input:checked ~ .sk-rounded-check,
.sk-radio > input:checked ~ .sk-rounded-check {
  border-color: var(--default);
}
.sk-checkbox > input:checked ~ .sk-square-check.square,
.sk-radio > input:checked ~ .sk-square-check.square {
  border-color: var(--default);
}


/*Select 2*/
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  padding: 0;
}
.select2-container .select2-selection--multiple {
  position: relative;
}
.select2-container .select2-selection--multiple::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-color: var(--default) transparent transparent transparent;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  height: 0;
}
.select2-container--classic.select2-container--open .select2-selection--multiple::after {
  border-color: transparent transparent var(--default) transparent;
  border-width: 0 8px 8px 8px;
}
.select2-container--classic.select2-container--open .select2-selection--single,
.select2-container--classic .select2-selection--single:focus,
.select2-container--classic.select2-container--open .select2-selection--multiple,
.select2-container--classic .select2-selection--multiple:focus {
  border: 2px solid var(--primary);
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  /*background: none;*/
  filter: none;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--multiple .select2-selection__arrow {
  background: none;
  border: none;
  width: 40px;
  height: 52px;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b,
.select2-container--classic .select2-selection--multiple .select2-selection__arrow b {
  border-color: var(--default) transparent transparent transparent;
  border-width: 8px 8px 0 8px;
  margin-left: -7px;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b,
.select2-container--classic.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
  border-color: transparent transparent var(--default) transparent;
  border-width: 0 8px 8px 8px;
}
.select2-dropdown {
  border-radius: 7px;
  z-index: 100000;
}
.select2-container--classic .select2-dropdown {
  border: 2px solid transparent;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: var(--primary) !important;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered,
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  color: var(--default);
  line-height: inherit;
  font-weight: 500;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  background: var(--white);
}
.select2-search--dropdown .select2-search__field {
  padding: 7px 4px;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--default-30);
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: var(--default-10);
  border: none;
  border-radius: 0;
  margin: 0 5px 5px 0;
}
.select2-container .select2-search--inline .select2-search__field {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: var(--default);
  padding: 0 4px;
}
.select2-container--classic .select2-results__option--selected.select2-results__option--selectable {
  background-color: var(--default-20);
  color: var(--default);
}
/*UI Slider*/
.ui-slider-horizontal {
  height: 2px;
  width: calc(100% - 20px);
  margin: auto;
}
.ui-widget.ui-widget-content {
  border: none;
  background-color: var(--default-10);
}
.ui-widget-header {
  border: none;
  background: var(--primary);
}
.ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -9px;
  margin-left: -10px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
  background: var(--primary);
}
/*Carousel*/
.swiper.with-pseudos {
  overflow: visible;
}
.swiper.with-pseudos::before,
.swiper.with-pseudos::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 10000px;
  background-color: var(--white);
  z-index: 2;
}
.swiper.with-pseudos::before {
  left: -10000px;
}
.swiper.with-pseudos::after {
  right: -10000px;
}
.slick-track {
  margin: 0;
}
.swiper-slide.auto {
  width: auto;
}
.swiper-vertical .swiper-slide.auto {
  width: 100%;
  height: auto;
}
.swiper-scrollbar {
  z-index: 1;
  cursor: pointer;
}
.swiper-scrollbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: -5px;
  z-index: -1;
}
.swiper-scrollbar-drag {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*Header*/
header {
  position: relative;
  z-index: 1000;
  padding-top: 107px;
}
header a:hover {
  color: var(--primary);
}
header .logo img {
  height: 35px;
}
.header .logo .white {
  display: none;
}
body:not(.homepage) .header-border {
  border-bottom: 2px solid rgba(35,31,32,0.1);
}
.header-languages {
  position: relative;
}
.header-languages-toggle {
  fill: var(--white);
  line-height: 1;
  padding: 2px 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages-toggle svg {
  height: 0.7em;
  vertical-align: baseline;
}
.header-languages-toggle .arrow {
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages:hover .header-languages-toggle,
.header-languages.active .header-languages-toggle {
  background-color: var(--default) !important;
  border-color: var(--default) !important;
  color: white !important;
}
.header-languages:hover .header-languages-toggle .arrow,
.header-languages.active .header-languages-toggle .arrow  {
  border-top-color: white;
}
.header-languages-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--default);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  border-top: 1px solid;
}
.header-languages.active .header-languages-dropdown {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}
.header-languages-dropdown .item {
  border-bottom: 1px solid;
  display: block;
  padding: 2px 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages-dropdown .item:not(.active) {
  cursor: pointer;
}
.header-languages-dropdown .item:not(.active):hover {
  background-color: var(--primary)
}
/*Megamenu*/
.megamenu-toggle {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.megamenu-icon {
  background-color: transparent;
  color: var(--default);
  width: 48px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.megamenu-icon .line {
  border-top: 4px solid;
  width: 100%;
  margin: 4px 0 4px 0;
  position: relative;
    transition: all .5s ease;
}
.megamenu-icon .line:nth-child(2) {
    width: 70%;
    margin-left: auto;
}
.megamenu-icon .line:nth-child(1) {
  margin-top: 0;
}
.megamenu-icon .line:nth-child(3) {
  margin-bottom: 0;
}
.megamenu-toggle.open .megamenu-icon .line:nth-child(2),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(2) {
  opacity: 0;
}
.megamenu-toggle.open .megamenu-icon .line:nth-child(1),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 0px);
  -moz-transform: rotate(-45deg) translate(-5px, 0px);
  -ms-transform: rotate(-45deg) translate(-5px, 0px);
  -o-transform: rotate(-45deg) translate(-5px, 0px);
    transform: rotate(-44deg) translate(-5px, 0px);
    top: 13px;
    left: 2px;
    width: 40px;
}
.megamenu-toggle.open .megamenu-icon .line:nth-child(3),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-4px, 2px);
  -moz-transform: rotate(45deg) translate(-4px, 2px);
  -ms-transform: rotate(45deg) translate(-4px, 2px);
  -o-transform: rotate(45deg) translate(-4px, 2px);
    transform: rotate(45deg) translate(-4px, 2px);
    top: -7px;
    left: 3px;
    width: 40px;
}
.megamenu-toggle:hover {
  color: var(--default);
}
.megamenu {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.megamenu-opened .megamenu {
  opacity: 1;
  pointer-events: auto;
}
.megamenu .nav.nav-menu {
  display: block;
}
.megamenu .nav-menu-cover.header-menu > ul > li {
  margin-left: 0;
  margin-bottom: 5px;
}
.megamenu .nav-menu-cover.header-menu > ul > li > a:hover,
.megamenu .nav-menu-cover.header-menu > ul > li.menu-item-has-children:hover > a {
  color: var(--primary);
}
.megamenu .nav-menu-cover.header-menu > ul > li.menu-item-has-children {
  cursor: pointer;
}
.megamenu .nav-menu-cover.header-menu > ul > li.menu-item-has-children > a {
  pointer-events: none;
}
.megamenu .nav-menu-cover.header-menu .sub-menu {
  opacity: 1;
  position: relative;
  left: auto;
  top: auto;
  -ms-transform: none;
  transform: none;
  background-color: transparent;
  white-space: normal;
  min-width: 100%;
  border-top: 1px solid var(--default);
  margin-top: 5px;
  display: none;
}

.megamenu .nav-menu-cover.header-menu > ul > li.menu-item-has-children.active > .sub-menu {
  display: block;
}
.megamenu .nav-menu-cover.header-menu .sub-menu a {
  padding: 5px 0;
  border-bottom: 1px solid var(--default);
}
/*Fixed Header*/
.fixed-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    /*-webkit-transition: transform 1s ease;*/
    /*transition: transform 1s ease;*/
}
.fixed-header.header-UP {
    animation: headerUp 0.3s ease forwards;
}
.fixed-header.header-down {
    position: fixed;
    animation: headerDown 0.3s ease forwards;
    transform: translateY(calc(-100% - 30px));
    box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 7px 6px 0px rgba(0,0,0,0.25);
}

@keyframes headerDown {
    from {
        transform: translateY(calc(-100% - 30px));
    }
    to {
        transform: translateY(0);
    }
}
@keyframes headerUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-100% - 30px));
    }
}
/*body.fixed-header-showed .fixed-header {*/
/*    -ms-transform: translateY(0);*/
/*    transform: translateY(0);*/
/*}*/
.fixed-header .logo img {
  height: 35px;
}
.fixed-header-showed .header-box {
    padding-top: 15px;
}
/*Header Menu*/
.nav-menu-cover.header-menu > ul > li {
  margin-left: 25px;
  position: relative;
}
.nav-menu-cover.header-menu > ul > li > a {
  display: block;
  padding: 2px 0;
}
.nav-menu-cover.header-menu > ul > li.menu-item-has-children > a::after {
  content: "";
  width: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid;
  display: inline-block;
  vertical-align: middle;
}
.nav-menu-cover.header-menu > ul > li > a:hover {
  /*color: var(--white);*/
  color:#EC2C27;
}
.nav-menu-cover.header-menu .sub-menu {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--default);
  white-space: nowrap;
  min-width: 150px;
}
.nav-menu-cover.header-menu > ul > li:hover > .sub-menu {
  opacity: 1;
}
.nav-menu-cover.header-menu .sub-menu-close {
  display: none;
}
.nav-menu-cover.header-menu .sub-menu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.nav-menu-cover.header-menu .sub-menu a:hover {
  color: var(--primary);
}
/*Homepage Slider*/
#homepage-slider {
  position: relative;
}
.homepage-slider-image {
  padding-top: 110%;
  position: relative;
}
.homepage-slider-over {
  background-color: var(--default-20);
  color: white;
}

.homepage-slider-carousel{
  display:block;
}


.owl-carousel.homepage-slider-carousel .owl-nav button {
  width: 20px;
  height: 25px;
  border: none;
  position: absolute;
  bottom: 370px;
  margin: auto;
  color: var(--white);
  z-index: 1;
  font-size: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-prev {
  left: 20px;
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-next {
  right: 20px;
}
.owl-carousel.homepage-slider-carousel .owl-nav button::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  width: 1em;
  height: 1em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-prev::after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: -45%;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-next:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -0.5em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.homepage-slider-carousel .owl-nav button:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,0.4);
  color: var(--default);
}
/*Search Form*/
#search-form.load-form {
  pointer-events: none;
}
#search-form.load-form .search-form-purpose,
#search-form.load-form .search-form-container {
  opacity: 0.5;
}
#search-form.load-form .search-form-bottom {
  position: relative;
}
#search-form.load-form .search-form-bottom::before,
#search-form.load-form .search-form-bottom::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
#search-form.load-form .search-form-bottom::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.4);
}
#search-form.load-form .search-form-bottom::after {
  content: "";
  -webkit-animation:la-spin 2s infinite linear;
  animation:la-spin 2s infinite linear;
  color: var(--primary);
  width: 30px;
  height: 30px;
  margin: auto;
  background-image: url('/public/images/loader.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  /*z-index: 4;*/
  /*background-color: white;*/
}


/*#search-form.load-form .search-bottom-back{*/
/*  z-index: 999;*/
/*  background-color: transparent;*/
/*}*/






#homepage-slider + #search-form .search-form {
  margin-top: -90px;
  position: relative;
  z-index: 1;
  min-height: 300px;
}



/*@media (max-width:768px ){*/
/*  #homepage-slider + #search-form .search-form {*/
/*    margin-top: -190px;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    min-height: 300px;*/
/*  }*/
/*}*/






.show-on-advance-search,
.search-form.advance-search-open .hide-on-advance-search {
  display: none !important;
}
.search-form.advance-search-open .show-on-advance-search {
  display: block  !important;
}

.show-on-advance-padding {
  padding: 0;
}
.search-form.advance-search-open .show-on-advance-padding {
  padding:25px ;
}

.clear-filters{
  position:relative;
  cursor:pointer;
  font-size: 14px;
  margin-bottom: 10px;

}

.show-on-advance-search #reference_3{
  min-height: 25px !important;
}


.search-form-purpose {
  /*height: 45px;*/
  display: inline-block;
  background-color: var(--white);
  padding: 3px;
  border-radius: 7px;
}
.advance-search-toggle svg {
  height: 0.8em;
}
.purpose-toggle {
  display: block;
  margin: 0;
  font-weight: 700;
  cursor: pointer;
}
.purpose-toggle input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.purpose-toggle .text {
  display: block;
  border-radius: 7px;
  padding: 5px;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.purpose-toggle input:checked + .text {
  background-color: var(--primary);
  color: var(--white);
}
.search-form-container {
  /*-webkit-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);*/
  /*-moz-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);*/
  /*box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);*/
  /*background: var(--white);*/

  /*border-radius: 15px;*/
  overflow: hidden;
  padding-left: var(--search-form-padding);
  padding-right: var(--search-form-padding);
}
.search-form .btn {
  border-radius: 7px;
}
.search-form .form-control,
.search-form .select2-container .select2-selection--single,
.search-form .select2-container .select2-selection--multiple {
  border-radius: 7px;
  height: 50px;
}
.search-form .form-control-with-label label {
  padding: 3px var(--form-padding-x);
}
.search-form .select2-container--classic .select2-selection--single .select2-selection__arrow,
.search-form .select2-container--classic .select2-selection--multiple .select2-selection__arrow {
  height: 65px;
}
.search-form .form-control-with-label .form-control,
.search-form .form-control-with-label .select2-container .select2-selection--single .select2-selection__rendered,
.search-form .select2-container .select2-selection--multiple {
  padding: 20px var(--form-padding-x) 7px;
}
.search-form .btn-square {
  width: 65px;
  height: 65px;
  padding: 4px;
  font-size: 25px;
  line-height: 1;
}
.search-form .label-title {
  display: block;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
.search-form .form-group {
  margin-bottom: 15px;
}
.form-search-ref-id {
  /*margin: 0 var(--search-form-padding-min);*/
  position: relative;
}
.form-search-ref-id svg {
  position: absolute;
  /*left: var(--search-form-padding);*/
  left:5px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 3px;
  stroke: rgba(0,0,0,0.5);
  pointer-events: none;
}
.form-search-ref-id .form-control {
  /*background-color: var(--default-10);*/
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--default);
  padding: 5px var(--search-form-padding) 5px 5px !important;
  font-weight: 500;
  height: auto !important;
  border: 0;
  width:100%;
  /*border-radius: 0;*/
  font-size: 1em;
}


.reference-search-div{
  min-width: 320px;
}

.advance-search-box{
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}


.advanced-inner-text{
  display: flex;
  text-align: right;
  justify-content: end;
  padding-right: 10px !important;
  padding-left: 10px;

}




.form-round-options-group,
.form-rectangle-options-group {
  margin-top: 10px;
}
.round-option-group {
  cursor: pointer;
  display: block;
  margin-bottom: 0;
}
.round-option-group input[type="checkbox"],
.round-option-group input[type="radio"],
.rectangle-option-group input[type="checkbox"],
.rectangle-option-group input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.round-option-group .text,
.rectangle-option-group .text {
  background-color: var(--default-10);
  font-weight: 500;
}
.round-option-group .text {
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  min-width: 35px;
  height: 35px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.round-option-group-studio .text{
  display: flex;
  border-radius: 60px;
  overflow: hidden;
  min-width: 70px;
  height: 35px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}





.round-option-group .text::selection,
.rectangle-option-group .text::selection {
  background-color: transparent;
}
.round-option-group input[value=""] + .text {
  font-size: 12px;
}
.round-option-group input:checked + .text,
.rectangle-option-group input:checked + .text {
  background-color: var(--primary);
  color: var(--white);
}
.round-option-group input:checked + .text::selection {
  color: var(--white);
}
.rectangle-option-group {
  margin: 0;
  cursor:pointer;
}
.rectangle-option-group .text {
  padding: 0 3px;
  line-height: 1;
  border-radius: 2px;
}
.price-range-display {
  font-weight: 700;
  margin-bottom: 15px;
}
.search-form .btn-submit svg {
  height: 0.9em;
  vertical-align: -0.1em;
  margin-right: 0.4em;
}
.advance-search-toggle {
  /*color: var(--default-50);*/
  /*fill: var(--default-50);*/
}
.advance-search-toggle svg {
  height: 0.75em;
}
.advance-search-toggle .text {
  /*border-bottom: 1px solid;*/
}
.advance-search-toggle:hover {
  color: var(--primary);
  fill: var(--primary);
}
/*Search Form Popup*/
#search-form-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: rgba(255,255,255,0.95);
  overflow-x: hidden;
  overflow-y: auto;
}
#search-form-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.search-form-popup-box {
  -webkit-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);
  -moz-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);
  box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.35);
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  padding-left: var(--search-form-padding);
  padding-right: var(--search-form-padding);
  position: relative;
}
.search-form-popup-box .search-form-container {
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  overflow: visible;
}
.search-form-popup-box .container {
  padding: 0 !important;
}
.search-form-popup-box .search-form-purpose {
  background-color: rgba(0,0,0,0.1);
}
.search-form-popup-close {
  display: inline-block;
  cursor: pointer;
  fill: none;
  opacity: .3;
  stroke: var(--default);
  stroke-miterlimit: 10;
  stroke-width: 2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
  top: var(--search-form-padding);
  right: var(--search-form-padding);
}
.search-form-popup-close svg {
  height: 15px;
}
.search-form-popup-close:hover {
  opacity: 1;
  stroke: var(--primary);
}
/*Recent Properties*/
.recent-properties-tab {
  position: relative;
  text-align: center;
  cursor: pointer;
  /*font-size: 26px;*/
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-10);
  color: var(--default-50);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recent-properties-tab::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  border-bottom: 4px solid var(--default);
  opacity: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recent-properties-tab::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--default);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.recent-properties-tab.active{
  font-weight: bold;
}
.recent-properties-tab.active,
.recent-properties-tab:hover {
  color: var(--default);

}
.recent-properties-tab.active::before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}
..recent-properties-tab {
  position: relative;
  text-align: center;
  cursor: pointer;
  /*font-size: 26px;*/
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-10);
  color: var(--default-50);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recent-properties-tab::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  border-bottom: 4px solid var(--default);
  opacity: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recent-properties-tab::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--default);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.recent-properties-tab.active{
  font-weight: bold;
}
.recent-properties-tab.active,
.recent-properties-tab:hover {
  color: var(--default);

}
.recent-properties-tab.active::before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}
.recent-properties-tab.active::after {
  opacity: 1;

}-tab.active::after {
  opacity: 1;

}

.featured_icon{
  margin-right:18px !important;
}




.featured-properties-tab {
  position: relative;
  text-align: center;
  cursor: pointer;
  /*font-size: 26px;*/
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-10);
  color: var(--default-50);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.featured-properties-tab::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  border-bottom: 4px solid var(--default);
  opacity: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.featured-properties-tab::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--default);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.featured-properties-tab.active{
  font-weight: bold;
}
.featured-properties-tab.active,
.featured-properties-tab:hover {
  color: var(--default);

}
.featured-properties-tab.active::before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}
.featured-properties-tab.active::after {
  opacity: 1;

}
















.bazaraki_logo{
  height: 40px !important;
}











.recent-properties-dropdown:not(.active) {
  display: none;
}
.featured-properties-dropdown:not(.active) {
  display: none;
}
/*Agent Valuation*/
.agent-valuation-box {
  border-radius: 30px;
  overflow: hidden;
}
.agent-valuation-box-container {
  position: relative;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%,rgb(255, 255, 255) 50%,rgba(255,255,255,0.8) 90%,rgba(255,255,255,0) 100%);
  z-index: 1;
}
.agent-valuation-box-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 5px solid;
  border-left: 5px solid;
  border-top-left-radius: 55px;
  width: 60%;
  height: 43%;
  z-index: -1;
}

.contact-form-section .form-control-with-label.line-control label {
  padding: 5px 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-form-section .form-control-with-label.line-control .form-control {
  padding: 20px 18px 3px;
}

/*responsive michalis*/

.free-agent-inner-box{

  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 30px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}


.free-agent-inner-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgb(255, 255, 255) 50%,rgba(255,255,255,0) 100%);
}

.agent-valuation-img::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: "";
  background: -moz-linear-gradient(to bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(to bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 18%, rgba(255, 255, 255, 0) 100%);
  height: 110px;

}
.agent-valuation-img {
  margin-top:-40px;
  position: relative;
  z-index:-1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 200px;


}

.agent-valuation-img img{

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 280px;
  object-fit: cover;
  object-position: 65% center;
  margin-top:20px;
}



.free-agent-box-responsive{
  position:relative;
  padding-top: 20px;
  /*padding-left:10px;*/
  /*margin-left: 10px;*/
  /*margin-right: 10px;*/

  border-top-left-radius: 20px;
}

.free-agent-inner-box-responsive{
  border-left: 3px solid black;
  border-top: 3px solid black;
  border-top-left-radius: 30px;
  /*border-bottom-right-radius: 30px;*/
  /*padding: 30px;*/
  /*min-height: 240px;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;


}

.property-button{
  font-size: 18px;
  padding-top:3px;
  padding-bottom: 3px;
}

.free-agent-text{
  font-weight: 600;
  font-size: 14px;
}




/*info numbers section*/
.big-gray-text{
  font-size: 52px;
  color: rgba(35, 31, 32, 0.5);

}
.custom-border-right-edge, .custom-border-right{
  border-right: 2px solid rgba(35, 31, 32, 0.2);
}
/*.custom_border-bottom{*/
/*  border-bottom: none;*/
/*}*/
/*end section*/

.custom-border-right{
  border-right: none;
}
.custom_border-bottom{
  border-bottom: 2px solid rgba(35, 31, 32, 0.2);
}

/*contacts*/

.contact-title-container{
  /*padding-left:50px;*/
  margin-left:-10px;

}



.contacts-title-text{
  font-weight: 800;
  font-size: 20px;
  /*padding-left: 50px;*/
}
.contact-upper-gray {
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;

  /*padding-left: 10px;*/
  padding-left: 12%;

  font-size: 13px;
  background-color: rgba(35, 31, 32, 0.1);
  /*border-top-left-radius: 50px;*/
  /*border-bottom-left-radius: 50px;*/

}

.gray-container{
  padding-left:3px;
}

.contact-info-text-div {
  padding-top: 40px;
  padding-left: 12%;
  border-right: none;
  border-bottom: 8px solid rgba(35, 31, 32, 0.1);


}

.contact-info-inner-block{
  margin-bottom:30px;
}

.info-top-text {
  font-size: 12px;
  font-weight: 800;
}
.info-mid-text{
  font-size: 14px;
  font-weight: 500;
}
.optional-text{
  display:contents !important;
  font-size: 14px;
  color: rgba(35, 31, 32, 0.5);

}
.small-gray-text{
  color: rgba(35, 31, 32, 0.6);
  font-size: 14px;
}


.contact-form-radius{
  padding-top:12px !important;
  padding-bottom:12px !important;
  border-radius:50px;
}







/*end contacts*/




/*Property Types*/
.type-res-wrap {
  padding-top: 80%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.type-res-wrap img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.type-res-title {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
  color: var(--white);
}
.type-res-wrap:hover img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Property Cities*/
.city-res-wrap {
  /*height: 280px;*/
  padding-top: 280px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.city-res-wrap img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.city-res-title {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
  color: var(--white);
}
.city-res-wrap:hover img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Page Header Section*/
.page-header-section {
  margin-top: 50px;
}
.page-header-border {
  padding-bottom: 50px;
  border-bottom: 2px solid var(--default-20);
}
.page-header-image {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
}
.page-header-paragraph b {
  color: var(--default);
}
/*Property Listings*/
.property-res-item {
  height: 100%;
}
.spot-property-res-item {
  background-color: var(--white);
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(66,5,22,0.15);
  -moz-box-shadow: 0px 0px 18px 0px rgba(66,5,22,0.15);
  box-shadow: 0px 0px 18px 0px rgba(66,5,22,0.15);
  overflow: hidden;
}
.spot-property-res-image {
  position: relative;
  padding-top: 50%;
  background-color: rgba(0,0,0,0.05);
}
.property-res-wrap {
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.15);
  -moz-box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.15);
  box-shadow: 0px 0px 18px 0px rgba(66,4,22,0.15);
  border-radius: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: var(--white);
  height: 100%;
}
.property-res-image {
  position: relative;
  overflow: hidden;
  padding-top: 45%;
  background-color: rgba(0,0,0,0.05);
}
.property-res-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.property-res-text {
  padding: 15px;
}
.property-res-purpose,
.property-res-location {
  color: var(--white);
  background-color: var(--default);
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid;
}
.spot-property-res-item .property-res-purpose,
.spot-property-res-item .property-res-location {
  padding: 2px 4px;
  border-radius: 7px;
  border-width: 2px;
}
/*.property-res-purpose {*/
/*  background-color: transparent;*/
/*  border-color: var(--primary);*/
/*  color: var(--primary);*/
/*}*/
.property-res-location {
  background-color: rgba(0,0,0,0.3);
  border-color: transparent;
}
.property-res-location svg {
  height: 0.8em;
  fill: var(--white);
  vertical-align: -0.1em;
}
.property-res-features svg {
  height: 24.8px;
  vertical-align: -2px;
  margin-right: 2px;
}
.property-res-wrap:hover {
  -webkit-box-shadow: 0px 0px 25px 0px rgba(66,4,22,0.2);
  -moz-box-shadow: 0px 0px 25px 0px rgba(66,4,22,0.2);
  box-shadow: 0px 0px 25px 0px rgba(66,4,22,0.2);
}
.property-res-wrap:hover .property-res-image img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.owl-carousel.spot-property-slider-carousel::before,
.owl-carousel.spot-property-slider-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
}
.owl-carousel.spot-property-slider-carousel::before {
  left: 0;
  background: linear-gradient(to right,  rgba(35,31,32,0.4) 0%,rgba(35,31,32,0) 100%);
}
.owl-carousel.spot-property-slider-carousel::after {
  right: 0;
  background: linear-gradient(to right,  rgba(35,31,32,0) 0%,rgba(35,31,32,0.4) 100%);
}
.owl-carousel.spot-property-slider-carousel .owl-nav button {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 23px;
  height: 21px;
  margin: auto;
  fill: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.spot-property-slider-carousel .owl-nav button.owl-prev {
  left: 10px;
}
.owl-carousel.spot-property-slider-carousel .owl-nav button.owl-next {
  right: 10px;
}
.owl-carousel.spot-property-slider-carousel .owl-nav button:hover {
  fill: var(--primary);
}
/*Property Results*/
.sorting-select {
  width: 150px;
  font-size: 13px;
}
.sorting-select .select2-container .select2-selection--single,
.sorting-select .select2-container .select2-selection--multiple {
  border-radius: 7px;
  height: auto;
  border: 1px solid var(--default);
}
.sorting-select .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 5px;
  padding-right: 20px;
}
.sorting-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: 25px;
}
.sorting-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--default) transparent transparent transparent;
}
.sorting-select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--default) transparent;
}
.select2-dropdown {
  border: 1px solid var(--default);
  border-radius: 7px;
  font-size: 16px;
  overflow: hidden;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary);
  color: white;
}
#load-more {
  border-radius: 5px;
  cursor: pointer;
}
/*Property Publish*/
.property-top-box {
  /*-webkit-box-shadow: 0px 0px 18px 0px rgba(35,31,32,0.15);*/
  /*-moz-box-shadow: 0px 0px 18px 0px rgba(35,31,32,0.15);*/
  /*box-shadow: 0px 0px 18px 0px rgba(35,31,32,0.15);*/

  -webkit-box-shadow: 6px 6px 6px 0px rgba(35,31,32,0.15);
  -moz-box-shadow: 6px 6px 6px 0px rgba(35,31,32,0.15);
  box-shadow: 6px 6px 6px 0px rgba(35,31,32,0.15);


  border-radius: 25px;
  overflow: hidden;
}
.property-publish-label {
  border-radius: 10px;
  padding: 5px 10px;
  line-height: 1;
  pointer-events: none;
}
.property-publish-label svg {
  height: 0.9em;
  vertical-align: -0.1em;
}
.property-publish-features svg {
  height: 25px;
}
.property-small-gallery-swiper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.property-publish-big-image,
.property-publish-small-image {
  position: relative;
  /*padding-top: 69%;*/
  /*padding-top: 72%;*/
  /*padding-top: 77%;*/
  padding-top: 75.343%;
  background-color: rgba(0,0,0,0.05);
}
/*.property-publish-big-image{*/
/*  !*padding-top: 50%;*!*/
/*  padding-top: 74.268%;*/
/*}*/

.property-publish-big-image{
  padding-top: 75.414%;
}

@-moz-document url-prefix() {
  .property-publish-big-image{
    padding-top: 74.201%;
  }
}
.property-publish-big-image-single{
  padding-top: 52%;
}

.property-gallery-images .swiper-button-next,
.property-gallery-images .swiper-button-prev {
  /*border: 1px solid;*/
  border: 2px solid;
  color: var(--default);
  /*width: 40px;*/
  /*height: 40px;*/
  width: 43px;
  height: 43px;

  border-radius: 50%;
  bottom: 60px;
  top: auto;
  right: 0 !important;
  left: -100px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.property-gallery-images .swiper-button-prev {
  left: -155px;
}












/*.responsive-swiper-buttons .swiper-button-prev {*/
/*  left: 0px;*/
/*}*/





.property-gallery-images .swiper-button-prev i,
.property-gallery-images .swiper-button-next i {
  display: none;
}
.property-gallery-images .swiper-button-prev::after,
.property-gallery-images .swiper-button-next::after {
  content: "";
  font-family: inherit;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 1px solid;
  border-right: 1px solid;
}












.responsive-swiper-buttons .swiper-button-next,
.responsive-swiper-buttons .swiper-button-prev {
  border: 1px solid;
  color: var(--default);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  bottom: 0;
  top: auto;
  right: 15px !important;
  /*left: -100px;*/
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.responsive-swiper-buttons .swiper-button-prev {
  left: 3px;
}




.responsive-swiper-buttons .swiper-button-prev::after,
.responsive-swiper-buttons .swiper-button-next::after {
  content: "";
  font-family: inherit;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.responsive-swiper-buttons .swiper-button-prev::after {
  transform: rotate(-135deg);
  left: 6px;
}
.responsive-swiper-buttons .swiper-button-next::after {
  transform: rotate(45deg);
  left: -6px;
}

.responsive-swiper-buttons .swiper-button-next:hover,
.responsive-swiper-buttons .swiper-button-prev:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}




.black-box-arrows{
  position: absolute;
  bottom:0;
  right: 0;
  width:100%;
  height: 83px;
  /*height: 10.5%;*/
  background-color: black;
  z-index:1;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 20px;
}


.black-box-arrows .swiper-button-prev {
  /*position:absolute;*/
  position:relative;
  bottom:0 !important;
  left:0% !important;
  /*background-color: white;*/
  border-color: white;
  margin-right: 20px;
  top: 10px !important;
  width:60px;
  height: 60px;
}
.black-box-arrows .swiper-button-next {
  position:relative;
  bottom:0 !important;
  left:0% !important;
  border-color: white;
  top: 10px !important;
  width:60px;
  height: 60px;
}

.black-box-arrows .swiper-button-prev.swiper-button-disabled {
  opacity: .60;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-disabled , .swiper-button-next.swiper-button-disabled  {
  opacity: .60;
  cursor: auto;
  pointer-events: none;
}





.black-box-arrows .swiper-button-prev::after,
.black-box-arrows .swiper-button-next::after {
  content: "";
  font-family: inherit;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  color: white;
  border-top: 2px solid;
  border-right: 2px solid;
}

.black-box-arrows .swiper-button-prev::after {
  transform: rotate(-135deg);
  left: 6px;
}
.black-box-arrows .swiper-button-next::after {
  transform: rotate(45deg);
  left: -6px;
}


@media (min-width: 991px) and (max-width: 991px){
  .m-991px{
    margin-top:180px;
  }

  .hide-991{
    display:none;
  }


}






.property-gallery-images .swiper-button-prev::after {
  transform: rotate(-135deg);
  left: 6px;
}



.swiper-buttons{
  position:absolute;
  bottom:32px;
  left:0;
  display: flex;
  justify-content: end;
  width:100%;
  padding-right: 45px;
}

.gallery-images-large-swiper .swiper-button-prev {
  /*position:absolute;*/
  position:relative;
  bottom:0px;
  left:0% !important;
  background-color: white;
  margin-right: 15px;
}
.gallery-images-large-swiper .swiper-button-next {
  position:relative;
  bottom:0px;
  left:0% !important;
  background-color: white;
}



















.property-gallery-images .swiper-button-next::after {
  transform: rotate(45deg);
  left: -6px;
}
.property-gallery-images .swiper-button-next:hover,
.property-gallery-images .swiper-button-prev:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}



.black-box-arrows .swiper-button-next:hover,
.black-box-arrows .swiper-button-prev:hover {
  background-color: transparent;
  border-color: red;
  color: red;
}
.black-box-arrows .swiper-button-next:hover:after,
.black-box-arrows .swiper-button-prev:hover:after {
  background-color: transparent;
  border-color: red;
  color: red;
}














.publish-fields-box {
  min-height: 100%;
}
.publish-fields-box-head {
  background-color: var(--default);
  color: var(--white);
  /*border-top-left-radius: 20px;*/
  /*border-top-right-radius: 20px;*/
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  position: relative;
  z-index: 1;
}
.publish-fields-box-body {
  border: 1px solid var(--primary);
  margin-top: -1px;
  /*border-bottom-left-radius: 20px;*/
  /*border-bottom-right-radius: 20px;*/

  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.publish-field-item img {
  height: 0.9em;
  margin-right: 7px;
  vertical-align: 0.01em;
  width: 0.9em;
}
.read-more-container {
  color : var(--default) !important;
  position: relative;
}
.read-more-more,
.read-more-container.more .read-more-less {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.read-more-container.more .read-more-more {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.read-more-container iframe{
/*pointer-events: auto;*/
}



.read-more-container:not(.has-more) .read-more-button {
  display: none;
}
.read-more-button.more .more-text,
.read-more-button:not(.more) .less-text {
  display: none;
}
.read-more-button {
  /*margin-top: 30px;*/
  display: inline-block;
  border-bottom: 1px solid;
  cursor: pointer;
  color: var(--default);
}
.read-more-button:hover {
  color: var(--primary);
}
.property-agent-box {
  /*border-radius: 20px;*/
  border-radius: 12px; /* new publish design*/
  overflow: hidden;
  background-color: #F7F7F7;
}
.property-agent-image {
  padding-top: 95%;
  position: relative;
}
.property-agent-box p {
  margin-bottom: 13px;
}
.property-agent-social a img {
  height: 21px;
}
.swiper.similar-properties-swiper.with-pseudos::before,
.swiper.similar-properties-swiper.with-pseudos::after {
  top: -30px;
  bottom: -30px;
  width: 10000px;
  background-color: var(--secondary);
}
.swiper.similar-properties-swiper.with-pseudos::before {
  left: -10030px;
}
.swiper.similar-properties-swiper.with-pseudos::after {
  right: -10030px;
}
.similar-properties-swiper .swiper-slide {
  height: auto;
}
/*Property Publish - Enquiry*/
.enquiry-form {
  background-color: white;
  overflow: hidden;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
  box-shadow: 0px 0px 22px 0px rgba(71,4,23,0.15);
}
.enquiry-form-toggle {
  min-height: 315px;
  height: 100%;
}

.interested-horizontal{
  position: relative;
  min-height:50px !important;
  max-height: 50px !important;
  /*border-radius: 20px;*/
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top:20px;
  padding-top:5px;
  padding-bottom:5px;
  background-color: var(--primary);
  color:white;
  font-size: 20px;
  font-weight: 700;


}

.big-swiper-height{
  height: fit-content;
}

@media (min-width: 991px){
  .big-swiper-height{
    height: auto;
  }
}


@media (min-width: 768px) and (max-width: 991px){
  .agent-valuation-box-container {
    position: relative;
    background: linear-gradient(to right, rgb(255, 255, 255) 0%,rgb(255, 255, 255) 50%,rgba(255,255,255,0.8) 60%,rgba(255,255,255,0) 100%);
    z-index: 1;
  }

  .property-top-box {
    margin-left: -35px !important;
    margin-right: -35px !important;
  }




}






.enquiry-form-container {
  background-color: var(--white);
  padding: 15px 25px;
  max-width: 595px;
  width: 100%;
}
body:not(.enquiry-form-opened) .enquiry-form-container,
body.enquiry-form-opened .search-form-toggle {
  display: none;
}
body.enquiry-form-opened .stick-side-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.enquiry-form-container .form-control,
.enquiry-form-container .select2-container .select2-selection--single,
.enquiry-form-container .select2-container .select2-selection--multiple {
  height: 45px;
}
.enquiry-form-container .form-control-with-label label {
  font-weight: 400;
}
.enquiry-form-container .form-control-with-label.focused label,
.enquiry-form-container .form-control-with-label.always-focused label {
  font-size: 14px;
}
.enquiry-form-container textarea.form-control {
  height: 80px;
}
/*Contact*/
.contact-header {
  position: relative;
}
.contact-header-image {
  position: relative;
  padding-top: 155%;
}
.contact-header-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(37,33,88,0.7) 0%,rgba(37,33,88,0) 100%);
}
.contact-header-over {
  background-color: var(--default-25);
  color: white;
  padding-top: 130px;
}
.contact-page-info {
  background-color: #f4f0ea;
  overflow: hidden;
}
.contact-page-info p:not(:last-child) {
  margin-bottom: 1em;
}
.contact-page-info .loader:before {
  background-color: rgba(244,240,234,0.7);
}

.my-contact-form .text-danger {
  font-size: 12px;
  position: relative;
  top: 2px;
  color: var(--error) !important;
}
/*Footer*/
footer {
  overflow: hidden;
}

.footer-top {
  border-bottom: 3px solid;
  border-right: 3px solid;
  border-bottom-right-radius: 60px;
}
.footer-social a {
  width: 30px;
  height: 30px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default);
  font-size: 24px;
  line-height: 1;
}
.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}
.footer-menu li:not(:last-child) {
  margin-bottom: 5px;
}
footer a:hover {
  color: var(--primary);
}
footer .form-control.form-control-underline {
  border-radius: 0;
  background-color: transparent;
  color: white;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 2px solid white;
  padding: 5px 0;
  height: auto;
}
footer .form-control.form-control-underline::-webkit-input-placeholder {
  color: white !important;
  opacity: 1 !important;
}
footer .form-control.form-control-underline::-moz-placeholder {
  color: white !important;
  opacity: 1 !important;
}
footer .form-control.form-control-underline:-ms-input-placeholder {
  color: white !important;
  opacity: 1 !important;
}
footer .form-control.form-control-underline::placeholder {
  color: white !important;
  opacity: 1 !important;
}
footer .form-group .btn {
  border-radius: 0;
}
footer .form-group .btn svg {
  height: 1em;
}
footer .sk-square-check {
  background-color: white;
}
/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 100%;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 100%;
  }
}
/* md */
@media (min-width: 768px) {
  /*All*/
  :root {
    --body-size: 16px;
    --search-form-padding: 25px;
    --search-form-padding-min: -25px;
  }
  /*Forms*/
  .form-control-with-label.focused label,
  .form-control-with-label.always-focused label {
    font-size: 12px;
  }




  .form-control-with-label.line-control textarea.form-control {
    height: 150px;
  }
  /*Header*/
  header .logo img {
    height: 55px;
  }
  /*Fixed Header*/
  .fixed-header .logo img {
    height: 50px;
  }
    .fixed-header-showed .header-box {
        padding-top: 15px;
    }
   .fixed-header-showed .fixed-header .logo img {
        height: 40px;
    }
  /*Search Form*/
  #homepage-slider + #search-form .search-form {
    margin-top: -280px;
  }
  .purpose-toggle .text {
    padding: 8px 10px;
  }
  .form-search-ref-id .form-control {
    /*padding: 5px var(--search-form-padding) 5px 65px !important;*/
    padding: 5px 5px 5px 35px !important;
  }
  .search-form.advance-search-open .form-search-ref-id .form-control {
    padding: 15px var(--search-form-padding) 15px 65px !important;
  }
  .search-form .form-group {
    margin-bottom: 20px;
  }
  .search-form .form-control,
  .search-form .select2-container .select2-selection--single,
  .search-form .select2-container .select2-selection--multiple {
    height: 65px;
  }
  .search-form .form-control-with-label .form-control,
  .search-form .form-control-with-label .select2-container .select2-selection--single .select2-selection__rendered,
  .search-form .select2-container .select2-selection--multiple {
    padding: 30px var(--form-padding-x) 10px;



    background-color: white;
    border-radius: 5px;
    height: 99.8%;







  }
  .search-form .form-control-with-label label {
    padding: 7px var(--form-padding-x);
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 75%;
  }
  .advance-search-toggle-open {
    padding-right: 40px;
  }
  /*Property Results*/
  .sorting-select {
    width: 170px;
    font-size: 16px;
  }
  /*Property Listings*/
  .spot-property-res-item .property-res-purpose,
  .spot-property-res-item .property-res-location {
    padding: 5px 7px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 75%;
  }
  .contact-header-image::after {
    height: 250px;
  }
  .contact-header-over {
    padding-top: 250px;
  }
  /*Footer*/

  .footer-menu li:not(:last-child) {
    margin-bottom: 15px;
  }



}
/* lg */
@media (min-width: 992px) {




    header .logo img {
        height: 65px;
    }

  /*All*/
  .circle-text-wrap {
    width: 275px;
    height: 275px;
  }
  .circle-text {
    width: 275px;
    height: 275px;
  }
  .circle-text span {
    height: 137.5px;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 80px;
  }












  .my-contact-form .text-danger {
    text-align: right;
  }
  .contact-page-info p:not(:last-child) {
    margin-bottom: 1.7em;
  }


  .custom-border-right-edge, .custom-border-right{
    border-right: 2px solid rgba(35, 31, 32, 0.2);

  }
  .custom_border-bottom{
    border-bottom: none;
  }




  /*contacts*/

  .contacts-container{
    /*padding-top:90px !important;*/
  }
  .contacts-title-text{

    /*padding-left: 40px;*/
  }

  .contact-upper-gray {
    font-weight: 600;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    margin-left: 13%;
    font-size: 20px;
    background-color: rgba(35, 31, 32, 0.1);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .contact-info-text-div {
    padding-top: 45px;
    padding-left: 16%;
    border-right: 6px solid rgba(35, 31, 32, 0.1);
    border-bottom: 6px solid rgba(35, 31, 32, 0.1);
    border-bottom-right-radius: 60px;
  }

  .contact-info-inner-block{
    margin-bottom:30px;
  }

  .info-top-text {
    font-size: 16px;
    font-weight: 800;
  }
  .info-mid-text{
    font-size: 22px;
  }
  .optional-text{
    font-size: 12px;
  }

  .small-gray-text{
    color: rgba(35, 31, 32, 0.6);
    font-size: 14px;
  }

  /*end contacts*/


















}



@media (min-width: 1024px){
  .col-lg-45 {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%
  }
  .col-lg-55 {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%
  }
}



@media (max-width: 1199px) {
    body.fixed-header-showed .search-col {
        display: block !important;
    }
  .black-box-arrows{
    height: 50px;
    padding-right: 15px;
  }

  .black-box-arrows .swiper-button-prev {
    width:35px;
    height: 35px;
    margin-right: 15px;
  }
  .black-box-arrows .swiper-button-next {
    width:35px;
    height: 35px;
  }
  .black-box-arrows .swiper-button-prev::after,
  .black-box-arrows .swiper-button-next::after {
    width: 12px;
    height: 12px;
  }











}




/* xl */
@media (min-width: 1200px) {
  /*All*/
  :root {
    --body-size: 18px;
    --form-padding-x: 20px;
  }
    .home-value-box-col-main:hover{
        padding-top: 35px;
    }
  .fixed-header-showed .fixed-header .logo img {
      height: 48px;
  }
    .fixed-header-showed .header-box {
      padding-top: 15px;
  }
  /*Fixed Header*/
  .fixed-header .logo img {
    height: 70px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 43%;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 100px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 50%;
  }
  /*info numbers section*/
  .big-gray-text{
    font-size: 112px;
  }

}
/* xxl */
@media (min-width: 1500px) {
  /*All*/
  :root {
    --search-form-padding: 35px;
    --search-form-padding-min: -35px;
  }
  /*Forms*/
  .form-control-with-label.line-control textarea.form-control {
    height: 150px;
  }
  /*Header*/
  header .logo img {
    height: 76px
  }
  /*Search Form*/
  #homepage-slider + #search-form .search-form {
    margin-top: -310px;
  }
  .advance-search-toggle-open {
    padding-right: 85px;
  }
  .search-form .form-group {
    margin-bottom: 30px;
  }
  /*Contact*/
  .contact-header-image::after {
    height: 350px;
  }
  .contact-header-over {
    padding-top: 350px;
  }
  /*Footer*/

}
/* xxxl */
@media (min-width: 1750px) {
  /*Header*/
  .header-language-col {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }
}





/*Responsive - Desktop First*/
/* xxl */
@media (max-width: 1749.98px) {
    :root {
        /*--extra-small-container: 30px;*/
        --extra-small-container: 40px;
    }


    .home-slider-box > div {
        padding-left: 40px;
    }
    .header-links-col {
        column-gap: 37px;
    }
}
@media (max-width: 1599.98px) {
    .home-slide-img {
        padding-top: 40%;
    }
}
/* xl */
@media (max-width: 1499.98px) {
 :root {
     --extra-small-container: 20px;
     --footer-marign-top: 200px;
 }

    .home-slider-box > div {
        padding-left: 40px;
    }
    .ticker-group {
        gap: 80px;
        padding-right: 80px;
    }
    .header-menu-dropdown.brands {
        padding-left: 212px;
    }
    .newsletter-box-content img {
        object-fit: none;
        height: auto;
    }
    header {
        /*padding-top: 107px;*/
        padding-top: 113px;
    }
    .cat-publish-boxes {
        top: -50px;
    }
    .content-cat-industrial-publish:before {
        top: 14px;
    }
    .industrial-gallery {
        margin-top: 183px;
    }
    .sub-cat-menu {
        padding-left: 20px;
    }
    .about-top-boxes {
        top: -30px;
    }
    .about-find-box:before {
        top: 14px;
    }
    .about-find-title {
        margin-bottom: 223px;
        max-width: 82%;
        margin-top: -13px;
    }
    .about-unicol {
        margin-bottom: 197px;
    }
    .about-swiper-btns {
        bottom: 25px;
        right: 35px;
    }
    .about-swiper {
        border: 10px solid var(--primary);
    }
    .about-values {
        margin-bottom: 180px;
    }
    .about-top-main {
        margin-bottom: 390px;
    }
    .about-value-pt {
        padding-top: 407px;
    }
    .about-page {
        margin-top: 134px;
    }
    .contact-page {
        margin-top: 134px;
    }
    .contact-left-top {
        margin-bottom: 125px;
    }
    .contact-form-bg {
        padding: 32px var(--grid) 32px 30px;
        margin-top: 116px;
    }
    .contact-map {
        margin-top: 188px;
        border: 10px solid var(--primary);
    }
    .chemical-boxes {
        top: 60px;
    }
    .chemicals-top:before {
        top: 12px;
    }
    .chemicals-top-subtitle {
        max-width: 50%;
        margin-bottom: 110px;
    }
    .chemicals-page {
        margin-top: 134px;
    }
    .pages-top-box {
        padding-top: 135px;
    }
    .home-values-main-container {
        margin-top: 139px;
    }
    .home-value-box-icon img {
        height: 80px;
    }
    .home-value-box:before {
        top: 14px;
    }
    /*.home-value-icon img {*/
    /*    height: 90px;*/
    /*}*/
    .home-value-icon {
        height: 127px
    }
    .home-value-icon.first img{
        height: 101px
    }
    .home-value-icon.second img{
        height: 101px
    }
    .home-value-icon.third img{
        height: 123px
    }
    .home-value-icon.fourth img{
        height: 101px
    }
    .home-value-box-col-main {
        padding-top: 150px;
    }
    .home-value-box-col {
        padding-left: 20px;
        padding-right: 20px;
    }
    /*.home-value-box {*/
    /*    margin-bottom: 220px;*/
    /*    margin-top: 51px;*/
    /*}*/
    .home-value-box:not(.about) {
        margin-bottom: 220px;
        margin-top: 51px;
    }
    .home-values-btn {
        margin-top: 170px;
    }
    .home-cat-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    /*.home-top-swiper-btns .swiper-pagination-bullet {*/
   .swiper-pagination-bullet {
        width: 67px;
    }
    /*.home-top-swiper-btns .swiper-pagination {*/
    .swiper-pagination {
        column-gap: 20px;
    }
    .btns-box {
        column-gap: 30px;
    }
    .swiper-button-prev img,
    .swiper-button-next img{
        width: 20px;
    }
    .home-slider-line {
        top: 19px;
    }
    .header-menu-dropdown {
        top: 36px;
    }
    /*.header-menu-dropdown.brands {*/
    /*.header-menu-dropdown {*/
    /*    padding-left: 165px;*/
    /*}*/

    .typed-search-box {
        right: -40px;
    }
    .footer {
        margin-bottom: 25px;
    }
    .footer-eqa {
        height: 48px;
    }
    .footer-right .bottom {
        margin-top: 61px;
    }
    .footer-right {
        width: 57%;
    }
    .footer-logo {
        padding: 85px 33px 64px 33px;
    }
    .footer-logo img {
        height: 100px;
    }
    .header-links-col {
        column-gap: 30px;
    }
}
@media (max-width: 1299.98px) {
    .header-links-col {
        column-gap: 17px;
    }
    /*.header-menu-dropdown.brands {*/
    /*.header-menu-dropdown {*/
    /*    padding-left: 151px;*/
    /*}*/

    .header-menu-dropdown.brands {
        padding-left: 197px;
    }
    /*.header-menu-dropdown {*/
    /*    padding-left: 29px;*/
    /*}*/
}
/* lg */
@media (max-width: 1199.98px) {
    :root {
        --footer-marign-top: 100px;
        /*--extra-small-container: 0;*/
    }

    .more-info-title {
        -webkit-text-stroke: 1px transparent;
        text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    }
    .menu-toggle-content.res-active a:before,
    .menu-toggle-content.res-active a > span:before {
        width: 100%;
    }

    .res-menu-row.res-active .res-parent-arrow img {
        transform: rotate(-90deg);
        filter: none;
        -webkit-filter: none;
    }
    .phone-toggle-group-menu {
        position: relative;
    }
    a.phone-toggle-group-menu:before {
        content: "";
        position: absolute;
        left: 0;
        width: 0;
        bottom: -3px;
        height: 2px;
        background-color: var(--primary);
        transition: all .5s ease;
    }
    a.phone-toggle-group-menu.active:before {
        width: 100%;
    }
    .menu-toggle-content a:before,
    .menu-toggle-content a > span:before {
        bottom: -3px !important;
        height: 2px !important;
    }
    .ticker-group {
        gap: 50px;
        padding-right: 50px;
    }
    .home-slider-box > div {
        padding-left: var(--grid);
    }

    .header-menu-dropdown {
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
    .about-top:before {
        top: 4px;
    }
    header {
        padding-top: 87px;
    }
    body.megamenu-opened,
    html.megamenu-opened {
        overflow: hidden;
        touch-action: none;
        -ms-touch-action: none;
    }
    .header-menu-dropdown {
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 21px;
    }
    .sub-cat-menu {
        display: none;
        position: static;
        z-index: 100;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        padding-left: 0;
        width: auto;
        margin-bottom: 7px;
    }
    .sub-cat-menu.active {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }
    .header-menu-dropdown {
        display: none !important;
        position: static;
        min-height: auto;
        pointer-events: all;
        z-index: 100;
        opacity: 1;
        visibility: visible;
    }
    .header-menu-dropdown.brands {
        padding-left: 0;
    }
    .header-menu-dropdown.active {
        display: flex !important;
    }
    /*.header-menu-dropdown.res-menu.active .link-hover:before,*/
    /*.header-menu-dropdown.res-menu.active .header-link > span:before,*/
    /*.header-menu-dropdown.res-menu.active .header-link.active > span:before {*/
    /*    width: 100%;*/
    /*}*/
    .link-hover:before,
    .header-link > span:before {
        bottom: -3px;
        height: 2px;
    }
    .typed-search-box {
        right: -1px;
        left: -1px;
    }
    .search-col {
        padding-left: 0;
        padding-right: 0;
        width: 50%;
    }
    .res-menu-row {
        width: 50%;
    }
    .search-col.active {
        border-color: var(--default);
    }
    .search-input-main input {
        width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .menu-line-top:before {
        content: "";
        position: absolute;
        left: 0;
        width: 0;
        top: 0;
        height: 1px;
        background-color: var(--default);
        transition: all .5s ease;
    }
    body.megamenu-opened .menu-line-top:before {
        width: 100%;
    }
    .menu-phone-main {
        display: block;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        top: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        transition: all .5s ease;
        height: 100vh;
    }
    body.megamenu-opened .menu-phone-main {
        z-index: 9999;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .about-top-boxes {
        top: 38px;
        right: -26%;
        left: -12%;
    }
    .about-unicol-p-top,
    .about-unicol-p-bottom {
        max-width: 55%;
    }
    .about-top-main {
        margin-bottom: 58px;
    }
    .about-value-pt {
        padding-top: 20px;
        margin-bottom: 25px;
    }
    .about-top-p {
        max-width: 65%;
    }
    .contact-form input {
        height: 47px !important;
    }
    .contact-form textarea {
        height: 140px !important;
    }
    .pages-square-icon {
        position: absolute;
        top: -10%;
        right: -30%;
        z-index: -1;
        max-width: none;
        width: 181.8%;
    }
    .pages-top-box {
        padding-top: 37px;
    }
    .home-values-main-container {
        margin-top: -6px;
    }
    .home-excellence-squares-icon {
        position: absolute;
        top: -2%;
        left: -9%;
        right: 0;
        bottom: 0;
        z-index: 6;
        height: 33%;
        max-width: none;
    }
    .home-excellence-box > ::before {
        content: none;
    }
    .home-excellence-p {
        max-width: 95%;
    }
    .home-excellence-box {
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: -12.5vh;
    }
    .home-excellence-box > div > h3 {
        margin-bottom: 18px;
        max-width: 100%;
        position: relative;
    }
    .home-excellence-box > div > h3:before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 5px;
        width: 5px;
        background-color: var(--primary);
        left: var(--min-grid);
    }
    .home-excellence-btn {
        padding: 10px 30px 10px 30px;
    }
    .home-excellence-squares-img {
        width: 100%;
        clip-path: polygon(0px 0px, 100% 0px, 100.22% 82.02%, 0.26% 45.42%);
        max-height: 60vh;
        height: 60vh;
        position: static;
        max-width: 100%;
        object-fit: cover;
    }
    .home-excellence-box-arrow-main {
        background-position: top;
        padding: 25% 0 3% 0;
        width: 100%;
    }
    .footer-get-touch {
        margin-bottom: 50px;
    }
    .more-info-btn {
        margin-top: 14px;
        padding: 8px 30px 9px 30px;
    }
    .more-info-main {
        padding-top: 16px;
        padding-bottom: 25px;
    }
    .more-info-box {
        padding-top: 0;
        padding-bottom: 18%;
    }
    .more-info-title {
        letter-spacing: 3px;
    }
    .home-values-btn {
        margin-top: 0;
    }
    .home-value-box-icon img {
        height: 50px;
    }
    .container-right-xl-none {
        padding-right: var(--grid);
    }
    .home-value-desc {
        display: none;
        margin-right: -23px;
        line-height: 1.3;
    }
    .home-value-box-col-main:hover .home-value-desc {
        display: block;
    }
    .home-value-box-col-main:hover .value-key-title {
        display: none;
    }
    .home-value-key {
        margin-bottom: 16px;
    }
    .home-value-box-col-main {
        padding-top: 16px;
        border-top: none;
        border-right: 1px solid var(--default-20);
    }
    .home-value-box-col-main.first {
        border-top: 1px solid var(--default-20);
    }
    .home-value-box-col {
        padding-left: 16px;
        padding-right: 40px;
    }

    /*.home-value-icon img {*/
    /*    height: 60px;*/
    /*}*/
    .home-value-icon {
        height: 93px
    }
    .home-value-icon.first img{
        height: 89px
    }
    .home-value-icon.second img{
        height: 89px
    }
    .home-value-icon.third img{
        height: 90px
    }
    .home-value-icon.fourth img{
        height: 89px
    }
    /*.home-value-box {*/
    /*    margin-bottom: 20px;*/
    /*    margin-top: 0;*/
    /*}*/
    .home-value-box:not(.about) {
        margin-bottom: 20px;
        margin-top: 0;
    }
    .home-value-box {
        padding-left: 0;
    }
    .home-value-box:before {
        top: 7px;
        bottom: 7px;
        left: var(--min-grid);
    }
    .header-box {
        padding-bottom: 15px;
    }
    .home-slider-line {
        top: 18px;
    }
    .footer-logo {
        padding: 74px 33px 63px 33px;
    }
}
@media(max-width: 1099.98px) {
    .about-find-title {
        margin-bottom: 100px;
    }
}
/* md */
@media (max-width: 991.98px) {
    :root {
        --extra-small-container: 0;
        --footer-marign-top: 33px;
    }

    .ticker-group {
        gap: 25px;
        padding-right: 25px;
    }

    .link-hover.industrial {
        width: 100%;
    }
    .home-cat-outer-text {
        min-width: 235px;
    }
    .newsletter-submit {
        padding: 7px 7px 8px 7px;
    }
    .newsletter-box-content img {
        left: 1px;
    }
    .newsletter-box-content form {
        width: 100%;
    }
    .newsletter-box-content input {
        height: 45px;
    }
    .newsletter-box-content {
        border-left: 7px solid var(--primary);
        padding: 10px 20px 20px 20px;
    }
    .cat-arrow img {
        width: 7px;
    }
    .search-col,
    .res-menu-row {
        width: 100%;
    }
    .industrial-gallery {
        margin-top: 47px;
    }
    .industrial-left,
    .industrial-right {
        padding-top: 60%;
    }
    .industrial-title {
        max-width: 89%;
    }
    .industrial-p {
        margin-top: 18px;
    }
    .content-cat-industrial-publish {
        max-width: 100%;
        padding-right: var(--grid);
    }
    .content-cat-industrial-publish:before {
        left: var(--min-grid);
        width: 6px;
        top: 11px;
    }
    .about-find-boxes {
        right: -45%;
        width: auto;
        top: -27px;
        left: -109%;
    }
    .about-find-img {
        padding-top: 62%;
    }
    .about-unicol {
        margin-bottom: 46px;
    }
    .about-find-btn {
        padding: 11px 35px 12px 35px;
    }
    .about-find-title {
        margin-bottom: 25px;
        margin-top: 0;
    }
    .about-find-box {
        padding-left: var(--grid);
    }
    .about-find-box:before {
        left: 0;
        top: 11px;
        width: 5px;
    }
    .about-swiper-btns .swiper-pagination {
        column-gap: 5px;
    }
    .about-swiper-btns .swiper-pagination-bullet {
        width: 46px;
    }
    .about-swiper-btns {
        bottom: 25px;
        right: var(--grid);
    }
    .about-swiper-btns-box {
        column-gap: 17px;
    }
    .about-slide-img {
        padding-top: 60.5%;
    }
    .about-values {
        margin-bottom: 45px;
    }
    .about-swiper {
        border: none;
    }
    .about-unicol-box:before {
        left: var(--min-grid);
        top: 3px;
        width: 5px;
    }
    .about-unicol-p-top,
    .about-unicol-p-bottom {
        max-width: 100%;
    }
    .about-top-p {
        max-width: 97%;
        padding-right: var(--grid);
    }
    .about-page {
        margin-top: 38px;
    }
    .about-top:before {
        left: var(--min-grid);
        width: 5px;
        top: 5px;
    }
    .contact-map {
        margin-top: 44px;
        padding-top: 60%;
        border: none;
    }
    .contact-email img {
        width: 145px;
    }
    .contact-left-bottom .desc br{
        display: none;
    }
    .contact-left-bottom .desc{
        padding-right: var(--grid);
    }
    .contact-form input {
        height: 39px !important;
    }
    .contact-form textarea {
        height: 103px !important;
    }
    .form-control-with-label.focused label {
        font-size: 12px !important;
    }
    .contact-submit {
        padding: 8px 30px 9px 30px;
    }
    .contact-form-bg {
        padding: 16px var(--grid) 20px var(--grid);
        margin-top: 50px;
    }
    .contact-left-top {
        margin-bottom: 43px;
    }
    .contact-left-top:before {
        top: 2px;
    }
    .contact-page {
        margin-top: 38px;
    }
    .contact-left-top:before,
    .contact-left-bottom:before {
        left: var(--min-grid);
        width: 5px;
    }
    .chemical-boxes {
        top: 50px;
        left: -52%;
        right: -11%;
    }
    .chemicals-bottom:before {
        top: 0;
    }
    .chemicals-bottom {
        margin-top: 40px;
    }
    .chemicals-top-subtitle {
        max-width: 100%;
        margin-bottom: 16px;
    }
    .chemicals-page {
        margin-top: 38px;
    }
    .chemicals-top:before {
        left: var(--min-grid);
        width: 5px;
    }
    .chemicals-bottom:before {
        left: var(--min-grid);
        width: 5px;
    }
    .footer-get-touch {
        margin-bottom: 33px;
    }
    .home-cat-container {
        padding-top: 22px;
        padding-bottom: 22px;
    }
    .home-slider-line {
        top: 3px;
        width: 5px;
    }
    .home-slider-btn {
        padding: 6px 26px 8px 26px;
    }
    .home-top-swiper-btns {
        bottom: 19px;
    }
    /*.home-top-swiper-btns .swiper-pagination {*/
    .swiper-pagination {
        column-gap: 10px;
    }
    /*.home-top-swiper-btns .swiper-pagination-bullet {*/
    .swiper-pagination-bullet {
        width: 45px;
    }
    .home-slider-box > div {
        padding-left: var(--grid);
    }
    .home-slider-box {
        left: 0;
        bottom: 43px;
    }
    .home-slide-img {
        padding-top: 72%;
    }
    .footer {
        margin-bottom: 5px;
    }
    .footer-right .bottom {
        margin-top: 14px;
    }
    .footer-right .bottom .phone,
    .footer-right .bottom .email,
    .footer-right .bottom .location {
        min-width: 42px;
    }
    .footer-right .bottom .phone img,
    .footer-right .bottom .email img {
        width: 20px;
    }
    .footer-right .bottom .location img {
        width: 13px;
    }
    .footer-right .top {
        padding-bottom: 17px;
        padding-top: 17px;
        border-bottom: 2px solid var(--primary);
    }
    .footer-eqa {
        height: 38px;
    }
    .footer-logo img {
        height: 80px;
    }
    .footer-copyright {
        padding-top: 8px;
        padding-bottom: 8px;
        color: rgba(255, 255, 255, .5);
        font-weight: 350;
    }
    .terms-policies-res > :first-child{
        padding-right: 5px;
        margin-right: 4px;
    }
    .terms-policies-res > :first-child:before{
        content: "";
        position: absolute;
        right: 0;
        top: 2px;
        bottom: 2px;
        width: 1px;
        background-color: var(--default);
    }
    .footer-right {
        width: 100%;
    }
    .footer-right .top,
    .footer-right .bottom{
        padding-left: var(--grid);
        padding-right: var(--grid);
    }
    .footer-logo {
        padding: 15px 0 11px var(--grid);
        width: 100%;
    }
    .megamenu-toggle.open .megamenu-icon .line:nth-child(1),
    .megamenu-toggle.always-open .megamenu-icon .line:nth-child(1) {
        top: 5px;
        left: 2px;
        width: 30px;
    }
    .megamenu-toggle.open .megamenu-icon .line:nth-child(3),
    .megamenu-toggle.always-open .megamenu-icon .line:nth-child(3) {
        top: -7px;
        left: 3px;
        width: 30px;
    }
    .megamenu-icon {
        width: 38px;
        height: 21px;
    }
    .megamenu-icon .line {
        border-top: 4px solid;
        width: 100%;
        margin: 2px 0 2px 0;
        position: relative;
    }
  .property-publish-big-image{
    padding-top: 71.9%;
  }



  .featured_icon{
    margin-right:15px !important;
  }


  .property-res-features svg {
    height: 20px;
    vertical-align: -2px;
    margin-right: 2px;
  }



  /*Contact*/

  .reference-search-div{
    min-width: 270px;
  }


  .property-top-box {
    margin-left: -15px;
    margin-right: -15px;
    border: none !important;
    box-shadow: none;
    border-radius: 0px;
  }

  .publish-fields-box-head {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

  }





  .contact-page-info-circle {
    position: relative;
    z-index: 1;
  }
  .contact-page-info-circle:before {
    content: "";
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: -1000px;
    background-color: white;
    z-index: -1;
  }
  /*Footer*/
  .footer-column {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.5);
  }
}

.search-bottom-back{

  /*z-index: -1;*/



  position: absolute; /* Ensures it's positioned relative to its closest positioned ancestor */
  width: 100%;
  height: 100%;
  top: 0;
  left:10px;
  /*left: 50%;*/
  /*transform: translate(-50%, 0); !* Centers the element *!*/
}

.search-form .select2-container .select2-selection--multiple {
  min-height: 65px;
  height:fit-content;
  padding-bottom: 0;
}



/* sm */
@media (max-width: 767.98px) {
    .newsletter-box-content input {
        height: 39px;
    }
    header {
        padding-top: 72px;
    }
    .industrial-left,
    .industrial-right {
        padding-top: 77%;
    }
    .content-cat-industrial-publish:before {
        top: 8px;
    }
    .about-find-img {
        padding-top: 72%;
    }
    .about-find-box:before {
        top: 5px;
    }
    .about-swiper-btns .swiper-pagination-bullet {
        width: 32px;
    }
    .about-slide-img {
        padding-top: 70.5%;
    }
    .about-top:before {
        top: 2px;
    }
    .contact-map {
        padding-top: 70%;
    }
    .chemicals-li:before {
        top: 5px;
        width: 4px;
        height: 4px;
    }
    .swiper-button-prev img,
    .swiper-button-next img {
        width: 11px;
    }
    .home-brand-icon img{
        height: 71px;
    }
    .home-excellence-box {
        margin-top: -12.5vh;
    }
    .home-excellence-squares-img {
        max-height: 42vh;
        height: 42vh;
    }
    .home-values-btn {
        margin-top: 0;
        padding: 10px 20px 10px 20px;
    }
    .home-value-box-icon img {
        height: 33px;
    }
    /*.home-value-icon img {*/
    /*    height: 48px;*/
    /*}*/
    .home-value-icon {
        height: 81px
    }
    .home-value-icon.first img{
        height: 77px
    }
    .home-value-icon.second img{
        height: 77px
    }
    .home-value-icon.third img{
        height: 78px
    }
    .home-value-icon.fourth img{
        height: 77px
    }
    .home-value-box:before {
        top: 1px;
        bottom: 2px;
        width: 6px;
    }
    .home-slide-img {
        padding-top: 82%;
    }
    /*.home-top-swiper-btns .swiper-pagination {*/
    .swiper-pagination {
        column-gap: 5px;
    }
    /*.home-top-swiper-btns .swiper-pagination-bullet {*/
    .swiper-pagination-bullet {
        width: 26px;
    }
    .footer-logo img {
        height: 70px;
    }
    .footer-email img {
        width: 140px;
    }
    .footer-eqa {
        height: 21px;
    }
    .footer-media > a {
        width: 21px;
        height: 21px;
    }
    .footer-logo img {
        height: 66px;
    }
  .search-form.advance-search-open .show-on-advance-padding {
    padding:15px ;
  }

  .search-bottom-back{
    /*z-index: -1;*/
    position: absolute; /* Ensures it's positioned relative to its closest positioned ancestor */
    width: 100%;
    height: 100%;
    top: 0;
    left:0px;
    /*left: 50%;*/
    /*transform: translate(-50%, 0); !* Centers the element *!*/
  }


  #homepage-slider + #search-form .search-form {
    margin-top: -210px;
    position: relative;
    z-index: 1;
    min-height: 100px;
  }

  .search-select{
    max-height: 35px;
  }

  .search-form .form-control,
  .search-form .select2-container .select2-selection--single,
  .search-form .select2-container .select2-selection--multiple {
    border-radius: 3px;
    height: 35px;

  }

  .search-form .select2-container .select2-selection--multiple {
    min-height: 35px;
    height:fit-content;
  }




  .search-form .select2-container--classic .select2-selection--single .select2-selection__arrow, .search-form .select2-container--classic .select2-selection--multiple .select2-selection__arrow {
    height: 35px;
  }


  .search-form .form-group {
    margin-bottom: 10px;
  }






  .form-search-ref-id {
    /*margin: 0 var(--search-form-padding-min);*/
    position: relative;
  }
  .form-search-ref-id svg {
    position: absolute;
    /*left: var(--search-form-padding);*/
    left:5px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 10px;
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 3px;
    stroke: rgba(0,0,0,0.5);
    pointer-events: none;
  }
  .form-search-ref-id .form-control {
    /*background-color: var(--default-10);*/
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--default);
    padding: 0px 15px 0px 20px !important;
    font-weight: 500;
    height: auto !important;
    border: 0;
    width:100%;
    /*border-radius: 0;*/
    font-size: 1.1em;
  }


  .search-form-container {

    border-radius: 0px;
    padding-right:0;
  }


  .advance-search-box {

    border-radius: 5px;
  }



  .select2-container--classic .select2-selection--single .select2-selection__arrow b, .select2-container--classic .select2-selection--multiple .select2-selection__arrow b {
    border-color: var(--default) transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    margin-left: 0px;
  }

  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b, .select2-container--classic.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
    border-color: transparent transparent var(--default) transparent;
    border-width: 0 4px 4px 4px;
  }




  .select2-container .select2-selection--multiple::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    border-color: var(--default) transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    border-style: solid;
    height: 0;
  }

  .select2-container--classic.select2-container--open .select2-selection--multiple::after {
    border-color: transparent transparent var(--default) transparent;
    border-width: 0 4px 4px 4px;
  }


  .search-form .form-control-with-label .form-control, .search-form .form-control-with-label .select2-container .select2-selection--single .select2-selection__rendered, .search-form .select2-container .select2-selection--multiple {
    padding: 13px var(--form-padding-x) 7px;
  }

  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: var(--default-10);
    border: none;
    border-radius: 0;
    margin: 0 5px 5px 0;
    font-size: 12px;
  }















  .enquiry-form-container {
    background-color: var(--white);
    padding: 15px 5px;
    max-width: 767px;
    width: 100%;
  }

  .enquiry-form-row{
    margin-right: -45px;
  }

  .enquiry-close{
    position:absolute;
    right:5px;
    top:0;
    width:20px;
    height:20px;
  }



  .interested-horizontal-inside{
    position: relative;
    min-height:50px !important;
    max-height: 50px !important;
    /*border-radius: 20px;*/
    display:flex;
    align-items: center;
    justify-content: center;
    /*margin-top:20px;*/
    padding-top:5px;
    padding-bottom:5px;
    background-color: var(--primary);
    color:white;
    font-size: 20px;
    font-weight: 700;
    margin-top:-20px;
    margin-left:-5px;
    margin-right:-5px;



  }










}
/* xs */
@media (max-width: 575.98px) {
    .content-cat-industrial-publish:before {
        top: 5px;
    }
    .about-find-img {
        padding-top: 82%;
    }
    .about-slide-img {
        padding-top: 80.5%;
    }
    .contact-map {
        padding-top: 80%;
    }
    .chemicals-top:before {
        top: 4px;
    }
    #homepage-slider + #search-form .search-form {
      margin-top: -210px;
      position: relative;
      z-index: 1;
      min-height: 100px;
    }














  .city-half-height{
    /*height: 80px !important;*/
    padding-top: 80px !important;
  }

  .city-res-wrap {
    padding-top: 165px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }






  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: end;
    min-height: calc(100% - 50px);
    margin: 50px 0 0;
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px 40px 0 0;
  }
}

@media (max-width: 400px) {
  #homepage-slider + #search-form .search-form {
    margin-top: -190px;
    position: relative;
    z-index: 1;
    min-height: 100px;
  }
}