body {
    /*background-color: #ecf2e7 !important;*/
}

section {
    margin-bottom: 90px;
}

@media(min-width: 769px){
    .mobile-menu{
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        margin-bottom: 40px;
    }
}

.section-title {
    font-size: 40px;
    font-family: 'Cormorant', serif;
    color: #0a2c0a;
}


.main-screen {
    background: #d3dfc9;
}

.main-screen-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

.main-screen-wrap > div {
    width: 50%;
}

.main-screen-img-wrap {
    display: flex;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
}

.main-screen-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;

}

.main-screen-text-wrap {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.main-screen-title {
    font-size: 67px;
    line-height: 67px;
    font-family: 'Cormorant', serif;
    font-weight: 500;
    max-width: 580px;
}

.main-screen-text-wrap .section-subtitle {
    margin-top: 10px;
}

.main-screen-subtitle {
    font-size: 25px;
    font-weight: 300;
    margin-top: 30px;
}

.main-screen-btns {
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-top: 40px;
    gap: 20px;
}

.main-screen-btn {
    background: #ddafbb;
    color: #0a2c0a;
    font-weight: 300;
    border-radius: 14px;
    padding: 10px 20px;
    text-decoration: none;
    transition: .1s;
}

.main-screen-btn:hover {
    opacity: .8;
}

@media (max-width: 768px) {
    .main-screen-wrap {
        flex-direction: column;
    }

    .main-screen-wrap > div {
        width: 100%;
    }

    .main-screen-img-wrap {
        order: -1;
    }

    .main-screen-text-wrap {
        padding-top: 20px;
        padding-bottom: 40px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }

    .main-screen-title {
        font-size: 40px;
        line-height: 45px;
        font-weight: 400
    }

    .main-screen-btns {
        justify-content: space-between;
    }
}

.about-me{
    margin-bottom: 60px;
}

.about-me-row {
    background: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.about-me-img-wrap {
    flex: 1;
    margin-left: -30px;
    overflow: hidden;
}

.about-me-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-me-text-wrap {
    flex: 1;
    padding: 0 50px;
}

.about-me-title {
    margin-bottom: 30px;
}

.about-me-text {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.about-me-btn-wrap {
    margin-top: 50px;
}

.about-me-btn {
    display: flex;
    width: fit-content;
    text-decoration: none;
    border: 1px solid #0a2c0a;
    border-radius: 14px;
    padding: 10px 18px 8px;
    font-size: 16px;
    color: #0a2c0a;
    transition: .1s;
}


.about-me-btn:hover {
    background-color: #0a2c0a;
    color: #fff;
}


@media (max-width: 768px) {
    .about-me > .container {
        padding: 0;
        margin: 0;
    }

    .about-me-row {
        flex-direction: column;
    }

    .about-me-row > div {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }

    .section-subtitle {
        margin-top: 15px;
    }

    .about-me-title {
        font-size: 36px;
        margin: 5px 0 20px !important;
    }

    .about-me-btn-wrap {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
}

.work-formats{
    margin: 60px 0;
}
.work-formats .section-subtitle {
    text-align: center;
}

.work-formats .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
}

.work-formats-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.work-format {
    background: #d3dfc9;
    padding: 32px 38px;
    width: calc((100% - (30px * 2)) / 3);
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-format-title {
    font-size: 34px;
    line-height: 1.2;
    font-family: 'Cormorant', serif;
    color: #0a2c0a;
    text-align: center;
    margin-bottom: 8px;
}

.work-format-price {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    margin: 10px 0 20px;
    font-weight: 700;
    color: #0a2c0a;
    width: fit-content;
}

.work-format-price::after {
    content: "";
    position: absolute;
    inset: -1px -1px;
    border: 2px solid currentColor;
    border-radius: 50% / 50%;
    transform: rotate(-2deg);
}


.work-format-price-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.work-format-format {
    color: #f5c9d0;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 10px;
}

.work-format-description {
    text-align: center;
    max-width: 420px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: #0a2c0a;
}

.work-format-accordions {
    margin-top: 28px;
    border-top: 1px solid #fff;
}

.work-format-accordion {
    margin: 0;
    border-bottom: 1px solid #fff;
}

.work-format-accordion:first-child {
    margin-top: 0;
    border-top: none;
}

.work-format-accordion-btn {
    background: none;
    color: white;
    cursor: pointer;
    padding: 16px 0 16px 28px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
}

.work-format-btn-wrap.work-format-btn-wrap--double{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.work-format-accordion-btn::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 44%;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.work-format-accordion.open .work-format-accordion-btn::before {
    transform: translateY(-50%) rotate(225deg);
    top: 50%;
}

.work-format-accordion-content {
    padding: 0 0 14px 0px;
    overflow: hidden;
    margin-top: 0;
    border-radius: 5px;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.work-format-accordion-content p {
    margin: 10px 0;
}

.work-format-accordion-content ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.work-format-accordion-content li {
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.work-format-accordion-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url("../img/icon-check.svg") no-repeat center / contain;
}

.work-format-btn-wrap {
    text-align: center;
    margin-top: auto;
    padding-top: 28px;
    width: 100%;
}

.work-format-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.work-format-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid #0a2c0a;
    border-radius: 14px;
    padding: 8px 0;
    width: 100%;
    font-size: 16px;
    color: #0a2c0a;
    transition: .1s;
    max-width: 100%;
}

.work-format-btn:hover {
    background-color: #0a2c0a;
    color: #fff;
}

@media (max-width: 768px) {
    .work-formats .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 36px;
    }

    .work-format {
        width: 100%;
    }
}


.my-approach {
    padding: 60px 0;
    margin: 0;
    background: #0b220a;
    color: #fff;
}

.my-approach .section-subtitle {
    text-align: center;
}

.my-approach .section-title {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-size: 48px;
}

.my-approach-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.approach-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.approach-card p {
    font-size: 18px;
}

.approach-card img {
    width: 80px;
}

@media (max-width: 768px) {
    .my-approach .section-title {
        font-size: 36px;
    }

    .my-approach-row {
        flex-direction: column;
        gap: 30px;
    }

    .approach-card p {
        font-size: 20px;
    }

    .approach-card img {
        width: 110px;
    }
}

.free-pdf {
    position: relative;
    background: #f5c9d0;
    margin: 0;
}

.free-pdf-wrap {
    padding: 60px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.free-pdf-content {
    max-width: 700px;
}

.free-pdf-tag {
    padding: 6px 10px 4px;
    width: fit-content;
    color: #0b220a;
    border: 2px solid #0b220a;
    border-radius: 10px;
}

.free-pdf-content .section-subtitle {
    margin-top: 20px;
}

.free-pdf-title {

}

.free-pdf-subtitle {
    font-size: 16px;
}

.free-pdf-btn-wrap {
    margin-top: 30px;
}

.free-pdf-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    color: #f5c9d0;
    background: #0b220a;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 15px;
    transition: .1s;
}

.free-pdf-btn:hover {
    opacity: .8;
}

.free-pdf-bg {
    width: 100%;
    /* margin-top: -25px; */
    z-index: 0;
    position: relative;
}

@media (max-width: 768px) {
    .free-pdf-wrap {
        flex-direction: column;
        padding-bottom: 0;
    }

    .free-pdf-tag {
        margin: 0 auto;
    }

    .free-pdf-content {
        text-align: center;
    }

    .free-pdf-title {
        margin: 20px 0;
        font-size: 36px;
    }

    .free-pdf-bg {
        margin-top: 15px
    }
}

.reviews {
    padding: 10px 0 60px 0;
    margin: 0;
    background: #d3dfc9;
}

.reviews .section-subtitle {
    text-align: center;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
}

.review-item {
    background: #f0f5ed;
    padding: 40px;
    min-height: 210px;
}

.review-item-author {
    margin-top: 15px;
    text-align: end;
    font-style: italic;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .reviews .section-title {
        font-size: 36px;
    }
}

.blog {
    background: #fff;
    padding: 60px 0;
    margin: 0;
}

.blog .section-subtitle {
    text-align: center;
}

.blog .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
}

.blog-previews {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.blog-preview {
    width: calc(100% / 3 - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-preview-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-preview-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-preview-title {
    text-align: center;
}

.blog-preview-title-link {
    color: #000;
    text-decoration: none;
}

.blog-preview-title-link:hover {
    color: #000;
    text-decoration: none;
}

.blog-preview-description {
    text-align: center;
}

.blog-preview-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.blog-preview-btn {
    color: #7f8462;
    font-size: 16px;
    text-decoration: none;
}

.blog-btn-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blog-btn {
    display: flex;
    width: fit-content;
    text-decoration: none;
    border: 1px solid #0a2c0a;
    border-radius: 14px;
    padding: 15px 40px;
    font-size: 16px;
    color: #0b220a;
    transition: .1s;
}


.blog-btn:hover {
    background-color: #0b220a;
    color: #fff;
}

@media (max-width: 768px) {
    .blog .section-title {
        font-size: 36px;
    }

    .blog-previews {
        flex-direction: column;
    }

    .blog-preview {
        width: 100%;
    }
}

.contacts {
    background: #0b220a;
    padding: 60px 0;
    margin: 0;
}

.contacts-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

.contacts-img-wrap {
    width: 40%;
    display: flex;
    overflow: hidden;
}

.contacts-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contacts-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts .section-subtitle {
    color: #f5c9d0;
}

.contacts-title {
    color: #f5c9d0;
}

.contacts-subtitle {
    font-size: 18px;
    color: #f5c9d0;
    margin-top: 20px;
}

.contacts-btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
}

.contacts-btns img, .contacts-btns i {
    font-size: 28px;
    width: 30px;
    color: #f5c9d0;
}

@media (max-width: 768px) {
    .contacts-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .contacts-wrap > div {
        width: 100%;
    }
}

.bepaid{
    margin: 0;
    padding: 30px 0;
    background: #000;
    text-align: center;
}

.bepaid img{
        max-width: 100%;
    }

@media (max-width: 768px){
    .bepaid img{
        width: ;
    }
}