@charset "UTF-8";
:root {
  --sr-white: #F6F5F2;
  --sr-grey: #0c232f33;
  --sr-orange: #F49612;
  --sr-blue: #5a75b8;
  --sr-green: #11AA66;
  --sr-violet: #7D3478;
  --sr-darkblue: #18233e;
  --sr-olive: #9D968C;
  --sr-lightestgray: #1f30401a;
  --sr-lightgray: #f4f5f5;
  --sr-blueblack: #d0d5dd;
  --sr-gray: #f3efef;
  --spacer: 0.25rem;
  --truncate-news-lh: 32px;
  --gui-grey: #D9D9D9;
}

/* general  */
* {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden !important;
}

body {
  color: var(--sr-darkblue) !important;
  font-family: "Open Sans";
  overflow-x: hidden;
}

.under-modal-body {
  height: 100dvh;
  overflow: hidden;
}

footer {
  /* funziona in combinazione con il flex impostato sul body */
  margin-top: auto;
}

a {
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit !important;
}

a:not([class]) {
  text-decoration-line: underline !important;
  font-weight: 500px !important;
}

a.underline:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.active > .page-link,
.page-link.active {
  background-color: var(--sr-blue);
  border-color: var(--sr-blue);
  color: white !important;
  font-weight: 700;
}

button {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border: none !important;
  background-color: transparent;
  padding: 0;
}

.btn .btn:hover {
  border-radius: 50px !important;
}

select {
  cursor: pointer !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

span {
  cursor: auto;
}

.breadcrumbs {
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
}

.text-secondary-blue {
  color: #5a75b8 !important;
}

.breadcrumbs a {
  flex-grow: 0;
}

.breadcrumbs a:not(:last-child) {
  opacity: 0.6;
}

.breadcrumbs a:last-child {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs a:last-child span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* LONG LINKS DO NOT WRAP CREATING HORIZONTALL OVERFLOW, CLASS DOWN BELOW IS INTENDED TO FIX THIS BEHAVIOR*/
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* GUI STATES CLASSES */
/* dark standard button*/
.dark-button {
  background-color: var(--sr-darkblue);
}

.bg-sr-darkblue {
  background-color: var(--sr-darkblue) !important;
}

.dark-button:hover {
  background-color: #3B4D56;
}

.dark-button:disabled {
  color: #A4A4A4;
  background-color: #E6E6E6;
}

/* light standard button */
.light-button {
  background-color: #fff;
}

.light-button:hover {
  background-color: #CED3D5;
}

.light-button:disabled {
  color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
}

/* dark primary button */
.dark-primary-button {
  background-color: var(--sr-darkblue);
}

.dark-primary-button:hover {
  background: linear-gradient(0deg, #3B4D56 0%, #3B4D56 100%), #0C232F !important;
}

.dark-primary-button:disabled {
  color: #A4A4A4;
  background-color: #E6E6E6;
}

/* search icon */
.secondary-icon::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  border-radius: 50%;
  background-image: url("/img/icons/search-dark-circle.svg");
  background-size: cover;
  transition: all 300ms;
}

.secondary-icon:hover::before {
  opacity: 1;
}

.secondary-icon:disabled::before {
  background-image: url("/img/icons/search-disabled-circle.svg");
  background-color: white;
}

/* circle link && circle link white/light */
.secondary-button-circle-link:disabled::before {
  background-image: url("/img/icons/search-disabled-circle.svg");
  background-color: white;
}

.next-button-gui::before,
.previous-button-gui::before,
.secondary-button-circle-link::before,
.secondary-button-circle-white-link::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--sr-darkblue);
  background-size: cover;
  cursor: pointer;
  transition: all 300ms;
  pointer-events: none;
}

.next-button-gui::before,
.previous-button-gui::before,
.secondary-button-circle-link::before,
.secondary-button-circle-white-link::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--sr-darkblue);
  background-size: cover;
  cursor: pointer;
  transition: all 300ms;
  pointer-events: none;
}

.next-button-gui::before,
.secondary-button-circle-link::before {
  background-image: url("/img/icons/circle-link-light-transparency-fill.svg");
}

.secondary-button-circle-white-link::before {
  background-image: url("/img/icons/circle-link-white-hovered.svg");
}

.previous-button-gui::before {
  background-image: url("/img/icons/circle-link-light-transparency.svg");
}

.next-button-gui:hover::before,
.previous-button-gui:hover::before,
.secondary-button-circle-link:hover::before,
.secondary-button-circle-white-link:hover::before {
  opacity: 1;
}

.next-button-light-gui::before,
.previous-button-light-gui::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: all 300ms;
  pointer-events: none;
}

.next-button-light-gui::before {
  content: url("/img/icons/chevron-right-sm.svg");
}

.previous-button-light-gui::before {
  content: url("/img/icons/chevron-left-sm.svg");
}

.next-button-light-gui:hover::before,
.previous-button-light-gui:hover::before {
  opacity: 1;
}

.gui-social-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.gui-social-dark:hover {
  background-color: rgba(12, 35, 47, 0.1);
}

.gui-cta-ghost .prof-arrow-wrapper {
  width: 24px;
  height: 24px;
}

.gui-cta-ghost:hover {
  color: #859197 !important;
  border-bottom: 1px solid #859197 !important;
}

.gui-cta-ghost .hide-on-hover,
.gui-cta-ghost .show-on-hover {
  transition: all 100ms;
  inset: 0;
}

.gui-cta-ghost:hover .hide-on-hover {
  opacity: 0;
}

/* ellipsis */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.invisible-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}

.searchbar-section label,
.frequent-queries > p {
  opacity: 0.6;
}

.searchbar-section input {
  border: none;
  border-bottom: 2px solid rgba(12, 35, 47, 0.6) !important;
  padding-bottom: 1rem;
  letter-spacing: -0.8px;
  outline: none !important;
}

.searchbar-section input::-moz-placeholder {
  color: var(--sr-darkblue);
  font-size: 40px;
  font-weight: 400;
}

.searchbar-section input::placeholder {
  color: var(--sr-darkblue);
  font-size: 40px;
  font-weight: 400;
}

.searchbar-wrapper img.position-absolute {
  right: 2px;
  bottom: 1rem;
}

.frequent-queries-box {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.frequent-queries-box a {
  padding: 6px 1rem;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(374px, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 2rem;
  align-items: center;
}

.search-degrees,
.search-teachers,
.search-news {
  border-top: 1px solid rgba(12, 35, 47, 0.2) !important;
  padding: 45px 0;
}

.search-results-view .search-degrees {
  border: none !important;
}

.search-degrees .search-result-mobile-link,
.search-teachers .search-result-mobile-link,
.search-news .search-result-mobile-link {
  display: none !important;
}

.search-degrees .result-category,
.search-teachers .result-category,
.search-news .result-category {
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 1px;
}

.home-hero-form input:not([type=checkbox]):focus-visible,
.home-hero-form select:focus-visible,
.home-hero-form-mobile input:not([type=checkbox]):focus-visible,
.home-hero-form-mobile select:focus-visible {
  outline: none !important;
  border-bottom: 1px solid var(--sr-darkblue) !important;
}

#file-input-wrapper,
#file-input-wrapper-m {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}

.cfu-page .file-input-wrapper,
.cfu-page-m .file-input-wrapper-m {
  border-radius: 2px;
  border: 1px dashed #CBD5E1;
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

.cfu-page .home-hero-form input[type=file],
.cfu-page-m .home-hero-form input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  border: none;
}

.cfu-page .home-hero-form input[type=file] + label,
.cfu-page-m .home-hero-form input[type=file] + label {
  width: 100%;
  color: #18233e;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
}

.file-label .fake-button {
  border-radius: 2px;
  border: 1px solid rgba(12, 35, 47, 0.1);
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.selected-file-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 2px;
  border: 1px dashed #CBD5E1;
  color: #18233e;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
}

.file-additional-info {
  color: #18233e;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  opacity: 0.5;
}

.grid {
  display: grid;
}

.radius-2px {
  border-radius: 2px;
}

.margin-left-custom {
  margin-left: 100px;
}

.margin-right-custom {
  margin-right: calc((100% - 1280px) / 2);
}

.modal-like-bg {
  background-color: rgba(12, 35, 47, 0.8);
  z-index: 800;
  position: fixed;
  inset: 0;
  padding-top: 159px;
  overflow-y: scroll;
  display: block !important;
}

.login-modal {
  z-index: 9999;
  overflow: hidden;
  padding: 0 1.5rem;
}

.login-modal-content-wrapper {
  position: relative;
  transform: translateY(-10%);
}

.login-modal-content {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 1.5rem;
}

.login-option {
  border: 1px solid rgba(31, 48, 64, 0.2);
  height: 210px;
  width: 306px;
}

.activee span:first-child {
  text-decoration: none;
  border-bottom: solid 3px var(--sr-darkblue) !important;
}

.activee img,
.rotated {
  transform: rotate(180deg);
  transition: all 200ms;
}

.section-circle-box {
  width: 76px !important;
  height: 76px !important;
}

/*
heights */
.h-165px {
  height: 165px;
}

.top-10 {
  top: 10%;
}

.home-hero-form {
  width: 100% !important;
}

header.fixed-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.top-offset {
  padding-top: 150px;
}

.why-heading {
  width: 65%;
}

.fake-checkbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.fake-checkbox.checked {
  background-color: #000;
  background-image: url(/images/checkbox.svg?52c5bdeecf1fa2c5b45e13226b5a6c0e);
  background-repeat: no-repeat;
  background-position: center center;
}

.fake-checkbox.unchecked {
  background-image: url(/images/checkbox-unchecked.svg?5f1520639884cb6ae5e4aaca32660555);
}

.home-hero-form input:not([type=checkbox]),
.home-hero-form select {
  width: 100%;
  border: none !important;
  border-bottom: solid 1px var(--sr-blueblack) !important;
  line-height: 162.5%;
  padding: 1rem 0;
  border-radius: 0;
}

.home-hero-form input::-moz-placeholder {
  color: var(--sr-darkblue);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.home-hero-form input::placeholder {
  color: var(--sr-darkblue);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* class for the  intl-tel-input library */
.iti {
  width: 100%;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
}

.ratio-1to4 {
  aspect-ratio: 1/4;
}

.section-circles {
  background: #5a75b8;
  border-radius: 50px;
  color: #fff;
}

.section-circles-white {
  background-size: cover;
  background-color: #fff;
  border-radius: 50px;
  color: #18233e;
}

.why-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 1352px;
  padding-bottom: 0;
  padding-top: 3.5rem;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  gap: 2.5rem;
}

.home-why-grid-child p:nth-child(3) {
  width: 85%;
}

.home-degrees {
  padding-top: 6.25rem;
}

.home-degree-slider {
  overflow: hidden;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.home-degree-card {
  min-width: 400px;
  width: 400px;
}

.filter-wrapper {
  flex-wrap: wrap;
}

.filter-item {
  flex-basis: calc((100% - 5rem) / 3);
}

.filter-item .search {
  width: 100%;
}

.filter-item .search img {
  left: 24px;
}

.home-degree-card .card-title {
  min-height: 8rem;
  width: 89%;
}

.home-degree-card .card-hero-img {
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-learning-paths-grid,
.home-football-grid,
.other-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.not-home-padding {
  padding-top: 92px;
}

.learning-paths-list .learning-paths-list-item {
  padding: 1.5rem 1rem;
  position: relative;
}

.home-learning-paths-grid .home-learning-paths-grid-title {
  width: 50%;
}

.home-learning-paths-grid .home-learning-paths-grid-subtitle {
  width: 75%;
}

.home-football-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 2.5rem;
  overflow-x: hidden;
  margin-top: 113px;
}

.home-football-slider img {
  width: 100%;
}

.trustpilot-wrapper {
  padding-top: 112px;
  padding-bottom: 142px;
}

.home-news-events {
  padding-top: 2rem;
}

.home-news-events-grid {
  padding-bottom: 7rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-news-events-grid > div:not(:first-child) {
  border-left: solid 1px var(--sr-lightestgray);
}

.home-news-events-grid > div:nth-child(1) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}

.home-partnerships-grid {
  padding: 0 49px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 10rem;
       column-gap: 10rem;
  margin-top: 7rem;
}

.home-partnerships-wrapper {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.home-partnerships-wrapper .home-partnerships-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.home-partnerships-wrapper .home-partnerships-header > p:first-child {
  flex-basis: 33.3333333333%;
}

.home-partnerships-wrapper .home-partnerships-header > p:nth-child(2) {
  flex-basis: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1.5rem;
  padding: 2rem 0;
  width: 75%;
}

.footer-grid-social-wrapper {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.footer-copyright-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  grid-template-rows: 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.learning-welcome-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
  margin-top: 104px;
}

.learning-degrees-headline {
  padding-top: 210px;
  padding-bottom: 61px;
}

.explore-degrees .degree {
  flex-basis: 100%;
  overflow: hidden;
  padding: 80px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.degree-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.degree-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0);
  /* inizialmente trasparente */
  transition: background-color 1.5s ease-in-out;
  z-index: 2;
}

.degree-box:hover::before {
  background-color: #18233e;
  /* blu con opacità */
}

.degree-box > * {
  position: relative;
  z-index: 3;
}

/* Gestione della visibilità dei contenuti */
.degree-box p,
.degree-box .info-link,
.degree-box .degree-mobile-link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.degree-box:hover p,
.degree-box:hover .info-link,
.degree-box:hover .degree-mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.degree {
  cursor: pointer;
}

.degree p {
  line-height: 44px;
  letter-spacing: -1px;
}

.degree-mobile-link {
  display: none;
}

.degree .info {
  position: absolute;
  inset: 0;
  background-color: var(--sr-darkblue);
  display: flex;
  flex-direction: column;
  padding: 80px;
  opacity: 0;
  transition: all 1s;
}

.degree .info-copy {
  opacity: 0;
  transition: all 1s;
  transition-delay: 300ms;
  z-index: 3;
}

.degree .info-link {
  position: relative;
  display: none;
  transform: translateY(300%);
  transition: translate 1s ease 1s;
}

.degree > *:not(.info) {
  z-index: 3;
}

.degree:hover .info {
  opacity: 1;
}

.degree:hover .info-copy {
  opacity: 1;
}

.degree:hover .info-link {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.learning-heading .learning-heading-title,
.teachers-heading .teachers-heading-title {
  width: 30%;
}

.learning-heading .learning-heading-subtitle,
.teachers-heading .teachers-heading-subtitle {
  width: 50%;
}

.learing-other-courses {
  padding-top: 126px;
  padding-bottom: 126px;
}

.learning-study {
  padding-top: 126px;
  padding-bottom: 87px;
}

.learning-study .d-flex {
  -moz-column-gap: 83px;
       column-gap: 83px;
}

.learning-study .learning-column {
  flex-basis: 100%;
  width: 50%;
}

.learning-study .learning-column.right {
  padding-top: 10%;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}

.image-stack__item-top {
  grid-column: 1/span 6;
  grid-row: 1;
  /* must be on the same row as the other image */
  padding-top: 130%;
  /* this pushes the image down, and keeps it proportional as it resizes */
  z-index: 1;
  /* make this image render on top of the bottom */
}

.image-stack__item-bottom {
  grid-column: 3/-1;
  grid-row: 1;
  /* make this image be on the same row */
}

.enter-arrow {
  transition: all 1s ease-in-out;
  position: relative;
}

.learning-paths-list-item:hover .enter-arrow {
  transform: translateX(-100%);
}

.faq-section {
  padding-top: 129px;
  padding-bottom: 129px;
}

.faq-heading {
  margin-bottom: 5rem;
}

.faq-heading p:first-child {
  margin-bottom: 0.75rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: start;
}

.faq-grid .faq-question-box {
  cursor: pointer;
  margin-bottom: 2rem;
  border-bottom: solid 1px var(--sr-lightestgray);
}

.faq-question {
  margin-bottom: 1rem;
}

.faq-question,
.faq-answer {
  font-family: "Inter";
}

.degrees-header-wrapper {
  background-image: linear-gradient(91deg, rgba(31, 48, 64, 0.76) 11.54%, rgba(31, 48, 64, 0) 92.95%), linear-gradient(0deg, rgba(31, 48, 64, 0.8) 0%, rgba(31, 48, 64, 0.8) 100%), var(--degree-bg);
  background-size: cover;
  background-position: center bottom;
  padding-top: 42px;
  padding-bottom: 48px;
}

.degrees-header-description {
  width: 50%;
}

.degrees-degree-list-wrapper {
  padding-top: 65px;
  padding-bottom: 66px;
}

.degree-list {
  display: grid;
  justify-content: center;
  /*     grid-template-columns: repeat(3, minmax(0, 1fr)); */
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 70px;
  flex-grow: 1;
}

.degree-list .home-degree-card {
  max-width: unset;
  width: unset;
}

.filter-wrapper {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.degree-filter {
  min-width: 355px;
  margin-right: 5rem;
}

.degree-filter-mobile-btns {
  box-shadow: 0px -16px 24px 0px rgba(12, 35, 47, 0.2);
  padding: 1rem 1.5rem;
  display: none;
}

.degree-filter-close-mobile {
  display: none !important;
}

.degree-filter-mobile-btns button {
  padding: 10px 1rem;
}

.filter-section {
  background-color: white;
}

.filter-section-heading p {
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
}

.filter-section-heading .deselect {
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
  margin-right: 0.5rem;
}

.home-degree-card.no-slider .card-title {
  font-size: 23px;
  min-height: 106px;
}

.show-more-btn {
  margin-top: 70px;
}

.select-major {
  padding: 10px 1rem;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #CED3D5;
}

.select-academic-year select,
.select-major select {
  outline: none !important;
  margin: 0 !important;
  /*    appearance: none !important; */
  border: transparent !important;
}

.cta-card {
  background-color: #fff;
  width: 400px;
  border: 1px solid rgba(12, 35, 47, 0.2);
  position: fixed;
  top: 180px;
  right: calc((100% - 1280px) / 2);
  z-index: 300;
}

.enrollment-circle {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 6px;
}

.enrollment-circle.open {
  background-color: #0DC814;
}

.tabs-wrapper {
  padding: 15px 0;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}

.tabs-wrapper-news {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.tabs-wrapper .tab-btn {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white;
}

.tabs-wrapper-news .tab-btn {
  color: var(--sr-darkblue);
  border-radius: 86px;
  border: 1px solid rgba(12, 35, 47, 0.2) !important;
  padding-top: 6px;
  padding-bottom: 6px;
}

.tabs-wrapper .tab-btn.active-tab {
  background-color: #fff;
  color: var(--sr-darkblue);
}

.tabs-wrapper-news .tab-btn.active-tab {
  background-color: var(--sr-darkblue);
  color: white;
}

.tabs-contents-wrapper,
.qa-tabs-contents-wrapper,
.single-courses-contents-wrapper {
  transition: all 500ms;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.tabs-contents-wrapper {
  width: 301dvw;
}

.qa-tabs-contents-wrapper {
  width: 500dvw;
}

.single-courses-contents-wrapper {
  width: 200dvw;
}

.course-file,
.course-curriculum,
.course-teachers,
.qa-tab {
  width: 100dvw;
  padding-top: 50px;
  padding-bottom: 100px;
  scrollbar-width: none;
}

.course-file::-webkit-scrollbar,
.course-curriculum::-webkit-scrollbar,
.course-teachers::-webkit-scrollbar,
.qa-tab::-webkit-scrollbar {
  scrollbar-color: transparent !important;
  display: none;
}

.course-file .intro-text-heading {
  letter-spacing: -1px;
}

.course-file .intro-text p {
  line-height: 24px;
  margin-bottom: 1.5rem;
}

.course-file .attention-grabber-img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}

.segment-info {
  margin-top: 1.5rem;
  line-height: 24px;
}

.segment-info > p,
.segment-heading > p,
.segment-info > ul,
.segment-info > ol {
  width: 90%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.segment-info > a,
.ellipsis-links a {
  max-width: 90%;
}

.segment-info > a span,
.ellipsis-links a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.segment-info > p:first-child {
  margin-top: 0;
}

.segment-info ul,
.enroll-w-foreign-bg ul,
.internships-content ul {
  list-style: disc;
}

.internships-content span,
.students-businesses-papers span {
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
  width: 100%;
}

.scholarship-docs .generic-table-body-item a,
.students-businesses-papers a {
  max-width: 100%;
  justify-content: space-between;
}

.scholarship-docs .generic-table-body-item a span {
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
  width: 100%;
}

.scholarship-docs .generic-table-body-item a img {
  margin-left: 0.5rem;
}

.curriculum {
  border: 1px solid rgba(12, 35, 47, 0.1);
}

.curriculum-header,
.curriculum-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(12, 35, 47, 0.7);
  letter-spacing: 0.7px;
}

.curriculum > :not(:first-child):not(:last-child),
.final-exam {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Apply background color for even numbered children */
.curriculum > :nth-child(even):not(:first-child):not(:last-child) {
  background-color: rgba(213, 217, 219, 0.7);
  /* Even background color */
}

/* Apply background color for odd numbered children */
.curriculum > :nth-child(odd):not(:first-child):not(:last-child),
.final-exam {
  background-color: white;
  /* Odd background color */
}

.football-course-link {
  width: 35%;
}

.prof-cards-grid {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 48px;
  margin-top: 52px;
}

.prof-photo,
.prof-card {
  width: 260px;
}

.prof-card {
  display: flex;
  flex-direction: column;
}

.prof-photo {
  -o-object-fit: cover;
     object-fit: cover;
  height: 221px;
}

.prof-card a {
  width: 90%;
  margin-top: auto;
}

/* contatti / contacts  */
.contacts-header {
  padding-top: 42px;
}

.contacts-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.5rem;
  margin-bottom: 108px;
}

.contacts-hero-grid .left-half {
  padding-right: 100px;
}

.contacts-hero-grid .attention-grabber-img {
  width: 100%;
}

.contacts-hero-grid .attention-grabber-img-mobile {
  display: none;
}

.our-locations-section {
  padding: 108px 0;
}

.our-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-top: 80px;
}

.our-locations-grid .our-locations-grid-item {
  display: flex;
  flex-direction: column;
}

.location-photo {
  height: 356px;
}

.search-results-view {
  margin-top: 55px;
  margin-bottom: 141px;
}

.results-count {
  opacity: 0.6;
}

.learning-point {
  padding-top: 108px;
  padding-bottom: 114px;
}

.learning-point-left {
  width: 35%;
}

.learning-point-img {
  width: 513px;
  height: 713px;
}

.exam-locations {
  padding-top: 109px;
  padding-bottom: 108px;
}

.exam-locations > .d-flex {
  -moz-column-gap: 96px;
       column-gap: 96px;
}

.exam-locations .exam-column {
  flex-basis: 100%;
  width: 50%;
}

.exam-locations .image-stack {
  grid-template-columns: repeat(10, 1fr);
}

.image-stack__item-exam.image-stack__item-top {
  /* must be on the same row as the other image */
  padding-top: 193%;
  /* this pushes the image down, and keeps it proportional as it resizes */
  z-index: 1;
  /* make this image render on top of the bottom */
  grid-column: -5/-1;
  grid-row: 1;
  /* make this image be on the same row */
}

.image-stack__item-exam.image-stack__item-top img {
  aspect-ratio: 7/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% center;
     object-position: 70% center;
}

.image-stack__item-exam.image-stack__item-bottom {
  grid-column: 1/span 8;
  grid-row: 1;
}

.request-info-hero {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}

.question-cards {
  padding: 3.25rem 0;
}

.question-cards-grid {
  display: grid;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 1.5rem;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.q-card-img {
  height: 2.25rem;
  width: 2.25rem;
}

.news-events-hero {
  padding-top: 42px;
  padding-bottom: 98px;
}

.discover-news {
  padding-top: 81px;
  padding-bottom: 110px;
}

.news-events-page-slider {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.news-card .news-card-bg {
  width: 840px;
  height: 472px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.discover-news-flex {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 105px;
  width: 100%;
  flex-wrap: wrap;
}

.news-card.discover-news-card {
  width: calc((100% - 40px) / 2);
  /* flex-basis: 100%; */
}

.news-card.discover-news-card .news-card-bg {
  width: 100%;
  height: unset;
  aspect-ratio: 1.7/1;
}

.discover-news .news-filters select {
  border: 1px solid #CED3D5;
  padding: 0.75rem 1rem;
  width: 170px;
  background-color: transparent !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.discover-news .select-type-wrapper::after,
.discover-news .select-order-wrapper::after {
  content: url(/images/chevron-down.svg?f5bc11f570d5a3302a1eb89dd4d2ea4a);
  position: absolute;
  z-index: 10;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.discover-news .filter-item .search img {
  width: 1.5rem;
  height: 1.5rem;
  top: 24px;
}

.discover-news .filter-item .search input::-moz-placeholder {
  color: var(--sr-darkblue);
}

.discover-news .filter-item .search input::placeholder {
  color: var(--sr-darkblue);
}

.single-news {
  padding-top: 6rem;
  padding-bottom: 6.625rem;
}

.central-column.single-news-body {
  padding-top: 59px;
  padding-bottom: 59px;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.single-news .central-column {
  width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.single-news-video {
  background-image: url("/img/bg/news/fake-video-1.jpg");
  aspect-ratio: 1.78/1;
  position: relative;
}

.single-news-video::after {
  content: "";
  background-image: url("/img/icons/play_circle.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.single-news-social-wrapper {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.circle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sr-darkblue);
  opacity: 0.3;
}

.circle-dot-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.3;
}

.circle-dot.active,
.circle-dot-light.active {
  opacity: 1;
}

.event-slider-section {
  padding: 59px 0;
}

.single-event-slider {
  align-items: stretch;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  touch-action: pan-y;
  pointer-events: none;
}

.single-event-slider.shifting {
  transition: left 0.2s ease-out;
}

.single-event-slider .single-event-slider-img {
  min-width: min(1180px, 80dvw);
  height: 464px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  scroll-snap-align: center;
}

#single-event-slider-nav {
  padding-top: 2.5rem;
}

#single-event-slider-back,
#single-event-slider-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(31, 48, 64, 0.2) !important;
}

#single-event-slider-forward {
  background-color: rgba(31, 48, 64, 0.2);
}

.event-speakers {
  padding-top: 105px;
  padding-bottom: 94px;
}

.event-speakers-slider {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  overflow-x: hidden;
  margin-bottom: 5rem;
  touch-action: pan-y;
}

.event-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.event-links-grid .event-link {
  border: 1px solid rgba(246, 245, 242, 0.15);
}

.also-interested {
  padding-top: 117px;
  padding-bottom: 58px;
}

.also-interested-slider {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  overflow-x: scroll;
}

.also-interested .news-card {
  width: 480px;
  min-width: 480px;
}

.also-interested .news-card .news-card-bg {
  height: unset;
  aspect-ratio: 1.7/1;
  width: 100%;
}

.also-interested .news-card .news-card-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
}

.news-events-slider-nav-mobile {
  display: none;
}

.news-events-select-mobile {
  display: none;
}

.teacher-tiles {
  padding-top: 88px;
  padding-bottom: 97px;
}

.teacher-tiles-select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #CED3D5;
  width: 100%;
  padding: 12px 16px;
  width: 280px;
}

.teacher-tiles-select-wrapper::after {
  content: "";
  display: block;
  background-image: url(/images/chevron-down.svg?f5bc11f570d5a3302a1eb89dd4d2ea4a);
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  z-index: 10;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.teacher-search {
  width: 400px;
}

.teacher-search .search-icon {
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.teacher-search input::-moz-placeholder {
  color: var(--sr-darkblue);
}

.teacher-search input::placeholder {
  color: var(--sr-darkblue);
}

.teacher-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 4rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  margin-top: 46px;
}

.single-teacher-hero {
  padding-top: 42px;
  padding-bottom: 81px;
}

.single-teacher-hero-flex {
  /*     column-gap: 107px; */
  margin-top: 65px;
}

.single-teacher-right {
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0.75rem;
}

.single-teacher-btn {
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(12, 35, 47, 0.2) !important;
  width: 340px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-teacher-btn img {
  width: 24px;
  height: 24px;
}

.single-teacher-btn.email-btn {
  margin-right: 1rem;
}

.teacher-info {
  padding: 75px 0;
}

.teacher-info ul,
.central-bodies ul {
  list-style-type: disc;
}

.teacher-courses {
  padding-top: 122px;
  padding-bottom: 155px;
}

.enrollment-heading a {
  width: 352px;
}

.enroll-online-numbered-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  padding-left: 3.75rem;
  border-left: 1px solid rgba(12, 35, 47, 0.2);
}

.enroll-required-documents {
  padding-top: 0.5rem;
  padding-bottom: 6.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
}

.enroll-document {
  border: 1px solid rgba(31, 48, 64, 0.2);
  width: 222px;
  height: 175px;
}

.follow-instructions-wrapper {
  padding-bottom: 72px;
}

#autovalutazione-iframe {
  height: 665px;
}

.follow-instructions {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.degree-instructions {
  height: 208px;
  width: calc(50% - 0.75rem);
  padding: 24px;
  background-image: linear-gradient(0deg, rgba(12, 35, 47, 0.4) 0%, rgba(12, 35, 47, 0.4) 100%), linear-gradient(270deg, rgba(12, 35, 47, 0) 0.07%, rgba(12, 35, 47, 0.87) 54.35%, #0C232F 93.47%), var(--bg-img);
  background-size: cover;
}

.receive-credentials-wrapper {
  width: min(873px, 95%);
  padding-left: 3.75rem;
}

.taxes-payments {
  padding: 100px 0;
}

.payment-credentials {
  border: 1px solid rgba(12, 35, 47, 0.15);
  display: flex;
  padding: 24px;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin-top: 1.5rem;
}

.concessions {
  padding: 108px 0 117px;
}

.concessions-link-img,
.foreign-academic-background-link-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
}

.foreign-academic-background-link-img {
  background-color: rgba(12, 35, 47, 0.1);
}

.foreign-academic-image-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}

.foreign-academic-image-stack__item-top {
  grid-column: 7/span 6;
  grid-row: 1;
  /* must be on the same row as the other image */
  padding-top: 120%;
  /* this pushes the image down, and keeps it proportional as it resizes */
  z-index: 1;
  /* make this image render on top of the bottom */
}

.foreign-academic-image-stack__item-bottom {
  grid-column: 1/span 10;
  grid-row: 1;
  /* make this image be on the same row */
}

.foreign-background .foreign-academic-image-stack__item-bottom img {
  aspect-ratio: 1/1.43;
  -o-object-position: right center;
     object-position: right center;
}

.need-help {
  padding: 99px 0 4rem;
}

.help-options {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}

.help-options .help-single-option {
  flex-shrink: 1;
  flex-grow: 1;
  height: 190px;
  width: calc((100% - 3rem) / 3);
  min-width: -moz-max-content;
  min-width: max-content;
  border: 1px solid rgba(31, 48, 64, 0.2);
}

.ddsa-service .help-options .help-single-option,
.help-job-placement .help-single-option {
  min-width: unset;
}

.ateneo-hero {
  padding-top: 160px;
  padding-bottom: 3rem;
}

#degree-tab .btn {
  opacity: 0.5;
  transition: opacity 0.2s;
}

#degree-tab .btn.active {
  opacity: 1;
}

.research-projects a,
.aq-legislation a,
.advisory-bodies-links a,
.single-courses-overview .segment-info a,
.dual-degree .segment-info a,
.teacher-training .intro-text a,
.teacher-training .segment-info a,
.job-placement .intro-text a,
.job-placement .segment-info a,
.segment-info.inline-links a:not(.circle-link),
.inline-links a:not(.circle-link) {
  display: inline-block !important;
  /* font-weight: 700; */
  text-decoration: underline;
}

.job-placement .segment-info .partner-companies-links a {
  display: flex !important;
  text-decoration: none;
}

.cfu-info li,
.research-projects li {
  list-style-type: disc;
}

.front-office a.min-w-max {
  min-width: unset;
  text-wrap: wrap;
}

.enroll-online-steps.restore-masters {
  width: min(950px, 100%);
}

.ratio-1_3 {
  aspect-ratio: 1.3/1;
}

.generic-hero-text.enroll-payment-foreign {
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 1280px) {
  .sr-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .margin-left-custom {
    margin-left: 1.5rem;
  }
  .desktop-menu-card {
    flex-shrink: 1 !important;
  }
  .home-degree-card.no-slider {
    min-width: unset;
    width: 100%;
    max-width: 400px;
  }
  .home-degree-card.no-slider .card-title {
    min-height: 96px;
    width: 100%;
    font-weight: 400;
    line-height: 120%;
  }
  .question-cards {
    right: 1.5rem;
    bottom: 80%;
  }
  .teacher-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    row-gap: 4rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    margin-top: 46px;
  }
  .teacher-tiles-grid .prof-card,
  .teacher-tiles-grid .prof-photo {
    width: 100%;
  }
  .can-enroll-pill {
    right: 1.5rem !important;
  }
}
@media only screen and (max-width: 1199px) {
  .modal-like-bg {
    padding-top: 77px;
  }
  .home-hero .hero-heading,
  .home-hero .hero-subheading {
    text-align: center;
  }
  .home-degree-card.no-slider .card-hero-img {
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .top-offset {
    padding-top: 77px;
  }
  .home-partnerships-grid {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-top: 7rem;
  }
  .home-news-events-grid {
    padding-bottom: 0;
    margin-top: 6rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
  }
  .home-news-events-grid .home-news-events-grid-child {
    border: none !important;
    scroll-snap-align: start;
    min-width: calc(50% - 48px);
    width: calc(50% - 48px);
    margin-right: 20px;
    padding: 0 !important;
    scroll-snap-align: start;
  }
  .home-news-events-grid .home-news-events-grid-child .text-24 {
    font-size: 23px;
  }
  .home-news-events-grid img {
    height: 180px;
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  .cta-card {
    right: unset;
    top: unset;
    bottom: 0;
    width: 100%;
  }
  .cta-card-header {
    padding-top: 0;
  }
  .cta-toggle-show-more {
    display: flex !important;
  }
  .cta-card-body > div:not(.cta-card-footer) {
    display: none !important;
  }
  .cta-card-body.expand > .download-btn-wrapper {
    display: flex !important;
  }
  .cta-card-body.expand > div {
    display: block !important;
  }
  .single-degree-header-title {
    font-size: clamp(1.75rem, 1.3673rem + 1.6327vw, 3rem);
  }
  .course-file .intro-text-heading {
    font-size: clamp(23px, 1.227rem + 0.898vw, 34px);
  }
  .n-year {
    font-size: clamp(1.25rem, 1.1735rem + 0.3265vw, 1.5rem);
  }
  .results-keyword {
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1px;
  }
  .taxes-payments-heading {
    line-height: 120%;
    margin-bottom: 1.5rem;
  }
  .if-you-enroll > p:first-child {
    margin-bottom: 1rem;
  }
  .if-you-enroll > p:last-child {
    margin-bottom: 1.5rem;
  }
  .if-you-enroll-course {
    margin-top: 3.5rem;
  }
  .if-you-enroll-course .single-degree-left-column,
  .if-you-enroll-degree .single-degree-left-column {
    width: 100%;
  }
  .cfu-info,
  .qa-tab {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-why-grid .number {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -3.2px;
  }
  .home-why-grid-child p:nth-child(2) {
    margin-bottom: 0.5rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
  }
  .home-degree-slider {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 1.5rem;
  }
  .home-degree-card {
    min-width: 327px;
    width: 327px;
    scroll-snap-align: start;
  }
  .home-football {
    padding-top: 56px;
  }
  .footer-grid.large-screen {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    padding: 1.5rem 0;
    width: 100%;
    grid-auto-flow: column;
    row-gap: 0.75rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .footer-grid-social-wrapper {
    margin-bottom: 2rem;
  }
  .degrees-header-description {
    width: 80%;
  }
  .learning-point-wrapper {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .learning-point-left {
    width: 60%;
  }
  .learning-point-img {
    width: 40%;
    height: unset;
    /* aspect-ratio: 1/1.5; */
  }
  .contacts-hero-grid .left-half {
    padding-right: 3rem;
  }
  .contacts-hero-grid .left-half button {
    text-wrap: nowrap;
    margin-bottom: 3.25rem;
  }
  .our-locations-grid-item .location-photo {
    height: unset;
    aspect-ratio: 1/1;
  }
  .news-events-hero {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
  }
  .news-events-hero .breadcrumbs {
    margin-bottom: 2.25rem;
  }
  .single-news .central-column {
    width: 100%;
  }
  .single-teacher-hero {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .single-teacher-hero-flex {
    margin-top: 2.25rem;
  }
  .single-teacher-btn.email-btn {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .teacher-info {
    padding: 3.5rem 0;
    font-size: 16px;
    line-height: 20px;
  }
  .teacher-courses {
    padding: 3.5rem 0;
  }
  .teacher-courses-heading {
    margin-bottom: 3.5rem;
  }
  #single-event-slider {
    overflow-x: hidden;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    position: static !important;
    scrollbar-width: none;
    pointer-events: all;
  }
  #single-event-slider::-webkit-scrollbar {
    scrollbar-color: transparent !important;
    display: none;
  }
  .single-event-slider .single-event-slider-img {
    height: unset;
    aspect-ratio: 1.56/1;
  }
  .help-options .help-single-option {
    width: 100%;
  }
  .services-inner {
    margin-right: 0;
  }
  .services-section .generic-img-right-column,
  .accreditation-manual .generic-img-right-column {
    margin-bottom: 2.5rem;
  }
  .enroll-online-heading-title {
    font-size: 33px;
  }
  .front-office-image {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 800px) {
  .section-circle-box {
    height: 56px;
    width: 56px;
  }
  .margin-left-custom {
    margin-left: 1.5rem;
  }
  .home-hero .hero-heading {
    color: #FFF;
    font-family: Montserrat;
    font-size: 33px;
    font-style: normal;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .home-hero .hero-subheading {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 20px;
  }
  .home-hero.home-hero-bg {
    background: linear-gradient(271deg, rgba(31, 48, 64, 0.76) 8.87%, rgba(31, 48, 64, 0) 52.49%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(31, 48, 64, 0.5) 0%, rgba(31, 48, 64, 0.5) 100%), url(/images/home-hero-bg.jpg?76e045cb7ebf588cf4030b1206d03009);
    background-size: 500%;
    background-position: 34% 15%;
  }
  .home-why-grid,
  .home-learning-paths-grid,
  .home-football-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .home-why-grid {
    margin-top: 2.5rem;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    row-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .home-why-grid > div:not(:last-child) {
    border-bottom: solid 1px var(--sr-grey);
    padding-bottom: 1rem;
  }
  .home-why-grid .number {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -3.2px;
  }
  .home-why-grid-child p:nth-child(2) {
    margin-bottom: 0.5rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
  }
  .home-why-grid-child p:nth-child(3) {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
  }
  .why-section {
    aspect-ratio: 1/4;
    height: 1450px;
  }
  .home-degrees.py-8 {
    padding-top: 56px;
    padding-bottom: 49px;
  }
  .home-degree-card .card-title {
    min-height: 6rem;
    width: 100%;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .home-degree-card .card-hero-img {
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .degrees-links-wrapper {
    margin-bottom: 49px;
  }
  .degrees-links-wrapper div:first-child {
    margin-bottom: 1rem;
  }
  .home-learning-paths.py-25 {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .home-learning-paths-grid-title {
    padding-bottom: 24px;
  }
  .home-learning-paths-grid .home-learning-paths-grid-subtitle {
    width: 100%;
  }
  .learning-paths-list .learning-paths-list-item {
    padding: 1.5rem 0;
  }
  .learning-paths-list-item p:first-child {
    font-size: 23px;
    font-weight: 400;
    line-height: 120%;
  }
  .learning-paths-list-item p:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    width: 90%;
  }
  .home-football {
    padding-top: 56px;
  }
  .home-football-grid-title {
    padding-bottom: 1.5rem;
  }
  .home-football-grid-subtitle {
    font-size: 23px;
    font-weight: 400;
    line-height: 120%;
  }
  .home-football-grid-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .home-football-slider {
    grid-template-columns: 0.075fr 1fr 0.075fr;
    margin-top: 1.5rem;
  }
  .home-football-slider img:not(#central-football-img) {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .home-football-slider img:first-child {
    -o-object-position: right center;
       object-position: right center;
  }
  .home-football-slider img:last-child {
    -o-object-position: left center;
       object-position: left center;
  }
  .why-section .why-heading {
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
  }
  .trustpilot-wrapper {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .trustpilot-wrapper .trustpilot-headline {
    font-size: 33px;
    padding-top: 0;
    margin-bottom: 53px;
  }
  .home-news-events {
    padding-top: 47px;
  }
  .home-news-events-grid {
    padding-bottom: 0;
    margin-top: 6rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .home-news-events-grid .home-news-events-grid-child {
    border: none !important;
    scroll-snap-align: start;
    min-width: calc(50% - 48px);
    width: calc(50% - 48px);
    margin-right: 20px;
    padding: 0 !important;
  }
  .home-news-events-grid .home-news-events-grid-child .text-24 {
    font-size: 23px;
  }
  .home-news-events-grid img {
    height: 180px;
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  .home-partnerships-header {
    margin-bottom: 1.5rem;
  }
  .home-partnerships-grid {
    grid-template-columns: 1fr;
    margin-top: 5.75rem;
    row-gap: 4rem;
  }
  .home-partnerships-wrapper {
    padding-top: 61px;
    padding-bottom: 61px;
  }
  .home-partnerships-wrapper .home-partnerships-header {
    align-items: start;
  }
  .home-partnerships-wrapper .home-partnerships-header > p:first-child {
    margin-bottom: 1.5rem;
    width: 50%;
  }
  .home-partnerships-wrapper .home-partnerships-header > p:nth-child(2) {
    flex-basis: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .home-partnerships-grid p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .footer-copyright-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    grid-auto-flow: column;
    margin-top: 2rem;
    row-gap: 1rem;
  }
  .footer-grid.large-screen {
    display: none;
  }
  .learning-learning .breadcrumbs,
  .teachers-hero .breadcrumbs {
    margin-bottom: 50px;
  }
  .learning-heading .learning-heading-title,
  .teachers-heading .teachers-heading-title {
    width: 50%;
    margin-bottom: 20px;
    line-height: 120%;
  }
  .learning-heading .learning-heading-subtitle,
  .teachers-heading .teachers-heading-subtitle {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
  .learning-welcome-img {
    margin-top: 50px;
    -o-object-position: 60% center;
       object-position: 60% center;
  }
  .learning-degrees-headline {
    padding-top: 86px;
    padding-bottom: 23px;
    line-height: 120%;
    width: 60%;
  }
  .learning-study .d-flex {
    -moz-column-gap: 83px;
         column-gap: 83px;
    flex-wrap: wrap;
  }
  .learning-study .learning-column {
    flex-basis: 100%;
    width: 100%;
  }
  .explore-degrees {
    height: auto;
  }
  .explore-degrees .degree {
    padding: 1.5rem;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .explore-degrees .degree p {
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    /* 33.6px */
  }
  .degree .info {
    display: none;
  }
  .degree-mobile-link {
    color: white;
    display: block;
    padding-top: 2rem;
  }
  .learning-degrees,
  .explore-degrees {
    border-width: 6px;
  }
  .learing-other-courses {
    padding-top: 56px;
    padding-bottom: 80px;
  }
  .other-courses-heading {
    margin-bottom: 2rem;
  }
  .other-courses-grid {
    grid-template-columns: 1fr;
  }
  .home-learning-paths-grid .home-learning-paths-grid-title {
    width: 50%;
  }
  .home-learning-paths-grid .home-learning-paths-grid-subtitle {
    width: 75%;
  }
  .learning-study {
    padding-top: 43px;
    padding-bottom: 43px;
  }
  .learning-column.left > p {
    margin-bottom: 36px;
    width: 80%;
  }
  .learning-column.left img {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }
  .learning-column.left p.text-24 {
    font-size: 20px;
    line-height: 34px;
  }
  .learning-column.left .pros {
    margin-bottom: 40px;
  }
  .learning-column.left .pros p:last-child {
    line-height: 20px;
  }
  .learning-column.right {
    padding-top: 80px;
  }
  .faq-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .faq-heading {
    margin-bottom: 1rem;
  }
  .faq-heading p:first-child {
    line-height: 120%;
    width: 60%;
  }
  .faq-heading p:last-child {
    line-height: 125%;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    align-items: start;
  }
  .faq-question p {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
  }
  .faq-question {
    margin-bottom: 0.75rem;
  }
  .faq-answer {
    padding-bottom: 0.75rem;
  }
  .faq-question-box {
    margin-bottom: 1.5rem;
  }
  .degrees-header-title {
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .single-degree-header-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 30px;
  }
  .question-cards-grid {
    grid-auto-flow: column;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .q-card .text-24 {
    font-size: 19px;
  }
  .q-card .text-20 {
    font-size: 16px;
  }
  .q-card a {
    text-decoration: underline;
  }
  .discover-news {
    padding: 3.5rem 0;
  }
  .discover-news-heading {
    margin-bottom: 3.5rem;
  }
  .football-university-logo {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .degree-list {
    /*         display: grid;
    grid-template-columns: 1fr; */
    row-gap: 1.5rem;
  }
  .top-offset {
    padding-top: 180px;
  }
  .degree-filter {
    position: fixed;
    inset: 0;
    z-index: 1040;
    margin-right: 0;
    background-color: rgba(12, 35, 47, 0.8);
    display: flex;
    flex-direction: column;
  }
  .degree-filter .mobile-padding {
    padding: 1rem 1.5rem;
  }
  .degree-filter-close-mobile {
    display: flex !important;
  }
  .degree-filter-mobile-btns {
    display: block;
  }
  .news-filters {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .news-filters > div {
    width: calc((100% - 1.5rem) / 2);
  }
  .discover-news-selects {
    width: 100%;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .discover-news-selects .select-type-wrapper,
  .discover-news-selects .select-order-wrapper {
    width: calc((100% - 1rem) / 2);
  }
  .discover-news-selects .select-type-wrapper {
    margin-right: 0;
  }
  .event-speakers-slider {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .also-interested-slider {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .also-interested-slider .news-card {
    width: 324px;
    min-width: 329px;
  }
  .teachers-hero {
    padding-top: 1.5rem;
  }
  .teachers-hero .breadcrumbs {
    margin-bottom: 2.25rem;
  }
  .teachers-hero img {
    margin-bottom: 2.25rem;
  }
  .teachers-heading .teachers-heading-title {
    margin-bottom: 0.75rem;
  }
  .teacher-tiles-grid {
    margin-top: 1.5rem;
  }
  .teacher-tiles {
    padding: 3.5rem 0;
  }
  .teacher-tiles .show-more-btn {
    margin-top: 3.5rem;
  }
  .teacher-fullname {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .teacher-search {
    order: 1;
    margin-bottom: 1rem;
  }
  .teacher-tiles-select-wrapper {
    order: 2;
  }
  .teacher-tiles-select-wrapper,
  .teacher-search,
  .teacher-tiles-select-wrapper select {
    width: 100%;
  }
  .login-option {
    height: 175px;
    width: 279px;
  }
  .login-option:first-child {
    margin-bottom: 1.5rem;
  }
  .login-option button,
  .login-modal-heading {
    font-size: 16px;
  }
  .login-option-heading {
    font-size: 18px;
  }
  .enrollment-heading a {
    width: 100%;
  }
  .news-events-slider-nav-mobile {
    display: flex;
  }
  .news-events-select-mobile {
    display: block;
    position: relative;
  }
  .news-events-select-mobile select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 1px solid #CED3D5;
    width: 100%;
    padding: 10px 16px;
  }
  .news-events-select-mobile::after {
    content: url(/images/chevron-down.svg?f5bc11f570d5a3302a1eb89dd4d2ea4a);
    position: absolute;
    z-index: 10;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
  }
  .news-events-slider-nav {
    display: none !important;
  }
  .academic-structure-subheading,
  .qa-system-subheading {
    margin-bottom: 1.5rem;
  }
  #autovalutazione-iframe {
    height: 1000px !important;
  }
}
@media only screen and (max-width: 746px) {
  .filter-item {
    min-width: 330px;
    flex-basis: auto;
    width: 100%;
  }
  .contacts-hero-grid {
    grid-template-columns: 1fr;
  }
  .contacts-hero-grid .attention-grabber-img {
    display: none;
  }
  .contacts-hero-grid .attention-grabber-img-mobile {
    display: block;
    width: 100%;
  }
  .learning-point-img {
    width: 100%;
    aspect-ratio: 2/1;
    height: unset;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 60%;
       object-position: center 60%;
  }
  .news-filters > div {
    width: 100%;
  }
  .event-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .contact-one {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .degrees-degree-list-wrapper .filter-item button {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .search-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    max-width: 100%;
  }
  .search-degrees a.search-result-mobile-link,
  .search-teachers a.search-result-mobile-link,
  .search-news a.search-result-mobile-link {
    display: flex !important;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1.5rem;
  }
  .search-degrees > p a,
  .search-teachers > p a,
  .search-news > p a {
    display: none !important;
  }
  .search-degrees,
  .search-teachers,
  .search-news {
    border-top: 1px solid rgba(12, 35, 47, 0.2) !important;
    padding: 40px 0;
  }
  .home-news-events-grid .home-news-events-grid-child {
    border: none !important;
    scroll-snap-align: start;
    min-width: calc(100% - 48px);
    width: calc(100% - 48px);
    margin-right: 20px;
    padding: 0 !important;
  }
  .degrees-header-description {
    width: 100%;
  }
  .degrees-header-title {
    margin-bottom: 0;
    padding-top: 70px;
    padding-bottom: 20px;
  }
  .single-degree-header-title {
    line-height: 120%;
    letter-spacing: normal;
    /* 33.6px */
  }
  .single-degree-header-description {
    width: 100%;
    line-height: 20px;
    /* 125% */
  }
  .tabs-wrapper {
    flex-direction: column;
    padding: 29px 70px;
  }
  .tabs-wrapper button {
    width: 100%;
    padding: 1rem 0.75rem;
  }
  .tabs-wrapper button:not(:last-child) {
    margin-bottom: 1rem;
  }
  .tabs-contents-wrapper {
    padding-top: 2rem;
  }
  .football-course-link {
    width: 100%;
  }
  .select-major {
    width: 100%;
  }
  .prof-cards-grid {
    margin-top: 2rem;
    row-gap: 2rem;
  }
  .prof-cards-grid > div,
  .prof-cards-grid > div .prof-photo {
    width: 100%;
  }
  .prof-card p {
    font-size: 18px;
  }
  .prof-card a {
    width: -moz-max-content;
    width: max-content;
  }
  .prof-card a img {
    margin-left: 0.5rem;
  }
  .teacher-tiles-grid {
    row-gap: 2.25rem;
  }
  /* .teacher-tiles-grid .prof-card{
      display: flex;
      flex-direction: column;
  }

  .teacher-tiles-grid .prof-card p {
      order: 1;
  }

  .teacher-tiles-grid .prof-card a {
      order: 2;
  }
  .teacher-tiles-grid .prof-card>img {
      order: 3;
      margin-top: 2.25rem;
  } */
  .cta-card-body .download-btn:first-child {
    margin-bottom: 10px;
  }
  .learning-point-left {
    width: 100%;
  }
  .learning-point-img {
    width: 100%;
    height: unset;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 56px;
  }
  .contacts-hero-grid .left-half {
    padding-right: 0;
  }
  .contacts-hero-grid .left-half button {
    font-size: 14px;
    line-height: 200%;
    width: 100%;
    margin-bottom: 2.25rem;
  }
  .contacts-list {
    margin-bottom: 63px;
  }
  .contacts-hero-grid .attention-grabber-img-mobile {
    margin-top: 3.25rem;
  }
  .our-locations-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .our-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 3.25rem;
    row-gap: 3rem;
  }
  .exam-locations {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .exam-locations > .d-flex {
    row-gap: 3.25rem;
  }
  .exam-locations .exam-column {
    flex-basis: 100%;
    width: 100%;
  }
  .exam-column .exams-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: normal;
  }
  .news-events-hero .news-events-subheading {
    margin-bottom: 38px;
  }
  .news-events-page-slider {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    overflow-x: scroll !important;
  }
  .news-events-page-slider .news-card {
    width: 300px;
  }
  .news-events-page-slider .news-card .news-card-bg {
    width: 300px;
    height: unset;
    aspect-ratio: 1.7/1;
  }
  .news-events-page-slider .news-card .news-card-title {
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .news-events-page-slider .news-card .news-card-description {
    text-overflow: ellipsis;
    white-space: nowrap !important;
    overflow: hidden;
    width: 100%;
  }
  .news-filters .filter-item {
    margin-bottom: 1rem;
    width: 100%;
  }
  .discover-news .news-card {
    width: 100%;
  }
  .discover-news-flex {
    row-gap: 3rem;
  }
  .discover-news-selects {
    width: 100%;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .discover-news-selects select.select-type,
  .discover-news-selects select.select-order {
    width: 100%;
  }
  .single-news {
    padding-top: 1.5rem;
    padding-bottom: 4.75rem;
  }
  .single-news-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
  }
  .single-news-seotitle {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 1.5rem;
  }
  .single-news-social-wrapper {
    margin-bottom: 2rem;
  }
  .central-column.single-news-body {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .event-speakers {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .event-speakers-slider {
    margin-bottom: 0;
  }
  .event-speakers-slider-circles {
    display: flex !important;
  }
  .event-speakers-slider-nav {
    margin-bottom: 2.5rem;
  }
  .event-speakers-slider-nav > p,
  .event-links-heading {
    font-size: 33px;
    font-weight: 400;
    line-height: 120%;
  }
  .event-speakers-slider-nav > div {
    display: none !important;
  }
  .event-links-grid {
    padding: 2.5rem 0 3.5rem;
  }
  .event-links-grid .event-link .event-date {
    font-size: 16px;
    font-weight: 700;
    line-height: 170%;
  }
  .event-links-grid .event-link .event-place {
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
  }
  .support-contact-info {
    margin-top: 3.5rem;
  }
  .support-contact-info > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 6px;
  }
  .contact-one p,
  .contact-two p {
    font-size: 16px;
  }
  .also-interested {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
  .also-interested-slider {
    margin-bottom: 3.5rem;
  }
  .also-interested-heading {
    line-height: 120%;
    letter-spacing: normal;
    margin-bottom: 4rem;
  }
  .teacher-fullname {
    width: 100%;
    font-size: 33px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0.75rem;
  }
  .teacher-job-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 42px;
  }
  .enrollment-hero {
    padding-top: 1.5rem;
  }
  .enrollment-heading-subtitle {
    margin-bottom: 2.5rem;
  }
  .enroll-online,
  .taxes-payments {
    padding: 3.5rem 0;
  }
  .enroll-online-heading-subtitle {
    margin-bottom: 3.5rem;
  }
  .enroll-online-numbered-section {
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
    border-left: none !important;
  }
  .enroll-required-documents {
    padding-bottom: 2.25rem;
  }
  .follow-instructions-wrapper {
    margin-top: 2.25rem;
    padding-bottom: 2.25rem;
    margin-bottom: 0;
  }
  .receive-credentials-wrapper {
    margin-top: 2.25rem;
  }
  .taxes-payments-heading {
    line-height: 120%;
    margin-bottom: 1.5rem;
  }
  .if-you-enroll > p:first-child {
    width: 60%;
    font-size: 23px;
    line-height: 120%;
    margin-bottom: 1rem;
  }
  .if-you-enroll > p:last-child {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 1.5rem;
  }
  .enroll-document,
  .degree-instructions {
    width: 100%;
  }
  .instructions-bachelors {
    margin-bottom: 1.5rem;
  }
  .receive-credentials-wrapper {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .if-you-enroll-course .segment-info > *,
  .if-you-enroll-degree .segment-info > * {
    width: 100%;
  }
  .concessions {
    padding: 3.5rem 0;
  }
  .concessions-heading {
    width: 60%;
    margin-bottom: 2.25rem;
  }
  .concessions-hero-text {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 125%;
  }
  .concessions img.generic-img-right-column {
    margin-top: 3.5rem;
  }
  .generic-template-wrapper.foreign-background {
    padding: 71px 0 3.5rem;
  }
  .need-help {
    padding: 3.5rem 0;
  }
  .need-help-heading-wrapper {
    margin-bottom: 3.5rem;
  }
  .need-help-heading {
    width: 60%;
    font-size: 33px;
    line-height: 120%;
  }
}
.sr-colors-bottom-border {
  border-bottom: 6px solid;
  -o-border-image: linear-gradient(90deg, #f49414 25%, #447cbc 25%, #447cbc 50%, #14ac64 50%, #14ac64 75%, #7D3478 75%, #7D3478 50%) 1 stretch repeat;
     border-image: linear-gradient(90deg, #f49414 25%, #447cbc 25%, #447cbc 50%, #14ac64 50%, #14ac64 75%, #7D3478 75%, #7D3478 50%) 1 stretch repeat;
}

.sr-colors-top-border-10 {
  border-top: 10px solid;
  -o-border-image: linear-gradient(90deg, #f49414 25%, #447cbc 25%, #447cbc 50%, #14ac64 50%, #14ac64 75%, #7D3478 75%, #7D3478 50%) 1 stretch repeat;
     border-image: linear-gradient(90deg, #f49414 25%, #447cbc 25%, #447cbc 50%, #14ac64 50%, #14ac64 75%, #7D3478 75%, #7D3478 50%) 1 stretch repeat;
}

.sr-colors-bottom-border-reversed-10 {
  border-bottom: 10px solid;
  -o-border-image: linear-gradient(90deg, #7D3478 25%, #14ac64 25%, #14ac64 50%, #447cbc 50%, #447cbc 75%, #f49414 75%, #f49414 50%) 1 stretch repeat;
     border-image: linear-gradient(90deg, #7D3478 25%, #14ac64 25%, #14ac64 50%, #447cbc 50%, #447cbc 75%, #f49414 75%, #f49414 50%) 1 stretch repeat;
}

.border-sr-darkblue-1 {
  border: solid 1px var(--sr-darkblue);
}

.border-x-white-opacity {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.border-white-opacity-0_75 {
  border: 0.75px solid rgba(255, 255, 255, 0.1);
}

.border-darkblue-opacity {
  border: 1px solid rgba(12, 35, 47, 0.1) !important;
}

.border-bottom-darkblue-opacity {
  border-bottom: 1px solid rgba(12, 35, 47, 0.1) !important;
}

.border-top-darkblue-opacity {
  border-top: 1px solid rgba(12, 35, 47, 0.1) !important;
}

.border-darkblue-opacity-0_75 {
  border: 0.75px solid rgba(12, 35, 47, 0.1);
}

.border-top-white-opacity {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-bottom-white-opacity {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top-darkblue-opacity-0_6 {
  border-top: 1px solid rgba(12, 35, 47, 0.6);
}

.border-botton-darkblue-opacity-0_6 {
  border-bottom: 1px solid rgba(12, 35, 47, 0.6);
}

.border-bottom-darkblue-opacity {
  border-bottom: 1px solid rgba(12, 35, 47, 0.2);
}

.border-sr-lightestgray-1 {
  border: solid 1px var(--sr-lightestgray) !important;
}

.border-bottom-sr-lightestgray-1 {
  border-bottom: solid 1px var(--sr-lightestgray);
}

.border-top-sr-lightestgray-2 {
  border-top: solid 2px var(--sr-lightestgray);
}

.border-bottom-sr-lightestgray-2 {
  border-bottom: solid 2px var(--sr-lightestgray);
}

.border-top-sr-lightestgray-1 {
  border-top: solid 1px var(--sr-lightestgray);
}

.border-y-sr-lightestgray-1 {
  border-top: solid 1px var(--sr-lightestgray);
  border-bottom: solid 1px var(--sr-lightestgray);
}

.border-y-sr-lightestgray-2 {
  border-top: solid 2px var(--sr-lightestgray);
  border-bottom: solid 2px var(--sr-lightestgray);
}

.border-bottom-transparent-3 {
  border-bottom: solid 3px transparent;
}

.border-top-sr-orange-1 {
  border-top: solid 1px var(--sr-orange);
}

.border-top-sr-blue-1 {
  border-top: solid 1px var(--sr-blue);
}

.border-top-sr-green-1 {
  border-top: solid 1px var(--sr-green);
}

.border-top-sr-violet-1 {
  border-top: solid 1px var(--sr-violet);
}

.border-top-sr-orange-2 {
  border-top: solid 2px var(--sr-orange);
}

.border-top-sr-blue-2 {
  border-top: solid 2px var(--sr-blue) !important;
}

.border-top-sr-darkblue-2 {
  border-top: solid 2px var(--sr-darkblue);
}

.border-top-sr-green-2 {
  border-top: solid 2px var(--sr-green);
}

.border-top-sr-violet-2 {
  border-top: solid 2px var(--sr-violet);
}

.border-top-sr-default-2 {
  border-top: solid 2px var(--sr-darkblue);
}

.border-top-sr-orange-3 {
  border-top: solid 3px var(--sr-orange);
}

.border-top-sr-blue-3 {
  border-top: solid 3px var(--sr-blue);
}

.border-top-sr-green-3 {
  border-top: solid 3px var(--sr-green);
}

.border-top-sr-violet-3 {
  border-top: solid 3px var(--sr-violet);
}

.border-top-sr-orange-4 {
  border-top: solid 4px var(--sr-orange);
}

.border-top-sr-blue-4 {
  border-top: solid 4px var(--sr-blue);
}

.border-top-sr-green-4 {
  border-top: solid 4px var(--sr-green);
}

.border-top-sr-violet-4 {
  border-top: solid 4px var(--sr-violet);
}

.border-top-sr-orange-5 {
  border-top: solid 5px var(--sr-orange);
}

.border-top-sr-blue-5 {
  border-top: solid 5px var(--sr-blue);
}

.border-top-sr-green-5 {
  border-top: solid 5px var(--sr-green);
}

.border-top-sr-violet-5 {
  border-top: solid 5px var(--sr-violet);
}

.border-top-sr-orange-6 {
  border-top: solid 6px var(--sr-orange);
}

.border-top-sr-blue-6 {
  border-top: solid 6px var(--sr-blue);
}

.border-top-sr-green-6 {
  border-top: solid 6px var(--sr-green);
}

.border-top-sr-violet-6 {
  border-top: solid 6px var(--sr-violet);
}

.border-top-sr-orange-7 {
  border-top: solid 7px var(--sr-orange);
}

.border-top-sr-blue-7 {
  border-top: solid 7px var(--sr-blue);
}

.border-top-sr-green-7 {
  border-top: solid 7px var(--sr-green);
}

.border-top-sr-violet-7 {
  border-top: solid 7px var(--sr-violet);
}

.border-top-sr-orange-8 {
  border-top: solid 8px var(--sr-orange);
}

.border-top-sr-blue-8 {
  border-top: solid 8px var(--sr-blue);
}

.border-top-sr-green-8 {
  border-top: solid 8px var(--sr-green);
}

.border-top-sr-violet-8 {
  border-top: solid 8px var(--sr-violet);
}

.border-top-sr-orange-9 {
  border-top: solid 9px var(--sr-orange);
}

.border-top-sr-blue-9 {
  border-top: solid 9px var(--sr-blue);
}

.border-top-sr-green-9 {
  border-top: solid 9px var(--sr-green);
}

.border-top-sr-violet-9 {
  border-top: solid 9px var(--sr-violet);
}

.border-top-sr-orange-10 {
  border-top: solid 10px var(--sr-orange);
}

.border-top-sr-blue-10 {
  border-top: solid 10px var(--sr-blue);
}

.border-top-sr-green-10 {
  border-top: solid 10px var(--sr-green);
}

.border-top-sr-violet-10 {
  border-top: solid 10px var(--sr-violet);
}

/* Border Bottom Classes */
.border-bottom-sr-white-1 {
  border-bottom: solid 1px var(--sr-white);
}

.border-bottom-sr-grey-1 {
  border-bottom: solid 1px var(--sr-grey);
}

.border-bottom-sr-orange-1 {
  border-bottom: solid 1px var(--sr-orange);
}

.border-bottom-sr-blue-1 {
  border-bottom: solid 1px var(--sr-blue);
}

.border-bottom-sr-darkblue-1 {
  border-bottom: solid 1px var(--sr-darkblue) !important;
}

.border-bottom-sr-green-1 {
  border-bottom: solid 1px var(--sr-green);
}

.border-bottom-sr-violet-1 {
  border-bottom: solid 1px var(--sr-violet);
}

.border-bottom-sr-orange-2 {
  border-bottom: solid 2px var(--sr-orange);
}

.border-bottom-sr-blue-2 {
  border-bottom: solid 2px var(--sr-blue) !important;
}

.border-bottom-sr-darkblue-2 {
  border-bottom: solid 2px var(--sr-darkblue);
}

.border-bottom-sr-green-2 {
  border-bottom: solid 2px var(--sr-green);
}

.border-bottom-sr-violet-2 {
  border-bottom: solid 2px var(--sr-violet);
}

.border-bottom-sr-orange-3 {
  border-bottom: solid 3px var(--sr-orange);
}

.border-bottom-sr-blue-3 {
  border-bottom: solid 3px var(--sr-blue);
}

.border-bottom-sr-darkblue-3 {
  border-bottom: solid 3px var(--sr-darkblue);
}

.border-bottom-sr-green-3 {
  border-bottom: solid 3px var(--sr-green);
}

.border-bottom-sr-violet-3 {
  border-bottom: solid 3px var(--sr-violet);
}

.border-bottom-sr-orange-4 {
  border-bottom: solid 4px var(--sr-orange);
}

.border-bottom-sr-blue-4 {
  border-bottom: solid 4px var(--sr-blue);
}

.border-bottom-sr-green-4 {
  border-bottom: solid 4px var(--sr-green);
}

.border-bottom-sr-violet-4 {
  border-bottom: solid 4px var(--sr-violet);
}

.border-bottom-sr-orange-5 {
  border-bottom: solid 5px var(--sr-orange);
}

.border-bottom-sr-blue-5 {
  border-bottom: solid 5px var(--sr-blue);
}

.border-bottom-sr-green-5 {
  border-bottom: solid 5px var(--sr-green);
}

.border-bottom-sr-violet-5 {
  border-bottom: solid 5px var(--sr-violet);
}

.border-bottom-sr-orange-6 {
  border-bottom: solid 6px var(--sr-orange);
}

.border-bottom-sr-blue-6 {
  border-bottom: solid 6px var(--sr-blue);
}

.border-bottom-sr-green-6 {
  border-bottom: solid 6px var(--sr-green);
}

.border-bottom-sr-violet-6 {
  border-bottom: solid 6px var(--sr-violet);
}

.border-bottom-sr-orange-7 {
  border-bottom: solid 7px var(--sr-orange);
}

.border-bottom-sr-blue-7 {
  border-bottom: solid 7px var(--sr-blue);
}

.border-bottom-sr-green-7 {
  border-bottom: solid 7px var(--sr-green);
}

.border-bottom-sr-violet-7 {
  border-bottom: solid 7px var(--sr-violet);
}

.border-bottom-sr-orange-8 {
  border-bottom: solid 8px var(--sr-orange);
}

.border-bottom-sr-blue-8 {
  border-bottom: solid 8px var(--sr-blue);
}

.border-bottom-sr-green-8 {
  border-bottom: solid 8px var(--sr-green);
}

.border-bottom-sr-violet-8 {
  border-bottom: solid 8px var(--sr-violet);
}

.border-bottom-sr-orange-9 {
  border-bottom: solid 9px var(--sr-orange);
}

.border-bottom-sr-blue-9 {
  border-bottom: solid 9px var(--sr-blue);
}

.border-bottom-sr-green-9 {
  border-bottom: solid 9px var(--sr-green);
}

.border-bottom-sr-violet-9 {
  border-bottom: solid 9px var(--sr-violet);
}

.border-bottom-sr-orange-10 {
  border-bottom: solid 10px var(--sr-orange);
}

.border-bottom-sr-blue-10 {
  border-bottom: solid 10px var(--sr-blue);
}

.border-bottom-sr-green-10 {
  border-bottom: solid 10px var(--sr-green);
}

.border-bottom-sr-violet-10 {
  border-bottom: solid 10px var(--sr-violet);
}

.border-bottom-sr-default-10 {
  border-bottom: solid 10px var(--sr-darkblue);
}

/* Border Left Classes */
.border-left-sr-orange-1 {
  border-left: solid 1px var(--sr-orange);
}

.border-left-sr-blue-1 {
  border-left: solid 1px var(--sr-blue);
}

.border-left-sr-grey-1 {
  border-left: solid 1px var(--sr-grey);
}

.border-left-sr-green-1 {
  border-left: solid 1px var(--sr-green);
}

.border-left-sr-violet-1 {
  border-left: solid 1px var(--sr-violet);
}

.border-left-sr-orange-2 {
  border-left: solid 2px var(--sr-orange);
}

.border-left-sr-blue-2 {
  border-left: solid 2px var(--sr-blue);
}

.border-left-sr-green-2 {
  border-left: solid 2px var(--sr-green);
}

.border-left-sr-violet-2 {
  border-left: solid 2px var(--sr-violet);
}

.border-left-sr-orange-3 {
  border-left: solid 3px var(--sr-orange);
}

.border-left-sr-blue-3 {
  border-left: solid 3px var(--sr-blue);
}

.border-left-sr-green-3 {
  border-left: solid 3px var(--sr-green);
}

.border-left-sr-violet-3 {
  border-left: solid 3px var(--sr-violet);
}

.border-left-sr-orange-4 {
  border-left: solid 4px var(--sr-orange);
}

.border-left-sr-blue-4 {
  border-left: solid 4px var(--sr-blue);
}

.border-left-sr-green-4 {
  border-left: solid 4px var(--sr-green);
}

.border-left-sr-violet-4 {
  border-left: solid 4px var(--sr-violet);
}

.border-left-sr-orange-5 {
  border-left: solid 5px var(--sr-orange);
}

.border-left-sr-blue-5 {
  border-left: solid 5px var(--sr-blue);
}

.border-left-sr-green-5 {
  border-left: solid 5px var(--sr-green);
}

.border-left-sr-violet-5 {
  border-left: solid 5px var(--sr-violet);
}

.border-left-sr-orange-6 {
  border-left: solid 6px var(--sr-orange);
}

.border-left-sr-blue-6 {
  border-left: solid 6px var(--sr-blue);
}

.border-left-sr-green-6 {
  border-left: solid 6px var(--sr-green);
}

.border-left-sr-violet-6 {
  border-left: solid 6px var(--sr-violet);
}

.border-left-sr-orange-7 {
  border-left: solid 7px var(--sr-orange);
}

.border-left-sr-blue-7 {
  border-left: solid 7px var(--sr-blue);
}

.border-left-sr-green-7 {
  border-left: solid 7px var(--sr-green);
}

.border-left-sr-violet-7 {
  border-left: solid 7px var(--sr-violet);
}

.border-left-sr-orange-8 {
  border-left: solid 8px var(--sr-orange);
}

.border-left-sr-blue-8 {
  border-left: solid 8px var(--sr-blue);
}

.border-left-sr-green-8 {
  border-left: solid 8px var(--sr-green);
}

.border-left-sr-violet-8 {
  border-left: solid 8px var(--sr-violet);
}

.border-left-sr-orange-9 {
  border-left: solid 9px var(--sr-orange);
}

.border-left-sr-blue-9 {
  border-left: solid 9px var(--sr-blue);
}

.border-left-sr-green-9 {
  border-left: solid 9px var(--sr-green);
}

.border-left-sr-violet-9 {
  border-left: solid 9px var(--sr-violet);
}

.border-left-sr-orange-10 {
  border-left: solid 10px var(--sr-orange);
}

.border-left-sr-blue-10 {
  border-left: solid 10px var(--sr-blue) !important;
}

.border-left-sr-darkblue-10 {
  border-left: solid 10px var(--sr-darkblue);
}

.border-left-sr-green-10 {
  border-left: solid 10px var(--sr-green);
}

.border-left-sr-violet-10 {
  border-left: solid 10px var(--sr-violet);
}

/* Border Right Classes */
.border-right-sr-grey-1 {
  border-right: solid 1px var(--sr-grey);
}

.border-right-sr-orange-1 {
  border-right: solid 1px var(--sr-orange);
}

.border-right-sr-blue-1 {
  border-right: solid 1px var(--sr-blue);
}

.border-right-sr-green-1 {
  border-right: solid 1px var(--sr-green);
}

.border-right-sr-violet-1 {
  border-right: solid 1px var(--sr-violet);
}

.border-right-sr-orange-2 {
  border-right: solid 2px var(--sr-orange);
}

.border-right-sr-blue-2 {
  border-right: solid 2px var(--sr-blue);
}

.border-right-sr-green-2 {
  border-right: solid 2px var(--sr-green);
}

.border-right-sr-violet-2 {
  border-right: solid 2px var(--sr-violet);
}

.border-right-sr-orange-3 {
  border-right: solid 3px var(--sr-orange);
}

.border-right-sr-blue-3 {
  border-right: solid 3px var(--sr-blue);
}

.border-right-sr-green-3 {
  border-right: solid 3px var(--sr-green);
}

.border-right-sr-violet-3 {
  border-right: solid 3px var(--sr-violet);
}

.border-right-sr-orange-4 {
  border-right: solid 4px var(--sr-orange);
}

.border-right-sr-blue-4 {
  border-right: solid 4px var(--sr-blue);
}

.border-right-sr-green-4 {
  border-right: solid 4px var(--sr-green);
}

.border-right-sr-violet-4 {
  border-right: solid 4px var(--sr-violet);
}

.border-right-sr-orange-5 {
  border-right: solid 5px var(--sr-orange);
}

.border-right-sr-blue-5 {
  border-right: solid 5px var(--sr-blue);
}

.border-right-sr-green-5 {
  border-right: solid 5px var(--sr-green);
}

.border-right-sr-violet-5 {
  border-right: solid 5px var(--sr-violet);
}

.border-right-sr-orange-6 {
  border-right: solid 6px var(--sr-orange);
}

.border-right-sr-blue-6 {
  border-right: solid 6px var(--sr-blue);
}

.border-right-sr-green-6 {
  border-right: solid 6px var(--sr-green);
}

.border-right-sr-violet-6 {
  border-right: solid 6px var(--sr-violet);
}

.border-right-sr-orange-7 {
  border-right: solid 7px var(--sr-orange);
}

.border-right-sr-blue-7 {
  border-right: solid 7px var(--sr-blue);
}

.border-right-sr-green-7 {
  border-right: solid 7px var(--sr-green);
}

.border-right-sr-violet-7 {
  border-right: solid 7px var(--sr-violet);
}

.border-right-sr-orange-8 {
  border-right: solid 8px var(--sr-orange);
}

.border-right-sr-blue-8 {
  border-right: solid 8px var(--sr-blue);
}

.border-right-sr-green-8 {
  border-right: solid 8px var(--sr-green);
}

.border-right-sr-violet-8 {
  border-right: solid 8px var(--sr-violet);
}

.border-right-sr-orange-9 {
  border-right: solid 9px var(--sr-orange);
}

.border-right-sr-blue-9 {
  border-right: solid 9px var(--sr-blue);
}

.border-right-sr-green-9 {
  border-right: solid 9px var(--sr-green);
}

.border-right-sr-violet-9 {
  border-right: solid 9px var(--sr-violet);
}

.border-right-sr-orange-10 {
  border-right: solid 10px var(--sr-orange);
}

.border-right-sr-blue-10 {
  border-right: solid 10px var(--sr-blue);
}

.border-right-sr-green-10 {
  border-right: solid 10px var(--sr-green);
}

.border-right-sr-violet-10 {
  border-right: solid 10px var(--sr-violet);
}

.border-radius-40 {
  border-radius: 40px !important;
}

.bg-primary {
  background-color: var(--sr-darkblue) !important;
}

.bg-secondary {
  background-color: var(--sr-gray) !important;
}

.bg-secondary-blue {
  background-color: var(--sr-blue) !important;
}

.bg-skyblue {
  background-color: #E3E9F9 !important;
}

.home-hero-bg {
  background-image: url(/images/new-home-UTSR.jpg?066b42dd491ab67c4b4d1c8804f35a23);
  background-size: cover;
  background-position: center center;
}

.bg-landing {
  position: relative;
  background: linear-gradient(0deg, rgb(248, 246, 254) 0%, rgb(244, 242, 249) 100%);
}

.bg-landing img {
  height: 100%;
  position: relative;
}

.price-text {
  color: #9D968C;
  font-size: 40.5px;
  font-weight: 400;
  line-height: 105%;
  letter-spacing: -0.406px;
}

.career-column-heading,
.career-column-text {
  font-size: 18px;
}

.career-column-heading {
  font-weight: 700;
  line-height: 133%;
  margin-bottom: 0.5rem;
}

.career-column-text {
  line-height: 144.5%;
}

.number {
  color: #9D968C;
  font-size: 77.5px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -3.875px;
}

.form-landing {
  background-color: #fff;
  position: fixed;
  top: 30px;
  right: calc((100% - 1280px) / 2);
  z-index: 300;
  max-width: 420px;
}

@media (min-width: 992px) {
  .sticky-form-container {
    position: sticky;
    top: 30px; /* distanza dall’alto */
  }
}
@media (min-width: 821px) {
  .bg-landing {
    height: 480px;
  }
  .bg-landing img {
    left: 0;
  }
}
p {
  margin: 0 0 1rem 0;
  padding: 0 !important;
  letter-spacing: -0.16px !important;
}

h1 {
  line-height: 113% !important;
  letter-spacing: -2.5px !important;
  font-size: 60px !important;
  margin-bottom: 1.5rem !important;
}

h2 {
  line-height: 113% !important;
  letter-spacing: -2.5px !important;
  margin-bottom: 1.5rem !important;
}

h3,
h4 {
  line-height: 141% !important;
  font-weight: 600 !important;
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px !important;
    word-break: break-word;
  }
  .h3, .h4 {
    font-size: 24px !important;
  }
  p {
    margin: 0 0 1rem 0;
    padding: 0 !important;
    letter-spacing: -0.16px !important;
    font-size: 15px !important;
  }
}
.border-transparent {
  border-color: transparent;
}

.no-text-decoration {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

/*---------------------------------------------*/
/*===========================================================navbar desktop===========================================================*/
.logo {
  width: 170px;
}

.w-200 {
  width: 200px !important;
}

/*===========================================================template base===========================================================*/
.show {
  transform: translateY(0);
}

/*==========================================cosa stai cercando==============================================*/
.modal-header {
  border-bottom: transparent !important;
}

.grid-template-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
}

.grid-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-item-small {
  grid-column: span 1;
}

.btn-primary {
  background-color: var(--sr-darkblue) !important;
  border-color: var(--sr-darkblue) !important;
  border-radius: 50px !important;
  color: #fff;
}

.btn-primary:hover {
  background-color: linear-gradient(0deg, #3b4d56, #3b4d56), #0c232f !important;
  border-radius: 50px !important;
  color: #fff;
}

.border-radius-15 {
  border-radius: 15px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.section-welcome {
  background-size: cover;
  background-position-x: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 480px) {
  .section-welcome {
    min-height: 310px;
  }
}
/*
 * ====================================================================
 * NAV MOBILE
 * ====================================================================
 */
.nav-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 8998;
  box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
}

.nav-mobile-link {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 8999;
}

.nav-mobile.open,
.nav-mobile-link.open {
  transform: translateY(0);
  box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.1);
  display: inline;
}

.nav-mobile .link,
.nav-mobile-link .link {
  border-radius: 0px;
  padding: 12px 10px 12px 10px;
  border: 1px solid var(--color-primary-30);
  cursor: pointer;
}

.nav-mobile-link .link {
  display: block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.nav-mobile .links {
  overflow: auto;
  height: calc(100vh - 130px);
  padding: 0 20px 10px;
}

.nav-mobile-link .links {
  overflow: auto;
  height: calc(100vh - 75px);
  padding: 0 20px 10px;
}

.accordion-item {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.bg-transparent {
  background-color: transparent !important;
}

#academic-year.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}

/*===========================================================piano di studio nav tab===========================================================*/
.nav-link.active {
  background-color: white !important;
  color: var(--sr-darkblue) !important;
}

.nav-link {
  background-color: var(--sr-darkblue) !important;
  color: white !important;
  border: 1px solid hsla(0, 0%, 100%, 0.2) !important;
}

/*===========================================================generic===========================================================*/
.min-height-125 {
  min-height: 125px !important;
}

.card-carousel {
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  gap: 30px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 0px;
  margin: 0 10px;
}

.glider {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.glider-next,
.glider-prev {
  top: 38%;
}

.glider-prev {
  left: -4% !important;
}

.glider-next {
  right: -4% !important;
}

.google .glider-next {
  right: -7% !important;
}

/* Desktop/tablet: riempie in larghezza, altezza automatica (niente crop) */
.hero-img-responsive {
  height: auto;
}

/* Mobile: assicura che si veda tutta l’immagine, con eventuale letterboxing */
@media (max-width: 576px) {
  .hero-img-responsive {
    max-height: 60vh; /* evita immagini troppo alte */
    width: 100%;
    height: auto; /* mantiene proporzioni -> immagine intera */
    -o-object-fit: contain;
       object-fit: contain; /* safety: se in futuro imposti un’altezza fissa */
    background: rgba(0, 0, 0, 0); /* nessuno sfondo; cambia se vuoi bande neutre */
  }
}
.google .glider-prev {
  left: -7% !important;
}

.glider-next.glider-next-degree {
  right: -2% !important;
}

.glider-prev.glider-prev-degree {
  left: -4.2% !important;
}

.glider-left-mobile {
  left: -8% !important;
}

.glider-right-mobile {
  right: -8% !important;
}

#card.card {
  border-radius: 0px !important;
  box-shadow: 0px 0px 0px 0px !important;
  border-left: none !important;
  border-right: none !important;
  max-width: 400px !important;
}

.border-left {
  border-left: 1px solid rgba(12, 35, 47, 0.2) !important;
}

.contact-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
}

.icon img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.max-width-400 {
  max-width: 400px !important;
}

.min-height-400 {
  min-height: 400px !important;
}

.btn-outline-light:hover {
  background-color: transparent !important;
}

.content .title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #2c2c2c;
}

.content .subtitle {
  font-size: 14px;
  color: #555;
}

.form-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #f0f0f0;
}

.letter-spacing-3_4 {
  letter-spacing: 3.4px !important;
}

#event-speakers-slider img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

table {
  width: 100% !important;
  margin-bottom: 1rem !important;
  color: #212529 !important;
  background-color: #f8f9fa !important;
  border-collapse: collapse !important;
  /* IMPORTANTISSIMO per togliere i bordi doppi */
  border: 1px solid var(--color-primary-30) !important;
}

table th,
table td {
  padding: 0.75rem !important;
  vertical-align: top !important;
  border: none !important;
  /* NO bordi interni */
}

table thead th {
  background-color: rgba(12, 35, 47, 0.6980392157) !important;
  /* header scuro */
  color: #ffffff !important;
  text-transform: uppercase !important;
  vertical-align: bottom !important;
}

/* Colori righe alternate */
table tbody tr:nth-child(odd) td {
  background-color: #ffffff !important;
  /* riga dispari grigia */
}

table tbody tr:nth-child(even) td {
  background-color: rgba(213, 217, 219, 0.6) !important;
  /* riga pari bianca */
}

/* Colori righe alternate */
table tbody tr:nth-child(odd) th {
  background-color: #ffffff !important;
  /* riga dispari grigia */
}

table tbody tr:nth-child(even) th {
  background-color: rgba(213, 217, 219, 0.6) !important;
  /* riga pari bianca */
}

table tbody tr:first-child th,
table tbody tr:first-child td {
  background-color: rgba(12, 35, 47, 0.6980392157) !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  vertical-align: bottom !important;
}

.bg-sr-white {
  background-color: #F6F5F2 !important;
}

.toggleable-content {
  display: none;
}

@media (min-width: 992px) {
  .toggleable-content {
    display: block !important;
  }
}
.docente-nome {
  font-weight: 600;
  font-size: 0.95rem;
  color: #212529;
}

.docente-link {
  font-size: 0.85rem;
  color: #0d6efd;
  text-decoration: none;
}

.docente-link:hover {
  text-decoration: underline;
}

#cc-main .cm__title {
  font-size: 1.05em !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}

#cc-main .cm__desc,
#cc-main .cm__title {
  padding: 0 1.3rem !important;
}

.height-100 {
  height: 100px;
}
