/*
	=======================================
	FONTS IMPORT
	=======================================
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');
/*
	=======================================
	DEFAULT VARIABLES
	=======================================
	
	4 / 8 / 12 / 16 / 32 / 64
*/
:root {
	/* text sizes */
	--content-text-smallest: 1.2em;
	--main-menu-text-size: 1.4em;
	--alert-text: 1.6em;
	--main-content-text-size: 1.8em;

	/* colors */
	--main-color-01: #27A6B0;
	--main-color-02: #B3ECEE;
	--main-color-03: #12323A;

	/* main margins and paddings*/
	--main-gap-half: 12px;
	--main-gap: 24px;
	--main-gap-double: 48px;
	--main-gap-tripple: 72px;
}

/*
	=======================================
	RESET VALUES
	=======================================
*/
* { font-weight: inherit; font-family: inherit; font-style: inherit; color: inherit;  font-size: 100%; border: 0 none; outline: 0; padding: 0; margin: 0; vertical-align: top; box-sizing: inherit; }
* { transition: background 0.4s; }

/*
	=======================================
	BASE ELEMENTS DEFINITIONS
	=======================================
*/
body { font: 10px  'Inter', "Inter"; color: #234C56;  }

strong { font-weight: 600; }

h1, h2, h3, h4 { line-height: 1.4em; font-family: 'Oswald', "Oswald"; }
h1 strong, h2 strong, h3 strong { font-weight: 700; }

h1 { font-size: 4.8em; color: var(--main-color-01); margin-bottom: var(--main-gap-half); }
h2 { font-size: 4em; color: var(--main-color-01); margin-bottom: var(--main-gap); }
h3 { font-size: 2.4em; margin-bottom: var(--main-gap-half); }
h4 { font-size: 2em; margin-bottom: 4px; }

h1 .color_green { color: var(--main-color-02); }

@media only screen and (max-width: 960px) {
	h1 { font-size: 4em; }
}

.text_shdow { text-shadow: 0px 4px 8px rgba(0,0,0,0.75); }
.tmp_head_overline { font-size: 18px; display: block; margin-bottom: 5px; } 

p { font-size: var(--main-content-text-size); line-height: 1.6em; margin-bottom: var(--main-gap);  }
ul { font-size: var(--main-content-text-size); line-height: 1.6em; }
ul li ul { font-size: 1em; }

a { color: var(--main-color-01);  }
a:hover { cursor: pointer; text-decoration: none; }

input, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

/*
	=======================================
	CLEARING ELEMENT
	=======================================
*/
div.clear, div.util, div.cleaner{ display: block; clear: both; font-size: 0px; line-height: 0px; z-index: 2000; }

/*
	=======================================
	MIDDLE DIV
	=======================================
*/
.middle { max-width: 1440px; margin: 0 auto; position: relative;; }
.middle_w { max-width: 1920px; margin: 0 auto; position: relative; }
.middle_t { max-width: 960px; margin: 0 auto; position: relative; }
.middle_st { max-width: 786px; margin: 0 auto; position: relative; }

/*
	=======================================
	SCROLL UP
	=======================================
*/
#scrollup { position: fixed; bottom: var(--main-gap); right: var(--main-gap); z-index: 9999; }
#scrollup a { display: block; height: 50px; width: 50px; border-radius: 90px; background: var(--main-color-02); text-decoration: none; position: relative; }
#scrollup a:hover { background: #27A6B0; }
#scrollup a svg {
	position: absolute; left: 50%; top: 50%;
	transform: translateY(-50%) translateX(-50%) rotate(270deg);
	fill:#12323A;
}

/*
	=======================================
	HELPERS
	=======================================
*/
.width_full { width: 100%; box-sizing: border-box; }
.width_fourty { width: 40%; box-sizing: border-box; }
.width_half { width: 50%; box-sizing: border-box; }
.width_eighty { width: 80%; box-sizing: border-box; }
.width_seventy { width: 70%; box-sizing: border-box; }
.width_sixty { width: 60%; box-sizing: border-box; }
.width_thirty { width: 30%; box-sizing: border-box; }
.width_quad { width: 25%; box-sizing: border-box; }
.width_twenty { width: 20%; box-sizing: border-box; }
.width_ten { width: 10%; box-sizing: border-box; }
.width_third { width: 33.333%; box-sizing: border-box; }
.width_threequad { width: 75%; box-sizing: border-box; }
.width_sixth { width: 16.6666666667%; box-sizing: border-box; }

@media only screen and (max-width: 960px) {
	.width_fourty, .width_half, .width_sixty, .width_thirty,
	.width_third, .width_quad, .width_twenty, .width_threequad, .width_ten, .width_eighty,
	.width_seventy{ width: 100%; }
	.width_sixth { width: 33.333%; }
}

.hide { display: none; }
.align_center { text-align: center; }
.align_left { text-align: left; }
.align_right { text-align: right; }
.float_right { float: right; }
.float_left { float: left; }

.margin_b { margin-bottom: var(--main-gap); }
.margin_bd { margin-bottom: var(--main-gap-double); }
.margin_bh { margin-bottom: var(--main-gap-half); }

@media only screen and (max-width: 960px) { .no_tablet { display: none; } }
@media only screen and (min-width: 960px) { .is_tablet { display: none; } }
@media only screen and (max-width: 768px) { .no_mobile { display: none; } }
@media only screen and (min-width: 768px) { .is_mobile { display: none; } }
@media only screen and (min-width: 960px) { .simulate_line { display: block; } }

sup { font-size: 0.5em; margin-top: -50%; }