.h-borderboxcontext *,
.h-borderboxcontext *:after,
.h-borderboxcontext *:before {
  box-sizing: border-box;
}
.h-contentboxcontext *,
.h-contentboxcontext *:after,
.h-contentboxcontext *:before {
  box-sizing: content-box;
}
.resetDefaultApparence {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0px;
}
.resetDefaultApparence::-ms-expand {
  display: none;
}
.transitionstandard {
  transition: all 0.2s;
}
.c-header,
.c-header__placeholder {
  height: 50px;
  background-color: black;
}
.c-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 10000;
  padding: 0px 40px;
  color: white;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.c-header h3 {
  color: inherit;
}
.c-header *,
.c-header *:after,
.c-header *:before {
  box-sizing: border-box;
}
.c-header__menutoggler {
  display: none;
}
@media (min-width: 760px) {
  .c-header__menu {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .c-header__menu > li {
    display: block;
  }
  .c-header__menu > li > a {
    color: inherit;
    display: block;
    line-height: 50px;
    padding: 0px 20px;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
  }
  .c-header__menu > li > a:not(.isSpecial):hover {
    color: white;
    background-color: #0d539b;
  }
  .c-header__menu > li > a.isSpecial {
    color: white;
  }
  .c-header__menu > li > a.isSpecial:before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    border: solid 1px rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    z-index: -1;
    background-color: #0d539b;
  }
  .c-header__menu > li > a.isSpecial:hover {
    color: #0d539b;
  }
  .c-header__menu > li > a.isSpecial:hover:before {
    background-color: white;
    opacity: 1;
  }
  .c-header__menu > li > a.isActive,
  .c-header__menu > li > a.isActiveFade {
    background-color: white !important;
    color: #0d539b !important;
  }
  .c-header__menu > li > a.isActive + .c-menubox,
  .c-header__menu > li > a.isActiveFade + .c-menubox {
    visibility: visible;
    opacity: 1;
  }
  .c-header__menu > li > a.isActiveFade {
    transition: all 0.5s;
  }
  .c-header__menu > li > a.isActiveFade + .c-menubox {
    transition: all 0.5s;
  }
  .c-menubox {
    position: fixed;
    top: 50px;
    left: 40px;
    right: 40px;
    background-color: white;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    max-height: calc(100vh - 50px - 40px);
    min-height: 620px;
    visibility: hidden;
    opacity: 0;
  }
  .c-menubox__main {
    flex-grow: 1;
    color: #0d539b;
    padding: 0px 60px 50px;
    overflow: auto;
  }
  .c-menubox__title {
    font-size: 20px;
    font-weight: 600;
    padding: 45px 0px;
  }
}
@media (max-width: 759px) {
  body.isMenuMobileOpen {
    overflow: hidden;
  }
  body.isMenuMobileOpen .c-header__menutoggler {
    background-color: #0d539b;
  }
  body.isMenuMobileOpen .c-header__menutoggler:before {
    opacity: 0;
    transform: scale(0);
  }
  body.isMenuMobileOpen .c-header__menutoggler:after {
    opacity: 1;
    transform: scale(1);
  }
  body.isMenuMobileOpen .c-header__menu {
    opacity: 1;
    visibility: visible;
  }
  .c-header {
    padding: 0px;
  }
  .c-header__menutoggler {
    display: block;
    height: 100%;
    width: 160px;
    background-image: url('../Images/Icons/logo-bocconi-mini.png');
    background-position: 42px center;
    background-repeat: no-repeat;
  }
  .c-header__menutoggler:before,
  .c-header__menutoggler:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 23px;
    transition: all 0.2s;
  }
  .c-header__menutoggler:before {
    width: 16px;
    height: 14px;
    margin-left: -8px;
    margin-top: -7px;
    background-image: url('../Images/header/icn-menu-mobile.png');
  }
  .c-header__menutoggler:after {
    width: 14px;
    height: 14px;
    margin-left: -7px;
    margin-top: -7px;
    background-image: url('../Images/header/icn-x-mobile.png');
    opacity: 0;
    transform: scale(0);
  }
  .c-header__menu {
    position: fixed;
    display: block;
    top: 50px;
    left: 0px;
    bottom: 70px;
    right: 0px;
    background-color: white;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    padding: 24px 20px;
  }
  .c-header__menu > li:not(.c-menuinfoutili) > a {
    color: #0d539b;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 26px;
  }
  .c-header__menu > li:not(.c-menuinfoutili) > a.isActive + .c-menubox {
    display: block;
  }
  .c-menubox {
    display: none;
    margin-bottom: 26px;
  }
  .c-menubox__title {
    display: none;
  }
  .c-menuteasers {
    display: none !important;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-header__menu > li > a {
    padding: 0px 9px;
  }
  .c-header__menu > li > a.isSpecial:before {
    left: 5px;
    right: 5px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-header__menu > li > a {
    padding: 0px 13px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px), (min-width: 1440px) and (max-width: 1599px), (min-width: 1600px) and (max-width: 1749px), (min-width: 1750px) {
  .c-menubox__cols {
    display: flex;
    justify-content: space-between;
    margin: 0px -30px;
    height: calc(100% - 112px);
  }
  .c-menubox__col {
    padding: 0px 30px;
    flex-shrink: 0;
    flex-grow: 0;
  }
  .c-menubox__col.colx1 {
    width: 33.3333%;
  }
  .c-menubox__col.colx2 {
    width: 66.6666%;
  }
}
.c-menubox__menu {
  border-top: solid 1px #e0e0e0;
  font-size: 15px;
}
.c-menubox__menu a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.c-menubox__menu > li > a {
  color: #0d539b;
  font-weight: 600;
}
.c-menubox__menu > li li a:before {
  content: '» ';
}
.c-menubox__menu a,
.c-menubox__menu span {
  display: block;
  border-bottom: solid 1px #e0e0e0;
  line-height: 34px;
  height: 34px;
}
.c-menuteasers {
  display: flex;
  height: 100%;
}
.c-menuteaser {
  flex-grow: 1;
  flex-basis: 0;
  background-color: #f5f7fa;
  position: relative;
}
.c-menuteaser__video,
.c-menuteaser__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.c-menuteaser__video > iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}
.c-menuteaser__texts {
  padding: 16px 20px 60px;
}
.c-menuteaser__title {
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: normal;
  text-transform: uppercase;
}
.c-menuteaser__text {
  font-size: 14px;
  line-height: 1.71;
  color: black;
  margin: 0px;
}
.c-menuteaser__link {
  font-size: 13px;
  font-weight: 600;
  color: #0d539b;
  position: absolute;
  bottom: 16px;
  left: 20px;
  border-bottom: solid 2px #0d539b;
}
.c-menuteaser__link:after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url('../Images/header/icn-link-arrow-blue.png');
  margin-left: 4px;
}
.c-menucarousel {
  flex-grow: 1;
  flex-basis: 0;
  background-color: #0d539b;
  position: relative;
  color: white;
  text-align: center;
  padding-bottom: 40px;
}
.c-menucarousel__header {
  position: absolute;
  top: 250px;
  z-index: 200;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 18px 12px;
  line-height: 40px;
}
.c-menucarousel__prev,
.c-menucarousel__next {
  display: block;
  height: 40px;
  width: 40px;
  background-color: white;
  border-radius: 50%;
  background-image: url('../Images/header/icn-link-arrow-blue.png');
  background-repeat: no-repeat;
  background-position: center;
}
.c-menucarousel__prev {
  transform: rotate(180deg);
}
.c-menucarousel__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}
.c-menucarousel__link {
  position: absolute;
  bottom: 7px;
  left: 0px;
  right: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
  color: white;
  text-decoration: underline;
}
.c-menucarousel__link:hover {
  color: white !important;
}
.c-menucarouselitem {
  width: 100%;
}
.c-menucarouselitem__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.c-menucarouselitem__texts {
  padding: 84px 30px 0px;
  font-size: 14px;
  line-height: 1.71;
}
.c-menuteaserseparator {
  width: 1px;
  background-color: #e0e0e0;
  margin: 0px 60px;
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px), (max-width: 759px) {
  .c-menubox__col .c-menubox__menu {
    border-top: 0px;
  }
  .c-menubox__col .c-menubox__menu span {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px) {
  .c-menuteasers {
    padding: 40px 0px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px), (min-width: 1280px) and (max-width: 1439px), (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px) {
  .c-menuteaserseparator {
    width: 40px;
    background-color: transparent;
    margin: 0px;
  }
}
.c-menubox__aux {
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1750px) {
  .c-menubox__aux {
    width: 460px;
  }
}
@media (min-width: 1600px) and (max-width: 1749px) {
  .c-menubox__aux {
    width: 280px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-menubox__aux {
    width: 300px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px), (min-width: 1280px) and (max-width: 1439px), (min-width: 760px) and (max-width: 1023px), (max-width: 759px) {
  .c-menubox__aux {
    display: none;
  }
}
.c-menubox__aux:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}
.c-menuauxteaser__image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.c-menuauxteaser__texts {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 50px 40px;
  color: white;
  z-index: 3;
}
.c-menuauxteaser__title {
  font-size: 24px;
  line-height: normal;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  max-width: 285px;
}
.c-menuauxteaser__link {
  font-size: 13px;
  font-weight: 600;
  color: white;
  border-bottom: solid 2px white;
}
.c-menuauxteaser__link:hover {
  color: white !important;
}
.c-menuauxteaser__link:after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url('../Images/header/icn-link-arrow-white.png');
  margin-left: 4px;
}
.c-header__aux {
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 13px;
  position: relative;
}
.c-header__aux > li > a {
  color: white;
  display: block;
  line-height: 50px;
  padding: 0px 10px 0px 35px;
  background-position: 10px center;
  background-repeat: no-repeat;
}
.c-header__aux > li > a:hover,
.c-header__aux > li > a.isActive,
.c-header__aux > li > a.isActiveFade {
  background-color: #0d539b;
  color: white;
}
.c-header__aux > li > a.isActive + .c-headerauxbox,
.c-header__aux > li > a.isActiveFade + .c-headerauxbox {
  visibility: visible;
  opacity: 1;
}
.c-header__aux > li > a.isActiveFade {
  transition: all 0.5s;
}
.c-header__aux > li > a.isActiveFade + .c-headerauxbox {
  transition: all 0.5s;
}
.c-header__aux > li.shop > a {
  background-image: url('../Images/header/icn-shop.png');
}
.c-header__aux > li.sostienici > a {
  background-image: url('../Images/header/icn-sostienici.png');
}
.c-header__aux > li.agenda > a {
  background-image: url('../Images/header/icn-agenda.png');
}
.c-header__aux > li.info > a {
  background-image: url('../Images/header/icn-info-per.png');
}
.c-header__aux > li.search > a {
  background-image: url('../Images/header/icn-search.png');
}
.c-header__aux > li.international > a {
  background-image: url('../Images/header/icn-site.png');
}
.c-headerauxbox {
  width: 460px;
  min-height: 359px;
  padding: 33px 50px;
  position: absolute;
  right: 81px;
  background-color: #0d539b;
  color: white;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  visibility: hidden;
  opacity: 0;
}
.c-headerauxbox__title {
  font-size: 22px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 35px;
}
.c-headerauxbox__content {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 20px 0px;
}
.c-headerauxbox__content p {
  margin: 0px;
  font-size: 15px;
  font-weight: 600;
}
.c-headerauxbox__button {
  width: 245px;
  text-align: center;
  line-height: 50px;
  border-radius: 25px;
  background-color: #0e62b5;
  display: block;
  margin: 20px auto 0px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.1px;
  color: white;
}
.c-headerauxbox__button:hover {
  color: white !important;
}
.c-headerauxbox__button img {
  vertical-align: middle;
}
.c-headerauxbox__menu {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.c-headerauxbox__menu a {
  display: block;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  line-height: 34px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  background-image: url('../Images/header/icn-link-arrow-white.png');
  background-repeat: no-repeat;
  background-position: right center;
}
.c-headerauxbox__menu a:hover {
  color: white !important;
  text-decoration: underline;
}
.c-headerauxbox__searchinput {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0px;
  border: 0px;
  margin-bottom: 10px;
  padding: 0px 20px 0px 20px;
  font-family: inherit;
  background-image: url('../Images/header/icn-search.png');
  background-position: right 20px center;
  background-repeat: no-repeat;
}
.c-headerauxbox__searchinput::-ms-expand {
  display: none;
}
.c-headerauxbox__searchinput::-webkit-input-placeholder {
  /* Safari, Chrome and Opera */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput::-ms-input-placeholder {
  /* Edge */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput:placeholder-shown {
  /* Standard one last! */
  color: white;
  opacity: 1;
}
.c-headerauxbox__searchinput,
.c-headerauxbox__quicklinks {
  width: 100%;
  height: 60px;
  background-color: #0e62b5;
}
.c-headerauxbox__searchinput,
.c-headerauxbox__quicklinks > a {
  font-size: 15px;
  color: white;
}
.c-headerauxbox__quicklinks {
  position: relative;
}
.c-headerauxbox__quicklinks.isOpen > ul {
  display: block;
}
.c-headerauxbox__quicklinks > a {
  padding: 0px 20px 0px 20px;
  width: 100%;
  height: 100%;
  display: block;
  line-height: 60px;
  background-image: url('../Images/header/icn-caret.png');
  background-position: right 20px center;
  background-repeat: no-repeat;
}
.c-headerauxbox__quicklinks > a:hover {
  color: white !important;
}
.c-headerauxbox__quicklinks > ul {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0px;
  background: white;
  border: solid 1px #e0e0e0;
  max-height: 400px;
  overflow: auto;
  padding: 20px;
  display: none;
}
.c-headerauxbox__quicklinks > ul a {
  display: block;
  padding: 4px 0px;
}
.c-auxmenutoggler {
  display: none;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .c-header__aux > li:not(.international) > a {
    text-indent: -9999px;
    padding: 0px;
    width: 50px;
    background-position: center center;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-header__aux > li > a {
    text-indent: -9999px;
    padding: 0px;
    width: 40px;
    background-position: center center;
  }
  .c-headerauxbox {
    right: 40px;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-header__aux {
    position: absolute;
    right: 40px;
    background-color: black;
    top: 0px;
    transform: translateX(200%);
    z-index: 100;
    transition: all 0.2s;
  }
  .c-header__aux.isOpen {
    transform: translateX(0%);
  }
  .c-header__aux.isOpen + .c-auxmenutoggler:before {
    transform: rotate(45deg);
  }
  .c-header__aux:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -200px;
    width: 200px;
    background-image: linear-gradient(to right, transparent, black);
  }
  .c-header__aux > li > a {
    text-indent: -9999px;
    padding: 0px;
    width: 50px;
    background-position: center center;
  }
  .c-headerauxbox {
    right: 49px;
  }
  .c-auxmenutoggler {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 50px;
    width: 40px;
    z-index: 200;
    display: block;
  }
  .c-auxmenutoggler:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    background-image: url('../Images/header/icn-plus.png');
    transition: all 0.2s;
  }
}
@media (max-width: 759px) {
  .c-header__aux > li > a {
    text-indent: -9999px;
    padding: 0px;
    width: 32px;
    background-position: center center;
  }
  .c-headerauxbox {
    position: fixed;
    right: 0px;
    left: 0px;
    bottom: 0px;
    top: 50px;
    height: auto;
    width: auto;
    padding: 24px 20px;
  }
}
/*infoutili mobile*/

@media (min-width: 760px) {
  .c-menuinfoutili {
    display: none !important;
  }
}
@media (max-width: 759px) {
  .c-menuinfoutili {
    display: block;
    position: fixed;
    top: 100%;
    left: 0px;
    right: 0px;
    color: white;
    background-color: #0d539b;
    transform: translateY(-70px);
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  .c-menuinfoutili.isOpen {
    transform: translateY(-100%);
  }
  .c-menuinfoutili.isOpen .c-menuinfoutili__toggler:after {
    transform: scale(1, -1);
  }
  body.isMenuMobileOpen .c-menuinfoutili {
    opacity: 1;
    visibility: visible;
  }
  .c-menuinfoutili__toggler {
    color: white;
    line-height: 70px;
    font-size: 22px;
    font-weight: 300;
    padding-left: 58px;
    background-image: url('../Images/header/icn-info-per_2x.png');
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 20px auto;
    display: block;
    position: relative;
  }
  .c-menuinfoutili__toggler:hover {
    color: white !important;
  }
  .c-menuinfoutili__toggler:after {
    content: '';
    display: block;
    width: 17px;
    height: 13px;
    background-image: url('../Images/header/icn-caret.png');
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
    transition: all 0.2s;
  }
  .c-menuinfoutili__menu {
    margin: 0px 20px 20px;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
  .c-menuinfoutili__menu a {
    display: block;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    font-size: 15px;
    font-weight: 600;
    line-height: 34px;
    color: white;
  }
  .c-menuinfoutili__menu a:hover {
    color: white !important;
  }
}
/*CSS di compatibilità*/

.home #topHeader {
  height: calc(100% - 50px);
}
#topHeader #showreel .overlay .logo_home,
a.logo {
  top: 323px;
}
.c-footer {
  background-color: black;
  color: white;
  height: auto;
}
.c-footer *,
.c-footer *:after,
.c-footer *:before {
  box-sizing: border-box;
}
.c-footer__wrapper,
.c-footer_copyright {
  padding-left: 100px;
  padding-right: 100px;
}
.c-footer__wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
.c-footer__title > img {
  max-width: 100%;
}
.c-footer__main {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
.c-footer__box-1,
.c-footer__box-2 {
  display: flex;
  justify-content: space-between;
}
.c-footer__video > iframe {
  width: 573px;
  height: 322px;
}
.c-footer__menu {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-footer__box-2 {
  flex-wrap: wrap;
  width: 668px;
  margin-left: 50px;
}
.c-footer__box-2 > div {
  flex-shrink: 0;
  flex-grow: 0;
}
.c-footer__box-2 > div:nth-child(1),
.c-footer__box-2 > div:nth-child(4) {
  width: 250px;
}
.c-footer__box-2 > div:nth-child(2),
.c-footer__box-2 > div:nth-child(5) {
  width: 290px;
}
.c-footer__box-2 > div:nth-child(3) {
  width: 100%;
}
.c-footer_box__title {
  font-size: 20px;
  font-weight: 300;
  color: white !important;
}
.c-footer_box__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0px;
}
.c-footer_box__menu {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 2;
}
.c-footer_box__menu li a {
  color: inherit;
}
.c-footer_box__menu li a:hover {
  color: white;
}
.c-footer_box__contact-center {
  display: flex;
  margin-top: 27px;
}
.c-footer_box__contact-center > li {
  margin-right: 2px;
}
.c-footer_box__contact-center > li > a {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 60px;
  height: 94px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  padding: 22px 0px 8px;
  text-decoration: underline;
  position: relative;
}
.c-footer_box__contact-center > li > a:before {
  content: '';
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-footer_box__contact-center > li > a:after {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  border: solid 7px transparent;
  border-bottom-color: rgba(255, 255, 255, 0.8);
  left: 50%;
  margin-left: -7px;
}
.c-footer_box__contact-center > li > a.contact-email {
  color: #a21a1f;
}
.c-footer_box__contact-center > li > a.contact-email:before {
  background-image: url('../Images/footer/icn-mail.png');
}
.c-footer_box__contact-center > li > a.contact-skype {
  color: #448abe;
}
.c-footer_box__contact-center > li > a.contact-skype:before {
  background-image: url('../Images/footer/icn-skype.png');
}
.c-footer_box__contact-center > li > a.contact-chat {
  color: #359e1b;
}
.c-footer_box__contact-center > li > a.contact-chat:before {
  background-image: url('../Images/footer/icn-chat.png');
}
.c-footer_box__contact-center > li > a.contact-phone {
  color: #448abe;
}
.c-footer_box__contact-center > li > a.contact-phone:before {
  background-image: url('../Images/footer/icn-phone.png');
}
.c-footer_box__roundlinks {
  display: flex;
  margin-top: 17px;
  flex-wrap: wrap;
  margin-left: -10px;
}
.c-footer_box__roundlinks > li {
  margin-left: 10px;
  margin-top: 10px;
}
.c-footer_box__roundlinks > li > a {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.8);
}
.c-footer_box__roundlinks > li > a.socials-facebook {
  background-color: #3b5998;
  background-image: url('../Images/footer/icn-fb.png');
}
.c-footer_box__roundlinks > li > a.socials-twitter {
  background-color: #55acee;
  background-image: url('../Images/footer/icn-tw.png');
}
.c-footer_box__roundlinks > li > a.socials-linkedin {
  background-color: #007ab8;
  background-image: url('../Images/footer/icn-in.png');
}
.c-footer_box__roundlinks > li > a.socials-youtube {
  background-color: #cb2027;
  background-image: url('../Images/footer/icn-yt.png');
}
.c-footer_box__roundlinks > li > a.socials-instagram {
  background-color: #f26898;
  background-image: url('../Images/footer/icn-ig.png');
}
.c-footer_box__roundlinks > li > a.socials-weixin {
  background-color: #42c622;
  background-image: url('../Images/footer/icn-wc.png');
}
.c-footer_box__roundlinks > li > a.socials-uab {
  background-color: #0366b4;
  background-image: url('../Images/footer/icn-uab.png');
}
.c-footer_box__roundlinks > li > a.socials-vr {
  background-color: #15247d;
  background-image: url('../Images/footer/icn-vr.png');
}
.c-footer_box__roundlinks > li > a.socials-btv {
  background-image: url('../Images/footer/icn-btv.png');
}
.c-footer_box__roundlinks > li > a.socials-on {
  background-image: url('../Images/footer/icn-on.png');
}
.c-footer_box__roundlinks > li > a.socials-tl {
  background-image: url('../Images/footer/icn-tl.png');
}
.c-footer_copyright {
  background-color: #1c1c1c;
  height: 60px;
  display: flex;
  padding-right: 40px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.c-footer_copyright > p {
  margin: 0px;
}
.c-footer_copyright__menu {
  display: flex;
  opacity: 0.5;
}
.c-footer_copyright__menu > li > a {
  text-decoration: underline;
  color: inherit;
}
@media (min-width: 1600px) and (max-width: 1749px), (min-width: 1440px) and (max-width: 1599px), (min-width: 1280px) and (max-width: 1439px) {
  .c-footer__wrapper,
  .c-footer_copyright {
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-footer__box-2 {
    width: 470px;
  }
  .c-footer__box-2 > div:nth-child(2),
  .c-footer__box-2 > div:nth-child(5) {
    width: 140px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px), (min-width: 1280px) and (max-width: 1439px) {
  .c-footer__video > iframe {
    width: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px), (max-width: 759px) {
  .c-footer__wrapper,
  .c-footer_copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-footer__title {
    width: 100%;
    text-align: center;
  }
  .c-footer__main {
    flex-direction: column;
  }
  .c-footer__box-1 {
    justify-content: unset;
  }
  .c-footer__box-2 {
    margin-left: 0px;
    margin-top: 75px;
    justify-content: space-between;
    width: 100%;
    padding-right: 120px;
  }
  .c-footer__box-2 > div {
    flex-shrink: 0;
    flex-grow: 0;
    width: auto !important;
  }
  .c-footer__box-2 > div:nth-child(2) > ul {
    width: 150px;
  }
  .c-footer__box-2 > div:nth-child(3) {
    display: none;
  }
}
@media (min-width: 760px) and (max-width: 1023px), (max-width: 759px) {
  .c-footer__box-1,
  .c-footer__box-2 {
    flex-direction: column;
    justify-content: unset;
  }
  .c-footer__video > iframe {
    width: 308px;
    height: 173px;
  }
  .c-footer__menu {
    margin-left: 0px;
    margin-top: 50px;
  }
  .c-footer__menu > div:nth-child(2) {
    margin-top: 40px;
  }
  .c-footer__box-2 > div {
    margin-top: 40px;
  }
  .c-footer__box-2 > div:first-child {
    margin-top: 0px;
    padding-bottom: 10px;
  }
  .c-footer__box-2 > div:nth-child(3) {
    display: none;
  }
}
@media (max-width: 759px) {
  .c-footer__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .c-footer__main {
    margin-top: 50px;
    flex-direction: column;
  }
  .c-footer__video > iframe {
    width: 100%;
    height: 157px;
  }
  .c-footer__box-2 {
    margin-left: 0px;
    margin-top: 40px;
  }
  .c-footer_copyright {
    flex-direction: column;
    height: auto;
    padding: 20px;
    align-items: flex-start;
  }
  .c-footer_copyright > p {
    margin-bottom: 12px;
  }
}
.c-showreel2 {
  height: 600px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.c-showreel2__logo {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 1000;
}
.c-showreel2__nav {
  position: absolute;
  bottom: 40px;
  right: 260px;
  z-index: 1000;
  display: flex;
}
.c-showreel2__nav a {
  display: block;
  width: 64px;
  height: 64px;
  background-color: white;
  background-image: url('../Images/corsi/icn-right.png');
  background-position: center;
  background-repeat: no-repeat;
}
.c-showreel2__nav a:first-child {
  border-right: solid 1px #e0e0e0;
  background-image: url('../Images/corsi/icn-left.png');
}
.c-showreel2item {
  height: 100%;
  width: 100%;
  position: relative;
}
.c-showreel2item__image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-showreel2item__texts {
  position: absolute;
  bottom: 114px;
  right: 260px;
  left: 40px;
  text-align: right;
}
.c-showreel2item__texts span,
.c-showreel2item__texts strong {
  display: inline-block;
  background-color: white;
  /*line-height:64px;
		padding:0px 20px;*/
  line-height: 40px;
  padding: 12px 20px;
  font-size: 26px;
  font-weight: normal;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
.c-showreel2item__texts strong {
  background-color: #00b3bf;
  color: white;
  font-weight: 700;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .c-showreel2__nav,
  .c-showreel2item__texts {
    right: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px) {
  .c-showreel2__nav,
  .c-showreel2item__texts {
    right: 30px;
  }
}
@media (max-width: 759px) {
  .c-showreel2 {
    height: 350px;
  }
  .c-showreel2__logo {
    display: none;
  }
  .c-showreel2__nav,
  .c-showreel2item__texts {
    right: 20px;
  }
  .c-showreel2item__texts {
    bottom: 80px;
  }
  .c-showreel2item__texts span,
  .c-showreel2item__texts strong {
    line-height: 40px;
    padding: 0px 10px;
    font-size: 14px;
  }
  .c-showreel2__nav {
    bottom: 20px;
  }
  .c-showreel2__nav a {
    width: 40px;
    height: 40px;
    background-size: 40% auto;
  }
}
/*topbar*/

.c-pagetopbar {
  display: flex;
  align-items: center;
  height: 80px;
  border-bottom: solid 1px #e0e0e0;
  padding: 0px 40px;
  width: 100%;
  justify-content: space-between;
}
.c-pagetopbar__bc {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.c-pagetopbar__bc > li > a {
  font-weight: 400;
  font-size: 13px;
}
.c-pagetopbar__bc > li > a:before {
  content: '»';
  margin-left: 10px;
  margin-right: 10px;
}
.c-pagetopbar__bc > li:nth-child(1) a:before,
.c-pagetopbar__bc > li:nth-child(2) a:before {
  display: none;
}
.c-pagetopbar__bc > li:nth-child(1) span,
.c-pagetopbar__bc > li:nth-child(1) a {
  color: #0d539b;
  font-size: 22px;
  font-weight: 300;
}
.c-pagetopbar__bc > li:nth-child(1) span:after,
.c-pagetopbar__bc > li:nth-child(1) a:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 12px;
  background-image: url('../Images/corsi/icn-caret-right-blue.png');
  background-repeat: no-repeat;
  background-position: center;
}
.c-pagetopbar__social {
  width: 220px;
  flex-shrink: 0;
  flex-grow: 0;
  border-left: solid 1px #e0e0e0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}
.c-pagetopbar__social .tweet {
  padding: 5px 0px;
}
.c-pagetopbar__social .tweet iframe {
  display: block;
}
.c-pagetopbar__actions {
  width: 100px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  padding-right: 30px;
}
.c-pagetopbar__actions .share {
  width: 23px;
  height: 24px;
  display: block;
  overflow: hidden;
  position: relative;
}
.c-pagetopbar__actions .share:before {
  content: "";
  display: block;
  width: 23px;
  height: 24px;
  position: absolute;
  background-image: url('../Images/corsi/icn-share.png');
}
.c-pagetopbar__actions .share > * {
  opacity: 0 !important;
  position: absolute;
  z-index: 10;
}
.c-pagetopbar__actions .share .at-share-btn {
  width: 23px;
  height: 24px;
  margin: 0px;
}
.c-pagetopbar__actions .print {
  display: block;
  width: 29px;
  height: 29px;
  background-image: url('../Images/corsi/icn-print.png');
  object-fit: contain;
}
@media (min-width: 1440px) and (max-width: 1599px), (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px) {
  .c-pagetopbar__social {
    width: 180px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
  }
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 760px) and (max-width: 1023px) {
  .c-pagetopbar {
    padding: 0px 30px;
  }
  .c-pagetopbar__social {
    width: 150px;
    padding-left: 30px;
  }
  .c-pagetopbar__bc > li {
    display: none;
  }
  .c-pagetopbar__bc > li:nth-child(1) {
    display: block;
  }
  .c-pagetopbar__bc > li:nth-child(1) a:after,
  .c-pagetopbar__bc > li:nth-child(1) span:after {
    display: none;
  }
}
@media (max-width: 759px) {
  .c-pagetopbar {
    padding: 0px 20px;
  }
  .c-pagetopbar__actions {
    padding-right: 0px;
    width: auto;
  }
  .c-pagetopbar__actions .print {
    display: none;
  }
  .c-pagetopbar__bc > li {
    display: none;
  }
  .c-pagetopbar__bc > li:nth-child(1) {
    display: block;
  }
  .c-pagetopbar__bc > li:nth-child(1) a:after,
  .c-pagetopbar__bc > li:nth-child(1) span:after {
    display: none;
  }
  .c-pagetopbar__social {
    display: none;
  }
}
/*corsi page layout*/

.c-corsipage {
  display: flex;
  padding: 40px 40px;
}
.c-corsipage + .c-corsipage {
  padding-top: 0px;
}
.c-corsipage__main {
  width: calc(100% - 220px - 100px - 420px - 100px);
  order: 2;
  flex-grow: 1;
}
.c-corsipage__aux {
  order: 3;
  width: 220px;
  flex-shrink: 0;
  flex-grow: 0;
  padding-left: 100px;
}
.c-corsipage__aux ul {
  display: block;
}
.c-corsipage__aux ul a {
  width: 100%;
  height: 100px;
  background-color: white;
  display: block;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 12px;
  line-height: 0.92;
  position: relative;
}
.c-corsipage__aux ul a.highlight {
  background-color: #0d539b;
  color: white;
  font-weight: 600;
}
.c-corsipage__aux ul a img {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
}
.c-corsipage__aux ul a span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 10px;
}
.c-corsipage__aux ul a:hover img {
  transform: translate(-50%, -50%) scale(1);
}
.c-corsipage__menu {
  order: 1;
  width: 420px;
  flex-shrink: 0;
  flex-grow: 0;
  padding-right: 100px;
  font-size: 14px;
}
.c-corsipage__menu > ul {
  border-top: 1px solid black;
  padding-top: 4px;
  margin-bottom: 10px;
}
.c-corsipage__menu > ul a {
  line-height: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: 300;
  display: block;
  padding-left: 20px;
  position: relative;
  color: inherit;
}
.c-corsipage__menu > ul a:hover {
  text-decoration: underline;
  color: inherit;
}
.c-corsipage__menu > ul > li > a:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  width: 7px;
  height: 7px;
  left: 0px;
  background-color: black;
}
.c-corsipage__menu > ul > li > ul a:before {
  content: '» ';
}
.c-corsipage__menu > ul.blu {
  border-top: 1px solid #0d539b;
  color: #0d539b;
}
.c-corsipage__menu > ul.blu > li > a:before {
  background-color: #0d539b;
}
.c-corsipage__menu > ul.ciano {
  border-top: 1px solid #009aa6;
  color: #009aa6;
}
.c-corsipage__menu > ul.ciano > li > a:before {
  background-color: #009aa6;
}
@media (min-width: 1280px) and (max-width: 1439px), (min-width: 1024px) and (max-width: 1279px), (min-width: 1440px) and (max-width: 1599px) {
  .c-corsipage__aux {
    width: 180px;
    padding-left: 40px;
  }
  .c-corsipage__menu {
    width: 320px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-corsipage {
    display: flex;
    padding: 50px 20px;
  }
  .c-corsipage__menu {
    width: 240px;
    padding-right: 20px;
  }
  .c-corsipage__aux {
    width: 140px;
    padding-left: 20px;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-corsipage {
    flex-wrap: wrap;
  }
  .c-corsipage:before {
    content: '';
    width: 100%;
    order: 3;
  }
  .c-corsipage__main {
    order: 1;
    width: calc(100% - 220px);
  }
  .c-corsipage__aux {
    order: 2;
  }
  .c-corsipage__menu {
    order: 4;
    width: 100%;
    margin-top: 100px;
    padding-right: 220px;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-corsipage {
    padding: 60px 30px;
  }
  .c-corsipage__aux {
    width: 150px;
    padding-left: 30px;
  }
  .c-corsipage__menu {
    margin-top: 60px;
    padding-right: 150px;
  }
}
@media (max-width: 759px) {
  .c-corsipage {
    padding: 40px 20px;
    display: block;
  }
  .c-corsipage__main {
    width: 100%;
  }
  .c-corsipage__aux {
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
  .c-corsipage__aux:after {
    content: '';
    display: block;
    height: 1px;
    clear: both;
  }
  .c-corsipage__aux ul li {
    width: 50%;
    float: left;
  }
  .c-corsipage__menu {
    width: 100%;
    display: block;
    margin-top: 20px;
    padding-right: 0px;
  }
}
/*page corsi main*/

.c-corsipage__title {
  font-size: 30px;
  font-weight: normal;
  line-height: normal;
  color: #0d539b;
}
.c-corsipage__subtitle {
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: black !important;
  margin-top: 20px;
}
.c-corsipage__scadenze {
  margin-top: 40px;
  background-color: #00b3bf;
  display: flex;
  padding: 10px 20px;
  align-items: center;
}
.c-corsipage__scadenze span {
  display: inline-block;
  margin-right: 20px;
  color: white;
  font-family: Georgia, 'Times New Roman', Sans-Serif;
  font-size: 20px;
  font-weight: normal;
}
.c-corsipage__scadenze-items a {
  display: inline-block;
  margin: 5px;
  padding: 7px 32px 7px 45px;
  background-color: white;
  color: black;
  line-height: 26px;
  font-size: 14px;
  font-weight: normal;
  background-image: url('../Images/corsi/icn-link.png');
  background-position: 20px center;
  background-repeat: no-repeat;
  white-space: nowrap;
}
.c-corsipage__direttore {
  margin-top: 40px;
  font-family: Georgia, 'Times New Roman', Sans-Serif;
  font-size: 30px;
  color: #0d539b;
  line-height: normal;
  font-weight: normal;
}
.c-corsipage__direttore strong {
  font-weight: normal;
  text-decoration: underline;
}
.c-corsipage__text {
  margin-top: 40px;
  line-height: 22px;
  /*end: table*/

  /*end: teaserHomeMiniCategoria*/

  /*end: paragrafo*/

}
.c-corsipage__text a {
  text-decoration: underline;
}
.c-corsipage__text p {
  margin: 0px 0px 28px 0px;
}
.c-corsipage__text ul {
  margin: 20px 0px;
  padding-left: 25px;
  list-style-type: unset;
}
.c-corsipage__text ul li {
  padding-left: 10px;
}
.c-corsipage__text img {
  max-width: 100%;
  height: auto;
}
.c-corsipage__text table {
  border: 0;
  width: 100%;
  margin: 20px 0;
}
.c-corsipage__text table *,
.c-corsipage__text table *:after,
.c-corsipage__text table *:before {
  box-sizing: content-box;
}
.c-corsipage__text table td {
  border: 0;
  border-bottom: 1px solid #cccccc;
  font-size: 12px;
  padding: 10px 3px;
}
.c-corsipage__text table tr:first-child {
  background-color: #0d549b;
}
.c-corsipage__text table tr:first-child td {
  color: white;
  font-family: Georgia, 'Times New Roman', sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  text-align: center;
}
.c-corsipage__text .teaserHomeMiniCategoria {
  margin-top: 40px;
  margin-bottom: 0px;
  padding: 40px 25px 25px 40px;
}
.c-corsipage__text .teaserHomeMiniCategoria *,
.c-corsipage__text .teaserHomeMiniCategoria *:after,
.c-corsipage__text .teaserHomeMiniCategoria *:before {
  box-sizing: content-box;
}
.c-corsipage__text .teaserHomeMiniCategoria:after {
  content: '';
  display: block;
  clear: both;
}
.c-corsipage__text .teaserHomeMiniCategoria .itemCategoria {
  width: calc(33.3333% - 15px);
  margin: 0px 15px 15px 0px;
  height: auto;
}
.c-corsipage__text .teaserHomeMiniCategoria .itemCategoria img {
  width: 100%;
  height: 250px !important;
  object-fit: cover;
}
.c-corsipage__text .teaserHomeMiniCategoria .textCategoria {
  line-height: 20px;
  min-height: 40px;
}
@media (min-width: 1280px) and (max-width: 1439px), (min-width: 1024px) and (max-width: 1279px) {
  .c-corsipage__text .teaserHomeMiniCategoria .itemCategoria {
    width: calc(50% - 15px);
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-corsipage__text .teaserHomeMiniCategoria {
    padding: 30px 15px 15px 30px;
  }
  .c-corsipage__text .teaserHomeMiniCategoria .itemCategoria {
    width: calc(50% - 15px);
  }
  .c-corsipage__text .teaserHomeMiniCategoria .itemCategoria img {
    height: 150px !important;
  }
}
@media (max-width: 759px) {
  .c-corsipage__text .teaserHomeMiniCategoria {
    padding: 20px 5px 5px 20px;
  }
  .c-corsipage__text .teaserHomeMiniCategoria .itemCategoria {
    width: calc(100% - 15px);
  }
  .c-corsipage__text .teaserHomeMiniCategoria .itemCategoria img {
    height: 150px !important;
  }
}
.c-corsipage__text .paragrafo {
  margin-top: 40px;
  margin-bottom: 0px;
  min-height: 150px;
  clear: both;
}
.c-corsipage__text .paragrafo *,
.c-corsipage__text .paragrafo *:after,
.c-corsipage__text .paragrafo *:before {
  box-sizing: content-box;
}
.c-corsipage__text .paragrafo .paragrafoThumb {
  height: 150px;
  overflow: hidden;
  padding-right: 20px;
  margin-right: 20px;
  float: left;
  border-right: 1px solid #cccccc;
}
.c-corsipage__text .paragrafo .paragrafoThumb img {
  width: 150px;
  height: 150px;
  overflow: hidden;
}
.c-corsipage__text .paragrafo .paragrafoText ul {
  list-style-type: none;
}
.c-corsipage__text .paragrafo .paragrafoText a {
  text-decoration: underline;
}
.c-corsipage__text .paragrafo .paragrafoTitle {
  display: block;
}
.c-corsipage__text .paragrafo figure {
  margin: 0;
}
@media (max-width: 759px) {
  .c-corsipage__text .paragrafo .paragrafoThumb {
    height: 150px;
    width: 150px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    float: none;
    border-right: 0;
    border-bottom: 1px solid #cccccc;
    padding-right: 0px;
    margin-right: 0px;
  }
  .c-corsipage__text .paragrafo .paragrafoText ul {
    margin-left: 0px;
    padding-left: 0px;
  }
  .c-corsipage__text .paragrafo .paragrafoText ul li {
    margin-left: 0px;
    padding-left: 0px;
  }
}
.c-corsipage__text .HomeMiniTeaserContainer {
  margin-top: 40px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-corsipage__text .HomeMiniTeaserContainer *,
.c-corsipage__text .HomeMiniTeaserContainer *:after,
.c-corsipage__text .HomeMiniTeaserContainer *:before {
  box-sizing: content-box;
}
.c-corsipage__text .HomeMiniTeaserContainer .teaserHomeMiniMenu {
  width: calc(50% - 10px);
  margin-right: 0px;
}
.c-corsipage__text .HomeMiniTeaserContainer .teaserHomeMiniMenu ul {
  list-style-type: none;
  margin-left: 0px;
  padding-left: 0px;
}
.c-corsipage__text .HomeMiniTeaserContainer .clearfloat {
  display: none;
}
@media (max-width: 759px) {
  .c-corsipage__text .HomeMiniTeaserContainer .teaserHomeMiniMenu {
    width: 100%;
  }
}
.c-youtube-video {
  width: 100%;
  padding-bottom: 56%;
  position: relative;
}
.c-youtube-video > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}
.c-corsikeyfacts {
  display: block;
  width: 460px;
  height: 435px;
  background-color: #f8c75b;
  color: #009aa6;
  float: right;
  margin-left: 80px;
  margin-bottom: 30px;
  position: relative;
}
.c-corsikeyfacts__title {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: 110px;
  top: 47px;
  line-height: 1.11;
  letter-spacing: 4.5px;
}
.c-corsikeyfacts__title:after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #009aa6;
  position: absolute;
  left: 0px;
  top: 35px;
}
.c-corsikeyfacts__prev,
.c-corsikeyfacts__next {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1000;
  top: 220px;
  background-image: url('../Images/corsi/icn-right.png');
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.c-corsikeyfacts__prev {
  left: 30px;
  transform: scale(-1, 1);
}
.c-corsikeyfacts__next {
  right: 30px;
}
.c-corsikeyfacts__item {
  padding-left: 110px;
  padding-right: 80px;
  padding-top: 110px;
  width: 100%;
  text-decoration: none !important;
  color: inherit;
}
.c-corsikeyfacts__item:hover {
  color: inherit !important;
}
.c-corsikeyfacts__row1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 11px;
}
.c-corsikeyfacts__row2 {
  line-height: 24px;
  padding: 10px 0px;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.c-corsikeyfacts__row3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
}
@media (min-width: 760px) and (max-width: 1023px), (min-width: 1024px) and (max-width: 1279px) {
  .c-corsikeyfacts {
    width: 100%;
    float: none;
    margin-left: 0px;
  }
}
@media (max-width: 759px) {
  .c-corsipage__title {
    font-size: 26px;
  }
  .c-corsipage__scadenze {
    margin-top: 20px;
    height: auto;
    display: block;
    padding: 20px;
  }
  .c-corsipage__scadenze span {
    display: block;
    margin-right: 0px;
  }
  .c-corsipage__scadenze a {
    display: block;
    margin-right: 0px;
    margin-top: 10px;
  }
  .c-corsipage__direttore {
    margin-top: 20px;
    font-size: 20px;
  }
  .c-corsipage__text {
    margin-top: 20px;
  }
  .c-corsipage__text p {
    margin: 0px 0px 28px 0px;
  }
  .c-corsipage__text ul {
    padding-left: 25px;
    list-style-type: unset;
  }
  .c-corsipage__text ul li {
    padding-left: 10px;
  }
  .c-corsikeyfacts {
    width: 100%;
    height: 300px;
    float: none;
    margin-left: 0px;
  }
  .c-corsikeyfacts__title {
    left: 80px;
    top: 20px;
    line-height: 40px;
  }
  .c-corsikeyfacts__title:after {
    top: 40px;
  }
  .c-corsikeyfacts__prev,
  .c-corsikeyfacts__next {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  .c-corsikeyfacts__prev {
    left: 20px;
  }
  .c-corsikeyfacts__next {
    right: 20px;
  }
  .c-corsikeyfacts__item {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 80px;
    width: 100%;
  }
  .c-corsikeyfacts__row1 {
    font-size: 40px;
    margin-bottom: 0px;
  }
  .c-corsikeyfacts__row2 {
    margin-bottom: 0px;
  }
  .c-corsikeyfacts__row3 {
    font-size: 15px;
  }
}
.c-corsikeyfacts-small {
  display: block;
  width: 460px;
  height: 180px;
  background-color: #f8c75b;
  color: #009aa6;
  float: right;
  margin-left: 80px;
  margin-bottom: 30px;
  position: relative;
}
.c-corsikeyfacts-small__header {
  background-color: rgba(0, 0, 0, 0.1);
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-corsikeyfacts-small__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  padding-left: 20px;
  color: white !important;
}
.c-corsikeyfacts-small__nav {
  display: flex;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: absolute;
  top: 0px;
  right: 0px;
}
.c-corsikeyfacts-small__prev,
.c-corsikeyfacts-small__next {
  display: block;
  width: 40px;
  height: 50px;
  background-image: url('../Images/corsi/icn-arrow-right-white.png');
  background-position: center;
  background-repeat: no-repeat;
}
.c-corsikeyfacts-small__prev {
  transform: scale(-1, 1);
}
.c-corsikeyfacts-small__item {
  padding: 70px 20px 0px;
  width: 100%;
  text-decoration: none !important;
  color: inherit;
}
.c-corsikeyfacts-small__item:hover {
  color: inherit !important;
}
.c-corsikeyfacts-small__row1 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 3px;
  margin-bottom: 11px;
}
.c-corsikeyfacts-small__row2 {
  font-size: 18px;
  line-height: 1.33;
  font-weight: normal;
}
@media (max-width: 759px), (min-width: 760px) and (max-width: 1023px), (min-width: 1024px) and (max-width: 1279px) {
  .c-corsikeyfacts-small {
    width: 100%;
    float: none;
    margin-left: 0px;
  }
}
/*link list*/

.c-linklist-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
}
.c-linklist {
  width: calc(50% - 25px);
}
.c-linklist__title {
  color: #0d539b;
  font-family: Georgia, 'Times New Roman', Sans-Serif;
  font-size: 30px;
  margin-bottom: 40px;
}
.c-linklist__list {
  list-style-type: none !important;
  padding: 0px !important;
  border-top: solid 1px #e4e4e4;
}
.c-linklist__list > li {
  border-bottom: solid 1px #e4e4e4;
}
.c-linklist__list > li > a {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 7px 0px 7px 30px;
  font-weight: 600;
  color: #0d539b;
  background-image: url('../Images/corsi/icn-focus.png');
  background-repeat: no-repeat;
  background-position: 2px center;
}
.c-linklist__list > li > a.attachment {
  background-image: url('../Images/corsi/icn-all.png');
  background-position: 4px center;
}
@media (max-width: 759px), (min-width: 760px) and (max-width: 1023px), (min-width: 1024px) and (max-width: 1279px) {
  .c-linklist {
    width: 100%;
    margin-top: 40px;
  }
  .c-linklist:nth-child(1) {
    margin-top: 0px;
  }
}
/*accordion*/

.c-accordioncontext.isAccordionExpanded .c-accordioncontext__toggle > span:nth-child(1) {
  display: none;
}
.c-accordioncontext.isAccordionExpanded .c-accordioncontext__toggle > span:nth-child(2) {
  display: inline;
}
.c-accordioncontext__toggle {
  display: block;
  text-align: right;
  color: #0c5299;
  margin-bottom: 10px;
}
.c-accordioncontext__toggle > span:nth-child(2) {
  display: none;
}
.c-accordion.isOpen .c-accordion__title:after {
  transform: rotate(0deg);
}
.c-accordion + .c-accordion {
  margin-top: 10px;
}
.c-accordion__title {
  background-color: rgba(233, 233, 233, 0.5);
  color: #0d539b;
  font-size: 18px;
  font-weight: bold;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 5px 36px 5px 10px;
  cursor: pointer;
  position: relative;
}
.c-accordion__title:before,
.c-accordion__title:after {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #0d539b;
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -1px;
  margin-right: -8px;
  transition: all 0.2s;
}
.c-accordion__title:after {
  transform: rotate(-90deg);
}
.c-accordion__text {
  display: none;
  padding: 20px 10px 40px;
}
/*corsi teasers*/

.c-corsiteasers {
  margin: 90px -10px 0px;
  display: flex;
  flex-wrap: wrap;
}
.c-corsiteasers:first-child {
  margin-top: 0px;
}
.c-corsiteaserbox {
  padding: 10px;
  width: 33.3333%;
  flex-grow: 0;
  flex-shrink: 0;
}
.c-corsiteaserbox > * {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}
.c-corsiteaserfull {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 450px;
}
.c-corsiteaserfull img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.c-corsiteaserfull:before {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(to bottom, transparent, black);
}
.c-corsiteaserfull span {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0px;
  padding: 26px;
  font-family: Georgia, 'Times New Roman', Sans-Serif;
  font-size: 20px;
  color: white;
  text-align: center;
}
.c-corsiteaser {
  width: 100%;
  background-color: white;
}
.c-corsiteaser__media {
  height: 220px;
  width: 100%;
}
.c-corsiteaser__media img {
  object-fit: cover;
  object-position: center;
}
.c-corsiteaser__media img,
.c-corsiteaser__media iframe {
  width: 100%;
  height: 100%;
}
.c-corsiteaser__texts {
  padding: 46px 30px 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88em;
}
.c-corsiteaser__texts h3 {
  font-family: Georgia, 'Times New Roman', Sans-Serif;
  font-size: 20px;
  color: #0d539b;
  margin-bottom: 11px;
  line-height: 1.3;
}
.c-corsiteaser__texts p {
  margin: 0px;
  max-height: 7.52em;
  overflow: hidden;
  position: relative;
}
.c-corsiteaser__texts p:after {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 5.64em;
  right: 0px;
  height: 1.88em;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}
.c-corsiteaser__texts a {
  text-decoration: underline;
}
.c-corsiteasercarousel__prev,
.c-corsiteasercarousel__next {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 50%;
  z-index: 1000;
  top: 200px;
  background-image: url('../Images/corsi/icn-caret-right-blue.png');
  background-position: center;
  background-repeat: no-repeat;
}
.c-corsiteasercarousel__prev {
  left: 20px;
  transform: scale(-1, 1);
}
.c-corsiteasercarousel__next {
  right: 20px;
}
@media (min-width: 760px) and (max-width: 1023px) {
  /*.c-corsiteasers__slider
  	{
  		width:100%;
  		overflow:auto;
  		position:relative;
  	}
  	.c-corsiteasers
  	{
  		min-width:1200px;
  		padding-top:10px;
  		padding-bottom:10px;
  		flex-wrap: nowrap;
  	}*/
  
  .c-corsiteaserbox {
    width: 50%;
  }
  .c-corsiteaserfull {
    min-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 1280px) and (max-width: 1439px) {
  /*.c-corsipage--forteasers
  	{
  		display:block;
  		background-color:#fff;
  		position:relative;
  		
  		.c-corsipage__main
  		{
  		    width:100%;
  		}
  	}*/
  
  .c-corsiteaserbox {
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-corsiteaserfull {
    min-height: 400px;
  }
}
@media (max-width: 759px) {
  .c-corsiteasers {
    margin: 0px;
    display: block;
  }
  .c-corsiteaserbox {
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .c-corsiteaserbox > * {
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
  }
  .c-corsiteaserfull {
    height: 300px;
  }
}
/*corsi tabs*/

.c-corsitabs {
  position: relative;
}
.c-corsitabs__images {
  height: 600px;
}
.c-corsitabs__images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.c-corsitabs__main {
  background-color: white;
  position: relative;
  z-index: 1000;
  margin: 0px auto -36px;
  width: 1380px;
  transform: translateY(-136px);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
.c-corsitabs__tabs {
  height: 60px;
  background-color: #0d539b;
  display: flex;
}
.c-corsitabs__tabs a {
  color: white;
  text-decoration: underline;
  display: block;
  line-height: 60px;
  padding: 0px 40px;
  font-size: 16px;
  font-weight: normal;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}
.c-corsitabs__tabs a.isActive {
  color: #0d539b;
  background-color: white;
}
.c-corsitabs__tabs a.isActive:hover {
  color: #0d539b !important;
}
.c-corsitabs__tabs a:hover {
  color: white !important;
}
.c-corsitabs__page {
  display: none;
  padding: 34px 40px;
}
.c-corsitabs__page.isActive {
  display: flex;
}
.c-corsitabs__pagetexts {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 60px;
}
.c-corsitabs__pagetexts h3 {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.31;
  color: #0d539b;
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', Sans-Serif;
}
.c-corsitabs__pagetexts p {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88;
}
.c-corsitabs__pagelinks {
  border-top: solid 1px #e0e0e0;
  display: block;
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}
.c-corsitabs__pagelinks a {
  display: block;
  border-bottom: solid 1px #e0e0e0;
  padding: 10px 0px 10px 30px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
  background-image: url('../Images/corsi/icn-link.png');
  background-position: left center;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .c-corsitabs__images {
    height: 500px;
  }
  .c-corsitabs__main {
    width: 1280px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .c-corsitabs__images {
    height: 400px;
  }
  .c-corsitabs__main {
    width: 1024px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .c-corsitabs__images {
    height: 400px;
  }
  .c-corsitabs__main {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .c-corsitabs__images {
    height: 400px;
  }
  .c-corsitabs__main {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
  .c-corsitabs__tabs a {
    padding: 0px 20px;
  }
}
@media (max-width: 759px) {
  .c-corsitabs__images {
    height: 300px;
  }
  .c-corsitabs__main {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  .c-corsitabs__tabs {
    width: 100%;
    overflow: auto;
    white-space: nowrap;
  }
  .c-corsitabs__tabs a {
    padding: 0px 20px;
  }
  .c-corsitabs__page {
    padding: 20px;
  }
  .c-corsitabs__page.isActive {
    display: block;
  }
  .c-corsitabs__pagetexts {
    width: 100%;
    padding-right: 0px;
  }
  .c-corsitabs__pagelinks {
    margin-top: 20px;
    width: 100%;
  }
}
.c-ultimo-aggiornamento {
  margin-top: 40px;
  text-align: right;
  font-size: 10px;
}
#topHeader #showreel {
  padding-top: 0px;
  top: 0px;
}
#topHeader #showreel .item {
  background-position: center;
}
#topHeader #showreel .overlay {
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 35%, transparent 80%, rgba(0, 0, 0, 0.9) 100%);
  /* FF3.6+ */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 35%, transparent 80%, rgba(0, 0, 0, 0.9) 100%);
  /* Chrome10+,Safari5.1+ */
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 35%, transparent 80%, rgba(0, 0, 0, 0.9) 100%);
  /* IE 9 */
  background-image: linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 20%, transparent 35%, transparent 80%, rgba(0, 0, 0, 0.9) 100%);
  /* W3C */

}
#topHeader #showreel .overlay .logo_home {
  top: 73px;
}
.c-wallcarousel {
  margin-top: 100px;
  background-color: #0d539b;
  width: 100%;
  background-image: url(../Images/wall/bg-sarfatti.png);
  background-size: cover;
  background-position: center;
}
.c-wallcarousel + .c-wallcarousel {
  margin-top: 50px;
}
.c-wallcarousel__header {
  padding: 40px 20px 0px 20px;
  display: flex;
  align-items: center;
  color: white;
}
.c-wallcarousel__title + .c-wallcarousel__description {
  margin-left: 20px;
  padding-left: 20px;
  border-left: solid 1px white;
}
.c-wallcarousel__description {
  font-size: 16px;
  font-weight: 600;
  color: white !important;
}
.c-wallcarousel__main {
  position: relative;
}
.c-wallcarousel__prev,
.c-wallcarousel__next {
  position: absolute;
  top: 176px;
  width: 60px;
  height: 60px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 10;
  border-radius: 50%;
  text-indent: -999px;
  overflow: hidden;
  background-image: url(../Images/wall/arr-right-blue.png);
  background-position: center;
  background-repeat: no-repeat;
}
.c-wallcarousel__prev {
  left: 0px;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.c-wallcarousel__next {
  right: 0px;
  transform: translate(50%, -50%);
}
.c-wallcarousel__wrapper {
  padding: 30px 20px 50px;
  overflow: hidden;
}
.c-wallcarousel__slider {
  display: flex;
}
.c-wallcarousel__slider > article,
.c-wallitem {
  width: 260px;
  flex-shrink: 0;
  background-color: white;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}
.c-wallcarousel__slider > article.isVideo:before,
.c-wallitem.isVideo:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 73px;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  z-index: 2;
  background-image: url(../Images/wall/play-button.png);
  background-size: 32px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.c-wallcarousel__slider > article > a > figure,
.c-wallitem__image {
  width: 100%;
  height: 146px;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0px;
}
.c-wallcarousel__slider > article > a > figure.position-center,
.c-wallitem__image.position-center {
  object-position: center !important;
}
.c-wallcarousel__slider > article > a > figure {
  height: 260px;
}
.c-wallcarousel__slider > article > a > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-wallcarousel__slider > article > a > div,
.c-wallitem__texts {
  padding: 20px 20px 20px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.c-wallcarousel__slider > article > a > div > p,
.c-wallitem__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  margin: 0 0 10px;
}
.c-wallcarousel__slider > article > a > div > p {
  line-height: 20px;
  max-height: 100px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.c-wallitem__abs {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.38;
  flex-grow: 1;
  padding-bottom: 20px;
}
.c-wallitem__link {
  /*position:absolute;
    bottom:30px;
    left:20px;*/
  color: #0d539b;
  font-size: 14px;
  text-decoration: underline;
  line-height: 22px;
}
.c-wallitem__link:before {
  content: '';
  display: inline-block;
  height: 22px;
  width: 23px;
  background-image: url(../Images/wall/arr-right-blue.png);
  background-position: left center;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.3s;
}
.c-wallitem__link:hover:before {
  opacity: 0.5;
}
.c-wallitem--banner {
  display: block;
  position: relative;
}
.c-wallitem--banner .c-wallitem__image {
  height: 100%;
  width: 100%;
}
.c-wallitem--banner .c-wallitem__texts {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  padding-top: 100px;
  color: white;
  background-image: linear-gradient(to bottom, transparent, black);
}
.c-wallitem--banner .c-wallitem__abs {
  display: none;
}
.c-wallitem--banner .c-wallitem__link {
  display: none;
}
.c-wallcarousel--instagram {
  background-color: #f14a06;
  background-image: url(../Images/wall/Instagram-bg.jpg);
}
.c-wallcarousel--instagram .c-wallitem__link {
  color: #f14a06;
}
.c-wallcarousel--instagram .c-wallitem__link:before {
  background-image: url(../Images/wall/inc-instagram.png);
}
.c-wallcarousel--instagram .c-wallitem__title {
  color: black;
}
.c-wallcarousel--instagram .c-wallcarousel__prev,
.c-wallcarousel--instagram .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right--orange.png);
}
.c-wallcarousel--facebook {
  background-color: #3b77b1;
  background-image: url(../Images/wall/bg-fb.png);
}
.c-wallcarousel--facebook .c-wallitem__link {
  color: #4267b2;
}
.c-wallcarousel--facebook .c-wallitem__link:before {
  background-image: url(../Images/wall/icn-fb.png);
}
.c-wallcarousel--facebook .c-wallitem__image {
  object-position: center top;
}
.c-wallcarousel--youtube {
  background-color: red;
  background-image: url(../Images/wall/bg-yt.png);
}
.c-wallcarousel--youtube .c-wallitem__link {
  color: red;
}
.c-wallcarousel--youtube .c-wallitem__link:before {
  width: 32px;
  background-image: url(../Images/wall/icn-yt.png);
}
.c-wallcarousel--youtube .c-wallcarousel__prev,
.c-wallcarousel--youtube .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right-red.png);
}
.c-wallcarousel--viasarfatti {
  background-color: #0d539b;
  background-image: url(../Images/wall/bg-sarfatti.png);
}
.c-wallcarousel--viasarfatti .c-wallitem__link {
  color: #0d539b;
}
.c-wallcarousel--knowledge {
  background-color: #ef7c00;
  background-image: url(../Images/wall/bg-knowledge.png);
}
.c-wallcarousel--knowledge .c-wallitem__link {
  color: #ef7c00;
}
.c-wallcarousel--knowledge .c-wallitem__link:before {
  background-image: url(../Images/wall/arr-right--orange.png);
}
.c-wallcarousel--knowledge .c-wallcarousel__prev,
.c-wallcarousel--knowledge .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right--orange.png);
}
.c-wallcarousel--bocconivr {
  background-color: #3b77b1;
  background-image: url(../Images/wall/campusvr-bg.jpg);
}
.c-wallcarousel--blue {
  background-color: #0d539b;
}
.c-wallcarousel--blue .c-wallitem__link {
  color: #0d539b;
}
.c-wallcarousel--red {
  background-color: #b71234;
}
.c-wallcarousel--red .c-wallitem__link {
  color: #b71234;
}
.c-wallcarousel--red .c-wallitem__link:before {
  background-image: url(../Images/wall/arr-right--darkred.png);
}
.c-wallcarousel--red .c-wallcarousel__prev,
.c-wallcarousel--red .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right--darkred.png);
}
.c-wallcarousel--green {
  background-color: #009b48;
}
.c-wallcarousel--green .c-wallitem__link {
  color: #009b48;
}
.c-wallcarousel--green .c-wallitem__link:before {
  background-image: url(../Images/wall/arr-right--green.png);
}
.c-wallcarousel--green .c-wallcarousel__prev,
.c-wallcarousel--green .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right--green.png);
}
.c-wallcarousel--cyan {
  background-color: #009aa6;
}
.c-wallcarousel--cyan .c-wallitem__link {
  color: #009aa6;
}
.c-wallcarousel--cyan .c-wallitem__link:before {
  background-image: url(../Images/wall/arr-right--cyan.png);
}
.c-wallcarousel--cyan .c-wallcarousel__prev,
.c-wallcarousel--cyan .c-wallcarousel__next {
  background-image: url(../Images/wall/arr-right--cyan.png);
}
.c-wallcarousel__headerseparator {
  flex-grow: 1;
}
.c-wallcarousel__campusvrapp {
  background-color: white;
  display: flex;
  align-items: center;
  height: 34px;
  border-radius: 17px;
  color: #0c5299;
  font-size: 14px;
  font-weight: bold;
  padding-left: 10px;
}
.c-wallcarousel__campusvrapp > span {
  padding: 0px 20px 0px 10px;
}
.c-wallcarousel__campusvrapp > a {
  border-left: solid 2px #efefef;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
}
@media (max-width: 759px) {
  .c-wallcarousel {
    margin-top: 50px;
  }
  .c-wallcarousel + .c-wallcarousel {
    margin-top: 20px;
  }
  .c-wallcarousel__header {
    padding: 20px 20px 0px 20px;
    display: block;
  }
  .c-wallcarousel__description {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0px !important;
    padding-left: 0px !important;
    border-left: 0px !important;
  }
  .c-wallcarousel__title + .c-wallcarousel__description {
    padding-top: 20px;
  }
  .c-wallcarousel__prev,
  .c-wallcarousel__next {
    width: 40px;
    height: 40px;
    background-size: 40% auto;
  }
  .c-wallcarousel__prev {
    left: 10px;
  }
  .c-wallcarousel__next {
    right: 10px;
  }
  .c-wallcarousel__slider > article,
  .c-wallitem {
    width: calc(100vw - 80px);
  }
  .c-wallcarousel__campusvrapp {
    margin-top: 30px;
    align-self: flex-start;
    width: 240px;
  }
}
.c-sliderMenu {
  height: 718px;
}
