@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');
:root {
    --white: #FFFFFF;
    --black: #000000;
    --blue: #C5F5F9;
    --green: #76DDB2;
    --gray: #FBFAF6;
    --title_color: #1A418C;
    --transition: all .5s ease;
    --font: 'Noto Sans', sans-serif;
}
*,
::before,
::after {
    box-sizing: border-box;
}
BODY {
    margin: 0px;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.4;
}
H1, H2, H3, H4, H5, H6 {
	margin: 0px 0px 30px 0px;
}
UL {
	list-style-type: none;
	padding: 0px;
    margin: 0px;
}
IMG {
	width: 100%;
	height: auto;
	display: block;
}
P {
    margin: 0px 0px 15px 0px; 
}
A {
	transition: var(--transition);
	text-decoration: none;
    color: var(--black);
    font-weight: 500;
}
A:hover {
    color: var(--title_color);
	text-decoration: none;
}
A.active {
	text-decoration: none;
    color: var(--title_color);
}
HEADER {
	transition: var(--transition);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1001;
    height: 100px;
    display: flex;
    align-items: center;
}
HEADER.scroll {
    background: var(--white);
}
HEADER > DIV {
    display: flex;
    align-items: center;
    flex: 1;
}
HEADER > DIV > UL {
    display: flex;
    padding: 0px 25px 0px 0px;
    align-items: center;
    transition: var(--transition);
}
HEADER > DIV > UL A {
    padding: 5px 25px 5px 25px;
}
HEADER > DIV > A {
    display: flex;
    padding: 0px 0px 0px 50px;
    align-items: center;
}
.header_left IMG {
    width: 50px;
    margin-right: 30px;
}
.header_right {
    display: flex;
    justify-content: flex-end;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.row > DIV {
    flex: 1;
}
.row1 {
    height: 100vh;
}
.left_panel {
    display: flex;
    align-items: center;
}
.left_panel .left_panel_inner {
    display: flex;
    flex-wrap: wrap;
}
.left_panel .left_panel_inner .left_panel_left {
    flex: 0 0 30%;
}
.green_panelaki {
    background: var(--green);
    height: 30px;
    margin-top: 20px;
}
.left_panel .left_panel_inner .left_panel_right {
    flex: 1;
    padding: 0px 30px;
}
.title {
    color: var(--title_color);
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}
.btn {
    background: var(--green);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.right_panel {
    background: var(--blue);
    position: relative;
    display: flex;
    justify-content: center;
}
.right_panel IMG {
    width: 60%;
    position: absolute;
    top: 20%;
}
.row2 {
    justify-content: center;
    text-align: center;
    background: var(--gray);
}
.row2 > DIV {
    position: relative;
    padding: 100px 15px;
}
.row2 .title {
    padding-bottom: 30px;
    position: relative;
}
.row2 .title:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--black);
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}
.row2 .text {
    color: var(--green);
    font-weight: 700;
}
.corner {
    width: 0px;
    height: 0px;
    border-top: 20px solid var(--green);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
}
.row3 {
    padding: 100px 0px;
}
.row3 .right_panel {
    background: none;
}
.row3 .right_panel IMG {
    width: 85%;
    position: static;
}
.above_title {
    margin-top: -72px;
    margin-bottom: 50px;
}
.simptomata {
    margin-left: 100px;
}
.simptomata LI {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3px 0px;
}
.simptomata LI:before {
    content: "";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--green);
    margin-right: 30px;
}
.row4 {
    text-align: center;
    align-items: center;
    padding-top: 100px;
}
.row4 .left_panel_left {
    flex: 0 0 15%;
}
.row4 .title {
    margin-bottom: 15px;
}
.row5 {
    padding: 150px 0px;
}
.row5 .left_panel {
    background: var(--gray);
    position: relative;
    justify-content: flex-end;
    padding-right: 30px;
}
.row5 .left_panel IMG {
    position: absolute;
    width: 60%;
}
.row5 .right_panel {
    background: var(--green);
    color: var(--white);
    padding: 100px 15px;
}
.row6 .right_panel {
    background: var(--gray);
    padding: 100px;
}
#map {
    width: 100%;
    height: 100%;
}
.field {
    background: none;
    border: 1px solid var(--black);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    line-height: 30px;
    padding: 0px 15px;
}
.field_wrap LABEL {
    display: none;
}
#epanek_banner {
    width: 150px;
    display: flex;
    position: fixed;
    z-index: 100;
    bottom: 0px;
    right: 0px;
}
#menu_btn {
    width: 55px;
    height: 16px;
    cursor: pointer;
    position: relative;
    padding: 0px 15px;
    display: none;
}
#menu_btn DIV {
    position: absolute;
    width: 25px;
    height: 2px;
    background: #000000;
}
.menu_line_top {
    top: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
	transition: var(--transition);
}
.menu_line_middle {
    top: 7px;
    opacity: 1;
	transition: var(--transition);
}
.menu_line_bottom {
    top: 14px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
	transition: var(--transition);
}
.menu_line_top.open_menu {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu_line_middle.open_menu {
    opacity: 0;
}
.menu_line_bottom.open_menu {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 990px) {
    HEADER > DIV > UL {
        padding: 0px 0px 0px 0px;
    }
    HEADER > DIV > UL A {
        padding: 5px 15px 5px 15px;
    }
    HEADER > DIV > A {
        padding: 0px 0px 0px 15px;
    }
    .header_left IMG {
        margin-right: 15px;
    }
}
@media screen and (max-width: 767px) {
    #epanek_banner {
        width: 100px;
    }
    .row > DIV.left_panel {
        flex: 1 0 100%;
    }
    .row > DIV.right_panel {
        flex: 1 0 100%;
    }
    .row6 .right_panel {
        padding: 15px;
    }
    .title {
        font-size: 36px;
    }
    #map {
        height: 300px;
    }
    .simptomata {
        margin-left: 0px;
    }
    #menu_btn {
        display: block;
    }
    HEADER > DIV > UL A {
        padding: 30px 15px 30px 15px;
        display: block;
    }
    .menu {
        flex-direction: column;
        justify-content: center;
        position: fixed;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 100px);
        top: 100px;
        left: -100%;
    }
    .menu.open_menu {
        left: 0px;
    }
}