html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #533948;
    overflow-x: hidden;
}

.overflow {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    line-height: normal;
    color: #633151;
}
h1 {
    margin-bottom: 50px;
    font-size: 60px;
}
h2 {
    font-size: 50px;
    font-weight: 500;
}
h3 {
    font-size: 36px;
}
h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #633151;
}

a {
	color: #633151;
    text-decoration: none;
    outline: none;
}
a:hover {
	color: #82466c;
    text-decoration: none;
}
a:active {
	color: #053141;
}

p {
    font-size: 16px;
    line-height: 28px;
}

p sup {
    top: -8px;
    font-size: 10px;
}

img {
    max-width: 100%;
}

.font-24 {
    font-size: 24px;
    line-height: 36px;
}
.font-60 {
    font-size: 60px;
    line-height: normal;
}

.fancybox-slide--html {
    padding: 20px;
}


/*** Form element ***/

.form-row {
    margin-top: 20px;
}
.form-row:first-child {
    margin-top: 0;
}
.form-label {
    margin-bottom: 10px;
    font-size: 14px;
    color: #8197a7;
}
.form-label span {
    display: block;
    margin-top: 10px;
}
.form .btn {
    width: 100%;
    max-width: 220px;
}

.form .custom-select-wrapper {
    margin: 0;
}
.form .custom-select-trigger {
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    border: 2px solid #cebfc8;
}
.form .custom-select-trigger.added {
    color: #212529;
}
.form .custom-select-trigger:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    background: none;
    margin-top: -3px;
    border-width: 5px;
    border-color: transparent transparent #633151 #633151;
    border-style: solid;
    transform: rotate(-45deg) translateY(-50%);
    transition: all 0.2s ease-in-out;
    transform-origin: 50% 0;
}
.form .custom-select-trigger:before {
    display: none;
}
.form .custom-options {
    top: 63px;
    border: 2px solid #cebfc8;
    border-top: 0;
}

.input-text {
    width: 100%;
    height: 65px;
    line-height: 65px;
    padding: 0 20px;
    border: 2px solid #cebfc8;
    transition: 0.3s;
}
.input-text:focus {
    border-color: #82466c;
}

.textarea {
    width: 100%;
    height: 200px;
    line-height: 65px;
    padding: 0 20px;
    border: 2px solid #cebfc8;
    transition: 0.3s;
}
.textarea:focus {
    border-color: #82466c;
}

.input-text::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #8197a7;
}
.input-text::-moz-placeholder,
.textarea::-moz-placeholder { /* Firefox 19+ */
    color: #8197a7;
}
.input-text:-ms-input-placeholder,
.textarea:-ms-input-placeholder { /* IE 10+ */
    color: #8197a7;
}
.input-text:-moz-placeholder,
.textarea:-moz-placeholder { /* Firefox 18- */
    color: #8197a7;
}

.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-70 {
    margin-top: 70px;
}
.mt-80 {
    margin-top: 80px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mt-100 {
    margin-top: 100px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mt-140 {
    margin-top: 140px;
}
.mb-140 {
    margin-top: 140px;
}
.mt-150 {
    margin-top: 150px;
}
.mb-150 {
    margin-bottom: 150px;
}
.mt-180 {
    margin-top: 180px;
}
.mb-180 {
    margin-bottom: 180px;
}
.mt-200 {
    margin-top: 200px;
}
.mb-200 {
    margin-bottom: 200px;
}
.mt-240 {
    margin-top: 240px;
}
.mb-240 {
    margin-bottom: 240px;
}

.pt-0 {
    padding-top: 0;
}
.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-150 {
    padding-top: 150px;
}
.pb-150 {
    padding-bottom: 150px;
}

.max-60 {
    max-width: 60%;
}
.max-70 {
    max-width: 70%;
}
.max-80 {
    max-width: 80%;
}
.max-90 {
    max-width: 90%;
}

.btn {
    position: relative;
    height: 65px;
    line-height: 65px;
    padding: 0 40px;
    background: #633151;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #f6f7f8;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #633151;
    border-radius: 0;
}
.btn:hover {
    background: none;
    color: #633151;
}
.btn:focus {
    box-shadow: none;
}

.btn.btn-empty {
    background: none;
    color: #633151;
    border: 1px solid #633151;
}
.btn.btn-empty:hover {
    background: #633151;
    border-color: #633151;
    color: #fff;
}

.btn.btn-white {
    color: #ffffff;
    border-color: #ffffff;
}
.btn.btn-white:hover {
    color: #82466c;
    background: #ffffff;
    border-color: #ffffff
}

.content-block {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.container {
    position: relative;
    z-index: 9;
}

.sub-text {
    margin: 0 auto;
    font-size: 36px;
    line-height: 60px;
    font-family: 'Raleway', sans-serif;
    color: #633151;
}
.small-text {
    margin: 0 auto;
    font-size: 16px;
}


.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 10px;
}
.slick-dots li button {
    width: 15px;
    height: 15px;
    background: none;
    border: 1px solid #633151;
    border-radius: 50%;
}
.slick-dots li button:before {
    display: none;
}
.slick-dots li.slick-active button {
    background: #633151;
}


.slick-prev,
.slick-next {
    display: flex;
    align-items: center;
    width: 20%;
    height: 100%;
    z-index: 9;
}
.slick-prev {
    justify-content: flex-end;
}
.slick-next {
    justify-content: flex-start;
}
.slick-prev:after:hover,
.slick-next:after:hover,
.slick-prev:after:focus,
.slick-next:after:focus {
    background: #82466c;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}

.slick-arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -40px;
    width: 50px;
    height: 80px;
    background: #633151;
}
.slick-arrow.slick-prev:after {
    left: auto;
    right: 0;
}
.slick-arrow:before {
    content: '';
    width: 13px;
    height: 20px;
    opacity: 1;
    z-index: 1;
}
.slick-prev:before {
    background: url("../images/arrow-left.png");
    margin-right: 20px;
}

.slick-next:before {
    background: url("../images/arrow-right.png");
    margin-left: 20px;
}
.recapcha-el{
margin-bottom:15px;
display:none;
}
.error-text{
color:red;
font-size:12px;
display:none;
}
.error .error-text {
display:block;
}
.error input{
    border: 2px solid red;
}
.successful-text{
display:none;
}
.successful-text.open{
display:block;
}


/** Custom Select **/

.custom-select-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    user-select: none;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    width: 100%;
    height: auto;
    background: none;
    border: 0;
    padding: 0;
}
.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    height: 65px;
    padding: 0 40px 0 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8197a7;
    text-transform: uppercase;
    border: 1px solid #8197a7;
    cursor: pointer;
    overflow: hidden;
}
.custom-select-trigger:after,
.custom-select-trigger:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    margin-top: -5px;
    width: 2px;
    height: 12px;
    background: #633151;
    transform: rotate(-45deg);
}
.custom-select-trigger:after {
    right: 25px;
    transform: rotate(45deg);
}

.custom-options {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid #8197a7;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: all 0.2s ease-in-out;
    z-index: 9;
}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: normal;
    color: #8197a7;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.custom-option.selection {
    background: #633151;
    color: #fff;
}


/*** Quotes modal ***/

.quotes-modal {
    width: 100%;
    max-width: 800px;
}
.quotes-modal img, 
.quotes-modal p {
    margin-bottom: 40px;
}
.quotes-modal .name {
    font-weight: bold;
}
.about-block-image iframe {
    width:100%;
   /* height:460px;*/
}
.products-list-item_bottom{
   
}
.title-media{font-size:36px; margin-bottom:33px;}

.brands-marquee {
    height: 134px;
    white-space: nowrap;
    overflow: hidden;
}

.brands-marquee img {
    height: 100%;
    width: auto;
    max-width: unset;
    animation: marquee-slider 70s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes marquee-slider {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}


