html {
    --font-family: "Inter", sans-serif;
    --font-family-serif: "Inter", sans-serif;
    --white: #fff;
    --black: #000;
    --orange: #EC4400;
    --light-orange: #D5846E;
    --beige: #EEEBE6;
    --gold: #B4975D;
    --light-gold: #f6f1e8;
    --dark-blue: #21212C;
    --blue: #2D2D3C;
    --successful: #49aa53;
    --violet: #7165ff;
    --error: #e64832
}

* {
    box-sizing: border-box;
}
a, button {
    cursor: pointer;
}

.spacer {
    display: block;
    width: 100%
}

.spacer--40 {
    height: 40px
}

.spacer--72 {
    height: 72px
}

.spacer--80 {
    height: 80px
}

.spacer--120 {
    height: 120px
}

.spacer--150 {
    height: 150px
}

.spacer--200 {
    height: 200px
}

body {
    font-family: var(--font-family);
    background-color: var(--beige);
    padding: 0;
    margin: 0
}

.container {
    width: 100%;
    max-width: 1524px;
    padding-left: 72px;
    padding-right: 72px;
    margin: 0 auto
}


.container.container-sm {
    max-width: 1200px
}

@media (hover:hover) {
    a.hovered:hover {
        color: var(--gold)
    }

    .btn:hover.btn--primary {
        color: var(--white);
        background-color: var(--dark-blue)
    }

    .btn.btn--outlined:hover {
        color: var(--dark-blue);
        border: 2px solid var(--dark-blue)
    }
}

.pattern-top-image {
    background-image: url(/assets/img/bg.png);
    background-repeat: repeat-y;
    background-size: 110% 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.pattern-bottom-image {
    background-image: url(/assets/img/bg.png);
    background-repeat: repeat-y;
    background-size: 140% 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .2s linear
}

img,
svg,
video {
    max-width: 100%;
    max-height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
    font-family: var(--font-family-serif)
}

.h1,
h1 {
    font-size: 3.75em
}

.h2,
h2 {
    font-size: 3.5em
}

.h3,
h3 {
    font-size: 3em
}

.h4,
h4 {
    font-size: 1.75em
}

.h5,
h5 {
    font-size: 2em
}

.h6,
h6 {
    font-size: 1.4em
}

button {
    cursor: pointer
}

p {
    font-size: 16px;
    font-weight: 400;
    margin: 0
}

p .paragraph {
    font-weight: 500;
    font-size: 18px
}

.pre-title {
    text-transform: uppercase;
    color: var(--light-orange);
    font-weight: 500;
    font-size: 18px
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    padding: 0 50px;
    transition: all .2s linear
}

.btn.btn--primary {
    color: var(--white);
    background-color: var(--orange);
    border: 0
}

.btn.btn--outlined {
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600
}

.swiper-pagination {
    width: 100%;
    left: 0;
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px
}

.swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    border-radius: 0
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--gold)
}

@media screen and (max-width:1400px) {
    .pattern-top-image {
        background-size: 130% 50%
    }

    .pattern-bottom-image {
        background-size: 130% 50%
    }

    .h1,
    h1 {
        font-size: 3.5em
    }

    .h2,
    h2 {
        font-size: 3.25em
    }

    .h3,
    h3 {
        font-size: 2.75em
    }

    .h4,
    h4 {
        font-size: 2.25em
    }

    .h5,
    h5 {
        font-size: 1.75em
    }

    .h6,
    h6 {
        font-size: 1.275em
    }
}

@media screen and (max-width:1200px) {
    .container {
        padding-left: 50px;
        padding-right: 50px
    }

    .h1,
    h1 {
        font-size: 3em
    }

    .h2,
    h2 {
        font-size: 3em
    }

    .h3,
    h3 {
        font-size: 2.25em
    }

    .h4,
    h4 {
        font-size: 2em
    }

    .h5,
    h5 {
        font-size: 1.5em
    }

    .h6,
    h6 {
        font-size: 1em
    }

    .spacer {
        display: block;
        width: 100%
    }

    .spacer--120 {
        height: 100px
    }

    .spacer--150 {
        height: 120px
    }

    .spacer--200 {
        height: 150px
    }

    .pattern-bottom-image {
        background-size: 160% 50%
    }
}

@media screen and (max-width:1024px) {
    .container {
        padding-left: 24px;
        padding-right: 24px
    }

    .h1,
    h1 {
        font-size: 2.5em
    }

    .h2,
    h2 {
        font-size: 2.225em
    }

    .h3,
    h3 {
        font-size: 2em
    }

    .h4,
    h4 {
        font-size: 1.725em
    }

    .btn {
        padding: 0 40px
    }

    .swiper-pagination {
        gap: 18px
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 20px
    }
}

@media screen and (max-width:1024px) and (max-width:920px) {

    .h1,
    h1 {
        font-size: 2.25em
    }

    .h2,
    h2 {
        font-size: 2em
    }

    .h3,
    h3 {
        font-size: 1.725em
    }

    .h4,
    h4 {
        font-size: 1.525em
    }

    .spacer--150 {
        height: 100px
    }

    .spacer--200 {
        height: 130px
    }
}

@media screen and (max-width:768px) {

    .h1,
    h1 {
        font-size: 2em
    }

    .h2,
    h2 {
        font-size: 1.725em
    }

    .h3,
    h3 {
        font-size: 1.525em
    }

    .h4,
    h4 {
        font-size: 1.225em
    }

    .pattern-top-image {
        background-size: 180% 50%
    }

    .pattern-bottom-image {
        background-size: 210% 50%
    }

    .spacer--200 {
        height: 100px
    }

    .spacer--150 {
        height: 80px
    }
}

@media screen and (max-width:640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px
    }

    .pattern-top-image {
        background-size: 230% 50%
    }

    .pattern-bottom-image {
        background-size: 280% 50%
    }
}

.header {
    padding-top: 34px
}

.header .burger {
    position: relative;
    z-index: 99;
    display: none;
    width: 30px;
    height: 20px
}

.header .burger span {
    position: absolute;
    width: 30px;
    left: 0;
    height: 2px;
    background-color: var(--black);
    transition: all .4s ease-in-out
}

.header .burger .top-line {
    top: 0
}

.header .burger .middle-line {
    top: 8px
}

.header .burger .bottom-line {
    top: 16px
}

.header .burger.open span {
    background-color: var(--white)
}

.header .burger.open .top-line {
    transform: translate3d(0, 5px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(45deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all .7s ease-in-out
}

.header .burger.open .middle-line {
    opacity: 0
}

.header .burger.open .bottom-line {
    transition: all .7s ease-in-out;
    transform: translate3d(0, -10.5px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(-45deg) skew(0deg, 0deg);
    transform-style: preserve-3d
}

.header__wrapper {
    display: flex;
    justify-content: space-between
}

.header__logo {
    font-size: 40px;
    color: var(--gold);
    font-weight: 600
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 48px
}

.header__nav ul {
    display: flex;
    gap: 40px;
    font-weight: 500
}

.header__search {
    display: flex;
    gap: 30px;
    align-items: center;
    cursor: pointer
}

.header__search svg {
    width: 32px;
    height: 32px;
    padding: 5px
}

.header__search-input {
    width: 250px;
    height: 48px;
    border: 1px solid var(--gold);
    background-color: var(--light-gold);
    padding-left: 16px
}

.header__search-form {
    display: flex;
    align-items: center;
    gap: 8px
}

.header__search-submit {
    background-color: var(--light-orange);
    height: 48px;
    width: 48px;
    border: 0
}

@media screen and (max-width:1200px) {
    .header {
        padding-top: 24px
    }

    .header__logo {
        font-size: 35px
    }

    .header__nav ul {
        gap: 30px
    }

    .header__search-input {
        width: 200px
    }
}

@media screen and (max-width:920px) {
    .header .burger {
        display: block
    }

    .header .slide-menu {
        position: fixed;
        color: var(--white);
        width: 300px;
        height: 100vh;
        right: -100%;
        z-index: 7;
        top: 0
    }

    .header .slide-menu .nav-overlay {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        right: -100%;
        padding: 70px;
        width: 100%;
        height: 100%;
        background-color: var(--dark-blue);
        box-sizing: border-box;
        transition: transform .4s ease 0s;
        font-size: 1.5em;
        transition: all .4s cubic-bezier(.8, .1, .01, .04)
    }

    .header .slide-menu.open {
        right: 0;
        height: 100%;
        transition: transform 1s ease 0s
    }

    .header .slide-menu.open .nav-overlay {
        right: 0;
        transform: translateX(0) translateY(0)
    }
}

@media screen and (max-width:768px) {
    .header {
        padding-top: 16px
    }

    .header__logo {
        font-size: 32px
    }

    .header__nav {
        gap: 24px
    }

    .header__search-input {
        width: 180px;
        height: 40px
    }

    .header__search-submit {
        width: 40px;
        height: 40px
    }
}

@media screen and (max-width:480px) {
    .header__logo {
        font-size: 28px
    }

    .header__search-input {
        width: 135px;
        height: 35px
    }

    .header__search-submit {
        width: 35px;
        height: 35px
    }

    .header .slide-menu .nav-overlay {
        padding: 50px
    }
}

.hero {
    position: relative;
    margin-top: 36px
}

.hero__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hero__info {
    max-width: 605px
}

.hero__illustration {
    max-width: 550px
}

.hero .paragraph {
    margin-top: 24px
}

.hero .btn {
    margin-top: 50px
}

@media screen and (max-width:1400px) {
    .hero__info {
        max-width: 585px
    }

    .hero__illustration {
        max-width: 420px
    }
}

@media screen and (max-width:1200px) {
    .hero__info {
        max-width: 500px
    }

    .hero__illustration {
        max-width: 370px
    }
}

@media screen and (max-width:920px) {
    .hero__info {
        max-width: 400px
    }

    .hero__illustration {
        max-width: 290px
    }

    .hero .btn {
        margin-top: 30px
    }
}

@media screen and (max-width:920px) {
    .hero__info {
        max-width: 100%;
        position: relative;
        z-index: 1
    }

    .hero__illustration {
        max-width: 45%;
        position: absolute;
        z-index: 0;
        opacity: .5;
        right: 0
    }
}

.zodiac .heading {
    max-width: 515px;
    text-align: center;
    margin: 0 auto
}

.zodiac__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 38px;
    row-gap: 80px;
    margin-top: 120px
}

.zodiac__item {
    width: calc(16.6% - 31px);
    max-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.zodiac__item .title {
    transition: all .2s ease
}

@media (hover:hover) {
    .zodiac__item:hover .title {
        color: var(--orange)
    }
}

@media screen and (max-width:1200px) {
    .zodiac__wrapper {
        gap: 20px;
        margin-top: 80px;
        row-gap: 60px
    }

    .zodiac__item {
        width: calc(16.6% - 18px)
    }
}

@media screen and (max-width:768px) {
    .zodiac__item {
        width: calc(25% - 15px)
    }
}

@media screen and (max-width:620px) {
    .zodiac .heading {
        max-width: 100%
    }

    .zodiac__wrapper {
        margin-top: 50px
    }

    .zodiac__item h5 {
        font-size: 1.225em
    }
}

@media screen and (max-width:480px) {
    .zodiac__wrapper {
        gap: 16px;
        row-gap: 40px
    }

    .zodiac__item h5 {
        font-size: .925em
    }
}

.notice {
    background-color: var(--dark-blue);
    padding: 89px 0;
    color: var(--white);
    background-image: url(/assets/img/bg-dark.png)
}

.notice>.container .heading {
    text-align: center;
    margin: 0 auto;
    max-width: 570px
}

.notice__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 103px
}

.notice__item {
    padding: 30px;
    border: 1px solid var(--blue);
    width: calc(33.33% - 70px);
    display: flex;
    flex-direction: column;
    gap: 30px
}

.notice__item .icon,
.notice__item img {
    width: 66px;
    height: 66px
}

@media screen and (max-width:1400px) {
    .notice__item {
        width: calc(33.33% - 48px)
    }

    .notice__wrapper {
        gap: 70px
    }
}

@media screen and (max-width:1200px) {
    .notice__item {
        width: calc(33.33% - 28px);
        padding: 24px
    }

    .notice__wrapper {
        gap: 40px
    }
}

@media screen and (max-width:920px) {
    .notice__item {
        width: calc(50% - 20px)
    }
}

@media screen and (max-width:640px) {
    .notice {
        padding: 55px 0
    }

    .notice__wrapper {
        gap: 20px;
        margin-top: 40px
    }

    .notice__item {
        width: calc(50% - 10px);
        padding: 24px 15px;
        gap: 20px
    }

    .notice__item p {
        font-size: 14px
    }
}

@media screen and (max-width:640px) {
    .notice__item {
        width: 100%
    }
}

.horoscope__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.horoscope__illustration {
    max-width: 600px
}

.horoscope__info {
    max-width: 475px
}

.horoscope__info .btn {
    margin-top: 35px
}

.horoscope__info .paragraph {
    margin-top: 30px
}

@media screen and (max-width:1400px) {
    .horoscope__illustration {
        max-width: 450px
    }
}

@media screen and (max-width:1200px) {
    .horoscope__illustration {
        max-width: 370px
    }

    .horoscope__info {
        max-width: 420px
    }
}

@media screen and (max-width:1200px) {
    .horoscope__illustration {
        max-width: 290px
    }

    .horoscope__info {
        max-width: 350px
    }
}

@media screen and (max-width:768px) {
    .horoscope__illustration {
        max-width: 230px
    }

    .horoscope__info {
        max-width: 290px
    }
}

@media screen and (max-width:640px) {
    .horoscope__wrapper {
        flex-wrap: wrap;
        justify-content: center
    }

    .horoscope__illustration {
        max-width: 70%
    }

    .horoscope__info {
        max-width: 100%;
        margin-top: 50px
    }
}

.blog {
    padding-bottom: 200px;
    position: relative;
}

.blog>.container .heading {
    max-width: 475px;
    text-align: center;
    margin: 0 auto
}

.blog__wrapper {
    display: flex;
    margin-top: 96px
}

.blog-slider {
    overflow: hidden;
}

.blog__item {
    background-color: var(--white);
    width: calc(33.33% - 24px);
    height: auto
}

.blog__item-info {
    padding: 30px
}

.blog__item-img {
    width: 100%;
    height: 300px;
    display: block
}

.blog__item-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%
}

.blog .text {
    margin-top: 24px
}

.blog .btn {
    margin-top: 48px
}

@media screen and (max-width:1024px) {
    .blog {
        padding-bottom: 120px
    }

    .blog__item-info {
        padding: 30px 20px
    }
}

@media screen and (max-width:768px) {
    .blog {
        padding-bottom: 100px
    }
}

@media screen and (max-width:640px) {
    .blog__wrapper {
        margin-top: 50px
    }
}

.subscribe {
    background-color: var(--dark-blue);
    background-image: url(/assets/img/bg-dark-1.png);
    height: 600px;
    color: var(--white);
    display: flex;
    align-items: center;
    background-size: cover
}

.subscribe .heading {
    max-width: 832px;
    margin: 0 auto;
    text-align: center
}

.subscribe__wrapper {
    max-width: 832px;
    margin: 0 auto
}

.subscribe form {
    display: flex;
    gap: 30px;
    margin-top: 60px
}

.subscribe .input {
    height: 80px;
    border: 0;
    background-color: var(--white);
    width: 600px;
    padding-left: 30px
}

.subscribe .btn--primary {
    height: 80px;
    font-size: 22px;
    margin: 0
}

@media (hover:hover) {
    .subscribe .btn--primary:hover {
        background-color: var(--gold)
    }
}

@media screen and (max-width:1400px) {
    .subscribe {
        height: 490px
    }

    .subscribe__wrapper {
        max-width: 700px
    }

    .subscribe .input {
        height: 60px;
        width: 470px
    }

    .subscribe .btn--primary {
        height: 60px;
        font-size: 20px
    }
}

@media screen and (max-width:1024px) {
    .subscribe {
        height: 400px
    }
}

@media screen and (max-width:920px) {
    .subscribe {
        height: 330px
    }

    .subscribe .input {
        height: 50px;
        width: 350px
    }

    .subscribe .btn--primary {
        height: 50px;
        font-size: 18px
    }

    .subscribe form {
        gap: 15px
    }
}

@media screen and (max-width:480px) {
    .subscribe .input {
        width: 200px
    }

    .subscribe .btn--primary {
        font-size: 14px;
        padding: 0 20px
    }

    .subscribe form {
        gap: 10px
    }
}

.footer {
    background-image: url(/assets/img/bg.png);
    padding: 100px 0 50px
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 200px;
    padding-right: 200px
}

.footer__left {
    max-width: 380px
}

.footer .logo {
    font-size: 40px;
    font-weight: 600
}

.footer .motto {
    margin-top: 24px
}

.footer__menus {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 580px)
}

.footer__col ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer__bottom {
    border-top: 1px solid var(--gold);
    padding: 12px 0;
    margin-top: 48px
}

@media screen and (max-width:1200px) {
    .footer {
        padding: 60px 0 40px
    }

    .footer__wrapper {
        padding-right: 30px;
        gap: 50px
    }

    .footer__menus {
        width: calc(100% - 500px)
    }

    .footer__bottom {
        margin-top: 36px
    }
}

@media screen and (max-width:1024px) {
    .footer__left {
        max-width: 300px
    }

    .footer__menus {
        width: calc(100% - 350px)
    }
}

@media screen and (max-width:1024px) {
    .footer__left {
        max-width: 220px
    }

    .footer__menus {
        width: calc(100% - 270px)
    }

    .footer__wrapper {
        padding-right: 0
    }
}

@media screen and (max-width:640px) {
    .footer {
        padding: 40px 0 20px
    }

    .footer__left {
        max-width: 100%
    }

    .footer__menus {
        width: 100%;
        justify-content: flex-start;
        gap: 60px
    }

    .footer__wrapper {
        flex-wrap: wrap
    }
}

.white-bg {
    background-color: #fff
}

.mt-50 {
    margin-top: 50px
}

.pt-50 {
    padding-top: 50px
}

.beige {
    background-color: #eeebe6
}

.big-heading {
    background-color: #eeebe6;
    padding: 84px 0;
    text-align: center;
    position: relative
}

.blog-inner {
    display: flex;
    gap: 36px
}

.blog-inner .sidebar {
    width: calc(33.33% - 18px)
}

.big-heading .bg {
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: 128%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: -moz-max-content;
    max-height: max-content
}

.blog-page-wrapper {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    width: calc(66.66% - 18px);
    height: -moz-fit-content;
    height: fit-content
}

.blog-page-wrapper .blog__item {
    width: calc(50% - 18px)
}

.sidebar section {
    padding: 28px;
    background-color: #eeebe6
}

.sidebar .wp-block-search__input {
    width: 74%
}

.sidebar .wp-block-search__button {
    width: calc(25% - 10px);
    background-color: #b4975d;
    color: #fff;
    font-weight: 600;
    border: 0
}

.sidebar .wp-block-heading,
.sidebar .wp-block-search__label {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase
}

.sidebar .wp-block-latest-posts__list,
.sidebar .wp-block-search__inside-wrapper {
    margin-top: 30px
}

.sidebar .wp-block-latest-posts__featured-image img {
    width: 100%;
    height: 270px;
    -o-object-fit: cover;
    object-fit: cover
}

.sidebar .wp-block-latest-posts__list {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.wp-block-latest-posts__post-title {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 500
}

.wp-block-tag-cloud a {
    padding: 7px 14px;
    font-weight: 600;
    color: #b4975d;
    background-color: #e5dfd5;
    margin-right: 0
}

p.wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.breadcrumbs {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px
}

.crumbs-on-the-top .breadcrumbs {
    margin-top: 0;
    margin-bottom: 20px
}

.big-heading .dates {
    margin-top: 30px;
    font-weight: 600;
    font-size: 20px
}

.w-100 {
    width: 100%
}

.article,
.post {
    margin: 0
}

.article p {
    margin: 8px 0
}

.article ul {
    margin: 16px 0;
    padding-left: 40px;
    list-style: square
}

.article .wp-block-heading {
    font-size: 30px
}

.article .post-thumbnail img {
    max-height: 400px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.article .post-thumbnail {
    margin-bottom: 60px
}

.article-content {
    padding: 30px 60px 80px;
    background-color: #eeebe6
}

.common-chars .row {
    display: flex;
    gap: 32px;
    margin-bottom: 16px
}

.common-chars .col {
    width: calc(50% - 16px)
}

.horoscope-yearly h6 {
    margin-bottom: 24px
}

.horoscope-yearly .btn {
    margin-top: 24px
}

.beige-bg {
    background-color: #eeebe6
}

.horoscope-item {
    margin-bottom: 48px
}

.horoscope-item .btn {
    margin-top: 24px
}

.horoscope-item .horoscope-preview {
    margin-top: 24px
}

.sidebar aside {
    position: sticky;
    top: 0
}

.text-center {
    text-align: center
}

.font-family-sans {
    font-family: var(--font-family-serif)
}

.huge-fz-404 {
    font-size: 30vw;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 1
}

.error-404 .btn {
    margin: 24px auto 0
}

.search-item-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.search-item {
    width: 100%
}

.zodiacs-sm .zodiac__item {
    width: calc(8.3333333333% - 18.5px);
    background-color: #edebe5;
    padding: 16px 6px
}

.zodiacs-sm .zodiac__wrapper {
    gap: 20px
}

.zodiacs-sm .zodiac__item .title {
    transition: all .2sease;
    font-size: 14px
}

.zodiacs-sm .zodiac__wrapper {
    margin-top: 0
}

.horoscope-yearly {
    margin-bottom: 36px
}

.article h2.wp-block-heading {
    font-size: 35px
}

.article h3.wp-block-heading {
    font-size: 26px
}

.article h4.wp-block-heading {
    font-size: 22px
}

.blog-page-wrapper a em,
.blog-page-wrapper em a {
    text-decoration: underline
}

.blog-page-wrapper a:hover {
    color: #ec4400
}

.menu-item {
    position: relative
}

.header__nav .sub-menu {
    background-color: #eeebe6;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    position: absolute;
    z-index: 3;
    top: 30px;
    left: -25px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    min-width: 250px
}

.header__nav li:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible
}

ol,
ul {
    margin: 0
}

@media screen and (max-width:1199px) {
    .article-content {
        padding: 30px 30px 50px
    }

    .blog-inner {
        gap: 24px
    }

    .sidebar section {
        padding: 16px
    }

    .sidebar .wp-block-search__button {
        width: calc(35% - 10px)
    }

    .sidebar .wp-block-search__input {
        width: 65%
    }

    .wp-block-tag-cloud a {
        padding: 6px 10px;
        font-weight: 600;
        color: #b4975d;
        background-color: #e5dfd5;
        font-size: 12px !important
    }

    .zodiacs-sm .zodiac__item {
        width: calc(16.6666666667% - 13.5px);
        padding: 8px 6px
    }

    .zodiacs-sm .zodiac__item img {
        max-width: 90px
    }

    .zodiacs-sm .zodiac__wrapper {
        gap: 16px
    }
}

.subscribe__wrapper form p {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.subscribe form {
    flex-wrap: wrap
}

.wpcf7-response-output {
    width: 100%
}

.subscribe__wrapper .wpcf7-spinner {
    width: 100%
}

.subscribe__wrapper .btn {
    width: calc(100% - 600px - 30px)
}

.subscribe__wrapper .wpcf7-form-control-wrap {
    width: 600px
}

.share ul {
    padding: 0;
    margin: 0;
    margin-top: 10px
}

.ya-share2 {
    margin-top: 16px
}

.ya-share2.mobile {
    display: none
}

.common-chars h6 {
    font-family: var(--font-family-serif)
}

.page-numbers {
    display: flex;
    width: 35px;
    height: 35px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid;
    align-items: center;
    justify-content: center
}

.page-numbers.next,
.page-numbers.prev {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 12px
}

.pagination {
    display: flex;
    gap: 8px
}

.page-numbers.current {
    color: #b4975d
}

.natal {
    background-color: #21212c;
    background-image: url(img/bg-dark-1.png);
    height: 600px;
    color: #fff;
    display: flex;
    align-items: center;
    background-size: cover
}

.natal>.container .heading {
    text-align: center;
    margin: 0 auto;
    max-width: 670px
}

.natal .paragraph {
    max-width: 800px;
    text-align: center;
    margin: 20px auto 0
}

.natal .btn {
    margin: 40px auto
}

.zodiac-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px
}

.zodiac-sign-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
    width: 80px
}

.zodiac-sign-sm:hover {
    transform: translateY(-5px)
}

.zodiac-sign-sm.selected {
    transform: translateY(-5px)
}

.zodiac-sign-sm img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 5px
}

.zodiac-sign-sm span {
    font-size: 16px;
    text-align: center;
    color: #333
}

.result-container {
    display: none;
    padding: 20px;
    border-radius: 10px;
    background-color: #eeebe6;
    margin-top: 20px;
    background-image: url(/assets/img/bg.png)
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px
}

.result-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%
}

.compatibility-meter {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden
}

.compatibility-value {
    height: 100%;
    border-radius: 10px;
    transition: width .5s ease
}

.compatibility-percent {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0
}

.compatibility-text {
    margin-bottom: 10px
}

.compatibility-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px
}

.compatibility-aspect {
    width: 48%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05)
}

.compatibility-aspect h4 {
    margin-top: 0;
    color: #333
}

.select-text {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    color: #666
}

.reset-btn {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #ec4400;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease
}

.reset-btn:hover {
    background-color: #5a4abf
}

@media screen and (max-width:1024px) {
    .sidebar #block-3 {
        display: none
    }

    .blog-inner {
        gap: 24px;
        flex-wrap: wrap
    }

    .blog-inner .sidebar {
        width: 100%;
        order: 1
    }

    .blog-page-wrapper {
        width: 100%;
        order: 2;
        gap: 24px
    }

    .sidebar .wp-block-search__inside-wrapper {
        margin-top: 16px
    }

    .sidebar .wp-block-search__label {
        font-size: 14px
    }

    .wp-block-tag-cloud a {
        padding: 4px 6px;
        font-size: 11px !important
    }

    .big-heading {
        padding: 32px 0
    }

    .breadcrumbs {
        margin-top: 32px
    }

    .sidebar .wp-block-heading {
        font-size: 14px
    }

    .ya-share2.desktop {
        display: none
    }

    .ya-share2.mobile {
        display: block
    }

    .sidebar section {
        padding: 12px 16px
    }

    .widget {
        margin: 0 0 .75em
    }

    .subscribe__wrapper .wpcf7-form-control-wrap {
        width: 60%
    }

    .subscribe__wrapper form p {
        gap: 10px
    }

    .subscribe__wrapper .btn {
        width: calc(40% - 10px)
    }
}

@media screen and (max-width:920px) {
    .zodiacs-sm .zodiac__item img {
        max-width: 45px
    }

    .header__nav .sub-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        visibility: visible;
        background-color: transparent;
        position: static;
        margin: 0;
        padding-bottom: 0
    }

    .breadcrumbs span[property=name] {
        display: inline-block;
        padding: 0;
        margin-top: -3px;
        vertical-align: middle;
        max-width: 60px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .header__nav ul {
        gap: 16px
    }
}

@media (max-width:768px) {
    .zodiac-sign-sm {
        width: 70px
    }

    .zodiac-sign-sm img {
        width: 50px;
        height: 50px
    }

    .compatibility-aspect {
        width: 100%
    }
}

@media screen and (max-width:640px) {
    .blog-page-wrapper .blog__item {
        width: 100%
    }
}

@media screen and (max-width:480px) {
    .zodiacs-sm .zodiac__item {
        width: calc(25% - 7.5px);
        gap: 6px
    }

    .zodiacs-sm .zodiac__wrapper {
        gap: 10px
    }

    .zodiacs-sm .zodiac__item .title {
        font-size: 12px
    }

    .zodiacs-sm .zodiac__item img {
        max-width: 35px
    }

    .header .slide-menu .nav-overlay {
        padding: 50px 30px;
        font-size: 16px
    }

    .article-content {
        padding: 30px 16px 50px
    }

    .article h2.wp-block-heading {
        font-size: 26px;
        line-height: 1.3
    }

    .article ol,
    .article ul {
        padding-left: 25px
    }

    .common-chars .col {
        width: 100%
    }

    .common-chars .row {
        flex-wrap: wrap
    }
}
