/*@font-face  {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    font-display: swap;
}
@font-face  {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    font-display: swap;
}
@font-face  {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: auto;
    font-display: swap;
}*/

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Light.ttf');
    src: local('Open Sans Light'), url('../fonts/OpenSans/OpenSans-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Regular.ttf');
    src: local('Open Sans'), url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Medium.ttf');
    src: local('Open Sans Semibold'), url('../fonts/OpenSans/OpenSans-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Bold.ttf');
    src: local('Open Sans Semibold'), url('../fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-ExtraBold.ttf');
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('../fonts/OpenSans/OpenSans-ExtraBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 800;
    font-display: auto;
    font-display: swap;
}
@font-face  {
    font-family: 'AGBengaly';
    src: url('../fonts/AGBengaly/agbengaly.ttf');
    src: local('AGBengaly'), url('../fonts/AGBengaly/agbengaly.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    font-display: swap;
}
@font-face  {
    font-family: 'AGBengaly';
    src: url('../fonts/AGBengaly/agbengaly_bold.ttf');
    src: local('AGBengaly'), url('../fonts/AGBengaly/agbengaly_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    font-display: swap;
}

:root {
    --black-bg:#212529;
    --white-bg:#FFFFFF;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*ШАБЛОНЫ*/
h1,h2,h3,h4,h5,h6{
    font-family:'Open Sans',sans-serif;
}
body,li,a,p,span,button{
    font-family:'Open Sans',sans-serif;
}
p,ul li,ol li{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    color:#212529;
}
p {
    margin: 0 0 20px 0;
}
a {
    text-decoration: none;
    transition: all .25s;
}
a:hover {
    text-decoration: none;
    transition: all .25s;
}
p a {
    text-decoration: underline;
}
img {
    max-width: 100%;
}
.beforeAfter img {
    max-width: unset;
    display: flex;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
@media (min-width: 1330px) {
    .container {
        max-width: 1330px;
    }
}
/*@media (min-width: 1200px) {
    .container {
        max-width: 1050px;
    }
}*/
@media (max-width: 1330px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.flex-blok, .flex{
    display: flex!important;
    position: relative;
}
.flex-right{
    justify-content: flex-end!important;
}
.flex-left{
    justify-content: flex-start!important;
}
.flex-center{
    justify-content: center!important;
}
.flex-space-around{
    justify-content: space-around!important;
}
.flex-space-between, .justify-between{
    justify-content: space-between!important;
}
.flex-align-items-center, .items-center {
    align-items: center!important;
}
.flex-row{
    flex-direction:row!important;
}
.flex-column{
    flex-direction:column!important;
}
.flex-wrap {
    flex-wrap: wrap;
}
.wrapper-just-2{
    width: calc(50% - 20px);
}
.wrapper-just-3{
    width: calc(33.33333% - 10px);
}
.wrapper-just-4{
    width: calc(25% - 10px);
}
.wrapper-just-5{
    width: calc(20% - 10px)!important;
}
.wrapper-2{
    width: 50%;
}
.wrapper-3{
    width: 33.33333%;
}
.wrapper-4{
    width: 25%;
}
.wrapper-5{
    width: 20%;
}
.mg-0{
    margin: 0!important;
}
.mgt-0 {
    margin-top: 0!important;
}
.mgb-0 {
    margin-bottom: 0!important;
}
.mgt-10 {
    margin-top: 10px!important;
}
.mgb-10 {
    margin-bottom: 10px!important;
}
.mgt-15 {
    margin-top: 15px!important;
}
.mgb-15 {
    margin-bottom: 15px!important;
}
.mgt-30 {
    margin-top: 30px!important;
}
.mgb-30 {
    margin-bottom: 30px!important;
}
.pg-0 {
    padding: 0!important;
}
.pgt-0 {
    padding-top: 0!important;
}
.pgb-0 {
    padding-bottom: 0!important;
}
section {
    padding: 120px 0;
    position: relative;
    transition: all 0.5s ease;
    background: #F8F9F8;
    /*    overflow: hidden;*/
}
section h1 {
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    color:#F8F9F8;
    -webkit-text-stroke: 1.5px #212529;
    position: relative;
    z-index: 1;
    text-align: center;
}
section h1:before{
    content: attr(data-text);
    position: absolute;
    right: -5px;
    top: 5px;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1.5px #212529;
    z-index: -1;
    opacity: 0.2;
}
section h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: .13px;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 1.5px #F36993;
    color:#F8F9F8;
    margin: 0 0 60px 0;
    position: relative;
    z-index: 1;
}
section h2:before{
    content: attr(data-text);
    position: absolute;
    right: -5px;
    top: 5px;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1.5px #F36993;
    z-index: -1;
    opacity: 0.2;
}
h2.pink{
    color: #F07A9E;
    -webkit-text-stroke: 1.5px #FFFFFF;
}
h2.pink:before{
    -webkit-text-stroke: 1.5px #000000;
    opacity: 0.1;
}
h2.black{
    -webkit-text-stroke: 1.5px #212529;
}
h2.black:before{
    -webkit-text-stroke: 1.5px #212529;
}
section h3 {
    font-family: 'AGBengaly';
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1px;
    margin: 0 0 24px 0;
}
.desktop-none {
    display: none!important;
}
.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}
.width100{
    width: 100%!important;
}
.hidden {
    display: none!important;
}
.center-text {
    text-align: center;
    margin-bottom: 20px;
}
#preloader {
    position: fixed;
    z-index: 111;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
#preloader:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
#preloader:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

#preloader:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;
    border: 15px solid rgba(255, 255, 255, 1.0);
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;
}
#preloader.hidden {
    visibility: hidden;
    opacity: 0;
    display: none;
}
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
/*ФОРМЫ*/
.btn-wrapper {
    display: flex;
    justify-content: space-around;
}
.btn-wrapper.left-btn-wrapper {
    justify-content: flex-start;
}
.btn{
    background: #EA4174;
    box-shadow: 0px -5px 0px 0px #9F1B4366 inset;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 38px 16px 38px;
    margin: 0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 127%;
    letter-spacing: 1px;
    text-align: center;
    color: #FFFFFF;
    border:1px solid transparent;
    box-sizing: border-box;
    transition-duration: 0.25s;
    position: relative;
}
.btn:hover {
    color: #FFFFFF;
    background: #212529;
    animation: ripple 0.7s linear infinite;
    opacity: 0.8;
    text-decoration: none;
}
.btn.yellow-btn {
    background: #F1D02B;
    letter-spacing: 0;
    border: 1px solid #F1D02B;
    font-size: 10px;
}
.btn.reg-btn{
    background: #F1D02B;
    letter-spacing: 0;
    border: 1px solid #F1D02B;
    letter-spacing: 0.33em;
    margin-bottom: 30px;
}
.btn:disabled {
    color: #FFFFFF;
    background: #616161;
    cursor: not-allowed;
}
.btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
        box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
    }
}
input, textarea, select{
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    padding: 12px 12px;
    margin: 0;
    width: 100%;
    transition-duration: 0.25s;
    position: relative;
    border: 1px solid #DADADA;
    border-radius: 2px;
    font-size: 16px;
    line-height: 150%;
    font-style: normal;
    font-weight: normal;
    background: rgba(255,255,255,1);
}
input::placeholder, textarea::placeholder{
    color: #999999;
}
input:hover, input:focus,
textarea:hover, textarea:focus{
    border: 1px solid #70C0EE;
    outline: none;
}
input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}
label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    vertical-align: middle;
    color:#212529;
    margin: 0 0 12px 0;
    position: relative;
    display: flex;
}
.single-checkbox {
    width: 21px;
    height: 21px;
    display: none;
}
.other-checkbox-text {
    display: none;
}
input[type="search"] {
    -webkit-appearance: none;
}
.radio-checkbox-label{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #121212;
    padding-left: 28px;
    margin: 0;
    cursor: pointer;
    display: flex;
}
.radio-checkbox-label:before {
    background-color: #fff;
    border: 1px solid #949494;
    /*    border-radius: 4px;*/
    box-sizing: border-box;
    content: "";
    display: block;
    height: 15px;
    width: 15px;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    border-radius: 3px;
    position: absolute;
    transition: background-color .2s ease-in-out,border .2s ease-in-out;
}
input[type=radio] + .radio-checkbox-label:before {
    border-radius: 10px;
}
input[type=checkbox]:checked + .radio-checkbox-label:before {
    background-color: #121212;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='12' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><path d='M4.10351 8.89548L1.45582 6.09578L0 7.6352L4.13584 12L14 1.56934L12.5159 0L4.10351 8.89548Z' fill='rgb(255, 255, 255)' /></svg>");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px 10px;
    border-color: #121212;
}
input[type=radio]:checked + .radio-checkbox-label:before {
    background-color: #121212;
/*    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><circle cx='7' cy='6' r='6' fill='white'/></svg>");*/
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px 10px;
    border-color: #121212;
}
.radio-checkbox input[type=radio],.radio-checkbox input[type=checkbox]{
    display: none;
}
input.disabled {
    background-color: rgb(244, 245, 247);
    cursor: not-allowed;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}
select{
    color: #999999;
}
select option{
    color: #212529;
}
select option[disabled]{
    color: #999999;
}
select option:checked {
    color: #212529;
}
.form-wrapper .errors {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}
.form-wrapper .errors.withicon:before{
    content: "";
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5.16667V8.5M9 11.8333H9.00833M1.5 8.5C1.5 9.48491 1.69399 10.4602 2.0709 11.3701C2.44781 12.2801 3.00026 13.1069 3.6967 13.8033C4.39314 14.4997 5.21993 15.0522 6.12987 15.4291C7.03982 15.806 8.01509 16 9 16C9.98491 16 10.9602 15.806 11.8701 15.4291C12.7801 15.0522 13.6069 14.4997 14.3033 13.8033C14.9997 13.1069 15.5522 12.2801 15.9291 11.3701C16.306 10.4602 16.5 9.48491 16.5 8.5C16.5 6.51088 15.7098 4.60322 14.3033 3.1967C12.8968 1.79018 10.9891 1 9 1C7.01088 1 5.10322 1.79018 3.6967 3.1967C2.29018 4.60322 1.5 6.51088 1.5 8.5Z' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: cover;
    width: 15px;
    height: 15px;
    margin: 0 8px 0 0;
    display: flex;
}
.errors{
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.1px;
    vertical-align: middle;
    position: relative;
    color: #FF0000;
}
.success{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 135%;
    color: #23C934;
}
.single-btn-sect {
    display: flex;
    justify-content: center;
}
.form-wrapper{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    position: relative;
}

.form-wrapper form {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.form-wrapper .form-group {
    margin-bottom: 36px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
}
.form-wrapper .form-group.inline {
    flex-direction: row;
    margin: 0;
}
.form-wrapper input[type="submit"] {
    background: #F1D02B;
    color: #fff;
    padding: 13px 40px;
    border: 2px solid #FFFFFF;
    cursor: pointer;
}
.form-wrapper input[type="submit"]:hover {
    background: #FFFFFF;
    color: #333333;
}
.form-check {
    position: relative;
    display: flex;
}
.form-check-input {
    position: absolute;
    margin: 0;
    top:0;
    width: 19px;
    height: 19px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-check-input:checked {
    background: url('../images/icons/checkmark.svg') 0 0 no-repeat;
    background-position: center;
}

.form-check-label{
    padding-left: 39px;
}
.form-check-label a,.form-italic a{
    font-weight: 700;
    color: #161412;
}
.form-check-label, .form-italic {
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 135%;
    color: #909090;
    margin: 0;
}
.form-wrapper .two-inputs {
    display: flex;
    justify-content: space-between;
}
.form-wrapper .two-inputs .form-group{
    width: calc(50% - 7px);
}
.form-wrapper .is-invalid {
    border-color: #F96C4D;
    padding-right: calc(1.6em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.4em + 0.1875rem) center;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.form-wrapper-overlay .form-wrapper .form-group {
    margin-bottom: 12px;
}
.form-wrapper-overlay input,.form-wrapper-overlay textarea, .form-wrapper-overlay select{
    border-radius: 10px;
}
.form-wrapper-overlay,.result-wrapper-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
}
.form-wrapper-overlay .form-wrapper,
.result-wrapper-overlay .result-wrapper{
    max-width: 420px;
    background: #E8EBE7;
    top: 50%;
    transform: translate(0,-50%);
    margin: auto;
    z-index: 99;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}
.form-wrapper-overlay .form-wrapper .close-popup,
.result-wrapper-overlay .result-wrapper .close-popup{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 99;
}
.form-wrapper-overlay .form-wrapper .close-popup:hover path,
.result-wrapper-overlay .result-wrapper .close-popup:hover path{
    fill: #255A6C;
}
.form-wrapper-overlay .form-wrapper .close-popup svg,
.result-wrapper-overlay .result-wrapper .close-popup svg{
    max-width: 100%;
    max-height: 100%;
    transition: .4s;
}
.form-wrapper-overlay .form-wrapper .close-popup path,
.result-wrapper-overlay .result-wrapper .close-popup path{
    fill: #121212;
    transition: .4s;
}
#form-res {
    font-size: 28px;
    text-align: center;
}
#popup-result-tex {
    font-size: 28px;
}
.relative-wrapper {
    position: relative;
}
.no-border {
    border: none!important;
}
.see-password {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    width: 22px;
    height: 21px;
    background: url(../images/icons/eye-dontsee.svg) 0 0 no-repeat;
    z-index: 99;
    cursor:pointer;
}
.see-password.view {
    background: url(../images/icons/eye-see.svg) 0 0 no-repeat;
}
.popup-agreement-text {
    font-size: 12px;
    margin: 20px 0 0 0;
}
.alert {
    width: 100%;
    max-width: 673px;
    box-sizing: border-box;
    position: fixed;
    z-index: 111;
    padding: 15px 40px 15px 20px;
    left: 50%;
    top: 140px;
    transform: translate(-50%, 0);
    display: none;
    color: #fff;
}
.alert span{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 135%;
    color: #FFFFFF;
}
.alert-success {
    background: #23C934;
}
.alert-danger {
    background: #F96C4D;
}

.alert .close-popup {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
    transition-duration: 0.25s;
}
.alert .close-popup:hover svg path {
    fill: #121212;
}
.slick-track{
    display: flex !important;
}
.slick-slide{
    height: inherit !important;
}
.slider-wripper-template .slick-list{
    margin: 0 -12px!important;
}
.slider-wripper-template .slide-template{
    position: relative;
    margin: 0 12px;
}
.slider-wripper-template .slide-template img{
    width: 100%;
}
.slider-wripper-template .slick-dots {
    position: relative;
    width: 100%;
    display: flex;
    padding: 0;
    margin: 40px 0 0 0;
    list-style-type: none;
    justify-content: center;
}
.slider-wripper-template .slick-dots li {
    padding: 0;
    margin: 0 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.slider-wripper-template .slick-dots li button{
    -webkit-appearance: none!important;
    background: rgba(0, 0, 0, 0.3);
    border-style: none;
    height: 4px;
    width: 40px;
    cursor: pointer;
    color: transparent;
    padding: 0;
    overflow: hidden;
}
.slider-wripper-template .slick-dots li.slick-active button{
    background: rgba(0, 0, 0, 0.9);
}
.top-navigation {
    position: absolute;
    top: 50%;
    right:0;
    transform: translate(0,-50%);
    display: flex;
    z-index: 11;
}
.top-navigation .arrow-prev,
.top-navigation .arrow-next{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border: none;
    padding: 0;
    z-index: 11;
    margin: 0 10px;
    border:1px solid #EA4174;
}
.arrow-prev:hover,
.arrow-prev:focus,
.arrow-next:hover,
.arrow-next:focus{
    transition-duration: 0.4s;
}
.cat-filter {
    padding: 0;
}
.cat-filter .filter-tabs-wrapper{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cat-filter .filter-tabs-wrapper .filter-tab{
    padding: 8px 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #EA4174;
    border: 1px solid #EA4174;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 0;
    text-decoration: none;
}
.cat-filter .filter-tabs-wrapper .filter-tab:hover {
    border:1px solid #212529;
}
.cat-filter .filter-tabs-wrapper .filter-tab.active{
    background: #EA4174;
    color:#FFFFFF;
}
.list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.list-wrapper.products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.list-wrapper .single-item{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
}
.list-wrapper .single-item .img-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform .2s;
}
/*.list-wrapper  .single-item .img-wrapper:hover {
    transform: scale(1.1);
}*/
.list-wrapper  .single-item .img-wrapper img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.list-wrapper  .single-item .title-wrapper{
    margin: 30px 0 0 0;
}
.list-wrapper  .single-item .title-wrapper span {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    color:#554ABF;
}
.list-wrapper  .single-item .title-wrapper h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin: 12px 0;
    color: #212529;
}
.list-wrapper  .single-item .title-wrapper p {
    margin: 20px 0;
    color: #212529;
}
.list-wrapper .single-item .title-wrapper a {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
    color: #EA4174;
}
.single-item .single-summary-hidden-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    transition-duration: 0.4s;
}
.single-item .single-summary-hidden-wrapper .hidden-content{
    flex-direction: column;
    position: relative;
    background-color: #fff;
    box-shadow: none;
    padding: 15px 20px;
    z-index: 11;
    background: #ffffff;
    transition-duration: 0.4s;
    width: 100%;
}
.single-item .single-summary-hidden-wrapper .changebasket-form,
.single-item .single-summary-hidden-wrapper .changebasket-form .btn, 
.single-item .single-summary-hidden-wrapper .basket-changebasket-form,
.single-item .single-summary-hidden-wrapper .basket-changebasket-form .btn{
    width: 100%;
}
.single-img-wish{
    position: absolute;
    top:0;
    right: 10px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.71);
}
.wishlist .single-img-wish{
    background: rgba(123, 97, 255, 0.69);
}
.single-img-wish:hover{
    background:#EA4174;
    transition-duration: 0.4s;
}
.single-img-wish form, .single-img-wish a{
    display: flex;
}
.single-img-wish svg{
    width: 25px!important;
    height: auto!important;
    transition-duration: 0.4s;
}
.single-img-wish:hover svg path{
    fill: #FFFFFF; 
}
.single-img-wish button, .single-product-wishlist button{
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}


.pagination-wrapper nav ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}
.pagination-wrapper nav ul li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0 10px;
    width: 38px;
    height: 38px;
    border: 0.5px solid #EA4174;
}
.pagination-wrapper nav ul li:first-child, .pagination-wrapper nav ul li:last-child{
    border: 0px solid #EA4174;
}
.pagination-wrapper nav ul li:first-child span, .pagination-wrapper nav ul li:last-child span,
.pagination-wrapper nav ul li:first-child a, .pagination-wrapper nav ul li:last-child a {
    font-size: 24px;
}
.pagination-wrapper nav ul li a, .pagination-wrapper nav ul li span{
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 135%;
    display: flex;
    align-items: center;
    color: #EA4174;
    flex: none;
    order: 0;
    flex-grow: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.pagination-wrapper nav ul li.active{
    background: #EA4174;
}
.pagination-wrapper nav ul li.active span{
    color: #FFFFFF;
}

@media (max-width: 1330px) {
    p,ul li,ol li{
        font-size: 16px;
    }
    section h1 {
        font-size: 26px;
        letter-spacing: 1px;
        margin: 0 0 30px 0;
    }
    section h1:before{
        -webkit-text-stroke: 1px #212529;
    }
    section h2 {
        font-size: 28px;
        margin: 0 0 20px 0;
        -webkit-text-stroke: 1px #F36993;
    }
    section h2:before{
        -webkit-text-stroke: 1px #F36993;
    }
    h2.pink{
        -webkit-text-stroke: 1px #FFFFFF;
    }
    h2.pink:before{
        -webkit-text-stroke: 1px #000000;
    }
    h2.black{
        -webkit-text-stroke: 1px #212529;
    }
    h2.black:before{
        -webkit-text-stroke: 1px #212529;
    }
    section h3 {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    label {
        margin: 0 0 6px 0;
    }
    .form-wrapper-overlay .form-wrapper, 
    .result-wrapper-overlay .result-wrapper {
        padding: 20px 20px;
    }
    .form-wrapper-overlay .form-wrapper .form-group {
        margin-bottom: 8px;
    }
    .top-navigation {
        position: relative;
        top:unset;
        right: unset;
        display: flex;
        justify-content: center;
        margin: 20px 0 20px 0;
        transform: none;
    }
    .wrapper-2{
        width: calc(50% - 20px)!important;
    }
    .list-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .list-wrapper.products {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    p,ul,ol {
        font-size: 16px;
    }
    section {
        padding: 40px 0;
    }
    section h2 {
        font-size: 26px;
        margin: 0 0 20px 0;
    }
    .desktop-none {
        display: flex!important;
    }
    .mob-none{
        display: none!important;
    }
    .wrapper-mob-100{
        width: 100%!important;
    }
    .mob-flex-column{
        flex-direction:column!important;
    }
    .btn-wrapper {
        flex-direction: column;
        margin-bottom: 10px;
        margin: 0 auto;
    }
    .btn{
        width: 100%!important;
        font-size: 18px;
        padding: 10px 24px 16px 24px;
    }
    .alert{
        top: 90px;
        left: 0;
        transform: translate(0, 0);
    }
    .form-wrapper .two-inputs {
        flex-direction: column;
    }
    .form-wrapper .two-inputs .form-group{
        width: 100%;
    }
    .list-wrapper {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 30px;
    }
    .list-wrapper.products {
        grid-template-columns: 1fr;
    }
    .list-wrapper  .single-item .title-wrapper{
        margin: 30px 0 0 0;
    }
    .list-wrapper  .single-item .title-wrapper h4{
        font-size: 18px;
        margin: 10px 0;
    }
    .list-wrapper  .single-item .title-wrapper p{
        font-size: 16px;
        margin: 10px 0;
    }
    .top-navigation .arrow-prev,
    .top-navigation .arrow-next{
        border:0px solid #EA4174;
    }
}

/*Общее правила меню*/
.top-menu-wrapper{
    position: relative;
    overflow: hidden;
    height: 90px;
    width: 100%;
    top:0;
    left: 0;
    z-index: 999;
    background: #F8F9F8;
    transition: all .25s;
}
.top-menu-wrapper .menu-wrapper{
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #21252914;
}
.top-menu-wrapper .logo-wrapper{
    width: 20%;
    height: 90px;
    display: flex;
    align-items: center;
    margin-right: 30px;
    flex-basis: 20%;
    flex-grow: 0;
    flex-shrink: 0;
}
.top-menu-wrapper .logo-wrapper a{
    display: flex;
}
.top-menu-wrapper .logo-wrapper img{
    width: 100%;
    height: auto;
}
.top-menu-wrapper .menu-items-wrapper {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
.menu-list {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
}
.menu-list li{
    display: flex;
    box-sizing: border-box;
    position: relative;
}
.menu-list li a{
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    color: #212529;
    outline: none;
    transition-duration: 0.25s;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    padding: 3px 12px;
}
.menu-list.top-menu-list li a:hover {
    background: #D15858;
    color:#FFFFFF;
    border-radius: 10px;
}
.menu-list li:hover svg path{
    fill: #D15858;
}
.menu-list.header-actions>li{
    padding: 0 12px;
}
.menu-list.header-actions>li a,
.menu-list.header-actions>li span{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.menu-list.header-actions>li a span {
    margin: 0 0 0 12px;
}
.menu-list.header-actions>li a img,.top-menu-wrapper  .header-actions>li a svg,
.menu-list.header-actions>li span img,.top-menu-wrapper  .header-actions>li span svg{
    height:18px;
}
.menu-list.header-actions>li.languages{
    padding: 0 0 0 18px;
}
.menu-list.header-actions>li.languages a{
    margin: 0 3px 0 3px;
    color: #FFFFFF;
}
.menu-list.header-actions>li.languages a.active{
    color: #D15858;
    font-weight: 900;
}
.menu-list.header-actions .header-action-num {
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    position: absolute;
    z-index: 2;
    top: -10px;
    right: 0px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    background: #EA4174;
    justify-content: center;
    align-items: center;
}
.menu-list.header-actions .header-action-num span{
    transform: translate(0%, 7%);
}

.burger-wrapper {
    position: relative;
    height: 50px;
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: flex;
    margin: 0 20px 0 0;
}
.burger-wrapper .burger-btn {
    width: 24px;
    height: 20px;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.burger-wrapper .burger-btn span{
    height: 2px;
    background-color: #212529;
    opacity: 1;
    -webkit-transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,-webkit-transform .3s;
    -o-transition: opacity .3s,-o-transform .3s;
    -moz-transition: transform .3s,opacity .3s,-moz-transform .3s;
    transition: transform .3s,opacity .3s;
    transition: transform .3s,opacity .3s,-webkit-transform .3s,-moz-transform .3s,-o-transform .3s;
}
.burger-wrapper .burger-btn.active span {
    background-color: #212529;
}
.burger-wrapper .burger-btn.active span:first-child {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg)
}
.burger-wrapper .burger-btn.active span:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%)
}
.burger-wrapper .burger-btn.active span:last-child {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg)
}
.burger-menu-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    transition: all .25s;
}
.burger-menu-overlay.active {
    display: block;
}
.burger-menu-wrapper{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: #FFFFFF;
    height: 100%;
    width: 350px;
    max-width: 100%;
    flex-direction: column;
    z-index: 99;
    padding: 66px 24px;
}
.burger-menu-overlay.active .burger-menu-wrapper{
    display: flex;
}
.burger-menu-wrapper .burger-menu-list{
    flex-direction: column;
    align-items: flex-start;
}
.burger-menu-wrapper .burger-menu-list li {
    flex-direction: column;
    align-items: flex-start;
}
.burger-menu-wrapper .burger-menu-list li a{
    padding: 14px 0;
    justify-content: flex-start;
}
.burger-menu-wrapper .burger-menu-list li.has-children {
    display: block;
}
.burger-menu-wrapper .burger-menu-list li.has-children>a:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #EA4174;
    margin: 0 0 0 10px;
    transition: all .25s;
}
.burger-menu-wrapper .burger-menu-list li.has-children.active>a:after {
    transform: rotate(180deg);
}
.burger-menu-wrapper .burger-menu-list li .sub-menu {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    transition: all .25s;
}
.burger-menu-wrapper .burger-menu-list li.has-children.active .sub-menu {
    display: flex;
}
.burger-menu-wrapper .close-menu {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 22px;
    top: 22px;
    cursor: pointer;
}
.burger-menu-wrapper .close-menu:hover path {
    stroke: #EA4174;
    fill: #EA4174;
}
.burger-menu-wrapper .close-menu svg {
    max-width: 100%;
    max-height: 100%;
    transition: .4s;
}
.burger-menu-wrapper .close-menu path {
    fill: #121212;
    transition: .4s;
}
.burger-menu-wrapper .burger-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.burger-menu-wrapper .burger-actions a{
    margin: 0 0 28px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #212529;
}
.burger-menu-wrapper .burger-actions a span {
    margin: 0 0 0 12px;
}
.burger-menu-wrapper .burger-actions button{
    margin: 0 0 20px 0;
}

footer {
    background: var(--black-bg);
    width: 100%;
    padding: 20px 0;
    position: relative;
}
footer a, footer p, footer ul, footer ol, footer h2, footer h3{
    color: #FFFFFF;
    text-decoration: none;
}
footer h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    margin: 0 0 25px 0;
}
footer p {
    margin: 0;
}
.footer-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.footer-wrapper .logo-wrapper, .footer-wrapper .socials-wrapper, .footer-wrapper .copyright-text  {
    width:calc(33.333% - 20px);
}
.footer-wrapper .logo-wrapper img {
    max-width: 302px;
}
.footer-wrapper .socials-wrapper {
    display: flex;
    justify-content:  center;
}
.footer-wrapper .socials-wrapper a {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.footer-wrapper .socials-wrapper a img{
    width: 40px;
}
.footer-wrapper .copyright-text {
    text-align: center;
}

@media (max-width: 1300px) {
    .top-menu-wrapper .logo-wrapper {
        margin: 10px;
    }
    .menu-list li,.menu-list.header-actions>li {
        padding: 0 5px;
    }
    .menu-list.header-actions>li.languages {
        padding: 0 0 0 8px;
    }
}
@media (max-width: 768px) {
    .top-menu-wrapper {
        height: 50px;
    }
    .top-menu-wrapper.active {
        background: var(--white-bg);
    }
    .top-menu-wrapper .menu-wrapper{
        height: 50px;
    }
    /*    .top-menu-wrapper .menu-items-wrapper {
            display: none;
            position: fixed;
            left: 0;
            bottom: 0;
            overflow-y: scroll;
            overflow-x: hidden;
            z-index: 10;
            background: var(--white-bg);
            width: 100%;
            height: calc(100svh - 50px);
            max-height: calc(100svh - 50px);
            transition: all .25s;
        }
        .top-menu-wrapper .menu-items-wrapper.active {
            display:flex;
            flex-direction: column;
            justify-content: flex-start;
        }*/
    .top-menu-wrapper .logo-wrapper {
        width:120px;
        flex-basis:120px;
        height: auto;
    }
    .menu-list.top-menu-list {
        display: none;
    }
    .menu-list.burger-menu-list {
        display: flex;
        justify-content: center;
    }
    /*    .menu-list {
            flex-direction: column;
            margin: 30px 0;
        }
        .menu-list li,.menu-list.header-actions>li {
            padding: 10px 0;
        }*/
    .menu-list.header-actions>li.languages {
        padding: 0;
        margin-top: 20px;
    }

    .menu-list.header-actions>li#search-artwork-li {
        display: none;
    }
    .menu-list.header-actions .cabinet-link,
    .menu-list.header-actions .call-back-btn{
        display: none;
    }
    footer {
        padding: 20px 0 20px 0;
    }
    .footer-wrapper {
        flex-direction: column;
    }
    .footer-wrapper .logo-wrapper, .footer-wrapper .socials-wrapper, .footer-wrapper .copyright-text {
        width: 100%;
        text-align: center;
    }
}

.video-fancy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-fancy:before {
    content: "";
    position: absolute;
    z-index: 22;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='51' viewBox='0 0 50 51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M25 50.7539C38.8071 50.7539 50 39.561 50 25.7539C50 11.9468 38.8071 0.753906 25 0.753906C11.1929 0.753906 0 11.9468 0 25.7539C0 39.561 11.1929 50.7539 25 50.7539ZM21 17.847C21 17.0064 21.9743 16.5409 22.6283 17.0691L33.0368 25.476C33.5324 25.8762 33.5324 26.6316 33.0368 27.0318L22.6283 35.4387C21.9743 35.9669 21 35.5015 21 34.6608V17.847Z' fill='%23EA4174'/%3E%3C/svg%3E%0A");
    background-size: contain;
    width: 50px;
    height: 50px;
}

.faq_list{
}
.faq_list h2{
    text-align: center;
}
.faq_list .faq_list-wrapper{
    display: flex;
    flex-direction: column;
}
.faq_list .faq_list-wrapper .faq-sigle{
    width: 100%;
    padding: 36px 0 36px 0;
    border-bottom:1px solid #DADADA;
}
.faq_list .faq_list-wrapper .faq-sigle .question{
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #212529;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    transition: all .25s;
    align-items: center;
}
.faq_list .faq_list-wrapper .faq-sigle .question:before{
    content: "";
    background: url('../images/icons/plus-icon.svg');
    background-size: cover;
    position: relative;
    height: 16px;
    width: 16px;
    transition: all .25s;
    flex-basis: 16px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0 24px 0 0;
}
.faq_list .faq_list-wrapper .faq-sigle.active .question{
    color: #666666;
}
.faq_list .faq_list-wrapper .faq-sigle.active .question:before{
    transform: rotate(45deg)
}
.faq_list .faq_list-wrapper .faq-sigle .answer{
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #212529;
    display: none;
    padding: 40px 0 0 40px;
}
@media (max-width: 1330px) {
    .faq_list .faq_list-wrapper .faq-sigle{
        padding: 20px 0 20px 0;
    }
    .faq_list .faq_list-wrapper .faq-sigle .question{
        font-size: 16px;
    }
    .faq_list .faq_list-wrapper .faq-sigle .answer{
        font-size: 16px;
        padding: 20px 0 0 20px;
    }
}
@media (max-width: 768px) {

}

.contact-form-sec{
    background: url(../images/contact-bg.png) 0 0 no-repeat;
    background-size: cover;
}
.contact-form-sec .contact-form-wrapper{
    display: flex;
    justify-content: space-between;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper{
    width: calc(56% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper{
    font-weight: 800;
    font-size: 75px;
    line-height: 120%;
    letter-spacing: 4px;
    text-align: right;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #F36993;
    position: relative;
    margin: 0 0 140px 0;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:first-of-type{
    color: #F36993;
    position: relative;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:first-of-type:before{
    content: attr(data-text);
    position: absolute;
    right: -5px;
    top: 20px;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px #F36993;
    z-index: 0;
    opacity: 0.6;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:last-of-type{
    color: transparent;
    position: relative;
}
.contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:last-of-type:before{
    content: attr(data-text);
    position: absolute;
    right: -5px;
    top: 20px;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px #F36993;
    z-index: 0;
    opacity: 0.2;
}
.contact-form-sec .socials-wrapper{
}
.contact-form-sec .socials-wrapper p{
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.5px;
    text-align: right;
    margin: 0 0 20px 0;
    color: #EA4174;
}
.contact-form-sec .socials-wrapper .socials-list{
    display: flex;
}
.contact-form-sec .socials-wrapper .socials-list a{
    margin: 0 20px;
    height: 24px;
}
.contact-form-sec  .socials-wrapper .socials-list a:first-of-type{
    margin: 0 20px 0 0;
}
.contact-form-sec  .socials-wrapper .socials-list a:last-of-type{
    margin: 0 0 0 20px;
}
.contact-form-sec .socials-wrapper .socials-list a img{
    height: 100%;
}
.contact-form-sec .contact-form-wrapper .form-wrapper{
    width: calc(44% - 80px);
    padding: 36px 40px;
    background: #FFFFFF;
}
@media (max-width: 1330px) {
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper{
        width: calc(50% - 20px);
    }
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper{
        font-size: 28px;
        letter-spacing: 2px;
        -webkit-text-stroke: 1px #F36993;
        margin: 0 0 28px 0;
    }
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:first-of-type:before{
        right: -4px;
        top: 8px;
        -webkit-text-stroke: 1px #F36993;
    }
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper span:last-of-type:before{
        right: -4px;
        top: 8px;
        -webkit-text-stroke: 1px #F36993;
    }
    .contact-form-sec .contact-form-wrapper .form-wrapper{
        width: calc(50% - 20px);
        padding: 28px;
    }
}
@media (max-width: 768px) {
    .contact-form-sec .contact-form-wrapper{
        flex-direction: column;
    }
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .contact-form-sec .contact-form-wrapper .title-soc-wrapper .title-wrapper {
        text-align: center;
    }
    .contact-form-sec .socials-wrapper{
        margin: 28px 0 0 0;
    }
    .contact-form-sec .socials-wrapper p {
        text-align: center;
    }
    .contact-form-sec .socials-wrapper .socials-list {
        justify-content: center;
    }
    .contact-form-sec .contact-form-wrapper .form-wrapper{
        width: 100%;
    }
}

.minihero {
    padding: 40px 0 80px 0;
}
.minihero .minihero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.minihero .minihero-content h3,.posts-slider h3{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 142%;
    letter-spacing: 0.5px;
    text-align: center;
    vertical-align: middle;
    margin: 0 0 20px 0;
    color: #554ABF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.minihero .minihero-content h3:before,.posts-slider h3:before {
    content: "";
    width: 50px;
    height: 1px;
    background: #554ABF;
    position: relative;
    margin-right: 10px;
}
.minihero .minihero-content h3:after,.posts-slider h3:after {
    content: "";
    width: 50px;
    height: 1px;
    background: #554ABF;
    position: relative;
    margin-left: 10px;
}
.minihero .minihero-content h1,
.minihero .minihero-content h2{
    margin: 0;
}
.minihero .back-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top:50%;
    transform: translate(0, -50%);
}
.minihero .back-wrapper:before {
    content: "";
    width: 6px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L1 7L7 13' stroke='%23EA4174' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    margin: 0 19px 0 0;
}
.minihero .back-wrapper a{
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    color:#EA4174;
}
@media (max-width: 1330px) {
    .minihero .back-wrapper {
        left: 15px;
    }
}
@media (max-width: 768px) {
    .minihero {
        padding: 20px 0 60px 0;
    }
    .minihero .back-wrapper {
        position: relative;
        left: unset;
        top:unset;
        transform: none;
        margin: 0 0 16px 0;
    }
}

.comments {
}
.comments > p{
    text-align: center;
}
.add-comment-wrapper {
    background: #F6F6F6;
    padding: 20px;
}
.rating-stars ul {
    list-style-type:none;
    padding:0;
    margin: 0 0 20px 0;
    -moz-user-select:none;
    -webkit-user-select:none;
}
.rating-stars ul > li {
    display:inline-block;
    font-size: 50px;
    line-height: 100%;
}
.rating-stars ul > li.hover,.rating-stars ul > li:hover {
    color:#F1D02B;
}
.rating-stars ul > li.selected {
    color:#F84E45;
}
#commentresp {
    font-size: 30px;
    font-weight: 900;
}

.comment-wrapper {
    display: flex;
    margin-bottom: 20px;
}
.comment-wrapper.comment-reply {
    padding-left: 40px;
}
.comment-wrapper .img-wrapper{
    width: 80px;
    min-width: 80px;
}
.comment-wrapper .img-wrapper img{
    width: 100%;
}
.comment-wrapper .comment-info-wrapper{
    border: 1px solid #ddd;
    margin-left: 26px;
    padding: 10px 20px;
    position: relative;
    border-radius: 3px;
    width: 100%;
}
.comment-wrapper .comment-info-wrapper:before{
    background: #fff;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    content: '';
    display: block;
    height: 10px;
    left: -6px;
    position: absolute;
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
}
.comment-wrapper .ratings-wrapper{
    display: flex;
    justify-content: flex-start;
    margin: 0 0 20px 0;
}
.comment-wrapper .ratings-wrapper .star-wrappper {
    position: relative;
    color: #CCCCCC;
}
.comment-wrapper .ratings-wrapper .star-wrappper::before {
    content: "★ ★ ★ ★ ★";
}
.comment-wrapper .ratings-wrapper .star-wrappper .star {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #1C1309;
}
.comment-wrapper .ratings-wrapper .star-wrappper .star::before {
    content: "★ ★ ★ ★ ★";
}
.comment-wrapper .ratings-wrapper .rating-num {
    margin: 0 0 0 5px;
}
.comment-wrapper .comment-text-wrapper {
    margin: 0 0 20px 0;
}
.comment-wrapper .comment-text-wrapper {
    margin: 0 0 20px 0;
}
.comment-wrapper .comment-user-wrapper {
    margin: 0;
    color:#CCCCCC;
}
.comment-wrapper .comment-user-wrapper span:first-of-type{
    font-weight: 700;
}
.reply-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 30px 0;
}
.reply-wrapper .btn-reply{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F1D02B;
    padding: 4px 7px;
    margin: 0;
    border: 1px solid #F1D02B;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 126%;
    text-align: center;
    color: #1C1309;
    box-sizing: border-box;
    transition-duration: 0.25s;
    position: relative;
}
.reply-wrapper .btn-reply:hover{
    background: #F84E45;
}
.reply-wrapper .btn-reply img{
    max-width: 15px;
    margin: 0 5px 0 0;
}
@media (max-width: 1330px) {
}
@media (max-width: 768px) {
}


.posts-slider {
}
.posts-slider .container{
    position: relative;
}
.posts-slider .content-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.posts-slider .content-wrapper .img-wrapper{
    display: flex;
    max-height: 250px;
    overflow: hidden;
}
.posts-slider .content-wrapper .img-wrapper img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.posts-slider .content-wrapper .title-wrapper{
    margin: 30px 0 0 0;
}
.posts-slider .content-wrapper .title-wrapper span {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    color:#554ABF;
}
.posts-slider .content-wrapper .title-wrapper h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin: 12px 0;
    color: #212529;
}
.posts-slider .content-wrapper .title-wrapper p {
    margin: 20px 0;
    color: #212529;
}
.posts-slider .content-wrapper .title-wrapper a {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
    color: #EA4174;
}
.posts-slider .btn-wrapper {
    margin: 50px 0 0 0;
}
@media (max-width: 1340px) {

}
@media (max-width: 768px) {
    .posts-slider .btn-wrapper {
        margin: 30px 0 0 0;
    }
    .posts-slider .content-wrapper .title-wrapper{
        margin: 30px 0 0 0;
    }
    .posts-slider .content-wrapper .title-wrapper h4 {
        font-size: 18px;
        margin: 10px 0;
    }
    .posts-slider .content-wrapper .title-wrapper p {
        font-size: 16px;
        margin: 10px 0;
    }
}


.breadcrumbs-sec{
    overflow-y: hidden;
    overflow-x: auto;
    padding: 40px 0;
}
.breadcrumbs-sec::-webkit-scrollbar{
    height: 0;
}
.breadcrumbs-sec .breadcrumbs-wrapper{
}
.breadcrumbs-sec .breadcrumbs-wrapper ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul>span{
    display: flex;
    flex-direction: row;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li:after{
    content: '/';
    padding: 0 6px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li{
    display: flex;
    white-space: nowrap;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li>span{
    display: flex;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li:last-child:after{
    display: none;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li a{
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    text-decoration: none;
}
.breadcrumbs-sec .breadcrumbs-wrapper ul li:first-child a{
    color: #92969B;
}
@media (max-width: 1340px) {

}
@media (max-width: 768px) {
    .breadcrumbs-sec{
        overflow-y: hidden;
        overflow-x: auto;
        padding: 30px 0;
    }
    .breadcrumbs-sec .breadcrumbs-wrapper ul li a {
        font-size: 13px;
    }
    .breadcrumbs-sec .breadcrumbs-wrapper ul li:after {
        font-size: 13px;
    }
}