/**
 * SCAB – Global styles (RTL)
 * Base layout and direction. Block-specific styles live in blocks/*/
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

*{
	box-sizing: border-box;
}

main{
	padding-bottom: 100px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	direction: rtl;
}

/* Utility: container */
.container {
	width: 100%;
	max-width: var(--container-max, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--global-padding);
	padding-right: var(--global-padding);
}


.text{
	font-family: "Almoni";
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0;
}
.big_text{
	font-family: "Almoni";
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	line-height: 29px;
	letter-spacing: 0;
}
.small_text{
	font-family: "Almoni";
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0;
}

.tiny_text{
	font-family: "Almoni";
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: 0;
}
.heading{
	font-family: "Allison";
	font-weight: 400;
	font-style: normal;
	font-size: 54px;
	line-height: 40px;
	letter-spacing: 0;
}

.sub_heading{
	font-family: "Almoni";
	font-weight: 700;
	font-style: normal;
	font-size: 36px;
	line-height: 47px;
	letter-spacing: -0.02em;
}

.head_text{
	font-family: "Almoni";
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	line-height: 31px;
	letter-spacing: 0;
}
.small_heading{
	font-family: "Almoni";
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	line-height: 42px;
	letter-spacing: 0;
}
.big_heading_eng{
	font-family: "Almoni";
	font-weight: 300;
	font-style: normal;
	font-size: 96px;
	line-height: 96px;
	letter-spacing: 0;
}

.big_heading_heb{
	font-family: "Almoni";
	font-weight: 700;
	font-style: normal;
	font-size: 96px;
	line-height: 67px;
	letter-spacing: 0;
}

.page_editor_content{
	margin: 0 auto;
	padding: 0 var(--global-padding, 32px);
	max-width: var(--container-max, 1856px);
}

.page_editor_content h1,
.page_editor_content h2,
.page_editor_content h3,
.page_editor_content h4,
.page_editor_content h5,
.page_editor_content h6{
	font-family: "Almoni";
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 47px;
    letter-spacing: -0.02em;
	text-align: center;
	color: var(--color-text); 
	margin: 0 0 32px;
}

.page_editor_content p{
	font-family: "Almoni";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
	color: var(--color-text); 
	margin: 0 0 16px;
}

.page_editor_content img{
	height: 500px;
	width: 100% !important;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 100px 0;
}
.page_editor_content .double_column{
	display: flex;
	gap: 80px;
}

@media (max-width: 768px) {
	.big_heading_heb{
		font-size: 64px;
		line-height: 45px;
	}
	.big_text{
		font-size: 18px;
		line-height: 23px;
	}
	.small_heading{
		font-size: 28px;
		line-height: 36px;
	}	
	
	main{
		padding-bottom: 78px;
	}
	.big_heading_eng{
		font-size: 40px;
		line-height: 40px;
	}
}