/*General*/
:root{
  /*Main Colors*/
  --black-medium: #202020;
  --black-light: #454545;
  --gray-light: #505050;
  --gray-pearl: #e5e5e5;
  --gray-oxford: #141516;
  --gray-50: #ccc;
  --sky-blue: #0099CC;
  --white-100: #fafafa;
  --white-85: #aaa;
  /*Shadows*/
  --light-shadow: rgba(0,0,0,0.1);
}

@font-face{
	font-family: 'Oxigen-Regular';
	src: url(fonts/Oxygen-Regular.ttf);
}

@font-face{
	font-family: 'Oxigen-Bold';
	src: url(fonts/Oxygen-Bold.ttf);
}

*,html,body{
	font-family: 'Oxigen-Regular';
  font-size: 14px;
}

body{
	width: 100%;
  color: var(--black-medium);
}

/*Cabecera de Acceso*/
.top-header{
	position: relative;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background-color: var(--black-medium);
  color: var(--white-100);
	z-index: 10;
}

/*Menu*/
.navigation{
  position: sticky;
  top: 0;
	display: flex;
  align-items: center;
	width: 100%;
	height: 80px;
	background-color: #fff;
	box-shadow: 0px 3px 3px 0px var(--light-shadow);
  z-index: 200;
}

.navigation .logo{
	display: flex;
  align-items: center;
  justify-content: center;
	height: 60%;
	width: 10%;
  margin-left: 10px;
}

.navigation .logo img{
	display: block;
	width: 100%;
}

.menu {
  display: flex;
	background: #fff;
  width: 80%;
	height: 100%;
  margin-right: 20px;
  text-transform: capitalize;
}

.menu > ul {
  display: flex;
  align-items: center;
  justify-content: start;
  list-style: none;
	width: 100%;
  height: 100%;
}

.menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100%;
  cursor: pointer;
}

.menu a {
	display: block;
	line-height: 40px;
	text-decoration: none;
  text-align: center;
	color: var(--black-medium);
  font-family: 'Oxigen-Bold';
	font-size: 1rem;
}

.menu li:hover a {
	color: #0099CC;
}

.menu ul.sub-menus{
  position: absolute;
  display: none;
}
.menu ul.sub-menus li {
	display: block;
	width: 100%;
}
.menu ul.sub-menus a {
  text-align: left;
	color: #444444;
	font-size: 1rem;
}
.menu li:hover ul.sub-menus {
  position: absolute;
  top: 80px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  box-shadow: 5px 5px 5px 0 var(--light-shadow);
  display: block;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  z-index: 99;
}

.menu ul.sub-menus a:hover{
	color: #0099CC;
}

.mobile-menu{
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  text-transform: uppercase;
  position: fixed;
  z-index: 999;
}

.mobile-menu a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #202020;
  width: 100%;
  height: 40px;
  font-family: 'Oxigen-Bold';
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.userControls{
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 100%;
  width: 10%;
	overflow: hidden;
  margin-right: 10px;
}

.userControls .btnUserControls{
	cursor: pointer;
}

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

  .navigation .logo{
    height: 60%;
    width: 20%;
  }
  
  .navigation .logo img{
    display: block;
    width: 100%;
  }

  .userControls{
    width: 15%;
  }

  .menu {
    display: none;
  }

}

/*Footer*/
footer
{
	display: block;
	width: 100%;
	background-color: var(--gray-oxford);
	color: var(--gray-light);
}

footer .title{
  font-size: 0.95rem;
}

footer .copy{
  font-size: 0.95rem;
}

footer .links{
  font-size: 0.9rem;
}

footer ul{
  width: auto;
  font-size: 0.95rem;
  list-style-position: inside;
  list-style-type: none;
  padding: 0;
}

footer a{
  text-decoration: none;
  color: var(--gray-light);
  transition: color 0.25s ease-in-out;
}

footer a:hover{
  color: var(--sky-blue);
  transition: color 0.25s ease-in-out;
}

/*General*/
.bg-pearl{
  background-color: var(--gray-pearl) !important;
}

.text-gray-light{
  color: var(--gray-light) !important;
}

.text-gray-oxford{
  color: var(--gray-oxford) !important;
}

.text-black-light{
  color: var(--gray-black-light) !important;
}

.text-justify{
  text-align: justify !important;
}

.text-regular{
  font-family: 'Oxigen-Regular';
}

.text-bold{
  font-family: 'Oxigen-Bold';
}

.btn-type-1{
	width: 100%;
	height: 50px;
  border: 0;
  border-radius: 5px;
	color: var(--white-100);
	background-color: var(--black-medium);
	cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.btn-type-1:hover{
  color: var(--white-100);
  background-color: var(--black-light);
  transition: background-color 0.25s ease-in-out;
}

.btn-type-2{
	width: 100%;
	height: 30px;
  background-color: var(--black-medium);
  border: 0;
  border-radius: 5px;
	color: var(--white-100);
	cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.25s ease-in-out;
}

.btn-type-2:hover{
  color: var(--white-100);
  background-color: var(--black-light);
  transition: background-color 0.25s ease-in-out;
}