/*
Theme Name: Terri Franchise Theme
Theme URI: https://terrifr.ru
Author: Terri Group
Author URI: https://terrifr.ru
Description: Classic WordPress theme for the TERRI franchise landing page with reusable base architecture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: terri-franchise
*/

/*
 * Main styles are loaded from assets/css/main.css.
 */


:root {
    --accent: #20b099;
    --header-bg: #313133;
    --header-text: #ffffff;
    --header-link: #bcbcbc;
    --container-width: 1720px;
}


body {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;

}


html {
    scroll-behavior: smooth;
}

::selection {
    background: #20b099;
    color: #ffffff;
}

::-moz-selection {
    background: #20b099;
    color: #ffffff;
}


a,
button,
[role="button"],
input,
textarea,
select {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active,
a:focus-visible,
button:focus,
button:active,
button:focus-visible,
[role="button"]:focus,
[role="button"]:active,
[role="button"]:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease, border-color .2s ease, background-color .2s ease;
}

a:hover {
    color: #20B099;
    text-decoration: none;
}

a:visited,
a:focus,
a:active {
    text-decoration: none;
}

.blur {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 99;
    background: #4d4d4e9c;
    opacity: 1;
    backdrop-filter: blur(7px);
}



.container {
    width: 1250px;
    margin: 0 auto;
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 100;
/*    background: var(--header-bg);*/
    color: var(--header-text);
}

.header-inner {
	min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: normal;
    gap: 0;
    z-index:100;
    position: relative;
}

.site-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: 120px;
    height: auto;
}

.site-logo-text {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: end;
    padding-right: 25px;
}

.menu-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-list li {
    margin: 0;
    padding: 0;
    padding-right: 20px;
}

.menu-list a {
	color: #bcbcbc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    padding-right: 30px;
    transition: color 0.2s ease;
    font-family: Montserrat;
}

.menu-list li:last-child a {
    padding-right: 0;
}

.menu-list a:hover,
.menu-list a:focus-visible {
    color: #20b099;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    padding-right: 30px;
    transition: color 0.2s ease;
    font-family: Montserrat;
}



.header-phone:hover,
.header-phone:focus-visible {
    color: #20b099;
}

.header-socials,
.mobile-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
        background: #07594d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    opacity: 0.92;
}

.social-link svg {
    width: 28px;
    height: 28px;
	fill: #20b099;
}

.social-link svg:hover{
	fill: #ffffff;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 42px;
    height: 4px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: #20b099;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: #2b2b2d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-inner {
    padding-top: 22px;
    padding-bottom: 28px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu-list a {
    color: #bcbcbc;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus-visible {
    color: #20b099;
}

.mobile-phone {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
}

.mobile-phone:hover,
.mobile-phone:focus-visible {
    color: #20b099;
}

.site-header.is-open .mobile-menu {
    display: block;
}

@media (max-width: 1400px) {
    .menu-list a {
        font-size: 21px;
        padding-right: 24px;
    }

    .header-phone {
        font-size: 20px;
    }
}

@media (max-width: 1180px) {
    .main-nav,
    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }
}

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

@media (max-width: 767px) {
    .container {
        width: min(100% - 24px, var(--container-width));
    }


    .hero-title {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.3;
}

    .site-logo {
	    flex: 0 0 auto;
	    display: inline-flex;
	    align-items: center;
	    text-decoration: none;
	    position: absolute;
/*	    left: 15px;*/
	}


    .header-inner {
        min-height: 60px;
        gap: 16px;
    }

    .site-logo img {
        width: 100px;
    }

    .header-actions {
		gap: 14px;
        position: absolute;
        right: 0px;
    }

    .header-socials {
        gap: 12px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 21px;
        height: 21px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .menu-toggle span {
        width: 32px;
		height: 2px;
        margin-bottom: 10px;
    }

    .site-header.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .mobile-menu-list a,
    .mobile-phone {
		font-size: 15px;
        font-family: Montserrat;
        font-weight: 300;
    }
}




.hero {
    position: relative;
    overflow: hidden;
/*    min-height: 920px;*/
    background: #060606;
    color: #ffffff;
    padding: 110px 0 10px;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg {
/*    background-image: url("../img/main/main_hero.webp");*/
	background-image: url(assets/img/main/main_hero.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.90) 28%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.10) 22%, rgba(0, 0, 0, 0.26) 100%);
}

.hero-inner {
    position: relative;
    z-index: 4;
}

.hero-content {
    position: relative;
    max-width: 1180px;
    padding-top: 110px;
}

.hero-top-badges {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 760px;
}

.hero-top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: auto;
    padding: 7px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 20px;
    overflow: hidden;

}

.hero-top-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero-top-badge img {
    display: block;
    max-width: 100%;
    /* max-height: 100px; */
    width: auto;
    height: auto;
    width: 100px;
    height: auto;
}

.hero-top-badge a img:nth-child(1) {
	width: 170px;
}

.hero-letters {
    position: absolute;
    left: 0;
    bottom: 118px;
    width: 140px;
    height: 300px;
    z-index: 3;
    pointer-events: none;
    background: rgba(110, 110, 110, 0.14);
}

.hero-letter {
    position: absolute;
    left: 16px;
    width: 86px;
    height: auto;
    opacity: 0.22;
    will-change: transform;
}

.hero-letter--t {
    top: 0;
    animation: heroFloatT 8s ease-in-out infinite alternate;
}

.hero-letter--g {
    top: 120px;
    animation: heroFloatG 9.5s ease-in-out infinite alternate;
}

@keyframes heroFloatT {
    0% { transform: translateY(0); }
    100% { transform: translateY(28px); }
}

@keyframes heroFloatG {
    0% { transform: translateY(0); }
    100% { transform: translateY(38px); }
}

.hero-eyebrow {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-title {
    margin: 0;
    max-width: 1060px;
    font-size: 40px;
    line-height: 1.4em;
    font-weight: 800;
    /* letter-spacing: -0.03em; */
    color: #ffffff;
    font-family: Montserrat;
}

.hero-lead {
    margin: 34px 0 0;
    max-width: 790px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-top: 8px;
    max-width: 1500px;
}

.hero-metric {
    min-width: 0;
}

.hero-metric-value {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 70px;
    color: #20b099;
}

.hero-metric-prefix {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: Montserrat;
}

.hero-counter {
    font-size: 36px;
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #20b099;
    font-family: Montserrat;
}

.hero-metric-suffix {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: Montserrat;
}

.hero-metric-line {
    width: 100%;
    height: 2px;
    margin-top: 18px;
    background: #20b099;
}

.hero-metric-label {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    margin-top: 56px;
}

.button--hero {
    min-width: 318px;
    min-height: 74px;
    padding: 10px 44px;
    border-radius: 1015px;
    border: 2px solid #20b099;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button--hero:hover,
.button--hero:focus-visible {
    text-decoration: none;
    background: #20b099;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(32, 176, 153, 0.22);
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 36px;
    margin: 42px 0 0;
    padding: 0;
    max-width: 820px;
    list-style: none;
}

.hero-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: #ffffff;
}

.hero-bullets li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #20b099;
    transform: translateY(-50%);
}

.hero-note {
    margin: 28px 0 0;
    max-width: 860px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
}

/* Появление */
.hero-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-reveal--badges { transition-delay: .1s; }
.hero-reveal--offer { transition-delay: .25s; }
.hero-reveal--metrics { transition-delay: .45s; }
.hero-reveal--actions { transition-delay: .62s; }
.hero-reveal--bullets { transition-delay: .75s; }
.hero-reveal--note { transition-delay: .9s;     padding-top: 70px;}

/* Планшет */
@media (max-width: 1366px) {
    .hero {
        min-height: 860px;
        padding: 100px 0 64px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-lead {
        font-size: 28px;
    }

    .hero-counter {
        font-size: 62px;
    }

    .hero-metric-prefix,
    .hero-metric-suffix {
        font-size: 34px;
    }

    .hero-bullets li {
        font-size: 19px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 88px 0 56px;
    }

    .hero-top-badges {
        position: relative;
        top: auto;
        right: auto;
        justify-content: flex-start;
        margin-bottom: 34px;
        max-width: 100%;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        max-width: 760px;
        font-size: 48px;
    }

    .hero-lead {
        font-size: 24px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 6px;
        max-width: 700px;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .hero-letters {
        width: 108px;
        bottom: 84px;
    }

    .hero-letter {
        width: 72px;
    }
}

/* Мобилка */
@media (max-width: 767px) {
	.hero {
        padding: 72px 0 42px;
    }

    .hero-overlay {
                   background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.90) 28%, rgba(0, 0, 0, 0.68) 61%, rgba(0, 0, 0, 0.36) 78%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.10) 22%, rgba(0, 0, 0, 0.26) 100%);    
               }
      
    .hero-top-badges {
        gap: 0px;
        margin-bottom: 24px;
    }

    .hero-top-badge {
        width: calc(25% - 5px);
        min-height: 70px;
        padding: 8px;
        border-radius: 18px;
    }

    .hero-top-badge img {
    	width: auto;
        max-height: 68px;
    }

    .hero-letters {
        width: 78px;
        height: 240px;
        bottom: 86px;
        background: rgba(110, 110, 110, 0.16);
    }
    .hero-top-badges {
        gap: 0px;
        margin-bottom: 24px;
        gap: 5px;
    }

    .hero-letter {
        left: 10px;
        width: 56px;
    }

    .hero-letter--g {
        top: 84px;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-title {
        max-width: 100%;
        font-size: 33px;
        line-height: 1.12;
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.35;
    }

    .hero-metrics {
		margin-top: 30px;
        gap: 22px;
    }

    .hero-metric-value {
        min-height: auto;
        gap: 8px;
    }

    .hero-counter {
        font-size: 32px;
    }

    .hero-metric-prefix,
    .hero-metric-suffix {
        font-size: 18px;
    }

    .hero-metric-label {
        margin-top: 14px;
        font-size: 16px;
    }

    .hero-metric-line {
        margin-top: 12px;
    }

    .hero-actions {
        margin-top: 34px;
    }

    .button--hero {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        padding: 18px 22px;
        font-size: 16px;
    }

    .hero-bullets {
        gap: 14px;
        margin-top: 28px;
    }

    .hero-bullets li {
        font-size: 14px;
        line-height: 1.45;
        padding-left: 16px;
    }

    .hero-note {
        margin-top: 20px;
        font-size: 10px;
        line-height: 1.45;
    }
}



#franchisees{
    background: #262626;

}


@media (max-width: 500px) {
    .hero-title {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.12;
    }

}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        margin: 0 auto;
    }
}





.terri-why {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: #2f2f31;
    overflow: hidden;
}


.terri-why .container:before{
    display:none;

}
.terri-why__inner {
/*    width: min(1320px, calc(100% - 40px));*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
/*    gap: 72px;*/
    align-items: stretch;
}

.terri-why__left,
.terri-why__right {
    min-width: 0;
}

.terri-why__left {
    position: relative;
    display: flex;
    align-items: center;
/*    min-height: 760px;*/
}

.terri-why__left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(assets/img/main/Group-6-1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    margin-right: 130px;
}

.terri-why__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.terri-why__title,
.why-title,
#about h2 {
    max-width: 1060px;
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 40px;
    line-height: 1.4em;
    font-weight: 800;
    color: #fff;
}

.terri-why__title span {
    display: inline-block;
    padding: 0.02em 0.18em 0.08em;
    background: #2ed8b1;
    color: #000;
    line-height: 1;
}

.terri-why__divider {
    width: 300px;
    max-width: 100%;
    height: 1px;
    margin: 34px 0 34px;
    background: #2ed8b1;
}

.terri-why__subtitle,
.why-subtitle {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    font-family: Montserrat, sans-serif;
}

.terri-why__text,
.terri-why__text p,
.why-text,
.why-text p {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: #fff;
    font-family: Montserrat, sans-serif;
}

.terri-why__text p {
    margin: 0 0 22px;
}

.terri-why__text p:last-child {
    margin-bottom: 0;
}

.terri-why__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    margin-top: 40px;
    padding: 16px 34px;
    border: 3px solid #2ed8b1;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    font-family: Montserrat, sans-serif;
    transition: 0.25s ease;
}

.terri-why__button:hover {
    background: #2ed8b1;
    color: #111;
}

.terri-why__right {
    display: flex;
    align-items: center;
/*    min-height: 760px;*/
}

.terri-timeline {
    position: relative;
    width: 100%;
/*    padding-left: 92px;*/
}

.terri-timeline::before {
    content: "";
    position: absolute;
/*    left: -37px;*/
    top: -20px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(24, 215, 176, 0) 0%, rgba(24, 215, 176, .35) 12%, rgba(24, 215, 176, .9) 50%, rgba(24, 215, 176, .35) 88%, rgba(24, 215, 176, 0) 100%);
    opacity: .8;
    z-index: 0;
    pointer-events: none;
}

.terri-timeline__item {
    position: relative;
    padding-left: 42px;
    margin-bottom: 60px;
    opacity: 0.72;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.terri-timeline__item:last-child {
    margin-bottom: 0;
}

.terri-timeline__item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0f1112;
    box-shadow: 0 0 0 2px rgba(46, 216, 177, 0.45) inset;
    transition: .25s;
    z-index: 2;
}

.terri-timeline__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    max-width: 450px;
}

.terri-timeline__item.is-active::before {
    background: #2ed8b1;
    box-shadow: 0 0 0 6px rgba(46, 216, 177, .20), 0 0 14px 2px #2ed8b1;
    transform: scale(1.15);
}

.terri-timeline__item h3 {
    margin: 0 0 10px;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    color: #fff;
}

.terri-timeline__item p {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 300;
    color: #2ed8b1;
}

.terri-anim {
    opacity: 0;
    transition: transform 0.85s ease, opacity 0.85s ease;
    will-change: transform, opacity;
}

.terri-anim--left {
    transform: translateX(-70px);
}

.terri-anim--right {
    transform: translateX(70px);
}

.terri-anim.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .terri-why {
        padding: 72px 0;
    }

    .terri-why__inner {
        gap: 44px;
        grid-template-columns: 1fr 1fr;
    }

    .terri-why__left,
    .terri-why__right {
/*        min-height: 640px;*/
    }

    .terri-timeline {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .terri-why__inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .terri-why__left,
    .terri-why__right {
        min-height: auto;
    }

    .terri-why__left {
        padding: 20px 0;
    }

    .terri-why__right {
        padding-top: 10px;
    }

    .terri-why__left::before {
        background-position: center;
        background-size: contain;
        opacity: 1;
    }

    .terri-timeline {
        padding-left: 0;
    }

    .terri-timeline::before {
        left: 0;
    }

    .terri-timeline__item {
        margin-bottom: 48px;
        padding-left: 24px;
    }

    .terri-timeline__item::before {
        left: -8px;
        top: 10px;
        width: 16px;
        height: 16px;
    }

    .terri-why__button {
        margin-top: 38px;
    }
}

@media (max-width: 767px) {
    .terri-why {
        padding: 52px 0;
    }

    .button-- {
/*    min-width: 318px;
    min-height: 74px;*/
    padding: 10px 44px;
    border-radius: 1015px;
    border: 2px solid #20b099;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
    margin-top: 20px;
}

    .terri-why__inner {
        width: calc(100% - 24px);
        gap: 36px;
    }

    .terri-why__title,
    .why-title,
    #about h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .terri-why__divider {
        width: 180px;
        margin: 28px 0 28px;
    }

    .terri-why__subtitle {
        margin-bottom: 22px;
    }

    .terri-why__left::before{
        margin-right: 0;
    }
    .terri-why__text,
    .terri-why__text p,
    .why-text,
    .why-text p {
        font-size: 15px;
        line-height: 1.45;
    }

    .terri-why__text p {
        margin-bottom: 22px;
    }

    .terri-why__button {
        width: 100%;
        max-width: 260px;
        min-height: 54px;
        padding: 14px 24px;
        font-size: 18px;
    }

    .terri-timeline {
        padding-left: 0;
    }

    .terri-timeline::before {
        left: 0;
        top: 18px;
        bottom: 18px;
    }

    .terri-timeline__item {
        padding-left: 26px;
        margin-bottom: 36px;
    }

    .terri-timeline__item::before {
        left: -7px;
        top: 10px;
        width: 16px;
        height: 16px;
    }

    .terri-timeline__item h3 {
        font-size: 20px;
        line-height: 1.12;
    }

    .terri-timeline__item p {
        font-size: 15px;
        line-height: 1.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .terri-anim,
    .terri-timeline__item {
        transition: none;
        transform: none;
        opacity: 1;
    }
}



.button-- {
/*    min-width: 318px;
    min-height: 74px;*/
    padding: 10px 44px;
    border-radius: 1015px;
    border: 2px solid #20b099;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
    margin-top: 20px;
    display: inline-block;
    position: relative;
}

.button--:hover,
.button--:focus-visible {
    text-decoration: none;
    background: #20b099;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(32, 176, 153, 0.22);
}



@media (max-width: 767px) {
    .button-- {
        margin-top: 40px;
    }
/*    .container {
        padding-right: 0px!important;
        padding-left: 0px!important;
    }*/
}




.cookie_consent{
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
        background: #54595F;
    color: #fff; 
    padding: 15px; 
    text-align: center; 
    z-index: 9999;
    align-items: center;
    justify-content:center;
    display: flex;
        box-shadow: 1px 9px 21px #000;
}
.cookie_consent p{
    font-size: 14px;
    max-width: 600px;
    text-align: left;
}
.cookie_consent #cookie-accept{
background: #4CAF50;
color: white; 
border: none; 
padding: 5px 15px; 
margin: 5px; 
cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.prose{
    padding: 100px 0;
}