@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.woff2') format('woff2'),
        url('../fonts/Helvetica.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica Bold';
    src: url('../fonts/Helvetica-Bold.woff2') format('woff2'),
        url('../fonts/Helvetica-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* https://meyerweb.com/eric/tools/css/reset/v2.0-modified | 20110126License: none (public domain)*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* make sure to set some focus styles for accessibility */
:focus {
	outline: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}
/*** Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.* Known issue: no IE 6 support.*/
[hidden] {
	display: none;
}
/*** 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using* `em` units.* 2. Prevent iOS text size adjust after orientation change, without disabling* user zoom.*/
html {
	font-size: 100%;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
	-ms-text-size-adjust: 100%;
	/* 2 */
}

a, a:hover, a:visited, a:focus { outline: none; }
/*** Improve readability when focused and also mouse hovered in all browsers.*/
a:active,a:hover {
	outline: 0;
}
/*** 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.* 2. Improve image quality when scaled in IE 7.*/
img {
	border: 0;
	/* 1 */
	-ms-interpolation-mode: bicubic;
    vertical-align: bottom;
	/* 2 */
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
html,button,input,select,textarea {
	color: #222;
}
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
* {
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
}
/* custom */
html, body {
    font-family: 'Helvetica';
	color:#061314;
	font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Bold';
	color:#061314;
	margin-bottom: 20px;
    line-height: 1em;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
}
h4 {
    font-size: 1.25em;
}
h5 {
	font-size: 1em;
}
h5 {
	font-size: 1em;
}

p {
    font-family: 'Helvetica';
	color: #061314;
	font-size: 1em;
	margin-bottom: 20px;
	line-height: 1.4em;
}
a {
	text-decoration: none;
	color:#061314;
	transition: 0.3s ease all;
}
a:hover {
	color:#f96e6e;
	transition: 0.3s ease all;
}

.clear {
	clear: both;
	display: block;
	content:" ";
}
.p0 {
	padding:0 !important;
}
.container {
	width: 960px;
	margin:0 auto;
	padding:30px 0;
    z-index: 2;
    position: relative;
}
.container_fluid {
	width: 98%;
	width: calc(100% - 30px);
	margin:15px auto;
	padding:60px 0 0 0;
}

#header {
	display: flex;
	flex-wrap:wrap;
    align-items: center;
    padding:10px 0;
}
#header #logo {
	max-width: 75%;
	flex-basis: 75%;
}
#header #logo img {
	max-height: 100px;
	width: auto;
}
#header #menu {
	max-width: 25%;
	flex-basis: 25%;
}


.menu-icon {
	width: 60px;
	height: 45px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
    float: right;
}
.menu-icon span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #f96e6e;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.menu-icon span:nth-child(1) {
	top: 0px;
}
.menu-icon span:nth-child(2),.menu-icon span:nth-child(3) {
	top: 15px;
}
.menu-icon span:nth-child(4) {
	top: 30px;
}
.menu-icon.menu-icon-active span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}
.menu-icon.menu-icon-active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu-icon.menu-icon-active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.menu-icon.menu-icon-active span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

.menu-links {
    margin-bottom: 10px;
    display: none;
}
.menu-links a {
    font-size: 16px;
    line-height: 36px;
}
.menu-active {
	display: block;
    max-width: 100%;
    flex-basis: 100%;
}
.menu-active li {
	list-style: none;
	text-align: right;
}

.bar {
	background: #f96e6e;
	width: 100%;
}
.bar p {
	margin:0;
	padding:15px 0;
	color:#014489;
	text-align: center;
}
.bar a,
.bar a:hover {
	color:#014489;
}

.absolute_section {
	position: relative;
}
.absolute_text {
	position: absolute;
	top:50%;
	left:50%;
	transform:translateY(-50%);
}

.blue {
	color:#014489;
}
.red {
	color:#f96e6e;
}

form {
	display: flex;
	flex-wrap: wrap;
}
form .locatia1,
form .locatia2 {
	max-width: 45%;
	flex-basis: 45%;
}
form .locatia2 {
	margin-left:10%;
}

form .email,
form .telefon {
	max-width: 30%;
	flex-basis: 30%;
	margin-right: 5%;
}
form .telefon {
	margin-right:0;
}

form label {
	display: block;
	font-size: 1em;
    margin-bottom: 3px;
}
form .locatia1 label,
form .locatia2 label {
    font-family: 'Helvetica Bold';
	font-size: 1.25em;
    margin-bottom: 10px;
}
form input:not([type="submit"]) {
    border: 1px solid red;
    width: 100%;
    padding: 6px 25px;
    border-radius: 5px;
}

form .locatia1 input:not([type="submit"]),
form .locatia2 input:not([type="submit"]) {
    border: 2px solid red;
    width: 100%;
    padding: 12px 25px;
    border-radius: 5px;
    margin-bottom: 10px;
}


form .gdpr {
	max-width: 100%;
	flex-basis: 100%;
	margin-top:20px;
}
input[type='checkbox'] {
  position: absolute;
  opacity: 0;
}
input[type='checkbox'] + span {
    position: relative;
    cursor: pointer;
    padding: 0;
}
input[type='checkbox'] + span:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 15px;
    height: 15px;
    border: 1px solid #f96e6e;
    background: transparent;
    border-radius: 5px;
}

input[type='checkbox']:disabled + span {
    color: #b8b8b8;
    cursor: auto;
}

input[type='checkbox']:disabled + span:before {
    box-shadow: none;
    background: #ddd;
}
input[type='checkbox']:checked + span:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 8px;
    background: #f96e6e;
    width: 2px;
    height: 2px;
    box-shadow: 
      2px 0 0 #f96e6e,
      4px 0 0 #f96e6e,
      4px -2px 0 #f96e6e,
      4px -4px 0 #f96e6e,
      4px -6px 0 #f96e6e,
      4px -8px 0 #f96e6e;
    transform: rotate(45deg);
}


form .submit {
	max-width: 100%;
	flex-basis: 100%;
	margin-top:20px;
}
input[type="submit"] {
	background:#f96e6e;
	color:#fff;
	text-transform: uppercase;
	padding:8px 16px;
	border:1px solid #f96e6e;
	letter-spacing: 1px;
	font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
}

.form-response {
    margin-top: 20px;
}
.form-response.error {
    color: #f96e6e;
}
.form-response.success {
    color: green;
}

.button {
	background:#f96e6e;
	color:#fff;
	text-transform: uppercase;
	padding:8px 16px;
	border:1px solid #f96e6e;
	letter-spacing: 1px;
	font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
}
.button_border {
	background:transparent;
	color:#f96e6e;
}
.button_border:hover {
	color:#f96e6e;
}


.gray {
	background: #f4f8fb;
}
.gray_dark {
	background: #ebebeb;
}
.text_big {
	font-size: 1.4em;
}

.full_image {
	width: 100%;
	height: auto;
	margin-top:-200px;
    vertical-align: bottom;
	z-index: 1;
	position: relative;
}
.image_small {
	width: 120px;
	height: auto;
	margin-bottom: 50px;
}


.image_section {
	display: flex;
    justify-content: space-between;
}
.image_section > div {
	max-width: 49.5%;
	max-width: calc(50% - 7.5px);
	max-width: 49.5%;
	flex-basis: calc(50% - 7.5px);
}
.image_section > div p {
	color:#fff;
	font-size: 1.25em;
	text-align: center;
	padding:10px;
	margin-bottom: 0;
}
.image_section > div p span {
    font-family: 'Helvetica Bold';
	font-size: 1.6em;
	display: block;
    margin-top: -5px;
    line-height: 1.4em;
}

.image_section_blue p {
	background: #014489;
}
.image_section_red p {
	background: #f96e6e;
}

footer {
	width: 100%;
	background: #252525;
	padding:20px 0;
}
footer p {
	color:#767676;
	margin-bottom: 0;
}
footer a {
	color:#767676;
}
footer a:hover {
	color:#fff;
}
.footer {
	display: flex;
	align-content: center;
	align-items: center;
}
.footer_logo img {
	max-width: 230px;
	height: auto;
}
.footer_social {
    text-align: right;
}
.footer_social img {
	max-width: 40px;
	height: auto;
	margin-right: 5px;
}
.footer > div {
	max-width: 49.5%;
	max-width: calc(50% - 7.5px);
	flex-basis: 49.5%;
	flex-basis: calc(50% - 7.5px);
}

#multumim {
	padding:100px 0;
}


.eupopup-buttons a {
	color:#000 !important;
}
.eupopup-head {
	color:#000 !important;
}

body.cookies-not-set {
    overflow: hidden;
}
body.cookies-not-set > div:not(.eupopup-container) {
    filter: blur(2px);
}   
body.cookies-not-set > div:not(.eupopup-container):after {
    position: absolute;
    content:"";
    background: rgba(0,0,0,0.5);
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
}
.eupopup-container > div {
	max-width: 100%;
	flex-basis: 100%;
}
.eupopup-container {
    box-shadow: 0 0 100px black;
    position: fixed;
    top: 50%;
    left: 50% !important;
    right: initial !important;
    bottom: initial !important;
    transform: translate(-50%,-50%);
    width: 75%;
    min-width: 75%;
    height: 200px;
    display: flex !important;
    align-content: center;
    align-self: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff !important;
    justify-content: center;
}
.eupopup-closebutton:hover, .eupopup-closebutton:active {
	color: #000 !important;
}



@media (max-width: 1000px) {
	.bar p,
	.container {
		width: 95%;
		margin:0 0 0 2.5%;
	}
}

@media (max-width: 768px) {
	h1,
	h2 {
		font-size:1.2em;
		line-height: 1.2em;
	}
	br {
		display: none;
	}
	.full_image {
	    margin-top: -50px;
	}
	.text_big {
	    font-size: 1em;
	}
	footer {
    	text-align: center;
	}
	footer p span {
		display: block;
	}
	.footer_social {
	    margin: 30px 0;
	}
	.footer,
	.image_section {
	    flex-wrap: wrap;
	}
	.footer > div,
	.image_section > div {
	    max-width: 100%;
	    flex-basis: 100%;
	}
	.image_section > div:not(:last-child) {
		margin-bottom:15px;
	}
	.footer {
    	text-align: center;
	}
	.footer > div {
	    text-align: center;
	}
	.container_fluid {
	    padding: 30px 0 0 0;
	}
	form > * {
	    max-width: 100% !important;
	    flex-basis: 100% !important;
	    margin: 10px 0 !important;
	}
	.image_section > div p span {
	    line-height: 1.1em;
	}
}