/*font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* Hairline */
/*@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Hairline.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}*/

/* Light */
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Regular */
/*@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}*/

/* Book */
/*@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontrealText-Book.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
}*/

/* Semibold */
/*@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}*/

/* Extrabold */
/*@font-face {
    font-family: 'PP Neue Montreal';
    src: url('./fonts/PPNeueMontreal-Extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}*/




@font-face {
    font-family: 'Geist';
    src: url('./fonts/Geist[wght].woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('./fonts/Geist-Italic[wght].woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

body{
	font-family: 'PP Neue Montreal', sans-serif;
	padding: 0px;
	margin: 0px;
	position: relative;
	background: rgba(247, 247, 242, 1)
}

button, input, textarea{
	outline: none;
}
*,
*:focus,
*:focus-visible,
*:active {
    outline: none !important;
    box-shadow: none !important;
}
h1, h2, h3, h4, h5{
	padding: 0;
	margin: 0;
}
a{
	text-decoration: none;
}

header{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	min-height: 104px;
	position: fixed;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(18, 31, 20, 0.6) 0%, rgba(18, 31, 20, 0) 100%);
	backdrop-filter: blur(0px);

	/*background: linear-gradient(
	    180deg,
	    rgba(18, 31, 20, 0.96) 10%,
	    rgba(247, 247, 242, 0) 90%,
	    rgba(247, 247, 242, 0) 100%
	);
	backdrop-filter: blur(0px);*/


	z-index: 9999;
}
.hero_content h1, .singl_port__title, .portfolio_block__title, .list_people_title, .team_bl_2_title, .ready_title, .company_list_one_title, .company_title, .viability_title, .what_title, .ideals_title, .regalii_list_one_title{
		font-weight: 300 !important;
		letter-spacing: -1px;
	}
.white_head{
	background: linear-gradient(
	    180deg,
	    rgba(247, 247, 242, 0.96) 70%,
	    rgba(247, 247, 242, 0.7) 100%
	);
	backdrop-filter: blur(3px);

	
}
.white_head {
   
   /* backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 30%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 30%,
        transparent 100%
    );*/

   
}


/*.white_head::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0) 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0) 100%
    );
}*/

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(170, 173, 170, 1);
    padding: 10px 24px;

    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 19px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(247, 247, 242, 1);
    text-decoration: none;

    background: transparent;
    transition: border-color .25s ease, color .25s ease;
}

.button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;

    width: 100%;
    height: 100%;

    background: rgba(247, 247, 242, 1);
    transform: translateY(100%);
    transition: transform .35s ease;
    z-index: 1;
}

.button::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(21, 31, 21, 1);
    transform: translateY(100%);
    transition: transform .35s ease;
    z-index: 2;
}

.button:hover::before,
.button:hover::after {
    transform: translateY(0);
}

.button:hover {
    border-color: rgba(247, 247, 242, 1);
}

.button span {
    position: relative;
    z-index: 3;
    transition: transform .35s ease, opacity .25s ease;
}

.button:hover span {
    transform: translateY(-120%);
    opacity: 0;
}
.white_head .button{
	color: #151F15;
	
}
header .button{
	margin-left: 59px;
}
.white_head .button::before, .white_head .button::after {
    background: #071A0D;
        color: #fff;
}
/*.button:hover{
	background: rgba(247, 247, 242, 1);
	border: 1px solid rgba(247, 247, 242, 1);
	color: rgba(21, 31, 21, 1);
}
.white_head .button:hover{
	background: #151F15;
	border: 1px solid #151F15;
	color: #F7F7F2;
}*/
.button_black{
	color: rgba(21, 31, 21, 1);
}
/*.button_black:hover{
	border: 1px solid rgba(21, 31, 21, 1);
	background: rgba(21, 31, 21, 1);
	color: rgba(247, 247, 242, 1);
}*/

.button_black {
   /* background: rgba(242, 242, 237, 1);*/
    color: #151F15;
    border-color: #AAADAA;
}

.button_black::before {
    background: #071A0D;
}

.button_black::after {
    color: #F7F7F2;
}

.button_black span {
    color: #151F15;
}

.header_container{
	padding: 18px 128px;
	min-width: calc(100% - 256px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 56px;
}

.menu a{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0px;
	color: rgba(247, 247, 242, 1);
	text-decoration: none;
	
	

}
header .menu a{
	position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

.menu a::before,
.menu a::after {
    content: "";
    width: 16px;
    height: 32px;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.menu a::before {
    background-image: url('/wp-content/uploads/2026/06/Chevron-left.svg');
    transform: translateX(-6px);
    position: relative;
    left: -5px;
}

.menu a::after {
    background-image: url('/wp-content/uploads/2026/06/Chevron-right.svg');
    transform: translateX(6px);
    position: relative;
    left: 5px;
}

.menu a:hover::before,
.menu a:hover::after
/*.menu .current-menu-item a::before,
.menu .current-menu-item a::after,
.menu .current_page_item a::before,
.menu .current_page_item a::after */
{
    opacity: 1;
    transform: translateX(0);
}



.white_head .menu a{
	color: #151F15
}
.menu li {
    list-style: none;
}



footer{
	padding: 96px 128px 68px;
	border-bottom: 0.5px solid rgba(196, 204, 196, 1);
	min-width: calc(100% - 256px);
	display: flex;
	justify-content: space-between;
}

.footer_left{
	/*min-width: 50%;
	max-width: 50%;*/

}

.foot_addres{
	padding: 24px 0; 
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
	color: rgba(96, 102, 96, 1);
}
.foot_phone, .foot_email{
	color: rgba(96, 102, 96, 1);
	padding-bottom: 8px;
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
}
.foot_email{
	padding-bottom: 0px;
}


.footer_right{
	
	/*min-width: calc(50% - 119px);
	max-width: calc(50% - 119px);*/
	display: flex;
	gap: 30px;
}

.footer_right .menu a{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0px;
	color: rgba(96, 102, 96, 1);
}	
.footer_right ul{
	padding-left: 0px;
	column-gap: 0;
    row-gap: 16px;
        margin: 0;
        flex-wrap: nowrap;
}
.footer_right ul li{
	/*min-width: 100%;*/
	    padding-right: 32px;
}
.footer_right ul li:last-child{
	padding-right: 0px;
}

.copir{
	padding: 24px 128px;
	min-width: calc(100% - 256px);
	max-width: calc(100% - 256px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copy_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: -0.3px;
	color: rgba(96, 102, 96, 1);
}

.copir .footer_right ul{
	flex-wrap: nowrap;
	column-gap: 24px;
}
.copir .footer_right ul li{
	min-width: max-content;
}

.copir .footer_right .menu a{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: -0.3px;
	color: rgba(96, 102, 96, 1);
}
.copir .footer_right{
	align-items: center;
}







.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(247,247,242,0) 0%,
        rgba(247,247,242,0.4) 30%,
        rgba(247,247,242,0.8) 70%,
        rgba(247,247,242,1) 100%
    );

    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}
.hero_portfolio, .hero_founders{
	align-items: flex-end;
}
.hero_portfolio .hero_content{
	min-width: 100%;
	display: flex;
	justify-content: center;
}

.hero_team::before, .hero_first::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100% - 100px);
    padding-top: 100px;
    width: 60%;
    z-index: 2;
    background: linear-gradient(270deg, rgba(247, 247, 242, 0) 0%, rgba(247, 247, 242, 0.8) 70%, rgba(247, 247, 242, 1) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

}
.hero_portfolio h1{
	font-size: 80px;
	padding-bottom: 96px;
}
.hero_founders h1{
	padding-bottom: 96px;
}

.hero_unicorn_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero_content {
    position: relative;
    z-index: 9;
    padding-left: 128px;
}
.hero_content h1{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 70px;
	line-height: 74px;
	letter-spacing: -4px;
}
.hero_content h1 span{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 500;
	font-size: 70px;
	line-height: 74px;
	letter-spacing: -1px;
	color: rgba(24, 122, 24, 1)
}
.hero_founders h1{
	    padding-bottom: 116px;
}

.regalii{
	min-width: calc(100% - 196px);
	padding: 98px 98px 128px;
	position: relative;
	overflow: hidden;
}

.regalii_cont_over{
	position: absolute;
    height: 200%;
    width: calc(100% - 192px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 31px;
    left: 0;
    right: 0;
    margin: auto;
}

.regalii_block{
	position: relative;
	z-index: 9;
}

.spliter{
	height: 64px;
	min-width: 100;
	display: flex;
	justify-content: center;
}
.spliter span{
	display: block;
	height: 64px;
	width: 1px;
	background: rgba(24, 122, 24, 1);
}
.regalii_tag{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.3px;
	text-align: center;
	color: rgba(24, 122, 24, 1);
	margin-bottom: 24px;
	margin-top: 96px;
}
.regalii_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 56px;
	line-height: 120%;
	letter-spacing: -0.3px;
	text-align: center;
	color: rgba(21, 31, 21, 1);
	margin-bottom: 96px;
}
.regalii_line{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
}
.regalii_list{
	display: flex;
	align-items: center;
	justify-content: space-between;
	/*max-width: 844px;
	min-width: 844px;*/
	gap: 160px;
}
.regalii_list_one{
	text-align: center;
	min-width: 137px;
}
.regalii_list_one_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 64px;
	line-height: 110.00000000000001%;
	letter-spacing: -0.3px;
	text-align: center;
	color: rgba(21, 31, 21, 1);
}
.regalii_list_one_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.3px;
	text-align: center;
	color: rgba(96, 102, 96, 1);
	min-width: 100%;
	padding-top: 12px;
}

.ideals{
	background: rgba(242, 242, 237, 1);
	padding: 128px 128px 96px;
    min-width: calc(100% - 256px);
	/*padding-left: calc(50% - 592px);
	padding-right: calc(50% - 592px);
	min-width: 1184px;*/
	
}
.ideals_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	text-align: center;
	color: rgba(21, 31, 21, 1);
}
.ideals_title span{
	font-weight: 500;
	letter-spacing: -0.3px;
	color: rgba(24, 122, 24, 1);
}
.ideals_text{
	padding: 32px 0px 96px;
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	text-align: center;
	color: rgba(96, 102, 96, 1);
}
.ideals_line{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
}
.ideals_list{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 24px;
	min-width: 100%
}
.ideals_list_one{
	background: rgba(247, 247, 242, 1);
	padding: 25px 32px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 320px;
	min-width: calc(33% - 76px);
	max-width: calc(33% - 76px);
}
.ideals_list_one_img{
	min-width: 250px;
	min-height: 240px;
	object-fit: contain;
	transform: scale(1.2);
}
.ideals_list_one_title{
	min-width: 100%;
	text-align: center;
	padding-top: 13px;
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0.3px;
	text-align: center;
}
.ideals_line_button{
	margin-top: 96px;
	min-width: 100%;
	display: flex;
	justify-content: center;
}
.big_button{
	min-height: 46px;
	max-height: 46px;
	
	align-items: center;
	padding: 0px 24px;
}

.what{
	padding: 128px 240px;
	min-width: calc(100% - 480px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid rgba(196, 204, 196, 1);
	position: relative;
	overflow: hidden;
}
.what_cont_over {
    position: absolute;
    height: 200%;
    width: 1184px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 128px;
    left: 0;
    right: 0;
    margin: auto;
}
.what_block{
	background: rgba(242, 242, 237, 1);
	padding: 128px 140px;
	min-width: 680px;
	max-width: 680px;
	position: relative;
	z-index: 99
}
.what_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	text-align: center;
	padding-bottom: 24px;
	color: rgba(21, 31, 21, 1);
}
.what_title span{
	font-weight: 500;
	color: rgba(24, 122, 24, 1);
	letter-spacing: -0.3px;
	white-space: nowrap;
}
.what_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	text-align: center;
	color: rgba(96, 102, 96, 1);
	
}
.what_text strong{
	color: rgba(24, 122, 24, 1);
	font-weight: 500;
}
.what_text p{
	padding: 0px;
	margin: 0px;
}

.viability{
	padding: 128px 228px 160px;
	min-width: calc(100% - 456px);
	border-bottom: 1px solid rgba(196, 204, 196, 1)
}

.viability_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	text-align: center;
	color: rgba(21, 31, 21, 1);

}
.viability_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	text-align: center;
	padding: 32px 0 96px;
	color: rgba(96, 102, 96, 1);
}
.viability_line{
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.viability_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #d9ddd6;
    border-left: 1px solid #d9ddd6;
    min-width: 925px;
    max-width: 925px;
}
.viability_list_one {
    border-right: 1px solid #d9ddd6;
    border-bottom: 1px solid #d9ddd6;
    min-height: 121px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px 24px;
}
.viability_list_one_img{
	min-height: 48px;
	max-width: 48px;
	min-width: 48px;
	object-fit: contain;
	filter: grayscale(100%);
    transition: filter 0.25s ease;
}
.viability_list_one:hover{
	background: #EFECE4;
}
.viability_list_one:hover .viability_list_one_img {
    filter: grayscale(0%);
}
.viability_list_one_title{
	padding-top: 28px;
	/*padding-bottom: 4px;*/
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 114.99999999999999%;
	letter-spacing: 0px;
	text-align: center;
	color: rgba(21, 31, 21, 1);
	min-width: 100%;
}
.viability_list_one_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0px;
	text-align: center;
	color: rgba(96, 102, 96, 1);
	min-width: 100%;
}

@media (max-width: 900px) {
    .viability_list {
        grid-template-columns: repeat(3, 1fr);
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .viability_list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.viability_text_button{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0px;
	text-align: center;
	padding-top: 48px;
	color: rgba(96, 102, 96, 1)
}
.viability_text_button span{
	color: rgba(21, 31, 21, 1);
}

.company{
	
/*	padding-left: calc(50% - 592px);
	padding-right: calc(50% - 592px);*/

	/*min-width: 1184px;
	max-width: 1184px;*/
	padding: 160px 128px 128px;
    min-width: calc(100% - 256px);

	/*border-bottom: 1px solid rgba(196, 204, 196, 1)*/
}
.company_line_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 100%;
	padding-bottom: 64px;
}
.company_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-style: Book;
	font-size: 56px;
	leading-trim: NONE;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	color: rgba(21, 31, 21, 1);
}
.company_list_one{
	border-top: 1px solid rgba(196, 204, 196, 1);
	padding: 64px 0 64px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.company_list_one_title{
	min-width: 200px;
	max-width: 200px;
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 32px;
	line-height: 130%;
	letter-spacing: -0.5px;
	color: rgba(21, 31, 21, 1);
}
.company_list_one_text_block{
	display: flex;
	align-items: flex-start;
	gap: 64px;
}
.company_list_one_text{
	
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	max-width: 525px;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660;
}

.company_list_one:hover{
	/*border-top: 1px solid #187A18*/
}

.company_list_one:hover .company_list_one_title{
	color: #187A18;
}
.company_list_one:hover .company_list_one_text{
	color: #151F15;
}
.company_list_one_num{
	font-family: PP Pangaia, serif;
	font-weight: 500;
	font-size: 96px;
	line-height: 90px;
	letter-spacing: 2px;
	text-align: right;
	color: rgba(175, 178, 175, 1);
}
.ready{
	padding: 226px 128px;
	min-width: calc(100% - 256px);
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ready_block_title{
	min-width: 50%;
	max-width: 50%;
}
.ready_block_title{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 9
}
.ready_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 70px;
	line-height: 74px;
	letter-spacing: -4px;
	color: rgba(21, 31, 21, 1);
}



.ready_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	color: rgba(96, 102, 96, 1);
	padding-top: 24px;
}

.ready_block_title_line_2 .ready_text{
	padding-top: 0px;
}
.ready_email{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	/*text-decoration: underline;*/
	text-decoration-style: solid;
	text-decoration-offset: 0%;
	text-decoration-thickness: 0%;
	text-decoration-skip-ink: auto;
	color: rgba(24, 122, 24, 1);
	padding-top: 8px;
	display: inline-block;
	border-bottom: 1px solid rgba(24, 122, 24, 1);
}


.ready_form{
	min-width: calc(50% - 119px);
	max-width: calc(50% - 119px);
	min-height: 448px;
	padding-left: 119px;
	position: relative;
	z-index: 9
}
.contact_form{
	min-width: 100%;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.contact_form span{
	min-width: 100%;
	display: flow;
}

.contact_form input, .contact_form textarea{
	background: rgba(242, 242, 237, 1);
	border: 1px solid rgba(196, 204, 196, 1);
	height: 54px;
	padding: 0px 17px;
	display: flex;
	align-items: center;
	min-width: calc(100% - 35px);
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
}
.contact_form input:hover, .contact_form textarea:hover{
	border: 1px solid rgba(21, 31, 21, 1);
}
.contact_form input:focus, .contact_form textarea:focus{
	border: 1px solid rgba(24, 122, 24, 1)
}

.contact_form input::placeholder{
	color: #606660;
}
.contact_form textarea{
	height: auto;
	padding: 17px;
	min-height: 124px;

	
}
.contact_form button{
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(69, 102, 69, 1);
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 19px;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	color: rgba(247, 247, 242, 1);
	border: none;
	min-height: 56px;
	cursor: pointer;
}
.contact_form button:hover{
	background: rgba(24, 122, 24, 1);
}

.team_bl_2{
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center; 
}
.team_bl_2_container_line{
	padding: 96px 96px 96px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	    min-width: calc(100% - 256px);
}
.team_founders .team_bl_2_container_line{
	padding: 177px 96px;
}
.team_founders .team_bl_2_container_line{
	padding: 96px 96px 96px
}
.team_bl_2_block_title{
	max-width: 740px;
	min-width: 740px;
}
.team_bl_2_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 32px;
	line-height: 110.00000000000001%;
	letter-spacing: -1.3px;
	padding-bottom: 32px;
	color: #151F15;
}
.team_bl_2_text{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660

}
/*.team_founders .team_bl_2_text{
		
		color: #151f15;
	}*/
.team_bl_2_text span{
		color: #187A18;
		font-weight: 500
	}

.list_people{
	background: #F2F2ED;
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.list_people.list_fon{
	background: rgba(247, 247, 242, 1);
	position: relative;
	z-index: 9;
}
.list_people_while{
	background: transparent;
	border-top: 1px solid #C4CCC4; 
	/*border-bottom:  1px solid #C4CCC4; */
}
.list_people_container{
	padding: 128px;
	min-width: calc(100% - 256px);
}
.list_services_people_first .list_people_container{
	padding: 96px 128px 128px;
}
.list_services_people_two .list_people_container{
	padding: 118px 128px 96px;
}
.list_people_title{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	margin-bottom: 64px;
	color: #151F15
}
.list_services .list_people_title{
	margin-bottom: 48px;
}


.list_ser_title{
	margin-bottom: 48px;
}
.list_people_title span{
	font-weight: 500;
	letter-spacing: -0.3px;
	color: #187A18
}
.list_people_list_line{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 29px;
}
.list_people_while .list_people_list_line{
	justify-content: flex-start;
}
.people_list_card{
	min-width: calc(25% - 22px);
	max-width: calc(25% - 22px);
}
.people_list_card img{
	min-height: 350px;
	max-height: 350px;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: left top;
	margin-bottom: 16px;
}
.people_list_card:hover svg path{
	fill: #2D64BC
}
.list_services_people .people_list_card img{
	margin-bottom: 20px;
}
.people_list_name{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0px;
	display: flex;
	gap: 11px;
	margin-bottom: 8px;
	color: #151F15
}
.people_list_position{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660

}

.list_services{
	background: transparent;
}

.list_services_list_line{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.list_services_card {
    min-width: calc(33% - 77px);
    max-width: calc(33% - 77px);

    background: #F2F2ED;
    border: 0.5px solid #A0A3A080;
    padding: 32px;

    display: flex;
    flex-direction: column;
    min-height: 335px;
    overflow: hidden;
    transition: background .35s ease, border-color .35s ease;
}
.list_services_team .list_services_card {
    min-width: calc(33% - 75px);
    max-width: calc(33% - 75px);
    }
.list_services_img {
    max-width: 128px;
    min-width: 128px;
    min-height: 128px;
    max-height: 128px;
    object-fit: contain;
    object-position: center;
   /* margin-bottom: 104px;*/

    filter: grayscale(100%);
    
    transition: filter .35s ease, opacity .35s ease;
}

.list_services_name {
    font-family: 'PP Neue Montreal', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #151F15;

    margin-top: auto;
    margin-bottom: 0;

    transition:
        color .35s ease,
        margin-bottom .35s ease;
}

.list_services_text {
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0px;
    color: #606660;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition:
        max-height .35s ease,
        opacity .35s ease;
}


.list_services_card:hover {
    background: #E4EFDF;
    border-color: #E4EFDF;
}

.list_services_card:hover .list_services_img {
    opacity: 1;

    filter:
        brightness(0)
        saturate(100%)
        invert(33%)
        sepia(84%)
        saturate(1060%)
        hue-rotate(83deg)
        brightness(92%)
        contrast(92%);
}

.list_services_card:hover .list_services_name {

    margin-bottom: 24px;
}

.list_services_card:hover .list_services_text {
    max-height: 120px;
    opacity: 1;
}








.ready_contact{
	position: relative;
	overflow: hidden;
	padding: 397px 128px 226px;
}
.cont_over{
	position: absolute;
    height: 200%;
    width: calc(100% - 220px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 167px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url(/wp-content/uploads/2026/06/Vector.svg);
}


.list_portfolio{
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.list_portfolio_line{
	position: relative;
	overflow: hidden;
	padding: 96px 128px 128px;
	min-width: calc(100% - 256px);
}
.list_portfolio_cont_over{
	position: absolute;
    height: 200%;
    width: calc(100% - 256px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url(/wp-content/uploads/2026/06/Vector.svg);
}
.list_portfolio_cont_over_spesh{
	position: absolute;
	top: 65px;
	left: 0;
	right: 0;
	margin: auto;
	width: 1px;
	height: 64px;
	background: #187A18;
}
.portfolio_block{
	position: relative;
	z-index: 9
}

.portfolio_block__title{
	min-width: 100%; 
	text-align: center;
	padding-bottom: 64px;
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	color: #151F15;
	padding-top: 81px;

}
.portfolio_block__list{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio_card{
	padding: 128px 36px 48px;
	
	min-height: 264px;
	background: #F2F2ED;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.portfolio_card h3{
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: bottom;
	color: #151F15;
}

.back_footer{
	background: url(https://fuzionx-new.equal.design/wp-content/uploads/2026/07/BG.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 60% top;
	min-width: 100%;
	position: relative;
	z-index: 999
}
@media(min-width: 1920px){
	.back_footer{
		background-size: contain;
	}
}
.ignite_card{
	min-height: calc(400px - 64px);
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	display: flex;
}
.ignite_card h3{
	margin-bottom: 0px;
}
.linck_soc{
	display: flex;
	align-items: center;
}
.linck_soc:hover svg path{
	fill: #2D64BC;
}
/*.portfolio_card_hover{
	display: none
}
.portfolio_card:hover .portfolio_card_hover{
	display: block
}
.portfolio_card:hover .portfolio_card_non_hover{
	display: none
}*/
.portfolio_card {
    position: relative;
    overflow: hidden;
}

/*.portfolio_card_non_hover,
.portfolio_card_hover {
    transition:
        transform .45s ease,
        opacity .35s ease;
}

.portfolio_card_non_hover {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.portfolio_card_hover {
    position: absolute;
    top: 128px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) rotate(-180deg) scale(.7);
    pointer-events: none;
}

.portfolio_card:hover .portfolio_card_non_hover {
    opacity: 0;
    transform: rotate(180deg) scale(.7);
}

.portfolio_card:hover .portfolio_card_hover {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
}
*/
.portfolio_card_icon {
    overflow: visible;
}

.portfolio_card_icon_left {
    transition: opacity .35s ease;
}



.portfolio_card:hover .portfolio_card_icon_left {
    opacity: 0;
}

.portfolio_card_icon_right {
    transform-box: view-box;
    transform-origin: 64px 81px;
    transition:
        transform .45s ease,
        opacity .35s ease,
        fill .35s ease;
}

.portfolio_card:hover .portfolio_card_icon_right {
    opacity: 1;
    fill: #38A938;
    transform: scaleX(-1);
}


.portfolio_card {
    position: relative;
}

.portfolio_card::after {
    content: "Learn more";
    position: absolute;
    left: 50%;
    bottom: 48px;

    transform: translateX(-50%) translateY(10px);

    opacity: 0;

    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0px;

    color: #606660;

    transition: all .35s ease;
}

.portfolio_card:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.portfolio_card h3{
    transition: transform .35s ease, color .35s ease;
}

.portfolio_card:hover h3{
    transform: translateY(-30px);
}




.portfolio_card:hover{
	background: #E4EFDF;
}

.portfolio_card:hover h3{
	color: #187A18;
}


.singl_port{
	min-width: calc(100% - 192px);
	padding: 171px 96px 128px;
	position: relative;
}
.cont_port{
	position: absolute;
    height: 115%;
    width: calc(100% - 256px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 170px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url(/wp-content/uploads/2026/06/Vector.svg);
}
.singl_port__body{
	margin: 0 48px;
	min-width: calc(100% - 544px);
	padding: 96px 128px;
	background: #F2F2ED;
	position: relative;
	z-index: 9;
}
.singl_port__back{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.3px;
	color: #187A18;
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 23px;
}

.singl_port__title{
	min-width: 100%;
	font-family: 'PP Neue Montreal', 'Inter', sans-serif;
	font-weight: 350;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -3.2px;
	color: #151F15;
	padding-bottom: 24px;
}

.singl_port__description{
	min-width: 100%;
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660;
	padding-bottom: 48px;
}

.singl_port__subtitle{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	padding-bottom: 8px;
	color: #151F15;
	min-width: 100%;

}
.singl_port__row{
	padding: 15px 0px;
	border-bottom: 1px solid #C4CCC4; 
	min-width: 100%;
}
.singl_port__row:last-child{
	border: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.singl_port__row span:first-child{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660;
	padding-bottom: 8px;
	min-width: 100%;
	display: block;

}
.singl_port__row span:last-child{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #151F15;
	display: block;
}

.singl_port__row a{
	font-family: 'Geist', 'Inter', sans-serif;
	font-weight: 300;
	font-style: Regular;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0px;
	text-decoration: none;
	color: #187A18;
	display: flex;
	align-items: center;
	gap: 8px;
}


.founder-roadmap {
    position: relative;
    background: #f8f8f2;
}

.founder-roadmap__inner {
    padding: 0px 128px;
	min-width: calc(100% - 256px);
    margin: 0 auto;
   
}

.founder-roadmap__tabs {
    position: sticky;
    top: 0px; /* висота хедера */
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #f8f8f2;
    margin-bottom: 104px;

}

.founder-roadmap__tab {
    font-family: 'Geist';
	font-weight: 200;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	background: #F2F2ED;
    color: #151F15;
    cursor: pointer;
    border: none;
    border-right: 0.5px solid #C4CCC4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 37px 0 38px;
}
.founder-roadmap__tab svg{
	display: none;
}
.founder-roadmap__tab:last-child{
	border-right: 0px solid #C4CCC4
}
.founder-roadmap__tab.active {
    background: #E4EFDF;
    color: #187A18;
    font-weight: 400;
}
.founder-roadmap__tab.active svg{
	display: block;
}

.founder-roadmap__items {
    position: relative;
}

.founder-roadmap__items::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #C4CCC4;
}

.founder-roadmap__item {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    padding-bottom: 21px;
   
    transition: opacity 0.25s ease;
}

.founder-roadmap__item.active {
    opacity: 1;
}

.founder-roadmap__dot {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 1px solid #16801f;
    border-radius: 50%;
    background: #f8f8f2;
    margin-top: 4px;
}


.founder-roadmap__content{
	padding-left: 52px;
}
.founder-roadmap__content h3 {
	font-family: PP Neue Montreal;
	font-weight: 300;
	font-size: 56px;
	line-height: 110.00000000000001%;
	letter-spacing: -0.3px;
    margin: 0 0 16px;
    padding-top: 25px;
}

.founder-roadmap__item.active h3 {
    color: #187A18;
    font-weight: 400;
}

.founder-roadmap__desc {
    max-width: 900px;
    margin-bottom: 48px;
    font-family: 'Geist';
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660
}

.founder-roadmap__item.active .founder-roadmap__desc{
	color: #151F15
}

.founder-roadmap__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;

    max-height: 0;
    /*overflow: hidden;*/

    opacity: 0;

    transition:
        max-height .6s ease,
        opacity .3s ease;
}

.founder-roadmap__item.active .founder-roadmap__cards,
.founder-roadmap__item.passed .founder-roadmap__cards {
    max-height: 1200px;
    opacity: 1;
}

.founder-roadmap__card {
    padding: 32px;
    background: #f4f4ef;
    transition: background 0.2s ease;
}



.founder-roadmap__card h4 {
    margin: 0 0 8px;
    font-family: PP Neue Montreal;
	font-weight: 300;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0px;
	color: #151F15;
}

.founder-roadmap__card p {
    margin: 0;
    font-family: 'Geist';
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #606660;
}





.founder-roadmap__items {
    position: relative;
    --progress-height: 0px;
}

.founder-roadmap__items::before,
.founder-roadmap__items::after {
    content: "";
    position: absolute;
    left: 56px;
    top: 0;
    width: 1px;
    z-index: 1;
    pointer-events: none;
}

.founder-roadmap__items::before {
    height: var(--line-height, 100%);
    background: #d9ded6;
}

.founder-roadmap__items::after {
    height: min(var(--progress-height), var(--line-height, 100%));
    background: #16801f;
}

.founder-roadmap__dot {
    position: relative;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 0;
    background: transparent;
    z-index: 3;
    border-radius: 0;
}

.founder-roadmap__dot::before {
    content: "";
    position: absolute;
    inset: 0;
   /* background: #f8f8f2;*/
    z-index: 1;
}
.founder-roadmap__card.active .founder-roadmap__card-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #187A18;
    z-index: 1;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
}

.founder-roadmap__dot svg {
    position: relative;
    z-index: 2;
    display: block;
}


.founder-roadmap__dot {
    position: relative;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 0;
    background: #f8f8f2;
    z-index: 99;
    border-radius: 0;
}

.founder-roadmap__dot svg {
    display: block;
}


.founder-roadmap__card {
    position: relative;
    display: grid;
    display: flex;

    padding: 33px 32px;
    padding-right: 64px;
    background: #F2F2ED;
    transition: background 0.2s ease;
}
.founder-roadmap__card:last-child {
	margin-bottom: 70px;
}

.founder-roadmap__card-dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 1px solid #C4CCC4;
    border-radius: 50%;
    background: #f8f8f2;
    margin-top: 4px;
    transition: 0.2s ease;
    position: absolute;
    left: -96px;
    top: calc(50% - 12px);
}

.passed_child .founder-roadmap__card-dot {
	border-color: #187A18;
}
.founder-roadmap__card-dot::before{
	content: "";
    position: absolute;
    inset: 0;
    background: #f8f8f2;
    z-index: 1;
    border-radius: 50%;
}


.founder-roadmap__card.active {

    background: #38A9381A;

}

.founder-roadmap__card.active .founder-roadmap__card-dot {
    border-color: #187A18;
  
    box-shadow: inset 0 0 0 5px #f8f8f2;
}

.founder-roadmap__card.active h4 {
    font-weight: 400;
    color: #151F15;
}

.founder-roadmap__card.active p {
    color: #151F15;
}

.founder-roadmap__items {
    position: relative;
    z-index: 0;
    --progress-height: 0px;
}

.founder-roadmap__items::before,
.founder-roadmap__items::after {
    z-index: 0;
}

.founder-roadmap__item {
    position: relative;
    z-index: 2;
}

.founder-roadmap__content,
.founder-roadmap__cards,
.founder-roadmap__card {
    position: relative;
    z-index: 3;
}
.founder-roadmap__dot {
    position: relative;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 0;
    background: #f8f8f2;
    z-index: 4;
    border-radius: 0;
}


.moby_burger, .moby_but, .menu_foo_moby, .moby_insta{
	display: none;
}
.mobile_menu_popup{
	display: none;
}
.menu_moby_foo{
	display: none;
}
.company_list_one_title_moby{
	display: none
}
#menu-top{
	flex-wrap: nowrap;
	padding-left: 0px;
}
@media(max-width: 1200px){
	.company{
		padding: 160px 48px 128px;
		min-width: calc(100% - 150px);
		max-width: calc(100% - 150px);
	}
	.ideals{
		min-width: 100%
	}
	
	.founder-roadmap__desc br{
		display: none
	}
	.what_cont_over{
		width: 100%;
	}
	.regalii, .ideals, .what, .viability, .company, .ready, footer, .copir, .list_people_container, .team_bl_2_container_line, .list_portfolio_line, .header_container, .founder-roadmap__inner, .team_founders .team_bl_2_container_line {
	    min-width: calc(100% - 96px);
	    padding-left: 48px;
	    padding-right: 48px;
	}
	.team_founders .team_bl_2_container_line{
		min-width: calc(100% - 48px)  !important;
	    padding-left: 24px !important;
	    padding-right: 24px  !important;
	}
	.list_portfolio_cont_over, .cont_port{
		width: calc(100% - 96px);
	   
	}
	.list_services_people_first .list_people_container{
		padding: 96px 48px 128px;
	}
	.list_services_people_two .list_people_container{
		padding: 118px 48px 96px;
	}
	.hero_content{
		padding-left: 48px;
	}
	.regalii_cont_over{

	}
}


@media(max-width: 1025px){
	
	.menu{
		gap: 20px;
	}
	.hero_content{
		/*padding-left: 48px;*/
	}
	.portfolio_block__title{
		font-size: 40px;
		    padding-bottom: 24px;
	}
	.regalii, .ideals, .what, .viability, .company, .ready, footer, .copir, .list_people_container, .team_bl_2_container_line, .list_portfolio_line, .founder-roadmap__inner {
	    min-width: calc(100% - 96px);
	    padding-left: 48px;
	    padding-right: 48px;
	}
	.founder-roadmap__inner{
		min-width: calc(100% - 48px)  !important;
	    padding-left: 24px !important;
	    padding-right: 24px  !important;
	}
	.list_people_container{
		min-width: calc(100% - 256px);
	}
	.list_services_team .list_services_card {
	    min-width: calc(50% - 75px);
	    max-width: calc(50% - 75px);
	}
	.list_people_list_line{
		flex-wrap: wrap;
	}
	.people_list_card{
		min-width: calc(50% - 20px);
	}
	.regalii_cont_over{
		min-width: calc(100% - 96px);
	}
	.portfolio_card{
		padding-left: 48px;
	    padding-right: 48px;
	}
	.ideals_list_one_img{
		transform: scale(1);
	}
	.ideals{

	}

	
}
@media(max-width: 900px){
	.company_list_one_title_desc{
		display: none
	}
	.company_list_one_title_moby{
		display: block;
	}

	header .menu_container, header .header_container .button{
		display: none;
	}
	footer{
		flex-wrap: wrap;
	}
	.back_footer{
		background: url(/wp-content/uploads/2026/07/BG-mob.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center top;
		min-width: 100%;
	}
	.copy_text{
		padding-top: 12px;
	}
	.menu_moby_foo{
		display: block;
		min-width: 100%;
		padding-bottom: 48px;
	}
	.menu_moby_foo .menu{
		padding-left: 0
	}
	.menu_moby_foo .menu li{
		min-width: 100%;
	}
	.menu_moby_foo .menu li a{
		color: #606660
	}
	#menu-top{
		flex-wrap: wrap;
	}
	.header_container{
		padding: 32px 24px;
		min-width: calc(100% - 48px);
	}

	/*.hero_unicorn_bg{
		display: none;
	}*/
	/*.hero{
		background-image: url(/wp-content/uploads/2026/06/copy_of_space_for_mind_remix_2_scene-1.png); 
		background-size: cover;
		background-position: center;
	}*/
	.hero_team{
		align-items: flex-end;
	}
	.hero_team .hero_content h1{
		padding-bottom: 84px;
	}
	.hero_content{
		padding: 0px 24px;
		position: absolute;
    	bottom: 40px;
    	z-index: 99
	}
	.hero_content h1, .hero_content h1 span{
		font-size: 40px;
		line-height: 110%;
	}
	.hero_team::before, .hero_first::before{
		display: none;
	}
	.hero_founders h1, .hero_content h1{
		padding-bottom: 84px;
	}
	.white_head .moby_burger path{
		fill: #151F15 !important;
	}
	
	.company_list_one, .company_list_one_text_block{
		    flex-wrap: wrap;
	}
	.company_list_one_text_block{
		gap: 0px;
	}
	.copir{
		flex-wrap: wrap;
	}

	.viability, .company, footer{
		padding: 48px 24px 72px;
		min-width: calc(100% - 48px);
	}
	footer{
		padding-bottom: 48px;
	}
	.company{
		padding: 86px 0px 48px;
		        min-width: calc(100%);
	}
	.company .company_title, .company .company_list_one_title, .company .company_list_one_text_block{
		padding: 0px 24px;
	}
	.company_list_one_title{
		padding: 0px !important;
		padding-bottom: 24px !important;
	}
	.company .moby_but{
		        margin: 24px 24px 0px;

	}
	.company_list_one_text{
		min-width: 100%;
	}
	.copir .footer_right{
		flex-wrap: wrap;
	}
	.copir{
		padding: 24px;
		min-width: calc(100% - 48px);
    	max-width: calc(100% - 48px);
	}
	.moby_burger{
		display: block;
	}
	.regalii{
		padding: 40px 24px 48px;
		min-width: calc(100% - 48px);
    	max-width: calc(100% - 48px);
	}
	.regalii .regalii_cont_over, .regalii .spliter{
		display: none
	}
	.regalii_list{
		max-width: 100%;
	    min-width: 100%;
	    flex-wrap: wrap;
	    gap: 48px;
	}
	.regalii_tag{
		margin: 0px;
		text-align: left;
		font-size: 20px;
		line-height: 100%;
		padding-bottom: 24px;
	}
	.regalii_title{
		margin: 0px;
		text-align: left;
		font-size: 28px;
		line-height: 115%;
		padding-bottom: 37px;
	}
	.regalii_title br{
		display: none
	}
	.regalii_list_one{
		text-align: left;
    	min-width: 100%;
	}
	.regalii_list_one_title{
		font-size: 64px;
		text-align: left;
	}
	.regalii_list_one_text{
		font-size: 20px;
		text-align: left;
	}

	.ideals{
		padding: 48px 24px;
		min-width: calc(100% - 48px);
    	max-width: calc(100% - 48px);
	}
	.ideals_title{
		font-size: 40px;
		text-align: left;
	}
	.ideals_text{
		text-align: left;
		padding: 24px 0 56px;
	}
	.ideals_text br{
		display: none
	}
	.ideals_list{
		flex-wrap: wrap;
		gap: 16px;
	}
	.what_title{
		font-size: 40px;
	}
	.ideals_list_one{
		min-width: calc(100% - 48px);
		max-width: calc(100% - 48px);
		min-height: 279px;
		max-height: 279px;
		padding: 24px;
	}
	.ideals_list_one_img{
		min-width: 212px;
    	min-height: 212px;
    	max-width: 212px;
    	max-height: 212px;
    	transform: scale(1.4);
	}
	.ideals_line_button{
		margin-top: 48px;
	}
	.ideals_line_button .button{
		padding: 0px 0px;
		min-width: 100%;
	}
	.what{
		padding: 0px;
		min-width: 100%;
	}
	.what_block{
		padding: 48px 24px;
		min-width: calc(100% - 48px);
		max-width: calc(100% - 48px);
	}

	.viability_title{
		font-size: 40px; 
		line-height: 110%;
		
		text-align: left;
	}
	.viability_text{
		text-align: left;
		padding: 24px 0 48px;
	}

	.viability_list_one_img{
		min-height: 48px;
	    max-width: 48px;
	    min-width: 48px;
	}
	.viability_list_one{
		padding-top: 24px;
	}
	.viability_list_one_title{
		font-size: 16px;
		padding-top: 31px;
	}
	.viability_text_button{
		text-align: left;
	}
	.company_line_title{
		padding-bottom:24px;
	}
	.company_line_title .button{
		display: none;
	}
	.company_title{
		font-size: 40px;
	}
	.company_list_one:first-child{
		border-top: 0px solid rgba(196, 204, 196, 1);
	}
	.company_list_one{
		padding: 48px 0px;
	}
	.company_list_one_num{
		order: 0;
	}
	.company_list_one_title{
		order: 1;
		min-width: 100%;
		padding: 24px 0;
	}
	.company_list_one_text{
		order: 2;
		color: #606660
	}
	.moby_but{
		display: block;
		padding: 14px 28px;
	}

	.ready{
		flex-wrap: wrap;
		padding: 96px 24px 48px;
		min-width: calc(100% - 48px);
	}

	.ready_block_title{
		min-width: 100%;
		max-width: 100%;
	}
	.ready_form {
	    min-width: 100%;
		max-width: 100%;
		padding-left: 0px;
	}

	.ready_title{
		font-size: 40px;
		line-height: 110%;
		padding-bottom: 32px;
	}
	.ready_text br{
		display: none;
	}
	.ready_text{
		padding: 0px 0 32px;
	}
	.ready_email{
		margin-bottom: 48px;
		display: block;
		padding-top: 0px;
		width: max-content;
	}
	.footer_right{
		display: none;
	}
	.menu_foo_moby, .moby_insta{
		display: flex;
	}
	.menu_foo_moby .menu {
		gap: 12px;
		padding-left: 0;
		padding-bottom: 12px;
	}
	.menu_foo_moby .menu li{
		min-width: 100%;
	}
	.menu_foo_moby .menu a{
		color: #606660;
		font-size: 14px;
	}
	.copir .footer_left{
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-width: 100%
	}
	.moby_insta{
		filter: grayscale(100%);
	}

	.team_bl_2_container_line, .list_people_container{
		padding: 48px 24px !important;
		min-width: calc(100% - 48px);
		max-width: calc(100% - 48px);
	}








	.list_services_card .list_services_name {
	    margin-bottom: 16px;
	}
	.list_services_card .list_services_text {
	    max-height: 120px;
	    opacity: 1;
	}
	.team_bl_2_container_line{
		padding: 40px 24px 48px;
	}
	.list_people_container{
		padding-bottom: 96px;
	}
	.team_founders .team_bl_2_container_line {
	    padding: 49px 24px 34px;
	}
	.team_bl_2_block_title{
		max-width: 100%;
    	min-width: 100%
	}
	.team_bl_2_container_line svg{
		display: none;
	}
	.team_bl_2_title{
		font-size: 28px;
		padding-bottom: 24px
	}
	.team_bl_2_text{
		font-size: 28px;
		color: #606660;
	}
	.team_founders .team_bl_2_text{
		font-size: 24px;
		
	}
	
	.team_bl_2_team .team_bl_2_text{
		font-size: 24px;
	}

	.team_bl_2_text br{
		display: none;
	}
	.list_people_title{
		font-size: 40px;
	}
	.list_people_list_line{
		flex-wrap: wrap;
	}
	.people_list_card{
		min-width: calc(50% - 20px);
	}
	.people_list_card img{
		min-height: 400px;
    	max-height: 400px;
    	object-fit: contain;
	}
	/*.people_list_name{
		justify-content: space-between;
	}*/
	.list_people_title{
		margin-bottom: 48px
	}
	.list_services_card{
		min-width: calc(50% - 76px) !important;
    	max-width: calc(50% - 76px) !important;
    	max-width: 327px;
    	border: 0px solid #A0A3A080;
	}
	.ignite_card {
    	min-height: calc(399px - 64px);
    }
	.list_services_img{
		/*margin-bottom: 60px;*/
	}
	.list_portfolio_line{
		padding: 36px 24px 48px;
		min-width: calc(100% - 48px);
		max-width: calc(100% - 48px);
	}
	.portfolio_block__list{
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
	}
	.portfolio_card{
		min-width: calc(100% - 96px);
		min-height: 248px;
		padding: 74px 48px 48px;
	}
	.portfolio_card::after {
	    opacity: 1;
	    transform: translateX(-50%) translateY(0);
	    color: #187A18;
	    padding-top: 16px;
	    bottom: 40px;
	}
	.comingsoon::after{
		display: none
	}
	.comingsoon{
		padding-bottom: 16px;
	}
	.portfolio_card h3 {
	    transform: translateY(-30px);
	    color: #151F15;
	}
	
	.list_portfolio_cont_over{
		width: calc(100% - 48px);
		 background-image: url(/wp-content/uploads/2026/06/Vector.svg);
	}
	.list_portfolio_cont_over_spesh{
		top: 0;
	}
	.singl_port {
	    min-width: calc(100% - 48px);
	    padding: 170px 24px 48px;
	}
	.singl_port__body {
	    margin: 0;
	    min-width: calc(100% - 48px);
	    padding: 24px;
	}
	.singl_port__title{
		font-size: 32px;
	}
	.cont_port{
		width: calc(100% - 48px);
		    top: 110px;
		background-image: url(/wp-content/uploads/2026/06/Vector-1.svg);
	}
	.what_text{
		padding: 0px 0px;
	}

	.ready_contact{
		padding-top: 200px;
	}

	.cont_over{
		width: calc(100% - 48px);
		top: 153px;
		background-image: url(/wp-content/uploads/2026/06/Vector.svg);
	}
	.founder-roadmap{
		padding-bottom: 0px;
		border-bottom: 1px solid #C4CCC4;
		margin-bottom: 48px;

	}
	.founder-roadmap__tabs{
		display: none;
	}
	.mobile_menu_popup {
	    position: fixed;
	    inset: 0;
	    background: #F7F7F2;
	    z-index: 999999999999999;
	    transform: translateX(100%);
	    transition: transform .35s ease;
	    padding: 24px;
	    display: block;
	    width: calc(100% - 48px);
        height: calc(100vh - 48px);
	}

	.mobile_menu_popup.active {
	    transform: translateX(0);
	}

	.mobile_menu_close {
	    position: absolute;
	    right: 24px;
	    top: 18px;
	    border: 0;
	    background: none;
	    font-size: 56px;
	    line-height: 1;
	    color: #151F15;
	}

	.mobile_menu_inner {
	    min-height: calc(100vh - 48px);
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	}

	.mobile_menu_popup .menu {
	    padding: 0;
	    margin: 0;
	    display: flex;
	    flex-direction: column;
	    gap: 28px;
	    align-items: center;
	}

	.mobile_menu_popup .menu a {
	    color: #151F15;
	    font-size: 24px;
	}
	.mobile_menu_popup .menu a::before, .mobile_menu_popup .menu a::after{
		opacity: 1;
		
	}
	.mobile_menu_popup .current_page_item a{
		display: inline-flex;
		align-items: center;
	}

	.mobile_menu_info {
	    margin-top: 96px;
	   	font-family: 'Geist';
		font-weight: 300;
		line-height: 130%;
		letter-spacing: 0px;
		text-align: center;

	    color: #606660;
	    font-size: 16px;
	}

	.mobile_menu_info a {
	    display: block;
	    margin-top: 24px;
	    color: #606660;
	}

	.mobile_menu_button {
	    width: 100%;
	    margin-top: 56px;
	    padding: 16px 0;
	    border: 1px solid #AAADAA;
	    text-align: center;
	    color:#151F15;
	    font-family: 'Geist';
		font-weight: 300;

		font-size: 18px;

		line-height: 19px;
		letter-spacing: 0px;
		text-align: center;
		vertical-align: middle;

	}
	.mobile_menu_popup .current_page_item a{
		color: #187A18;
		font-weight: 500;
	}

	/**/

}	
@media(max-width: 600px)
{

	.people_list_card{
		min-width: 100%;
		max-width: 100%;
	}
	.list_services_card{
		min-width: calc(100% - 64px) !important;;
		max-width: calc(100% - 64px) !important;;
    	
	}
	.hero_policy h1{
		font-size: 40px !important;

	}
	.hero_policy{
		min-height: 70px !important;
	}
}

.company_list_one_icon{
    position: relative;
    min-width: 96px;
    height: 96px;
    overflow: hidden;
    margin-left: 40px;
}

.company_list_one_num{
    position: absolute;
    inset: 0;
    transition: transform .35s ease, opacity .35s ease;
}

/* картинка з адмінки */
.def_icon{
    opacity: 1;
    transform: translateY(0);
}

/* логотип */
.hov_icon{
    opacity: 0;
    transform: translateY(100%);
    left: 34px;
}

/* hover */
.company_list_one:hover .def_icon{
    opacity: 0;
    transform: translateY(-100%);
}

.company_list_one:hover .hov_icon{
    opacity: 1;
    transform: translateY(0);
}
.hero_policy{
	min-height: 100px;
    display: flex;
    justify-content: left !important;
    font-family: 'PP Neue Montreal', sans-serif;
    padding: 150px 96px 0px;
}
.hero_policy h1{
	font-size: 70px;
}
.hero_policy::after{
	display: none;
}
.policy{
	font-family: 'Geist';
	font-weight: 300;
	font-size: 18px;
}
.line_policy_first{
	padding: 0px 0px 48px;
	color: #606660
}
.policy h1, .policy h2, .policy h3, .policy h4, .policy h5 {
	font-family: 'PP Neue Montreal', sans-serif;
}
.hero_policy h1{
	font-weight: 300;
}
.policy h2 b, .policy h2{
	font-size: 32px;
	font-weight: 300;
	padding-top: 32px;
}
.policy h3 b, .policy h3{
	font-size: 24px;
	font-weight: 300;
	padding-top: 24px;
}

.policy{
	padding: 0px 96px 72px;


}
.policy p, .policy ul{
	color: #606660
}

@media(min-width: 1440px){
	.list_services_team .list_people_container{
		padding-left: calc(50% - 624px);
	    padding-right: calc(50% - 624px);
		min-width: 1184px;
	    max-width: 1184px;
	}
	.list_services_team .list_services_card{
		min-width: calc(33% - 75px);
    	max-width: calc(33% - 75px);
	}
	.list_services_people .list_people_container{
		padding-left: calc(50% - 624px);
	    padding-right: calc(50% - 624px);
		min-width: 1184px;
	    max-width: 1184px;
	}
	.list_services_people .list_services_card{
		min-width: calc(33% - 73px);
    	max-width: calc(33% - 73px);
	}
	.cont_port, .cont_over{
		height: 100%;
		background-size: cover;
		width: 1184px; 
	}
	.regalii_cont_over, .list_portfolio_cont_over{
		 width: 1184px;
	}
	.list_portfolio_line{
		min-width: 1184px;
	}
	.ready{
	    padding-left: calc(50% - 592px);
	    padding-right: calc(50% - 592px);
	    min-width: 1184px;
	    max-width: 1184px;
	}
}

@media(min-width: 1440px){
	.header_container, .hero_content, .ideals_line{
		min-width: 1184px;
		max-width: 1184px;
	}
	.hero{
		justify-content: center;
	}
	.hero_content{
		padding-left: 0px;
	}
	.ideals {
	 
	    min-width: 1184px;
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	}
	.ideals_title, .ideals_text{
		min-width: 100%;
	}
	.company_line_title, .company_list{
		min-width: 1184px;
    	max-width: 1184px;
	}
	.company{
		display: flex;
    	flex-wrap: wrap;
    	justify-content: center;
	}
	.ready, footer, .copir, .what, .team_bl_2_container_line, .list_people_container,  .singl_port, .policy, .founder-roadmap__inner, .hero_policy{
	    padding-left: calc(50% - 592px);
	    padding-right: calc(50% - 592px);
	    min-width: 1184px;
	    max-width: 1184px;
	}
	.list_services .list_people_container{
		padding-left: calc(50% - 624px);
	    padding-right: calc(50% - 624px);
		min-width: 1184px;
	    max-width: 1184px;
	}
	.singl_port{
		padding-left: calc(50% - 480px);
	    padding-right: calc(50% - 480px);
	    min-width: 960px;
	}
	.what_cont_over{
	    width: 1184px;

	}
	.regalii_cont_over, .list_portfolio_cont_over{
		 width: 1184px;
	}
	.singl_port__body{
		margin: 0;
	}

	.ideals{
		padding-left: calc(50% - 592px);
	    padding-right: calc(50% - 592px);
	    min-width: 1184px;

	}
}

.logo_link img{
	max-height: 28px;
}
@media(max-width: 900){
	.logo_link img{
		max-height: 32px;
	}
}
footer .logo_link img{
	max-width: 142px;
}

.ready .last_step{
    display: none;
}

.ready.is-success .first_step{
    display: none;
}

.ready.is-success .last_step{
    display: flex;
    min-width: 100%;
    justify-content: center;
}

.first_step{
  
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ready_contact .first_step, .ready_contact .last_step{
	padding: 0 32px;
}


.last_step .portfolio_block{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.last_step .portfolio_block p{
	min-width: 100%;
	text-align: center;
	font-family: 'Geist';
	font-weight: 300;
	margin: 0px;
	font-size: 24px;

	line-height: 130%;
	letter-spacing: -0.6px;
	text-align: center;
	color: #606660;
	padding-bottom: 48px;
}
.last_step .portfolio_block__title{
	padding-bottom: 24px;
	padding-top: 69px;

}
.last_step .list_portfolio_cont_over{
	display: flex;
	justify-content: center;
}
@media(max-width: 900px){
	.last_step .portfolio_block p br{
		display: none;
	}
	.company_list_one_icon{
		margin-left: 0px;
	}
	.company_list_one:hover{
		border-top: 1px solid rgba(196, 204, 196, 1);
	}
	.company_list_one:first-child:hover{
		border-top: 0px solid rgba(196, 204, 196, 1);
	}
	.company_list_one:hover .company_list_one_title {
	    color: rgba(21, 31, 21, 1);
	}
	.company_list_one:hover .def_icon {
	    opacity: 1;
	    transform: translateY(0%);
	}
	.company_list_one:hover .hov_icon{
		display: none
	}
	.company_list_one:hover .company_list_one_text {
	    color: #606660;
	}
	.policy, .hero_policy{
		padding-left: 24px;
		padding-right: 24px;s
	}
	.ready_contact .first_step, .ready_contact .last_step{
		padding: 0 12px;
	}
}

.policy a{
	color: #187A18;
	border-bottom: 1px solid #187A18
}
.logo_dark {
    display: none;
}

.logo_light {
    display: block;
}

.white_head .logo_dark {
    display: block;
}

.white_head .logo_light {
    display: none;
}

.no_sticky_head {
    position: absolute;
}

.contact_form input.is-error,
.contact_form textarea.is-error {
    border-color: #D93025 !important;
}


.contact_form .field-error {
    display: none;
    margin-top: 4px;
    font-size: 16px; /* або такий самий як placeholder */
    line-height: 1.4;
    color: #D93025;
    font-family: Geist;
    font-weight: 300;
}

.contact_form input.is-error,
.contact_form textarea.is-error {
    border-color: #D93025 !important;
}

.contact_form input.is-error + .field-error,
.contact_form textarea.is-error + .field-error {
    display: block;
}
.list_services_people_first .people_list_card img, .list_services_people_two .people_list_card img{
	object-position: center top;
}
@media (max-width: 900px) {
    .list_services_people_first .people_list_card img, .list_services_people_two .people_list_card img{
		object-position: left top;
		
	}

	
}
@media (max-width: 375px) {
    .list_services_people_first .people_list_card img, .list_services_people_two .people_list_card img{
		
		min-height: max-content
	}
}
.comingsoon{
	    pointer-events: none;
}
.comingsoon_label{
	display: none;
}
.comingsoon .comingsoon_label{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 29px;
	padding-right: 8px;
	padding-left: 8px;


	background: #187A18;
	font-family: Geist;
	font-weight: 400;

	font-size: 16px;

	line-height: 130%;
	letter-spacing: 0px;
	color: #F7F7F2;
	    position: absolute;
    top: 20px;
}

.hero_content h1, .singl_port__title, .portfolio_block__title, .list_people_title, .team_bl_2_title, .ready_title, .company_list_one_title, .company_title, .viability_title, .what_title, .ideals_title, .regalii_list_one_title{
		font-weight: 300 !important;
		letter-spacing: -1px;
	}
.team_bl_2_title{
	letter-spacing: 0px;
}


.founder-roadmap__desktop {
    display: block;
}

.founder-roadmap-mobile {
    display: none;
}

@media (max-width: 900px) {
	.founder-roadmap__desktop {
	    display: none !important;
	}

	.founder-roadmap-mobile {
	    display: block;
	    position: relative;

	    --founder-mobile-sticky-top: 0px;
	}

	.founder-roadmap {
	    padding-bottom: 48px;
	    margin-bottom: 48px;
	    border-bottom: 1px solid #C4CCC4;
	}

	.founder-roadmap__inner {
	    min-width: calc(100% - 48px) !important;
	    /*padding: 32px 24px 0 !important;*/
	}

	.founder-roadmap-mobile__item {
	    position: relative;
	    margin-bottom: 8px;

	    transition:
        margin 0.1s cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* Заголовок accordion */
	.founder-roadmap-mobile__toggle {
	    width: 100%;
	    min-height: 67px;
	    padding: 0 24px;

	    transition:
        background-color 0.1s ease,
        border-color 0.1s ease,
        color 0.1s ease;

	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    gap: 16px;

	    border: 1px solid #187A18;
	    background: #F7F7F2;


	    font-family: PP Neue Montreal;
		font-weight: 350;
		font-size: 32px;
		line-height: 110.00000000000001%;
		letter-spacing: -0.3px;

	    text-align: left;

	    color: #187A18;
	    cursor: pointer;

	    z-index: 20;
	}

	/* Sticky лише у відкритого пункту */
	.founder-roadmap-mobile__item.is-open
	.founder-roadmap-mobile__toggle {
	    position: sticky;
	    top: var(--founder-mobile-sticky-top);

	    z-index: 50;

	    background: #E4EFDF;
	    border-color: #E4EFDF;

	   
	}

	/* Стрілка */
	.founder-roadmap-mobile__chevron {
	    width: 24px;
        height: 24px;
        min-width: 24px;
        transform: rotate(0deg);
        transition: transform 0.1s ease;
        display: flex;
        align-items: center;
	}

	.founder-roadmap-mobile__item.is-open
	.founder-roadmap-mobile__chevron {
	    transform: rotate(180deg);
	}

	.founder-roadmap-mobile__panel {
	    height: 0;
	    opacity: 0;
	    overflow: hidden;

	    transition:
	        height 0.1s cubic-bezier(0.22, 1, 0.36, 1),
	        opacity 0.1s ease;
	}

	.founder-roadmap-mobile__panel-inner {
	    overflow: hidden;
	    min-height: 0;
	}

	/* Опис етапу */
	.founder-roadmap-mobile__description {
	    padding: 16px 24px;

	    font-family: 'Geist';
		font-weight: 300;
		font-size: 18px;
		line-height: 130%;
	


	    color: #606660;
	}
	.founder-roadmap-mobile__description br{
		display: none;
	}

	.founder-roadmap-mobile__description p {
	    margin: 0;
	}

	/* Внутрішні картки */
	.founder-roadmap-mobile__cards {
	    display: flex;
	    flex-direction: column;
	    gap: 8px;

	    padding-bottom: 8px;
	}

	.founder-roadmap-mobile__card {
	    padding: 16px 24px;

	    background: #F2F2ED;
	}

	.founder-roadmap-mobile__card h4 {
	    margin: 0 0 8px;

	    font-family: PP Neue Montreal;
		font-weight: 300;
		font-size: 24px;
		line-height: 120%;


	    color: #151F15;
	}

	.founder-roadmap-mobile__card p {
	    margin: 0;

	    font-family: 'Geist', sans-serif;
		font-weight: 300;
		font-size: 18px;
		line-height: 130%;


	    color: #606660;
	}

	.founder-roadmap-mobile__panel {
	    position: relative;
	    z-index: 1;
	}

	.founder-roadmap-mobile__item.is-open
	.founder-roadmap-mobile__toggle {
	    position: sticky;
	    top: var(--founder-mobile-sticky-top);
	    z-index: 50;
	}

	.founder-roadmap-mobile,
	.founder-roadmap-mobile__item,
	.founder-roadmap-mobile__panel {
	    overflow-anchor: none;
	}
}
@media(max-width: 370px)
{
	.hero_content h1, .singl_port__title, .portfolio_block__title, .list_people_title, .ready_title, .company_list_one_title, .company_title, .viability_title, .what_title, .ideals_title{
		font-size: 36px
	}
	br {
        display: none;
    }

}
