html {
    scroll-behavior: smooth;
}

:root {
    --dop-txt-color: #EB976A;
    --dop-txt-hover-color: #EB816A;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#page-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff; /* Цвет фона прелоадера */
    z-index: 100500; /* Очень большой z-index, чтобы перекрыть все */
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--dop-txt-color); /* Цвет спиннера */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fos-normal {
    font-size: clamp(1rem, 0.9625rem + 0.2vw, 1.125rem);
}

body {
    background: var(--site-bg-color);
	font-size: 15px;
	font-family: 'Montserrat', sans-serif!important;
    color: var(--main-txt-color);
    margin: 0;
    padding: 0;
    position: relative;
    word-break: break-word;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', sans-serif!important;
}

.header-font {
    font-family: 'Playfair Display', sans-serif!important;
}

.main-font__subheader {
    font-size: clamp(1.25rem, 1.0625rem + 1vw, 1.875rem);
}

.main-font__miniheader {
    font-size: clamp(1.25rem, 1.1563rem + 0.5vw, 1.5625rem);
}

.main-font__minisubheader {
    font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
}

.dop-txt-color {
    color: var(--dop-txt-color);
}

.dop-color-link {
    color: var(--dop-txt-color)!important;
    &:hover {
        color: var(--dop-txt-hover-color)!important;
    }
}

body.menu-clicked {
    height: 100%;
    overflow: hidden;
    padding-right: 16px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

a:hover {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.container {
    max-width:1300px;
    margin: 0 auto;
    padding: 0 12px;
}

.container-fullwidth {
    margin: 0 auto;
}

.container-padding {
    padding: 0 15px;
}

.row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.content {
    flex: 1 1 auto;
    opacity:0;
    transition:.8s;
}


.content ul {
    padding-inline-start:10px;
}

.content li {
    list-style-type: disc;
}


.sticky-top {
    position: sticky;
    top:0;
    z-index: 9999;
}

.main-block__padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.img-fluid {
    max-width:100%;
    height:auto;
}

.img-filled {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ovrflw-hdn {
    overflow: hidden;
}

.ovrflw-x-hdn {
    overflow-x: hidden;
}

.les-1px {
	letter-spacing:1px;
}

.container a {
	color:black;
}

.container a:hover {
	color:teal;
}

a {
    text-decoration: none!important;
    transition: all .3s;
}

a:hover {
    text-decoration: none!important;
    transition: all .3s;
}

.zakladka {
    position:absolute;
    margin-top:-50px;
	height:0;
}

.bg-gray {
    background: #f6f6f6;
}

.bg-dark-gray {
    background: var(--bg-dark-gray);
}

.bg-blue {
    background: blue;
}

.bg-red {
    background: red;
}

.bg-yellow {
    background: yellow;
}

.bg-green {
    background: green;
}

.bg-teal {
    background: teal;
}

.bg-purple {
    background: purple;
}

.bg-black {
    background: #000;
}

.bg-white {
    background: #fff;
}

.bs-block {
    display: flex;
    flex-wrap: wrap;
}

.bs-block-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.bs-block-3 {
    display: flex;
    flex-wrap: nowrap;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.gap10 {
    gap: 10px;
}

.gap15 {
    gap: 15px;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}

.gap40 {
    gap: 40px;
}

.a-s-s {
    align-self: flex-start;
}

.a-s-e {
    align-self: flex-end;
}

.j-c-s {
	justify-content: flex-start;
}

.j-c-e {
	justify-content: flex-end;
}

.j-c-c {
    justify-content: center;
}

.j-c-a {
    justify-content: space-around;
}

.j-c-b {
    justify-content: space-between;
}

.a-i-c {
    align-items: center;
}

.a-c-c {
    align-content: center;
}

.j-c-e {
    justify-content: flex-end;
}

.m-lr-auto {
    margin-left: auto;
    margin-right: auto;
}

.t-a-c {
    text-align: center;
}

.t-a-l {
    text-align: left;
}

.t-a-r {
    text-align: right;
}

.txt-white {
    color: #fff;
}

.txt-teal {
    color: teal;
}

.txt-orange {
    color: orange;
}

.txt-red {
    color: red;
}

.txt-yellow {
    color: yellow;
}


.txt-upper {
    text-transform: uppercase;
}

.txt-lower {
    text-transform: lowercase;
}

.txt-shadow {
    text-shadow: 0 0 10px rgba(0,0,0,.5);
}

.f-w-b {
    font-weight: bold;
}

.padd70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.lh140 {
    line-height: 140%;
}

.lh130 {
    line-height: 130%;
}

.lh120 {
    line-height: 120%;
}

.lh110 {
    line-height: 110%;
}

.lh100 {
    line-height: 100%;
}

.mt5 {
    margin-top: 5px;
}

.mb5 {
    margin-bottom: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mb25 {
    margin-bottom: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mb35 {
    margin-bottom: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mb40 {
    margin-bottom: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mb50 {
    margin-bottom: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mb60 {
    margin-bottom: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mb70 {
    margin-bottom: 70px;
}

.mt90 {
    margin-top: 90px;
}

.mb90 {
    margin-bottom: 90px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml-a {
    margin-left: auto;
}

.mr-a {
    margin-right: auto;
}

.mt-a {
    margin-top: auto;
}

.mb-a {
    margin-bottom: auto;
}

.w50pr {
    width: 50%;
}

.w100pr {
    width: 100%;
}

.h100pr {
    height: 100%;
}

.an-del-01 {
    animation-delay: .05s;
}

.an-del-02 {
    animation-delay: .10s;
}

.an-del-03 {
    animation-delay: .15s;
}

.an-del-04 {
    animation-delay: .20s;
}

.an-del-05 {
    animation-delay: .25s;
}

.an-del-06 {
    animation-delay: .30s;
}

.an-del-07 {
    animation-delay: .35s;
}

.an-del-08 {
    animation-delay: .40s;
}

.an-del-09 {
    animation-delay: .45s;
}


.an-del-10 {
    animation-delay: .50s;
}

.an-del-11 {
    animation-delay: .55s;
}

.an-del-12 {
    animation-delay: .60s;
}

.hidden-big {
    display: none;
}

.brad5 {
    border-radius: 5px;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

.brad8 {
    border-radius: 8px;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

.brad12 {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}


.rew-wrap {
	flex-wrap: wrap-reverse;
}

.map-block iframe {
    width: 100%;
    min-height: 45vh;
    margin-bottom: -7px;
    overflow: hidden;
    border: none;
}

.fs13 {
	font-size:13px;
}


.post-w-sidebar__on-single {
    display: grid;
    grid-gap: 15px;    
    grid-template-columns: 1fr 280px;
}

.thumbnail img {
	border-radius:12px;
    max-width: 100%;
    height: auto;
}

.img-darker {
    filter: brightness(.4);
    -webkit-filter: brightness(.4);
}

.img-blur {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.img-darker-blur {
    filter: brightness(.4) blur(3px);
    -webkit-filter: brightness(.4) blur(3px);
}

.img-bigger {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/*---------- СТИЛИ МОДАЛЬНОГО ОКНА НАЧАЛО ----------*/

.cta__btn-ordercall {
    cursor:pointer;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998;
    background-color: rgba(0, 0, 0, .6);
    display: grid;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s, visibility .4s;
    -webkit-transition: opacity .4s, visibility .4s;
    -moz-transition: opacity .4s, visibility .4s;
    -ms-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
}

.modal__box {
    position: relative;
    max-width: 500px;
    min-width: 200px;
    padding: 35px 20px;
    z-index: 1;
    margin: 30px 15px;
    background:#fff;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0px 0px 17px -7px rgba(34, 60, 80, 0.2);
    transform: scale(0);
    transition: transform .8s;
}

.modal__close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background-color: transparent;
    padding: 5px;
    cursor: pointer;
}

.modal__close-btn svg path {
    transition: fill .4s;
}

.modal__close-btn:hover svg path {
    fill: #652d94;
}

.modal__close-btn:active svg path {
    fill: rgb(186, 53, 0);
}

.modal.open {
    visibility: visible;
    opacity: 1;
}

.modal.open .modal__box {
    transform: scale(1);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.modal-title {
    padding-top: 90px;
}

.logo-in-modal {
    overflow: hidden;
}

.logo-in-modal img {
    max-height: 150px;
    width: auto;
    position: absolute;
    top: -20px;
    left: calc(50% - 75px);
}

.modal-links__box {
    gap: 10px;
}

.modal-links__box img {
    height: 50px;
    transform: perspective(400px) translate3d(0, 0, 0px);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transform: perspective(400px) translate3d(0, 0, 0px);
    -moz-transform: perspective(400px) translate3d(0, 0, 0px);
    -ms-transform: perspective(400px) translate3d(0, 0, 0px);
    -o-transform: perspective(400px) translate3d(0, 0, 0px);
}

.modal-links__box a:hover img {
    transform: perspective(400px) translate3d(0, 0, 30px);
    -webkit-transform: perspective(400px) translate3d(0, 0, 30px);
    -moz-transform: perspective(400px) translate3d(0, 0, 30px);
    -ms-transform: perspective(400px) translate3d(0, 0, 30px);
    -o-transform: perspective(400px) translate3d(0, 0, 30px);
}


.modal-phone__link {
    font-size: 40px;
    color: teal;
}

.modal-phone__link:hover {
    color: #652d94;
    letter-spacing: 2px;
}

/*---------- СТИЛИ МОДАЛЬНОГО ОКНА КОНЕЦ ----------*/



/*---------- СТИЛИ САЙДБАРА НАЧАЛО ----------*/


.right-sidebar-box a {
	color:black!important;

}

.right-sidebar-box a:hover {
	color:orange!important;
}

.widget-block-sidebar {
   border-radius:12px;
   justify-content:around;
   padding: 15px;
   background: var(--sidebarbg-color);
}

.right-sidebar-box li.widget_calendar {
    list-style-type: none;
}

.widget-block-sidebar li {
	margin-bottom:15px;
}

.widget-block-sidebar ul li {
	margin-bottom:0px;
}

.widget-block-sidebar ul.menu {
	padding-left:0;
}

.my-sticky-top-block {
  position: sticky;
  margin-top:0px;
  top:70px;
}

.right-sidebar-box {
   margin-bottom:20px;
}

.widget_categories ul {
	padding-inline-start:0px!important;
	margin-block-start: 0!important;
}

.posts-page-links a {
	color:black;
}

.posts-page-links a:hover {
	color:blue;
}

.post-date-title {
	font-size:13px;
    color: #fff;
    background: #652d94;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 5px;
}

.post-header-font {
	font-size:18px;
	line-height:120%;
}

.post-excerpt-font p {
	margin-top: 0;
    margin-bottom: 0;
}

ul.wc-block-product-categories-list {
	padding-left:0;
	margin-left:0;
}

ul.wc-block-product-categories-list li {
	margin-top:7px;
	margin-bottom:7px;
}

.wp-block-search__button-outside {
    border: solid 1px #f8f8f8;
}

.wp-block-search {
	border-radius:5px;
	overflow:hidden;
}

.wp-block-search__input {
	border:none;
	outline:none;
}

.wp-block-search__button {
	margin-left:0;
	padding: 10px 15px;
	font-size:15px;
	border:none;
	transition:all .3s;
	background:#f6f6f6;
}

.wp-block-search__button:hover {
	background:aqua;
	transition:all .3s;
}

.searchform {
	display:flex;
	flex-wrap:nowrap;
}

.searchform input {
    border:solid 1px #fff;
    
    border-radius:5px;
	flex-grow:1;
}

.searchform label {
    display:none;
}

#searchsubmit {
    text-transform:uppercase;
    font-size:13px;
    font-weight:bold;
}

.wp-block-separator {
	border-top: solid 1px gray;
	border-bottom:none;
}

.wp-block-categories-list {
	padding-inline-start:0;
}

.wp-block-calendar #today {
    background: pink;
}

.wp-block-calendar td a:hover {
    color: #652d94!important;    
}

.wp-block-calendar td a {
    color: #fff!important;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0,0,0,.6);
}

.wp-block-calendar #today a {
    color: #fff!important;
}

.wp-block-calendar td#today {
    color: #fff!important;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 10px;
    line-height: 120%;
}    

/*---------- СТИЛИ САЙДБАРА КОНЕЦ ----------*/



/*------ СТИЛИ ФУТЕРА НАЧАЛО ------*/

.footer-logo__img {
    max-width: 80%;
    height: auto;
}

.footer-nav-menu ul {
    padding-inline-start: 0;
    & li {
        list-style-type: none;
        margin-bottom: 3px;
    }
}

.footer-msngrs .main-menu__msngr-link {
    opacity: 1!important;
}

.my-footer__bg {
    background: var(--footer-bg-color, #1f1e1d);
    color: var(--footer-txt-color, #fff);
}

.my-footer__bg a {
    color: var(--footer-link-color, #bcbcbc);
}

.my-footer__bg a:hover {
    color: var(--footer-link-hover-color, #f9f9f9);
}

.my-footer__box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.my-footer__box li.widget {
    list-style-type: none;
}

.widgettitle {
    font-size: clamp(1.1875rem, 1.1636rem + 0.1274vw, 1.4375rem);
    text-transform: uppercase;
    font-family: 'Playfair Display', sans-serif!important;
    color: var(--dop-txt-color);
    letter-spacing: 1px;
    max-width: 180px;
    word-break: keep-all;
}

.footer-line {
	background: var(--footer-line-bg, #1f1e1d);
    padding-top:10px;
	padding-bottom:10px;
}

.footer-line a {
    color: teal;
}

.footer-line a:hover {
    color: #fff;
}

/*------ СТИЛИ ФУТЕРА КОНЕЦ ------*/




/*------ СТИЛИ СТРАНИЦЫ ЗАПИСЕЙ НАЧАЛО ------*/

.authors-name {
    color: #fff;
    background: #1e9149;
    font-size: 13px;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 2px 10px;
}

.authors-name__in-post {
    color: #fff;
    background: #1e9149;
    font-size: 13px;
    border-radius: 5px;
    padding: 2px 10px;
}

.counter__in-post {
    color: #fff;
    font-weight: bold;
    background: #009999;
    font-size: 13px;
    border-radius: 5px;
    padding: 2px 10px;
    margin-right: 5px;
    margin-left: 5px;
}

.counter__in-post img {
    padding-right: 5px;
}

.single-header {
    font-size: clamp(1.25rem, 1.0625rem + 1vw, 1.875rem);
}

/*------ СТИЛИ СТРАНИЦЫ ЗАПИСЕЙ КОНЕЦ ------*/

.ar-21x9 {
    aspect-ratio: 21 / 9;
}


/*--------- СТИЛИ БЛОКА ВИДЕО НАЧАЛО ---------*/

.my-video {
    position:relative;	
	aspect-ratio: 16 / 9;
}

.my-video iframe {
	position:absolute!important;
	height:100%!important;
	width:100%!important;
	top:0;
	left: 0;
	right:0;
	bottom:0;	
    overflow: hidden;
    border-radius: 10px;
}

/*--------- СТИЛИ БЛОКА ВИДЕО КОНЕЦ ---------*/

.big-logo__box img {
    width: clamp(270px, 50%, 600px);
    height: auto;
}

.orange-link {
    color: var(--orange-color)!important;
}

.orange-link:hover {
    color: var(--bg-dark-gray)!important;
}

/*---------- СТИЛИ ПАГИНАЦИИ НАЧАЛО ----------*/

.pagination-box {
	background: var(--footer-line-bg);
	padding-top:5px;
	padding-bottom:5px;
}

ul.pagination li {
    list-style-type: none!important;
}

.pagination {
   display: flex;
   width:100%;
   padding-left: 0;
}

.pagination .page-numbers {
    color: #f6f6f6;
    padding:3px 10px;
    margin-left:3px;
    margin-right:3px;
    border-radius:5px;
    background:var(--orange-color);
    text-transform:uppercase;
}

.page-numbers.current {
    color:black;
}

/*---------- СТИЛИ ПАГИНАЦИИ КОНЕЦ ----------*/



/*------ СТИЛИ АККОРДИОНА НАЧАЛО ------*/

.accordion {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #8c8d8e;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: var(--dark-bg);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.accordion-header:hover {
    background: var(--bg-very-dark);
    /* border-left-color: var(--dark-bg); */
    border-left-color: teal;
}

.accordion-header.active {
    background: var(--bg-very-dark);
    border-left-color: teal;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--orange-color);
}

.accordion-icon {
    font-size: 20px;
    color: #667eea;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--dark-bg);
}

.accordion-content.active {
    max-height: 2000px;
}

.accordion-text {
    padding: 25px 20px;
    color: #efefef;
    line-height: 1.7;
}

.accordion-text p {
    margin-bottom: 10px;
}

.accordion-text p:last-child {
    margin-bottom: 0;
}

/* Анимация появления контента */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-content.active .accordion-text {
    animation: fadeIn 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-text {
        padding: 20px 15px;
        font-size: 14px;
    }
}

/*------ СТИЛИ АККОРДИОНА КОНЕЦ ------*/

.phone-in__modal {
    font-size: clamp(2.0625rem, 1.9312rem + 0.7vw, 2.5rem);
}

.msngrs-box__modal {
    gap: 10px;
}           

.msngrs-box__modal a img {
    transform: perspective(400px) translate3d(0, 0, 1px);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transform: perspective(400px) translate3d(0, 0, 1px);
    -moz-transform: perspective(400px) translate3d(0, 0, 1px);
    -ms-transform: perspective(400px) translate3d(0, 0, 1px);
    -o-transform: perspective(400px) translate3d(0, 0, 1px);
}

.msngrs-box__modal a:hover img {
       transition: all .3s;
       -webkit-transition: all .3s;
       -moz-transition: all .3s;
       -ms-transition: all .3s;
       -o-transition: all .3s;
       transform: perspective(400px) translate3d(0, 0, 20px);
       -webkit-transform: perspective(400px) translate3d(0, 0, 20px);
       -moz-transform: perspective(400px) translate3d(0, 0, 20px);
       -ms-transform: perspective(400px) translate3d(0, 0, 20px);
       -o-transform: perspective(400px) translate3d(0, 0, 20px);
}

.steps__box {
    position: relative;
    padding-left: 37px;
}

.steps__digit {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--orange-color);
    background: var(--dark-bg);
    font-size: 18px;
    font-weight: bold;
    line-height: 100%;
}

.recent-posts a {
    width: 100%;
}

.footer-qr-img-box img {
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    max-width: 100%!important;
    height: auto!important;
}