/* Import Fonts */
@font-face {
  font-family: 'Nantes';
  src: url("../font/nantes/Nantes-LightItalic.ttf")
}
@font-face {
  font-family: 'Light';
  src: url("../font/museo/MuseoSans-300_0.otf")
}
@font-face {
  font-family: 'LightItalic';
  src: url("../font/museo/MuseoSans-100Italic.otf")
}
@font-face {
  font-family: 'Normal';
  src: url("../font/museo/MuseoSans_4.otf")
}
@font-face {
  font-family: 'Semibold';
  src: url("../font/nimbus/Nimbus-Sans-D-OT-Bold_32747.ttf")
}

.merriweather-light {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
}

.merriweather-regular {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
}

.merriweather-bold {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
}

.merriweather-black {
  font-family: "Merriweather", serif;
  font-weight: 900;
  font-style: normal;
}

.merriweather-light-italic {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: italic;
}


/* root */
:root {
    --bg-color: #eaeaea;
    --bg-color2: #aaaaaa;
    --1-color: #222222;
    --2-color: #333333;
    --3-color: #000000;
    --shadow: 0px 0px 15px 0px rgba(51,51,51,0.4);

    --icon-arrow-l: url("../img/arrow_left.svg") !important;
    --icon-arrow-r: url("../img/arrow_right.svg") !important;
    --icon-goto: url("../img/arrow_right.svg");
}
[data-theme="dark"] {
    --bg-color: #333333;
    --bg-color2: #444444;
    --1-color: #f4f4f4;
    --2-color: #aaaaaa;
    --3-color: #ffffff;
    --shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);

    --icon-arrow-l: url("../img/arrow_left_w.svg") !important;
    --icon-arrow-r: url("../img/arrow_right_w.svg") !important;
    --icon-goto: url("../img/arrow_right_w.svg");
}

/*Simple css to style it like a toggle switch
.theme-switch-wrapper {
}
.theme-switch {
  display: inline-block;
  height: 14px;
  position: relative;
  width: 40px;
  margin-left:20px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 1s;
}

.slider:before {
  background-color: #fff;
  bottom: -3px;
  content: "";
  height: 20px;
  left: 0px;
  position: absolute;
  transition: .4s;
  width: 20px;
}

input:checked + .slider {
  background-color: #333333;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
*/


body{
  --text-color: #303030;
  --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) inset;
  --transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.dark body {
  --text-color: #ebeaf7;
  --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5) inset;
}

@media (prefers-color-scheme: dark) {
  body {
    --text-color: #ebeaf7;
    --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5) inset;
  }
  .light body {
    --text-color: #303030;
    --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) inset;
  }
}


.theme-switch {
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-switch .checkbox {
  opacity: 0;
  position: absolute;
}

.theme-switch .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 50px;
  position: relative;
  height: 24px;
  width: 60px;
  cursor: pointer;
  box-shadow: var(--switch-shadow);
  transition: var(--transition);
  margin-left:20px
}

.theme-switch .label:hover .moon,
.theme-switch .label:hover .sun {
  transform: rotate(360deg);
}

.theme-switch .ball {
  transition: var(--transition);
  background-color: var(--text-color);
  position: absolute;
  border-radius: 50%;
  top: -2px;
  left: 0px;
  height: 26px;
  width: 26px;
 }

.theme-switch .moon {
  color: #f1c40f;
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(0);
}

.theme-switch .sun {
  color: #ff6b00;
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(0);
}

.theme-switch .ball {
  transform: translatex(0);
}

.dark .theme-switch .ball {
  transform: translatex(34px);
}

@media (prefers-color-scheme: dark) {
  .theme-switch .ball {
    transform: translatex(34px);
  }

  .light .theme-switch .ball {
    transform: translatex(0);
  }
}






/* Toggle Styles */
html,
body {
  /*height:100% !important;*/
	font-weight: normal !important;
  position: relative;
}

body {
	font-family: 'Normal', sans-serif;
  /*background-color:var(--bg-color);*/
	line-height: auto !important;
  transition: all 0.25s ease !important;
  background: radial-gradient(at top, var(--bg-color), var(--bg-color2) 85.29%);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus {outline:0 !important;}

ul {list-style:none; margin:0; padding:0}
ul li { }

a { color:var(--2-color); text-decoration:none}
a:HOVER  { color:var(--3-color); text-decoration:none}

.dropdown-toggle:focus {outline: none !important;}

/* ELEMENTS */
.goto {
  display:inline-block;
  border: .5px solid var(--2-color);
  padding: 6px 60px 4px 16px;
  text-transform: uppercase;
  font-family: 'Light', Calibri, Arial, sans-serif;
  margin:25px 0;
  color:var(--2-color);
  font-size:12px;
  line-height:16px;
  background-image:var(--icon-goto);
  background-position:right 20px center;
  background-size:20px;
  background-repeat:no-repeat;
  transition: all .5s;
}
.goto:HOVER {
  border: .5px solid var(--3-color);
  background-position:right 10px center;
}

.marginBlock {
  padding-top: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.imageBlock {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.imageBlock.h50 { height:50vh}
.imageBlock.h75 { height:75vh}
.imageBlock.h100 { height:100vh}

@media only screen and (max-width: 992px) {
  main {margin-top: 100px}
  .marginBlock {
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

}


/* Typography Styles */
h1, .h1{
  font-family: 'Normal', Calibri, Arial, sans-serif;
  color:var(--1-color);
  font-size:45px;
  line-height:50px;
  margin-bottom: 70px;
}

h2, .h2{
  font-family: "Merriweather", serif;
  font-weight: 900;
	margin: 0 auto;
  color:var(--1-color);
  font-size:45px;
  line-height:50px;
}

h3, .h3 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color:var(--1-color);
  font-size:26px;
  line-height:30px;
}

h4, .h4{
	font-family: 'Light', Calibri, Arial, sans-serif;
  color:var(--1-color);
  font-size:25px;
  line-height:30px;
}

h5, .h5{
	font-family: 'Light', Calibri, Arial, sans-serif;
  color:var(--1-color);
  font-size:18px;
  line-height:22px;
}

h6, .h6 {
  font-family: 'Light', Calibri, Arial, sans-serif;
	margin:0;
  margin-bottom:25px;
  color:var(--1-color);
  font-size:14px;
  line-height:18px;
	padding:0;
  text-transform:uppercase;
}

.p, p {
	font-family: 'Normal', Calibri, Arial, sans-serif;
  color:var(--1-color);
  font-size:16px;
  line-height:20px;
}



@media only screen and (max-width: 1200px) {
  h1, .h1{
    font-family: 'Normal', Calibri, Arial, sans-serif;
    color:var(--1-color);
    font-size:45px;
    line-height:50px;
    margin-bottom: 70px;
  }

  h2, .h2{
    font-family: "Merriweather", serif;
    font-weight: 900;
  	margin: 0 auto;
    color:var(--1-color);
    font-size:30px;
    line-height:40px;
  }

  h3, .h3 {
    font-family: "Merriweather", serif;
    font-weight: 700;
    color:var(--1-color);
    font-size:26px;
    line-height:30px;
  }

  h4, .h4{
  	font-family: 'Light', Calibri, Arial, sans-serif;
    color:var(--1-color);
    font-size:25px;
    line-height:30px;
  }

  h5, .h5{
    font-size:16px;
    line-height:20px;
  }

  h6, .h6 {
    font-family: 'Light', Calibri, Arial, sans-serif;
  	margin:0;
    margin-bottom:25px;
    color:var(--1-color);
    font-size:14px;
    line-height:18px;
  	padding:0;
    text-transform:uppercase;
  }

  .p, p {
  	font-family: 'Normal', Calibri, Arial, sans-serif;
    color:var(--1-color);
    font-size:16px;
    line-height:20px;
  }
}

@media only screen and (max-width: 992px) {



}



/** NEW NEW HEADER  **/
.container-fluid.header {
  width: calc(100%) !important
}

.header {
  height: 80px !important;
	z-index: 9000;
  background: #1D1D1D;
  background: linear-gradient(315deg, #1D1D1D, #2D2D2D);
  /*mix-blend-mode:multiply;*/
}

@media only screen and (min-width: 992px) {
  .header > .row {
    margin-left:27px;
    margin-right:27px;
  }
}

.hide-headerNO {
    opacity: 0;
    transition: all 0.25s ease !important;
  }

.show-headerNO {
    opacity: 1;
    transition: all 0.35s ease !important;
  }


.header .logo {
  font-size: 18px;
  line-height:20px;
  font-family: 'LightItalic', Calibri, Arial, sans-serif;
  margin-top: 20px;
  color: #ffffff
}
.header .logo a {color: #ffffff}
.header .logo img {width: 45px; margin-right: 10px;}



@media only screen and (max-width: 991px) {
  .header {height: 72px !important;}
	.logoMenu {height: 60px;}
  .header .logo {margin-top: 16px;}
}

@media only screen and (max-width: 576px) {
	.header {height: 70px !important;}
	.logoMenu {height: 50px; margin-top: 0px; margin-right: 5px;}
	.activeWhite .logoMenu {height: 50px; margin-right: 5px;}
  .header .logo {
    font-size: 14px;
    line-height:20px;
  }
}

.main {
	margin: 0 auto;
	display: block;
	height: 100%;
	margin-top: 60px;
}
.mainInner{
	display: table;
	height: 100%;
	width: 100%;
	text-align: center;
}
.mainInner div{
	display:table-cell;
	vertical-align: middle;
	font-size: 3em;
	font-weight: bold;
	letter-spacing: 1.25px;
}

#sidebarMenu {
	height: 100%;
	position: fixed;
	top: 0;
	z-index: 9000;
	right: 0;
	width: 400px;
	margin-top:0px;
	padding-top: 45px;
	border-left: 1px solid #eaeaea;
	transform: translateX(400px);
	transition: transform 250ms ease-in-out;
  background: linear-gradient(180deg, #dddddd 0%, #aaaaaa 100%);
	font-size: 14px!important;
	overflow-y: scroll;
	-webkit-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.1);
		 -moz-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.1);
					box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.1);
}

.headerNav {
	text-align: right;
	line-height: 30px;
  margin-top: 30px;
  font-size: 16px;
  font-family: 'Light', Calibri, Arial, sans-serif;
}
.headerNav a {
	margin-left: 18px;
	transition: .25s ease-in-out;
  color: #aaaaaa;
}
.headerNav a:HOVER, .headerNav a:active, .current a {	color: #ffffff }

.headerNav li {display:inline-block;}

.btnLang button {
	background-color: transparent;
	border: 0;
	text-align: right;
	line-height: 16px;
	margin-top: 0px;
  margin-left: 18px;
  font-size: 22px;
  color: #aaaaaa;
}

.btnLang .dropdown-menu {
	left: -30px  !important;
	min-width: 80px !important;
	padding: 0px !important;
	margin: 0;
  font-size: 22px;
  color: #aaaaaa;
	text-align: left;
	list-style: none;
  background-color: var(--2-color);
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
}

.btnLang .dropdown-item {
	display: block;
	width: 100%;
  padding: 5px 10px 0px;
	clear: both;
	color: #aaaaaa;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

@media only screen and (max-width: 1250px) {
	.headerNav a { margin-left: 15px;}
}
@media only screen and (max-width: 1250px) {
  .headerNav {line-height: 20px; font-size: 16px;}
	.headerNav a { margin-left: 10px;}
  .btnLang button { line-height: 16px; font-size: 18px; }

}
@media only screen and (max-width: 500px) {
  .header .logo {	font-size: 16px !important; margin-top: 15px}

}


@media only screen and (max-width: 570px) {
	#sidebarMenu {
		width: 95%;
		transform: translateX(100%);
	}
}

#overlayMenu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	opacity: 0;
	z-index: 8000;
	background-color: rgba(0,0,0,.5);
	transition: all 0.2s ease-in-out;}

.nav-link {
	display: block;
	padding: .2rem 1rem;
}


@media only screen and (min-width: 992px) {
	.deviceV {display: none}
}
@media only screen and (max-width: 991px) {
	.headerNav li.monitorV {display: none}
  .headerNav {
    margin-top: 25px;
  }
}


.sidebarMenuInner{
	margin:0;
	padding:0;
}
.sidebarMenuInner .logoHome{
	width: 30px;
	margin:0;
	padding:0;
}
.sidebarMenuInner li{
	text-transform: uppercase;
	padding: 6px 10px 0 10px;
	font-family: 'Bold', Calibri, Arial, sans-serif;
}
.sidebarLink li a{ cursor: pointer; text-decoration: none;}
.sidebarLink li a { color: var(--3-color)}
.sidebarLink li a:HOVER { color: #666666}
.sidebarLink li.active a {color: #666666;}


.sidebarMenuLang {
	margin:20px 20px 0 20px;
	padding:20px 10px 0px 10px;
	border-top: 1px solid #eaeaea;
	font-family: 'Semibold', Calibri, Arial, sans-serif;
}

.sidebarMenuSocial{
	margin:20px;
	padding:20px 10px 0px 10px;
	border-top: 1px solid #eaeaea;
}
.sidebarMenuSocial img {width: 30px}


.sidebarMenuVideo{
	margin:20px;
	padding:20px 10px 0px 10px;
	border-top: 1px solid #eaeaea;
	text-transform: uppercase;
}
.sidebarMenuVideo img {height: 50px; margin-right: 20px; margin-top: 0px}
.sidebarMenuVideo .btn {
	border: 1px solid #d6b794;
	padding: 10px 20px;
	width: 100%;
	text-align: center;
	font-family: 'Bold', Calibri, Arial, sans-serif;
	font-size: 15px !important;
}

.sidebarMenuNewsl {
	margin:0px 20px 20px 20px;
	padding:0px 10px 20px 10px;
}


input[type="checkbox"]:checked ~ #sidebarMenu {
	transform: translateX(0);
}

input[type="checkbox"]:checked ~ #overlayMenu {
	display: inline;
	opacity: 1;
}

input.openSidebarMenu {
	transition: all 0.3s;
	box-sizing: border-box;
	display: none;
}
.sidebarIconToggle {
	transition: all 0.3s;
	box-sizing: border-box;
	cursor: pointer;
	position: absolute;
	z-index: 9200;
	height: 100%;
	width: 100%;
  top: 34px;
  right: 52px;
	height: 22px;
	width: 22px;
	position: fixed;
  display: none;
}

@media only screen and (max-width: 991px) {
  .sidebarIconToggleNO {top: 30px; display:block;}

	.sidebarIconToggle {
		height: 20px;
		width: 20px;
	}

}

@media only screen and (max-width: 576px) {
	.sidebarIconToggle {top: 28px;}
}

.activeWhite ~ .sidebarIconToggle {top: 28px;}

.spinner {
	transition: all 0.3s;
	box-sizing: border-box;
	position: absolute;
	height: 3px;
	width: 100%;
  background-color: #aaaaaa;
}
.horizontal {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 3px;
}
.diagonal.part-1 {
	position: relative;
	transition: all 0.3s;
	box-sizing: border-box;
	float: left;
}
.diagonal.part-2 {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
	transition: all 0.3s;
	box-sizing: border-box;
	opacity: 0;
	background-color: #000;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
	transition: all 0.3s;
	box-sizing: border-box;
	transform: rotate(135deg);
	margin-top: 8px;
	background-color: #000;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
	transition: all 0.3s;
	box-sizing: border-box;
	transform: rotate(-135deg);
	margin-top: -9px;
	background-color: #000;
}
/* END NEW HEADER STYLE */


/* FOOTER Styles */
#footer {
  background-color:#141413;
}

.footer {
  padding-top:120px;
	padding-bottom:20px;
}

@media only screen and (min-width: 992px) {
  .footer {
    padding-top:80px;
  	padding-bottom:20px;
  }
}

.footerCont.container-fluid {width: 100% !important}

#footer .h6 {
  text-transform: none;
}
#footer p {
  color:#aaaaaa;
}


/* ToTop Plugin */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(200, 200, 200, 0.6) url(../img/cd-top-arrow.svg) no-repeat center 50%;
	background-size:50% 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-top--fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}

.cd-top:hover {
  background-color: var(--2-color);
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 40px;
    width: 40px;
    right: 30px;
    bottom: 30px;
  }
}
/* END ToTop Plugin */







/*  */
