/*-----------------------------------------------------------------------------------
	engopt2026
	About: A shiny new Blocs website.
	Author: Luís Barros
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'GothamXNarrow-Book';
	src: url('./fonts/GothamXNarrow-Book/GothamXNarrow-Book.woff');
	src: url('./fonts/GothamXNarrow-Book/GothamXNarrow-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamXNarrow-Bold';
	src: url('./fonts/GothamXNarrow-Bold/GothamXNarrow-Bold.woff');
	src: url('./fonts/GothamXNarrow-Bold/GothamXNarrow-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamXNarrow-Medium';
	src: url('./fonts/GothamXNarrow-Medium/GothamXNarrow-Medium.woff');
	src: url('./fonts/GothamXNarrow-Medium/GothamXNarrow-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamNarrow-Book';
	src: url('./fonts/GothamNarrow-Book/GothamNarrow-Book.woff');
	src: url('./fonts/GothamNarrow-Book/GothamNarrow-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamNarrow-Medium';
	src: url('./fonts/GothamNarrow-Medium/GothamNarrow-Medium.woff');
	src: url('./fonts/GothamNarrow-Medium/GothamNarrow-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Gotham-Black';
	src: url('./fonts/Gotham-Black/Gotham-Black.woff');
	src: url('./fonts/Gotham-Black/Gotham-Black.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Gotham-Medium';
	src: url('./fonts/Gotham-Medium/Gotham-Medium.woff');
	src: url('./fonts/Gotham-Medium/Gotham-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamNarrow-LightItalic';
	src: url('./fonts/GothamNarrow-LightItalic/GothamNarrow-LightItalic.woff');
	src: url('./fonts/GothamNarrow-LightItalic/GothamNarrow-LightItalic.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamNarrow-Black';
	src: url('./fonts/GothamNarrow-Black/GothamNarrow-Black.woff');
	src: url('./fonts/GothamNarrow-Black/GothamNarrow-Black.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'GothamNarrow-Bold';
	src: url('./fonts/GothamNarrow-Bold/GothamNarrow-Bold.woff');
	src: url('./fonts/GothamNarrow-Bold/GothamNarrow-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}
.voffset-md{
	margin-top:50px;
}
.voffset-lg{
	margin-top:80px;
}
/* Dividers */

.b-divider{
	border-top:1px solid rgba(0,0,0,.1);
	border-bottom:1px solid rgba(0,0,0,.1);
}


/* = NavBar
-------------------------------------------------------------- */

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-bloc.sticky,.sticky-nav.sticky{
	position:fixed;
	z-index:1000;
	transition: all .2s ease-out;
}
.sticky-nav.sticky{
	box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
.navbar-toggle.menu-icon-rounded-bars{
	margin-top:7px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}


/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}

/* Image Frame */
.img-frame,.img-frame-md,.img-frame-lg,.img-frame-rd,.img-frame-rd-md,.img-frame-rd-lg{
	background:#FFF;
	border:1px solid rgba(0,0,0,0.1);
	box-shadow:0 2px 2px rgba(0,0,0,0.05);
	padding:4px;
}
.img-frame{
	border-radius:3px;
}
.img-frame-md,.img-frame-lg{
	border-radius:6px;
}
.img-frame-md,.img-frame-rd-md{
	padding:8px;
}
.img-frame-lg,.img-frame-rd-lg{
	padding:14px;
}
/* Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.pressed-t{
	text-shadow:0 1px 0 #FFF;
}
.text-justify{
	text-align: justify;
}

/* = Lists
-------------------------------------------------------------- */
.list-sp-md li{
	padding-bottom:10px;
}
.list-sp-md li:last-child,.list-sp-lg li:last-child,.list-sp-xl li:last-child{
	padding-bottom:0;
}

.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.hide-indicators{
	display:none;
}

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.img-style{
	width:600px;
}
.img-bloc-0-style{
	width:600px;
}
.img-3-style{
	width:540px;
}
.img-4-style{
	width:600px;
}
.img-5-style{
	width:210px;
}
.img-6-style{
	width:210px;
}
.main_title{
	font-family:"GothamXNarrow-Bold";
	font-weight:500;
	font-size:36px;
}
.names{
	font-family:"GothamNarrow-Medium";
	font-weight:900;
	font-size:20px;
}
.institution{
	font-family:"GothamNarrow-Book";
	font-weight:400;
	text-align:center;
	font-size:20px;
}
.img-placeholder-us-style{
	width:220px;
	height:220px;
}
.img-7-style{
	width:220px;
}
.img-8-style{
	width:220px;
}
.img-9-style{
	width:220px;
}
.img-10-style{
	width:220px;
}
.img-11-style{
	width:220px;
}
.img-12-style{
	width:220px;
}
.topics-button{
	font-family:"Open Sans";
	font-weight:600;
	font-size:14px;
	font-style:italic;
	color:var(--swatch-var-3261)!important;
}
.topics-button:hover{
	color:#0642DB!important;
	font-family:"helvetica";
	font-weight:600;
}
.topics-text{
	font-family:"GothamXNarrow-Medium";
	font-size:14px;
}
.h5-style{
	font-size:16px;
	line-height:px;
}
.button_link_foot{
	font-family:"GothamXNarrow-Medium";
	font-weight:800;
	color:rgba(255,255,255,0.60)!important;
}
.button_link_foot:hover{
	font-weight:800;
	font-family:"GothamXNarrow-Medium";
	color:#FFFFFF!important;
}
.img-bloc-49-style{
	width:145px;
}
.navbar-brand img{
	width:apx;
	height:40px;
}
.top-line{
	height:20px;
}
.nav_btn{
	font-family:"GothamXNarrow-Book";
	font-weight:700;
	font-size:14px;
	height:36px;
	width:100%;
}
.nav_btn:hover{
	font-size:14px;
	font-weight:600;
	font-family:"GothamXNarrow-Book";
	color:var(--swatch-var-2)!important;
	background-color:var(--swatch-var-3261);
}
.link-style_themes{
	text-decoration:none;
	font-family:"GothamNarrow-Medium";
	font-weight:600;
	color:var(--swatch-var-3261)!important;
	margin-left:25px;
	font-size:14px;
}
.link-style_themes:hover{
	margin-left:25px;
	font-family:"GothamNarrow-Medium";
	font-weight:600;
	color:var(--swatch-var-1)!important;
	font-size:14px;
}
.mct-bloc-h3{
	font-family:"GothamNarrow-Medium";
	font-size:22px;
}
.parallax_bloc_contact{
	margin-top:0px;
	background-size:cover;
}
.margin_bloc_contact{
	margin-bottom:100px;
}
.img-bloc-55-style{
	width:400px;
}
.h4-style{
	font-family:"GothamNarrow-Bold";
}
.h5-bloc-40-style{
	font-family:"GothamNarrow-Medium";
}
.h4-bloc-40-style{
	font-family:"GothamNarrow-Medium";
}
.html-widget-style{
	height:402px;
}
.bloc-55-h1{
	font-family:"GothamNarrow-Black";
	font-weight:800;
}
.h4-bloc-15-style{
	font-family:"GothamNarrow-Black";
	font-weight:800;
}
.h5-bloc-15-style{
	font-family:"GothamNarrow-Book";
}
.p-23-style{
	font-family:"GothamNarrow-Book";
}
.email-conference{
	font-family:"GothamNarrow-Medium";
	text-decoration:none;
}
.email-conference:hover{
	font-family:"GothamNarrow-Medium";
	color:var(--swatch-var-5324)!important;
}
.img-15-style{
	width:392px;
}
.img-paula-jor-style{
	width:220px;
}
.bloc-6-h4{
	font-family:"GothamXNarrow-Medium";
}
.caroucel_margin{
	margin-bottom:30px;
}
.link_venue{
	font-family:"GothamNarrow-Black";
}
.link_venue:hover{
	font-family:"GothamNarrow-Black";
	color:var(--swatch-var-2522)!important;
}
.campus_text{
	font-family:"helvetica";
	font-weight:500;
	font-size:16px;
	padding-left:0px;
	text-align:left;
}
.img-ana-aeroport-style{
	width:200px;
}
.Location_text{
	font-family:"Open Sans";
	font-weight:600;
}
.img-logo-ta-style{
	width:120px;
}
.img-logo-metrolisb-style{
	width:197px;
}
.img-carr-style{
	width:245px;
}
.img-bloc-26-style{
	width:200px;
}
.img-logo-a-i-style{
	width:218px;
}
.img-campu-style{
	width:558px;
}
.cx_text_carroucel{
	background-color:rgba(0,0,0,0.4);
	background-position:center center;
	padding:20px 20px 20px 20px;
	font-family:"GothamXNarrow-Medium";
}
.link_museu{
	text-decoration:none;
	font-family:"GothamXNarrow-Medium";
}
.link-organization-style{
	text-decoration:none;
}
.link-authors-style{
	text-decoration:none;
}
.link-programme-style{
	text-decoration:none;
}
.link-location-style{
	text-decoration:none;
}
.link-contacts-style{
	text-decoration:none;
}
.link_museu:hover{
	font-family:"GothamXNarrow-Medium";
	color:var(--swatch-var-5324)!important;
}
.iscommittee{
	font-family:"GothamNarrow-Medium";
	font-weight:normal;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	font-size:20px;
}
.link-style{
	text-decoration:none;
}
.topics-button2opics-text{
	font-family:"GothamXNarrow-Book";
	font-size:30px;
}
.body-text{
	font-family:"GothamNarrow-Book";
	font-size:16px;
}
.body-text-white{
	font-family:"GothamNarrow-Medium";
}
.vertical_line_divider{
	border-style:solid;
	border-color:#00477D!important;
	border-width:0px 2px 0px 0px;
}
.img-calendar-ic-style{
	width:310px;
}
.title-page-style{
	font-family:"Gotham-Medium";
	font-weight:800;
	color:var(--swatch-var-1213)!important;
	font-size:36px;
}
.important_dates_line{
	font-family:"GothamNarrow-Medium";
	font-size:18px;
}
.h6-25-style{
	font-family:"GothamNarrow-BookItalic";
}
.dates-text{
	font-size:18px;
	font-family:"GothamNarrow-Medium";
}
.img-bloc-feup-style{
	background-image:url("img/FEUP_cor.png");
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-size:contain;
	height:55px;
	background-repeat:no-repeat;
	background-position:right center;
	width:200px;
}
.img-bloc-feup-style:hover{
	height:55px;
	background-image:url("img/FEUP_white.png");
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-size:contain;
	background-repeat:no-repeat;
	width:200px;
	background-position:right center;
}
.img-bloc-feup-style:active{
	background-position:right center;
	background-repeat:no-repeat;
}
.p-style{
	font-size:14px;
	font-family:"Open Sans";
	font-weight:600;
}
.p-bloc-45-style{
	font-size:14px;
}
.lb-link{
	font-family:"Open Sans";
	font-weight:600;
	font-size:12px;
}
.lb-link:hover{
	font-family:"Open Sans";
	font-weight:600;
}
.travel_titles{
	font-family:"GothamNarrow-Book";
	font-size:30px;
	color:var(--swatch-var-5324)!important;
}
.bloc-57-h3{
	font-family:"GothamNarrow-Medium";
}
.bloc-58-h3{
	font-family:"GothamNarrow-Medium";
}
.bloc-54-h4{
	font-family:"GothamNarrow-Medium";
}
.bloc-35-h3{
	font-size:28px;
	line-height:36px;
	font-family:"Gotham-Black";
}
.p-12-style{
	font-size:18px;
	line-height:22px;
	font-family:"Gotham-Medium";
}
.h2-style{
	font-family:"GothamNarrow-LightItalic";
}
.page_subtitle{
	font-family:"GothamNarrow-Black";
	font-weight:800;
}
.venue_text{
	font-family:"GothamNarrow-Book";
}
.text_lisbon{
	font-family:"GothamNarrow-Book";
	text-align:left;
	font-size:16px;
	line-height:24px;
}
.button_about-lisbon{
	font-size:24px;
	color:#CF1A00!important;
}
.button_about-lisbon:hover{
	font-size:24px;
	color:#550000!important;
}
.img-logo-idmec-style{
	width:150px;
}
.img-logo-ist-style{
	width:150px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-2:#FEFFFF;
	
	--swatch-var-3261:#009DE0;
	
	--swatch-var-6590:#3645BD;
	
	--swatch-var-1:#46555F;
	
	--swatch-var-2175:#DBF0FF;
	
	--swatch-var-7885:#2A2A28;
	
	--swatch-var-5324:#018ED4;
	
	--swatch-var-2522:#000000;
	
	--swatch-var-7948:#BD2735;
	
	--swatch-var-749:#EAEAEA;
	
	--swatch-var-2305:#005DE2;
	
	--swatch-var-3902:#DFF4FD;
	
	--swatch-var-1213:#028C43;
	
	--swatch-var-2117:#E8F7EF;
	
	--swatch-var-6013:rgba(255,255,255,0.5);
	
	--swatch-var-1370:#4F83B4;
	
	--swatch-var-391:#002B4C;
	
	--swatch-var-2048:#EAEAEA;
	
	--swatch-var-7647:#36353A;
	
	--swatch-var-7705:#550000;
	
}


/* Background colour styles */

.bgc-5324{
	background-color:var(--swatch-var-5324);
}
.bgc-2{
	background-color:var(--swatch-var-2);
}
.bgc-2175{
	background-color:var(--swatch-var-2175);
}
.bgc-1{
	background-color:var(--swatch-var-1);
}
.bgc-3902{
	background-color:var(--swatch-var-3902);
}
.bgc-2048{
	background-color:var(--swatch-var-2048);
}
.bgc-7647{
	background-color:var(--swatch-var-7647);
}
.bgc-749{
	background-color:var(--swatch-var-749);
}
.bgc-7885{
	background-color:var(--swatch-var-7885);
}

/* Text colour styles */

.tc-2522{
	color:var(--swatch-var-2522)!important;
}
.tc-3261{
	color:var(--swatch-var-3261)!important;
}
.tc-1{
	color:var(--swatch-var-1)!important;
}
.tc-2{
	color:var(--swatch-var-2)!important;
}
.tc-2305{
	color:var(--swatch-var-2305)!important;
}
.tc-5324{
	color:var(--swatch-var-5324)!important;
}
.bgc-2{
	background-color:var(--swatch-var-2);
}

/* Link colour styles */

.ltc-1{
	color:var(--swatch-var-1)!important;
}
.ltc-1:hover{
	color:#13222C!important;
}

/* Icon colour styles */

.icon-5324{
	color:var(--swatch-var-5324)!important;
	border-color:var(--swatch-var-5324)!important;
}
.icon-3261{
	color:var(--swatch-var-3261)!important;
	border-color:var(--swatch-var-3261)!important;
}

/* Bloc image backgrounds */

.bg-banner-ENGOPT-2026{
	background-image:url("img/banner_ENGOPT_2026.jpg");
	background-image: -webkit-image-set(url("img/banner_ENGOPT_2026.webp") 1x,
url("img/banner_ENGOPT_2026.webp") 2x);background-image: image-set(url("img/banner_ENGOPT_2026.jpg") 1x,
url("img/banner_ENGOPT_2026.jpg") 2x,url("img/banner_ENGOPT_2026.webp") 1x,
url("img/banner_ENGOPT_2026.webp") 2x);
}
.bg-backgroud-contacts{
	background-image:url("img/backgroud_contacts.jpg");
	background-image: -webkit-image-set(url("img/backgroud_contacts.webp") 1x,
url("img/backgroud_contacts.webp") 2x);background-image: image-set(url("img/backgroud_contacts.jpg") 1x,
url("img/backgroud_contacts.jpg") 2x,url("img/backgroud_contacts.webp") 1x,
url("img/backgroud_contacts.webp") 2x);
}



/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.img-5-style{
		width:210px;
	}
	.img-6-style{
		width:210px;
	}
	.institution{
		font-size:16px;
	}
	.button_link_foot{
		font-family:"Open Sans";
		font-weight:800;
		color:rgba(255,255,255,0.35)!important;
	}
	.button_link_foot:hover{
		font-family:"Open Sans";
		color:#FEFFFE!important;
		font-weight:800;
	}
	.img-placeholder-us-style{
		width:164px;
		height:164px;
	}
	.img-7-style{
		width:164px;
		height:164px;
	}
	.img-8-style{
		width:164px;
		height:164px;
	}
	.img-bloc-0-style{
		width:500px;
	}
	.img-style{
		width:500px;
	}
	.img-3-style{
		width:400px;
	}
	.img-4-style{
		width:500px;
	}
	.bloc-39-h3{
		font-size: 30px;
	}
	.bloc-30-h3{
		font-size: 24px;
	}
	.travel_titles{
		font-size: 23.75px;
	}
	.about-lisbon-p{
		font-size: 18px;
	}
	.bloc-57-h3{
		font-size: 23.75px;
	}
	.bloc-58-h3{
		font-size: 23.75px;
	}
	.dates-text{
	}
	.img-calendar-ic-style{
		width:290px;
	}
	.img-bloc-feup-style{
		background-image:url("img/FEUP_cor.png");
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
		background-size:contain;
		height:50px;
		background-repeat:no-repeat;
	}
	.img-bloc-feup-style:hover{
		height:50px;
		background-image:url("img/FEUP_white.png");
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
		background-size:contain;
		background-repeat:no-repeat;
	}
	.p-style{
		font-family:"Open Sans";
	}
	.lb-link{
		font-family:"Open Sans";
		font-weight:normal;
	}
	.lb-link:hover{
		font-family:"Open Sans";
		font-weight:normal;
	}
	.img-campu-style{
		width:478px;
	}
	.campus_text{
		font-family:"GothamXNarrow-Book";
		font-size:14px;
	}
	.img-logo-a-i-style{
		width:200px;
	}
	.bloc-35-h3{
		font-size:20px;
	}
	.p-12-style{
		font-size:16px;
	}
	.page_subtitle{
	}
	.button_about-lisbon{
		font-size:14px;
	}
	
	/* MD Row Margin Offsets */
	.voffset-md{
		margin-top:30px;
	}
	
	/* MD Text Margin Offsets */
	.mg-md-md{
		margin-top:10px;
		margin-bottom:20px;
	}
		.mg-clear-md{
		margin:0;
	}
	
}

@media (max-width: 767px){
	.img-5-style{
		width:218px;
	}
	.img-6-style{
		width:218px;
	}
	.topics-button:hover{
	}
	.button_link_foot{
		color:rgba(255,255,255,0.36)!important;
		font-size:14px;
	}
	.button_link_foot:hover{
		font-size:14px;
	}
	.img-img4-them-style{
		width:537px;
	}
	.img-style{
		width:400px;
	}
	.img-bloc-0-style{
		width:400px;
	}
	.img-3-style{
		width:400px;
	}
	.img-4-style{
		width:400px;
	}
	.campus_text{
		font-size:16px;
		font-family:"GothamNarrow-Medium";
	}
	.bloc-39-h3{
		font-size: 20px;
	}
	.bloc-30-h3{
		font-size: 20px;
	}
	.travel_titles{
		font-size: 20px;
	}
	.about-lisbon-p{
		font-size: 12px;
	}
	.bloc-57-h3{
		font-size: 20px;
	}
	.bloc-58-h3{
		font-size: 20px;
	}
	.title-page-style{
		font-size:32px;
	}
	.important_dates_line{
		font-size:16px;
	}
	.h6-25-style{
		font-size:14px;
	}
	.img-calendar-ic-style{
		width:280px;
	}
	.img-bloc-feup-style{
		height:40px;
		background-image:url("img/FEUP_cor.png");
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
		background-size:contain;
		background-repeat:no-repeat;
	}
	.img-bloc-feup-style:hover{
		background-repeat:no-repeat;
		background-size:contain;
		background-image:url("img/FEUP_white.png");
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
		height:45px;
	}
	.p-style{
		font-size:12px;
	}
	.p-bloc-45-style{
		font-size:12px;
	}
	.img-campu-style{
		width:442px;
	}
	.nav-toggle{
		padding-left:20px;
	}
	.nav_btn{
		text-align:center;
	}
	.img-logo-a-i-style{
		width:300px;
	}
	.bloc-35-h3{
		font-size: 20px;
	}
	.page_subtitle{
	}
	
	/* Small Text Margin Offsets */
	.mg-sm-sm{
		margin-top:10px;
		margin-bottom:5px;
	}
		.mg-md-sm{
		margin-top:10px;
		margin-bottom:20px;
	}
		.mg-lg-sm{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

@media (max-width: 575px){
	.img-5-style{
		width:180px;
	}
	.img-6-style{
		width:182px;
	}
	.h5-style{
		font-size:14px;
	}
	.button_link_foot{
		color:rgba(255,255,255,0.35)!important;
	}
	.button_link_foot:hover{
	}
	.bloc-55-h1{
		font-size:36px;
	}
	.h4-bloc-15-style{
		font-size:22px;
	}
	.h5-bloc-15-style{
		font-size:18px;
	}
	.title-page-style{
		font-size:24px;
	}
	.important_dates_line{
		font-size:16px;
	}
	.img-calendar-ic-style{
		width:211px;
		margin-right:13px;
		border-radius:0px 0px 0px 0px;
	}
	.dates-text{
		font-size:16px;
	}
	.img-bloc-feup-style{
		background-size:contain;
		height:42px;
		background-repeat:no-repeat;
		background-image:url("img/FEUP_cor.png");
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);background-image: image-set(url("img/FEUP_cor.png") 1x,
url("img/FEUP_cor.png") 2x,url("img/FEUP_cor.webp") 1x,
url("img/FEUP_cor.webp") 2x);
		background-position:center center;
	}
	.img-bloc-feup-style:hover{
		background-size:contain;
		background-repeat:no-repeat;
		background-image:url("img/FEUP_white.png");
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
	background-image: -webkit-image-set(url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);background-image: image-set(url("img/FEUP_white.png") 1x,
url("img/FEUP_white.png") 2x,url("img/FEUP_white.webp") 1x,
url("img/FEUP_white.webp") 2x);
		background-position:center center;
		height:42px;
	}
	.iscommittee{
		font-size:16px;
	}
	.nav-toggle{
		text-align:center;
	}
	.nav-toggle:hover{
		text-align:center;
	}
	.img-style{
		width:281px;
	}
	.h4- - by-taxi--style{
		font-size:20px;
	}
	.bloc-28-h3{
		font-size:20px;
	}
	.page_subtitle{
		font-weight:normal;
		font-size:16px;
	}
	.bloc-29-h3{
		font-size:20px;
	}
	.button_about-lisbon:hover{
		font-size:14px;
	}
	
	/* Mobile Row Margin Offsets */
	.voffset-md-xs{
		margin-top:50px;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-sm-xs{
		margin-top:10px;
		margin-bottom:5px;
	}
		.mg-lg-xs{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

