:root {
    --header-height: 100px;
    --background-color: #ffffff;
	--background-color-header: rgba(255,255,255,0);
	--background-color-header-onscroll: rgba(247,240,234,0.98);
	--color: #000000;
    --font-size: 1rem;
    --font-weight: 400;
	--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --topic-bg-color: #f7f0ea;
	--topic-color: #000000;
	--topic-bg-color-hover: #e3c0a0;
	--topic-color-hover: #000000;
	--text-content-bg: #e3c0a0;
	--text-content-color: #000000;
	--a-button-bg-color: #4e5f3d;
	--a-button-color: #ffffff;
	--a-button-bg-color-hover: #e3c0a0;
	--a-button-color-hover: #000000;
	
	--a-button-color2: #000000;
	--a-button-color2-hover: #000000;
	
	--menulink-color: #000000;
	--menulink-bg-color: transparent;
	
	--menulink-color-hover: #ffffff;
	--menulink-bg-color-hover: #4e5f3d;
	
	--menulink-color-selected: #ffffff;
	--menulink-bg-color-selected: #4e5f3d;
	
	--banner-h1-color: #ffffff;
	--banner-h1-font-size: 1.8rem;
	--banner-h1-font-size-mobile: 1.4rem;
	
	--h1: 1.4rem;
	--h2: 1.3rem;
	--h3: 1.1rem;
	
	--scroll-behavior: smooth;
	
	--custom-title: #808000;
	
	
	scroll-padding-top: calc(var(--header-height) + 10px);
}
.Green {
	color: var(--custom-title);
}
html {
    scroll-behavior: var(--scroll-behavior-smooth);
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: var(--background-color);
	
    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 {
	border: 2px #aeaeae solid;
	border-radius: 6px;
}
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;
}
h1 {
	font-size: var(--h1);
}
h2 {
	font-size: var(--h2);
}
h3 {
	font-size: var(--h3);
}
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 {
	position: absolute;
	display: flex;
	width: 96%;
	height: 96vh;
	padding: 0;
	border: 1px aeaeae dotted;
	border-radius: 10px;
}

dialog.dialog_show::backdrop {
    background-color: rgba(0, 0, 0, 0.55);
}
dialog.dialog_show .close_button {
    position: fixed;
    display: flex;
    top: 4px;
    right: 4px;
    z-index: 100000001;
    
	font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 3rem;
	width: 3rem;
	background-color: #000000;
	padding: 24px;
	border-radius: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	
	&::before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
		color: #ffffff !important;
		margin-top: -0.2rem;
	 }
}
dialog.dialog_show figure.image_holder {
    display: flex;
	width: 100%;
	height: 100%;
	flex:1;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
	justify-content: center;
	align-content: center;
	align-items: center;
}
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: 3%;
    left: 50%;
	transform: translate(-50%);
    z-index: 10000000;
    pointer-events: none;
	border-radius: 5px;
}
dialog.dialog_show figure img {
    display: block;
	
    max-height: calc(100vh - 6%);
    max-width: 100%;
}
dialog.dialog_show #dialog_buttons {
	position: fixed;
    display: flex;
	width:100%;
    flex: 1;
	left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    z-index: 10000000;
	background-color: #000000;
}
dialog.dialog_show .prev_button {
    position: fixed;
    display: flex;
    
    right: 5%;
    z-index: 10000000;
    
	font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 3rem;
	width: 3rem;
	background-color: #000000;
	padding: 24px;
	border-radius: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	
	
	&::before {
        content: "\22B2";
        font-weight: 900;
        font-size: 2.2rem;
		color: #ffffff;
		margin-bottom: 0.4rem;
	 }
}

dialog.dialog_show .next_button {
    position: fixed;
    display: flex;
    
    left: 5%;
    z-index: 10000000;
    
	font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    line-height: 2rem;
    height: 3rem;
	width: 3rem;
	background-color: #000000;
	padding: 24px;
	border-radius: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	
	
	&::before {
        content: "\22B3";
        font-weight: 900;
        font-size: 2.2rem;
		color: #ffffff;
		margin-bottom: 0.4rem;
	 }
}






@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;
}

.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;
}

.social_btn {
	display: flex;
	width: 25px;
	height: 25px;
	border-radius: 2px;
	background-color: var(--a-button-bg-color);
	transition: 120ms;
	
	&:hover {
		background-color: var(--a-button-bg-color-hover);
	}
}
.social_btn2 {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background-color: var(--a-button-bg-color);
	transition: 120ms;
	
	&:hover {
		background-color: var(--a-button-bg-color-hover);
	}
}
.social {
	display: flex;
	flex-direction: row;
	gap: 5px;
}

.action_btn {
	display: flex;
	position: fixed; 
	left: 10px;
	
	width:45px !important;
    height:45px !important;
	border-radius:100%;
	background-color: var(--a-button-bg-color);
	transition: 120ms;
	
	border: 2px #ffffff solid !important;
	
	&:hover {
		background-color: var(--a-button-bg-color-hover);
	}
}
.action_btn_wp { 
	bottom: 60px;
	background-image: url('/pics/whatsapp.png');
	background-position: center center;
	background-size: contain;
	background-size: 30px 30px;
}
.action_btn_call { 
	bottom: 110px;
	background-image: url('/pics/call.png');
	background-position: center center;
	background-size: contain;
	background-size: 30px 30px;
}

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; }
}
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.banner {
	display: flex;
	width: 100%;
	height: 55vh;
	background-color: #000000;
	position: relative;
	
	-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;
	
}
.banner_pages {
	display: flex;
	width: 100%;
	height: 50vh;
	background-color: #000000;
	position: relative;
	
	-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;
	
}
.banner_overlay {
	position: absolute;
	display: flex;
	width: 100%;
	height: inherit;
	z-index: 3;
	background-image: url('/pics/overlay2.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: var(--banner-h1-color);
	font-size: var(--banner-h1-font-size);
	display: flex;
	justify-content: center !important;
	align-content: center !important;
	align-items: center !important;
	text-align: center;
	width: 100%;
	-webkit-animation: h1_move 2s forwards ease-in-out; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: h1_move 2s forwards ease-in-out; /* Firefox < 16 */
        -ms-animation: h1_move 2s forwards ease-in-out; /* Internet Explorer */
         -o-animation: h1_move 2s forwards ease-in-out; /* Opera < 12.1 */
            animation: h1_move 2s forwards ease-in-out;
}
.banner_fig {
	
	display: flex;
	width: 100%;
	height: inherit;
}
.banner_fig img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: inherit;
}

@keyframes h1_move {
    0%    {margin-bottom: 150px;}
    100%  {margin-bottom: 100px;}
}
@-moz-keyframes h1_move {
    0%    {margin-bottom: 150px;}
    100%  {margin-bottom: 100px;}
}
@-webkit-keyframes h1_move {
    0%    {margin-bottom: 150px;}
    100%  {margin-bottom: 100px;}
}
@-o-keyframes h1_move {
    0%    {margin-bottom: 150px;}
    100%  {margin-bottom: 100px;}
}

.content {
	padding: 5%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: calc(var(--scroll-padding-top) / 2);
	display: flex;
	flex-direction: row;
	gap: 10%;
	
}


.Header_OnScroll {
	background-color: var(--background-color-header-onscroll);
	transition: 320ms;
	-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_OnScroll  figure.logo {
    padding: 15px;
    width: 120px;
	height: auto;
	transition: 120ms;
	top: 0;
}
.Header_OnScroll  figure.logo img {
    display: flex;
    width: 100%;
    height: auto;
	transition: 120ms;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
    height: var(--header-height);
    padding-right: 5%;
    padding-left: 5%;
    background-color: var(--background-color-header);
    position: fixed;
    top: -1;
    z-index: 10;
	transition: 320ms;
}
header  #logo_section {
    padding: 5px;
    display: flex;
    
    z-index: 20;
	transition: 120ms;
	
	
}
header #logo_section figure img {
    display: flex;
    width: 100%;
    height: calc(var(--header-height) - 10px);
	transition: 120ms;
}
header #menu_section {
    display: flex;
    
}
header #menu_section nav {
    display: flex;
    gap: 10px;
}
header a.menu_link {
    font-size: calc(var(--menu-font-size) + 0.3rem);
	color: var(--menulink-color);
	background-color: var(--menulink-bg-color);
	border-radius: 3px;
	font-weight: 600;
	padding: 10px;
	padding-top: 30px;
	transition: 120ms;
	&:hover {
	 /*padding-top: 25px;*/
	 color: var(--menulink-color-hover);
	 background-color: var(--menulink-bg-color-hover);
	}
}
header a.menu_link.selected {
    font-size: calc(var(--menu-font-size) + 0.3rem);
	color: var(--menulink-color-selected);
	background-color: var(--menulink-bg-color-selected);
	
}

footer {
	width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
	height: 220px;
    padding-right: 5%;
    padding-left: 5%;
	padding-top: 40px;
	background-image: url('/pics/footer.png?new');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
	padding-left: 5%;
	padding-right: 5%;
}

.heading {
	display: block;
	text-align: center;
	width: 100%;
}
.page_content {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: flex-start;
	justify-content: center;
	gap: 50px;
	width: 90%;
	max-width: 1380px;
	margin-top: 40px;
}
.page_content article {
    width: 65%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page_content section {
    width: 35%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page_content figure, .page_content section {
	width: 35%;
	display: flex;
}
.page_content figure img {
  display: block;
  width: 100%;
  height: auto;

  /* Standard */
  mask-image: url("/pics/mask.png");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100% 100%;
  mask-mode: alpha;

  /* Safari / iOS */
  -webkit-mask-image: url("/pics/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100% 100%;           /* natural height */
}


.page_content2 {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 90%;
	max-width: 1280px;
	margin-top: 40px;
}
.page_content2 article {
    width: 100%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.page_content2 article p {
	text-align: center;
}

.topics_content {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}
.page_content3 {
	display: flex;
	flex-direction: column;
    align-content: flex-start;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
	width: 90%;
	max-width: 1380px;
}
.page_content3 section.qa {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	align-items: flex-start;
}
.qa_button {
	/*border-bottom: 1px #aeaeae dashed;*/
	position: relative;
	padding-right: 30px;
	text-align: right;
	color: var(--a-button-color2);
	transition: 120ms;
	
	&:hover {
		color: var(--a-button-color2-hover);
	}
	
	&:before {
		content: '\002B';
		position: absolute;
		right: 0;
		top:-4px;
		width: 2rem;
		height: 1.2rem;
		font-size: 20px;
		font-weight: 800;
		color: var(--a-button-color2);
		
		&:hover {
			color: var(--a-button-color2-hover);
		}
	}
}
.qa_button.android {
	&:before {
		top:0;	
	}
}
.qa_button.show {
	font-weight: 500;
	
	&:before {
		content: '\2212';
		position: absolute;
		right: 0;
		top:-5px;
		width: 2rem;
		height: 1.2rem;
		font-size: 20px;
		font-weight: 800;
	}
}
.qa_answer {
	display:none;
}
.qa_answer.show {
	display:flex;
	position: relative;
	padding: 20px;
	margin: 5px;
	transition: 120ms;
	background-color: var(--text-content-bg);
	border-radius: 20px;
	max-width: 900px;
	
	-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;
	
	
}
.topic {
	display: flex;
	width: 300px;
	gap:15px;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	color: var(--topic-color) !important;
	margin-bottom: 70px;
	transition: 120ms;
	position: relative;
	
	&:hover {
	  color: var(--topic-color-hover) !important;	
	}
	&:hover  figcaption {
	  background-color: var(--topic-bg-color-hover);
	}
	&:hover figure img {
	  opacity: 0.8;	
	}
	
	
}
.topic figure {
	display: flex;
	width: 300px;
	height: 300px;
	overflow: hidden;
	border-radius: 20px;
	border: 1px #aeaeae solid;
}
.topic figure img {
	display: flex;
	width: 100%;
	height: auto;
	transition: 120ms;
	
}
.topic figcaption {
	display: flex;
	width: 100%;
	padding: 10px;
	height: 150px;
	gap: 10px;
	flex-direction: column;
	align-content: center;
	align-items: center;
	border: 1px #aeaeae solid;
	border-radius: 5px;
	background-color: var(--topic-bg-color);
	position: absolute;
	overflow: hidden;
	bottom: -70px;
	transition: 120ms;
	
}
.topic figcaption strong {
	display: flex;
	padding-bottom: 5px;
	border-bottom: 1px #aeaeae solid;
	width: 100%;
}

.topics_content2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
}
.topic2 {
	display: flex;
	width: 350px;
	
	
	gap:15px;
	padding: 10px;
	border: 1px #aeaeae solid;
	border-radius: 5px;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: center;
	transition: 120ms;
	background-color: var(--topic-bg-color);
	
	&:hover {
		background-color: var(--topic-bg-color-hover);
	}
	
}
.topic2 figure {
	display: flex;
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 100%;
	border: 1px #aeaeae solid;
}
.topic2 figure img {
	display: flex;
	width: 100%;
	height: auto;
	transition: 120ms;
	
}
.topic2 figcaption {
	display: flex;
	width: 100%;
	flex: 1;
	padding: 10px;
	
	transition: 120ms;
	
}

.topics_content3 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
}
.topic3 {
	display: flex;
	width: 350px;
	gap:15px;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: center;
	transition: 120ms;
	position: relative;
	margin-top: 60px;
	margin-bottom: 60px;
	
	
}
.topic3 figure {
	display: flex;
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 100%;
	border: 1px #aeaeae solid;
	position: absolute;
	z-index: 3;
	top: -50px;
}
.topic3 section.section_main {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
	border-radius: 15px;
	border: 1px #aeaeae solid;
    padding: 15px;
	padding-top: 50px;
	margin-top: 0;
	
}
.topic3 figure img {
	display: flex;
	width: 100%;
	height: auto;
	transition: 120ms;
	
}

.price_topic {
	display: flex;
	flex-direction: row;
	gap: 30px;
	width: 100%;
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px #aeaeae dashed;
	
}
.price_topic figure {
	display: flex;
	width: 100px !important;
	height: 100px !important;
	overflow: hidden;
	border-radius: 100%;
	border: 1px #aeaeae solid;
	
}
.price_topic figure img {
	display: flex;
	width: auto !important;
	height: auto !important;
	
	
}
.price_topic .content_topic_section {
	display: flex;
	flex:1;
	gap: 30px;
}
.price_topic .content_topic_section .price_section {
	display: flex;
	flex-flow: column;
	gap: 10px;
	min-width: 120px;
}
.price_topic .content_topic_section .text_section {
	display: flex;
	flex-flow: column;
	gap: 10px;
	
}
.price_topic .button {
	display: flex;
	justify-content: center !important;
	align-content: center !important;
	align-items: center !important;
	text-align: center !important;
}

.price_topic .price_section_data {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
}
.price_topic .price_section_data span {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 10px;
	border-bottom: 1px #aeaeae dashed;
	align-content: flex-end;
	align-items: flex-end;
	padding-bottom: 5px;
}
.price_topic .price_section_data span b {
	font-size: calc(var(--font-size) + 0.3rem);
}

.doc {
	display: flex;
	width: 146px;
	height: 90px;
	
	align-content: center;
	align-items: center;
	justify-content: center;
	
	padding: 10px;
	overflow: hidden;
	border-radius: 16px;
	background-color: var(--a-button-bg-color);
	color: var(--a-button-color) !important;
	
	transition: 120ms;
	font-weight: 500;
	
	&:hover {
	  background-color: var(--a-button-bg-color-hover);
	  color: var(--a-button-color-hover) !important;
	}
	&:focus {
	  background-color: var(--a-button-bg-color-hover);
	  color: var(--a-button-color-hover) !important;
	}
}

.text_content_start {
	display: flex;
	max-width: 1280px;
	padding: 2rem;
	flex-direction: column;
	gap: 15px;
	/*background-color: var(--text-content-bg);*/
	color: var(--text-content-color);
	border-radius: 1rem;
	font-size: calc(var(--font-size) + 0.1rem);
}
.alt_color {
	
	/*background-color: var(--text-content-bg);
	color: var(--text-content-color);*/
	border-radius: 1rem;
	padding: 2rem;
}

.SubTitle {
	
}
.Orange {
	
}

.button {
	display: flex;
	padding: 10px;
	overflow: hidden;
	border-radius: 16px;
	background-color: var(--a-button-bg-color);
	color: var(--a-button-color) !important;
	bottom: 60px;
	transition: 120ms;
	font-weight: 500;
	
	&:hover {
	  background-color: var(--a-button-bg-color-hover);
	  color: var(--a-button-color-hover) !important;
	}
	&:focus {
	  background-color: var(--a-button-bg-color-hover);
	  color: var(--a-button-color-hover) !important;
	}
	
}

#settings_section {
    display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 600px;
	align-items: center;
	justify-content: center;
}
#settings_section  #loader {
	 display: flex;
     width: 100%;
	 align-items: center;
	 justify-content: center;
     margin-bottom:0;
}
#settings_section #loader.show {
				margin-bottom:1rem;
}
#settings_section  #pager {
		  display: flex;
			 flex-direction: row;
			 width: 100%;
				align-items: center;
				justify-content: space-between;
				margin-bottom:1rem;
		}
#settings_section #pager  #list_buttons {
		  display: flex;
			 flex-direction: row;
			 
				align-items: center;
				gap: 5px;
				
		}
#settings_section #pager  select {
		  display: none;
			 
		}		
#settings_section #pager  select {
		 padding: 0.5rem;
			border-radius: 0.5rem;
			border: 0;
		}	
#settings_section #pager  button {
		 display: flex;
			width: 2rem;
			height: 2rem;
			justify-content: center;
			align-content: center;
			align-items: center;
			border-radius: 0.5rem;
			border: 0;
			background-color: var(--a-button-bg-color);
			font-size: 1.6rem;
			padding-bottom: 0.3rem;
			color: var(--a-button-color);
			transition: 120ms;
			&:hover {
			 background-color: var(--a-button-bg-color-hover);
				color: var(--a-button-color-hover);
			}
			&:disabled {
			 background: #aeaeae;
				color: #ffffff;
				cursor: not-allowed;
			}
		}		
#settings_section #pager  button.pager_btn {
		 display: flex;
			width: 2rem;
			height: 2rem;
			justify-content: center;
			align-content: center;
			align-items: center;
			font-size: 1rem;
			padding-bottom: 0;
			border-radius: 0.5rem;
			border: 0;
			background-color: var(--a-button-bg-color);
			
			color: var(--a-button-color);
			transition: 120ms;
			&:hover {
			 background-color: var(--a-button-bg-color-hover);
				color: var(--a-button-color-hover);
			}
			&:disabled {
			 background: #aeaeae;
				color: #ffffff;
				cursor: not-allowed;
			}
		}
#settings_section #loader {
		 display: flex;
			width: 100%;
				align-items: center;
				justify-content: center;
				margin-bottom:0;
		}
#settings_section  #loader.show {
				margin-bottom:1rem;
		}
		

.loading_spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading_spinner div {
  position: absolute;
  border: 4px solid var(--a-button-bg-color-hover);
  opacity: 1;
  border-radius: 50%;
  animation: loading_spinner_anime 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading_spinner div:nth-child(2) {
    animation-delay: -0.5s;
}
.outer_div {
 display: flex;
	width: 100%;
	justify-content: center;
}

@keyframes loading_spinner_anime {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


.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%;
}

.form1 fieldset {
  display: flex;
  flex-direction: column;
  
  border: none;
  margin: 0;
  margin-top:0.3rem;
  font-size: var(--font-size);
  font-weight: 700;
  width: 100%;
}
.form1 fieldset label {
  display: flex;
  flex-direction: column;
  width: 150px;
  border: none;
  margin: 0;
  margin-top: 0.4rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.form1 fieldset section {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.form1 fieldset section.inform_big {
  display: flex;
  flex-direction: column;
  width: 100%;
	gap:10px;
}
.form1 fieldset section.inform_big2 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  
  flex:1;
  flex-direction: row;
  width: 100%;
  gap:10px;
}
.form1 fieldset section.inform_big2 label{
  display: flex;
  flex:1;
  flex-direction: row;
  width: 100%;
	padding-bottom: 6px;
}

.form1 fieldset legend {
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin-bottom: 16px;
	font-size: var(--h2);
}

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);
}
input[type="checkbox"] {
	width: 1.3rem;
	height: 1.3rem;
}
select {
	width: 100%;
	height: calc(var(--font-size) + 0.8rem);
	font-size: calc(var(--font-size) + 0.3rem);
}

/*#outer_form {
	display: flex;
	flex: 1;
}*/
#contact_form {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 30px;
}



.mobile_only {
  display: none !important;
  width:0;
  height:0;
 }
.mobile_only img {
  display: none;
  width:0;
  height:0;
}


.stars {
  display: flex;
  flex-direction: row; 
  gap: 5px;
	margin: 10px;
	direction: ltr;
}
.star1 {
	display: flex;
	width: 24px;
    height: 24px;
    --fill-star: #facc15; 
    --stroke-star: #eab308;
}
.star1_dis {
	display: flex;
	width: 24px;
    height: 24px;
    --fill-star: #d1d5db;
    --stroke-star: #9ca3af;
}

.mobile_only2 {
  display: none !important;
 }
.mobile_only3 {
  display: none !important;
 }
.no_mobile {
  display: flex !important;	
 }	


.custom_window_outer {
	width: 100%; 
	max-width: 1280px; 
	background: #fdfdfd; 
	border: 2px solid #808000; 
	border-radius: 35px; 
	position: relative; 
	box-shadow: 0 20px 40px rgba(128, 128, 0, 0.15); 
	padding: 12px;
}
.custom_window_1 {
	position: absolute; 
	top: 22px; 
	left: 50%; 
	transform: translateX(-50%); 
	width: 50px; 
	height: 5px; 
	background: #d1d1d1; 
	border-radius: 10px; 
	z-index: 10;
}
.custom_window_inner {
	width: 100%; 
	background: #008000; 
	border-radius: 24px; 
	padding: 2px;
}
.custom_window_content {
	width: 100%; 
	background: #ffffff; 
	border-radius: 22px; 
	padding: 50px 30px 40px; 
	outline: none; 
	color: #444; 
	box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
	display: flex;
	flex:1;
	flex-direction: column;
	gap: 14px;
}
.align-left {
	text-align: left;
}


@media screen and (min-width: 1px) and (max-width: 1280px) { /*Mobile devices*/
.social2 {
	margin-top: 30px;
	border-top: 1px #aeaeae dashed;
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: row;
	gap: 10px;
	padding-top: 15px;
	}	
	
header #menu_section {
   display: none;
   transition: 120ms;
 }
header #menu_section.close {
display: flex;
   flex-direction: column;
   position: fixed;
   top:0;
   left:-100%;
   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);
	
   -webkit-animation: slide_menu2 0.5s forwards; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: slide_menu2 0.5s forwards; /* Firefox < 16 */
      -ms-animation: slide_menu2 0.5s forwards; /* Internet Explorer */
       -o-animation: slide_menu2 0.5s forwards; /* Opera < 12.1 */
          animation: slide_menu2 0.5s forwards;
}
	
@keyframes slide_menu2 {
    0% {left:0; opacity: 1;}
    100%   {left:-100%; opacity: 0;}
}

/* Firefox < 16 */
@-moz-keyframes slide_menu2 {
    0% {left:0; opacity: 1;}
    100%   {left:-100%; opacity: 0;}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes slide_menu2 {
    0% {left:0; opacity: 1;}
    100%   {left:-100%; opacity: 0;}
}

/* Internet Explorer */
@-ms-keyframes slide_menu2 {
    0% {left:0; opacity: 1;}
    100%   {left:-100%; opacity: 0;}
}

/* Opera < 12.1 */
@-o-keyframes slide_menu2 {
    0% {left:0; opacity: 1;}
    100%   {left:-100%; opacity: 0;}
}

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);
	
   -webkit-animation: slide_menu 1s forwards; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: slide_menu 1s forwards; /* Firefox < 16 */
      -ms-animation: slide_menu 1s forwards; /* Internet Explorer */
       -o-animation: slide_menu 1s forwards; /* Opera < 12.1 */
          animation: slide_menu 1s forwards;
}
	
@keyframes slide_menu {
    0% {left:-350px; opacity: 0;}
    100%   {left:0; opacity: 1;}
}

/* Firefox < 16 */
@-moz-keyframes slide_menu {
    0% {left:-350px; opacity: 0;}
    100%   {left:0; opacity: 1;}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes slide_menu {
    0% {left:-350px; opacity: 0;}
    100%   {left:0; opacity: 1;}
}

/* Internet Explorer */
@-ms-keyframes slide_menu {
    0% {left:-350px; opacity: 0;}
    100%   {left:0; opacity: 1;}
}

/* Opera < 12.1 */
@-o-keyframes slide_menu {
    0% {left:-350px; opacity: 0;}
    100%   {left:0; opacity: 1;}
}
	
header #menu_section.show nav {
 display: flex;
 gap: 5px;
 flex-direction: column;
 padding-left: 5%;
}
header #logo_section figure img {
    display: flex;
    width: 80%;
    height: auto;
	transition: 120ms;
}

.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;
	margin-right: 0;
}
.menu_button_close:before {
        content: "\2716";
        font-weight: 900;
        font-size: 2.2rem;
        color: #000000 !important;
}
.mobile_menu {
        display: flex;
        margin-right: 5%;
        
}
#close_mobile_menu {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}	
	
header a.menu_link {
    font-size: calc(var(--menu-font-size) + 0.3rem);
	color: var(--menulink-color);
	font-weight: 600;
	padding: 10px;
	padding-top: 10px;
	transition: 120ms;
	&:hover {
	 padding-top: 10px;	
	}
}
	
.banner {
	height: 40dvh;
	
	
}
.banner_pages {
	
	height: 35dvh;
	
	
}

.banner_overlay2 h1 {
	margin-bottom: 40px;
	color: var(--banner-h1-color);
	font-size: var(--banner-h1-font-size-mobile);
	display: flex;
	justify-content: center !important;
	align-content: center !important;
	align-items: center !important;
	text-align: center;
	width: 100%;
	-webkit-animation: h1_move 2s forwards ease-in-out; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: h1_move 2s forwards ease-in-out; /* Firefox < 16 */
        -ms-animation: h1_move 2s forwards ease-in-out; /* Internet Explorer */
         -o-animation: h1_move 2s forwards ease-in-out; /* Opera < 12.1 */
            animation: h1_move 2s forwards ease-in-out;
}
.banner_fig {
	
	display: flex;
	width: 100%;
	height: inherit;
}
.banner_fig img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: inherit;
}

@keyframes h1_move {
    0%    {margin-bottom: 50px;}
    100%  {margin-bottom: 40px;}
}
@-moz-keyframes h1_move {
    0%    {margin-bottom: 50px;}
    100%  {margin-bottom: 40px;}
}
@-webkit-keyframes h1_move {
    0%    {margin-bottom: 50px;}
    100%  {margin-bottom: 40px;}
}
@-o-keyframes h1_move {
    0%    {margin-bottom: 50px;}
    100%  {margin-bottom: 40px;}

    
}
	
	.logo_menu {
		display: block;
		width: 160px;
		height: auto;
		margin-top: 25px;
		margin-left: 7%;
		margin-bottom: 10px;
	}
	
	.mobile_only3 {
  display: flex !important;
 }
	
}
@media screen and (min-width: 1px) and (max-width: 700px) { /*Mobile devices*/
 header #logo_section figure img {
    display: flex;
    width: 65%;
    height: auto;
	transition: 120ms;
}
	
.page_content {
		flex-direction: column;
	}
	
.page_content article, .page_content section.contact {
    width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page_content figure {
	display: none;
}
	


.page_content2 {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 90%;
	max-width: 1280px;
	margin-top: 40px;
}
	
.page_content figure.mobile_only {
  display: flex !important;
	width:100%;
  height:auto;
 }
.page_content figure.mobile_only img {
  display: block;
  width: 100%;
  height: auto;

  /* Standard */
  mask-image: url("/pics/mask.png");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100% 100%;
  mask-mode: alpha;

  /* Safari / iOS */
  -webkit-mask-image: url("/pics/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100% 100%;           /* natural height */
}

.mobile_only2 {
  display: flex !important;
 }

.no_mobile {
  display: none !important;	
 }	
	
.content_topic_section {
	
	flex-direction: column !important;
	
	
}
.text_section section {
	display: flex;
	flex-direction: row !important;
	gap: 14px;
}
.text_section figure {
	display: flex;
	width: 90px !important;
	height: 90px !important;
}
.text_section figure img {
	display: block;
	width: 90px !important;
	height: 90px !important;
}
.text_section section  article {
	display: flex;
	flex:1;
	flex-direction: column !important;
	
}
	
	
}

@media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; }
}