@font-face {
    font-family: 'gs';
    src: url('../fonts/Google_Sans/GoogleSans-Regular.ttf');
    src: local('Google Sans'), url('../fonts/Google_Sans/GoogleSans-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'gsm';
    src: url('../fonts/Google_Sans/GoogleSans-Medium.ttf');
    src: local('Google Sans Medium'), url('../fonts/Google_Sans/GoogleSans-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'gssb';
    src: url('../fonts/Google_Sans/GoogleSans-SemiBold.ttf');
    src: local('Google Sans Semibold'), url('../fonts/Google_Sans/GoogleSans-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    font-display: swap;
}
@font-face {
    font-family: 'gsb';
    src: url('../fonts/Google_Sans/GoogleSans-Bold.ttf');
    src: local('Google Sans Bold'), local('OpenSans-Semibold'), url('../fonts/Google_Sans/GoogleSans-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 800;
    font-display: auto;
    font-display: swap;
}
:root {
    --black-bg:#212529;
    --white-bg:#FFFFFF;
    --btn-bg:#16246F;
    --btn-bg-hover:#152b9c;
    --basic-color:#16246F;

    --f12: 400 12px/14px gs, sans-serif;
    --f12m: 500 12px/14px gsm, sans-serif;
    --f12b: 700 12px/14px gsb, sans-serif;
    --f14: 400 14px/16px gs, sans-serif;
    --f14m: 500 14px/16px gsm, sans-serif;
    --f14b: 700 14px/16px gsb, sans-serif;
    --f16: 400 16px/20px gs, sans-serif;
    --f16m: 500 16px/20px gsm, sans-serif;
    --f16b: 700 16px/20px gsb, sans-serif;
    --f18: 400 18px/22px gs, sans-serif;
    --f18m: 500 18px/22px gsm, sans-serif;
    --f18b: 700 18px/22px gsb, sans-serif;
    --f24: 400 24px/26px gs, sans-serif;
    --f24m: 500 24px/26px gsm, sans-serif;
    --f24b: 700 24px/26px gsb, sans-serif;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}
body {
    font-family: 'gs', 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;
}
a {
    text-decoration: none;
    transition: all .25s;
    color: var(--basic-color);
}
a:hover {
    text-decoration: none;
    transition: all .25s;
}
p {
    font: var(--f16);
    margin: 0;
}
h1 {
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -0.8px;
    margin: 0;
}
h2 {
    font: var(--f24b);
    margin: 0;
}
h3 {
    font: var(--f16b);
    margin: 0;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
    }
}
/*@media (min-width: 1200px) {
    .container {
        max-width: 1050px;
    }
}*/
@media (max-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
    h1 {
        font-size: 36px;
        line-height: 130%;
    }
}

.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: 80px 0;
    position: relative;
    transition: all 0.5s ease;
}
.wrp-bg {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
    gap: 24px;
}
.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: var(--btn-bg);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 18px;
    margin: 0;
    border-radius: 200px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'gs';
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
/*    letter-spacing: -0.5px;*/
    text-align: center;
    color: #FFFFFF;
    border:1px solid transparent;
    box-sizing: border-box;
    transition-duration: 0.25s;
    position: relative;
    gap: 8px;
}
.btn:hover {
    color: #FFFFFF;
    background: var(--btn-bg-hover);
    animation: ripple 0.7s linear infinite;
    opacity: 0.8;
    text-decoration: none;
}
.btn.white-btn {
    background: #FFFFFF;
    border: 1px solid var(--basic-color);
    color: #1D329F;
}
.btn.opacity-btn{
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}
.btn.disabled {
    opacity: 0.7;
    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);
    }
}
.btn.btn-sm {
    font-size: 14px;
    padding: 5px 25px;
    background: transparent;
    color: var(--basic-color);
    border: 1px solid var(--basic-color);
}
.edit-btn {
    background: transparent;
    border: 0;
    text-align: center;
    display: block;
    padding: 0;
    font-size: 18px;
    cursor: pointer;
}
input, textarea, select{
    box-sizing: border-box;
    padding: 6px 0;
    margin: 0;
    transition-duration: 0.25s;
    position: relative;
    display: block;
    width: 100%;
    min-height: 32px;
    /*    background: var(--white-bg);*/
    background: transparent;
    color: var(--basic-color);
    font: var(--f16);
    border: none;
    border-bottom: 1px solid var(--basic-color);
    letter-spacing: -0.48px;
}
input::placeholder, textarea::placeholder{
    color: var(--basic-color);
    opacity: 30%;
}
input:hover, input:focus,
textarea:hover, textarea:focus{
    outline: none;
}
input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}
label {
    font: var(--f18);
    color: var(--basic-color);
    margin: 0 0 6px 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 {
    display: flex;
    gap: 4px;
}
.radio-checkbox-label{
    font: var(--f12);
    line-height: 100%;
    color: var(--basic-color);
    position: relative;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    /*    opacity: 60%;*/
}
.radio-checkbox-label:before {
    background-color: #fff;
    border: 1px solid var(--basic-color);
    box-sizing: border-box;
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    min-width: 12px;
    border-radius: 2px;
    position: relative;
    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: var(--basic-color);
    background-image: url("data:image/svg+xml;utf8,<svg width='12' height='12' viewBox='0 0 12 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: 12px 12px;
    border-color: var(--basic-color);
}
input[type=radio]:checked + .radio-checkbox-label:before {
    background-color: #75ba02;
    /*    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: var(--c-text-color);
    outline: none;
    appearance: none;
    padding-right: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75L6.75 6.75L12.75 0.75' stroke='%2316246F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
select:focus {
    outline: none;
    appearance: none;
}
select option{
    color: var(--c-text-color);
}
select option[disabled]{
    color: #999999;
}
select option:checked {
    color: var(--c-text-color);
}
.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: 24px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
}
.form-wrapper .form-group.inline {
    flex-direction: row;
    margin: 0;
    gap: 16px;
}
.form-wrapper .form-group.inline .btn{
    white-space: nowrap;
    padding: 18px 54px;
}
.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-wrapper .two-inputs {
    display: flex;
    justify-content: space-between;
}
.form-wrapper .two-inputs .form-group{
    width: calc(50% - 12px);
}
.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: 16px;
}
.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: 40px 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;
}
.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: 1px;
    display: inline-block;
    width: 22px;
    height: 15px;
    background: url(../images/icons/eye-see.svg) 0 0 no-repeat;
    z-index: 99;
    cursor:pointer;
    opacity: 30%;
}
.see-password.view {
    opacity: 100%;
}
.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;
}
.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%;
    height: 180px;
    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 a{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.list-wrapper  .single-item .img-wrapper img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.pagination-wrapper {
    margin: 40px 0 0 0;
}
.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 #75ba02;
}
.pagination-wrapper nav ul li:first-child, .pagination-wrapper nav ul li:last-child{
    border: 0px solid #75ba02;
}
.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: #75ba02;
    flex: none;
    order: 0;
    flex-grow: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.pagination-wrapper nav ul li.active{
    background: #75ba02;
}
.pagination-wrapper nav ul li.active span{
    color: #FFFFFF;
}

@media (max-width: 1300px) {
    p,ul li,ol li{
        font-size: 16px;
    }
    .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;
    }
    .wrp-bg {
        padding: 16px;
    }
    section {
        padding: 40px 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;
    }
    .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;
    }
}
@media screen and ( max-width: 480px ){
    .pagination-wrapper nav ul li {
        display: none;
    }
    .pagination-wrapper nav ul li:first-child,
    .pagination-wrapper nav ul li:nth-child( 3 ),
    .pagination-wrapper nav ul li:nth-last-child( 3 ),
    .pagination-wrapper nav ul li:last-child,
    .pagination-wrapper nav ul li.active,
    .pagination-wrapper nav ul li.disabled {
        display: block;
    }
}