/* HOMEPAGE TYPOGRAPHY */
.bloqTitle {
  line-height: 1.1em !important;
}

/* TAGLINE */
body .taglineoverlay {
  left: 130px;

  &>img.tagimage {
    position: absolute;
    width: 240px;
    height: 165px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    left: -128px;
    top: 65px;
    opacity: 0.8;
  }

  &>.tagimage {
    opacity: 0.8 !important;
    transition: opacity .4s !important;
  }

  &>.tagimage.faded {
    transition: opacity .6s !important;
    opacity: 0 !important;
  }

  &>.fixed {
    font-family: var(--font-cursive);
    font-size: calc(var(--fs3) + 7px);
    line-height: 1em;
    position: relative;
  }

  &>.taglines .tagline {
    &>img {
      opacity: 0 !important;
      display: none !important;
    }

    &>.taglineinner {

      &>.title {
        font-size: calc(var(--fs1) + 16px);
        font-style: italic;
        position: relative;
      }
    }

    &.animated.preparing {
      transform: translateX(-100%) !important;
    }
  }
}

/* QUICK LINKS */
body section.quicklinks {
  padding: 85px 20px 40px 20px !important;

  &>div.Grid>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 37px;
    flex-wrap: wrap;

    &>li {
      flex: 1 1 auto;
      border-radius: 10px;
      overflow: hidden;
      min-width: 242px;
      max-width: 242px;
      box-shadow: -2px 0 10px 1px rgba(0, 0, 0, 0.18);
      border-radius: 14px;
      border: 6px solid white;
      margin: 0 0;
      transition: 0.4s;
      opacity: 0;
      &>.Item {
        height: 232px;
        margin: 0 0;
        transition: 0.4s;

        .ItemInner {
          background-color: transparent;

          &>.Title {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            transition: 0.4s;
            text-align: center;
            width: 100%;
            font-size: 20px;
            z-index: 1;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0 0;
            padding: 0 20px;
          }

          &>.ItemIcon {
            position: absolute;
            left: 50%;
            bottom: 97px;
            top: auto;
            transform: translateX(-50%);
            width: fit-content;
            height: fit-content;
            background-color: transparent;
            opacity: 0;
            transition: 0.4s;
            z-index: 1;

            &::before {
              content: 'Find out more';
              font-family: var(--font-heading);
              font-style: italic;
              font-size: 19px;
              color: white;
            }
          }

          &::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--item-color);
            left: 0;
            top: 0;
            transition: 0.4s;
          }

          &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 75%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-image: var(--WatermarkWhite);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            opacity: 0.35;
          }
        }
      }

      &:hover {
        min-width: 258px;
        max-width: 258px;
        margin: -8px -8px;

        &>.Item {
          height: 248px;

          &>.ItemInner {
            &>.ItemIcon {
              opacity: 1;
            }

            &>.Title {
              transform: translate(-50%, -120%);
            }
          }
        }
      }
    }
  }
}


/* WELCOME */
body section.mod_chunky_welcome.homewelcome {
  padding: 100px 75px 0px 50px !important;

  div.Welcome {
    container-type: inline-size;
    position: relative;

    div.WelcomeFlex {
      margin: 0 0 0 auto;
      max-width: clamp(1000px, 88%, 1400px);
      padding-right: clamp(calc(400px + 80px), calc(35.2% + 80px), calc(560px + 80px));
      min-height: calc(242px + clamp(400px, 35.2cqw, 560px));
      padding-bottom: 110px;
      z-index: 1;

      &>label {
        flex: 0 1 198px;
        padding: 10px 10px;
        color: white !important;
        border: none;
        background-color: rgb(var(--color3));
        margin-bottom: 28px;
        max-height: 40px;
        max-width: 200px;

        &:hover {
          background-color: rgb(var(--color1));
        }
      }

      &>input:checked+label {
        background-color: rgb(var(--color1));

        &:hover {
          background-color: rgb(var(--color3));
        }
      }

      &>h3.Title {
        line-height: 1.1em;
      }

      &>.ItemImage {
        width: 40%;
        padding-top: 242px;

        &>.ItemBefore {
          position: relative;
          top: 0;
        }

        &::before {
          content: '';
          position: absolute;
          width: 300px;
          height: 300px;
          background-image: var(--WatermarkLightGrey);
          background-position: 100% 100%;
          background-size: contain;
          background-repeat: no-repeat;
          right: 30px;
          top: 242px;
          transform: translateY(-100%);
          opacity: 0.4;
        }
      }

      &>.LinkWrapper {
        &>.buttonstyle {
          padding: 13px 30px;
        }
      }
    }

    &::before {
      content: '';
      position: absolute;
      width: 100vw;
      height: calc(100% - 22px);
      top: 22px;
      right: 20%;
      background-color: rgb(var(--color5));
      border-radius: 0 14px 0 0;
    }

    &::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 200px;
      background-color: rgb(var(--color1));
      right: -80px;
      bottom: 0;
    }
  }

  &::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: rgb(var(--color1));
    left: 0;
    bottom: 0;
    z-index: 1;
  }
}

/* EVENTS */
body section.mod_bubbles_slider.homeevents {
  --SliderItemMinWidth: 280px;
  --SliderGridGap: 60px;
  --SliderRowHeight: 225px;
  background-color: rgb(var(--color1));
  padding-top: 40px !important;

  &>h2.bloqTitle {
    color: white;
    margin-bottom: 50px;

    &>span {
      color: rgb(var(--color3));
    }
  }

  div.Slider {
    max-width: 1270px;
    padding: 0 0 calc(var(--nav-size) + 90px);

    &>.nav {
      color: white;

      &.last {
        left: calc(50% - 143px);
      }

      &.next {
        right: calc(50% - 143px);
      }
    }

    &>.SliderInner>ul>li .Item .ItemInner {
      .ItemDate {
        width: 97px;
        height: 97px;
        border-radius: 8px;
        background-color: rgb(var(--color2));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        &>d:first-child {
          font-size: 35px;
          line-height: 35px;
        }

        &>d:nth-child(2) {
          font-size: 19px;
          line-height: 19px;
        }

        &>i {
          left: 114px;
          font-size: 14px;
          top: 13px;
          color: white;

          &~d {
            left: 130px;
            color: white;
            font-size: 13px;
            top: 13px;
          }
        }

        &:not(:has(i))::before {
          left: 117px;
          color: white;
        }

        &:not(:has(i))::after {
          left: 134px;
          color: white;
        }
      }

      &>.Title {
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
        top: 31px;
        padding-left: 96px;
        color: white;
      }

      .ItemContent .paracontent .cardBottomLinks {
        padding-left: 100px;

        &>a {
          display: inline-grid;
          place-items: center;
          background-color: rgba(var(--button-background-color), 1);
          padding: 8px 15px;
          font-size: var(--button-font-size);
          color: white;
          cursor: pointer;
          text-decoration: none;
          text-align: center;
          text-transform: var(--button-text-transform);
          border: 1px solid white;
          border-color: white;
          margin: var(--button-gap);
          border-radius: var(--button-border-radius);
          font-family: var(--button-font-family);
          font-weight: var(--button-font-weight);
          line-height: 1.5em;
          margin: 0;
          bottom: 0;
          transition: 0.1s;

          &:hover {
            background-color: rgb(var(--color7));
            border-color: rgb(var(--color7));
          }

          &::before {
            display: block;
            content: var(--addtocalendar);
          }

          &::after {
            display: none;
          }
        }
      }

      &:has(.ItemContent .paracontent .cardBottomLinks a:hover) {
        &>.ItemDate {
          background-color: rgb(var(--color7));
        }
      }

      &::before {
        top: 48px;
        background-color: white;
      }

      &::after {
        width: 11px;
        height: 11px;
        top: 43px;
        background-color: white;
      }
    }
  }

  &>.filterSourceSideBySideButtons .sourceButtonWrapper .calendarPageLink {
    font-size: 13px;
    min-width: 150px;
    color: white;

    &::after {
      content: 'VIEW ALL';
    }
  }
}


body .FacebookSliderContainer {
  position: relative;
  margin-top: 100px;
  margin-bottom: -35px;
  z-index: 1;

  &>section.sociallinks {
    position: absolute;
    z-index: 1;
    left: 156px;
    top: 0;
    margin-top: 0;

    &>div.Icon>ul>li {
      border-radius: 50%;
      overflow: hidden;

      &>.Item {
        background-color: rgb(var(--grey6));

        .ItemInner .ItemIcon {
          width: 54px;
          height: 54px;
          font-size: 25px;
        }

        &:hover {
          background-color: rgb(var(--color2));
        }
      }

      &:not(:nth-child(1)) {
        margin-left: 20px;
      }
    }
  }

  &>section.mod_cards_slider {
    &>h2.bloqTitle {
      position: absolute;
      top: 73px;
      left: 155px;
    }

    &>div.Slider {
      padding-right: 80px;
      padding-left: min(612px, 36vw);
      max-width: none;

      &>.SliderInner ul {
        --SliderGridGap: 28px;
        --SliderRowHeight: 385px;

        &>li .Item {
          &>.ItemInner {
            justify-content: flex-start;
            justify-items: flex-start;
            height: 200px;
            padding-top: 0px;
            transition: 0.4s;

            &>.ItemIcon {
              background-color: white;
              color: rgb(var(--color2));
              top: 0;
              left: 0;
              transform: translateX(0);
              margin-bottom: 16px;
              position: relative;
            }

            &>.ItemDate {
              font-size: 13px;
            }

            &>.Title {
              font-size: 0;
              display: inline-grid;
              place-items: center;
              background-color: rgba(var(--button-background-color), 1);
              padding: 8px 15px;
              color: white;
              cursor: pointer;
              text-decoration: none;
              text-align: center;
              text-transform: var(--button-text-transform);
              border: 1px solid rgba(var(--grey10), 0.25);
              margin: var(--button-gap);
              border-radius: var(--button-border-radius);
              font-family: var(--button-font-family);
              font-weight: var(--button-font-weight);
              margin: 0;
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              bottom: 30px;
              min-width: 130px;
              opacity: 0;
              transition: 0.4s;

              &:hover {
                background-color: white;
                border: 1px solid white;
                color: rgb(var(--color1));

              }

              &::before {
                content: 'READ MORE';
                font-size: var(--button-font-size);
                line-height: 1.5em;
              }
            }

            &>.ItemContent {
              height: auto;
              opacity: 1;
              margin-top: 7px;

              &>.paracontent {
                font-size: 14px;
                padding: 0 15px;
                opacity: 1;
                transition: 0.4s;

                &.hover {
                  opacity: 0;
                  transition: 0.4s;
                  position: absolute;
                  left: 0;
                  top: 118px;
                  width: 100%;
                  height: fit-content;
                  display: block !important;
                }
              }
            }


            &::before {
              background: linear-gradient(0deg, rgba(var(--color2), 1) 150px, rgba(var(--color2), 0) 100%);
            }
          }

          &:hover {
            &>.ItemInner {
              height: 100%;
              padding-top: 30px;

              &>.Title {
                opacity: 1;
              }

              &>.ItemContent .paracontent {
                opacity: 0;

                &.hover {
                  opacity: 1;
                }
              }

              &::before {
                background-color: rgb(var(--color2));
                height: 100%;
              }
            }
          }
        }
      }

      &>.nav {
        top: 260px;

        &.last {
          left: 155px;
        }

        &.next {
          left: 215px;
        }
      }
    }
  }
}

/* NEWSLETTERS */
body .NewslettersContainer {
  margin: 0 20px;
  max-width: 1160px;
  padding: 95px 0 30px clamp(300px, 29vw, 500px);
  margin: 0 auto;
  position: relative;

  &>section.mod_chunky_slider {
    padding-right: 20px;
    position: static;
    --SliderGridGap: 33px;
    --SliderRowHeight: 265px;

    &>h2.bloqTitle {
      position: absolute;
      left: 20px;
      top: 110px;
      text-align: left;
    }

    &>div.Slider {
      &>.SliderInner>ul>li .Item {
        &>.ItemBefore {
          top: auto;
          bottom: 30px;
          transform: translate(-50%, 0);
        }

        &>.ItemInner {
          justify-content: flex-end;
          align-items: center;
          padding-bottom: 30px;
          transition: 0.4s;
          background-image: var(--SocialLogo);
          background-size: cover;
          background-position: 50% 50%;

          &>.Title {
            display: none;

            &.newsletter {
              display: block !important;
              position: absolute;
              top: -20px;
              left: 50%;
              transform: translateX(-50%);
              display: inline-block;
              padding: 0 15px;
              color: rgb(var(--grey10));
              background-color: rgb(var(--color2));
              font-size: 12px;
              font-weight: 600;
              letter-spacing: 0;
              text-align: left;
              max-width: calc(100% - 10px - var(--general-border-radius) - var(--general-border-radius));
              min-width: unset;
              height: 40px;
              line-height: 40px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              border-radius: var(--nav-border-radius);
              z-index: 2;
              transition: 0.4s;
            }
          }

          &>.ItemDate {
            background-color: transparent;
            position: relative;
            transform: translate(0, 0);
            left: 0;
            top: 0;
            z-index: 2;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5em;
            height: fit-content;
          }

          &>.ItemContent .paracontent {
            display: none;
            position: relative;
            z-index: 2;

            &.newsletter {
              display: block !important;
              color: white;
              font-weight: 700;
              font-size: 19px;
              max-width: 200px;
              margin: 0 auto;
              text-align: center;
            }
          }

          &::before {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background-image: var(--item-image);
            background-size: cover;
            background-position: 50% 50%;
            background-color: transparent;
          }

          &::after {
            height: 100%;
            background: linear-gradient(0deg, rgba(var(--color9), 1) 0%, rgba(var(--color9), 0.2) 100%);
            z-index: 1;
            border-radius: 10px;
          }
        }

        &:hover {
          &>.ItemInner {
            padding-bottom: 100px;

            &::after {
              background: rgba(var(--color9), 0.85);
            }
          }
        }
      }
    }
  }

  &>section.LinksBloq {
    position: absolute;
    left: 20px;
    top: 280px;

    &>div.Button .Item {
      padding: 12px 30px;

      &>.ItemInner .ItemIcon {
        display: none;
      }
    }
  }

  &::before {
    content: '';
    position: absolute;
    width: calc(100vw - 74px);
    height: 100%;
    border-radius: 20px;
    background-color: rgb(var(--color4));
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}


/* STUDENTS */
section.HomeStudents {
  --cut-out-module-max-height: 550px;
  padding-top: 45px !important;

  &>h2.bloqTitle {
    text-align: center;
    margin-bottom: 50px;
  }

  &>div.Cutouts>ul {
    max-width: 1340px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 17px;

    &>li {
      --color: #d91c00;
      min-width: 320px;
      max-width: 320px;
      margin: 20px 0;

      &>.Item {
        height: 390px;
        overflow: hidden;

        &>.ItemInner .ItemOverflow .ItemBefore {
          position: relative;
          left: 0;
          top: 0;
          max-width: 320px;
          clip-path: polygon(0 0, 100% 0, 100% 65%, 0 65%);
        }

        &>.Title {
          top: auto;
          transform: translateX(-50%);
          bottom: 8px;
          height: 64px;
          border: 0px solid transparent;
          font-size: 0;
          padding: 0 0;
          transition: 0s;

          &:hover {
            border: 6px solid white;
            background-color: var(--color);
            color: white;
            font-family: var(--font-normal);
            letter-spacing: 0;
            font-weight: 600;
            font-size: 18px;
            padding: 14px 10px;
            min-width: 168px;
            box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25), 0 0 4px rgba(0, 0, 0, 0.12);
            margin: 0;
            border-radius: 40px;
          }

          &::after {
            box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25), 0 0 4px rgba(0, 0, 0, 0.12);
            width: 52px;
            height: 52px;
            background-color: var(--color);
            border: 6px solid white;
          }
        }

        &::before {
          content: '';
          position: absolute;
          width: 300px;
          height: 300px;
          left: 50%;
          top: 55px;
          transform: translateX(-50%);
          background-color: var(--color);
          border-radius: 50%;
        }

        &::after {
          content: '';
          position: absolute;
          width: 300px;
          height: 300px;
          left: 50%;
          top: 25px;
          transform: translateX(-50%);
          border-radius: 50%;
          border: 30px solid white;
          clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
        }
      }

      &:nth-of-type(4n + 2) {
        --color: #fec400;
      }

      &:nth-of-type(4n + 3) {
        --color: #00a653;
      }

      &:nth-of-type(4n + 4) {
        --color: #009ae1;
      }
    }

    &>.switcherradio:checked+li {
      max-width: 1190px;
      margin: 0 auto;


      &>.Item {
        &>.Title {
          transform: translate(0, 0);
          right: 0;
          top: 34px;
          bottom: auto;
          left: auto;
          background-color: rgb(var(--grey6)) !important;
          width: 48px !important;
          height: 48px !important;
          border-radius: 50% !important;
          overflow: hidden !important;
          min-width: 48px !important;
          padding: 0 !important;
          font-size: 0 !important;
          border: 0px solid transparent;
          box-shadow: none;

          &::before {
            display: none !important;
          }

          &::after {
            content: "\58" !important;
            background-color: transparent !important;
            font-size: 15px;
            border: none;
          }

          &:hover {
            background-color: rgb(var(--grey7)) !important;
          }
        }

        &>.ItemInner .ItemOverflow {
          &>.ItemRight {
            margin: 45px 22px 0px 45px;
            background-color: var(--color);
            padding: 36px 4% 25px 4%;
            max-height: 330px;

            &>.ItemSubtitle {
              color: white;
              font-family: var(--font-normal);
              font-weight: 600;
              font-style: normal;
              font-size: calc(var(--fs4) - 4px);
            }

            &>.ItemContent {
              &>.paracontent {
                color: white;
              }
            }
          }
        }

        &::before {
          left: 160px;
        }

        &::after {
          left: 160px;
        }
      }

      &::before {
        border: 6px solid white;
        background-color: var(--color);
        color: white;
        font-family: var(--font-normal);
        letter-spacing: 0;
        font-weight: 600;
        font-size: 18px;
        padding: 12px 10px;
        min-width: 136px;
        box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25), 0 0 4px rgba(0, 0, 0, 0.12);
        margin: 0;
        border-radius: 40px;
        left: 160px;
        top: auto;
        bottom: -10px;
      }
    }
  }
}


body section.QuotesBloq.homevalues {
  padding: 100px 6vw !important;
  background-image: linear-gradient(to bottom, white, rgb(var(--color4)));

  &>h2.bloqTitle {
    position: absolute;
    left: calc(50% + 2vw);
    top: 100px;
  }

  &>div.Blockquote ul {
    max-width: none;
    padding-left: 50%;
    padding-top: 190px;
    min-height: 670px;

    &>li {
      padding-left: 2vw;

      &>.Item .ItemInner {
        &>.Title {
          letter-spacing: 0;
          font-style: italic;
          text-transform: none;
          font-size: calc(var(--fs0) - 8px);
          color: var(--color);
        }

        &>.ItemContent {
          color: rgba(var(--color1), 1);
          font-size: calc(var(--fs6) + 1px);
          font-family: var(--font-normal);
        }
      }
    }

    &>li:nth-of-type(1) {
      --color: #004581;
    }

    &>li:nth-of-type(2) {
      --color: #e3c351;
    }

    &>li:nth-of-type(3) {
      --color: #9abd59;
    }

    &>li:nth-of-type(4) {
      --color: #004581;
    }

    &>li:nth-of-type(5) {
      --color: #b74870;
    }

    &>li:nth-of-type(6) {
      --color: #d38d3b;
    }


  }
}

@media only screen and (min-width: 1301px) {
  body section.QuotesBloq.homevalues {

    &>div.Blockquote ul {
      &>li {

        &>.Item .ItemInner {
          &>.Title {}

          &>.ItemContent {}
        }
      }

      &>.switcherlabel {
        position: absolute;
        width: 140px;
        height: 140px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        margin: 0;
        border-radius: 0;
        opacity: 1;
        transition: 0.3s;

        &::before {
          content: attr(data-title);
          position: absolute;
          width: 100%;
          left: -1px;
          top: 63px;
          color: white;
          font-size: 23px;
          font-weight: 600;
          transform: scaleY(-1) scaleX(-1) rotate(-32deg);
          text-align: center;
        }
      }

      &>.switcherlabel:nth-of-type(1) {
        left: 57.8px;
        top: 229px;
        background-image: var(--LeafPurple);
        transform: scaleY(-1) scaleX(-1) rotate(32deg);

        &:hover {
          transform: scaleY(-1) scaleX(-1) rotate(44deg);
        }
      }

      &>.switcherlabel:nth-of-type(4) {
        left: 388.8px;
        top: 229px;
        background-image: var(--LeafBlue);
        transform: scaleY(-1) scaleX(-1) rotate(32deg);

        &:hover {
          transform: scaleY(-1) scaleX(-1) rotate(44deg);
        }
      }

      &>.switcherlabel:nth-of-type(2) {
        left: 346.8px;
        top: 353px;
        background-image: var(--LeafYellow);
        transform: scaleY(-1) scaleX(-1) rotate(70deg);

        &:hover {
          transform: scaleY(-1) scaleX(-1) rotate(82deg);
        }
      }

      &>.switcherlabel:nth-of-type(3) {
        left: 95.8px;
        top: 356px;
        background-image: var(--LeafGreen);
        transform: scaleY(-1) scaleX(-1) rotate(-6deg);

        &:hover {
          transform: scaleY(-1) scaleX(-1) rotate(6deg);
        }
      }

      &>.switcherlabel:nth-of-type(5) {
        background-image: var(--LeafPink);
        transform: scaleY(1) scaleX(-1) rotate(0deg);
        top: 86px;
        left: 78.8px;

        &:hover {
          transform: scaleY(1) scaleX(-1) rotate(12deg);
        }

        &::before {
          transform: scaleY(1) scaleX(-1) rotate(32deg);
        }
      }

      &>.switcherlabel:nth-of-type(6) {
        left: 346.8px;
        top: 83px;
        background-image: var(--LeafOrange);
        transform: rotate(0deg);

        &:hover {
          transform: rotate(12deg);
        }

        &::before {

          transform: rotate(-32deg);
        }
      }

      &::before {
        content: '';
        position: absolute;
        width: 50%;
        height: 670px;
        background-image: var(--MainTree);
        background-size: contain;
        background-position: 0% 100%;
        background-repeat: no-repeat;
        bottom: 0;
        left: 0;
      }
    }
  }
}

@media only screen and (max-width: 1300px) {
  body .NewslettersContainer::before {
    width: 100vw;
  }

  body section.QuotesBloq.homevalues {
    padding: 0 0 0 0 !important;

    &>h2.bloqTitle {
      left: 20px;
      top: 0;
    }

    &>div.Blockquote ul {
      padding: 105px 20px 50px 20px !important;
      min-height: 0;

      &>li {
        padding: 0 0 0 0;

        &>.Item .ItemInner {
          &>.Title {}

          &>.ItemContent {}
        }
      }
    }
  }
}

@media only screen and (max-width: 1000px) {
  body .taglineoverlay {
    left: 0;
  }

  section.HomeStudents {
    &>div.Cutouts>ul {
      justify-content: center;
      gap: 20px;

      &>li {
        max-width: 280px;
        min-width: 280px;

        &>.Item {
          &::before {
            width: 280px;
            height: 280px;
          }

          &::after {
            width: 280px;
            height: 280px;
          }

          &>.ItemInner .ItemOverflow .ItemBefore {
            clip-path: polygon(0 0, 100% 0, 100% 63%, 0 63%);
            max-width: 280px;
          }
        }

      }

      &>.switcherradio:checked+li {
        &>.Item {
          &>.Title {
            top: 0;
          }

          &>.ItemInner .ItemOverflow {
            &>.ItemBefore {
              display: none !important;
            }

            &>.ItemRight {
              margin: 0 !important;
            }
          }

          &::before,
          &::after {
            display: none !important;
          }
        }

        &::before {
          left: 85px;
        }
      }
    }
  }

  body .NewslettersContainer {
    padding: 290px 0 30px 0;

    &>section.mod_chunky_slider {
      margin: 0 auto;
      max-width: 800px;
      padding-left: 20px;

      &>h2.bloqTitle {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
        text-align: center;
      }

      div.Slider .nav {
        display: none !important;
      }
    }

    &>section.LinksBloq {
      left: 50%;
      transform: translateX(-50%);
      top: 190px;
    }
  }

  body section.mod_chunky_welcome.homewelcome {
    padding: 100px 20px 0px 20px !important;

    & div.Welcome {
      & div.WelcomeFlex {
        padding-right: 0;
        flex-direction: column;

        &>label {
          margin-left: 0 !important;
        }

        &>.ItemImage {
          display: none;
        }
      }

      &::before {
        width: calc(100% + 40px);
        right: -20px;
      }

      &::after {
        display: none;
      }
    }
  }

  body .FacebookSliderContainer {
    padding-top: 60px;
    margin-top: 60px;

    &>section.sociallinks {
      left: 50%;
      transform: translateX(-50%);
    }

    &>section.mod_cards_slider {
      &>h2.bloqTitle {
        left: 50%;
        transform: translateX(-50%);
        top: 0px;
        margin: 0;
      }

      &>div.Slider {
        padding: 180px 20px 0 20px !important;

        &>.nav {
          top: 105px;

          &.last {
            left: calc(50% - 40px);
            transform: translateX(-50%);
          }

          &.next {
            left: calc(50% + 40px);
            transform: translateX(-50%);
          }
        }
      }
    }
  }
}