/*
Theme Name: Blank
Theme URI: https://yhello.co
Author: Marcio Marim
Author URI: https://yhello.co
Description: Yhello's custom blank theme made for french research institutes.
Version: 1.0.15
Text Domain: blank
*/

@charset "UTF-8";

:root {
  --main-color: #1aa586;
  --orange: rgb(241, 159, 10);
  --blue: rgb(35, 129, 223);
  --green: #21b997;
  --pink: rgb(230, 49, 86);
  --link-color: rgba(52, 71, 99, 1);
  --almost-white: #f4f5f9;  
  --almost-black: #111b29;
  --light-gray: #e1e3eb;
  --main-font: "Quicksand", sans-serif;
  --secondary-font: "Raleway", serif;
}


body {
  font-family: var(--main-font);
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-size: 20px;
  margin: 0;
  line-height: 1.7em;
}

div{
  box-sizing: border-box;
}

.serif {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
  color: var(--link-color);
}

.title,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  color: var(--link-color);
  line-height: 1.4em;
}

img {
  max-width: 100%;
}

#next-prev-refs{
  display: none;
}

.button {
  cursor: pointer;
  background: var(--almost-white);
  color: #111;
  border: 1px solid #dcdfea;
  border-radius: 30px;
  font-weight: 800;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 6px 20px;
}

.wide {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.hidden-label {
  position: absolute;
  white-space: nowrap;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--almost-black);
  color: var(--almost-white);
  left: 50%;
  transform: translate3d(-50%, -10px, 0);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-out;
}

.light .hidden-label {
  background: var(--almost-white);
  color: var(--almost-black);
}

a:hover>.hidden-label,
div:hover>.hidden-label {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 10px, 0);
  transition: all .5s ease-out;
}

.hidden-label.left{
  top: 0;
  left: 0;
  transform: translate3d(-80%, 0, 0);
}

div:hover>.hidden-label.left{
  transform: translate3d(-120%, 0, 0);
}



#page {
  padding-top: 0;
  overflow: hidden;
}

.vnav #page{
  margin-left: 60px;
}

.vnav.open #page {
  margin-left: 180px;
}

.hnav #page {
  padding-top: 66px;
  margin-left: 0;
}

.hnav.open #page {
  margin-left: 0;
}

#site-navigation {
  position: fixed;
  z-index: 99999;
  background: var(--almost-black);
  color: var(--almost-white);
  font-size: 13px;
  font-weight: bold;
  -webkit-transition:all 100ms ease;
  -moz-transition:all 100ms ease;
  -o-transition:all 100ms ease;
  transition:all 100ms ease;
}

.vnav #site-navigation{
  width: 60px;
  height: 100%;
  top: 0;
  left: 0;
}

.hnav #site-navigation{
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: none;
}

#site-navigation .container{
  position: relative;
  height: 100%;
  z-index: 1;
  background: var(--almost-black);
}

.hnav #site-navigation .container{
    /* height: 60px;
    width: 90%;
    max-width: 1300px;
    margin: 15px auto 0;
    border-radius: 70px; */
    display: flex;    
    align-items: center;
    justify-content: space-between;
}

.light #site-navigation .container{
  background: var(--almost-white);
}

.vnav #site-navigation.open,
.vnav #site-navigation:hover{
  width: 180px;
  overflow: inherit;
  -webkit-transition:all 100ms ease;
  -moz-transition:all 100ms ease;
  -o-transition:all 100ms ease;
  transition:all 100ms ease;
}

  .light #site-navigation{
    /* background: var(--almost-white); */
    border-right: 1px solid #ddd;
    color: var(--almost-black);
  }

.logged-in #site-navigation {
  top: 32px;
}

.vnav .logged-in #site-navigation{
  height: calc(100% - 32px);
}

/* .scrolled #site-navigation {
    background: var(--almost-white);
    border-bottom: 1px solid #eee;
} */

/* #site-navigation .wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

#site-navigation a.logo {
  display: block;
  line-height: 1;
  padding: 30px 0;
  background-image: url(assets/images/logo_white.svg);
  background-repeat: no-repeat;
  background-size: 50px 30px;
  background-position: center;
  width: 60px;
  height: 30px;
  /* margin: 14px 0 6px 0; */
}

  #site-navigation:hover a.logo,
  #site-navigation a.logo{
    padding: 30px;
    background-size: 120px 46px;
    width: 120px;
    height: 46px;  
  }
  
  .hnav #site-navigation a.logo,
  .hnav #site-navigation:hover a.logo,
  .open #site-navigation a.logo{
    padding: 10px;
  }

  .light #site-navigation a.logo{
    background-image: url(assets/images/logo.svg);  
  }


#main-menu {
  list-style: none;
  /* display: flex; */
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.hnav #main-menu{
  display: flex;
}

#main-menu li{
  display: flex; 
  justify-content: flex-start;
  padding: 0px;
}

.vnav #main-menu li{
  margin-top: 10px;
}

#main-menu li a {
  font-family: var(--main-font);
  font-weight: 900;
  color: var(--almost-white);
  padding: 16px 10px 12px;  
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  border-bottom: 4px solid transparent;   
  transition: all 300ms ease;
}

#main-menu li.current-menu-item a,
#main-menu li a:hover{
  border-bottom: 4px solid var(--almost-white);
  transition: all 300ms ease;
}

#main-menu li.orange a:hover,
.orange #main-menu li.orange a{
    border-bottom: 4px solid var(--orange);  
    color: var(--orange);
}
#main-menu li.blue a:hover,
.blue #main-menu li.blue a{
    border-bottom: 4px solid var(--blue);    
    color: var(--blue);
}
#main-menu li.green a:hover,
.green #main-menu li.green a{
    border-bottom: 4px solid var(--green);    
    color: var(--green);
}
#main-menu li.pink a:hover,
.pink #main-menu li.pink a{
	border-bottom: 4px solid var(--pink);    
	color: var(--pink);
}

/* #site-navigation:hover #main-menu li a,
.open #main-menu li a{
  display: block;
} */

#main-menu li:before{
  padding: 16px 0 16px 20px;
}

  .light #main-menu li a{
    color: #000;
  }

#site-navigation .search {
  text-align: center;
  cursor: pointer;
}


#togglenav{
  width: 40px;
  height: 40px;
  /* position: absolute;
  top: 50%;
  left: -40px; */
  background: var(--almost-black);
  border-radius: 50%;
  display: block;
  cursor: pointer;
  z-index: -1;
  /* transform: translate3d(180px,0,0); */
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hnav #togglenav{
  display: none;
}

#site-navigation:hover > #togglenav{
  transform: translate3d(222px,0,0);
}

/* #togglenav.active{
  transform: translate3d(0,0,0);
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
} */

#togglenav.active.visible{
  transform: translate3d(180px,0,0);
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
}

#togglenav .bars{
    width: 22px;
    height: 2px;
    background: #bbb;
    margin: 4px;
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
}

#togglenav:hover .bars{
  background: #fff;
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
}

.ham-btn{
  margin: 12px 0 0 5px;
}

/* #togglenav.active .bar1{
    transform: rotate(45deg) translate3d(8px,-6px,0);
    width: 13px;
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
} */
#togglenav .bar2{
  width: 18px;
}
#togglenav:hover .bar2{
  width: 22px;
}
/* #togglenav.active .bar2{
  opacity: 1;
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
}
#togglenav.active .bar3{
    transform: rotate(-45deg) translate3d(8px,6px,0);
    width: 13px;
  -webkit-transition:all 200ms ease;
  -moz-transition:all 200ms ease;
  -o-transition:all 200ms ease;
  transition:all 200ms ease;
} */

#user-pref{
  position: fixed;
  z-index: 999999;
  top: 30px;
  right: 30px;
  background: var(--almost-black);
  color: var(--almost-white);
  padding: 6px 12px;
  border-radius: 30px;
}

  #user-pref>div{
    position: relative;
    margin: 3px 2px;
    cursor: pointer;
  }

  .light #user-pref{
    background: var(--almost-white);
    color: var(--almost-black);  
  }
  

  .logged-in #user-pref{
    top: 60px;    
  }
  
  .hnav #user-pref,
  .hnav.logged-in #user-pref{
    top: 45%;    
  }

.vnav #site-navigation .bottom {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
}

#site-navigation .bottom {
  text-align: center;
  cursor: pointer;
}

.hnav #site-navigation .bottom{
    width: 120px;
}

.switch-language{
  display: flex;
  flex-direction: column;  
}

.switchfr,
.switchen{
  display: none;
  cursor: pointer;
}

.switchfr img,
.switchen img{
  width: 20px;
  position: relative;
  top: 4px;
}

.switchfr.active,
.switchen.active{
  display: block;
}

.switch-language:hover > .active{
  display: none;
}

.switch-language:hover > :not(.active){
  display: block;
}

#site-navigation .login i {
  padding: 6px 16px 19px 8px;
  border: 2px solid;
  border-radius: 50px;
  width: 10px;
  height: 10px;
}

#banner {
  position: relative;  
  display: grid;
  align-items: center;
  height: 50vh;
  max-height: 500px;
}

#particles-js{
  position: absolute;
  width: 100%;
  height: 100%;
}

#banner>picture {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#banner .attachment-post-thumbnails {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner .over {
  color: var(--almost-white);
  z-index: 1;
}

#banner .over.center {
  text-align: center;
}

#banner .over .title {
  font-family: var(--secondary-font);
  color: var(--almost-white);
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  margin: 0.3em 0;
}

/* #banner span.post_type{
  background: rgba(0,0,0,0.2);
  padding: 10px;
} */

#banner .over .subtitle {
  font-family: var(--secondary-font);
  color: var(--almost-white);
  font-size: 1.5em;
  line-height: 1.5em;
  text-align: center;
  margin: 0.5em 0;
}

#banner .structures{
	display: flex;
	justify-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.tag.structure,
#banner .structures .tag{
  font-size: 14px;
  height: 34px;
  font-weight: bold;
  background: var(--almost-black);
  color: var(--almost-white);
  padding: 2px 15px 2px 2px;
  border-radius: 20px;
  margin: 10px 0 0;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
}

.light .tag.structure,
.light #banner .structures .tag{
  background: var(--almost-white);
  color: var(--almost-black);
}

.tag.structure .thumbnail img,
#banner .structures .tag .thumbnail img{
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 30px;
  object-fit: cover;
  border: 2px solid;  
}
	.tag.structure.team .thumbnail img,
	#banner .structures .tag.team .thumbnail img{
		border: 2px solid var(--orange);  
	}
	
	.tag.structure.facility .thumbnail img,
	#banner .structures .tag.facility .thumbnail img{
		border: 2px solid var(--blue);  
	}
  
  .tag.structure.education .thumbnail img,
  #banner .structures .tag.education .thumbnail img{
    border: 2px solid var(--green);  
  }
  
  .tag.structure.administration .thumbnail img,
  #banner .structures .tag.administration .thumbnail img{
    border: 2px solid var(--pink);  
  }

.tag.structure .content,
#banner .structures .content{
  padding-left: 10px;
  line-height: 1;
}

#banner .structures.large .content{
  width: 0;
  overflow: hidden;
  transition: all 1s ease-out;
}

#banner .structures.large .structure:hover > .content{
  width: auto;
  transition: all 1s ease-out;
}

.image-filter {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #387e4ecc, #133788cc, #25945bcc, #304397cc);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  opacity: 0.5;
}

.cards .image-filter{
  opacity: 0.4;
}

#login-box,
#search-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);  
  height: 100vh;
  /* background: linear-gradient(to left, #003bc0 0%, #3b91ce 100%); */
  background: linear-gradient(-45deg, #387e4e, #133788, #25945b, #304397);
  transition: all .2s ease-out;
}

.vnav #login-box,
.vnav #search-box{
  width: calc(100% - 180px);
  left: 180px;
}

.hnav #login-box,
.hnav #search-box{
  width: 100%;
}

.logged-in #login-box,
.logged-in #search-box {
  top: 32px;
  height: calc(100vh - 32px);
}

#login-box.active,
#search-box.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: all .2s ease-out;
}

#search-box .search-form {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  font-size: 35px;
}

#search-box .container {
  position: absolute;
  width: 80%;
  padding: 10%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.search-icon {
  background: var(--almost-black);
  color: var(--almost-white);
  text-align: center;
  padding: 23px;
}

.search-form>label {
  display: none;
}

#inpage-search,
.search-form .search-field {
  width: 100%;
  font-weight: 900;
  background: transparent;
  border: none;
  border-bottom: 2px solid;
  font-size: 2em;
  outline: none;
}

#inpage-search{
  width: 90%;
  max-width: 600px;
  display: block;
  padding: 10px;
  font-size: 1em;
  color: #fff;
  margin: 20px auto;
  text-align: center;
}

#inpage-search::placeholder {
  color: #fff;
}

.search-form .search-submit {
  padding: 13px;
  width: 90px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.search-form .search-submit:before {
  font-size: 40px;
}

.search-close {
  position: fixed;
  top: 40px;
  right: 40px;
}

#login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  font-size: 15px;
  max-width: 340px;
  color: #eee;
  text-align: center;
}

#login h1 {
  margin: 10px 0;
}

#login h1 a {
  background-image: url(assets/images/logo.svg);
  background-size: 140px;
  background-position: center top;
  background-repeat: no-repeat;
  color: #4d5260;
  height: 85px;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0 auto 25px;
  padding: 0;
  text-decoration: none;
  width: 140px;
  text-indent: -9999px;
  outline: 0;
  display: block;
}

#login #nav a,
#login input#wp-submit {
  background: transparent;
  cursor: pointer;
  display: block;
  font-size: 15px;
  padding: 7px 20px;
  color: var(--almost-white);
  border: 1px solid var(--almost-white);
  border-radius: 30px;
  line-height: 1.3;
  width: 212px;
  margin: 0 auto;
  transition: all 200ms ease;
}

#login #nav a {
  color: #e6e6e6;
  border-color: #e6e6e6;
}

#login #nav a:hover,
#login input#wp-submit:hover {
  color: #333;
  background: var(--almost-white);
  border: 1px solid var(--almost-white);
  transition: all 200ms ease;
}

#login .wp-hide-pw,
#login #backtoblog {
  display: none;
}

#login input[type="email"],
#login input[type="password"],
#login input[type="text"] {
  border: 1px solid #eee;
  border-radius: 20px;
  line-height: 1.3;
  padding: 8px 20px;
  margin: 0;
  text-align: center;
  width: 212px;
  margin: 0 auto;
}

#login span.apsl-login-new-text {
  margin-bottom: 5px;
}

#login label {
  font-size: 13px;
  color: #e6e6e6;
}

#login h2 {
  display: none;
}

.close-layer {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #eee;
  font-size: 15px;
  padding: 10px 15px;
  border: 2px solid;
  font-weight: bold;
  cursor: pointer;
}

#scrolldown {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate3d(-50%, 0, 0);
  cursor: pointer;
  z-index: 999;
  background: transparent;
  padding: 0 10px;
  border-radius: 20px;
  transition: all 0.5s ease;
}

#scrolldown:hover {
  background: var(--almost-white);
  transition: all 0.5s ease;
}

#progress-bar {
  content: "";
  position: fixed;
  z-index: 999998;
  top: 0px;
  left: 0;
  width: 0;
  border-bottom: 4px solid var(--main-color);
  transition: all 0.4s ease;
}

.logged-in #progress-bar {
  top: 32px;
}

.logged-in.subscriber #progress-bar {
  top: 0;
}

#progress-bar.active {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: progress-bar;
  animation-timing-function: ease-out;
}

@keyframes progress-bar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}
.nav,
.banner-nav{
  text-align: center;
  margin-bottom: 10px;
}

.nav .filter{
  cursor: pointer;
  background: var(--almost-black);
  color: var(--almost-white);
  padding: 10px 14px;
  border-radius: 30px;
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 10px 10px 0;
  transition: all 0.4s ease;
}



.light .nav .filter{
  background: var(--almost-white);
  color: var(--almost-black);
}

.nav .filter:hover,
.nav .filter.active{  
  background: var(--almost-white);
  color: var(--almost-black);
  transition: all 0.4s ease;
}

.light .nav .filter:hover,
.light .nav .filter.active{
  color: var(--almost-white);
  background: var(--almost-black);
  transition: all 0.4s ease;
}

#inpage-menu{
    background: var(--almost-black);
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 50%, 0);
}

  #inpage-menu.fixed{
    position: fixed;
    z-index: 9;
    bottom: inherit;
    top: 10px;
    left: calc(50% + 90px);
    transform: translate3d(-50%, 0, 0);
  }
  
    
  .logged-in #inpage-menu.fixed{
    top: 24px;
  }
  
  .hnav #inpage-menu.fixed{
    left: 50%;
    transform: translate3d(-50%, 80px, 0);
  }
  
  #inpage-menu:not(:empty){
    padding: 0 20px;
    border-radius: 30px;
    background: var(--almost-black);
	border: 2px solid;
  }
  
	.orange #inpage-menu:not(:empty){
		border: 2px solid var(--orange);
	}
	
	.blue #inpage-menu:not(:empty){
		border: 2px solid var(--blue);
	}
	
	.green #inpage-menu:not(:empty){
		border: 2px solid var(--green);
	}
	
	.pink #inpage-menu:not(:empty){
		border: 2px solid var(--pink);
	}

#inpage-menu a{
  position: relative;
  color: var(--almost-white);
  font-size: 14px;
  font-weight: bold;
  padding: 2px 10px;
  white-space: nowrap;
}

.nav .filter{
  position: relative;
}

.nav .filter .count,
#inpage-menu a .count{
  position: absolute;
  top: -6px;
  right: 0;
  background: var(--almost-black);
  border: 2px solid var(--link-color);
  line-height: 1;
  padding: 2px 5px;
  border-radius: 10px;
  font-size: 11px;
}
  
  .nav .filter.active .count,
  .nav .filter:hover .count{
    background: var(--almost-white);
    color: var(--almost-black);
    transition: all 0.3s easy;
  }
  
  .nav .filter.Science .count{
    border: 2px solid var(--orange);
  }
  .nav .filter.Technologie .count{
    border: 2px solid var(--blue);
  }
  .nav .filter.Administration .count{
    border: 2px solid var(--pink);
  }
  .nav .filter.Education .count{
    border: 2px solid var(--green);
  }

	.orange #inpage-menu a .count{
		border: 2px solid var(--orange);
	}
	
	.blue #inpage-menu a .count{
		border: 2px solid var(--blue);
	}
	
	.green #inpage-menu a .count{
		border: 2px solid var(--green);
	}
	
	.pink #inpage-menu a .count{
		border: 2px solid var(--pink);
	}

.light #inpage-menu{
  background: var(--almost-white);
}
.light #inpage-menu a{
  color: var(--almost-black);
}
.light .nav .filter .count,
.light #inpage-menu a .count{
  background: var(--almost-white);
  color: var(--almost-black);
}

/* WP BLOCKS */
.the_content>.wp-block-cover,
.the_content>.wp-block-gallery,
.the_content>iframe,
.the_content>.wp-block-video,
.the_content>.wp-block-columns,
.the_content>.wp-block-file,
.the_content>.wp-block-image,
.the_content>.wp-block-table,
.the_content>.wp-block-separator,
.the_content>.wp-block-heading,
.the_content>.wp-block-media-text,
.the_content>.wp-block-details,
.the_content>.wp-block-buttons,
.the_content>.wp-block-group,
.the_content>.wp-block-embed,
.the_content>blockquote,
.the_content>ul,
.the_content>ol,
.the_content>p {
  width: 90%;
  max-width: 1300px;
  margin: 50px auto;
  /* text-align: justify; */
}

.the_content>iframe{
  display: block;
}

.block-button-cards,
.block-equipments,
.block-services,
.block-events,
.block-flowchart,
.block-institutions,
.block-jobs,
.block-members,
.block-news,
.block-numbers,
.block-projects,
.block-publications,
.block-teams,
.block-tools,
.block-upcoming{
  padding: 50px 0;  
}

/* Style WordPress Block Gallery */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* Space between images */
  justify-content: center;
  padding: 1em;
}

.wp-block-gallery .blocks-gallery-item {
  flex: 1 1 calc(33.333% - 16px); /* 3 columns */
  max-width: calc(33.333% - 16px);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-gallery .blocks-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .wp-block-gallery .blocks-gallery-item {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .wp-block-gallery .blocks-gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}






.flex{
  display: flex;
  flex-wrap: wrap;
}

.flex .half{
  width: 50%;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cards::after {
  content: "";
  flex: auto;
}

.cards .card {
  position: relative;
  width: 23%;
  background: #fff;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  text-decoration: none;
  overflow: hidden;
  margin: 0 2% 3% 0;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
  box-sizing: border-box;
}

  .cards .card.team{
    width: 48%;
    display: flex;
    margin-bottom: 4%;
  }

.cards .card:hover{  
  transform: translate3d(0,-3px,0);
  box-shadow: 0px 0px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in;
}

.cards .card .thumbnail {
  position: relative;
}

.cards .card .thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 400 / 300;
  object-fit: cover;  
  display: block;
}

.cards .card .thumbnail .class,
.cards .card .thumbnail .type {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 12px;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 10px;
  color: var(--almost-white);
  background: var(--almost-black);
}

.cards .card .thumbnail .class{
  left: inherit;
  right: 0;
  color: var(--almost-white);
}

.cards .card.team .thumbnail .type,
.cards .card .thumbnail .class.Science {
	background: var(--orange);
}
.cards .card.facility .thumbnail .type,
.cards .card .thumbnail .class.Technologie {
	background: var(--blue);
}
.cards .card.education .thumbnail .type,
.cards .card .thumbnail .class.Education {
	background: var(--green);
}
.cards .card.working_group .thumbnail .type,
.cards .card.administration .thumbnail .type,
.cards .card .thumbnail .class.Administration {
	background: var(--pink);
}

.cards .card .content {
  padding: 10px 16px 25px;
}

.cards .card .the_title {
  font-size: 22px;
  line-height: 1.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  font-family: var(--secondary-font);
}

.cards .card .the_sub_title {
  padding: 10px 0;
}

.cards .card .abstract {
  font-size: 0.8em;
  line-height: 1.6em;
}

.cards .card .date {
    color: var(--almost-white);
    position: absolute;
    bottom: 20px;
    right: 10px;
    padding: 0 20px 10px 20px;
    background: var(--almost-black);
    border-radius: 2px;
    font-weight: bold;
    font-family: var(--secondary-font);
    text-align: center;
}

  .cards .card .date .day{
    font-size: 35px;
    line-height: 35px;
  }
  .cards .card .date .month{
    font-size: 16px;
    line-height: 20px;
  }
  .cards .card .date .year{
    font-size: 14px;  
    line-height: 14px;
  }

.cards .card .info {
  font-size: 14px;
}

.single .cards .card.news,
.single .cards .card.event{
  width: 98%;
  display: flex;
  align-items: center;
}

.single .cards .card.news .content,
.single .cards .card.event .content{
  flex: 1;
  /* max-height: 150px; */
}

.single .cards .card.news .thumbnail {
  display: flex;
}

.single .cards .card.news .thumbnail img,
.single .cards .card.event .thumbnail img{
  height: 100%;
  object-fit: cover;
  max-height: 160px;
}

.single .cards .card .abstract{
  display: none;
}

/* .single .cards .card.news .thumbnail .date{
  position: relative;
  color: var(--almost-blank);    
  bottom: inherit;
  right: inherit;    
  border: 2px solid var(--almost-black);
  border-radius: 0;
  margin: 30px;
}

.single .cards .card.event .thumbnail .date{
  position: relative;
  color: var(--almost-black);    
  bottom: inherit;
  right: inherit;    
  border: 2px solid var(--almost-black);
  border-radius: 0;
  margin: 20px;  
  aspect-ratio: 1/1;
}

.single .cards .card.event .thumbnail .type {
  position: relative;
  top: inherit;
  left: inherit;
  background: none;
  color: var(--almost-black);
  text-align: center;
  margin-bottom: 10px;
} */

.single .cards .card.news p,
.single .cards .card.event p{
  margin: 5px 0;
}

.block-teams{
	margin: 50px auto 50px;
}

	.list .teams .team{
		width: 100%;
		display: flex;
		border-radius: 0;				
	}
	
		.teams .team .thumbnail{  								
			overflow: hidden;
			position: relative;
            width: 35%;
            aspect-ratio: 1;
            background: #eee;
		}
			
			.teams .team .thumbnail img{
				width: 100%;
                height: 100%;
                object-fit: cover;
			}
			
            .item .heads,
			.teams .team .heads{
				margin-top: 10px;
			}
			
      .cards .card.team .content {
        width: 65%;
        padding: 10px 20px;
        display: grid;
        align-content: center;
      }
      
            .item .head,
			.teams .team .head{
              font-size: 14px;
              font-weight: 800;
              text-transform: uppercase;
              display: grid;
              justify-items: center;
              /* color: var(--almost-white); */
              text-wrap: nowrap;
              margin: 10px 3px 3px 3px;
              display: flex;
              align-items: center;
			}
			
				/* .teams .team .head:nth-child(2){
				    margin: 0 0 0 -60px;
					z-index: -1;
				}
				.teams .team .head:nth-child(2):hover{
					z-index: 1;
				} */
			
                .item .head .name,
				.teams .team .head .name{
			      line-height: 1.8em;                  
                  padding: 0 12px;
				}	
			
            .item .head picture,
            .teams .team .head picture{
              width: 40px;
				height: 40px;
            }
            
            .item .head picture img,
			.teams .team .head picture img{
				width: 40px;
				height: 40px;
				border-radius: 100px;
				overflow: hidden;				
			    object-fit: cover;
                box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
			}	
		
			
		.list .teams .team .thumbnail{
			width: 50px;
			height: 50px;
		}
		
		.list .teams .team .content{
			width: calc(100% - 50px);
			padding: 0 20px 0 20px;					
		}

.icon-link{
  font-family: var(--secondary-font);
  font-weight: bold; 
  display: flex; 
  padding: 2px;
}

.icon-link i{
    position: relative;
    background: var(--almost-white);
    width: 43px;
    height: 43px;
    border-radius: 40px;
    margin: 0 10px 10px 0;
}

.icon-link i:before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.members{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#banner .members{
	justify-content: center;
}

.members.list{
  display: flex;
}

.members .member{
  position: relative;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  display: grid;
  justify-items: center;
  text-wrap: nowrap;
  padding: 2em;
  box-sizing: border-box;
  width: 20%;
  /* max-width: 200px; */
}

#banner .members .member{
  width: 25%;
  padding: 0;
}
  
  #banner .members.large .member{
    width: auto;    
  }
  
  .members.list .member{
    width: 25%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 15px 0 0 0;
    padding: 0;    
    max-width: inherit; 
  }
  
  .half .members.list .member,
  .members.list .member.half{
    width: 50%;
    margin: 0 0 10px 0;
  }
  
  
  
  .members.list .member .content{
    display: block;    
    text-align: left;
    padding: 0 0 0 20px;
  }
  
  .members.list .member .content .line{
    display: flex;    
  }
  
  .members.list .member .content .class{
    color: var(--almost-white);
    padding: 4px 7px;
    border-radius: 3px;
    background: var(--almost-black);
    line-height: 1;
    margin-right: 5px;
    font-size: 10px;
  }
  
  .members.list .member .content .class.Science{
    background: var(--orange);
  }
  
  .members.list .member .content .class.Technologie{
    background: var(--blue);
  }
  
  .members.list .member .content .class.Education{
    background: var(--green);
  }
  
  .members.list .member .content .class.Administration{
    background: var(--pink);
  }

  .members .member .name{
    line-height: 1.5em;
    background: var(--almost-black);
    padding: 0 12px;
    border-radius: 20px;
    color: var(--almost-white);
  }
  
    .members.list .member .name{
      padding: 0;
    }	  
  
	.members .member.Science .name{
		background: var(--orange);
	}
	.members .member.Technologie .name{
		background: var(--blue);
	}
	.members .member.Education .name{
		background: var(--green);
	}
	.members .member.Administration .name{
		background: var(--pink);
	}
  
  
  .members .member.Science.Technologie .name{
    background: linear-gradient(to right, var(--orange) 50%, var(--blue) 50%);
  }
  .members .member.Science.Education .name{
    background: linear-gradient(to right, var(--orange) 50%, var(--green) 50%);
  }
  .members .member.Science.Administration .name{
    background: linear-gradient(to right, var(--orange) 50%, var(--pink) 50%);
  }
   
  
  .members.list .member .name{
    color: var(--almost-black);
    background: none!important;
  }
  
  .members .member .info{
    white-space: break-spaces;
    line-height: 1.5em;
    font-size: 10px;
    margin-bottom: 3px;
  }
  
  /* .members.list .member .info{
    padding: 0 0 0 5px;  
  } */
  .members .tags{
	display: flex;
	justify-content: center;
  }
   
  .members .tag{
    color: var(--almost-white);
    background: var(--almost-black);
    padding: 3px 10px;
    line-height: 1.3em;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    margin: 5px 0 0;
	border: 2px solid var(--almost-black);
  }
  
  .members .tag.class.Science{
	  border: 2px solid var(--orange);
  }
  
  .members .tag.class.Technologie{
	  border: 2px solid var(--blue);
  }
  
  .members .tag.class.Education{
	  border: 2px solid var(--green);
  }
  
  .members .tag.class.Administration{
	  border: 2px solid var(--pink);
  }


.members .member img{
  width: 120px;
  height: 120px;
  border-radius: 150px;
  overflow: hidden;
  /* border: 2px solid var(--almost-white); */
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
	
	/* .members .member.Science img{
		border: 2px solid var(--orange);
	}
	
	.members .member.Technologie img{
		border: 2px solid var(--blue);
	}
	
	.members .member.Education img{
		border: 2px solid var(--green);
	}
	
	.members .member.Administration img{
		border: 2px solid var(--pink);
	} */
	  
  .members.list .member .thumbnail,
  .members.list .member img{
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: #eee;
  }
  
  .members.attachments .member img{
    width: 80px;
    height: 80px;
  }
  
.services,
.equipments,
.tools,
.projects{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 1.5em;
}

.services .service,
.equipments .equipment,
.tools .tool,
.projects .project{
  width: 48%;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
  padding: 20px; 
  display: block;
  box-sizing: border-box; 
}

  .job .date,
  .service .tag,
  .equipment .tag,
  .publication .pub-date,
  .tool .tag,
  .project .tag{
	display: inline-block;
	font-weight: bold;
	border: 2px solid var(--light-gray);
	padding: 2px 12px;
	margin: 0 10px 10px 0;
	border-radius: 30px;
  }
  	
	.tool .tag,
	.project .tag{
		border: 2px solid var(--orange);  
	}
    
	.equipment .tag,
	.service .tag{
		border: 2px solid var(--blue);  
	}
  
  .service .the_title,
  .equipment .the_title,
  .tool .the_title,
  .project .the_title{	 
    font-size: 22px;
    line-height: 1.2em;
    font-weight: bold;
    margin: 10px 0 0 0;
    font-family: var(--secondary-font);
  }
  
  .service .description,
  .equipment .description,
  .tool .description,
  .project .description{
    font-size: 20px;
    font-weight: bold;
  }

.block-jobs{
  background: var(--light-gray);
  padding: 50px 0;
}

  .jobs .job{
    display: flex;
    margin: 0 0 30px 0;
  }
  .jobs .job .line{
    display: flex;
  }
  
    .job .meta{
      /* display: grid; */
      text-align: center;
      margin-right: 15px;
    }
    .job .date{
      font-size: 15px;
      line-height: 1.5em;
      border-color: var(--link-color);
      margin: 0;
    }
    
    .job .label{
      font-size: 12px;    
      font-weight: bold;
      line-height: 1;
      margin-top: 3px;
    }
    
    .job .info,
    .job .class{      
      color: var(--almost-white);
      padding: 4px 7px;
      border-radius: 3px;
      background: var(--almost-black);
      line-height: 1;
      margin-right: 5px;
      font-size: 12px;      
    }
    
    .job .class.Science {
      background: var(--orange);
    }
    .job .class.Technologie {
      background: var(--blue);
    }
    .job .class.Education {
      background: var(--green);
    }
    .job .class.Administration {
      background: var(--pink);
    }
    
    .job .title{
      font-family: var(--secondary-font);
      font-weight: bold;
    }

.publications{
  display: inline-grid;
  font-size: 15px;
  line-height: 1.5em;
}

.publications .publication{
  display: flex;
  margin: 10px 0;
  align-items: flex-start;
}
  
  .publication .the_title{
    font-style: italic;
    font-weight: 600;
  }


#banner .infos{
  padding: 20px 0;  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#banner .infos .info{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 0 20px;
}

#banner .infos .info.create{
  cursor: pointer;
}

#banner .infos .info i{
  font-size: 25px;
  color: var(--almost-white);
}

#banner .infos .info .label{
  font-size: 12px;
  background: var(--light-gray);
  padding: 6px 10px;
  border-radius: 15px;
  line-height: 1em;
  color: var(--almost-black);
}


.wp-block-image.size-full img {
  max-width: 100%;
  height: auto;
}



.wp-block-archives {
  box-sizing: border-box
}

.wp-block-archives-dropdown label {
  display: block
}

.wp-block-avatar {
  line-height: 0
}

.wp-block-avatar,
.wp-block-avatar img {
  box-sizing: border-box
}

.wp-block-avatar.aligncenter {
  text-align: center
}

.wp-block-audio {
  box-sizing: border-box
}

.wp-block-audio figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-audio audio {
  min-width: 300px;
  width: 100%
}

.wp-block-button__link {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  word-break: break-word
}

.wp-block-button__link.aligncenter {
  text-align: center
}

.wp-block-button__link.alignright {
  text-align: right
}

:where(.wp-block-button__link) {
  border-radius: 9999px;
  box-shadow: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  text-decoration: none
}

.wp-block-button[style*=text-decoration] .wp-block-button__link {
  text-decoration: inherit
}

.wp-block-buttons>.wp-block-button.has-custom-width {
  max-width: none
}

.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%
}

.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link {
  font-size: inherit
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-25 {
  width: calc(25% - var(--wp--style--block-gap, .5em)*.75)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, .5em)*.5)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
  width: calc(75% - var(--wp--style--block-gap, .5em)*.25)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-100 {
  flex-basis: 100%;
  width: 100%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25 {
  width: 25%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50 {
  width: 50%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75 {
  width: 75%
}

.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0
}

.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
  border-radius: 0 !important
}

.wp-block-button .wp-block-button__link.is-style-outline,
.wp-block-button.is-style-outline>.wp-block-button__link {
  border: 2px solid;
  padding: .667em 1.333em
}

.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color),
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color) {
  color: currentColor
}

.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background),
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background) {
  background-color: transparent;
  background-image: none
}

.wp-block-button .wp-block-button__link:where(.has-border-color) {
  border-width: initial
}

.wp-block-button .wp-block-button__link:where([style*=border-top-color]) {
  border-top-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-right-color]) {
  border-right-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-bottom-color]) {
  border-bottom-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-left-color]) {
  border-left-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-style]) {
  border-width: initial
}

.wp-block-button .wp-block-button__link:where([style*=border-top-style]) {
  border-top-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-right-style]) {
  border-right-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-bottom-style]) {
  border-bottom-width: medium
}

.wp-block-button .wp-block-button__link:where([style*=border-left-style]) {
  border-left-width: medium
}

.wp-block-buttons.is-vertical {
  flex-direction: column
}

.wp-block-buttons.is-vertical>.wp-block-button:last-child {
  margin-bottom: 0
}

.wp-block-buttons>.wp-block-button {
  display: inline-block;
  margin: 0
}

.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start
}

.wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center
}

.wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center
}

.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end
}

.wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end
}

.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between
}

.wp-block-buttons.aligncenter {
  text-align: center
}

.wp-block-buttons:not(.is-content-justification-space-between, .is-content-justification-right, .is-content-justification-left, .is-content-justification-center) .wp-block-button.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: 100%
}

.wp-block-buttons[style*=text-decoration] .wp-block-button,
.wp-block-buttons[style*=text-decoration] .wp-block-button__link {
  text-decoration: inherit
}

.wp-block-buttons.has-custom-font-size .wp-block-button__link {
  font-size: inherit
}

.wp-block-button.aligncenter,
.wp-block-calendar {
  text-align: center
}

.wp-block-calendar td,
.wp-block-calendar th {
  border: 1px solid;
  padding: .25em
}

.wp-block-calendar th {
  font-weight: 400
}

.wp-block-calendar caption {
  background-color: inherit
}

.wp-block-calendar table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-calendar table:where(:not(.has-text-color)) {
  color: #40464d
}

.wp-block-calendar table:where(:not(.has-text-color)) td,
.wp-block-calendar table:where(:not(.has-text-color)) th {
  border-color: #ddd
}

.wp-block-calendar table.has-background th {
  background-color: inherit
}

.wp-block-calendar table.has-text-color th {
  color: inherit
}

:where(.wp-block-calendar table:not(.has-background) th) {
  background: #ddd
}

.wp-block-categories {
  box-sizing: border-box
}

.wp-block-categories.alignleft {
  margin-right: 2em
}

.wp-block-categories.alignright {
  margin-left: 2em
}

.wp-block-categories.wp-block-categories-dropdown.aligncenter {
  text-align: center
}

.wp-block-code {
  box-sizing: border-box
}

.wp-block-code code {
  display: block;
  font-family: inherit;
  overflow-wrap: break-word;
  white-space: pre-wrap
}

.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important
}

@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap !important
  }
}

.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end
}

@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 100% !important
  }
}

@media (min-width: 782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 0;
    flex-grow: 1
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
    flex-grow: 0
  }
}

.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
  flex-basis: 0;
  flex-grow: 1
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis] {
  flex-grow: 0
}

:where(.wp-block-columns) {
  margin-bottom: 1.75em
}

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word
}

.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end
}

.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%
}

.wp-block-details {
  box-sizing: border-box;
  overflow: hidden
}

.wp-block-details summary {
  cursor: pointer
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align=left]>[data-type="core/embed"],
.wp-block[data-align=right]>[data-type="core/embed"] {
  max-width: 360px;
  width: 100%
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper {
  min-width: 280px
}

.wp-block-cover .wp-block-embed {
  min-height: 240px;
  min-width: 320px
}

.wp-block-embed {
  overflow-wrap: break-word
}

.wp-block-embed figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-embed iframe {
  max-width: 100%
}

.wp-block-embed__wrapper {
  position: relative
}

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%
}

.wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%
}

.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
  padding-top: 42.85%
}

.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
  padding-top: 50%
}

.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%
}

.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
  padding-top: 75%
}

.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
  padding-top: 100%
}

.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
  padding-top: 177.77%
}

.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
  padding-top: 200%
}

.wp-block-file {
  box-sizing: border-box
}

.wp-block-file:not(.wp-element-button) {
  font-size: .8em
}

.wp-block-file.aligncenter {
  text-align: center
}

.wp-block-file.alignright {
  text-align: right
}

.wp-block-file *+.wp-block-file__button {
  margin-left: .75em
}

:where(.wp-block-file) {
  margin-bottom: 1.5em
}

.wp-block-file__embed {
  margin-bottom: 1em
}

:where(.wp-block-file__button) {
  border-radius: 2em;
  display: inline-block;
  padding: .5em 1em
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
  box-shadow: none;
  color: #fff;
  opacity: .85;
  text-decoration: none
}

.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1em 1em 0;
  position: relative;
  width: calc(50% - 1em)
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  margin: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: .8em;
  margin: 0;
  max-height: 100%;
  overflow: auto;
  padding: 3em .77em .7em;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img {
  display: inline
}

.blocks-gallery-grid:not(.has-nested-images) figcaption,
.wp-block-gallery:not(.has-nested-images) figcaption {
  flex-grow: 1
}

.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%
}

@media (min-width: 600px) {

  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(33.33333% - .66667em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(25% - .75em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(20% - .8em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(16.66667% - .83333em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(14.28571% - .85714em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(12.5% - .875em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0
  }
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
  margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images).alignleft,
.blocks-gallery-grid:not(.has-nested-images).alignright,
.wp-block-gallery:not(.has-nested-images).alignleft,
.wp-block-gallery:not(.has-nested-images).alignright {
  max-width: 420px;
  width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure {
  justify-content: center
}

.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
  align-self: flex-start
}

figure.wp-block-gallery.has-nested-images {
  align-items: normal
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative
}

.wp-block-gallery.has-nested-images figure.wp-block-image>a,
.wp-block-gallery.has-nested-images figure.wp-block-image>div {
  flex-direction: column;
  flex-grow: 1;
  margin: 0
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100% !important;
  width: auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  left: 0;
  margin-bottom: 0;
  max-height: 60%;
  overflow: auto;
  padding: 0 8px 8px;
  position: absolute;
  text-align: center;
  width: 100%
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
  display: inline
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
  color: inherit
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img {
  box-sizing: border-box
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div {
  flex: 1 1 auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
  background: none;
  color: inherit;
  flex: initial;
  margin: 0;
  padding: 10px 10px 9px;
  position: relative
}

.wp-block-gallery.has-nested-images figcaption {
  flex-basis: 100%;
  flex-grow: 1;
  text-align: center
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
  margin-bottom: auto;
  margin-top: 0
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
  align-self: inherit
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone) {
  display: flex
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  flex: 1 0 0%;
  height: 100%;
  object-fit: cover;
  width: 100%
}

.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
  width: 100%
}

@media (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    width: calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
  }

  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)
  }

  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
    width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)
  }

  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
    width: calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)
  }

  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
    width: calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)
  }

  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
    width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child {
    width: 100%
  }
}

.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
  max-width: 420px;
  width: 100%
}

.wp-block-gallery.has-nested-images.aligncenter {
  justify-content: center
}

.wp-block-group {
  box-sizing: border-box
}

h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
  padding: 1.25em 2.375em
}

h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]) {
  rotate: 180deg
}

.wp-block-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom
}

.wp-block-image[style*=border-radius] img,
.wp-block-image[style*=border-radius]>a {
  border-radius: inherit
}

.wp-block-image.has-custom-border img {
  box-sizing: border-box
}

.wp-block-image.aligncenter {
  text-align: center
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  height: auto;
  width: 100%
}

.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
  display: table
}

.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.aligncenter>figcaption,
.wp-block-image.alignleft>figcaption,
.wp-block-image.alignright>figcaption {
  caption-side: bottom;
  display: table-caption
}

.wp-block-image .alignleft {
  float: left;
  margin: .5em 1em .5em 0
}

.wp-block-image .alignright {
  float: right;
  margin: .5em 0 .5em 1em
}

.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto
}

.wp-block-image figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-image .is-style-rounded img,
.wp-block-image.is-style-circle-mask img,
.wp-block-image.is-style-rounded img {
  border-radius: 9999px
}

@supports ((-webkit-mask-image: none) or (mask-image:none)) or (-webkit-mask-image:none) {
  .wp-block-image.is-style-circle-mask img {
    border-radius: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-mode: alpha;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain
  }
}

.wp-block-image :where(.has-border-color) {
  border-style: solid
}

.wp-block-image :where([style*=border-top-color]) {
  border-top-style: solid
}

.wp-block-image :where([style*=border-right-color]) {
  border-right-style: solid
}

.wp-block-image :where([style*=border-bottom-color]) {
  border-bottom-style: solid
}

.wp-block-image :where([style*=border-left-color]) {
  border-left-style: solid
}

.wp-block-image :where([style*=border-width]) {
  border-style: solid
}

.wp-block-image :where([style*=border-top-width]) {
  border-top-style: solid
}

.wp-block-image :where([style*=border-right-width]) {
  border-right-style: solid
}

.wp-block-image :where([style*=border-bottom-width]) {
  border-bottom-style: solid
}

.wp-block-image :where([style*=border-left-width]) {
  border-left-style: solid
}

.wp-block-image figure {
  margin: 0
}

.wp-lightbox-container {
  display: flex;
  flex-direction: column;
  position: relative
}

.wp-lightbox-container img {
  cursor: zoom-in
}

.wp-lightbox-container img:hover+button {
  opacity: 1
}

.wp-lightbox-container button {
  align-items: center;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(90, 90, 90, .25);
  border: none;
  border-radius: 4px;
  cursor: zoom-in;
  display: flex;
  height: 20px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 16px;
  text-align: center;
  top: 16px;
  transition: opacity .2s ease;
  width: 20px;
  z-index: 100
}

.wp-lightbox-container button:focus-visible {
  outline: 3px auto rgba(90, 90, 90, .25);
  outline: 3px auto -webkit-focus-ring-color;
  outline-offset: 3px
}

.wp-lightbox-container button:hover {
  cursor: pointer;
  opacity: 1
}

.wp-lightbox-container button:focus {
  opacity: 1
}

.wp-lightbox-container button:focus,
.wp-lightbox-container button:hover,
.wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
  background-color: rgba(90, 90, 90, .25);
  border: none
}

.wp-lightbox-overlay {
  box-sizing: border-box;
  cursor: zoom-out;
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100vw;
  z-index: 100000
}

.wp-lightbox-overlay .close-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  position: absolute;
  right: calc(env(safe-area-inset-right) + 16px);
  top: calc(env(safe-area-inset-top) + 16px);
  z-index: 5000000
}

.wp-lightbox-overlay .close-button:focus,
.wp-lightbox-overlay .close-button:hover,
.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background) {
  background: none;
  border: none
}

.wp-lightbox-overlay .lightbox-image-container {
  height: var(--wp--lightbox-container-height);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  width: var(--wp--lightbox-container-width);
  z-index: 9999999999
}

.wp-lightbox-overlay .wp-block-image {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  position: relative;
  transform-origin: 0 0;
  width: 100%;
  z-index: 3000000
}

.wp-lightbox-overlay .wp-block-image img {
  height: var(--wp--lightbox-image-height);
  min-height: var(--wp--lightbox-image-height);
  min-width: var(--wp--lightbox-image-width);
  width: var(--wp--lightbox-image-width)
}

.wp-lightbox-overlay .wp-block-image figcaption {
  display: none
}

.wp-lightbox-overlay button {
  background: none;
  border: none
}

.wp-lightbox-overlay .scrim {
  background-color: #fff;
  height: 100%;
  opacity: .9;
  position: absolute;
  width: 100%;
  z-index: 2000000
}

.wp-lightbox-overlay.active {
  animation: turn-on-visibility .25s both;
  visibility: visible
}

.wp-lightbox-overlay.active img {
  animation: turn-on-visibility .35s both
}

.wp-lightbox-overlay.hideanimationenabled:not(.active) {
  animation: turn-off-visibility .35s both
}

.wp-lightbox-overlay.hideanimationenabled:not(.active) img {
  animation: turn-off-visibility .25s both
}

@media (prefers-reduced-motion:no-preference) {
  .wp-lightbox-overlay.zoom.active {
    animation: none;
    opacity: 1;
    visibility: visible
  }

  .wp-lightbox-overlay.zoom.active .lightbox-image-container {
    animation: lightbox-zoom-in .4s
  }

  .wp-lightbox-overlay.zoom.active .lightbox-image-container img {
    animation: none
  }

  .wp-lightbox-overlay.zoom.active .scrim {
    animation: turn-on-visibility .4s forwards
  }

  .wp-lightbox-overlay.zoom.hideanimationenabled:not(.active) {
    animation: none
  }

  .wp-lightbox-overlay.zoom.hideanimationenabled:not(.active) .lightbox-image-container {
    animation: lightbox-zoom-out .4s
  }

  .wp-lightbox-overlay.zoom.hideanimationenabled:not(.active) .lightbox-image-container img {
    animation: none
  }

  .wp-lightbox-overlay.zoom.hideanimationenabled:not(.active) .scrim {
    animation: turn-off-visibility .4s forwards
  }
}

@keyframes turn-on-visibility {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes turn-off-visibility {
  0% {
    opacity: 1;
    visibility: visible
  }

  99% {
    opacity: 0;
    visibility: visible
  }

  to {
    opacity: 0;
    visibility: hidden
  }
}

@keyframes lightbox-zoom-in {
  0% {
    transform: translate(calc(-50vw + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))
  }

  to {
    transform: translate(-50%, -50%) scale(1)
  }
}

@keyframes lightbox-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible
  }

  99% {
    visibility: visible
  }

  to {
    transform: translate(calc(-50vw + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
    visibility: hidden
  }
}

ol,
ul {
  box-sizing: border-box
}

ol.has-background,
ul.has-background {
  padding: 1.25em 2.375em
}

.wp-block-media-text {
  box-sizing: border-box;
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto
}

.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%
}

.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
  align-self: start
}

.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  align-self: center
}

.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
  align-self: end
}

.wp-block-media-text .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8%;
  word-break: break-word
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1
    /*!rtl:end:ignore*/
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1
    /*!rtl:end:ignore*/
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
  height: auto;
  max-width: unset;
  vertical-align: middle;
  width: 100%
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media {
  background-size: cover;
  height: 100%;
  min-height: 250px
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media>a {
  display: block;
  height: 100%
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

@media (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2
  }
}

.is-small-text {
  font-size: .875em
}

.is-regular-text {
  font-size: 1em
}

.is-large-text {
  font-size: 2.25em
}

.is-larger-text {
  font-size: 3em
}

.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: .68;
  margin: .05em .1em 0 0;
  text-transform: uppercase
}

body.rtl .has-drop-cap:not(:focus):first-letter {
  float: none;
  margin-left: .1em
}

p.has-drop-cap.has-background {
  overflow: hidden
}

p.has-background {
  padding: 1.25em 2.375em
}

:where(p.has-text-color:not(.has-link-color)) a {
  color: inherit
}

p.has-text-align-left[style*="writing-mode:vertical-lr"],
p.has-text-align-right[style*="writing-mode:vertical-rl"] {
  rotate: 180deg
}

.wp-block-post-time-to-read,
.wp-block-post-title {
  box-sizing: border-box
}

.wp-block-post-title {
  word-break: break-word
}

.wp-block-post-title a {
  display: inline-block
}

.wp-block-preformatted {
  box-sizing: border-box;
  white-space: pre-wrap
}

:where(.wp-block-preformatted.has-background) {
  padding: 1.25em 2.375em
}

.wp-block-pullquote {
  box-sizing: border-box;
  overflow-wrap: break-word;
  padding: 3em 0;
  text-align: center
}

.wp-block-quote blockquote,
.wp-block-quote cite,
.wp-block-quote p,
.wp-block-pullquote blockquote,
.wp-block-pullquote cite,
.wp-block-pullquote p {
  font-family: var(--secondary-font);
  font-style: normal;
  font-size: 1.5em;
  color: inherit
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 420px
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative
}

.wp-block-pullquote .has-text-color a {
  color: inherit
}

:where(.wp-block-pullquote) {
  margin: 0 0 1em
}

.wp-block-pullquote.has-text-align-left blockquote {
  text-align: left
}

.wp-block-pullquote.has-text-align-right blockquote {
  text-align: right
}

.wp-block-pullquote.is-style-solid-color {
  border: none
}

.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 60%
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 2em;
  margin-bottom: 0;
  margin-top: 0
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
  font-style: normal;
  text-transform: none
}

.wp-block-pullquote cite {
  color: inherit
}

.wp-block-query-title,
.wp-block-quote {
  box-sizing: border-box
}

.wp-block-quote {
  overflow-wrap: break-word;
  line-height: 1.7em;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  margin-bottom: 1em;
  padding: 0 1em
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) p,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
  font-size: 1.125em;
  text-align: right
}

.wp-block-read-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content
}

.wp-block-read-more:not([style*=text-decoration]),
.wp-block-read-more:not([style*=text-decoration]):active,
.wp-block-read-more:not([style*=text-decoration]):focus {
  text-decoration: none
}

.wp-block-separator {
  border: 1px solid;
  border-left: none;
  border-right: none
}

.wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  height: auto;
  line-height: 1;
  text-align: center
}

.wp-block-separator.is-style-dots:before {
  color: currentColor;
  content: "···";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em
}

.wp-block-spacer {
  clear: both
}

.wp-block-tag-cloud {
  box-sizing: border-box
}

.wp-block-tag-cloud.aligncenter {
  justify-content: center;
  text-align: center
}

.wp-block-tag-cloud.alignfull {
  padding-left: 1em;
  padding-right: 1em
}

.wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px
}

.wp-block-tag-cloud span {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none
}

.wp-block-tag-cloud.is-style-outline {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch
}

.wp-block-tag-cloud.is-style-outline a {
  border: 1px solid;
  font-size: unset !important;
  margin-right: 0;
  padding: 1ch 2ch;
  text-decoration: none !important
}

.wp-block-table {
  overflow-x: auto
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-table thead {
  border-bottom: 3px solid
}

.wp-block-table tfoot {
  border-top: 3px solid
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: .5em
}

.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
  display: table;
  width: auto
}

.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word
}

.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5
}

.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5
}

.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe
}

.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef
}

.wp-block-table.is-style-stripes {
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
  border-collapse: inherit;
  border-spacing: 0
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
  background-color: #f3f4f5
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
  background-color: #e9fbe5
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
  background-color: #e7f5fe
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
  background-color: #fcf0ef
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border-color: transparent
}

.wp-block-table .has-border-color td,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color>* {
  border-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:first-child,
.wp-block-table table[style*=border-top-color] tr:first-child td,
.wp-block-table table[style*=border-top-color] tr:first-child th,
.wp-block-table table[style*=border-top-color]>*,
.wp-block-table table[style*=border-top-color]>* td,
.wp-block-table table[style*=border-top-color]>* th {
  border-top-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:not(:first-child) {
  border-top-color: currentColor
}

.wp-block-table table[style*=border-right-color] td:last-child,
.wp-block-table table[style*=border-right-color] th,
.wp-block-table table[style*=border-right-color] tr,
.wp-block-table table[style*=border-right-color]>* {
  border-right-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:last-child,
.wp-block-table table[style*=border-bottom-color] tr:last-child td,
.wp-block-table table[style*=border-bottom-color] tr:last-child th,
.wp-block-table table[style*=border-bottom-color]>*,
.wp-block-table table[style*=border-bottom-color]>* td,
.wp-block-table table[style*=border-bottom-color]>* th {
  border-bottom-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:not(:last-child) {
  border-bottom-color: currentColor
}

.wp-block-table table[style*=border-left-color] td:first-child,
.wp-block-table table[style*=border-left-color] th,
.wp-block-table table[style*=border-left-color] tr,
.wp-block-table table[style*=border-left-color]>* {
  border-left-color: inherit
}

.wp-block-table table[style*=border-style] td,
.wp-block-table table[style*=border-style] th,
.wp-block-table table[style*=border-style] tr,
.wp-block-table table[style*=border-style]>* {
  border-style: inherit
}

.wp-block-table table[style*=border-width] td,
.wp-block-table table[style*=border-width] th,
.wp-block-table table[style*=border-width] tr,
.wp-block-table table[style*=border-width]>* {
  border-style: inherit;
  border-width: inherit
}

:where(.wp-block-term-description) {
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap)
}

.wp-block-term-description p {
  margin-bottom: 0;
  margin-top: 0
}

.wp-block-text-columns,
.wp-block-text-columns.aligncenter {
  display: flex
}

.wp-block-text-columns .wp-block-column {
  margin: 0 1em;
  padding: 0
}

.wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0
}

.wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0
}

.wp-block-text-columns.columns-2 .wp-block-column {
  width: 50%
}

.wp-block-text-columns.columns-3 .wp-block-column {
  width: 33.33333%
}

.wp-block-text-columns.columns-4 .wp-block-column {
  width: 25%
}

pre.wp-block-verse {
  overflow: auto;
  white-space: pre-wrap
}

:where(pre.wp-block-verse) {
  font-family: inherit
}

.wp-block-video {
  box-sizing: border-box
}

.wp-block-video video {
  vertical-align: middle;
  width: 100%
}

@supports (position: sticky) {
  .wp-block-video [poster] {
    object-fit: cover
  }
}

.wp-block-video.aligncenter {
  text-align: center
}

.wp-block-video figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.editor-styles-wrapper,
.entry-content {
  counter-reset: footnotes
}

a[data-fn].fn {
  counter-increment: footnotes;
  display: inline-flex;
  font-size: smaller;
  text-decoration: none;
  text-indent: -9999999px;
  vertical-align: super
}

a[data-fn].fn:after {
  content: "[" counter(footnotes) "]";
  float: left;
  text-indent: 0
}

.wp-element-button {
  cursor: pointer
}

.has-regular-font-size {
  font-size: 1em
}

.has-larger-font-size {
  font-size: 2.625em
}

.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal)
}

.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge)
}

.has-text-align-center {
  text-align: center
}

.has-text-align-left {
  text-align: left
}

.has-text-align-right {
  text-align: right
}

#end-resizable-editor-section {
  display: none
}

.aligncenter {
  clear: both
}

.items-justified-left {
  justify-content: flex-start
}

.items-justified-center {
  justify-content: center
}

.items-justified-right {
  justify-content: flex-end
}

.items-justified-space-between {
  justify-content: space-between
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.screen-reader-text:focus {
  clip: auto !important;
  background-color: #ddd;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000
}

html :where(.has-border-color) {
  border-style: solid
}

html :where([style*=border-top-color]) {
  border-top-style: solid
}

html :where([style*=border-right-color]) {
  border-right-style: solid
}

html :where([style*=border-bottom-color]) {
  border-bottom-style: solid
}

html :where([style*=border-left-color]) {
  border-left-style: solid
}

html :where([style*=border-width]) {
  border-style: solid
}

html :where([style*=border-top-width]) {
  border-top-style: solid
}

html :where([style*=border-right-width]) {
  border-right-style: solid
}

html :where([style*=border-bottom-width]) {
  border-bottom-style: solid
}

html :where([style*=border-left-width]) {
  border-left-style: solid
}

html :where(img[class*=wp-image-]) {
  height: auto;
  max-width: 100%
}

:where(figure) {
  margin: 0 0 1em
}

html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height, 0px)
}

@media screen and (max-width: 600px) {
  html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: 0px
  }
}

.split {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .right,
.split .left {
  width: 50%;
}

.split .right {
  text-align: right;
}

.split .back {
  width: 100%;
}

.split .part_30 {
  width: 33%;
}

.split .part_70 {
  width: 67%;
}

.split.reverse .part_70,
.split.reverse .part_30 {
  text-align: right;
}

.split .left .content,
.split .right .content {
  text-align: left;
  padding-top: 15px;
}

.split .left .content {
  padding-right: 40px;
  padding-left: 6em;
}

.split .right .content {
  padding-left: 40px;
  padding-right: 6em;
}

.text_image .left .image {
  text-align: left;
}

.text_image .right .image {
  text-align: right;
}

.text_image .back .content .text {
  display: inline-flex;
  background: black;
  box-shadow: 14px 0 0 black, -14px 0 0 black;
  border-radius: 3px;
}

/* .institutions {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.institutions a {
  text-decoration: none;
}

.institutions .institution img {
  width: 100%;
  height: auto;
}

.institutions .institution {
  width: 15.5%;
  margin: 2%;
  opacity: 0.7;
}

.institutions .institution:hover {
  opacity: 1;
}

.institutions .institution.square {
  width: 8%;
}

.institutions .institution.landscape {
  width: 14%;
}

.institutions .institution.widescreen {
  width: 18%;
}

.institutions .institution.cinemascope {
  width: 20%;
}

.institutions .institution.portrait {
  width: 9%;
} */

#newsletter {
  background: linear-gradient(-45deg, #387e4ecc, #133788cc, #25945bcc, #304397cc);
}

#newsletter h4 {
  font-family: var(--secondary-font);
  font-size: 3em;
  color: #fff;
  line-height: 1em;
  opacity: 1;
}

#newsletter h4 span {
  display: block;
  opacity: 0.4;
}

#newsletter .frm_fields_container {
  display: flex;
}

#newsletter input[type=text],
#newsletter input[type=email] {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.65em;
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  box-shadow: none;
  border-radius: 0;
  color: #ffffff;
  height: auto;
  padding: 6px 0;
}

#newsletter input:-webkit-autofill,
#newsletter input:-webkit-autofill:hover,
#newsletter input:-webkit-autofill:focus,
#newsletter input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--main-color) inset !important;
  -webkit-text-fill-color: rgb(255, 255, 255) !important;
}

#newsletter #frm_field_24_container {
  flex: 1;
}

#newsletter #frm_field_27_container {
  display: none;
}

#newsletter label {
  color: #ffffff88;
  font-size: 1.6em;
  font-weight: 600;
}

#newsletter .frm_label_float_top label {
  font-size: inherit;
}

#newsletter button {
  font-size: 1.2em;
  background: none;
  border: 2px solid #fff;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
}

#newsletter .frm_primary_label,
#newsletter .frm_description {
  color: #fff;
}

#newsletter .frm_prev_page {
  display: none;
}

#footer {
  background: var(--almost-white);
}

#credits {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

#credits a {
  color: rgb(172 179 189);
  font-size: 12px;
  font-weight: 600;
}

#footer-logo {
  display: inline-block;
  text-indent: -9999px;
  width: 200px;
  height: 82px;
  background-image: url(assets/images/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 100px auto 0;
}

#footer h5 {
  margin: 0 0 30px 0;
  text-transform: none;
  opacity: 0.3;
}


@media screen and (max-width: 1440px) {
  body{
    font-size: 18px;
  }  
  #main-menu li{
    margin-top: 7px;
  }
  .members .member img{
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1280px) {
  body{
    font-size: 17px;
  }
  #main-menu li a {
    padding: 16px 5px 12px;
  }
}

@media screen and (max-width: 1150px) {
  body{
    font-size: 16px;
  }
  
  #main-menu li{
    margin-top: 4px;
  }
  
  .numbers .number .content .anim-count {
    font-size: 60px;
  }
  .numbers .number .content .text {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  
  html {
      margin-top: 0 !important;
  }
  
  body{
    font-size: 15px;
  }
  
  body #wpadminbar{
    display:none!important;
  }
  
  .hnav #page {
    padding-top: 65px;
  }
  
  #site-navigation,
  .logged-in #site-navigation {
    top: 0;
  }
  
  .hnav #site-navigation .bottom{
    display: none;
  }
  
  .menu-main-container{
    display: none;
  }
  
  .hnav #togglenav{
    display: block;
  }
  
  .open .menu-main-container{
    display: block;
    position: fixed;
    background: var(--almost-black);
    width: 100%;
    height: 100%;
    top: 65px;
  }
    
  .hnav #main-menu{
    display: block;
  }
  
  #main-menu li a{
    width: 100%;
    padding: 10px 5px 10px;
  }
  
  .logged-in #progress-bar {
    top: 0;
  }
    
  .cards .card{
    width: 48%;
  }
  
  .upcoming .equipments .equipment, .upcoming .tools .tool, .upcoming .projects .project {
    width: 98%;
  }
  
  .members .member {
    font-size: 11px;
    width: 30%;
  }
  
  .members .member img{
    width: 80px;
    height: 80px;
  }
  
  #inpage-menu a {    
    font-size: 13px;    
    padding: 2px 6px;
    letter-spacing: -0.4px;
  }
  
  .block-numbers  .numbers .number .content .anim-count {
    font-size: 30px;
  }
  
  .block-numbers .numbers .number .content .text {
    font-size: 16px;
    padding: 5px 0 0 0;
  }
  
  .cards.teams .team.card{
	width: 48%;
  }
  
  #banner .members .member{
    width: 40%;
  }
  
  .members.list .member {
    width: 50%;
  }
  
}

@media screen and (max-width: 783px) {
  
  
  #site-navigation{
    left:-180px;
  }
  .open #site-navigation{
    left:0;
  }
  #site-navigation > #togglenav{
    transform: translate3d(222px, 0, 0);
  }
  .open #page,
  #page {    
    margin-left: 0px;
  }
  #login-box,
  #search-box{
    left: 0;
    width: 100%;
  }  
  .logged-in #login-box,
  .logged-in #search-box {
    top: 46px;
    height: calc(100vh - 46px);
  }
  #search-box .container {    
    width: 90%;
    padding: 5%;
  }
  #user-pref {
    top: 10px;
    right: 10px;
  }
  .logged-in #user-pref{
    top: 56px;
  }

  .cards.teams .team.card,
  .single .cards .card.event,
  .cards .card{
    
    width: 98%;
  }
  
  .single .cards .card.event{
    display: block;
  }
  
  #banner .members .member,
  .members .member {  
    width: auto;
  }
  
  .members .member img{
    width: 60px;
    height: 60px;
  }
  
  .split .right,
  .split .left {
    width: 100%;
  }
  
  .members.list .member.half,    
  .flex .half {
    width: 100%;
  }
  
  body .block-numbers .numbers .number {
    width: 50%;
  }
  
  body .block-upcoming .upcoming .block {
    width: 100%;
    padding: 0;
  }
  
  body .block-button-cards .button-cards .button{
	width: 98%;
  }
  
  .equipments .equipment, .tools .tool, .projects .project {
    width: 98%;
  }
  
  .members.list .member {
    width: 100%;
  }
  
  #banner .over .title {
    font-size: 1.7em;
  }
  #banner .infos .info {
    margin: 0 10px;
  }
  #banner .infos .info i {
    font-size: 16px;
  }
  #banner .infos .info .label {
    font-size: 10px;
  }
  
  #banner .members.attachments,
  #banner .structures,
  .banner-nav,
  #inpage-filters,
  .class-filters{
      display: none; 
  }
  
  
  .cards .card .thumbnail{
    max-height: 200px;
    overflow: hidden;
  }
  
}