@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root {
    --default-font-family: 'Montserrat', sans-serif;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: var(--default-font-family);
    color: #333333;
}

body {
    padding-top: 110px;
    max-width: 100vw;
    overflow-x: hidden;
}

body.mobileMenu-opened {
    overflow: hidden;
}

* {
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1190px;
}

header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background-color: white;
}

body.mobileMenu-opened header {
    background-color: transparent;
}

header.scrolled {
    position: fixed;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

@media (max-width: 959px) {
    header .container {
        height: 94px;
    }
}

.header-address {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 959px) {
    .header-address {
        display: none;
    }
}

.header-logo {
    display: block;
    width: 294px;
    height: 74px;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 639px) {
    .header-logo {
        width: 120px;
    }
}

body.mobileMenu-opened .header-logo,
body.mobileMenu-opened .header-contacts {
    opacity: 0;
    pointer-events: none;
}

.header-phone {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
}

.header-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.header-social.instagram {
    background-color: #221d21;
    color: #fff;
}

.header-social.vk {
    background-color: #1976d2;
    color: #fff;
}

.header-social.tg {
    background-color: #e5e7eb;
    color: #fff;
}

.header-social svg {
    width: 20px;
    height: 20px;
}


header .callMe-trigger {
    position: relative;
    padding: 8px 16px;
    border: 1px solid #333333;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    transition: .3s linear;
    overflow: hidden;
}

@media (max-width: 959px) {
    header .callMe-trigger {
        display: none;
    }
}

header .callMe-trigger:after {
    animation-delay: .05s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-name: slideme;
    animation-timing-function: ease-in-out;
    background: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, .7) 0, #fff 50%, rgba(255, 255, 255, .7));
    content: "";
    display: block;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3ffffff", endColorstr="#b3ffffff", GradientType=0);
    height: 300px;
    left: -40px;
    margin-left: 60px;
    opacity: .5;
    position: absolute;
    top: -150px;
    transform: rotate(45deg);
    transition: all .1s;
    width: 30px;
    z-index: 1;
}

@-webkit-keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30%, to {
        left: 110%;
        margin-left: 80px
    }
}

.mobileMenu-trigger {
    position: relative;
    padding: 7px 12px;
    width: 44px;
    height: 31px;
    background-color: rgb(244, 244, 245);
    border-radius: 4px;
    cursor: pointer;
}

@media (min-width: 960px) {
    .mobileMenu-trigger {
        display: none;
    }
}

.mobileMenu-trigger span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: rgb(51, 51, 51);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobileMenu-trigger span:nth-child(1) {
    transform: translateY(-5px);
}

body.mobileMenu-opened .mobileMenu-trigger span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.mobileMenu-trigger span:nth-child(2) {
    transform: translateY(0);
}

body.mobileMenu-opened .mobileMenu-trigger span:nth-child(2) {
    opacity: 0;
}

.mobileMenu-trigger span:nth-child(3) {
    transform: translateY(5px);
}

body.mobileMenu-opened .mobileMenu-trigger span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

header .container:has(.header-menu) {
    height: auto;
}

@media (min-width: 960px) {
    body {
        padding-top: 174px;
    }
}

@media (max-width: 959px) {
    header .container:has(.header-menu) {
        display: none;
    }
}

header .header-menu {
    display: block;
    width: 100%;
}

header .header-menu-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

header .header-menu-list li {
    position: relative;
    padding: 0;
    margin: 0;
}

header .header-menu-list > li {
    padding: 20px 0;
}

header .header-menu-list li > a {
    display: inline;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase;
    color: #333333;
    text-decoration: none;
    cursor: pointer;
    transition: .3s linear;
}

header .header-menu-list li:hover > a {
    color: #FB8492;
}

header .header-menu-list .sub-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    display: none;
    padding: 0;
    margin: 0;
    min-width: 260px;
    list-style: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
}

header .header-menu-list > li > .sub-menu {
    margin-top: 0;
    border-top: 1px solid #e5e7eb;
}

header .header-menu-list .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

header .header-menu-list li:hover > .sub-menu {
    display: block;
}

header .header-menu-list .sub-menu li > a {
    display: block;
    padding: .8rem 1rem;
    width: 100%;
    background-color: #fdfdfd;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.25;
}

header .header-menu-list .sub-menu li:hover > a {
    background-color: #f2f1f1;
    color: #FB8492;
}


/* фикс стилей списков в оглавлении блога */
.table-of-contents ol li:before {
    display: inline
}

.widget {
    margin: 0 0 48px 0;
}

.widget .widget-header {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.widget .blog-author {
    display: flex;
    align-items: center;
}

.widget .blogAuthor-photo {
    margin-right: 20px;
}

.widget .blogAuthor-photo img {
    width: 48px;
    height: auto;
    border-radius: 50%;
}

.widget .blogAuthor-position {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 17px;
    color: #999999;
}

.widget .blogAuthor-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #333333;
    text-decoration: none;
}

.widget .blogAuthor-name:hover {
    text-decoration: underline;
}

.widget .wp-block-categories-list {
    padding: 0;
    margin: -3px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.widget .wp-block-categories-list .cat-item {
    margin: 3px;
}

.widget .wp-block-categories-list .cat-item a {
    padding: 6px 12px;
    display: block;
    background: #F9FAFB;
    font-size: 14px;
    line-height: 20px;
    color: #999999;
    text-decoration: none;
}

.widget .wp-block-categories-list .cat-item.active a,
.widget .wp-block-categories-list .cat-item a:hover {
    background-color: #A336F7;
    color: white
}

.widget .widget-articles .post-card {
    margin-bottom: 16px;
    display: flex;
}

.widget .widget-articles .post-card__thumbnail {
    margin: 0 16px 0 0;
    display: flex;
    width: 56px;
    height: 56px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: unset;
}

.widget .widget-articles .post-card__thumbnail a {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.widget .widget-articles .post-card__thumbnail a img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: auto;
    max-width: inherit;
    max-height: 56px;
}

.widget .widget-articles .post-card__title {
    margin: 0;
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
}

.widget .widget-articles .post-card__title a {
    padding: 2px 0;
    display: inline-block;
    color: #999999;
}

.widget .widget-articles .post-card__title a:hover {
    color: #A336F7;
}

.home-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #111111;
    padding: 30px 0 60px;
    margin: 0;
}

.home-title span {
    color: #A336F7;
}

@media (max-width: 900px) {
    .home-title {
        font-size: 26px;
        line-height: 120%;
        padding: 10px 15px 50px;
        width: 90%;
    }
}

:root {
    --darsy-text: #1A1A1A;
    --darsy-pink: #FFAED7;
    --darsy-pink-soft: #FFF3F9;
    --darsy-yellow-soft: #FFF8DE;
    --darsy-gray: #666666;
    --darsy-line: #DDDDDD;
    --darsy-surface: #F5F5F5;
}


/* ===== САЙДБАР ===== */
.archive #search-1 {
    display: none;
}

.archive .widget-area .widget {
    margin-bottom: 30px;
}

.archive .blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 32px;
}

.archive .blogAuthor-photo {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.archive .blogAuthor-photo img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: cover;
    object-position: center;
}

.archive .blogAuthor-info {
    min-width: 0;
}

.archive .blogAuthor-position {
    margin: 0 0 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #666666;
}

.archive .blogAuthor-name {
    display: block;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--darsy-text) !important;
    text-decoration: none;
}

.archive .blogAuthor-name:hover {
    text-decoration: none;
}

.archive .widget-header,
.archive .widget .wp-block-categories + * {
    font-family: 'Cormorant', Georgia, serif;
}

.archive .widget-header,
.archive .widget-header.has-small-font-size {
    margin: 0 0 14px;
    font-family: 'Cormorant', Georgia, serif;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.2;
    color: var(--darsy-text);
}

.archive .wp-block-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.archive .wp-block-categories > li {
    margin: 0;
    padding: 0;
}

.archive .wp-block-categories > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--darsy-pink-soft) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--darsy-text) !important;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.archive .wp-block-categories > li.active > a,
.archive .wp-block-categories > li > a:hover {
    background: var(--darsy-pink) !important;
    color: #1A1A1A !important;
}

.archive .widget-articles .post-card--vertical {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
}

.archive .widget-articles .post-card__thumbnail,
.archive .widget-articles .post-card__thumbnail a {
    flex: 0 0 48px;
    display: block;
    width: 48px;
    height: 48px;
    margin: 0;
}

.archive .widget-articles .post-card__thumbnail img {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.archive .widget-articles .post-card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
}

.archive .widget-articles .post-card__title,
.archive .widget-articles .post-card__title a {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--darsy-text) !important;
    text-decoration: none;
}

.archive .widget-articles .post-card__title a:hover {
    color: var(--darsy-pink) !important;
}


.archive .widget-articles .post-card__thumbnail a {
    border-radius: 8px;
}

.archive .post-card__thumbnail a:before {
    display: none;
}

.archive .breadcrumb a, .breadcrumb span {
    color: #666666 !important;
    text-transform: unset;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;


}

.archive .breadcrumb a:hover {
    color: var(--darsy-pink) !important;
}

.archive .post-card__thumbnail a img {
    border-radius: 20px;
}

.arhive .post-card__date:before, .post-card__like:before, .post-card__views:before, .post-card__comments:before {
    color: #666666 !important;
}

.post-card__date:before {
    color: #666666 !important;
}

.archive .post-card:not(.post-card--small) .post-card__category {
    text-transform: none;
    color: #1A1A1A;
}

.archive .post-card__thumbnail .post-card__category {
    left: 24px;
    bottom: unset;
    top: 24px;
}

.archive .post-card__description {
    color: #666666 !important;
}

body.blog h1 {
    margin: 40px 0 0;
    font-size: 32px;
}

body.blog .card-slider-container {
    margin-top: 30px;
    border-radius: 18px;
}

body.blog .slider-thumbnails__title {
    border-radius: 18px;
    padding: 70px 24px 24px 24px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}

.post-card:not(.post-card--small) .post-card__thumbnail a:before {
    background-color: unset !important;
}

body.blog .post-card__thumbnail img {
    border-radius: 18px;
    max-height: 150px;
}

body.blog .post-card__thumbnail img:hover {
    background-color: unset;
}

body.blog .post-card--vertical {
    display: flex;
    flex-direction: column;
}

body.blog .post-card__meta {
    order: 3;
}

body.blog .post-card__title a {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #000;
}

body.blog .post-card__title a:hover {
    color: #FFAED7;
}

body.blog .post-card--vertical .post-card__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #999;
}

.card-slider__body {
    border-radius: 18px;
    overflow: hidden;
}

body.blog .slider-thumbnails .swiper-slide {
    cursor: pointer;
    -webkit-transition: all .2s;
    opacity: 1;
    transition: all .2s;
}

body.blog span.slider-thumbnails__title:hover {
    background-color: unset !important;
}

body.blog .slider-thumbnails__slide {
    border-radius: 18px;
}

body.blog .slider-thumbnails .swiper-slide:hover {
    opacity: unset;
}

body.blog .card-slider__category {
    text-transform: unset !important;
    color: #1A1A1A !important;
}

body.blog .post-card:not(.post-card--small) .post-card__category {
    text-transform: unset !important;
    color: #1A1A1A !important;
}

body.blog .post-card--grid:nth-child(6n+1):not(.post-card--thumbnail-no) .post-card__thumbnail:before,
body.blog .post-card--grid:nth-child(6n+1):not(.post-card--thumbnail-no) .post-card__thumbnail {
    border-radius: 20px;
}

body.blog .post-card--grid:nth-child(6n), .post-card--grid:nth-child(6n+1) {
    border-radius: 20px;
}

.mobile-menu {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

body:not(.mobileMenu-opened) .mobile-menu {
    display: none;
}

.mobileMenu-title {

}

.mobileMenu-title {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 94px;
    background-color: rgb(244, 244, 245);
    border-bottom: 1px solid rgb(229, 231, 235);
    font-size: 18px;
    line-height: 28px;
}

.mobileMenu-container {
    position: relative;
}

.mobileMenu-items {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu li.menu-item-has-children .parentElement-opener {
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu li a {
    display: block;
    padding: 12px 16px;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-decoration: none;
}

.mobile-menu .parentElement-opener {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtcGx1cyIgYXJpYS1oaWRkZW49InRydWUiIGZvY3VzYWJsZT0iZmFsc2UiIGRhdGEtcHJlZml4PSJmYXMiIGRhdGEtaWNvbj0icGx1cyIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIiBkYXRhLWZhLWkyc3ZnPSIiPjxwYXRoIGZpbGw9InJnYig1NywgNTIsIDYwKSIgZD0iTTQzMiAyNTZjMCAxNy42OS0xNC4zMyAzMi4wMS0zMiAzMi4wMUgyNTZ2MTQ0YzAgMTcuNjktMTQuMzMgMzEuOTktMzIgMzEuOTlzLTMyLTE0LjMtMzItMzEuOTl2LTE0NEg0OGMtMTcuNjcgMC0zMi0xNC4zMi0zMi0zMi4wMXMxNC4zMy0zMS45OSAzMi0zMS45OUgxOTJ2LTE0NGMwLTE3LjY5IDE0LjMzLTMyLjAxIDMyLTMyLjAxczMyIDE0LjMyIDMyIDMyLjAxdjE0NGgxNDRDNDE3LjcgMjI0IDQzMiAyMzguMyA0MzIgMjU2eiI+PC9wYXRoPjwvc3ZnPg==);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
}

.mobile-menu .submenu-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: white;
}

.mobile-menu li.menu-item-has-children:not(.opened) .submenu-wrapper {
    display: none;
}

.mobile-menu .submenu-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.parentElement-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parentElement-closer {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: rgb(244, 244, 245);
    border: 1px solid rgb(229, 231, 235);
    border-radius: 25px;
    cursor: pointer;
}

.parentElement-closer svg {
    display: block;
    width: 20px;
    height: 20px;
}

footer {
    margin-top: 50px;
    padding: 50px 0;
    background-color: #333333;
}

.footer-top {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 959px) {
    .footer-top {
        flex-direction: column;
    }
}

.footer-left {
    width: calc(40% - 10px);
}

@media (max-width: 959px) {
    .footer-left {
        margin: 0 auto;
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 639px) {
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-logo {
    display: block;
    width: 174px;
    height: 74px;
    background-image: url(../images/logo_white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 959px) {
    .footer-logo {
        margin: auto;
    }
}

.footerLeft-wrapper {
    display: flex;
    gap: 20px;
}

@media (max-width: 639px) {
    .footerLeft-wrapper {
        flex-direction: column;
    }
}

.footer-right {
    width: calc(60% - 10px);
    display: flex;
    gap: 20px;
}

@media (max-width: 959px) {
    .footer-right {
        margin: 0 auto;
        width: 100%;
        max-width: 680px;
    }
}

@media (max-width: 639px) {
    .footer-right {
        flex-direction: column;
        align-items: center;
    }
}

.footerLeft-column,
.footerRight-column {
    width: calc((100% - 20px) / 2);
}

@media (max-width: 639px) {
    .footerLeft-column,
    .footerRight-column {
        width: 100%;
    }

    .footerRight-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footerMenu-title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: white;
}

@media (max-width: 639px) {
    .footerMenu-title {
        text-align: center;
    }
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (max-width: 639px) {
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-menu li a {
    font-size: 16px;
    line-height: 20px;
    color: white;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.footer-social.wapp {
    background-color: #39aa44;
    color: #fff;
}

.footer-social.instagram {
    background-color: #221d21;
    color: #fff;
}

.footer-social.vk {
    background-color: #1976d2;
    color: #fff;
}

.footer-social.tg {
    background-color: #e5e7eb;
}

.footer-social svg {
    display: block;
    width: 20px;
    height: 20px;
}

.footer-social.pinterest svg,
.footer-social.youtube svg {
    width: 34px;
    height: 34px;
}

.footer-social.tg svg {
    width: 32px;
    height: 32px;
}

.footer-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 12px;
    color: white;
}

@media (max-width: 639px) {
    .footer-note {
        max-width: 300px;
        text-align: center;
    }
}

.footer-email,
.footer-address,
.footer-shedule {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

@media (max-width: 639px) {
    .footer-email,
    .footer-address,
    .footer-shedule {
        max-width: 300px;
        text-align: center;
    }
}

.footer-email span,
.footer-address span,
.footer-shedule span {
    padding-right: 5px;
    color: rgb(120, 113, 108);
}

.footer-email span,
.footer-shedule span {
    display: block;
}

.footer-email a {
    color: white;
    text-decoration: underline;
}

.footer-email a:hover {
    text-decoration: none;
}

.footer-phone {
    margin-bottom: 16px;
}

.footer-phone a {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    text-decoration: none;
}

footer .callMe-trigger {
    position: relative;
    padding: 7px;
    display: inline-block;
    background-color: rgb(249, 188, 195);
    border: 1px solid rgb(229, 231, 235);
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: rgb(51, 51, 51);
    cursor: pointer;
    transition: .3s linear;
    overflow: hidden;
}

footer .callMe-trigger:after {
    animation-delay: .05s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-name: slideme;
    animation-timing-function: ease-in-out;
    background: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, .7) 0, #fff 50%, rgba(255, 255, 255, .7));
    content: "";
    display: block;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3ffffff", endColorstr="#b3ffffff", GradientType=0);
    height: 300px;
    left: -40px;
    margin-left: 60px;
    opacity: .5;
    position: absolute;
    top: -150px;
    transform: rotate(45deg);
    transition: all .1s;
    width: 30px;
    z-index: 1;
}

.footer-details {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

@media (max-width: 639px) {
    .footer-details {
        max-width: 300px;
        text-align: center;
    }
}

.footer-bottom {
    margin-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 20px;
    color: white;
}

.footerBottom-menu {
    padding: 0;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.footerBottom-menu li {
    font-size: 14px;
    line-height: 20px;
    color: white;
}

.footerBottom-menu li a {
    color: white;
    text-decoration: underline;
}

.footerBottom-menu li a:hover {
    text-decoration: none;
}
