<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face{
	font-family:Gotham-Medium;
	src:url(../media/Gotham-Medium.otf) format("opentype"),url(../media/Gotham-Medium.woff) format("opentype");
	font-style:normal
}
#navbar {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		padding: 10px;
		background: #FFF;
		transition: background .2s;
	  border-bottom: 1px solid #DEDEDE;
	}
	
	#navbar.scrolled {
		border-bottom: 0px solid #222 !important;
	}
	#navbar.scrolled .navigation-links-text {
		transform: translateX(0px);
	}
	#navbar.scrolled .navigation-links a.navigation-button {
		transform: translateX(0px);
		opacity: 1;
	}
	
	.navigation {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 14px;
		position: relative;
		z-index: 999;
		max-width: 98%;
		margin: 0 auto;
	}

	.navigation-logo, .navigation-links {
		display: flex;
		align-items: center;
	}
	
	.navigation-logo {
		margin-bottom: 4px;
		padding-left: 20px;
	}

	.navigation-links a {
		font-family: 'Gotham-Medium', sans-serif;
		font-size: 16px;
		color: #4b4f54 !important;
		padding: 0;
		text-decoration: none;
	}

	.navigation-links a:hover {
		text-decoration: none;
        border-bottom: 2px solid #db0812;
	}
		
	.navigation-links-text {
		transition: all .25s;
		margin-right: 0px;
	
	}

	.navigation-links a.navigation-button {
		color: #000 !important;
		font-weight: 500;
		padding: 0 16px;
		height: 36px;
		line-height: 38px;
		text-transform: uppercase;
		font-size: 12px;
		text-align: center;
		cursor: pointer;
		border-radius: 4px;
		transition: all .25s;
		margin-left: 15px;
		opacity: 0;
		transform: translateX(136px);
	}

	.navigation-links a.navigation-button:hover {
	}

	.navigation-logo {
		margin-right: 20px;
		position: relative;
		z-index: 999;
		margin-left: -2%;
	}


 /* Dropdown Button */
.dropbtn {
  background-color: #FFF;
  color: #4b4f54;
  padding: 16px;
  font-size: 10px;
  border: none;
  cursor: pointer;

}

/* Dropdown button on hover &amp; focus */
.dropbtn:hover, .dropbtn:focus {
  	  background-color: #FFF;
	  -webkit-touch-callout: none;
  	  -webkit-user-select: none;
      -khtml-user-select: none; 
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
	  -webkit-tap-highlight-color: transparent;
	  outline: none !important;
}

/* The container &lt;div&gt; - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin-right: auto;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1;
    font-size: 10px;
	font-family: 'Gotham-Medium', sans-serif;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #4b4f54;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #db0812;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 


.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 3px solid transparent;
  border-right: 3px solid transparent; 
  border-top: 3px solid #db0812;
  float: right;
  margin-top: 5px;
  margin-left: 2px;
}

	/*----------------------------------------*/
	/*  Mobile styles
	/*----------------------------------------*/
	.mobile-menu {
		width: 30px;
		height: 14px;
	    margin-right: 25px;
		cursor: pointer;
		position: relative;
		z-index: 100;
		display: none;
		color:#4b4f54;
		
	}

	.mobile-menu__bar,
	.mobile-menu__bar:after,
	.mobile-menu__bar:before {
		width: 100%;
		height: 2px;
	}

	.mobile-menu__bar {
		position: relative;
		transform: translateY(6px);
		background: #000;
		transition: all 0ms 200ms;
	}

	.mobile-menu__bar.animate {
		background: rgba(255, 255, 255, 0);
	}

	.mobile-menu__bar:before {
		content: "";
		position: absolute;
		right: 0;
		bottom: 8px;
		background: #000;
		transition: bottom 300ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.mobile-menu__bar:after {
		content: "";
		position: absolute;
		right: 0;
		top: 8px;
		background: #000;
		transition: top 300ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.mobile-menu__bar.animate:after {
		top: 0;
		transform: rotate(45deg);
		transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.mobile-menu__bar.animate:before {
		bottom: 0;
		transform: rotate(-45deg);
		transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.mobile-nav {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		z-index: -99;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: scale(0);
		opacity: 0;
		overflow-y: auto;
		padding: 20px;
		text-align: center;
		-webkit-overflow-scrolling: touch;
		transition: all 0.5s cubic-bezier(1, 0, 0, 1);
		font-size: 14px;
        	font-family: 'Gotham-Medium', sans-serif;
		line-height: 45px;
		color: #000;
		margin-left:-20px;

	}
		
     .mobile-nav a {
	  color: #4b4f54;
	  text-decoration: none;
	}

     .mobile-nav a:hover {
	  color: #db0812;
	  text-decoration: none;
	}

	.mobile-nav.mobile-nav--open {
		z-index: 99;
		transform: scale(1);
		opacity: 1;
		transition-delay: 0.2s;
	}

	.mobile-nav__link {
		color: #fff !important;
		font-family: 'Gotham-Medium', sans-serif;
		text-decoration: none;
		display: block;
		font-size: 18px;
		line-height: 44px;
		margin-bottom: 4px;
	}

	.mobile-button {
		background-color: #ea3ba7;
		font-weight: bold;
		font-family: 'Gotham-Medium' !important, sans-serif;
		color: #fff;
		text-transform: uppercase;
		font-size: 14px;
		padding: 12px 25px;
		line-height: 1.5;
		text-align: center;
		cursor: pointer;
		border-radius: 4px;
		box-shadow: 0px 4px 16px rgba(0,0,0,.2);
		margin-top: 20px;
	}

	.mobile-nav--open {
		height: 100vh;
      overflow: hidden;
    }
	
	.mobile-nav--lang {
		font-family: 'Gotham-Medium', sans-serif;
		font-size: 15px;
	}

	body.mobile-nav--open #navbar {
		background: transparent;
    }

	@media screen and (max-width: 767px) {
		.dropdown {
 			display: none;
			}
		
		.navigation-links a {
			display: none;
		}

		.mobile-menu {
			display: block;
		}
	}

</pre></body></html>