/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #int-hero {
    min-height: 50vh;
    background: url("/images/int-mobile.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #int-hero:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .5;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #int-hero h1 {
    color: #fff;
    font-size: 3.2em;
    text-align: center;
    margin: 0;
    position: relative;
  }
  #int-hero h1:before {
    content: '';
    position: absolute;
    display: block;
    height: 200%;
    width: 50%;
    background: transparent;
    border: 0.15625em solid var(--primary);
    opacity: .5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #int-hero {
    font-size: 20px;
    background: url("/images/int.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #int-hero {
    min-height: 15em;
    height: 15em;
    margin-top: 7.4em;
    background-position: center 80%;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---          Topper            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  .topper {
    margin-bottom: 3em;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .topper .green {
    font-weight: 900;
    font-size: 0.8em;
    line-height: 1.1875;
    letter-spacing: 0.26em;
    text-align: center;
    margin-bottom: 1.25em;
    display: block;
    color: var(--primary);
  }
  .topper h2 {
    font-size: 1.8em;
    line-height: 1.16666667;
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 9.44444444em;
    margin: auto;
    margin-bottom: 0.55555556em;
  }
  .topper p {
    font-size: 0.9em;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    max-width: 35.55555556em;
    margin: auto;
    margin-bottom: 0;
  }
}
/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #cta3 {
    padding-top: 9.8em;
    padding-bottom: 3.75em;
  }
  #cta3 .topper h2 {
    max-width: 100%;
  }
  #cta3 .left-box {
    position: relative;
    width: 19em;
    height: 24.8em;
    border: 1px solid var(--primary);
    font-size: min(2.9vw, 1em);
    margin: auto;
    margin-bottom: 3.5em;
  }
  #cta3 .left-box img {
    position: absolute;
  }
  #cta3 .left-box .big {
    width: 19em;
    height: 25em;
    display: block;
    left: -2.3em;
    top: -2.3em;
  }
  #cta3 .left-box .small {
    width: 18em;
    height: 12em;
    display: block;
    right: -9em;
    bottom: -4em;
  }
  #cta3 .right-box {
    text-align: center;
  }
  #cta3 .right-box .play-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.9em;
    text-decoration: none;
    width: auto;
    margin: auto;
    margin-top: 1.66666667em;
    font-family: 'Renogare';
    color: #000;
  }
  #cta3 .right-box .play-link .image-sq {
    background-color: #000;
    border-radius: 50%;
    width: 3.33333333em;
    height: 3.33333333em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 1.11111111em;
  }
  #cta3 .right-box .play-link .image-sq img {
    position: absolute;
    width: 2.22222222em;
    height: 2.22222222em;
  }
  body.dark-mode .about .right-box .play-link {
    color: #fff;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #cta3 {
    padding-bottom: 7.5em;
    padding-top: 15em;
  }
  #cta3 .squares {
    display: none;
  }
  #cta3 .container {
    display: flex;
    justify-content: center;
    font-size: min(1.8vw, 1em);
  }
  #cta3 .left-box {
    margin: 0;
    margin-right: 0em;
    font-size: inherit;
    transform: translateY(2.3em);
    position: relative;
  }
  #cta3 .right-box {
    text-align: left;
  }
  #cta3 .right-box .content-template .topper,
  #cta3 .right-box .content-template h2,
  #cta3 .right-box .content-template p,
  #cta3 .right-box .content-template .green {
    text-align: left;
    margin-left: 0;
  }
  #cta3 .right-box .content-template p {
    max-width: 27.83333333em;
  }
  #cta3 .right-box .play-link {
    margin-top: 7.27777778em;
    margin-left: 8.83333333em;
  }
  #cta3 .right-box .play-link .image-sq {
    transition: background-color 0.3s;
  }
  #cta3 .right-box .play-link img {
    transition: transform .3s;
    transform-origin: center;
  }
  #cta3 .right-box .play-link:hover .image-sq {
    background-color: var(--primary);
  }
  #cta3 .right-box .play-link:hover img {
    transform: rotate(180deg);
  }
  @-webkit-keyframes fade {
    0% {
      opacity: 0;
    }
    50% {
      opacity: .2;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fade {
    0% {
      opacity: 0;
    }
    50% {
      opacity: .2;
    }
    100% {
      opacity: 0;
    }
  }
}
@media only screen and (min-width: 1300px) {
  #cta3 .squares {
    height: 5.15em;
    width: 25em;
    margin: auto;
    position: relative;
    font-size: min(3vw, 2em);
    margin-bottom: 0.5em;
    display: block;
    transform: rotate(90deg);
    left: -13em;
    top: 5em;
  }
  #cta3 .squares .square {
    background: var(--primary);
    opacity: .1;
    position: absolute;
    -webkit-animation-name: fade;
    animation-name: fade;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 2.3s;
    animation-duration: 2.3s;
  }
  #cta3 .squares .square:nth-last-of-type(3n+0) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }
  #cta3 .squares .square:nth-last-of-type(2n+0) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-animation-duration: 1.7s;
    animation-duration: 1.7s;
  }
  #cta3 .squares .square:nth-last-of-type(5n+0) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }
  #cta3 .squares .square:nth-last-of-type(5n+3) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
  }
  #cta3 .squares .square:nth-of-type(1) {
    bottom: 6.05em;
    left: 3.25em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(2) {
    bottom: -0.25em;
    left: 0.65em;
    height: 0.5em;
    width: 0.5em;
  }
  #cta3 .squares .square:nth-of-type(3) {
    bottom: 0;
    left: 4.6em;
    height: 2.45em;
    width: 2.45em;
  }
  #cta3 .squares .square:nth-of-type(4) {
    bottom: 1.15em;
    left: 4.25em;
    height: 0.6em;
    width: 0.6em;
  }
  #cta3 .squares .square:nth-of-type(5) {
    top: 0;
    left: 7.05em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(6) {
    bottom: 2.35em;
    left: 9.6em;
    height: 1.4em;
    width: 1.4em;
  }
  #cta3 .squares .square:nth-of-type(7) {
    bottom: 0;
    left: 13.3em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(8) {
    bottom: 2.45em;
    left: 19em;
    height: 0.45em;
    width: 0.45em;
  }
  #cta3 .squares .square:nth-of-type(9) {
    bottom: 1.9em;
    left: 19.2em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(10) {
    bottom: 3.05em;
    left: 1em;
    height: 1.25em;
    width: 1.25em;
  }
  #cta3 .squares .square:nth-of-type(11) {
    bottom: 0.4em;
    left: 2em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(12) {
    bottom: 1.4em;
    right: 14.35em;
    height: 1em;
    width: 1em;
  }
  #cta3 .squares .square:nth-of-type(13) {
    bottom: 0.2em;
    right: 10.65em;
    height: 1.7em;
    width: 1.7em;
  }
  #cta3 .squares .square:nth-of-type(14) {
    bottom: 1.6em;
    right: 7.65em;
    height: 0.55em;
    width: 0.55em;
  }
  #cta3 .squares .square:nth-of-type(15) {
    bottom: -0.6em;
    right: 3.8em;
    height: 0.8em;
    width: 0.8em;
  }
  #cta3 .squares .square:nth-of-type(16) {
    bottom: 1.55em;
    right: 2.7em;
    height: 1.9em;
    width: 1.9em;
  }
  #cta3 .left-box:after,
  #cta3 .left-box:before {
    display: none;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1500px) {
  #cta3 .left-box {
    font-size: min(1.4vw, 1.8em);
    transform: translateY(-2.3em) translateX(-2.5em);
  }
}
/*-- -------------------------- -->
<---           Staff            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #staff {
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0em;
  }
  #staff .container {
    width: 90%;
    margin: auto;
  }
  #staff .topper h2 {
    max-width: 100%;
  }
  #staff .title {
    font-weight: 900;
    font-size: min(9vw, 2.4em);
    line-height: 1.20833333;
    color: #1A1A1A;
    position: relative;
    margin-bottom: 0.875em;
    text-align: center;
  }
  #staff .title:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.0625em;
    width: 1.515625em;
    background: #EEBE76;
    opacity: 1;
    bottom: -0.390625em;
    left: 50%;
    transform: translateX(-50%);
  }
  #staff .main-p {
    font-size: 0.9em;
    color: #595959;
    text-align: center;
    width: 100%;
    max-width: 35em;
    margin: auto;
    margin-bottom: 3.88888889em;
  }
  #staff .member {
    margin-bottom: 3.75em;
    width: 100%;
    max-width: 20em;
  }
  #staff .member .image {
    position: relative;
    width: 100%;
    max-width: 20em;
    height: 20em;
    margin: auto;
    margin-bottom: 2.5em;
  }
  #staff .member .image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #staff .member .desc {
    border-left: 5px solid var(--primary);
    padding-left: 20px;
  }
  #staff .member h3 {
    font-size: 1.5em;
    line-height: 1.5em;
    margin-bottom: 0em;
  }
  #staff .member .job {
    font-size: 0.8em;
    line-height: 1.6875;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #595959;
    margin-bottom: 1.5em;
    display: block;
  }
  body.dark-mode #staff .member .job {
    color: #fff;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #staff .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 96%;
    max-width: 57.2em;
    padding: 0;
  }
  #staff .member {
    margin: 0;
    margin-bottom: 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
  }
  #staff .member .image {
    width: 40%;
    margin: 0;
    margin-right: 2.5em;
  }
  #staff .member .content {
    width: 60%;
  }
}
/*-- -------------------------- -->
<---            Stats           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #stats {
    width: 90%;
    max-width: 66em;
    margin: auto;
    padding: 2.5em 0;
    background: #fff;
    box-shadow: 0px 20px 40px rgba(31, 163, 163, 0.1);
    border-radius: 0.3em;
    position: relative;
    z-index: 10;
    margin-bottom: 3.75em;
  }
  #stats .stat {
    display: block;
    margin: auto;
    margin-bottom: 2.5em;
    text-align: center;
  }
  #stats .stat:last-of-type {
    margin-bottom: 0;
  }
  #stats .stat .number {
    display: block;
    margin: auto;
    color: var(--darkPrimary);
    font-size: 3.2em;
    line-height: 1.328125;
    font-weight: bold;
  }
  #stats .stat .text {
    color: #1A1A1A;
    line-height: 1.33333333;
    display: block;
    margin: auto;
  }
}
/* Landscape */
@media only screen and (min-width: 547px) {
  #stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  #stats .stat {
    width: 50%;
  }
  #stats .stat:nth-of-type(3) {
    margin-bottom: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 768px) {
  #stats {
    flex-wrap: nowrap;
    padding: 4.45em 8.55em;
    font-size: min(1.4vw, 1em);
    margin-bottom: 7.5em;
  }
  #stats .stat {
    width: auto;
    margin: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #stats {
    background: var(--medium);
  }
  body.dark-mode #stats .stat .text {
    color: #fff;
  }
}
