/*** RESET ***/
:root{
	--greenColor: #93E932;
	--gray100: #EBEBEB;
	--gray200: #e6e6e6;
	--gray300: #585858;
	--gray400: #1F1F1F;
	--gray500: #151515;
	--gray600: #0f0f0f;
	--primaryFont: 'AkzidenzGrotesk';
	--secondaryFont: 'Minion Pro';
	--extraFont: "Abhaya Libre", serif;
	--mazzardFont: 'Mazzard H';
}

html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: #FFF;
	background: var(--gray600);
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	width:100%;
	display: inline-block;
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 14px;
	margin: 0 0 20px 0;
	line-height: 150%;
}
ul, ol{
	font-size: 14px;
	line-height: 150%;
	margin: 0 0 20px 0;
}
p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
.svg_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
}

/*** MISC ***/
body.home{
	overflow: hidden;
}
body.home.loaded{
	overflow: auto;
}
#loading_screen{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: var(--gray600);
	transition: all 0.5s;
	z-index: 999;
}
.loaded #loading_screen{
	opacity: 0;
	visibility: hidden;
}
#capital_wrapper{
	width: 260px;
	opacity: 0;
	clip-path: inset(0 83% 0 0);
	transition: clip-path 0.5s, opacity 0.3s;
}
#digital_wrapper{
	width: 260px;
	opacity: 0;
	clip-path: inset(0 0 0 78%);
	transition: clip-path 0.5s, opacity 0.3s;
}

.loading #capital_wrapper,
.loading #digital_wrapper{
	clip-path: inset(0 0 0 0);
}

#page_wrapper{
	padding-top: 70px;
}
.home #page_wrapper{
	opacity: 0;
	transition: all 0.5s;
}
.loaded #page_wrapper{
	opacity: 1;
}
.container{
	max-width: 1280px;
}
.button{
	--btnColor: var(--gray500);
    --btnColorHover: var(--gray500);
    --btnTextColor: var(--btnColor);
    display: inline-block;
    position: relative;
    background: none;
    border: 1px solid var(--btnColor);
    color: var(--btnTextColor);
    cursor: pointer;
    font-size: 14px;
    padding: 10px 35px;
    line-height: 27px;
    text-align: center;
    border-radius: 99px;
	transition: all 0.3s !important;
}
.button:not(.icon_button):hover{
	color: #FFF;
	background: var(--btnColorHover);
}
.icon_button i{
	position: absolute;
	top: 50%;
	right: 5px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transform: translateY(-50%);
    background-image: url(../images/black_arrow.svg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.icon_button i::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	border-radius: 50%;
	background: var(--greenColor);
	transform: scale(0);
	z-index: -1;
	transition: all 0.3s;
}
.icon_button:hover i::before{
	transform: scale(1);
}
.icon_button i::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
    background-image: url(../images/black_arrow.svg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.section_title{
	font-size: 90px;
    font-weight: lighter;
    color: currentColor;
    margin: 0;
}
.section_title em{
	font-family: var(--secondaryFont);
}
.section_subtitle{
	font-size: 16px;
	font-weight: normal;
	margin: 0;
}
.section_header_title{
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}
.section_header{
	padding-bottom: 20px;
	margin-bottom: 70px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

/*** GRAVITY FORMS ***/
.gform_description:empty{
	display: none;
}

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	color: #FFF;
	background: var(--gray600);
	transition: all 0.5s;
	z-index: 99;
}
.admin-bar #header{
	top: 32px;
}
.color_scheme_light:not(.menu_open) #header,
.color_scheme_light{
	background: #FFF;
	color: var(--gray600);
}
.gray_header:not(.menu_open) #header{
	background: var(--gray100);
	color: var(--gray600);
}
#header_main{
	height: 70px;
	padding: 0 40px;
}
#header_logo{
	position: relative;
	display: inline-block;
	width:58px;
}
#header_logo_black{
	position: absolute;
	top:0;
	left: 0;
	opacity: 0;
	transition: all 0.3s;
}
#header_logo_white{
	transition: all 0.3s;
}
.color_scheme_light:not(.menu_open) #header_logo_black,
.gray_header:not(.menu_open) #header_logo_black{
	opacity: 1;
}
.color_scheme_light:not(.menu_open) #header_logo_white,
.gray_header:not(.menu_open) #header_logo_white{
	opacity: 0;
}
.header_link{
	font-size: 14px;
	line-height: 18px;
}
.menu_open .header_link{
	opacity: 0;
	visibility: hidden;
}
.header_link i{
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/arrow_right.svg);
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.5s;
}
.header_link:hover i{
	transform: translateX(5px);
}
.color_scheme_light:not(.menu_open) .header_link i,
.gray_header:not(.menu_open) .header_link i{
	background-image: url(../images/arrow_right_black.svg);
}
#language_switcher{
	font-size: 13px;
	font-weight: lighter;
	color: var(--gray300);
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
.menu_open #language_switcher{
	opacity: 1;
	visibility: visible;
}

#language_switcher > *{
	position: relative;
	text-transform:uppercase;
}
#language_switcher > *:not(:last-child)::after{
	content:'|';
	position: absolute;
	top: 0;
	right: -10px;
	color: var(--gray300);
}
#language_switcher .current{
	color: var(--greenColor);
}

/*** HEADER MENU ***/
#menu_trigger{
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#menu_trigger i{
	position: relative;
	width: 25px;
	height: 10px;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: all 0.5s;
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: rotate(45deg) translateX(3px) translateY(2px);
}
.menu_open #menu_trigger i::after{
	transform: rotate(-45deg) translateX(3px) translateY(-3px);
}

/*** MOBILE MENU ***/
#mobile_menu_wrapper{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	background: var(--gray600);
}
.menu_open #mobile_menu_wrapper{
	opacity: 1;
	visibility: visible;
}
#main_menu_footer_wrapper{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
	padding: 0 40px;
}
#main_footer_menu{
	color: #FFF;
	font-size: 14px;
	padding: 30px 0;
	text-transform: uppercase;
	border-top: 1px solid var(--gray300);
}
#mobile_menu{
	position: absolute;
    top: 50%;
    left: 0;
    font-size: 45px;
    line-height: 100%;
    gap: 30px;
	color: #FFF;
    transform: translateY(-50%);
}
#mobile_menu a{
	display: inline-block;
    overflow: hidden;
    margin-left: -30px;
}
.link_mask{
	transform: translateY(100%);
    transition: all 0.5s;
	opacity: 0;
}
.menu_open .link_mask{
	transform: translateY(0);
	opacity: 1;
}
.menu_open a:nth-child(1) .link_mask{
	transition-delay: 0.6s;
}
.menu_open a:nth-child(2) .link_mask{
	transition-delay: 0.7s;
}
.menu_open a:nth-child(3) .link_mask{
	transition-delay: 0.8s;
}
.menu_open a:nth-child(4) .link_mask{
	transition-delay: 0.9s;
}
.menu_open a:nth-child(5) .link_mask{
	transition-delay: 1s;
}
.menu_open a:nth-child(6) .link_mask{
	transition-delay: 1.1s;
}
.menu_open a:nth-child(7) .link_mask{
	transition-delay: 1.2s;
}
#mobile_menu .link_wrapper{
	margin-left: -20px;
}
#mobile_menu .index{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 10px 20px 0 0;
	line-height: 20px;
	font-size: 19px;
	color: var(--gray300);
}
#mobile_menu a .link_text > span{
	display: inline-block;
	transition: all 0.3s;
}
#mobile_menu a .link_text > span.letter_space{
	width: 15px;
}
#mobile_menu a:hover .link_text > span{
	animation: flipAndMove 0.3s ease-in-out;
	transform: scaleX(-1);
	animation-delay: var(--delay);
	color: var(--greenColor);
}

@keyframes flipAndMove {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scaleX(-1);
	}
	100% {
		transform: scaleX(-1);
	}

}

/*** FOOTER ***/
#footer{
	background: var(--gray100);
}
#footer_logo img{
	width: 115px;
}
#footer_bar,
#main_menu_footer_wrapper{
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	margin-top: 40px;
	padding: 40px 0;
	font-size: 14px;
	color: var(--gray500);
	text-transform: uppercase;
}
#main_menu_footer_wrapper{
	border-top: 1px solid rgba(255,255,255, 0.2);
	color: var(--gray300);
	padding: 40px;
}
#footer_menu a,
#menu_footer_menu a{
	transition: all 0.3s;
}
#footer_menu a:hover,
#menu_footer_menu a:hover{
	text-decoration: underline;
	color: var(--greenColor);
}

/*** LANDING SECTION ***/
.landing_section{
	padding: 100px 0 90px 0
}
.landing_section h1,
.landing_section h2{
	font-size: 80px;
    font-weight: normal;
    text-transform: uppercase;
}
.landing_section h1 strong{
	font-weight: normal;
	color: var(--gray300);
}
.landing_section h1 em{
	font-family: var(--secondaryFont);
}
.scroll_circle_icon{
	display: inline-block;
	position:relative;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 1px solid var(--gray300);
	background-image: url(../images/arrow_down.svg);
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
.scroll_circle_icon:hover{
	border-color: var(--greenColor);
	background-image: url(../images/arrow_down_green.svg);
}
.scroll_circle_text{
	font-size: 14px;
	font-family: var(--extraFont);
	text-transform: uppercase;
	transform: translateX(35%);
	z-index: 2;
}
.landing_actions_image{
	width: 50%;
	max-width: 200px;
}
.mobile_left_content{
	margin-bottom: 60px;
}

/*** SCROLL GALLERY ***/
.scroll_gallery_section{
	padding: 40px 0 70px;
	background-size: cover;
	background-position: top center;
}
.gallery_item img{
	width: 100%;
	border-radius: 20px;
}
.gallery_wrapper{
	margin-top: 100px;
}
.gallery_column_wrapper{
	overflow: hidden;
	height: calc(100dvh - 60px);
}
.gallery_footer{
	margin-top: 100px;
}
.gallery_footer_header{
	margin-bottom: 20px;
    padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gallery_column{
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 5px;
}
.go_down{
	transform: translateY(calc(var(--ty) * -0.3%));
}
.go_up{
	bottom:0;
	top: initial;
	transform: translateY(calc(var(--ty) * 0.3%));
}

/*** LOGOS ***/
.logos_section{
	padding: 80px 0;
}
.logos_grid_wrapper{
	margin-top:70px;
}
.logo_item{
	width: 240px;
	height: 90px;
	background:var(--gray400);
	border-radius: 20px;
}

/*** NUMBERS SECTION ***/
.section_title_wrapper{
	margin-bottom: 90px;
}
.numbers_section{
	padding: 60px 0;
	background: var(--greenColor);
	color: var(--gray500);
}
.numbers_section .section_header{
	border-color: rgba(0,0,0,0.2);
}
.numbers_section .section_title,
.numbers_section .section_header_title{
	font-weight: normal;
}
.number_title{
	font-weight: bold;
	font-size:14px;
	font-family: var(--extraFont);
}
.number{
	margin: 15px 0;
	font-size: 72px;
	line-height: 100%;
	font-family: var(--mazzardFont);
}
.number_content p{
	font-size: 12px;
}
.numbers_row_1_wrapper{
	margin-bottom: 60px;
}

/*** FOOTER CONTACT SECTION ***/
.footer_contact_section{
	padding: 100px 0;
	background: var(--gray100);
	color: var(--gray500);
}
.footer_contact_section .section_title{
	font-size: 132px;
	line-height: 120px;
	font-weight: normal;
}
.footer_contact_section .section_title em {
    font-size: 125%;
	font-weight: 500;
}
.footer_contact_inner{
	width: 100%;
    max-width: 475px;
}
.footer_contact_section .button{
    line-height: 44px;
    padding: 10px 60px 10px 20px;
    font-size: 18px;
    text-transform: uppercase;
    border: 3px solid;
    font-weight: bold;
}
#social_icons > *{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid var(--gray500);
	border-radius: 50%;
}
#social_icons > *::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: var(--greenColor);
	border-radius: 50%;
	transform: scale(0);
	z-index: -1;
	transition: all 0.3s;
}
#social_icons > *:hover::before{
	transform: scale(1);
}
#social_icons img{
	width:20px;
	height:20px;
}
.footer_contact_image{
	background-position: center;
	background-size: cover;
	padding-top: 80%;
	border-radius: 20px;
}

/*** SECTION HEADER ***/
.section_header_section{
	padding: 70px 0 0;
}
.section_header_section .section_header {
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: none;
}

/*** BRANDS LIST ***/
.brands_list {
    gap: 100px;
}
.brands_list_section{
	padding: 130px 0;
}
.brand_gallery_slider{
	--swiper-pagination-bottom:35px;
	--swiper-pagination-color:#FFF;
	--swiper-pagination-bullet-inactive-color:#FFF;
	--swiper-pagination-bullet-inactive-opacity:0.5;
}
.swiper-pagination-bullet{
	border-radius: 99px;
	transition: all 0.5s;
}
.swiper-pagination-bullet-active{
	width: 25px;
}
.brands_list_image{
	padding-top: 50%;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
}
.video_wrapper{
	position: absolute;
	top:0;
	left:0;
	padding-top: 50%;
	border-radius: 20px;
	overflow: hidden;
}
.video_wrapper video{
	border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    transform: translate(-50%, -50%);
}
.brand_item_index{
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 18px;
	font-family: var(--extraFont);
}
.key_achievements h3{
	width: auto;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: normal;
}
.visit_website_button{
	display: inline-block;
    font-size: 13px;
    border: 1px solid var(--gray500);
    padding: 7px 12px;
    border-radius: 99px;
	transition: all 0.3s;
}
.visit_website_button:hover{
	background: var(--gray500);
	color: #FFF;
}
.brand_stats {
	padding: 10px;
	background: var(--gray100);
	border-radius: 12px;
}
.brand_stats h4{
	position: relative;
	font-size: 14px;
	font-weight: normal;
}
.brand_stats h4 i{
	position: absolute;
	top:3px;
	right:0;
	width: 13px;
	height: 8px;
	background-image: url(../images/stats_icon.svg);
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
}
.brand_stats span{
	font-size: 24px;
	text-transform: uppercase;
	font-family: var(--mazzardFont);
}
.popup_video_button{
	display: inline-flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 12px;
}

/*** PROPERTIES ***/
.properties_list_section{
	padding: 100px 0 30px;
}
.property_item_image{
	padding-top: 50%;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	margin-bottom: 20px;
}
.properties_list_item {
	margin-bottom: 70px;
}
.property_item_title{
	margin-bottom: 20px;
	font-size: 18px;
	font-family: var(--secondaryFont);
	text-transform: uppercase;
	font-weight: normal;
}
.property_item_description p{
	font-size: 18px;
	font-weight: lighter;
	line-height: 130%;
}

/*** VENTURES ***/
.ventures_list_section{
	padding: 100px 0 160px;
}
.ventures_list_item{
	padding: 25px;
	border: 1px solid rgba(255,255,255, 0.2);
	border-radius: 20px;
}
.venture_item_image{
	padding-top: 100%;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	margin-bottom: 30px;
}
.venture_item_title{
	font-size: 18px;
	font-weight: normal;
	font-family: var(--secondaryFont);
	text-transform: uppercase;
	margin-bottom: 30px;
}
.venture_item_description p{
	font-size: 13px;
}
.ventures_carousel{
	--swiper-pagination-color:#FFF;
	--swiper-pagination-bullet-inactive-color:#FFF
}
.ventures_carousel .swiper-pagination{
	position: relative;
    margin-top: 30px;
}

/*** BUSINESS ***/
.business_list_section{
	padding:100px 0 150px;
}
.business_item{
	padding: 15px 0;
	border-top: 1px solid rgba(255,255,255, 0.2);
}
.business_item:last-child{
	border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.business_item_header{
	cursor: pointer;
}
.business_item_header .index{
	opacity: 0.5;
    font-weight: lighter;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.business_item_image{
	padding-top: 35%;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
}
.business_item_image .bg_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	transition: all 1.3s;
}
.business_item_image:hover .bg_image{
	transform: scale(1.2);
}
.plus_icon{
	position: absolute;
	bottom:10px;
	right:10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--greenColor);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}
.plus_icon:hover{
	transform:scale(1.2);
}
.active .plus_icon{
	transform: rotate(135deg);
}
.plus_icon::before{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	width: 1px;
	height: 15px;
	background: #FFF;
	transition: all 0.3s;
	transform: translate(-50%, -50%);
}
.plus_icon::after{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	width: 15px;
	height: 1px;
	background: #FFF;
	transition: all 0.3s;
	transform: translate(-50%, -50%);
}
.business_item_title{
	font-size: 32px;
	font-weight: 300;
}
.business_item_content{
	display: none;
	padding: 30px 0;
}

/*** TEAM SECTION ***/
.team_section{
	padding: 50px 0;
}
.team_section.color_scheme_dark{
	background: var(--gray600);
	color:#FFF;
}
.team_section .section_title {
    font-size: 85px;
}
.team_item_image {
	padding-top: 110%;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	margin-bottom: 10px;
}
.team_item_title{
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 600;
}
.team_item_position{
	font-size: 20px;
}
.team_item_position{
	margin-bottom: 10px;
	font-weight: lighter;
}

/*** REGULAR PAGES ***/
.page_title{
	font-size: 45px;
	font-weight: 400;
	font-family: var(--secondaryFont);
}

@media(max-width:992px) {
	.admin-bar #header {
		top: 47px;
		position: absolute;
	}
	.admin-bar.float_active #header {
		top: 0;
		position: fixed;
	}
	.container{
		padding: 0 20px;
	}
	.landing_section{
		padding: 60px 0 90px 0;
	}
	.landing_section h1, .landing_section h2 {
		font-size: 54px;
	}
	.landing_actions{
		margin-top: 70px;
	}
	.scroll_circle_icon {
		width: 118px;
		height: 118px;
	}
	.scroll_circle_text{
		width: 40px;
		white-space: nowrap;
		font-size: 12px;
		transform: translateX(0);
	}
	
	.landing_actions_image{
		width: 50%;
		max-width: 160px;
	}
	.section_header_title br{
		display: none;
	}
	.section_title {
		font-size: 46px;
	}
	.gallery_column_wrapper {
		height: 340px;
	}
	.gallery_item img {
		border-radius: 8px;
	}
	.logo_item {
		width: calc(100% - 10px);
		height: 80px;
	}
	.logo_item img{
		max-width: 50%;
	}
	.number {
		font-size: 55px;
	}
	.footer_contact_section .section_title {
		font-size: 85px;
		line-height: 100%;
	}
	.footer_contact_section .button {
		top: 13px;
		position: relative;
   		right: inherit;
		padding: 10px 50px 10px 15px;
	}
	.icon_button i {
		right: 5px;
		width: 35px;
		height: 35px;
	}
	.footer_contact_image {
		padding-top: 125%;
	}
	#footer_menu{
		flex-wrap: wrap;
	}
	#footer_menu > *{
		padding: 5px 0 ;
	}
	#mobile_menu {
		font-size: 35px;
        gap: 35px;
	}
	#header_main{
		padding:0 25px
	}
	#main_menu_footer_wrapper{
		padding: 20px 25px;
		font-size: 12px;
	}
	#mobile_credits{
		padding: 30px 0;
		font-size: 14px;
	}
	.section_header_section {
		padding: 35px 0 0;
	}
	.brands_list_image {
		padding-top: 70%;
	}
	.brands_list_section {
		padding: 70px 0;
	}
	.brand_gallery_slider {
		--swiper-pagination-bottom: 15px;
	}
	.property_item_image,
	.item_1 .property_item_image{
		padding-top: 70%;
	}
	.ventures_list_section{
		padding: 80px 0 150px;
	}
	.section_header_section{
		padding: 35px 15px 0;
	}
	.business_item_title {
		font-size:15px;
	}
	.business_item_title .index{
		font-size: 14px;
	}
	.business_item_description p{
		font-size: 11px;
	}
	.business_item_image {
		padding-top: 115%;
	}
	.business_list_section{
		padding: 90px 15px 120px;
	}
	.team_section{
		padding: 40px 15px;
	}
	.team_section .section_title{
		font-size: 46px;
	}
	#brands_team{
		padding-top: 0;
	}
	.team_item_title {
		font-size: 14px;
		margin-bottom: 0;
	}
	.team_item_position {
		font-size: 13px;
	}
	.video_wrapper {
		padding-top: 70%;
	}
	.page_title{
		font-size: 35px;
	}
	#footer_actions .button{
		padding: 10px 0;
		width: 50%;
	}
	#footer_bar {
		padding: 20px 0;
	}
	.brands_list {
		gap: 60px;
	}
	
}