@charset "UTF-8";

:root {
  --yellow-text: #E3FF54;
  --hero-line: 2px solid var(--yellow-text);
}

section {
	position: relative;
}

.text-bold {
	font-weight: 700;
}

.cs-shapes, .cs-scribble {
	position: absolute;
}

.cs-scribble {
	right: 40px;
}

.outcome figure:nth-of-type(1) .cs-shapes {
	left: -180px
}

.outcome figure:nth-of-type(2) .cs-shapes {
	right: -170px
}

.flex-center {
	display: flex;
	justify-content: center;
}

.align-center {
	display: flex;
	align-items: center;
}

.pt-32 {
	padding-top: 32px;
}

.pb-32 {
	padding-bottom: 32px;
}

.mb-m-40 {
	margin-bottom: -40px;
}

/* Case Study Portal */

.case-studies-main {
	background: #00345A;
	margin-bottom: -40px;
}

.case-studies-main h1:nth-of-type(1) {
	padding-top: 140px;
}

.case-studies-main h1 {
	display: block;
}

.yellow-font {
	color: #E3FF54;
}

.case-studies-main .grey-font {
	color: #F0FCFC;
	width: 50%;
	margin-bottom: 100px;
}

#category-cs-filters .category-filter {
	border-radius: 24px;
	border: 2px solid #E3FF54;
	color: #E3FF54;
	background: #00345A;
	box-shadow: 0px 4px 4px 0px #00000040 inset;
}

#category-cs-filters .category-filter:hover,
#category-cs-filters .category-filter.active {
	color: #00345A;
	background: #E3FF54;
}

.cs-highlight {
	display: flex;
	height: 460px;
	margin: 40px 0;
	border-radius: 16px;
	border: 1px solid rgba(227, 255, 84,  0.25);
	box-shadow: 0px 4px 20px rgba(0, 52, 90, 0.07);
	background: rgba(129, 160, 181, 0.15);
}

.cs-highlight > img {
	object-fit: cover;
	object-position: center;
	max-width: 50%;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
}

.cs-highlight article {
	padding: 40px 20px 0;
}

.cs-highlight article h4, .child-snippet h4 {
	font-size: 14px;
	text-transform: uppercase;
	color: #E3FF54;
}

.cs-highlight article h3 {
	font-size: 26px;
	font-weight: 700;
	color: #F0FCFC;
}

.cs-highlight article p {
	font-size: 18px;
	color: #FFF;
}

.stats-container-cs-main {
	display: flex;
	gap: 10px;
	padding: 0 10px;
	margin-bottom: 30px;
}

.stats-container-cs-main > div {
	width: 33.33%;
	border-bottom: 2px solid rgba(129, 160, 181, 0);
	text-align: center;
}

.stats-container-cs-main > div figure {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}

.stats-container-cs-main > div img {
	height: 24px;
}

.stats-container-cs-main > div p {
	margin: 5px 0;
}

.read-cs {
	background: rgba(186, 204, 204, 0.60);
	font-size: 16px;
	font-weight: 500;
	color: #00345A;
	text-decoration: none;
	border-radius: 8px;
	padding: 12px;
}

.read-cs:hover {
	background: #E1F86A;
}

.cs-child-snippet-wrapper {
	display: flex;
	gap: 30px;
}

.child-snippet {
	width: 50%;
	/* max-width: 415px; */
	border-radius: 16px;
	height: 730px;
	background: rgba(129, 160, 181, 0.15);
	box-shadow: 0px 4px 20px rgba(0, 52, 90, 0.07);
	border: 1px solid rgba(227, 255, 84, 0.25);
	margin-bottom: 80px;
}

.snippet-image img {
	object-fit: cover;
	object-position: center;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	/* max-width: 413px; */
	max-height: 280px;
}

.child-snippet article {
	padding: 40px 20px 0;
}

.child-snippet article p:nth-of-type(2) {
	height: 70px;
}

.child-snippet h3 {
	color: #F0FCFC;
	height: 40px;
	line-height: 22px;
	margin: 10px 0;
}

.child-snippet p {
	color: #FFF;
}

.child-snippet .stats-container-cs-main p {
	font-size: 14px;
}

.child-snippet .read-cs {
	margin-left: 20px;
}

.child-snippet,
.cs-highlight {
    transition: border-color .04s ease, box-shadow .02s ease;
}

.h-icon {
	display: none;
}

.s-six .testimonial-column figure {
	margin-top: 0
}

/*               */

.case-study {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #ffffff;

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#no-text-transform {
	text-transform: none;
}

.muhs-hero {
	background-image: url('../image/marquette-uni.jpg');
}

.psis-hero {
	background-image: url('../image/psis-cs-banner.svg');
}

.sts-hero {
	background-image: url('../image/sts-cs-banner.svg');
}

.case-hero {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 53, 105, 0.75);
    z-index: 1;
  }

  .container {
    display: flex;
    justify-content: center;
    padding: 80px 0 40px 0;
    align-items: center;
  }
}

.case-hero__content {
  margin: 80px 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  gap: 25px;
  padding: 16px 20px;
  height: fit-content;
  
  p, h5 {
  color: var(--app-color-light-blue); 
  margin: 0;
  }

  .case-hero__title h5 {
    font-size: 24px;
    font-weight: 400;

    span {
      font-weight: 700;
      color: var(--yellow-text);
    }
  }

  .case-hero__brand {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .case-hero__text {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;

    .description {
      width: 75%;
      height: fit-content;
      font-size: 18px;
      padding-right: 10px;
    }

    .case-hero__use-case {
      border-bottom: var(--hero-line);
      p {
        color: var(--yellow-text);
        font-weight: 400;
        font-size: 14px;
  
        &.use-case-title {
          text-transform: uppercase;
          font-weight: 700;
          font-size: 16px;
        }
      }
    }
    
  }

  .case-hero__kpis {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;

    .kpi {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-bottom: var(--hero-line);
      width: calc(33.333333% - 20px);
      height: 180px;
      gap: -1px;

      .kpi-value {
        font-size: 36px;
        font-weight: 700;
      }

      .kpi-label {
		text-align: center;
        font-size: 14px;
        font-weight: 400;
      }

      .circle-check, .award {
        height: 50px;
        width: 50px;
      }
    }
  }
}

.case-hero__use-case p:last-of-type {
	padding-bottom: 10px;
}

#videoModal {
	justify-content: center;
	align-items: center;
}

.tv-section {
  .tv-wrapper {
    margin: 40px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    .tv {
      position: relative;
      height: auto;
    }

    .tv-image, .play-button {
      position: absolute;
    }

    .tv-image {
      width: 404px;
      height: 227px;
      overflow: hidden;
      position: absolute;
      border-radius: 10px;
      top: 21%;

      &::after {
        content: '';
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        box-shadow: 1px 1px 38px 2px rgba(0,0,0,0.8) inset;
      }
    }

    .play-button {
      top: 27%;
      transition: all 0.2s ease-in-out;
    }

    .play-button:hover {
      cursor:pointer;
      scale: 1.05;
    }
  }

  .modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgb(255 255 255 / 0.65);
  }

  .modal-content {
    background-color: #f0fcfc;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
	border: none;
    height: 100%;
    max-height: 560px;
    width: 90%;
    max-width: 900px;
    position: relative;
	box-shadow: 0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
  }

  .modal-content iframe {
    width: 100%;
    height: 560px;
    border-radius: 8px;
    border: none;
  }

  .close-btn {
    position: absolute;
    color: #00345A;
    background-color: #D9FF54;
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 4px;
    cursor: pointer;
  }

  span {
    padding-bottom: 9px;
  }
}

.challenge .container {
  flex-direction: column;
  align-items: center;
}

.challenge__content {
  display: flex;
  align-items: center;
  width: 70%;

  .challenge__text {
    display: flex;
    flex-direction: column;
    h2 {
      color: var(--font-color-blue);
      font-size: 32px;
      font-weight: 700;
    }

    p {
      font-size: 20px;
      font-weight: 500;
      color: #416A87;
    }
  }
}

.challenge__content .lottie-animation {
	width: 250px;
}

.core-challenge {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  align-items: center;
  h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--font-color-blue);
    text-align: center;
  }
  
  .challenge-items {
    display: flex;
    gap: 10px;
    justify-content: center;

    .challenge-box {
      width: calc(33.333333% - 10px);
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      p {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        padding: 0 35px;
      }

      .circle {
        background-color: #00345A33;
        border-radius: 50%;
        width: 80%;
        aspect-ratio: 1;
        display: flex;
        justify-content: center;
        align-items: baseline;
        position: relative;

        svg {
          height: 100%;
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
        }
      }
    }
  }
}

.card-header svg {
	width: 40px;
	height: 30px;
}

.solutions .container {
  display: flex;
  flex-direction: column;

  .solutions-header {
    display: flex;
    align-items: flex-end;
    width: 70%;

    .mascot {
      height: 270px;
      aspect-ratio: 1;
    }

    .header-text {
      display: flex;
      flex-direction: column;

      h2 {
        color: var(--font-color-blue);
        font-size: 32px;
        font-weight: 700;
      }

      p {
        font-size: 20px;
        font-weight: 500;
        color: #416A87;
      }
    }
  }

  .solutions-cards {
    display: flex;
    width: 70%;
    gap: 20px;
	padding-bottom: 16px;

    .info-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: calc(50% - 20px);
      background-color: #EBF5FA;
      border-radius: 10px;
      box-shadow: 0px 4px 12px 0px #00000026;


      .card-header {
	    height: 160px;
        display: flex;
		align-items: center;
        background-color: var(--font-color-blue);
        width: 100%;
        padding: 24px;
        border-radius: 10px 10px 0 0;
        gap: 15px;
        
        p {
          color: var(--app-color-light-blue);
          font-size: 22px;
          font-weight: 700;
          margin: 0;
        }
      }

      .card-text {
        padding: 24px;
        height: 100%;

        p {
          font-size: 16px;
          font-weight: 400;
          color: #000000;
          margin: 0;
        }
		  
		  ul {
			  padding-top: 8px;
		  }
      }
    }
  }

  .video-wrapper {
    margin: 20px 0;
    width: 50%;
    display: flex;
    justify-content: center;
  }
}

.psis-slide {
	margin: 60px 0 30px;
	width: 70%;
	
	h2 {
		color: #00345A;
	}
}

.challenge-box {
	gap: 12px;
}

.challenge-box .circle {
	display: flex;
	justify-content: center;
	width: 3%;
}

.challenge-box .circle img {
	height: 30px;
	width: 40px;
}

.challenge-box p {
	margin: 5px 0;
	font-size: 20px;
	width: 97%;
}

.cs-testimonial-section {
	padding: 60px 0;
	margin-bottom: -25px;
	background: #F0FCFC;
}

.testimonial-column figure {
	margin-top: 60px;
}

#cs-testimonial {
	height: auto;
}

#cs-aside {
	margin-left: 0;
}

#psis-cst-logo {
	width: 140px;
}

#sts-cst-logo {
	width: 130px;
}

.outcome {
 background-color: #00345A;
 data-aos="fade-up";
  padding: 40px 0 100px;
  margin-bottom: -58px;
	position: relative;
  overflow: hidden;

  .banner-shapes {
	z-index: -1000;
	height: 80%;
	width: 80%;
  }

  .ban-poly {
    top: 30%;
    left: 10%;
  }

  .ban-oval {
    top: -10%;
    bottom: unset;
    right: 50%;
  }

  .ban-rect {
    left: 40%;
    top: -15%;
    right: unset;
  }

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
    z-index: 1;
  }

  .outcome-content {
    width: 70%;
  }

  h2 {
    font-size: 32px;
    font-weight: 700;
	color: #F0FCFC;
    text-align: left;
  }

  p {
    font-size: 20px;
    font-weight: 400;
    color: #F0FCFC;
    text-align: left;
  }

  .outcome-text {
    font-size: 20px;
    font-weight: 700;
    color: #F0FCFC;
  }
}

.outcome-container {
	width: 70%;
}

.outcome .stat-box strong {
	font-size: 7rem;
	display: block;
}

.outcome .stat-box .short {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 100%;
  	display: flex;
  	align-items: center;
}

.outcome .row > div:nth-child(3) .stat-box .short {
  padding: 0 16px;
}

.outcome .btn {
  height: 35px;
  width: 150px;
  font-size: 12px;
  padding: 8px 12px;
  text-align: center;
	border-color: #fff;
  border-width: 1px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.outcome .stat-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0px 4px 12px 0px #00000026;
  transition: transform 0.2s ease-in-out;

  svg {
    height: 30px;
    width: 30px;
  }
}

.back-button {
  margin-top: 40px;
  button {
    transition: all 0.2s ease-in-out;
  }
}

.outcome .row > div:nth-child(n+5):nth-child(-n+11) .stat-box {
  min-height: 100px;
}

.outcome .row > [class*="col-"]:nth-last-child(-n+3) {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.outcome .row > div:nth-child(4) .stat-box strong,
  .outcome .row > div:nth-child(4) .stat-box .short,
  .outcome .row > div:nth-child(9) .stat-box strong,
  .outcome .row > div:nth-child(9) .stat-box .short {
      color: #ffffff;
}

/* Outcome Boxes STS and PSIS */

.outcome-rows {
	display: flex;
	width: 70%;
	gap: 15px;
}

.outcome-rows figure {
	display: flex;
	justify-content: center;
}

.outcome-gr-row > div:first-child {
	margin-bottom: 15px;
}

.outcome-rows > div {
	width: 33.33%;
}

.outcome-rows .yellow {
	background: #E3FF54;
	height: 160px;
}

.outcome-rows .grey {
	background: #D5E4E4;
	height: 160px;
}

.outcome-rows .white {
	background: #FFF;
	height: 160px;
}

.outcome-rows .fade-row {
	background: #F0FCFC;
	height: 335px;
}

.outcome-rows .yellow-row {
	background: #E3FF54;
	height: 335px;
}

.outcome-rows .fade-row,
.outcome-rows .yellow-row,
.outcome-rows .grey, 
.outcome-rows .white,
.outcome-rows .yellow {
	padding: 15px;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.outcome-rows .fade-row p:first-of-type,
.outcome-rows .yellow-row p:first-of-type,
.outcome-rows .grey p:first-of-type,
.outcome-rows .white p:first-of-type,
.outcome-rows .yellow p:first-of-type {
	font-weight: 700;
}

.outcome-rows > div p {
	color: #00345A;
	text-align: center;
	margin: 5px 0;
	font-size: 16px;
}

.top-posters {
	display: flex;
	gap: 16px;
}

.top-posters figure img {
	height: 600px;
}

.bottom-posters img {
	width: 960px;
}

/*Responsive styles*/
@media(max-width: 1600px) {
	.child-snippet, .snippet-image img {
		max-width: inherit;
	}
	
	.snippet-image img {
		width: 100%;
	}
}


@media(max-width: 1240px) {
  .outcome {
    .banner-shapes {
	    height: 70%;
	    width: 70%;
    }

    .ban-poly {
      top: 45%;
      left: 25%;
    }

    .ban-oval {
      top: -10%;
      bottom: unset;
      right: 55%;
    }

    .ban-rect {
      left: 55%;
      top: -15%;
      right: unset;
    }
  }
}

@media(max-width:1200px) {
  .case-hero__content {
    width: 80%;
  }

  .tv-section .tv-wrapper {
    .tv {
      width: 45%;
    }
    
    .tv-image {
      width: 340px;
      height: 185px;
      top: 21.5%;
    }
    
    .play-button {
      height: 130px;
      width: 130px;
      top: 28%;
    }
  }

  .challenge .challenge__content {
    width: 80%;
  }
  .challenge .core-challenge .challenge-items{
    width: 90%;
  }

  .challenge .core-challenge .challenge-items p {
    font-size: 16px;
  }

  .solutions {
    .container {
      .solutions-cards {
        width: 100%;
      }
    }
  }
}

@media (max-width: 1024px) {
	.tv-section .modal-content {
		height: auto;
	}
	
	#category-cs-filters .category-filter {
		margin-bottom: 6px;
	}
	
	.cs-highlight {
		display: none;
	}
	
	.stats-container-cs-main div figure:first-of-type {
		display: none;
	}
	
	.stats-container-cs-main div figure:last-of-type {
		display: flex;
	}
	
	.h-icon {
		display: block;
	}
	
	.psis-slide {
		width: 100%;
		margin: 30px 0;
	}
	
	.campaign-grid {
		height: auto;
	}
	
	.top-posters, .top-posters figure img {
		height: 600px;
	}
		
	.cs-child-snippet-wrapper {
		display: block;
		padding: 25px 0 50px;
	}
	
	.child-snippet h3 {
		height: auto;
	}
	
	.child-snippet {
		margin-bottom: 25px;
	}
		
	.child-snippet,
	.top-posters,
	.outcome-rows, 
	.outcome-content, 
	.outcome-rows > div, 
	.outcome-container {
		width: 100%;
	}
	
	.back-button {
		margin-top: 25px;
	}
}

@media (max-width: 992px){
	.tv-section .modal-content {
		width: calc(100% - 40px);
		height: auto;
	}
	
	.case-hero__use-case {
		height: fit-content;
	}
	
  .case-study{ gap: 0;}
  .case-hero .container {
    padding: 80px 0 0 0;
  }
  .case-hero__content {
    width: 100%;

    .case-hero__title h5 { font-size: 20px; }
    .logo { height: 70px; width: 140px; }
    .plus { height: 25px; width: 25px; }
    .school { height: 90px; width: 220px; }

    .case-hero__text {
      padding: 0;
      .description {
        font-size: 16px;
      }
    }

    .case-hero__kpis .kpi {
      height: 160px;

      .stars { width: 180px; }
      .circle-check, .award {
        height: 50px;
        width: 40px;
      }
    }
  }

  .tv-section .tv-wrapper .tv { width: 60%; }

  .challenge .container {
    .challenge__content {
      width: 100%;

      .challenge__text {
        h2 { font-size: 28px; }
        p { font-size: 18px; }
      }
    }

    .core-challenge {
      width: 100%;

      .challenge-items {
        width: 110%;
      }
    }
  }

  .solutions .container {
    .solutions-header { 
      width: 100%; 

      .header-text {
        h2 { font-size: 28px; }
        p { font-size: 18px; }
      }
    }

    .solutions-cards {
	  margin-top: 25px;
      width: 100%;
      flex-direction: column;
      align-items: center;
	  padding-bottom: 15px;

      .info-card {
        width: 75%;
      }
    }
	  
	  .solutions-cards:last-of-type {
		  margin-top: 0;
		  padding-bottom: 30px;
	  }
  }

  .outcome .container {
    .outcome-content {
      width: 80%;

      h2 { font-size: 28px; }
      p { font-size: 18px; }
    }
    .stat-box {
      padding: 5px;

      .short {
        font-size: 14px;
      }
    }
  }
	
	.solutions .pt-32 {
		padding-top: 0;
	}
	
	.solutions .container .solutions-cards .info-card .card-header {
		height: 65px;
	}
	
	.read-cs {
		background: #E3FF54;
	}
	
	.stats-container-cs-main > div {
		border-bottom: 2px solid #E3FF54;
	}
	
	.child-snippet {
		height: 670px;
	}
	
	.child-snippet article {
		padding: 10px;
	}
	
	.child-snippet p {
		margin-bottom: 10px;
	}
	
	.campaign-grid, .top-posters, .top-posters figure img {
		height: auto;
	}
}

@media (max-width: 768px) {
	.cs-scribble {
		top: 20px;
		right: -20px;
	}
	
	.outcome figure:nth-of-type(1) .cs-shapes {
		left: -520px
	}

	.outcome figure:nth-of-type(2) .cs-shapes {
		right: -480px
	}
	
  .tv-section .tv-wrapper {
    .tv-image {
      width: 255px;
      height: 136px;
      top: 21.5%;
    }
    .play-button {
      height: 100px;
      width: 100px;
      top: 26%;
    }
  }

  .challenge .container {
    .challenge__content {
      gap: 0;
      .challenge__text {
        h2 { font-size: 26px; }
        p { font-size: 16px;  margin: 0;}
      }
    }

    .core-challenge {
      .challenge-items .challenge-box p {
        font-size: 14px;
        padding: 0 10px;
      }
    }
  }

  .solutions .container {
    .solutions-header {
      .mascot { height: 215px; margin-bottom: -5px; }
      .header-text {
        h2 { font-size: 26px; }
        p { font-size: 16px; margin: 0;}
      }
    }

    .solutions-cards .info-card{
      width: 100%;
    }

    .video-wrapper {
      width: 100%;
    }
  }


  .outcome {
    .outcome-bg {
      .banner-shapes {
        height: 50%;
        width: 50%;
      }

      .ban-rect {
        top: 25%;
      }

      .ban-poly {
        top: 60%;
        left: -15%;
      }
    }

    .container {
      .outcome-content {
        width: 100%;

        h2 {font-size: 26px;}
        p{ font-size: 16px; margin: 0; }
      }

    }
  }
	
	.challenge__content .lottie-animation {
		width: 200px;
		margin-left: -30px;
	}
	
	.outcome-rows {
		display: block;
		margin-top: 20px;
	}
	
	.outcome-rows .fade-row, .outcome-rows .yellow-row {
		height: 160px;
	}
	
	.outcome-gr-row {
		margin-bottom: 15px;
	}
	
	.cs-testimonial-section .container, .cs-testimonial-section .flex {
		display: block;
	}
	
	.testimonial-aside > div {
		justify-content: center;
	}
	
	.testimonial-column figure {
		margin: 0 0 50px;
	}
	
	.testimonial-column img {
		margin-top: -35px;
	}
	
	.outcome figure:nth-of-type(2) .cs-shapes {
		bottom: 20px;
	}
	
	.challenge-box .circle {
		width: 8%;
	}
	
	.challenge-box p {
		font-size: 16px;
	}
	
	.back-button {
		margin-top: 0;
	}
}

@media(max-width: 580px) {
	.outcome figure:nth-of-type(1) .cs-shapes {
		left: -320px
	}

	.outcome figure:nth-of-type(2) .cs-shapes {
		right: -280px
	}
	
	.case-studies-main .grey-font {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.tv-section .modal-content {
		width: calc(100% - 20px);
		padding: 25px;
		height: 280px;
	}
	
  .tv-section .tv-wrapper{
    .tv-image {
      width:48%;
      height: 45%;
    }

    .play-button {
      width: 18%;
      height: 18%;
    }
  }
	
	.solutions .container .solutions-header {
		display: block;
	}
	
	.testimonial-column img {
		margin-top: -10px;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 30px;
		line-height: 32px;
	}
	
  .case-hero .container {
    padding-top: 40px;

    .case-hero__content {
	  padding: 0;
      margin-bottom: 40px;
      .case-hero__title h5 { font-size: 18px; }
      .logo { width: 125px; }
      .school {width: 180px; }
    }

    .case-hero__kpis .kpi {
      .kpi-value { font-size: 26px; }
      .circle-check, .award { width: 35px; }
    }
  }

  .tv-section .tv-wrapper {
    .tv { width: 100%; }
    .tv-image {
      width: 80%;
      height: 45%;
    }

    .play-button {
      height: 32%;
      width: 32%;
    }
  }
	
	.tv-section .close-btn {
		top: 2px;
		right: 2px;
	}

  .challenge .container {
    .challenge__content {
      .challenge__text {
        h2 {font-size: 24px;}
      }
    }

    .core-challenge {
      h3 { font-size: 18px; } 
      .challenge-items {
        .challenge-box p { padding: 0px; font-size: 12px; }
      }
    }
  }

  .solutions .container {
    .solutions-header {
      .mascot { height: 180px; }
      .header-text {
        h2 { font-size: 24px; }
        p { font-size: 16px; }
      }
    }

    .solutions-cards .info-card {
      .card-header {
        padding: 12px;
        p { font-size: 18px; }
      }
      .card-text {
        padding: 20px;
        p { font-size: 16px; }
      }
    }
  }

  .outcome .container {
    .outcome-content {
      h2 { font-size: 24px; }
      p { font-size: 16x;}
    }

    .stat-box {
      short { font-size: 12px; }
    }
  }
}

@media(max-width: 400px) {
  .case-hero .container {
    .case-hero__content {
      gap: 10px;
      padding: 10px 15px;
      .case-hero__title h5 { font-size: 16px; }

      .case-hero__text {
        .description { font-size: 14px; }

        .case-hero__use-case {
          .use-case-title { font-size: 14px; padding: 5px 0;}
          p { font-size: 12px; }
        }
      }

      .case-hero__kpis {
        gap: 15px;
        .kpi {
          height: 130px;
          gap: 5px;
          .stars {height: 30px; }
          .circle-check, .award {width: 25px; height: 30px;}
          .kpi-value { font-size: 24px; }
          .kpi-label { font-size: 12px; }
        }
      }
    }
  }

  .challenge .container {
    .challenge__content {
      flex-direction: column;
      h2 { font-size: 26px; text-align: center;}
      p{ font-size: 16px; }
      .challenge-image { width: 70%; }
    }

    .core-challenge {
      h3 { font-size: 20px; }
      .challenge-items {
        flex-direction: column;
        align-items: center;
        gap: 20px;

        .challenge-box {
          width: 80%;
          p { font-size: 16px; }
        }
      }
    }
  }
}

@media(max-width: 360px) {
  .case-hero .container .case-hero__content .case-hero__title h5 { font-size: 15px; }

  .solutions .container .solutions-header {
    flex-direction: column;
    .mascot { margin-bottom: -30px; }
  }
}

/* Animation CSS*/
[data-anim]{
  --x: 0;
  --y: 12px;
  --scale: 1;
  --blur: 0px;
  --dur: .6s;
  --easing: cubic-bezier(.22,.61,.36,1);
  opacity: 0;
  transform: translate3d(var(--x), var(--y), 0) scale(var(--scale));
  filter: blur(var(--blur));
  transition:
    transform var(--dur) var(--easing),
    opacity   var(--dur) var(--easing),
    filter    var(--dur) var(--easing);
  will-change: transform, opacity, filter;
}

[data-anim].is-visible{
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

[data-anim="fade-up"]      { --y: 18px; }
[data-anim="fade-down"]    { --y: -18px; }
[data-anim="slide-left"]   { --x: 24px; }
[data-anim="slide-right"]  { --x: -24px; }
[data-anim="pop"]          { --scale: .96; --blur: 2px; }

@media (prefers-reduced-motion: reduce){
  [data-anim]{
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}