:root {
	--ix: calc(1vw + 1vh);
	--primary-color: #00644f;
	--primary-color-hover: #004A3B;
	--text-dark: #111111;
	--text-light: #ffffff;
	--bg-dark: #2b2b2b;
	--bg-light-gray: #f4f4f4;
	--color-white: #ffffff;
    --color-gray: #B5B9BA;
	--color-black: #000000;
	--1b: calc(100% - var(--md) * 2);
	--2b: calc(100% / 2 - var(--md) * 2);
	--3b: calc(100% / 3 - var(--md) * 2);
	--4b: calc(100% / 4 - var(--md) * 2);
	--5b: calc(100% / 5 - var(--md) * 2);
	--6b: calc(100% / 6 - var(--md) * 2);
	--12b: calc(100% / 12 - var(--md) * 2);
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0;}
body, html { font-size: 100%; padding: 0; margin: 0; line-height: 1;}

.c:before, .c:after { content: " "; display: table; }
.c:after { clear: both; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	position: relative;
	font-family: 'Inter', sans-serif;
	background-color: var(--text-light);
	color: var(--text-dark);
	font-size: 16px;
	line-height: 1;
	overflow-x: hidden;
}

a {
	color: var(--primary-color);
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

a:hover {
	color: var(--primary-color-hover);
}

input[type=submit], form button, .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--color-white);
	height: 70px;
	padding: 0 30px;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background-color: var(--primary-color);
	transition: .5s ease-in-out;
	border-radius: 2px;
}

input[type=submit]:hover, form button:hover, .btn:hover {
	background-color: var(--primary-color-hover);
	color: var(--color-white);
}

.b {
	margin-left: auto;
	margin-right: auto;
}

.header {
    position: relative;
    padding: 25px 2%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav-mobile {
	display: none;
	width: 40px;
	height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid var(--bg-dark);
}

.header .logo {
    width: 250px;
    gap: 15px;
}

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--color-black);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-icon:hover {
    background-color: var(--primary-color-hover);
}

.contact-icon img {
    max-width: 25px;
    max-height: 25px;
}

.btn-contact {
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 0px 20px;
    height: 40px;
    border: 1px solid var(--bg-dark);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--bg-dark);
    letter-spacing: 0.98px;
}

.btn-contact:hover {
	background-color: var(--bg-dark);
	color: var(--color-white);
}

@media (max-width: 1600px) {
    .header .logo { width: 180px; }
    .main-nav a {font-size: 16px; }
}

@media (max-width: 1400px) {
    .header .logo { width: 180px; }
    .main-nav a {font-size: 14px; }
}

@media (max-width: 1300px) {
    .main-nav { display: none;}
    .main-nav-mobile {display: flex;}
}

@media (max-width: 768px) {
    .header-contact .btn-contact { display: none; }
    .header .logo { width: 180px; }
    
    .main-nav {
        position: absolute;
        top: 100px;
        left: 2%;
        width: 96%;
        z-index: 10;
    }
    
    .site-footer .main-nav {
        display: none !important;
    }
    
    .main-nav ul {
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 20px 15px;
        text-align: center;;
        color: var(--color-white);
        border-bottom: 1px solid #00000022;
    }
}

.hero {
	position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
    min-height: 800px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: url(images/bg-h.jpg) no-repeat 0 50% / auto 100%;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
    max-width: 50%;
    z-index: 5;
}

.hero-logo-stp {
    width: 300px;
    height: auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 50px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 50px;
}

.hero-btn {
    width: 450px;
    max-width: 100%;
    padding: 20px;
}

@media (max-width: 1700px) {
	.hero { min-height: 640px;}
}

@media (max-width: 1440px) {
	.hero-logo-stp { width: 240px;}
	.hero-title {font-size: 40px;margin-top: 40px; margin-bottom: 40px;}
}

@media (max-width: 1024px) {
    .hero { min-height: 500px;}
    .hero-content { max-width: 60%; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 20px; }
    .hero-btn {width: 350px;}
}
@media (max-width: 768px) {
    .hero-bg { background-position: 100% 50%; width: 100%; }
    .hero-bg:before {content:'';width: 100%;height: 100%;position: absolute; top: 0;left: 0;background-color: #00000075;}
    .hero-content { width: 100%;max-width: 100%; align-items: center;}
    .hero-title { font-size: 24px; text-align: center; color: #fff;}
    .hero-subtitle { font-size: 18px; text-align: center;  color: #fff;}
    .hero-btn { width: 100%; font-size: 20px;}
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
}

.about-intro-images {
    position: relative;
    width: var(--2b);
    min-height: 650px;
    margin: var(--md);
}

.product-image-1 {
    position: absolute;
    width: 581px;
    top: 0;
    left: 0;
    transform: rotate(-6.73deg);
}

.product-image-2 {
    position: absolute;
    width: 558px;
    top: 360px;
    left: 152px;
}

.image-label-1, .image-label-2 {
    position: absolute;
    background-color: #ebebeb;
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
}

.image-label-1 {
    top: 40px;
    left: 22px;
}

.image-label-2 {
    top: 580px;
    left: 126px;
}


.crcl-1, .crcl-2, .crcl-3 {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--color-gray);
    border: 4px solid var(--primary-color);
    border-radius: 50%;    
}

.crcl-1 {
    top: 140px;
    left: 480px;
}

.crcl-2 {
    top: 500px;
    left: 630px;
}

.crcl-3 {
    top: 289px;
    left: 730px;
    width: 28px;
    height: 28px;
}

.crclz-1, .crclz-2, .crclz-3 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid var(--color-gray);
    border-radius: 50%;    
}

.crclz-1 {
    top: 220px;
    left: 460px;
}

.crclz-2 {
    top: 450px;
    left: 580px;
}

.crclz-3 {
    top: 437px;
    left: 730px;
    width: 28px;
    height: 28px;
}

.line-1-1, .line-1-2, .line-1-3, .line-1-4 {
    position: absolute;
    background-color: var(--primary-color);
}

.line-1-1 {
    width: 177px;
    height: 2px;
    top: 148px;
    left: 497px;
}

.line-1-2 {
    width: 27px;
    height: 2px;
    top: 510px;
    left: 647px;
}

.line-1-3 {
    width: 2px;
    height: 364px;
    top: 148px;
    left: 673px;
}

.line-1-4 {
    width: 56px;
    height: 2px;
    top: 301px;
    left: 674px;
}

.line-2-1, .line-2-2, .line-2-3, .line-2-4 {
    position: absolute;
    background-color: var(--color-gray);
}

.line-2-1 {
    width: 138px;
    height: 2px;
    top: 229px;
    left: 477px;
}

.line-2-2 {
    width: 15px;
    height: 2px;
    top: 459px;
    left: 600px;
}

.line-2-3 {
    width: 2px;
    height: 232px;
    top: 229px;
    left: 613px;
}

.line-2-4 {
    width: 120px;
    height: 2px;
    top: 451px;
    left: 613px;
}

.about-intro-text {
    width: var(--2b);
    margin: var(--md);
}

.about-intro-text {
}

.about-intro-text h2 {
    font-size: 42px;
    font-weight: 800; 
    color:var(--primary-color); 
    margin-bottom: 50px; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    text-transform: uppercase;
}

.inline-logo {
    height: 58px;
    margin-left: 8px;
}

.about-description {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
}

.text-primary {
    color: var(--primary-color);
}

.text-bold {
    font-weight: 700;
}

.features-list li { 
    font-size: 24px; 
    line-height: 1.5; 
    padding-left: 90px; 
    position: relative; 
    margin-bottom: 40px;
}

.about-specs {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
}

.about-specs-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--2b);
    margin: var(--md);
}

.about-specs-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-specs-text {
    width: var(--2b);
    margin: var(--md);
    padding-left: 50px;
}

.about-specs-text h3 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-specs-text h4 { 
    font-size: 32px;
    line-height: 1.2; 
    font-weight: 800; 
    color: var(--primary-color); 
    margin-top: 60px; 
    margin-bottom: 20px;
    text-transform: uppercase;
}

.specs-list li, .kit-list li {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    padding-left: 60px;
    position: relative;
}

.specs-list li:not(:last-child) {
    margin-bottom: 15px;
}

.kit-list li:not(:last-child) {
    margin-bottom: 15px;
}

.specs-list li::before, .kit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 4px solid var(--color-gray);
    border-radius: 50%;
}

.about-specs-p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about-specs-p strong {
    color: var(--primary-color);
}

.about-specs-text .partner-btn {
    margin-top: 20px;
    margin-bottom: 40px;
}

.about-system {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
}

.about-system-image {
    position: relative;
    width: var(--2b);
    margin: var(--md);
    height: 760px;
}

.about-system-image img {
    position: absolute;
    top: 180px;
    left: 0;
    width: 800px;
    max-width: 800px;
}

.about-system-text {
    position: relative;
    width: var(--2b);
    margin: var(--md);
}

.about-system-text h3 {
    font-size: 42px; 
    font-weight: 500; 
    line-height: 1.4; 
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-system-text h3 span { 
    color: var(--bg-dark); 
    font-weight: 800; 
    color: var(--primary-color); 
}

.system-features-list li {
    font-size: 24px;
    line-height: 1.5;
    position: relative; 
    padding-left: 110px;
}

.system-features-list li:nth-child(1) {
    margin-bottom: 43px;
}

.system-features-list li:nth-child(2) {
    margin-bottom: 40px;
}

.system-features-list li:nth-child(3) {
    margin-bottom: 20px;
}

.about-stats {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
    min-height: 800px;
}

.about-stats-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: url(images/bg-2.jpg) no-repeat 0 50% / auto 100%;
}

.about-stats-bg img {
    position: absolute;
    top: 0;
    left: 0;
}

.about-stats-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 50%;
    z-index: 5;
}

.about-stats-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 50px;
}

.about-stats-title span {
    font-weight: 800;
    color: var(--primary-color);
}

.about-stats-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 50px;
    padding-right: 100px;
}

@media (max-width: 1700px) {
    .about-stats { min-height: 700px;}
}

@media (max-width: 1440px) {
    .about-intro-text {
        padding-left: 120px;
        padding-top: 10px;
    }
    .about-intro-text h2 {
        font-size: 36px;
    }
    .about-intro-text .inline-logo {
        height: 36px;
    }
    .about-description {
        font-size: 20px;
    }

    .features-list li {
        font-size: 20px;
    }
    
    .about-system-text h3 {
        font-size: 36px;
    }
    
    .system-features-list li {
        font-size: 20px;
    }
    
    .system-features-list li:nth-child(1) {
        margin-bottom: 48px;
    }

    .about-system-image img {
        top: 113px;
        width: 700px;
        max-width: 700px;
    }

    .about-stats-title {font-size: 46px;margin-top: 40px; margin-bottom: 40px;}
    

}

@media (max-width: 1220px) {
    .about-intro {
        padding-top: 100px;
    }

    .about-intro-text {
        order: 1;
        width: var(--1b);
    }

    .about-intro-text h2 {
        justify-content: center;
    }

    .features-list {
        margin-top: 400px;
    }

    .about-intro-images {
        order: 2;
        width: var(--1b);
        min-height: 10px;
    }

    .image-label-1 {
        top: -570px;
    }

    .image-label-2 {
        top: -570px;
        left: 696px;
    }

    .product-image-1 {
        width: 461px;
        top: -590px;
    }

    .product-image-2 {
        width: 428px;
        top: -540px;
        left: 502px;
    }

    .line-1-1, .line-1-2, .line-1-3, .line-1-4, .line-2-1, .line-2-2, .line-2-3, .line-2-4 {
        display: none;
    }

    .crcl-1 {
        top: -470px;
        left: 381px;
    }

    .crcl-2 {
        top: -417px;
        left: 850px;
    }

    .crcl-3 {
        top: -229px;
        left: 60px;
    }

    .crclz-1 {
        top: -420px;
        left: 360px;
    }

    .crclz-2 {
        top: -480px;
        left: 840px;
    }

    .crclz-3 {
        top: -127px;
        left: 60px;
    }

    .features-list li {
        padding-left: 0;
    }

    .about-specs {
        padding-top: 0;
    }

    .about-specs-text {
        padding-left: 30px;
    }

    .about-specs-text h3 {
        font-size: 30px;
    }

    .about-specs-text h4 {
        font-size: 26px;
    }

    .specs-list li, .kit-list li {
        font-size: 20px;
    }

    .about-system-image {
        width: var(--1b);
        order: 2;
        height: 40px;
    }

    .about-system-image img {
        top: -410px;
        width: 540px;
    }

    .about-system-text {
        width: var(--1b);
        order: 1;
    }

    .about-system-text h3 {
        font-size: 36px;
        text-align: center;
    }

    .system-features-list {
        padding-left: 50%;
        padding-top: 40px;
    }

    .system-features-list li {
        font-size: 16px;
    }

    .system-features-list li:nth-child(1) {
        margin-bottom: 37px;
    }

    .system-features-list li:nth-child(2) {
        margin-bottom: 20px;
    }

    .system-features-list li:nth-child(3) {
        margin-bottom: 17px;
    }

    .about-system-image img {
        top: -397px;
        width: 530px;
        max-width: 530px;
    }

    .about-stats-content { max-width: 60%; }
    .about-stats-title { font-size: 40px; }
    .about-stats-subtitle { font-size: 22px; }
}

@media (max-width: 960px) {
    .product-image-1 {
        width: 360px;
        top: -530px;
    }
    
    .product-image-2 {
        width: 328px;
        left: 382px;
        top: -470px;
    }
    
    .image-label-1, .image-label-2 {
        font-size: 14px;
    }
    
    .image-label-2 {
        top: -530px;
        left: 479px;
        width: 210px;
    }
    
    .image-label-1 {
        top: -530px;
    }
    
    .crcl-1 {
        top: -460px;
        left: 281px;
    }
    
    .crcl-2 {
        top: -384px;
        left: 650px;
    }
    
    .crcl-3 {
        top: -219px;
    }
    
    .crclz-1 {
        top: -400px;
        left: 290px;
    }
    
    .crclz-2 {
        top: -424px;
        left: 640px;
    }
    
    .crclz-3 {
        top: -117px;
    }
    
    .features-list {
        margin-top: 330px;
    }
    
    .specs-list li, .kit-list li {
        font-size: 18px;
        padding-left: 40px;
    }
    
    .specs-list li::before, .kit-list li::before {
        top: 6px;
    }
    
    .about-stats-content { max-width: 60%; }
    .about-stats-title { font-size: 40px; }
    .about-stats-subtitle { font-size: 22px; }
    
    .about-system-image img {
        top: -335px;
        width: 440px;
        max-width: 440px;
    }
    
    .system-features-list li {
        padding-left: 110px;
        font-size: 12px;
    }
    
    .system-features-list li:nth-child(1) {
        margin-bottom: 8px;
    }
    .about-stats {
        min-height: auto;
        padding: 30px 0;
    }
    .about-stats-title {
        font-size: 24px;
    }
    .about-stats-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding-right: 80px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding-top: 60px;
        padding-bottom: 0;
    }

    .about-intro-text  {
        padding-left: 0;
    }

    .about-intro-text h2 {
        flex-direction: column;
    }

    .product-image-1 {
        top: -750px;
    }

    .product-image-2 {
        top: -540px;
        left: 0px;
    }

    .image-label-1, .image-label-2 {
        font-size: 12px;
    }

    .image-label-1 {
        top: -740px;
        left: 0;
    }    

    .image-label-2 {
        top: -410px;
        left: 0px;
    }

    .features-list {
        margin-top: 440px;
    }

    .features-list li {
        padding-left: 50px;
        font-size: 16px;
    }

    .crcl-1 {
        top: -670px;
        left: 246px;
    }

    .crcl-2 {
        top: -457px;
        left: 240px;
    }

    .crcl-3 {
        top: -317px;
        left: 0px;
    }

    .crclz-1 {
        top: -640px;
        left: 180px;
    }

    .crclz-2 {
        top: -470px;
        left: 190px;
    }

    .crclz-3 {
        top: -157px;
        left: 0px;
    }

    .about-specs {
        padding: 20px 0;
    }

    .about-specs-image {
        width: var(--1b);
    }

    .about-specs-text {
        width: var(--1b);
    }

    .about-specs-text h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about-specs-text h4 {
        font-size: 20px;
        margin-top: 40px;
    }

    .specs-list li, .kit-list li {
        font-size: 16px;
        padding-left: 30px;
    }

    .specs-list li::before, .kit-list li::before {
        top: 6px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .about-system-text h3 {
        font-size: 30px;
    }

    .about-system-image img {
        top: -650px;
        width: 300px;
    }

    .system-features-list {
        padding-left: 0%;
        padding-top: 240px;
    }

    .system-features-list li {
        font-size: 16px;
        padding-left: 10px;
    }


    .about-stats-bg { background-position: 100% 50%; width: 100%; }
    .about-stats-bg:before {content:'';width: 100%;height: 100%;position: absolute; top: 0;left: 0;background-color: #00000075;}
    .about-stats-content { width: 100%;max-width: 100%; align-items: center;}
    .about-stats-title { font-size: 32px; text-align: center; color: #fff;}
    .about-stats-title span {
        color: #fff;
    }
    .about-stats-subtitle { font-size: 18px; text-align: center;  color: #fff; padding-right: 0;}
    
}

.dark-bg {
    color: var(--text-light);
}

.benefits {
    position: relative;
    margin: 100px 0;
    background: url(images/bg-3.jpg) no-repeat 50% 50% / cover;
}

.benefits__b {
    padding: 80px 0;
}

.benefits-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin: 0 var(--md) 40px;
}

.benefits-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin: 0 var(--md) 40px;
}

.benefits-items {
    display: flex;
    flex-wrap: wrap;
}

.benefit-item {
    width: var(--2b);
    display: flex;
    align-items: flex-start;
    margin: var(--md);
}

.benefit-icon {
    width: 210px;
    height: 210px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-right: 30px;
    position: relative;
}

.benefit-item-content {
    width: calc(100% - 240px);
    padding-right: 30px;
}

.benefit-item-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 20px;
}

.benefit-item-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 380px;
}

.benefits-btn {
    width: 450px;
    margin: 30px auto;
}



@media (max-width: 960px) {
    .benefits-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .benefits-subtitle {
        font-size: 18px;
    }
    
    .benefit-item {
        width: var(--1b);
    }
    
    .benefit-icon {
        width: 140px;
        height: 140px;
    }
    
    .benefit-icon img {
        width: 40px;
    }

    .benefit-item-content {
        width: calc(100% - 140px);
        padding-right: 30px;
    }

    .benefit-item-title {
        font-size: 24px;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .benefit-item-text {
        font-size:18px;
        line-height: 1.3;
    }
}


@media (max-width: 1200px) {
    .benefit-icon {
        width: 140px;
        height: 140px;
    }
    
    .benefit-icon img {
        width: 40px;
    }

    .benefit-item-content {
        width: calc(100% - 140px);
        padding-right: 30px;
    }

    .benefit-item-title {
        font-size: 24px;
    }

    .benefit-item-text {
        font-size:18px;
    }
}


@media (max-width: 768px) {
    .benefits-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .benefits-subtitle {
        font-size: 16px;
    }

    .benefit-item {
        width: var(--1b);
        margin-bottom: 30px;
    }

    .benefit-icon {
        width: 80px;
        height:80px;
    }

    .benefit-icon img {
        width: 40px;
    }

    .benefit-item-content {
        width: calc(100% - 110px);
        padding-right: 30px;
    }

    .benefit-item-title {
        font-size: 20px;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .benefit-item-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .btn {
        height: 60px;
        padding: 0 10px;
        font-size: 18px;
    }

    .benefits-btn {
        width: 300px;
    }
}



.specbusiness {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
    min-height: 680px;
}

.specbusiness-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: url(images/bg-4.jpg) no-repeat 100% 50% / auto 100%;
}

.specbusiness-bg img {
    position: absolute;
    top: 0;
    right: 0;
}

.specbusiness-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 50%;
    margin-left: 50%;
    z-index: 5;
    padding-left: 50px;
}

.specbusiness-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.4;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 50px;
}

.specbusiness-subtitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
}

.checklist li {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    padding-left: 50px;
    position: relative;
}

.checklist li:not(:last-child) {
    margin-bottom: 20px;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.checklist li:nth-child(1)::before { content: '1'; }
.checklist li:nth-child(2)::before { content: '2'; }
.checklist li:nth-child(3)::before { content: '3'; }


@media (max-width: 1700px) {

}

@media (max-width: 1440px) {
    .specbusiness-title {font-size: 46px; margin-top: 40px; margin-bottom: 40px;}
}

@media (max-width: 1024px) {   
    .specbusiness {min-height: 440px;padding-top: 20px;padding-bottom: 20px;}
    .specbusiness-content { max-width: 60%; }
    .specbusiness-title { font-size: 36px; margin-top: 20px; margin-bottom: 20px;}
    .specbusiness-subtitle { font-size: 18px; }
    .checklist li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .specbusiness-bg { background-position: 0% 50%; width: 100%; }
    .specbusiness-bg:before {content:'';width: 100%;height: 100%;position: absolute; top: 0;left: 0;background-color: #00000075;}
    .specbusiness-content { width: 100%;max-width: 100%; align-items: center;margin-left: 0;padding-left: 0;}
    .specbusiness-title { font-size: 32px; text-align: center; color: #fff;}
    .specbusiness-subtitle { font-size: 18px; text-align: center;  color: #fff;}
    .checklist li {color: #fff;font-size: 18px;}
}



.how-it-works {
    position: relative;
    margin: 100px 0;
}

.how-it-works__b {
    padding: 30px 0;
}

.how-it-works-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    margin: 0 var(--md) 40px;
}

.how-it-works-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin: 0 var(--md) 40px;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 60px auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 30px;
    width: 2px;
    background-color: #c6c6c6;
    transform: translateX(-50%);
}

.timeline-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 60px; 
    width: 100%;
    position: relative;
}

.timeline-content {
    width: 45%;
}

.timeline-dot {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item.item-left .timeline-content { 
    text-align: right; 
    margin-right: 10%; 
    padding-right: 30px;
}

.timeline-item.item-right { 
    justify-content: flex-end;
}

.timeline-item.item-right .timeline-content { 
    text-align: left; 
    order: 2;
    padding-left: 30px;
}

.timeline-item.item-right .timeline-dot { 
    order: 1; 
}

.timeline-content h3 { 
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700; 
    color: var(--primary-color); 
    text-transform: uppercase; 
    margin-bottom: 10px; 
}

.timeline-content p { 
    font-size: 20px; 
    font-weight: 500; 
    line-height: 1.6; 
}

@media (max-width: 1024px) {
    .how-it-works-title {
        font-size: 36px;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        position: relative;
        margin: 50px 0;
    }

    .how-it-works-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .how-it-works-subtitle {
        font-size: 16px;
    }

    .timeline-line { left: 20px; bottom: 100px;}
    .timeline-item, .timeline-item.item-left, .timeline-item.item-right { flex-direction: column; align-items: flex-start; }
    .timeline-dot { position: static; transform: none; margin-bottom: 20px; width: 40px;height: 40px;font-size: 20px;}
    .timeline-content, .timeline-item.item-left .timeline-content, .timeline-item.item-right .timeline-content { width: 100%; text-align: left; margin: 0; padding-left: 80px; }
    .timeline-item.item-right {justify-content: flex-start;}
    .timeline-content h3 {font-size: 20px;}
    .timeline-content p {font-size: 16px;}
    .timeline-item { align-items: flex-start; }
    .timeline-item .timeline-dot { position: absolute; left: 0; }
}


.features {
    position: relative;
    margin: 50px 0;
    background: url(images/bg-5.jpg) no-repeat 50% 50% / cover;
}

.features__b {
    padding: 80px 0;
}

.features-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.features-items {
    display: flex;
    flex-wrap: wrap;
}

.feature-card {
    display: flex;
    flex-direction: column;
    width: var(--3b);
    margin: var(--md) var(--md) 40px;
}

.feature-i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    height: 94px;
    margin-bottom: 30px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.feature-card h3 span {
    padding: 7px 14px 7px;
    background-color: var(--primary-color);
    display: inline-block;
}

.feature-card p {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    padding: 0 5%;
}

@media (max-width: 1024px) {
    .features-title {
        font-size: 36px;
    }
    .features-title .inline-logo {
        height: 36px;
    }
    .feature-card {
        width: var(--2b);
        margin-bottom: 50px;
    }
    .feature-card h3 {
        font-size: 20px;
    }
    .feature-card p {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .features-title {
        font-size: 36px;
        line-height: 1.3;
    }
    .features-title .inline-logo {
        height: 36px;
        margin-top: 10px;
    }
    .feature-card {
        width: var(--1b);
        text-align: center;
        align-items: center;
    }

    .features-title {
        flex-direction: column;
    }

    .feature-icon {
        height: 70px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 16px;
    }
}




.comparison {
    text-align: center;
}

.comparison__b {
    padding: 50px 0;
}

.comparison-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.comparison-subtitle {
    font-size: 20px;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.comparison-table-wrapper {
    border: 1px solid #eaeaea;
    padding: 0;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(45deg, #fcfcfc 0%, #e7e7e7 140.4%);
}

.comparison-table th, .comparison-table td {
    text-align: left;
    font-size: 20px;
    border-left: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.comparison-table th:first-child, .comparison-table td:first-child {
    border-left: none;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.comparison-table thead th {
    padding: 35px 30px;
    font-weight: 700;
    border-bottom: none;
}
.comparison-table tbody td {
    padding: 30px 30px;
    font-weight: 500;
    color: var(--text-dark);
}
.comparison-table tbody tr td:first-child {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    max-width: 500px;
    font-weight: 400;
}
.comparison-table tbody tr td:first-child p {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 500;
}
.comparison-table .highlight-row {
    background-color: #e2e2e2;
}
.comparison-table .highlight-row td {
    
}
.comparison-table .highlight-row img {
    width: 192px;
    vertical-align: middle;
}
@media (max-width: 1200px) {
    .comparison-table thead th {
        padding: 20px 15px;
        font-size: 14px;
    }
    .comparison-table tbody td {
        padding: 20px 10px;
        font-size: 14px;
    }
    .comparison-table tbody tr td:first-child {
        font-size: 12px;
    }
    .comparison-table tbody tr td:first-child p {
        font-size: 14px;
    }
    .comparison-table .highlight-row img {
        width: 80px;
    }
}
@media (max-width: 1024px) {
    .comparison-title {
        font-size: 36px;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 800px;
    }

    .comparison-table thead th {
        padding: 20px 15px;
        font-size: 14px;
    }
    .comparison-table tbody td {
        padding: 20px 10px;
        font-size: 14px;
    }
    .comparison-table tbody tr td:first-child {
        font-size: 12px;
    }
    .comparison-table tbody tr td:first-child p {
        font-size: 14px;
    }
    .comparison-table .highlight-row img {
        width: 80px;
    }
}
@media (max-width: 768px) {
    .comparison-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .comparison-subtitle {
        font-size: 16px;
    }
    .comparison-table {
        min-width: 600px;
    }
    .comparison-table thead th {
        padding: 10px;
        font-size: 12px;
    }
    .comparison-table tbody td {
        font-size: 12px;
        padding: 10px;
    }
    .comparison-table tbody tr td:first-child {
        font-size: 10px;
        width: 200px;
    }
    .comparison-table tbody tr td:first-child p {
        font-size: 12px;
    }
    .comparison-table .highlight-row img {
        width: 100px;
    }


}



.certificates {
    position: relative;
    margin: 100px 0;
    background: url(images/bg-6.jpg) no-repeat 50% 50% / cover;
}

.certificates__b {
    padding: 100px 0;
}

.certificates-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin: 0 var(--md) 40px;
}

.certificates-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.certificates-items {
    display: flex;
    flex-wrap: wrap;
}

.certificates-item {
    width: var(--3b);
    display: flex;
    align-items: flex-start;
    margin: var(--md);
}

.certificate-image {
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .certificates-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .certificates {
        margin: 50px 0;
    }

    .certificates-title {
        font-size: 36px;
    }

    .certificates-subtitle {
        font-size: 16px;
    }

    .certificates-item {
        width: var(--1b);
    }
}


.faq {
    margin: 100px 0;
}

.faq-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    width: var(--1b);
}

.faq-item {
    background-color: #f4f4f4;
    border-left: 5px solid var(--primary-color);
    margin: 0 var(--md) 20px;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 45px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    transition: transform 0.3s ease;
}
.faq-item[open] > summary .faq-arrow {
    transform: rotate(180deg);
}

.faq-item p {
    border-top: 1px dashed #ddd;
    padding: 20px 45px 25px;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-item summary { 
        padding: 20px 20px 20px 20px; 
        font-size: 14px;
        line-height: 1.3;
    }

    .faq-item p {
        padding: 20px 20px 20px 20px;
        font-size: 14px;
        line-height: 1.3;
    }

    .faq-arrow {
        width: 15px;
        margin-left: 10px;
    }
}



.partner {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
    min-height: 680px;
}

.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: url(images/bg-7.jpg) no-repeat 100% 50% / auto 100%;
}

.partner-bg img {
    position: absolute;
    top: 0;
    right: 0;
}

.partner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 50%;
    margin-left: 50%;
    z-index: 5;
    padding-left: 50px;
}

.partner-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.4;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 50px;
}

.partner-text h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-info {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info p {
    margin-bottom: 25px;
}

.contact-info .label {
    font-size: 20px;
    color: #979797;
}

.email-link {
    font-weight: 700;
    color: var(--primary-color); 
    text-decoration: underline;
}

.partner-btn {
    width: 590px;
    max-width: 100%;
    margin-top: 40px;
    font-size: 20px;
    letter-spacing: 1.4px;
}

@media (max-width: 1024px) {
    .partner {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .partner-text h2 {
        font-size: 36px;
    }
    
    .contact-info {
        font-size: 20px;
    }
    
    .contact-info .label {
        font-size: 14px;
        color: #979797;
    }
    
    .partner-btn {
        width: auto;
    }
}

@media (max-width: 768px) {
    .partner-bg { background-position: 0% 50%; width: 100%; }
    .partner-bg:before {content:'';width: 100%;height: 100%;position: absolute; top: 0;left: 0;background-color: #00000075;}
    .partner-content { display: block; max-width: 100%; margin-left: 0%;   padding-left: 0px;}
    .partner-text h2 {
        font-size: 36px;
        line-height: 1.3;
        color: #fff;
        text-align: center;
    }
    .contact-info .label {
        color: #ddd;
    }
    .contact-info p {
        color: #fff;
        font-size: 20px;
    }
    .contact-info .email-link {
        color: #fff;
    }
}




.site-footer {
    position: relative;
    padding: 25px 2%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video {
    padding: 80px 0;
}

.thumb-wrap, .video-container {
    position: relative;
    padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
    height: 0;
    overflow: hidden;
    margin: var(--md);
}

.thumb-wrap iframe, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
}




@media screen and (max-width:768px) {
    .video {
        padding: 40px 0 0;
    }
}


























@media screen and (min-width:1201px) and (max-width:1439px) {
	
}

@media screen and (min-width:961px) and (max-width:1200px) {
	
}

@media screen and (min-width:720px) and (max-width:960px) {
	
}

@media screen and (max-width:719px) {
	
}



/* --------------------------------------------- */

.form-w {
    display: none;
    min-width: 260px;
    max-width: 500px !important;
    height: auto;
}

.form-block {
    position: relative;
    width: 100%;
    height: 100%;
}

.form-block-d-h {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--violet);
	text-align: center;
	margin-bottom: 15px;
}

.form-block-d-t {
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 15px;
}

.form-block-ft {
	font-size: 12px;
	margin-bottom: 5px;
}

.form-block-f input, .form-block-f select {
    width: 100%;
    font-size: 22px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding-left: 60px;
}

input[name=name] {
	background: url(images/form-man.png) no-repeat 20px 50%;
}

input[name=phone] {
	background: url(images/form-phone.png) no-repeat 20px 50%;
}

input[name=e_mail] {
	background: url(images/form-mail.png) no-repeat 20px 50%;
}


.form-block-btn input[type=submit] {
    width: 100%;
}

.form-block-mes {
    font-size: 20px;
    text-align: center;
    padding: 15px;
    background-color: #eee;
    text-align: center;
    margin-bottom: 20px;
}


@media screen and (min-width:1201px) {
	:root {
		--md: 15px;
		--pd: 15px;
	}
}

@media screen and (max-width:1200px) {
	:root {
		--md: 10px;
		--pd: 10px;
	}
}

@media screen and (min-width:1440px) {
	.b {
		width: 1440px;
	}
}

@media screen and (min-width:1221px) and (max-width:1439px) {
	.b {
		width: 1200px;
	}
	
	input[type=submit], form button, .but {
		font-size: 20px;
		padding: 0 20px;
	}
}

@media screen and (min-width:961px) and (max-width:1220px) {
	.b {
		width: 960px;
	}
	
	input[type=submit], form button, .but {
		font-size: 18px;
		padding: 0 15px;
		height: 60px;	
	}
}

@media screen and (min-width:769px) and (max-width:960px) {
	.b {
		width: 720px;
	}
	
	input[type=submit], form button, .but {
		font-size: 16px;
		padding: 0 15px;
		height: 50px;	
	}
}

@media screen and (max-width:767px) {
	body {
		font-size: 14px;
	}

	.b {
		width: 320px;
	}

	input[type=submit], form button, .but {
		min-width: 240px;
		padding: 0 20px;
		font-size: 16px;
		height: 50px;
	}

	.form-block-d-h {
		font-size: 20px;
	}

	.form-block-d-t {
		font-size: 14px;
	}

	.form-block-f input, .form-block-f select {
		font-size: 16px;
	}
}