.container {
  width: min(90%, 1800px);
  max-width: unset;
}
.services-mobile {
  display: none;
}
.cover {
  position: relative;
  overflow-x: clip;
}

.cover .grade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(
    180deg,
    rgb(20, 51, 91) 0%,
    rgb(14 186 209 / 25%) 100%
  );
  mix-blend-mode: multiply;
}
@media (min-width: 992px) and (min-height: 651px) {
  .cover {
    min-height: 670px;
    height: 82vh;
  }
}

@media (max-height: 650px) {
  .cover {
    min-height: 590px;
  }
}

.cover-slick {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.cover-slick div {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cover .toggle-slick {
  position: absolute;
  top: 125px;
  left: 55px;
  background: none;
  border: 0;
  z-index: 3;
  background-color: #ffffff76;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
}

.cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;

  max-width: 600px;
  margin-top: -60px;
}

/**/
.message {
  width: min(100%, 700px);
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 12rem 7.25% auto auto;
  color: #fff;
  height: fit-content;
  line-height: 0.9;

  & h2 {
    font-size: calc(2.7vw + 16px);
    font-weight: 900;
    line-height: 1;
  }

  & span {
    display: block;
    font-weight: 325;
    position: relative;
    font-size: calc(1.8vw + 16px);
  }

  & a.btn {
    margin-top: 2rem;
    padding: 0.25rem 2rem;
    border-radius: 100vw;
    font-size: calc(0.251vw + 16px);
  }
}
video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: 1s opacity;
  object-fit: cover;
  z-index: -1;
}

#toggle-video {
  position: absolute;
  top: 125px;
  right: 15px;
  background: none;
  border: 0;
}

/**/
@media (min-width: 992px) {
  section.life {
    margin-top: -4rem;
  }
}

.services {
  position: relative;
  top: -87px;
  width: 100%;
  z-index: 5;
}
.services figcaption {
  white-space: normal;
  text-align: center;
}
.services .row {
  justify-content: space-around;
}

.services-slick {
  padding: 0.5rem 1rem;
  margin: 0 1rem;
}

.services .sub {
  position: absolute;

  display: block;
  width: 100%;
  max-width: 1440px;
  margin: -7rem auto 0;
  height: 180px;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;

  &::after {
    content: "";
    position: absolute;
    top: -5px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 21px solid #fff;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 -0.3rem 0.15rem rgba(0, 0, 0, 0.05));
  }

  & a {
    font-weight: 500;
  }

  .close {
    display: none;
  }
}

.services .sub .row {
  background-color: #fff;
  height: calc(100% - 2rem);
  position: absolute;
  width: calc(100% - 2rem);
  list-style-type: none;
  padding-inline: 0;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.3);
  inset: 0;
  margin: auto;
  border-radius: 20px;
}

.services .srv_6:hover .sub {
  display: block;
}

.services a {
  text-align: center;
  display: block;
  padding: 1rem 0.25rem;
  margin: 1rem;
  font-size: calc(0.4vw + 16px);
  color: var(--text);
  font-weight: 700;

  & figure {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.services .sub_srv {
  padding: 0;
  margin: auto;
  font-size: calc(0.12vw + 16px);

  &:hover img {
    transform: scale(1.2);
  }
}

.services a .icon {
  display: block;
  width: min(100%, 120px);
}

.services a .icon img {
  width: 100%;
  max-width: 104px;
  max-height: 89px;
  object-fit: cover;
  display: block;
  margin: auto;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}
.services a .icon img {
    transition: transform 0.3s ease, filter 0.3s ease !important;
    display: block;
    margin: 0 auto;
}

.services a:hover .icon img {
    transform: translateY(-5px); 
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1)); 
}

.services a:hover figcaption {
    color: var(--prime1); 
    transition: color 0.3s ease;
}
@media (max-width: 1200px) {
  .services a .icon img {
    max-width: 125px;
  }
}

.services .sub .row {
  align-items: center;
}
.services .sub .row > div {
  flex: 1;
}
.services .sub div:not(:last-child) a {
  position: relative;
  color: var(--text);
  font-weight: 500;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ddd;
    width: 1px;
  }
}

.services .sub .icon {
  aspect-ratio: 1;
  width: 50px;
  margin: auto;
  text-align: center;
}
.services .sub img {
  width: min(100%, 40px);
}
.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
    width: 100%;
}

.slick-dots li {
    margin: 0 5px !important;
    border: none !important; 
    background: none !important;
}

.slick-dots li button {
    font-size: 0 !important;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ccc;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #834276;
}
@media (max-width: 600px) {
    .container {
        width: 96% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .services-slick {
        margin: 0 !important;
        padding: 0 !important;
    }

    .services-slick .slick-slide {
        padding: 0 1px !important; 
    }

    .services a {
        margin: 5px 0 !important; 
        padding: 0 !important;
    }

    .services a .icon {
        width: 80px !important; 
        height: 75px !important;
        margin: 0 auto 5px !important;
    }

    .services a .icon img {
        max-width: 70px !important;
        max-height: 65px !important;
    }

    .services figcaption {
        font-size: 13px !important;
        line-height: 1.1;
        display: block;
        min-height: 32px; 
    }
}


/**/
.mokedbox {
  z-index: 1;
  display: none;
  position: absolute;
  width: 350px;
  height: 375px;
  padding: 1.5rem 2.5rem;
  background-color: #fff;
  border-radius: 0 25px 25px 0;
  left: -450px;
  bottom: 150px;
  z-index: 1;
}

.mokedbox.open {
  left: 0;
  display: block;
}

.mokedbox .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mokedbox .parag {
  padding-right: 1.2rem;
  color: var(--site1);
  display: flex;
  flex-direction: column;
}

.mokedbox img {
  width: 45px;
}

.mokedbox span {
  line-height: 1;
  font-size: 0.82em;
}

.mokedbox a {
  color: var(--site1);
  font-weight: 700;
  font-size: 2rem;
}

.mokedbox .closeout {
  position: absolute;
  right: -1.8rem;
  top: 0;
  color: #fff;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: block;
}

/* Articles */

.articles {
  position: relative;
  padding: 3rem 2rem;
}
.articles::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 18%;
  width: 630px;
  height: 400px;
  background-image: url(./images/deco.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}
.articles h2 {
  font-weight: bold;
}
.articles article {
  display: block;
  height: 100%;
}

.article {
  display: block;
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
}
.article img {
  display: block;
  width: 100%;
}
.article .info {
  padding: 1rem;
}
.article h3 {
  font-weight: bold;
}

.read-more {
  background: #fff;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-weight: bold;
  color: inherit;
  border: 1px solid #ddd;
}

/**/
.articles {
  position: relative;
}
.articles .title {
  justify-content: space-between;
}
.articles .gradient {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  border-radius: 40px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(2, 11, 36) 95%
  );
}
.articles .row:not(.title) {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  height: 750px;
  @media (max-width: 1600px) {
    height: 55vh;
  }
}
.articles .wrap a {
  position: relative;
  transition: all 0.2s ease;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: calc(0.15vw + 16px);

  & .inner {
    width: 100%;
    margin-top: auto;
    bottom: 1rem;
    position: absolute;
    bottom: 0;
    transition: all 0.5s ease;

    & > span {
      font-size: calc(0.5vw + 16px);
    }
  }

  & h3 {
    font-size: calc(1.5vw + 16px);
    margin-bottom: 2rem;
    position: relative;
    font-weight: 900;
  }
}

.articles .row > div:hover a .inner {
  bottom: 15%;
}
.articles h3::after {
  position: absolute;
  content: "";
  bottom: -1rem;
  width: 100px;
  height: 4px;
  right: 0;
  border-radius: 5px;
  background-color: var(--prime2);
}
.articles .row > div {
  position: relative;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1200px) {
  .articles .row > div {
    padding: 1.5rem 1rem;
  }
  .articles a {
    & h3 {
      font-size: calc(1.2vw + 16px);
    }
  }
}

.articles .div1 {
  grid-area: 1 / 1 / 3 / 3;
}
.articles .div1 h3 {
  width: 84%;
  font-size: calc(2.5vw + 16px);
  line-height: 1;
}
.articles .div2 {
  grid-area: 1 / 3 / 2 / 4;
}
.articles .div3 {
  grid-area: 2 / 3 / 3 / 4;
}
.articles em {
  color: var(--prime2);
  margin-left: 10px;
}
.articles .time {
  margin-right: 1rem;
}

.side-banners > div {
  position: relative;
  margin-bottom: 10px;
  display: flex;
}
.side-banners > div::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -29px;
  margin: auto;
  border: 2px solid var(--prime2);
  width: calc(100% + 18px);
  height: calc(100% + 16px);
  border-radius: 20px;
}
.side-banners > div:nth-child(2) a{
    width: 190px;
}

.side-banners > div:first-child::after {
  left: -142px;
  width: 100%;
}
.side-banners > div:nth-child(2)::after {
    left: -61px;
    width: 100%;
}
.side-banners a,
.side-banners button {
  z-index: 3;
  position: relative;
  cursor: pointer;
  background-color: #eceff1;
  display: block;
  padding: 0.65rem;
  padding-left: 0;
  border: 0;
  outline: 0;
  width: 93%;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  color: var(--text);
  font-size: calc(0.4vw + 10px);
  border-radius: 0 12px 12px 0;
}
.side-banners a {
  width: 150px;
  
  
  &:hover {
    background-color: var(--prime2);
  }
}
.side-banners button {
  &:hover {
    background-color: var(--prime2);
  }
}
.side-banners img {
  margin-left: 0.1rem;
  mix-blend-mode: multiply;
}
.side-banners {
  z-index: 1;
  width: 230px;
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.side-banners.side-banners-left {
  left: 0;
  border-radius: 0 15px 15px 0;
}
/* News * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.news {
  padding: 1rem;
  background: #fff;
}

.news .content {
  position: relative;
}

.news .buttons {
  position: absolute;
  top: 1.9rem;
  left: 1.9rem;
}

.news a {
  color: #000;
  display: block;
}

@media (min-width: 768px) {
  .news a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.news h2 {
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.219rem 0.75rem;
  margin: 0;
  border-radius: 2rem;
  z-index: 5;
}

.news h2 a {
  color: inherit;
}

@media (min-width: 992px) {
  .bn-news {
    padding-right: 100px;
  }
}

.bn-news ul li a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 0.36rem 0;
  color: inherit;
}

.bn-news ul li a:hover {
  color: #000;
}

.bn-effect-scroll .bn-news ul li {
  padding: 0 1rem;
}

.news .date {
  font-weight: bold;
}

.news .date:after {
  content: " | ";
  margin: 0 10px;
}

.news-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #111;
  color: #fff;
  background: none;
  font-size: 14px;
}

.bn-controls {
  left: 0;
  right: auto;
}

.bn-controls button {
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  padding: 0;
  margin-right: 5px;
}

.bn-arrow {
  top: -1px;
}

.bn-pause::before,
.bn-pause::after {
  background-color: #fff;
}
.bn-play::after {
  border-left-color: #fff;
}

.bn-controls button:hover {
  background-color: #111;
  color: #fff;
}

/**/
.row.title {
  margin-block: 5rem;
  align-items: center;

  & a {
    font-weight: 500;
    font-size: calc(0.2vw + 16px);
    color: var(--prime1);

    &:hover {
      transform: scale(1.1);
    }
  }
}

/* Fast Nav */

.fast-nav {
  /* position: absolute;
  left: -450px;
  bottom: -5px;
  background-color: #fff;
  width: 365px;
  height: 365px;
  align-items: center;
  text-align: center;
  border-radius: 0 35px 35px 0;
  z-index: 2; */
}

.fast-nav.slide {
  left: 0;
  display: block;
}

.fast-nav .closer {
  position: absolute;
  right: -25px;
  width: 110%;
  top: 0;
  text-align: right;
}

.fast-nav .closer span {
  color: #fff;
}

.fast-nav .title {
  text-align: right;
  margin-bottom: 2.75rem;
  font-size: 1.7rem;
  color: var(--prime1);
  font-weight: 750;
}

.fast-navigation .form-group {
  margin-bottom: 1rem;
}

.fast-navigation {
  width: 100%;
  max-width: 277px;
  padding: 2rem 0 5px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.fast-navigation h2 {
  font-weight: bold;
  margin: 0;
  margin-bottom: 5px;
  font-size: 14px;
}

.fast-navigation:after {
  clear: both;
  display: block;
  content: "";
}

.fast-navigation select {
  border: 1px solid var(--prime1);
  margin-left: 5px;
  background: #fff;
  padding: 5px 10px;
  border: 1px solid rgba(from var(--prime1) r g b / 0.2);
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  height: 61px;
  width: 277px;
}

.fast-navigation label[for="smart_nav_select"] {
  padding: 0 1rem;
  margin-top: -10px;
  margin-right: 3px;
  font-size: 1.1rem;
}

.fast-navigation label[for="mobile_smart_nav_select"] {
  margin-top: -42px;
  margin-right: 87px;
}

/**/

.mokedbox.open {
  left: 0;
  display: block;
}

.mokedbox .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mokedbox .parag {
  padding-right: 1.2rem;
  color: var(--site1);
  display: flex;
  flex-direction: column;
}

.mokedbox img {
  width: 45px;
}

.mokedbox span {
  line-height: 1;
  font-size: 0.82em;
}

.mokedbox a {
  color: var(--prime1);
  font-weight: 700;
  font-size: 2rem;
}

.mokedbox .closeout {
  position: absolute;
  right: -1.8rem;
  top: 0;
  color: #fff;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: block;
}

.fast-navigation button {
  background: var(--prime1);
  border: 0;
  border-radius: 10px;
  padding: 5px 10px;
  color: #fff;
  font-weight: 700;
  width: fit-content;
  text-align: center;
  padding: 4px 10px;
  margin-top: 1.25rem;

  font-size: 1.55rem;
  font-weight: 500;
  height: 50px;
  transition: all 0.2s ease-in;
}

.fast-navigation button:hover {
  transform: scale(1.02);
}
/**/

.life figure {
  display: flex;
  margin: 0;
}

.life .title {
  justify-content: center;
}

.life img {
  width: auto;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.stages {
  color: white;
}

.stages .wrap {
  gap: 0 10px;
  width: fit-content;
  max-width: 1530px;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
}

.stages .wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 1300px) {
  .stages .wrap:before {
    content: "";
    width: 100%;
    height: 20px;
    pointer-events: none;
    background: white;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}

.stages .wrap .side {
  line-height: 0;
  position: relative;
  height: 510px;
  width: 760px;
}

@media screen and (max-width: 1600px) {
  .stages .wrap .side {
    height: 410px;
    width: 610px;
  }
}

@media screen and (max-width: 1300px) {
  .stages .wrap .side {
    height: 510px;
    width: 760px;
  }
}
.stages .stage {
  position: absolute;
  width: auto;
  height: calc(100% - 10px);
  object-fit: cover;
  display: block;
  --t: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: all 0.1s ease;
}

.stages .stage img {
  width: 100%;
}

.stages h3 {
  position: absolute;
  right: 0;
  margin: 0;
  padding: 40px 30px;
  font-size: 30px;
  line-height: 1;
  z-index: 2;
  font-weight: 900;
  font-size: calc(1.975vw + 16px);
}

.stages .links {
  line-height: 1;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  padding: 30px 0;
  height: 100%;
  width: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .stages .stage:hover {
    z-index: 9;
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .stages .stage:hover .links {
    width: 48%;
  }
}
.stages .links ul {
  width: 250px;
  list-style-type: none;
  margin: 0;
  padding: 20px;
}

@media (max-width: 1600px) {
  .stages .links ul {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .stages .links ul {
    width: 90%;
  }
}
.stages ul li {
  padding: 10px 20px;
  border-bottom: 1px solid #ffffff54;
}

.stages a {
  color: #fff;
  font-weight: 700;
  font-size: calc(0.12vw + 16px);
}
.stages ul li:last-of-type {
  border-bottom: none;
}
.stages .side .stage:first-of-type {
  bottom: 0;
  right: 0;
  clip-path: polygon(
    calc(100% - var(--t)) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 calc(100% - var(--t)),
    calc(100% - var(--t)) calc(100% - var(--t))
  );
}
.stages .side .stage:first-of-type h3 {
  bottom: 0;
}
.stages .side .stage:last-of-type {
  top: 0;
  left: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% var(--t),
    var(--t) var(--t),
    var(--t) 100%,
    0 100%
  );
}
.stages .right-side .stage:nth-child(1) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.stages .left-side .stage:nth-child(2) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.stages .right-side .stage:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(252, 136, 43, 0) 0%,
    rgba(252, 136, 43, 0.73) 59%,
    rgba(252, 136, 43, 1) 100%
  );
}
.stages .right-side .stage:nth-child(1):hover::before {
  background: linear-gradient(
    180deg,
    rgba(252, 136, 43, 0.75) 75%,
    rgba(252, 136, 43, 0.98) 100%,
    rgba(252, 136, 43, 1) 100%
  );
}
.stages .right-side .stage:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(255 213 0 / 0.975) 2%,
    rgba(255, 255, 255, 0) 50%
  );
}
.stages .right-side .stage:nth-child(2):hover::before {
  background: linear-gradient(
    183deg,
    rgba(225, 213, 0, 0.975) 10%,
    rgba(225, 213, 0, 0.5) 100%
  );
}
.stages .left-side .stage:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgb(76 128 31 / 0.975) 10%,
    rgba(255, 255, 255, 0) 50%
  );
}
.stages .left-side .stage:nth-child(1):hover::before {
  background: linear-gradient(
    0deg,
    rgb(76 128 31 / 0.975) 10%,
    rgba(76, 128, 31, 0.5) 100%
  );
}
.stages .left-side .stage:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(25 61 100 / 0.975) 10%,
    rgba(255, 255, 255, 0) 50%
  );
}
.stages .left-side .stage:nth-child(2):hover::before {
  background: linear-gradient(
    180deg,
    rgb(25 61 100 / 0.975) 10%,
    rgb(25 61 100 / 0.5) 100%
  );
}
.stages .side .stage:last-of-type h3 {
  top: 0;
}
.stages .side .stage:last-of-type .links {
  right: unset;
  left: 0;
}

/**/
.events .title {
  justify-content: space-between;
}
.symbols {
  margin-block: 5rem;
}
.slick-symbols {
  width: min(100%, 1700px);
  margin: auto;

  & .slick-slide {
    border-left: 1px solid #ddd;
  }
}
@media (min-width: 992px) {
  .symbols a:hover img {
    transform: scale(1.021);
  }
}
.events a {
  display: block;
  position: relative;
  height: 100%;
}

.events .pic {
  min-height: 40vh;
  position: relative;
  padding: 1rem;
  border-radius: 25px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      0deg,
      rgb(87 124 5 / 0.975) 25%,
      rgba(255, 255, 255, 0) 75%
    );
  }
}
.events a:hover {
  transform: scale(1.12);
  z-index: 5;
}
.events a:hover .pic::after {
  background: linear-gradient(
    0deg,
    rgb(87 124 5 / 0.975) 18%,
    rgba(255, 255, 255, 0.25) 95%
  );
}
.events .info {
  position: relative;
  z-index: 3;
  margin-top: auto;
  color: #fff;
}
.events h3 {
  flex: 1;
  flex-grow: 99;
  line-height: 1;
  font-weight: 900;
  font-size: calc(0.75vw + 16px);
  min-height: 70px;
  padding: 0.25rem 1rem;
}
.events .details {
  border-top: 1px solid #8fd8fb;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-grow: 99;
  align-items: flex-start;
  font-size: 1.2rem;
  & > span {
    font-weight: 400;
    text-align: right;
    padding: 2px 10px;
    border-radius: 8px;
    z-index: 2;
    font-weight: 300;
  }

  & i {
    color: #8fd8fb;
    font-size: 0.9rem;
  }
}
.events .more {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-block: 1rem;
  color: var(--prime1);
  font-weight: 500;
  transition: all 0.2s ease;
}

/**/

@media (min-width: 992px) {
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
}

/**/

/* Fast Nav */

.fast-navigation {
  padding: 1rem 0;
  border-radius: 0 0 2rem 2rem;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}

.fast-navigation:after {
  clear: both;
  display: block;
  content: "";
}

@media (min-width: 992px) {
  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    float: left;
    display: block;
  }
}

.fast-navigation label {
  background: transparent;
  border-radius: 0;
  padding: 5px 10px;
  border: 0;
  background-color: #fff;
  font-weight: 400;
  font-size: 15px;
  padding: 3px 5px;
  margin-top: -13px;
  margin-right: 12px;
  height: 24px;
  position: absolute;
  color: var(--prime1);
  z-index: 1;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    float: left;
    display: block;
  }
}

@media (max-width: 991px) {
  .cover {
    min-height: 420px;
  }
  .colorful {
    font-size: calc(3.5vw + 16px);
  }
  .services-mobile {
    display: block;
    position: fixed;
    background-color: var(--prime1);
    color: #fff;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: calc(1.25vw + 16px);
    z-index: 10;
    padding: 2rem;
    font-weight: 700;
    transition: all 0.2s ease;
    & img {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      top: -65px;
      filter: drop-shadow(2px 4px 6px #0a3b59);
      transition: all 0.12s ease;
    }
    & i {
      font-size: 1rem;
    }
  }
  .services-mobile {
    padding: 1rem;

    & img {
      width: 50px;
      top: -23px;
    }
  }
  .articles .row > div {
    margin-bottom: 30px;
  }
  .footer {
    padding-bottom: 5rem;
  }
  .centered {
    text-align: center;
  }
  .centered-banner img {
    max-width: 100%;
  }

  .cover {
    padding: 15px;
    padding-top: 125px; /* header height + padding */
  }

  .cover .toggle-slick {
    display: none;
  }
  video,
  #toggle-video {
    display: none;
  }

  .news h2 {
    display: none;
  }

  .stages .wrap {
    gap: 20px;
    padding: 20px;
  }
  .stages .wrap:before,
  .stages .wrap:after {
    display: none;
  }
  .stages .wrap .side {
    flex-wrap: wrap;
    height: auto;
    width: auto;
    gap: 20px;
  }
  .stages .side .stage {
    all: revert;
    position: relative;
    margin: auto;
  }

  .stages .side .stage:first-of-type,
  .stages .side .stage:last-of-type {
    clip-path: none;
    width: 100%;
  }
  .stages .side .stage:first-of-type h3 {
    top: 0;
  }
  .stages .side .stage .links {
    width: 100%;
    padding: 0;
    background: var(--prime5);
    position: relative;
  }

  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    display: block;
    border-radius: 2rem;
    width: 100%;
  }

  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    display: block;
    border-radius: 2rem;
  }

  .fast-navigation .smart-nav-sub > select {
    width: 100%;
    margin: 0.5rem 0;
  }

  .smart-nav-submit {
    margin: 0 auto;
  }

  .events h3 {
    min-height: unset;
    padding-inline: 0;
    font-size: calc(1vw + 16px);
  }

  .events .pic {
    height: auto;
  }

  .articles .row > div:first-of-type {
    flex: 1 0 100%;
    min-height: 300px;
  }
  .articles .row > div {
    padding: 2rem 2rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0;
    min-height: 200px;
  }
  .articles .gradient {
    border-radius: 20px;
  }
  .articles .row:not(.title) {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .articles h3::after {
    height: 2px;
    bottom: -0.5rem;
  }
  .articles .info {
    margin-top: auto;
    display: flex;
    height: auto;
    h3 {
      margin-top: auto;
      margin-bottom: 1rem;
    }

    & .inner {
      position: relative;
      margin-top: auto;
    }
  }
  .services a .icon img {
    max-height: 75px;
    max-width: 70px;
  }
  .services .sub {
    z-index: 12;
    position: fixed;
    max-width: 100%;
    height: calc(100% - 225px);
    inset: 0;
    margin: auto;
    top: 130px;
    transform: none;
    display: none;

    & .row {
      border: 1px solid var(--prime1);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border-radius: 0;
    }

    &::after {
      content: none;
    }
  }
  .services .sub.scroll {
    top: 167px;
  }
  .services .sub .close {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--prime1);
    color: #fff;
    opacity: 1;
    width: calc(100% - 2rem);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;

    & span {
      font-weight: 400;
    }
  }
  .services .sub .row > div {
    flex: 1 0 30%;
  }
  .mokedbox {
    border: 1px solid var(--prime1-light);
    bottom: -90px;
    z-index: 5;
    width: 275px;
    height: 325px;
    padding: 0.5rem 1.5rem;
  }
  .fast-navigation select {
    font-size: 1.2rem;
    height: 57px;
    width: 227px;
  }
  .fast-navigation button {
    height: 45px;
    font-size: 1.2rem;
  }
  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    border-radius: 0.7rem;
  }
  .events .container > .row:last-child > div {
    margin-bottom: 1rem;
  }
}

/**/

.slick-symbols img {
  width: max(100%, 200px);
  object-fit: contain;
  max-height: 74px;
}

.slick-symbols a {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .cover {
    min-height: 400px;
  }
  .row.title {
    margin-block: 1rem;
  }
  .services {
    top: -50px;
  }
  .services a {
    padding: 0.25rem 0.25rem;
    margin: 0.5rem 0.4rem;
  }
  .message {
    margin-top: 7.5rem;
  }
  .articles .row > div {
    flex: 1 0 100%;
  }
  .side-banners {
    z-index: 5;
    width: 152px;
  }
  .side-banners.side-banners-left {
    top: 220px;
  }
  .side-banners > div {
    margin-bottom: 0;
  }
  .side-banners a {
    width: 105px;
  }
  .side-banners > div:nth-child(2) a {
    width: 118px;
}
  .side-banners > div:first-child::after {
    left: -84px;
  }
  .side-banners img {
    width: 22px;
  }
  .side-banners > div::after {
    height: calc(100% + 8px);
    border-radius: 17px;
    left: -32px;
  }
}

@media (max-width: 600px) {
  .message {
    max-width: 250px;
  }
}
button.slick-next.slick-arrow ,button.slick-prev.slick-arrow{
    background-color: #ffffff00;
}
