:root {
    --scroll-padding-top: 100px;
    --background-color: #d6ceb9;
    --background-color-header: #ffffff;
    --color: #000000;
    --font-size: 1.2rem;
	--font-size-footer: 1rem;
    --font-weight: 400;
	--font-family: 'Assistant';
    
    --color-1: #607382;
    --color-2: #d8cdb9;
	--color-3: #e0e0e0;
	--project-box-bg: #ececec;
    --menu-font-size: 1.3rem;
    --a-color: #000000;
    --a-color-hover: #607382;
	
	--submit-button-color: #d6ceb9;
	--submit-button-bg-color: #000000;
	--submit-button-bg-color-hover: #607382;
	
	scroll-padding-top: var(--scroll-padding-top);
}
html {
    /*scroll-behavior: smooth;*/
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: var(--background-color);
    background-repeat: repeat;
    margin: 0;
    padding: 0;
    color: var(--color);
    direction: rtl;
    font-family: var(--font-family); 
    font-weight: var(--font-weight);
    font-size: var(--font-size);
}
::-webkit-input-placeholder, :-ms-input-placeholder, ::placeholder {
    color: #666666;
}
abbr, address {
    text-decoration: none;
    font-style: normal;
}
img {
    display: block;
    max-width: 100%;
}
input, textarea {}
figure, header, footer, main, aside, section, article, div, span, figcaption, input, textarea, iframe, label, h1, h2, h3, h4, h5, p, img {
    padding: 0;
    margin: 0;
}
ul, ol, li {
    text-align: right;
    margin-right: 1rem;
    padding-right: 0;
}
iframe {}
input:focus-within, select:focus-within, textarea:focus-within, button:focus-within, a:focus-within {
    /*outline: solid 1px #00b8e9;*/
}
input:focus, select:focus, textarea:focus, button:focus, a:focus {
    /*outline: solid 1px #00b8e9;*/
}
button {
    cursor: pointer;
    border: 0;
    background-color: transparent;
    font-size: inherit;
}
.BackToTop {
    display: flex;
    position: fixed;
    z-index: 100;
    right: 1rem;
    bottom: 1rem;
}
.BackToTop button {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    background-color: var(--button-selected);
    color: var(--button-color);
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
}
dialog.dialog_hide {
    display: none;
}


dialog.dialog_show::backdrop {
    background-color: rgba(0, 0, 0, 0.55);
}
dialog.dialog_show button {
    position: absolute;
    display: flex;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10000000;
    
	font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 2rem;
	
	&::before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
	 }
}
dialog.dialog_show figure {
    display: flex;
	border: 3px #aeaeae solid;
	overflow: hidden;
	border-radius: 3px;
	height: auto;
	max-height: 400px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
dialog.dialog_show figcaption {
    position: fixed;
    display: flex;
    flex: 1;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    padding: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.85);
    bottom: 5%;
    right: 5%;
    z-index: 10000000;
    pointer-events: none;
}
dialog.dialog_show figure img {
    display: block;
    height: calc(100vh - 4%);
    width: auto;
}
dialog.dialog_show {
	display: flex;
	position: relative;
	border:0;
	padding: 1.1rem;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	transition: 120ms;
	width: 90%;
	max-width: 600px;
}

.project_popup {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.project_popup h2, h2 {
	font-size: calc(var(--font-size) + 0.2rem);
	font-weight: calc(var(--font-weight) + 200);
}

.close_button {
    font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 2rem;
}
.close_button:before {
    content: "\2716";
    font-weight: 900;
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: 0px 0px 0px #ffffff;
    pointer-events: auto;
}
.asterisk {
    position: relative;
    padding-right: 0.8rem;
}
.asterisk::before {
    content: '*';
    color: red;
    position: absolute;
    right: 0;
}
.error {
    color: red;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
}
.next_button {
    font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 2rem;
    margin: 0.5rem;
}
.next_button:before {
    content: "\276F";
    font-weight: 900;
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: 0px 0px 0px #ffffff;
    pointer-events: auto;
}
.prev_button {
    font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 2rem;
    margin: 0.5rem;
}
.prev_button:before {
    content: "\276E";
    font-weight: 900;
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: 0px 0px 0px #ffffff;
    pointer-events: auto;
}
@keyframes growDialog {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.Show {
    display: flex;
}
.Hide {
    display: none;
}
.hide_ {display: none;}
.NoScrolling {overflow: hidden;}
.mobile_menu {
    display: none;
}
div.socialdiv {
	display: flex;
	flex-direction: row;
	gap: 5px;
	margin-bottom: 10px;
}
a.social {
	
	background-color: var(--color-2); 
	text-align: center; 
	border-radius: 4px; 
	transition: 150ms;
	display: flex;
	align-items: center;
	width:35px;
	height: 35px;
	&:hover {
	  background-color: var(--color-1); 	
	}
	&:focus {
	  background-color: var(--color-1); 	
	}
}
.fb {
	background-image: url('/pics/facebook_.png');
	background-position: center center;
	background-size: contain;
}
.linkedin {
	background-image: url('/pics/linkedin_.png');
	background-position: center center;
	background-size: contain;
}
.insta {
	background-image: url('/pics/insta.png');
	background-position: center center;
	background-size: contain;
}
.whatsapp {
	background-image: url('/pics/whatsapp.png');
	background-position: center center;
	background-size: contain;
	background-color: #02A748 !important; 
}
.telegram {
	background-image: url('/pics/telegram.png');
	background-position: center center;
	background-size: contain;
}
.messenger {
	background-image: url('/pics/facebook2_.png');
	background-position: center center;
	background-size: contain;
}
.youtube {
	background-image: url('/pics/youtube.png');
	background-position: center center;
	background-size: contain;
}
main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-content: center;
    align-items: center;
	justify-content: center;
}

.Header_OnScroll #logo_section figure {
    padding: 15px;
    width: 120px;
	height: auto;
	transition: 120ms;
	top: 0;
}
.Header_OnScroll #logo_section figure img {
    display: flex;
    width: 100%;
    height: auto;
	transition: 120ms;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: var(--scroll-padding-top);
    padding-right: 5%;
    padding-left: 5%;
    background-color: var(--background-color-header);
    position: fixed;
    top: 0;
    z-index: 10;
	/*-webkit-box-shadow: 0px 5px 15px 5px rgba(204,204,204,0.34); 
    box-shadow: 0px 5px 15px 5px rgba(204,204,204,0.34);*/
}
header #logo_section figure {
    padding: 15px;
    width: 150px;
	height: 150px;
    border-top: 0;
    display: flex;
    position: fixed;
    z-index: 20;
	transition: 120ms;
	background-color: #ffffff;
	border-radius: 50%;
	top: -20px;
	
}
#logo_section figure img {
    display: flex;
    width: 100%;
    height: auto;
	transition: 120ms;
}
header nav {
    display: flex;
    gap: 10px;
}
header a.menu_link {
    font-size: var(--menu-font-size);
	padding: 10px;
	padding-top: 30px;
}
header a.menu_link.selected {
    font-size: var(--menu-font-size);
	/*background-color:var(--color-1);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;*/
	border-bottom: 3px var(--color-1) solid;
	
}


.topSep {
    display: flex;
    width: 100%;
    height: calc(var(--scroll-padding-top) - 5px);
}
.topSep2 {
    display: flex;
    width: 100%;
    height: calc(var(--scroll-padding-top) / 2);
}

footer {
    padding: 5%;
    padding-top: 12px;
    padding-bottom: 100px;
    margin-top: calc(var(--scroll-padding-top) / 2);
	border-top: 1px var(--color-1) solid;
	background-color: #ffffff;
	font-size: var(--font-size-footer);
}

.banner {
	display: flex;
	width: 100%;
	height: 70vh;
	background-color: #000000;
	position: relative;
	
}
.banner_pages {
	display: flex;
	width: 100%;
	height: 50vh;
	background-color: #000000;
	position: relative;
	
}
.banner_overlay {
	position: absolute;
	display: flex;
	width: 100%;
	height: inherit;
	z-index: 3;
	/*background-image: url('/pics/overlay.png');*/
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}
.banner_overlay2 {
	position: absolute;
	display: flex;
	align-content: center;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: inherit;
	z-index: 2;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.banner_overlay2 h1 {
	margin-bottom: 100px;
	color: #ffffff;
	display: flex;
	justify-content: center !important;
	align-content: center !important;
	align-items: center !important;
	text-align: center;
	width: 100%;
}
.banner_fig {
	
	display: flex;
	width: 100%;
	height: inherit;
}
.banner_fig img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: inherit;
}

.content {
	padding: 5%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: calc(var(--scroll-padding-top) / 2);
	display: flex;
	flex-direction: row;
	gap: 10%;
	
}
#content_section {
	display: flex;
	flex-direction: column;
	width: 45%;
	max-width: 800px;
	gap: 10px;
}

.content2 {
	padding: 5%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: calc(var(--scroll-padding-top) / 2);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	
	
}
#content_section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#content_section2 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 850px;
}

aside {
	display: flex;
	flex-direction: column;
	width: 45%;
	gap: 10px;
}
.home_box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
	gap: 10px;
	width: 300px;
	margin: 10px;
	background-color: var(--project-box-bg);
	padding: 30px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	transition: 120ms;
	
	
	
}


.home_box figure {
	display: flex;
	width: 260px;
	height: auto;
	border: 3px #aeaeae solid;
	overflow: hidden;
	transition: 120ms;
	
}
.home_box figure img {
	display: block;
	width: 100%;
}
.home_box figcaption {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	font-size: var(--font-size);
}

.home_box p {
	text-align: center;
}
.home {
	display: flex;
	align-items: stretch!important;
}

.project_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	gap: 10px;
	width: 300px;
	margin: 10px;
	background-color: var(--project-box-bg);
	padding: 30px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	transition: 120ms;
	
	&:hover {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;	
	}
	
	&:hover figure {
	 box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
	 
	}
	
}


.project_box figure {
	display: flex;
	width: 200px;
	height: 200px;
	border-radius: 100%;
	border: 3px #aeaeae solid;
	overflow: hidden;
	transition: 120ms;
	
}
.project_box figure img {
	display: block;
	width: 100%;
}
.project_box figcaption {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	font-size: calc(var(--font-size) + 0.2rem);
}

.Title {
	font-size: calc(var(--font-size) + 0.4rem);
	border-bottom: 2px var(--color-1) solid;
	margin-bottom: 12px;
}
.Title2 {
	font-size: calc(var(--font-size) + 0.4rem);
	border-bottom: 2px var(--color-2) solid;
	margin-bottom: 12px;
}
.SubTitle {
	font-size: calc(var(--font-size) + 0.1rem);
	color: var(--color);
}

a:link {
    text-decoration: none;
    color: var(--a-color);
}
a:visited {
    text-decoration: none;
    color: var(--a-color);
}
a:hover {
    text-decoration: none;
    color: var(--a-color-hover);
}
a:focus {
    text-decoration: none;
    color: var(--a-color-hover);
}
a:active {
    text-decoration: none;
    color: var(--a-color-hover);
}
a {
    text-decoration: none;
    color: var(--a-color);
}
.Show1 {
	-webkit-animation: fadein 2s forwards; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s forwards; /* Firefox < 16 */
        -ms-animation: fadein 2s forwards; /* Internet Explorer */
         -o-animation: fadein 2s forwards; /* Opera < 12.1 */
            animation: fadein 2s forwards;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

button.order_button {
	background-color: var(--color-1);
	color: #ffffff;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: calc(var(--font-size) + 0.1rem);
	transition: 120ms;
	&:hover {
	  background-color: var(--color-2);	
	  color: var(--color);
	}
	&:focus {
	  background-color: var(--color-2);	
	  color: var(--color);
	}
	&:disabled {
	  background-color: var(--color-3);	
	  color: var(--color);
	  cursor: not-allowed;
	}
}
textarea {
	width: 100%;
	height: 90px;
	font-size: calc(var(--font-size) + 0.3rem);
}
input[type="text"], input[type="email"], input[type="tel"] {
	width: 100%;
	height: calc(var(--font-size) + 0.8rem);
	font-size: calc(var(--font-size) + 0.3rem);
}

.form1 fieldset {
  display: flex;
  flex-direction: column;
  
  border: none;
  margin: 0;
  margin-top:0.3rem;
  font-size: calc(var(--font-size) + 0.2rem);
  font-weight: 700;
  width: 100%;
}
.form1 fieldset label {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  margin: 0;
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.form1 fieldset input, .form1 fieldset textarea {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-radius: 3px;
	border: 0;
}
.form1 button {
	color: var(--submit-button-color);
	background-color: var(--submit-button-bg-color);
	transition: 120px;
	padding: 10px;
	border-radius: 3px;
	
	&:hover {
		background-color: var(--submit-button-bg-color-hover);
	}
}

.in_form1 {
	display: flex;
	width: 100%;
	justify-content: center;
	
}

#links {
    display: flex;
	flex-direction: column;
	width: 90%;
	max-width: 90%;
	gap:10px;
}

#links a {
	display: flex;
	width: 100%;
	margin-left: 5%;
	margin-right: 5%;
	padding-bottom: 5px;
	border-bottom: 1px #ffffff solid;
	position: relative;
	
	&:hover {
		
	}
	&:active {
		
	}
	
	&:after {
		content: '\003E';
		position: absolute;
		left:0;
		font-weight: 900;
	}
}

@media screen and (min-width: 1px) and (max-width: 1280px) { /*Mobile devices*/
    .menu_button {
        font-weight: 700;
        font-size: 2.1rem;
        align-items: center;
        display: flex;
    }
    .menu_button:before {
        content: "\2630";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .menu_button_close {
        font-weight: 700;
        font-size: 1.1rem;
        align-items: center;
        display: flex;
        margin: 1rem;
    }
    .menu_button_close:before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .mobile_menu {
        display: flex;
        margin-right: 5%;
        margin-top: 18px;
    }

	:root {
		--scroll-padding-top: 80px;
	    scroll-padding-top: var(--scroll-padding-top);
	}
    .menu_button {
        font-weight: 700;
        font-size: 2.1rem;
        align-items: center;
        display: flex;
    }
    .menu_button:before {
        content: "\2630";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .menu_button_close {
        font-weight: 700;
        font-size: 1.1rem;
        align-items: center;
        display: flex;
        margin: 1rem;
    }
    .menu_button_close:before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .mobile_menu {
        display: flex;
        margin-right: 5%;
        margin-top: 18px;
		
    }
    
	
	header #menu_section {
 display: none;
 
}
header #menu_section.show {
 display: flex;
 flex-direction: column;
 position: fixed;
 top:0;
 left:0;
 z-index: 200;
 width: 90%;
 min-width: 300px;
 max-width: 690px;
	padding: 10px;
 height: 100vh;
 background: rgba(255,255,255,0.95);
	-webkit-box-shadow: 0px 5px 15px 5px rgba(204,204,204,0.34); 
    box-shadow: 0px 5px 15px 5px rgba(204,204,204,0.34);
}
header #menu_section.show nav {
 display: flex;
 gap: 5px;
 flex-direction: column;
 padding-left: 5%;
}

.mobile_menu {
 display: flex;	
 margin-right: 5%;
 margin-top: 18px;
}
}
@media screen and (min-width: 1px) and (max-width: 480px) { /*Mobile devices*/
    .menu_button {
        font-weight: 700;
        font-size: 2.1rem;
        align-items: center;
        display: flex;
    }
    .menu_button:before {
        content: "\2630";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .menu_button_close {
        font-weight: 700;
        font-size: 1.1rem;
        align-items: center;
        display: flex;
        margin: 1rem;
    }
    .menu_button_close:before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
    }
    .mobile_menu {
        display: flex;
        margin-right: 5%;
        margin-top: 18px;
    }
	header #menu_section {
 display: none;
 
}
header #menu_section.show {
 display: flex;
 flex-direction: column;
 position: fixed;
 top:0;
 left:0;
 z-index: 200;
 width: 90%;
 min-width: 300px;
 max-width: 690px;
	padding: 10px;
 height: 100vh;
 background: rgba(255,255,255,0.95);
}
header #menu_section.show nav {
 display: flex;
 gap: 5px;
 flex-direction: column;
 padding-left: 5%;
}

.mobile_menu {
 display: flex;	
 margin-right: 5%;
 margin-top: 18px;
}
	
.content2, .content {
	
	flex-direction: column;
}
	
	#content_section {
	
	width: 100%;
	}

	aside {
		width: 100%;
		margin-top: 30px;
	}

}