/*
Nono Sans: 400, 600
Roboto Slab: 300, 400, 600, 800
*/
* {
	box-sizing: border-box;
}
body {
	font-family: var(--font);
	/*background: url('../img/template1333.jpg') top center no-repeat;*/
	margin: 0;
	padding: 0;
	color: var(--color);
	font-size: 18px;
	line-height: 1.3em;
}
h1, h2, h3 {
	font-family: var(--title-font);
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.2em;
}
h4, h5, h6 {
	color: var(--primary-color);
	font-family: var(--font);
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.2em;
}
h1 {
	font-size: 1.68em;
	border-bottom: 2px solid var(--primary-color);
	margin: 25px 0 25px;
	padding: 5px 0;
}
h2 { font-size: 1.50em; }
h3 { font-size: 1.30em; }

h4 { font-size: 1.10em; }
h5 { font-size: 1.05em; }
h6 { font-size: 1.00em; }

small {
	text-transform: none;
}
/*
img {
	display: block;
	width: 100%;
}
*/
.wide {
	display: block;
}
.portrait {
	display: none;
}

a, a:visited {
	color: var(--primary-color);
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: underline;
}
h1 a, h1 a:visited {
	color: var(--color);
	text-decoration: none;
}
h1 a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.img img {
	width: 100%;
}
.relative {
	position: relative;
}
.play {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.play i {
 color: #c00;
 font-size: 120px;
}
a:hover .play i {
	color: var(--primary-color);
}

.gVideo {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 56.25%;
	display: block;
}
.thVideo {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}
.thVideo img {
	width: 100%;
}


input, button, textarea {
	font-family: var(--font);
}
button {
	color: #fff;
	background: var(--color);
	text-transform: uppercase;
	font-size: 20px;
	line-height: 22px;
	border: 0;
	padding: 10px 15px;
}
button.link {
	color: var(--primary-color);
	background: none;
	display: inline;
	padding: 0;
	border: 0;
	text-transform: none;
	font-size: 1em;
}
button.link:hover {
	text-decoration: underline;
	background: none;
}

.wMax {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 25px;
}
.minContent {
	min-height: 500px;
}

a.btn:visited {
	color: #fff;
}

/* HEADER */
header {
	background: #fff;
	padding-top: 27px;
	/*border-bottom: 2px solid var(--primary-color);*/
}

header .wMax {
	height: 83px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo img {
	max-width:  280px;
}
.logo a:hover img {
	filter: grayscale(100%) brightness(0%);
}
/* HEADER */


/* MENU */

header .menu {
	text-transform: uppercase;
	font-size: 14.5px;
	line-height: 14.5px;
	font-weight: 600;
}
header .menu ul.main {
	padding: 0;
	margin: 0;
	height: 44px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	gap: 18px;
}
header .menu ul.main > li {
	margin: 0;
	padding: 0;
	position: relative;
}
header .menu ul.main > li a, header .bottom .menu ul.main > li a:visited {
	display: block;
	padding: 22px 0 8px;
	color: var(--color);
	text-decoration: none;
	border-bottom: 2px solid transparent;
}
header .menu ul.main > li a:hover {
	background: none;
	color: var(--color);
	text-decoration: none;
	border-bottom: 2px solid var(--primary-color);
}

header .menu a.openeable::after, header .menu a.openeableSub::after {
	margin-left: 5px;
	font-family: "FontAwesome";
	content: "\f0d7";
}

header .menu ul.main .submenu {
	display: none;
	position: absolute;
	z-index: 1000;
	background: #E5E6E7;
	border: 1px solid var(--primary-color);
	border-bottom: none;
	margin: 0;
	padding: 0;
	top: 65px;
	left: -30px;
	flex-direction: column;
	list-style: none;
	width: calc(100% + 60px);
}
header .menu ul.main .submenu li {
	margin: 0;
	padding: 0;
}
header .menu ul.main .submenu li a, header .menu .submenu li a:visited {
	color: var(--color);
	display: block;
	padding: 14px 15px;
	border-bottom: 1px solid var(--primary-color);
	text-align: center;
}
header .menu ul.main .submenu li a:hover {
	color: var(--color);
	opacity: 50%;
	border-bottom: 1px solid var(--primary-color);
}

header .menu ul.main .submenu .subsubmenu {
	list-style: none;
	display: none;
	position: absolute;
	top: -1px;
	left: 278px;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	max-width: 500px;
	width: 100%;
}

header .mobile_menu {
	display: none;
	font-size: 28px;
	/*
	border: 1px solid #ccc;
	border-radius: 5px;
	*/
	padding: 10px;
	cursor: pointer;
}
header .mobile_menu:hover {
	color: #fff;
	background: var(--primary-color);
}
/* /header bottom */

.mobile {
	display: none;
	font-size: 26px;
	line-height: 26px;
}
/* /MENU */

/* CONTEXT MENU */
.context-menu a, .context-menu a:visited, .context-menu .sel {
	margin-right: 30px;
}
.context-menu a, .context-menu a:visited {
	opacity: 0.7;
}
.context-menu a:hover {
	opacity: 1;
	text-decoration: none;
}
.context-menu .sel {
	color: #000;
}





/* /CONTEXT MENU */



.social-container {
	position: relative;
}
.social-container .socialmedia {
	background: var(--primary-color);
	color: #fff;
	position: absolute;
	width: 65px;
	right: 0;
	top: 22%;
	display: flex;
	flex-direction: column;
	font-size: 35px;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	gap: 10px;
	border-top-left-radius: 30px;
}
.social-container .socialmedia a, .social-container .socialmedia a:visited {
	color: #fff;
}
.social-container .socialmedia a:hover {
	color: #000;
}






/* FOOTER */

footer .subscription {
	margin-top: 30px;
	background: var(--gray-background);
	padding: 20px 0;
	text-transform: uppercase;
	color: var(--gray-color);
}
footer .subscription form {
	max-width: 900px;
	padding: 25px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 0;
}

footer .subscription form .tit {
	flex-grow: 2;
	display: flex;
	align-items: center;
}
footer .subscription form .form {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
footer .subscription form input {
	width: 405px;
	padding: 15px 30px;
	border: none;
	text-transform: lowercase;
	font-size: 22px;
	line-height: 30px;
}
footer .subscription form button {
	flex-grow: 2;
	border: none;
	text-transform: uppercase;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 22px;
	margin: 0;
}
footer .subscription form button:hover {
	background-color: #000;
}
footer .subscription #formAlert {
	max-width: 900px;
	padding: 0 25px;
	margin: 0 auto;
}

footer .internal {
	text-transform: uppercase;
	color: var(--primary-color);
	padding-bottom: 20px;
	margin-bottom: 50px;

	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid var(--primary-color);

	font-size: 17px;
	line-height: 26px;
}

footer .internal > div {
	border-right: 2px solid var(--primary-color);
	padding: 0 34px;
}

footer .internal div.logo {
	padding-left: 0;
	width: 347px;
}
footer .internal div.contact {
	width: 387px;
}
footer .internal div.sitemap {
	width: 263px;
}
footer .internal div.socialmedia {
	width: 213px;
	padding-right: 0;
	border-right: none;
}

footer .internal div.socialmedia p {
	display: flex;
	padding-top: 28px;
}

footer .internal div.socialmedia p a, footer .internal p div.socialmedia a:visited {
	display: block;
	width: 45px;
	text-align: center;
	font-size: 21px;
	padding: 10px 0;
	background: var(--primary-color);
	border-radius: 50%;
	color: #fff;
	margin-right: 12px;
}
footer .internal div.socialmedia p a:hover {
	background-color: #000;
}
footer .logo img {
	max-width: 200px;
}
footer h3 {
	font-family: var(--font);
	font-size: 40px;
	line-height: 50px;
	font-weight: 400;
	margin: 0;
	padding: 32px 0;
}
footer h4 {
	margin: 0;
	padding: 16px 0;
	font-family: var(--font);
	font-size: 19px;
	font-weight: 400;
}
footer p {
	margin: 0;
	padding: 16px 0;
}

.velo {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #00000080;
	z-index: 2000;
	justify-content: center;
	align-items: center;
}
#win {
	display: none;
	width: 80%;
	max-width: 600px;
	min-width: 320px;
	background: #fff;
	box-shadow: 0 0 10px 0 #00000080;
}
#win h2 {
	background: var(--primary-color);
	color: #fff;
	font-family: var(--font);
	font-size: 1.1em;
	padding: 15px 25px 10px;
	font-weight: 400;
}
#win .internal {
	padding: 10px 25px;
}

/* /FOOTER */


/* MEDIA QUERIES */
@media (max-width: 1180px) {
	footer .internal div.sitemap {
		display: none;
	}
}
@media (max-width: 1120px) {
	header .mobile_menu {
		display: block;
	}
	
	header .menu {
		display: none;
		position: absolute;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
	}
	header .menu.opened {
		display: block;
	}
	
	header .bottom .container {
		padding: 0;
	}
	header .menu ul.main {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		height: auto;
	}
	header .menu ul.main li a {
		border-bottom: 1px solid #ccc;
		padding: 27px 10px 13px;
	}
	header .menu ul.main li a:hover {
		border-bottom: 1px solid #ccc;
		background: #ccc;
		opacity: 0.5;
	}
	header .menu ul.main .submenu {
		position: static;
		width: 100%;
		border: none;
		background: none;
		border-bottom: 1px solid #ccc;
	}
	header .menu  ul.main li .submenu li a, header .menu  ul.main li .submenu li a:visited {
		text-align: left;
		padding: 27px 10px 13px 30px;
		border-bottom: 1px solid #ccc;
	}
	header .subsubmenu {
		position: static;
		max-width: 100%;
		width: 100%;
		border: none;
	}
	header .menu  ul.main li .submenu li .subsubmenu li a, header .menu  ul.main li .submenu li .subsubmenu li a:visited {
		padding-left: 45px;
	}
	
}
@media (max-width: 920px) {
	body {
		font-size: 16px;
	}
	.wMax {
		padding-left: 10px;
		padding-right: 10px;
	}
	h1 {
		font-size: 1.40em;
	}
	.row {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
		padding-left: 10px;
		padding-right: 10px;
	}
	

	.sliders .socialmedia {
		width: 45px;
		right: 0;
		top: 22%;
		font-size: 30px;
		padding: 7px 0;
		gap: 12px;
		border-top-left-radius: 20px;
	}

	footer .subscription {
		padding: 20px 0;
	}
	footer .subscription form {
		padding: 10px 20px;
		flex-wrap: wrap;
		max-width: 555px;
	}
	footer .subscription form .form {
		width: 100%;
	}
	footer .subscription form .tit {
		width: 100%;
		padding: 0 0 20px;
	}
	footer .subscription form input {
		width: 100%;
		max-width: calc(100% - 130px);
		font-size: 18px;
		padding: 10px 15px;
	}
	footer .subscription form button {
		width: 130px;
		font-size: 18px;
	}


	footer .internal div.logo {
		width: 50%;
	}
	footer .logo img {
		max-width: 150px;
	}
	footer h3 {
		font-size: 35px;
		line-height: 42px;
	}
	footer h4 {
		font-size: 16px;
	}
	footer .internal {
		font-size: 15px;
	}
	footer .internal > div {
		padding: 0 25px;
	}
	footer .internal div.socialmedia {
		display: none;
	}
	footer .internal div.contact {
		border-right: none;
		width: 50%;
	}
}

@media (max-width: 640px) {
	header {
		padding-top: 0;
	}
	header .wMax {
		height: 55px;
	}
	.logo img {
		max-width: 130px;
	}

	footer .subscription form {
		padding: 0 10px;
		max-width: 400px;
	}
	footer .subscription form .tit {
		font-size: 14px;
		padding-bottom: 10px;
	}
	footer .subscription form input {
		width: 100%;
		max-width: calc(100% - 80px);
		font-size: 16px;
		padding: 5px 7px;
	}
	footer .subscription form button {
		width: 80px;
		font-size: 16px;
		padding: 5px 7px;
	}

	footer .internal {
		flex-wrap: wrap;
	}
	footer .internal div.logo {
		border-right: none;
		width: 100%;
		padding: 0;
	}
	footer .internal div.contact {
		width: 100%;
		padding: 0;
	}
	
}
@media (orientation: portrait) {
	.wide {
		display: none;
	}
	.portrait {
		display: block;
	}
}