@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #2D343C;
    background: #f3f2f7;
    padding-top: 80px;

}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

* {
    outline: none;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3 !important;
}

h2 {
    font-size: 48px;
}

/* header */
.header-area {
    padding: 14px 60px;
    font-size: 15px;
    font-weight: 300;
    background: #fff;
}

header {
    background: #fff;
    width: 100% !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

ul#menu-glavnoe-menyu {
    justify-content: space-evenly;
}

.burger {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    padding: 2rem 1rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    left: 0;
}

.mobile-nav {
    list-style: none;
    padding-left: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.burger-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.button {
    background: #0097A7;
    border-radius: 10px;
    color: #fff;
    transition: 0.2s;
}

.button-sm {
    padding: 8px 10px;
    font-size: 15px;
}

.button-lg {
    padding: 14px 48px;
    font-size: 18px;
}

.button:hover {
    background: #008393;
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
}

.button:disabled {
    background: #F2F4F7;
    color: #CDD2D8;
    cursor: not-allowed;
}

.mail.tryit .button {
    margin-left: 24px;
}

.mail.tryit {
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

a.open-consultation {
    cursor: pointer;
}

/* background */
body::before,
body::after {
    content: "";
    position: fixed;
    width: 50%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

body::before {
    left: -260px;
    background-position: left top;
    bottom: -137px;
    background: url(/wp-content/uploads/2025/04/bg-2-1.webp) repeat-y top;
}

body::after {
    right: -260px;
    background-position: right top;
    top: 0;
    background: url(/wp-content/uploads/2025/04/bg-1-1.webp) repeat-y top;
}

/* contact form */
.agree,
span.wpcf7-spinner {
    display: none
}

.wpcf7 form.sent .wpcf7-response-output {
    padding: 6px 19px;
    font-size: 15px;
    background: #6773800D;
    color: #677380;
    width: max-content;
    margin: auto;
    border: none;
    border-radius: 10px;
}

.wpcf7-text {
    background: #F2F3F780;
    padding: 13px 20px 14px;
    border: 1px solid #BCC3D080;
    border-radius: 8px;
    color: #626C77;
    margin-bottom: 20px;
    width: 100%;
}

.wpcf7-submit {
    background: #0097A7;
    border-radius: 10px;
    color: #fff;
    transition: 0.2s;
    padding: 14px 48px;
    font-size: 18px;
    border: 0;
    width: 100%;
    margin-top: -30px;
}

.wpcf7-submit:hover {
    background: #008393;
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
}

.wpcf7-submit:disabled {
    background: #F2F4F7;
    color: #CDD2D8;
    cursor: not-allowed;
}

span.wpcf7-list-item {
    margin-left: 0;
    font-size: 12px;
    color: #626C77;
    margin-top: 20px;
}

span.wpcf7-list-item a {
    color: #0097A7;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 19px;
    height: 19px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #d2d6e1;
    transition: all 0.2s ease;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label.checked::before {
    background-color: #0098a7;
    border-color: #0098a7;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label.checked::after {
    opacity: 1;
}

/* модальное окно */

.consultation-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.consultation-modal {
    background: #fff;
    max-width: 90%;
    width: 421px;
    padding: 40px 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
}

.consultation-modal h2 {
    line-height: 1.1;
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
}

.consultation-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: 0.2s;
}

.consultation-close:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* blog */

.container {
    max-width: 1200px;
}

p#breadcrumbs {
    font-size: 15px;
    font-weight: 300;
    color: #838E9E;
    margin: 32px 0 60px;
}

span.breadcrumb_last {
    color: #2D343C;
}

.blog-header {
    margin-bottom: 60px;
}

.blog-header .row {
    align-items: center;
}

.blog-header img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.blog-header p {
    font-size: 24px;
}

.blogpage {
    padding: 0 20px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
}

.blog-item.half {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.blog-item.full {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.blog-item.full img {
    width: 100%;
}

.blog-item.full .wrapper {
    display: flex;
    width: 100%;
    height: 259px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.blog-item.half .wrapper {
    display: flex;
    width: 100%;
    height: 269px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 24px;
}

.blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-category {
    margin-bottom: 10px;
    font-size: 16px;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}

.blog-excerpt {
    font-size: 20px;
    line-height: 1.5;
}

.blog-category.biznes-nauka,
.related-meta .biznes-nauka {
    color: #F95A05;
}

.blog-category.obnovleniya,
.related-meta .obnovleniya {
    color: #05C46B;
}

.blog-category.kejsy,
.related-meta .kejsy {
    color: #9E05C4;
}

.blog-category.kak-byt,
.related-meta .kak-byt {
    color: #007BFF;
}

.blog-filter {
    margin-top: 60px;
    margin-bottom: 24px;
    font-size: 16px;
}

.blog-filter .filter-button {
    padding: 5px 10px;
    margin-right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #CDD2D8;
    border: 1px solid #CDD2D8;
    border-radius: 20px;
}

.blog-filter .filter-button.active {
    background: #fff;
    color: #061C3D;
    padding-left: 35px;
}

button.filter-button.active:before {
    content: url(/wp-content/uploads/2025/04/icon.png);
    margin-right: 8px;
    position: absolute;
    margin-top: 2px;
    margin-left: -23px;
}

.row.callme {
    background: #fff;
    margin: 60px 0px 0 0;
    padding: 60px 102px 0;
    border-radius: 20px;
}

.row.callme h3 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 20px;
}

.callme img {
    margin: 24px 0px -1px -10px;
    width: 456px;
    max-width: 100%;
}

.callme col-6:last-child {
    margin-left: 20px;
}

button#load-more {
    margin-top: 24px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

button#load-more:hover {
    background: #eeeeee;
    transition: 0.3s;
}

img.mob {
    display: none;
}

/*single*/

.single-header .row {
    align-items: flex-start;
}

.single-header p.datetime {
    color: #838E9E;
    font-size: 15px;
    font-weight: 300;
}

.single-header img {
    border-radius: 20px;
}

.info-box {
    background: #393A4D;
    border-radius: 20px;
    color: #fff;
    padding: 40px;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.info-box img {
    max-width: 100%;
}

.info-box .infoheader {
    font-size: 36px;
    line-height: 1.2;
}

.info-box .infodesc {
    margin-bottom: 25px;
    font-weight: 300;
}

.info-box .button-sm {
    font-size: 18px;
    padding: 8px 16px;
}

.related-articles {
    margin-top: 60px;
}

.related-grid {
    display: flex;
    gap: 20px;
}

.related-item {
    width: 33%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 24px;
}

.related-item .thumb {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    height: 269px;
}

.related-item .thumb img {
    min-height: 100%;
    width: auto;
}

.related-item .related-meta {
    margin-top: 24px;
}

.related-item .title {
    font-weight: 700;
    font-size: 24px;
    margin: 10px 0;
}

.related-item .excerpt {
    font-size: 20px;
}


/* footer */
footer.footer {
    background: #061C3D;
    padding: 60px;
    margin-top: 156px;
}

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

.menu-menyu-v-futere-container {
    margin-top: 10px;
}

ul#menu-menyu-v-futere {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
}

.socials a:not(:last-child) {
    margin-right: 13px;
}

footer hr {
    color: #F9F9F9;
    margin: 40px 0 29px;
}

footer .rules {
    font-size: 16px;
    color: #F9F9F9;
    opacity: 0.7;
    font-weight: 300;
}

footer .rules a:not(:last-child) {
    margin-right: 14px;
}

footer .address {
    font-size: 16px;
    color: #F9F9F9;
    opacity: 0.7;
    font-weight: 300;
}


@media screen and (min-width:1919px) {
    footer.footer {
        padding: 60px 240px;
    }
}

@media screen and (max-width:1399px) {
    .elementor-container {
        max-width: 1140px !important;
    }

    footer.footer {
        padding: 60px;
    }
}

@media screen and (max-width:1199px) {
    .elementor-container {
        max-width: 936px !important;
    }

    .foot-menu {
        margin-top: 20px;
    }

    ul#menu-menyu-v-futere {
        justify-content: space-between;
    }

    footer hr {
        margin-top: 24px;
    }

    footer.footer {
        padding: 60px 10px;
    }
    .elementor-element-0310fcb, 
    .elementor-element-437dccc,
    .elementor-element-fcd9dc1{
        height: 68px;
    }
}

@media (max-width: 1024px) {
    .header-area {
        padding: 14px 10px;
    }

    footer.footer {
        padding: 10px;
    }

    .header-menu,
    .header-area .textwidget {
        display: none !important;
    }

    .tryit {
        width: 74.67%;
    }

    .burger {
        display: block !important;
    }

    .mobile-menu {
        display: block;
    }

    footer.footer {
        padding: 60px 10px;
    }

    h1 {
        font-size: 48px;
    }

    body::before,
    body::after {
        width: 75%;
    }

    .row.callme {
        padding: 40px;
    }

    .row.callme .col-6:first-child {
        width: 55%;
    }

    .row.callme .col-6:last-child {
        width: 45%;
    }

    .blog-header .row {
        flex-direction: column-reverse;
    }

    .blog-header .col-6,
    .blog-header .col-4,
    .blog-header .col-8 {
        width: 100%;
    }

    .blog-header img {
        max-width: 100%;
        height: auto;
        width: 689px;
        margin: auto;
    }

    .blog-header .image-area {
        text-align: center;
        margin-bottom: 24px;
    }

    .blog-header h1 {
        font-size: 48px;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-filter {
        margin-top: 40px;
        margin-bottom: 12px;
    }

    .blog-filter .filter-button {
        margin-bottom: 12px;
    }

    .info-box {
        margin: 24px 0;
    }

    p#breadcrumbs {
        margin: 0 0 40px;
    }
}

@media screen and (max-width:991px) {
    .elementor-container {
        max-width: 694px !important;
    }

    .tryit {
        width: 49.67%;
    }

    .rules {
        margin-bottom: 24px;
    }

    .elementor-element-ea0e716 .elementor-heading-title {
        font-size: 36px;
    }

    .elementor-2 .elementor-element.elementor-element-1dc48bd,
    .elementor-2 .elementor-element.elementor-element-fa37930,
    .elementor-2 .elementor-element.elementor-element-e7d3acd {
        font-size: 18px !important;
    }

    .tariff-slider .slick-track {
        display: flex !important;
    }

    .tariff-slider .slick-slide {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto !important;
        display: flex !important;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .tariff-slider .e-con.e-child {
        width: 100% !important;
        display: flex !important;
        flex-direction: column;
        padding: 40px;
        border-radius: 20px;
        margin-left: 10px;
    }

    .tariff-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0 -8px;
    }

    .elementor-element-480af36 img,
    .elementor-element-726ee7e img,
    .elementor-element-468c8d2 img {
        display: inline-block;
    }

}

@media screen and (max-width:768px) {
    .tryit {
        width: 49.67%;
    }

    .consultation-modal-overlay {
        background-color: #fff;
    }

    .consultation-modal {
        max-width: 100%;
        width: 100%;
        height: 100%;
        display: flex;
        padding: 40px 20px;
    }

    body::before,
    body::after {
        display: none;
    }

    .elementor-element-cb6f43c .elementor-image-box-wrapper,
    .elementor-element-5ce5edb .elementor-image-box-wrapper,
    .elementor-element-f2b5793 .elementor-image-box-wrapper {
        display: flex !important;
        text-align: left !important;
    }

    .elementor-element-cb6f43c .elementor-image-box-wrapper figure,
    .elementor-element-5ce5edb .elementor-image-box-wrapper figure,
    .elementor-element-f2b5793 .elementor-image-box-wrapper figure {
        margin-right: 20px !important;
    }

    .blog-header h1 {
        font-size: 36px;
    }

    .blog-header h1 br {
        display: none;
    }

    .blog-item.half {
        width: 100%;
    }

    .blog-item.full {
        flex-direction: column;
        gap: 0px;
    }

    .row.callme .col-6:first-child,
    .row.callme .col-6:last-child {
        width: 100%;
        text-align: center;
    }

    .row.callme h3 br,
    .row.callme p br {
        display: none;
    }

    .row.callme h3 {
        font-size: 32px;
    }

    .callme img {
        margin-top: 12px;
    }

    .callme .wpcf7 {
        margin-top: 24px;
    }

    img.mob {
        display: inline;
    }

    img.desc {
        display: none;
    }

    .blog-item.full .blog-content {
        margin-top: 24px;
    }

    .related-grid {
        width: 100%;
        overflow: hidden;
    }

    .related-item {
        width: 48px;
    }
}

@media screen and (max-width:575px) {
    .tryit {
        display: none !important;
    }

    ul#menu-menyu-v-futere {
        flex-direction: column;
    }

    footer .rules {
        display: flex;
        flex-direction: column;
    }

    footer.footer {
        padding: 40px 10px;
    }

    .foot-logo,
    footer.footer .socials {
        margin-bottom: 24px;
    }

    footer hr {
        margin: 14px;
    }

    .foot-menu {
        margin-top: 0;
    }

    .foot-menu li:not(:last-child) {
        margin-bottom: 14px;
    }

    footer .rules a:first-child,
    footer .rules {
        margin-bottom: 14px;
    }

    .elementor-2 .elementor-element.elementor-element-5e577a3 img {
        max-width: 100%;
    }

    .elementor-element-3d2a8a1 .elementor-heading-title {
        font-size: 26px !important;
    }

    .elementor-element-7988cd6,
    .elementor-element-a8ddd0f,
    .elementor-element-c029b04 a.elementor-button,
    button.show-more-timeline {
        width: 100%;
    }

    button.show-more-timeline {
        margin-left: 0 !important;
    }

    .elementor-element.elementor-element-e6cf9ec {
        font-size: 18px !important;
    }

    .elementor-element.elementor-element-417ac75>.elementor-widget-container {
        margin: 30px 20px !important;
    }

    .elementor-element-029e5ff,
    .timeline-gradient-line,
    .timeline-dot {
        display: none !important;
    }

    .elementor-element-bed9325 {
        padding: 60px 15px !important;
    }

    .elementor-element-ad9e9c1,
    .elementor-element-04b39fd,
    .elementor-element-600ca7e,
    .elementor-element-ab9c60c {
        font-size: 32px !important;
    }

    .elementor-element-26e00ae .elementor-heading-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .timeline-item {
        margin-left: 0 !important;
    }

    .timeline {
        padding-left: 0 !important;
    }

    .blog-header h1 {
        font-size: 26px;
    }

    .blog-header p {
        font-size: 18px;
    }

    .callme {
        padding: 20px;
    }

    .row.callme h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .related-grid {
        flex-direction: column;
    }

    .related-item {
        width: 100%;
    }
    .info-box {
        padding: 20px 20px 33px;
    }
    h2.relatedheader{
        font-size: 28px;
    }
    .info-box .button-sm {
        font-size: 18px;
        padding: 8px 7px;
    }
}