html {
overflow: scroll;
overflow-x: hidden;
 }
::-webkit-scrollbar {
width: 0px; 
background: transparent;
  }
::-webkit-scrollbar-thumb {
background: #FF0000;
 }
 a,
 button {
	 cursor: pointer;
	 transition: .35s ease
 }
.hero-main {
    background: linear-gradient(97.82deg, #FAE6F5 22.12%, #F4BDE5 97.94%);
    border-radius: 10px;
    padding: 20px;
	display: flex;
	flex-direction:column;
    gap: 20px;
	    margin-bottom: 20px;
		position: relative;
}

.hero-badge {
    border-radius: 27px;
    background: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 20px;
    line-height: 1.3;
}

.hero-badge span {
    color: var(--theme);
}

.hero-title {
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    margin: 5px 0 15px;
}

.hero-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    opacity: .7;
    margin-bottom: 16px;
}

.btn-gradient {
    background: linear-gradient(86.5deg, #EA47BF 24.01%, #FF385C 100%);
    opacity: 0.8;
    box-shadow: 0px 0px 10px #F15FAA, 0px 0px 24px #F15FAA;
    border-radius: 4.76px;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 18px 20px;
}
 .btn-animated{
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
	position: relative
	}
 .btn-animated::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .btn-animated::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .btn-animated:hover {
            opacity: 1;
          
            box-shadow:
                0px 0px 15px #F15FAA,
                0px 0px 40px #F15FAA,
                0px 0px 60px rgba(241, 95, 170, 0.4);
            animation: btnGlow 1.5s ease-in-out infinite;
        }

        .btn-animated:hover::before {
            opacity: 1;
        }

        .btn-animated:hover::after {
            left: 100%;
        }

        .btn-animated:active {
            transform: scale(0.98);
        }

        @keyframes btnGlow {
            0%, 100% {
                box-shadow:
                    0px 0px 15px #F15FAA,
                    0px 0px 40px #F15FAA,
                    0px 0px 60px rgba(241, 95, 170, 0.4);
            }
            50% {
                box-shadow:
                    0px 0px 20px #F15FAA,
                    0px 0px 50px #F15FAA,
                    0px 0px 80px rgba(241, 95, 170, 0.5),
                    0px 0px 100px rgba(241, 95, 170, 0.2);
            }
        }

.hero-grid .btn-gradient {
    text-transform: uppercase;
    width: 100%;
    font-weight: 900;
}

.hero-image {
    text-align: center;
    margin: -22px 0;
    position: relative;
    z-index: 0;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero-image img {
    margin-right: -26px;
    max-width: 85%;
}
.hero-sidebar-card {
    border: 1px solid var(--theme);
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 16px 20px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-sidebar-text h4 {
    font-size: 18px;
}

.hero-sidebar-icon svg {
    width: 48px;
    height: 48px;
}

section.hero {
    margin-bottom: 64px;
}

h2.section-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}

p.section-subtitle {
    font-size: 18px;
    line-height: 1.3;
    opacity: .7;
    font-weight: 300;
}

.section-header {
    margin-bottom: 40px;
}

.partner-type-card {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-type-card h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
}

.partner-type-card p {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    opacity: .7;
}

span.partner-type-tag {
    background: #FAE6F5;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
}

.partner-type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
	margin-top:auto
}

.partner-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.partner-types-cta {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.partner-types-cta span {
    font-weight: 600;
    color: var(--theme);
}

section.stats {
    border-top: 1px solid #ECECEC;
    padding-top: 50px;
    padding-bottom: 64px;
    /* border-bottom: 1px solid #ECECEC; */
}

section.partner-types {
    padding-bottom: 56px;
}
section.stats div.section-title {
    color: var(--theme);
    font-size: 48px;
    font-weight: 900;
}

.section-title {font-size: 32px;font-weight: 500;margin-bottom: 20px;}

.section-title__number {
        font-weight: 900;
        font-size: 48px;
        color: var(--theme);
        line-height: 1.3;
        margin-bottom: 20px;
}

p.stats-desc {
    font-size: 18px;
    opacity: .7;
    line-height: 1.3;
    margin-bottom: 15px;
}

.stats-left {
    margin-bottom: 20px;
}

.stats-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
}

.stat-card {
    background: #FAE6F5;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
	    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-weight: 900;
    line-height: 1.3;
    font-size: 48px;
    color: var(--theme);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
}

section.categories {
    padding-top: 56px;
    padding-bottom: 64px;
    border-top: 1px solid #ECECEC;
}

.category-card {
    border-radius: 10px;
    background: #FAE6F5;
    padding: 20px;
	height: auto;
    display: flex;
    flex-direction: column;
}

.category-image {
    position: relative;
    border-radius: 5px;
    height: 285px;
    overflow: hidden;
    margin-bottom: 20px;
    flex: 0 0 285px;
}

.category-image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-grid {
    gap: 20px;
}

.category-info {
    padding-top: 25px;
    padding-right: 10px;
	    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-info h4 a {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.category-info h4 a:hover {
	text-decoration: underline
}

.category-info h4 {
    margin-bottom: 20px;
}

.category-info p {
    font-size: 18px;
    line-height: 1.3;
    opacity: .7;
    margin-bottom: 20px;
}

.category-badge {
    background: #F15F79;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    gap: 5px;
    padding: 9px 13px;
    margin-bottom: 40px;
	    align-self: self-start;
}

.category-badge .icon {
    width: 13px;
    height: 12px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	    margin-top: auto;
}

a.category-tag {
    font-size: 14px;
    line-height: 14px;
    color: #000;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    padding: 9px 13px;
}

.category-tag:hover {
    background: var(--theme);
    color: #fff;
}

section.why-choose {
    border-top: 1px solid #ECECEC;
    padding-top: 56px;
	padding-bottom: 64px;
}

.why-choose p.section-subtitle {
    opacity: 1;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-card {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
	width: 100%;
}

.why-card-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-icon {
    width: 60px;
    height: 60px;
}

.why-card h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.why-card p {
    font-size: 18px;
    opacity: .7;
    line-height: 1.3;
}

section.testimonials {
    border-top: 1px solid #ECECEC;
    padding-top: 56px;
	padding-bottom: 64px;
}

section.testimonials .section-subtitle {
    opacity: 1;
}

.testimonial-avatar {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
}

.testimonial-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}


svg.icon.icon--map-marker {
    width: 30px;
    height: 30px;
    padding: 2px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

span.testimonial-name {
    margin-right: auto;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon--star--rating {
    width: 17px;
    height: 17px;
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;  /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.testimonial-text--full {
	display: block;
}
	
.testimonial-more {
    display: block;
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.3;
}

.testimonial-more:hover {
		text-decoration: none
	
}

span.testimonial-location {
    font-size: 14px;
    line-height: 1.3;
    color: var(--theme);
    margin-top: 15px;
    display: block;
}

.testimonials-slider .testimonials-slider-prev,
.testimonials-slider .testimonials-slider-next {
    --tb-s: 45px;
    position: absolute;
    top: calc(280px - var(--tb-s) / 2);
    --field: var(--tb-s)!important;
    z-index: 2;
}

.testimonials-slider .testimonials-slider-prev .icon,
.testimonials-slider .testimonials-slider-next .icon{
    font-size: 15px!important;
}

.testimonials-slider {
    position: relative;
	margin-bottom: 40px
}
.testimonials-slider .testimonials-slider-prev {
    left: calc(var(--tb-s)/2 *-1);
}
.testimonials-slider .testimonials-slider-next {
    right: calc(var(--tb-s)/2 *-1);;
}

.testimonials-slider .swiper {position: relative;z-index: 1;}
.testimonials-slider .swiper-slide {    padding-right: 1px;}

.testimonial-card {
    border: 1px solid #ECECEC;
    border-radius: 10px;
}

.testimonial-cta {
    border-radius: 10px;
    background: #FAE6F5;
    padding: 20px;
}

.testimonial-cta p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonial-cta strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    padding-right: 20px;
}

.testimonial-cta .btn-primary {
    white-space: nowrap;
}

.btn-primary {
    border: 0;
    outline: 0;
    color: #fff;
    background: var(--theme);
    border-radius: 5px;
    font-size: 18px;
    line-height: 28px;
    padding: 12.5px 26px;
}



.btn-primary:hover {
    background: var(--light);
}

section.how-to-start {
    border-top: 1px solid #ECECEC;
    padding-top: 56px;
    padding-bottom: 64px;
}

.how-to-start .section-subtitle {
    opacity: 1
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px 20px 59px 100px;
    position: relative;
	width: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FAE6F5;
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 32px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.step-card h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 18px;
    line-height: 1.3;
    opacity: .7;
}

.step-card::before, .step-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    height: 2px;
    background: #FAE6F5;
}

.step-card::before {
    left: 20px;
    right: 20px;
}

.step-card::after {
    width: 10px;
    bottom: 16px;
    height: 10px;
    right: 20px;
    background: none;
    border-top: 2px solid #FAE6F5;
    border-right: 2px solid #FAE6F5;
    transform: rotate(45deg);
}


section.calculator {
    padding-top: 56px;
    background: url('/wp-content/themes/init/img/partners-images/Frame 2325.jpg');
	    padding-bottom: 48px;
    background-size: cover;
	background-position: center;
}

.calculator-content {
    text-align: center;
}

h2.calculator-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
}

.slider-label {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.irs--round .irs-handle {
    width: 30px;
    height: 30px;
    top: 0;
}

.irs--round .irs-bar {
    height: 10px;
    top: 10px;
}

.irs--round .irs-line {
    background-color: #fff;
    height: 10px;
    top: 10px;
}

.irs--round .irs-handle {
    width: 30px;
    height: 30px;
    top: 0;
}

.irs--round .irs-bar {
    height: 10px;
    top: 10px;
}

.irs--round .irs-line {
    background-color: #fff;
    height: 10px;
    top: 10px;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    display: block;
    background-color: transparent;
    color: var(--theme);
    font-weight: 800;
    font-size: 24px;
    top: 36px;
    padding: 0;
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    display: none
}

.slider-container {
    margin-bottom: 56px;
}

.income-display {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 20px;
}

.income-label {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.income-amount {
    color: var(--theme);
    font-size: 48px;
    font-weight: 800;
}

.income-note {
    font-size: 18px;
    line-height: 1.3;
}

section.calculator .btn-primary {
    width: 100%;
}
section.faq {
    padding-top: 56px;
	padding-bottom: 64px;
}

section.faq .section-subtitle {
    opacity: 1;
}

button.faq-question {
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    background: none;
    background-color: transparent;
    font-size: 20px;
    line-height: 32px;
    text-align: left;
    gap: 12px;
    width: 100%;
    padding: 18px 0 18px 24px;
	cursor:pointer

}

button.faq-question .icon {
    width: 12px;
    height: 6px;
    flex: 0 0 12px;
    margin: 0 23px 0 auto;
}

.faq-item {
    border: 1px solid #ECECEC;
    border-radius: 5px;
    width: 100%;
	transition: .35s
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin-bottom: 40px;
}

.faq-answer {
    display: none;
}

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 18px;
    line-height: 1.3;
}

.active.faq-item {
    border-color: transparent;
    box-shadow: 0px 11.904px 35.712px rgba(0, 0, 0, 0.07);
}

.faq-answer-inner p {
    margin-bottom: 10px;
}

.faq-contact {
    background: #FAE6F5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
	    overflow: hidden;
}

.faq-contact-text {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.faq-contact-phone {
    background: var(--theme);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
}

.faq-contact-phone .icon {
    width: 24px;
    height: 24px;
}

.faq-contact-phone a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    gap: 5px;
    margin-bottom: 15px;
}

.faq-contact-phone span {
    font-size: 18px;
    line-height: 1.3;
}

section.form-section{
	padding: 48px 0;
	background: url('/wp-content/themes/init/img/partners-images/Frame 2327.jpg');
    background-size: cover;
	background-position: center;
}

.form-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

h2.form-title {
    font-size: 32px;
    font-weight: 500;
    padding-right: 20px;
    line-height: 40px;
    margin-bottom: 14px;
}

p.form-subtitle {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.form-container label {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 5px!important;
}

.form-container input,
.form-container select,
.form-container textarea{
    font-size: 16px!important;
    line-height: 1.3;
    padding: 15px 20px!important;
    height: 53px!important;
}
.form-container textarea {
	height: 150px!important;
}

.form-grid,
.form-grid-left, .form-grid-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
	    width: 100%;
}

.form-container label .mark {
    color: var(--theme);
}

.form-container .checkbox-custom label {
    --checkbox: 21px;
    gap: 10px;
}
.form-group.full {
    width: 100%;
}

@media (min-width: 768px){
	.hero-content {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

h2.hero-title {
    text-align: left;
    margin: 20px 0;
    font-size: 43px;
}

.hero-grid .btn-gradient {
    width: auto;
    padding: 16.5px 28px;
}

.hero-main {
    padding: 40px;
}

.hero-subtitle {
    margin-bottom: 24px;
}

.hero-image img {
    margin: 0;
    max-width: 460px;
}

.hero-image {
    margin: -22px 0 -36px;
}

.hero-sidebar {
    flex-direction: row;
}

.hero-sidebar-card {
    width: calc(100% / 3);
    flex-direction: column;
    /* align-items: center; */
    text-align: center;
    padding: 19px 20px;
}

.hero-sidebar-icon {
    height: 48px;
}

.partner-type-card {
    width: calc(100% /2 - 10px);
    text-align: center;
    padding: 30px;
}

section.stats div.section-title {
    font-size: 60px;
}

.stat-card {
    width: calc(100% / 2 - 10px);
}

.stats-right {
    flex-direction: row;
}

.stat-number {
    font-size: 60px;
}

.category-card {
    width: calc(100% / 2 - 10px);
}

.why-card {
    width: calc(100% / 2 - 10px);
    padding: 30px;
}

.why-card p {
    padding: 0 1px;
}

.testimonial-card {
    display: flex;
}

.testimonial-avatar {
    flex: 0 0 285px;
    min-height: 337px;
	height: auto;
}

.testimonial-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.testimonials-slider .testimonials-slider-prev, .testimonials-slider .testimonials-slider-next {
    top: calc(50% - var(--tb-s)/2);
}

span.testimonial-location {
    margin-top: auto;
}

.testimonial-cta {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 30px;
}

.testimonial-cta .btn-primary {
    white-space: nowrap;
}

.testimonial-cta p {
    padding-right: 20px;
    margin-bottom: 0;
}

.testimonial-more {
	margin-bottom: 10px
}

.step-card {
    padding: 30px 30px 70px 110px;
}

.step-card::before {
    left: 30px;
    right: 30px;
}

.step-card::before, .step-card::after {
    bottom: 30px;
}

.step-card::after {
    right: 30px;
    bottom: 26px;
}

section.calculator .btn-primary {
    width: auto;
}

.calculator-content {
    text-align: center;
}

.slider-container {
    margin-bottom: 76px;
}

h2.calculator-title {
    margin-bottom: 30px;
}

.income-display {
    margin-bottom: 40px;
}

.faq-contact {
    align-items: self-start;
}

.faq-contact-phone {
    text-align: left;
    padding: 30px 30px;
}

.faq-contact-phone a {
    justify-content: flex-start;
}

.form-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.form-grid .form-group:not(.full) {
    width: calc(100%/2 - 10px);
}

.form-group.full {
    width: 100%;
}
.form-container {
	padding: 40px;
}
}

@media (min-width:992px){
	.testimonials-slider .swiper-slide {
		height:auto;
	}
	.testimonial-card {
        display: block;
        height: 100%;
    }
	.faq-item {
    width: calc(100% / 2 - 5px);
	    height: 100%;
}

.faq-contact {
    flex-direction: row;
    align-items: center;
    padding: 0;
}

.faq-contact-text {
    margin: 0;
    padding-left: 30px;
}

.faq-contact-phone, .faq-contact-text {
    width: 50%;
}

.form-grid-left {
    flex-direction: row;
    flex-wrap: wrap;
}

}
@media (min-width:1200px){
	.hero-main {
		flex-direction: row;
	}

	.hero-image {
		margin: 0;
	}

	.hero-content {
		flex: 0 0 60%;
	}

.partner-types-grid {
    flex-wrap: nowrap;
}

	.calculator-content {
		max-width: 847px;
		margin: auto;
	}

	.step-card {
		width: calc(100%/3 - 10px);
	}
.steps {
	
	    flex-wrap: nowrap;
}
	.step-number {
		top: 30px;
		left: 30px;
	}
	.partner-type-card {
        width: calc(100% / 4 - 10px);
	}

	.stats-grid {
		display: flex;
		gap:20px;
	}

	.stats-left {
		margin-bottom: 0;
		flex: 0 0 60%;
	}

	.why-card {
			width: calc(100% / 2 - 10px);
	}
.form-grid-left, .form-grid-right {
    width: calc(100% / 2 - 10px);
}
.form-grid-left {
    flex-direction: row;
    flex-wrap: wrap;
}

.form-grid-left, .form-grid-right {
    width: calc(100% / 2 - 10px);
    height: auto;
}

.form-grid-left {
    gap: 28px 20px;
}
}

@media (min-width: 1300px){
	    .testimonial-card {
        display: flex;
    }
}

@media (min-width: 1440px){
	
	.category-card {
		flex-direction: row;
		gap: 40px;
	}

	.category-image {
		margin: 0;
		height: auto;
	}
	.category-card {
    flex-direction: row;
    gap: 40px;
}

.category-image {
    margin: 0;
    height: auto;
}

    .why-card {
        width: calc(100% / 5 - 16px);
    }
}

@media (min-width: 1920px){
	.hero-main {
    padding: 71px 71px 72px;
    flex: 1;
    position: relative;
}

.hero-badge {
    font-size: 14px;
}

h2.hero-title {
    margin: 20px 0;
    font-size: 45px;
}

.hero-subtitle {
    margin-bottom: 39px;
}

.hero-grid {
    display: flex;
    gap: 20px;
}

.hero-sidebar {
    flex: 0 0 413px;
    flex-direction: column;
}

.hero-sidebar-card {
    width: 100%;
    flex-direction: row;
    padding: 40px 27px;
    gap: 10px;
}

.hero-sidebar-text h4 {
    font-size: 24px;
}

.hero-sidebar-icon, .hero-sidebar-icon svg {
    height: 56px;
    width: 56px;
    flex: 0 0 56px;
}

.hero-image img {
    max-width: 520px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 42px;
}

.section-header {
    max-width: 74%;
}

.partner-type-card {
    gap: 10px;
}

.partner-type-card h4 {
}

.partner-type-icon {
    margin-bottom: 2px;
}

.partner-types-grid {
    flex-wrap: nowrap;
}

.partner-type-card p {
    margin-bottom: 9px;
}

span.partner-type-tag {
    padding: 8px 12px;
}

section.partner-types {
    padding-bottom: 85px;
}

section.stats {
    padding-top: 77px;
}

section.stats div.section-title {
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 17px;
}

.stats-left {
    flex: 0 0 calc(50% - 10px);
    padding-right: 25px;
}

.stats-right {
    padding-top: 6px;
    height: 100%;
}

.stat-number {
    margin-bottom: 6px;
}

.stat-card {
    padding: 35px 30px 34px;
}

section.categories {
    padding-top: 85px;
    padding-bottom: 83px;
}

.category-image {
    flex: 0 0 384px;
    height: 320px;
}

.category-info {
    padding-top: 8px;
}

.category-info h4 {
    margin-bottom: 18px;
}

.category-tags {
    margin-bottom: 11px;
}

section.why-choose {
    padding-top: 85px;
    padding-bottom: 84px;
}

.why-card p {
    padding: 0;
}

.why-card {
    padding: 30px 30px 28px;
}

section.testimonials {
    padding-top: 85px;
    padding-bottom: 84px;
}

.testimonial-content {
    padding: 28px 28px 37px 32px;
}

.testimonial-stars {
    gap: 8px;
}

.testimonial-text {
    font-size: 16px;
}

.testimonial-header {
    margin-bottom: 21px;
}

.testimonial-cta p {
    line-height: 1.2;
    margin-right: auto;
}

.testimonial-cta .btn-primary {
    margin-top: 10px;
}

.testimonial-cta {
    padding: 30px 30px 41px;
}

section.how-to-start {
    padding-top: 85px;
    padding-bottom: 84px;
}

section.calculator {
    padding-top: 78px;
    padding-bottom: 80px;
}

h2.calculator-title {
    font-size: 33px;
    margin-bottom: 41px;
}

.income-amount {
    font-size: 60px;
}

.income-display {
    gap: 10px;
}

section.calculator .btn-primary {
    padding: 12.5px 40px;
}

section.faq {
    padding-top: 85px;
    padding-bottom: 85px;
}

button.faq-question .icon {
}

.faq-grid {
    margin-bottom: 60px;
}

section.form-section {
    padding: 82px 0;
}

h2.form-title {
    margin-bottom: 20px;
}

.form-actions .btn-primary {
    padding: 12.5px 42px;
}

}