:root {
	--body-color: #fff;
	--grey-color: #FAFAFA;
	--grey-color-hover: #868D94;
	--dark-color: #232526;
	--main-color: #6FCF97;	
	--main-color-hover: #3FAA6C;
	--main-color-2: #3FAA6C;
	--text-color: #232526;
    --white-color: #fff;
	--bg-sprite-size: 130px auto;
}
html {
    height: 100%;
}
body {
    position: relative;
    height: 100%;
    min-height: 100%;
    font-size: 18px;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--body-color);
    min-width: 320px;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
}
a:hover,
a:active {
    color: inherit !important;
    text-decoration: none;
}
h1, h2, h3, .h1, .h2, .h3, .h2 h3 {
    margin-bottom: 40px;
    font-size: 70px;
    font-weight: 600;
}
.h {
    font-weight: 600;
}
h1 {
    margin-top: 20px;
}
h2, .h2 {
    font-size: 80px;
    line-height: 80px;
}
h3, .h3 {
    font-size: 50px;
    line-height: 50px;
}
h4, .h4 {
    font-size: 34px;
    line-height: 34px;
}
article {
    margin-top: 50px;
}
.p {
    margin-bottom: 15px;
}
svg {
    transition: fill .3s;
}
.text-light {
    font-weight: 300;
}
.text-normal {
    font-weight: 400;
}
.text-bold {
    font-weight: 600;
}
.subtitle {
    margin: 30px 0;
    font-size: 20px;
    font-weight: 600;
}
.section {
    padding: 100px 0;
    overflow: hidden;
}
section img,
.section img,
article img {
	height: auto;
	max-width: 100%;
}
.container {
    position: relative;
}
.page-wrapper {    
    overflow: hidden;
}
section ul,
article ul,
section ol,
article ol {
    margin: 0;
    padding: 0;
}
section ul li,
article ul li,
section ol li,
article ol li {
    list-style: none;
}
article ul li {
    position: relative;
    padding-left: 25px;
}
article ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	height: 15px;
	width: 15px;
	border: 3px solid var(--main-color);
}
article ol,
.block-content ol {
    counter-reset: li;
    list-style: none;
}
section ol > li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
}
section ol > li::before {
    position: absolute;
    top: 2px;
    left: -5px;
    width: 25px;
    height: 25px;
    display: inline-block;
    padding: 5px;
    content: counter(li)".";
    counter-increment: li;
    font-size: 16px;
    line-height: 14px;
    font-weight: bold;
    text-align: center;
}
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 55px 12px 20px;
    font-size: 19px;
    font-weight: 600;
    color: var(--white-color); 
    text-transform: uppercase;
    border: 0;  
    border-radius: 50px;
    background: var(--main-color-2);
    transition: all .3s;
    z-index: 1;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    height: 40px;
    width: 40px;
    background: url(../img/sprites.webp) no-repeat;
    background-size: var(--bg-sprite-size);
    background-position: center -17px;
}
.btn-2 {
    color: var(--main-color-2); 
    background: var(--white-color);
}
.btn-2::before {
    background-position: center -730px;
}
.btn-3 {
    color: var(--main-color); 
    background: var(--dark-color);
}
.btn-border {
    padding: 5px 20px;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}
.btn-border::before {
    display: none;
}
.btn:hover {
    color: var(--white-color);
    background: var(--main-color);
}
.btn-border:hover {
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    background: transparent;
}
.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}
.mobile-menu {
    display: none;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 15px;
    font-size: 18px;
    color: var(--white-color);
    z-index: 2;
}
nav ul {
    margin: 0;
    padding: 0;
}
nav li {
    margin: 0 10px;
    list-style: none;
}
.menu-main ul {
    display: flex;
}
header .h-content {
    position: relative;
    padding: 20px 0;
}
header a:hover {
    color: var(--main-color) !important;
}
.logo img {
    max-height: 60px;
}
.h-phone {
    margin: 0 70px;
}
.h-content {
    font-size: 18px;
    font-weight: 400;
}
.h-contacts {
    padding-left: 20px;
}
.h-contacts .phone-link {
    margin-right: 10px;
    font-weight: 500;
}
.soc-btn {
    display: inline-block;
    margin: 0 5px;
}
.burger {
    display: inline-block;
    cursor: pointer;
}
.burger svg {
    height: 50px;
    width: 50px;
    fill: var(--grey-color);
}
.burger:hover svg {
    fill: var(--main-color);
}
.icon-item {
    position: relative;
    display: inline-block;
}
.icon-item::before {
    content: "";
    position: absolute;
    background: url(../img/sprites.webp) no-repeat;
    background-size: var(--bg-sprite-size);
}
.top-block {
    position: relative;
}
.top-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.8) 0%,rgba(68,68,68,0.6) 60%,rgba(129,129,129,0) 100%);
    z-index: 0;
}
.top-b-content {
    position: absolute;
    top: 120px;
    margin: auto;
    max-width: 635px;
    color: var(--white-color);
    z-index: 1;
}
.top-b-content h1 {
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 2px 2px 0 var(--main-color-2);
}
.top-b-c-text {
    position: relative;
    padding: 20px;
    z-index: 0;
}
.top-b-c-text::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--main-color-2);
    border-radius: 30px;
    opacity: .5;
    z-index: -1;
}
.top-btn-wrap {
    margin-top: 30px;
}
.card-item {
    position: relative;
    padding: 30px;
    color: var(--white-color);
    border-radius: 50px;
    background-color: var(--main-color-2);
}
.card-item p {
    margin-bottom: 0;
}
.card-item-border {
    position: relative;
    padding: 30px;
    color: var(--main-color-2);
    border-radius: 50px;
    border: 2px solid var(--main-color-2);
}
.card-i-icon {
    padding-top: 50px;
}
.card-i-icon::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	height: 95px;
	width: 95px;
	margin: auto;
    background: url(../img/sprites.webp) no-repeat;
    background-size: var(--bg-sprite-size);
}
.card-i-icon .h {
    margin-bottom: 50px;
    padding-right: 100px;
}
.card-item .h-sm {
    margin-bottom: 30px;
    font-size: 26px;
    line-height: normal;
}
.card-i-i-1::before {
    background-position: center -564px;
}
.card-style-1 .card-i-icon {
    margin-bottom: 30px;
    padding: 20px 30px 20px 100px;
    font-size: 22px;
}
.card-style-1 .card-i-icon::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    height: 54px;
    width: 54px;
    background-position: center -784px;
}
.card-style-2 .card-i-icon .h {
    color: var(--main-color);
}
.card-style-3 .card-item {
    border: 3px solid var(--main-color);
}
.text-note-1 {
    position: relative;
    padding: 30px 30px 30px 125px;
    color: var(--white-color);
    border-radius: 50px;
    background-color: var(--main-color-2);
}
.text-note-2 {
    position: relative;
    padding: 30px 30px 30px 125px;
    font-size: 20px;
    color: var(--main-color-2);
    border: 2px solid var(--main-color-2);
    border-radius: 50px;
}
.text-note-1::before,
.text-note-2::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	height: 70px;
	width: 70px;
	margin: auto;
    background: url(../img/sprites.webp) no-repeat;
    background-size: var(--bg-sprite-size);
    background-position: center -70px;
}
.text-note-2::before {
    background-position: center -478px;
}
.section-green-1 {
    color: var(--white-color);
    background-color: var(--main-color);
}
.section-green-2 {
    color: var(--white-color);
    background-color: var(--main-color-2);
}
.section-green-2 .h {
    color: var(--main-color);
}
.section-white {
    background-color: var(--white-color);
}
.section-white .h {
    color: var(--main-color-2);
}
.block-retrit-type {
    
}
.b-r-t-item {
    margin-bottom: 30px;
}
.b-r-t-i-img {
    margin-right: 30px;
    min-width: 150px;
}
.b-r-t-i-card {
    margin-right: 30px;
    border-bottom-left-radius: 0;
}
.b-r-t-i-card .h3,
.card-i-title {
    margin-bottom: 30px;
    color: var(--main-color);
}
.b-r-w-item {
    position: relative;
    margin-bottom: 30px;
    padding-top: 110px;
}
.b-r-w-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 95px;
    width: 95px;
    background: url(../img/sprites.webp) no-repeat;
    background-size: var(--bg-sprite-size);
}
.b-r-w-item-1::before {
    background-position: center -153px;
}
.b-r-w-item-2::before {
    background-position: center -262px;
}
.b-r-w-item-3::before {
    background-position: center -368px;
}
.b-r-w-item-4::before {
    background-position: center -853px;
}
.b-r-w-item-5::before {
    background-position: center -963px;
}
.b-r-item .card-item {
    min-height: 245px;
}
.b-r-w-item .h {
    margin-bottom: 30px;
    min-height: 80px;
    font-size: 30px;
    line-height: 40px;
}
.b-r-item p {
    text-align: center;
}
ul.list-style-1 {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.list-style-1 li {
    margin: 10px 0;
    position: relative;
    padding-left: 45px;
    font-size: 20px;
    font-weight: 600;
}
ul.list-style-1 li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 10px;
    height: 28px;
    width: 28px;
    background: url(../img/sprites.webp) no-repeat;
    background-size: 60px;
    background-position: center -361px;
}
.block-form {
    background: url(../img/1/bg-f.webp) no-repeat;
}
.b-form-wrap {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 0;
}
.b-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--main-color-2);
    opacity: .6;
    z-index: -1;    
}
.b-form-form {
    text-align: center;    
}
.b-form-form .h {
	max-width: 500px;
	margin: 0 auto 40px;
    color: var(--white-color);
}
.b-form-form form {
    padding: 0 30px;
}
.form-control {
    border: 2px solid var(--main-color);
    border-radius: 50px;
}
.form-control:focus {
	border: 2px solid var(--main-color-2);
}
..form-control {
    height: ;
}
.block-reviews .h {
    margin-bottom: 60px;
    text-align: center;
}
.block-reviews .card-item {
    height: 100%;
    padding: 30px 45px 50px 45px;
    text-align: center;
    border-radius: 20px 20px 100px 100px;
}
.b-reviews-name {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
}
.b-reviews-name span {
    color: var(--main-color);
    font-weight: 400;
}
.b-reviews-text {
    margin-top: 20px;
    text-align: left;
}
.b-reviews-stars {
    margin: 15px 0;
}
.b-reviews-s-item {
    display: inline-block;
    height: 42px;
    width: 42px;
    margin: 0 2px;
    background-image: url(../img/sprites.webp);
    background-repeat: no-repeat;
    background-size: var(--bg-sprite-size);
    background-position: center -674px;
}
.bg-lotos-t-r,
.bg-lotos-b-l {
    position: relative;
}
.bg-lotos-t-r::before,
.bg-lotos-b-l::before {
    content: "";
    position: absolute;
    height: 550px;
    width: 550px;
    opacity: .1;
    background-image: url(../img/bg-lotos.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.bg-lotos-t-r::before {
    top: 100px;
    right: -280px;
}
.bg-lotos-b-l::before {
    bottom: 100px;
    left: -280px;
}
.c-t-i-title {
    margin-bottom: 10px;
    height: 65px;
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color-2);
    overflow: hidden;
}
.c-t-i-city {
    margin-top: 5px;
}
.block-map {
    padding: 70px 0;
    border-bottom: 3px solid var(--main-color);
}
.block-map img {
    border-radius: 30px;
}
.map-wrap {
    min-height: 300px;
    border-radius: 30px;
    overflow: hidden;
}
.blog article p {
    margin-bottom: 20px;
}
.blog article a {
    color: var(--main-color-2);
}
.blog article {
    max-width: 1000px;
    margin-top: 100px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
}
.news-item.text-card {
    height: calc(100% - 20px);
    margin-bottom: 20px;
}
.news-i-image {
    background: var(--main-color);
    margin-right: 20px;
    border-radius: 30px;
    height: 150px;
    min-width: 200px;
    overflow: hidden;
}
.news-page-image {
    margin-bottom: 50px;
    text-align: center;
}
.news-page-image img {
    border-radius: 30px;
}
.news-i-date {
    font-size: 16px;
}
.news-i-link {
    display: block;
    color: var(--main-color-2);
    text-decoration: none;
}
.blog article h2,
.blog article h3,
.blog article h4 {
    font-size: 50px;
    color: var(--main-color-2);
}
.blog h1 {
    font-size: 60px;
}
.blog .top-b-content {
    max-width: 900px;
}
.news-p-img {
  padding-top: 50px;
  text-align: center;
}
.news-p-img img {
  display: inline-block;
  border-radius: 50px;
}
.top-block {
    min-height: 500px;
}


.form-control {
    display: block;
    height: auto !important;
    width: 100%;
    color: var(--text-color);
    font-size: 18px;
    padding: 15px 30px;
    border: 0;
    border-radius: 50px;
    background: var(--white-color);
}
.form-control:focus {
	color: var(--text-color);
	background-color: var(--white-color);
	border-color: transparent;
	outline: 0;
    border: 0;
	box-shadow: none;
}
.radio {
    display: none;
}
.radio + label {
    display: inline-block;
    margin-right: 15px;
    padding: 2px 5px;
    cursor: pointer;
    background: var(--main-color);
}
.radio:checked + label {
    color: var(--text-color);
    background: var(--main-color);
}
footer {
    position: relative;
    padding: 50px 0;
    color: var(--white-color);
    background-color: var(--main-color-2);
}
.menu-footer {
    text-align: center;
}
.menu-footer ul,
.f-contacts {
	display: inline-block;
	text-align: left !important;
}
.menu-footer li {
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 500;
}
.f-contacts p {
    margin-bottom: 7px;
}
.f-contacts a {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
}
footer .btn {
    margin-top: 10px;
}
footer .soc-btn img {
    height: 48px;
    width: 48px;
}
.owl-carousel {
    padding: 0 45px;
}
.owl-carousel .owl-item {
    text-align: center;
}
.owl-carousel .owl-item img {
    height: auto;
    max-width: 100%;
    width: auto !important;
    border-radius: 30px;
}
.owl-carousel .owl-nav > div {
    transition: all ease-in-out 0.2s;
}
.owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 0;
    margin: auto;
    text-align: center;
}
.owl-carousel .owl-nav > div {
    position: absolute;
    top: -20px;
    display: inline-block;
    height: 40px;
    width: 40px;
    font-size: 0px;
}
.owl-carousel.carousel-gallery .owl-nav > div {
    top: -40px;
}
.owl-carousel .owl-nav > div:hover {
    border-color: var(--main-color-2) !important;
}
.owl-carousel .owl-nav .owl-prev {
    left: 10px;
    border-left: 3px solid var(--main-color) !important;
    border-bottom: 3px solid var(--main-color) !important;
    transform: rotate(45deg);
}
.owl-carousel .owl-nav .owl-next {
    right: 10px;
    border-right: 3px solid var(--main-color);
    border-top: 3px solid var(--main-color);
    transform: rotate(45deg);
}
.otz-owl .owl-stage-outer {
    margin-bottom: 40px;
}
.otz-owl .owl-nav {
    position: absolute;
    top: auto;
    bottom: 8px;
    left: 0;
    right: 0;
    max-height: 0;
    margin: auto;
    opacity: 0.5;
    text-align: center;
    z-index: 5;
}
.otz-owl .owl-nav > div {
    display: inline-block;
    height: 30px;
    width: 30px;
    font-size: 0px;
}
.otz-owl .owl-nav .owl-prev {
    left: auto;
    margin-left: -100px;
}
.otz-owl .owl-nav .owl-next {
    right: auto;
    margin-left: 70px;
}
.owl-dots {
    margin-top: 30px;
    text-align: center;
    opacity: 0.5;
}
.owl-dots span {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    border-radius: 15px;
    background-color: var(--main-color);
}
.owl-dots button {
    outline: none;
}
.owl-dots .active span {
    outline: none;
    background-color: var(--main-color-2);
}
.text-color {color: var(--main-color-2) !important}
.text-color-1 {color: var(--main-color) !important}
.text-color-w {color: var(--white-color) !important}
.align-vh-center {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.align-h-center {
	display: flex;
	height: 100%;
	align-items: center;
}
.row-mb > div {margin-bottom: 30px;}
.font-26 {font-size: 26px;}
.font-26 .h {font-size: 26px;}
.mb-0 {margin-bottom: 0;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 70px;}
.mb-80 {margin-bottom: 80px;}
.mt--120 {margin-top: -120px;}
.mt-0 {margin-top: 0;}
.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-100 {margin-top: 100px;}
.mr-20 {margin-right: 20px;}
.mr-40 {margin-right: 40px;}
.mr-30 {margin-right: 30px;}
.pt-10 {padding-top: 10px;}
.pb-70 {padding-bottom: 70px;}
.h-auto {height: auto !important; min-height: auto !important;}
.h-100-30 {height: calc(100% - 30px);}
.hm-320 {min-height: 320px}
.w-750 {max-width: 750px;}
.w-850 {max-width: 850px;}
.w-900 {max-width: 900px;}
.w-1000 {max-width: 1000px;}
.hidden {display: none !important;}
.center {text-align: center;}
.text-right {text-align: right;}
.nowrap {white-space: nowrap;}
.hidden-block, .tab, .menu-mobile {display: none;}
.bold {font-weight: bold}
.text-small {font-size: 16px}
.color-m {color: var(--main-color) !important}
.color-m-2 {color: var(--main-color-2) !important}
.ajax-open {
    cursor: pointer;
    transition: .5s;
}
.mstat {font-size: 12px;}
.btn-fx {
    animation: pulse .5s ease-in-out 3s 2, pulse .5s ease-in-out 10s 2, pulse .5s ease-in-out 20s 2, pulse .5s ease-in-out 30s 2, pulse .5s ease-in-out 40s 2, pulse .5s ease-in-out 50s 2, pulse .5s ease-in-out 60s 2;
    transition: .5s;
}
.block-center {
    margin: auto;
    text-align: center;
}
.ajax-send.btn {
    position: relative;
    overflow: hidden;
}
.ajax-send.btn-loading::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0,0,0,.5);
}
.ajax-send .loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.ajax-send.btn-loading .loader {
    display: block;
}
.modal-win {
    position: relative;
    padding: 50px 30px;
    width: auto;
    margin: 20px auto;
    max-width: 600px;
    color: var(--dark-color);
    border-radius: 50px;
    background: var(--main-color);
    z-index: 0;
}
.modal-win .ajax-send {
    margin-top: 20px;
    width: 100%;
}
.modal-win h2 {
    position: relative;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--body-color);
}
.modal-win h3 {
    font-size: 26px;
    margin: 50px 0;
}
.modal-win label {
    font-weight: bold;
}
.modal-win .hidden-block {
    margin-top: 40px;
}
.modal-text {
    margin-bottom: 20px;
    text-align: center;
}
.modal-win .form-agree {
    font-size: 13px;
    font-weight: 400;
}
.mfp-close-btn-in .mfp-close {
	color: var(--body-color);
}
@keyframes rubberBand {
    from {
      transform: scale3d(1, 1, 1);
    }
  
    30% {
      transform: scale3d(1.25, 0.75, 1);
    }
  
    40% {
      transform: scale3d(0.75, 1.25, 1);
    }
  
    50% {
      transform: scale3d(1.15, 0.85, 1);
    }
  
    65% {
      transform: scale3d(0.95, 1.05, 1);
    }
  
    75% {
      transform: scale3d(1.05, 0.95, 1);
    }
  
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  
  .rubberBand {
    animation-name: rubberBand;
  }
  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    margin:15px auto;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after,
  .loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--main-color);
    width: 16px;
    height: 16px;
    transform: translate(-50%, 50%);
    border-radius: 50%;
  }
  .loader::before {
    left: auto;
    right: 0;
    background: var(--light-color);
    transform: translate(50%, 100%);
  }

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes beats {
    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(.9);
        box-shadow: 10px 10px 0 rgb(214, 28, 78, 0.3);
    }

    100% {
        transform: scale(1);
    }
}
.toaster {
	position: fixed;
	transition-property: top, bottom, left, right, transform;
	transition: .3s;
	font-size: 16px;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	line-height: 1.5;
	word-break: break-all;
	overflow: hidden;
	z-index: 20220819;
	user-select: none;
  
	max-width: 25vw;
	color: #fff;
	padding: 1em 1.3em;
	border-radius: 2px;
	box-shadow: 0.2em 0 .5em rgba(0,0,0,.06);
	cursor: pointer
  }
  .text-center {
    text-align: center;
  }
  
  .toaster-right-top,
  .toaster-left-top {
	top: -6em;
  }
  .toaster-right-bottom,
  .toaster-right-top {
	right: 1em;
  }
  .toaster-right-bottom,
  .toaster-left-bottom {
	bottom: -6em;
  }
  .toaster-left-bottom,
  .toaster-left-top {
	left: 1em;
  }
  .toaster-center {
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	opacity: 0;
	transform: scale(0);
	transition: .3s
  }
  
  .toaster-right-top.toasting,
  .toaster-right-top.toast-dismissed,
  .toaster-left-top.toasting,
  .toaster-left-top.toast-dismissed {
	top: 1em
  }
  .toaster-right-bottom.toasting,
  .toaster-right-bottom.toast-dismissed,
  .toaster-left-bottom.toasting,
  .toaster-left-bottom.toast-dismissed {
	bottom: 1em
  }
  
  .toaster-left-top.toast-dismissed,
  .toaster-left-bottom.toast-dismissed,
  .toaster-right-top.toast-dismissed,
  .toaster-right-bottom.toast-dismissed {
	transition: .6s;
	animation: fadeOut .4s;
  }
  .toaster-right-top.toast-dismissed,
  .toaster-right-bottom.toast-dismissed {
	transform: translateX(30vw);
  }
  .toaster-left-top.toast-dismissed,
  .toaster-left-bottom.toast-dismissed {
	transform: translateX(-30vw);
  }
  .toaster-center.toasting {
	opacity: 1;
	transform: scale(1);
  }
  @media(max-width: 768px){
	.toaster-right-top.toast-dismissed,
	.toaster-left-top.toast-dismissed {
		transition: .8s;
		transform: translateX(0);
		transform: translateY(-50vh);
	}
	.toaster-left-bottom.toast-dismissed,
	.toaster-right-bottom.toast-dismissed {
		transition: .8s;
		transform: translateX(0);
		transform: translateY(50vh);
	}
	.toaster {
		left: 0;
		right: 0;
		width: 100vw;
		max-width: 100vw
	}
	.toaster-left-top.toasting,
	.toaster-right-top.toasting {
		top: 0
	}
	.toaster-left-bottom.toasting,
	.toaster-right-bottom.toasting {
		bottom: 0;
	}
  }
@media (min-width: 992px) {
    .mt--15 {
        margin-top: -15px;
    }
    .mt--40 {margin-top: -40px;}
    .mr--35 {
        margin-right: -35px;
    }
    .ml--35 {
        margin-left: -35px;
    }
    .list-row-2 {
    display: flex;
    flex-wrap: wrap;
    }
    .list-row-2 li {
        flex: 0 0 50%;
    }
    .ptb-5 {padding-top: 5px !important; padding-bottom: 5px !important;}
}