/**
 * Variables.
 */
/**
 * JVLR - landing & common blocks
 */
.jvlr .black-bg {
  background-color: #000;
}
.jvlr .case-study-bg {
  background-color: #2cc369;
}
.jvlr .case-study-bg .animation-block {
  background-color: #2cc369;
}
.jvlr .case-study-bg .col2-block__col__content {
  color: #fff;
}
.jvlr .warmgrey-bg {
  background-color: #E2DBCF;
}
.jvlr .warmgrey-bg .animation-block {
  background-color: #E2DBCF;
}

.banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner__content {
  text-align: center;
  opacity: 1;
  position: relative;
  background-color: #2cc369;
}
@media screen and (min-width: 768px) {
  .banner__content {
    opacity: 0;
  }
}
.banner__content__top {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  position: absolute;
}
.banner__content .slide {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.banner__content__figure {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  max-width: 100%;
}
.banner__content__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.banner__content__text-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Stencil Text", Arial;
  text-transform: uppercase;
}
.banner__content__title {
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  background-color: #000;
  padding: 6px 9px;
  color: #FAFAFA;
}
@media screen and (min-width: 768px) {
  .banner__content__title {
    font-size: 40px;
    line-height: 66px;
    padding: 13px 32px;
  }
}
.banner__content__tag {
  display: flex;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .banner__content__tag {
    margin-top: 45px;
  }
}
.banner__content__tag span {
  font-size: 49px;
  line-height: 58px;
  display: inline-block;
  background-color: #000;
  padding: 10px 13px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .banner__content__tag span {
    font-size: 9.27vw;
    line-height: 1.2;
    padding: 30px 42px;
  }
}
@media screen and (min-width: 1920px) {
  .banner__content__tag span {
    font-size: 178px;
    line-height: 213px;
  }
}
.banner__content__step1 {
  color: #fff;
}
.banner__content__step2 {
  color: #2cc369;
}
.banner__content .slide3__content {
  max-width: 528px;
  background-color: #000;
  padding: 30px 22px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .banner__content .slide3__content {
    font-size: 20px;
    line-height: 30px;
    padding: 30px;
  }
}
.banner__content .slide3__content .title {
  color: #2cc369;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .banner__content .slide3__content .title {
    font-size: 18px;
    line-height: 30px;
  }
}
.banner__content .slide3__content__last {
  margin-top: 25px;
}

.col2-block {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .col2-block {
    flex-direction: row;
  }
}
.col2-block__col {
  min-height: 50vh;
  min-height: calc(var(--vh, 1vh) * 50);
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .col2-block__col {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--left {
    order: 0;
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--right {
    order: 1;
  }
}
.col2-block__col--has-slider {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .col2-block__col--has-slider {
    width: 50%;
    position: relative;
  }
  .col2-block__col--has-slider.col2-block__col--left {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    height: auto;
  }
}
.col2-block__col--content {
  padding: 51px 53px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.col2-block__col--content .animation-block {
  width: 50%;
  height: 40px;
  position: absolute;
  transition: all 1s ease-in-out;
  z-index: 1;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
.col2-block__col--content .animation-block.animated {
  transform: translateY(100%);
}
@media screen and (min-width: 768px) {
  .col2-block__col--content .animation-block {
    width: 60px;
    height: 50%;
  }
}
@media screen and (min-width: 1920px) {
  .col2-block__col--content .animation-block {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--content.col2-block__col--right {
    padding-left: calc(100% * ( 137 / 1920 ));
  }
}
@media screen and (min-width: 1315px) {
  .col2-block__col--content.col2-block__col--right {
    padding-right: calc((100vw - 1275px) / 2);
  }
}
@media screen and (min-width: 1920px) {
  .col2-block__col--content.col2-block__col--right {
    padding-left: 137px;
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--content.col2-block__col--right .animation-block {
    top: auto;
    bottom: 0;
    left: 0;
  }
  .col2-block__col--content.col2-block__col--right .animation-block.animated {
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--content.col2-block__col--left {
    padding-right: calc(100% * ( 137 / 1920 ));
  }
}
@media screen and (min-width: 1315px) {
  .col2-block__col--content.col2-block__col--left {
    padding-left: calc((100vw - 1275px) / 2);
  }
}
@media screen and (min-width: 1920px) {
  .col2-block__col--content.col2-block__col--left {
    padding-right: 137px;
  }
}
@media screen and (min-width: 768px) {
  .col2-block__col--content.col2-block__col--left .animation-block {
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
  }
  .col2-block__col--content.col2-block__col--left .animation-block.animated {
    transform: translateX(100%);
  }
}
.col2-block__col__content {
  font-size: 16px;
  line-height: 24px;
  color: #313131;
}
@media screen and (min-width: 980px) {
  .col2-block__col__content {
    font-size: 20px;
    line-height: 30px;
  }
  .col2-block--banner .col2-block__col__content {
    font-size: 24px;
    line-height: 35px;
  }
}
.col2-block__col__content__title {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 980px) {
  .col2-block__col__content__title {
    font-size: 18px;
    line-height: 30px;
  }
}
.col2-block__col__content p + p {
  margin-top: 20px;
}
@media screen and (min-width: 980px) {
  .col2-block__col__content p + p {
    margin-top: 25px;
  }
}
.col2-block__col__figure {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2cc369;
}
.col2-block__col__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col2-block__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.col2-block__slider__container {
  display: flex;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .col2-block__col--left .col2-block__slider__container {
    position: absolute;
    right: 0;
    flex-direction: row-reverse;
  }
}
.col2-block__slider--count2 .col2-block__slider__container {
  width: 200%;
}
.col2-block__slider--count3 .col2-block__slider__container {
  width: 300%;
}
.col2-block__slider--count4 .col2-block__slider__container {
  width: 400%;
}
.col2-block__slider--count5 .col2-block__slider__container {
  width: 500%;
}
.col2-block__slider--count6 .col2-block__slider__container {
  width: 500%;
}
.col2-block__slider--count7 .col2-block__slider__container {
  width: 700%;
}
.col2-block__slider__block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.col2-block__slider__figure {
  width: 100%;
  height: 50vh;
  height: calc(var(--vh, 1vh) * 50);
  background-color: #2cc369;
  position: relative;
}
@media screen and (min-width: 768px) {
  .col2-block__slider__figure {
    height: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
}
.col2-block__slider__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.col2-block--landing-page .title-content {
  font-family: "Big Shoulders Stencil Text", Arial;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  font-size: 60px;
  line-height: 66px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .col2-block--landing-page .title-content {
    font-size: 168px;
    line-height: 177px;
  }
}
.col2-block--landing-page .title-content .title {
  display: flex;
  flex-direction: column;
}
.col2-block--landing-page .title-content .second {
  padding-left: 0.5em;
}
.col2-block--landing-page .col2-block__col--content .animation-block {
  top: 0;
  left: 0;
}
.col2-block--landing-page .col2-block__col--content .animation-block.animated {
  transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .col2-block--landing-page .col2-block__col--content .animation-block {
    top: auto;
    bottom: 0;
    left: 0;
  }
  .col2-block--landing-page .col2-block__col--content .animation-block.animated {
    transform: translateX(-100%);
  }
}

.sub-page-links {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #fff;
}
.sub-page-links__list {
  font-family: "Big Shoulders Stencil Text", Arial;
  color: #E2DBCF;
  margin: 0;
  list-style: none;
  padding: 50px;
}
@media screen and (min-width: 768px) {
  .sub-page-links__list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .sub-page-links__list {
    padding-top: 125px;
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1315px) {
  .sub-page-links__list {
    padding-left: calc((100vw - 1275px) / 2);
    padding-right: calc((100vw - 1275px) / 2);
  }
}
.sub-page-links__list__item {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .sub-page-links__list__item {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .sub-page-links__list__item {
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 35px;
  }
}
.sub-page-links__list__item a {
  color: #E2DBCF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.sub-page-links__list__item a:hover {
  color: #2cc369;
}
.sub-page-links__list__number {
  font-size: 70px;
  line-height: 84px;
  min-width: 75px;
  padding-right: 15px;
}
@media screen and (min-width: 1024px) {
  .sub-page-links__list__number {
    font-size: 120px;
    line-height: 144px;
    min-width: 125px;
    padding-right: 22px;
  }
}
.sub-page-links__list__text {
  padding-top: 3px;
}
.sub-page-links__list__text.block-control {
  max-width: 152px;
}
@media screen and (min-width: 768px) {
  .sub-page-links__list__text.block-control {
    max-width: 205px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-page-links__list__text.block-control {
    max-width: 370px;
  }
}

.cards {
  display: flex;
  height: 236px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards {
    height: 400px;
  }
}
.cards__block {
  position: relative;
  font-family: "Big Shoulders Stencil Text", Arial;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 19%;
  overflow: hidden;
  transition: all 500ms ease;
}
@media screen and (min-width: 768px) {
  .cards__block {
    width: 13%;
  }
}
.cards__block:not(.active):hover {
  cursor: pointer;
}
.cards__block.active {
  width: 43%;
}
@media screen and (min-width: 768px) {
  .cards__block.active {
    width: 61%;
  }
}
.cards__block.active .cards__block__vertical-title {
  opacity: 0;
}
.cards__block.active .cards__block__content-wrap {
  opacity: 1;
  z-index: 1;
}
.cards__block__vertical-title {
  text-transform: uppercase;
  font-size: 25px;
  line-height: 25px;
  margin: 0;
  background-color: #000;
  padding: 10px 17px;
  transform: rotate(-90deg);
  white-space: nowrap;
  opacity: 1;
  transition: all 400ms ease;
}
@media screen and (min-width: 768px) {
  .cards__block__vertical-title {
    font-size: 59px;
    line-height: 59px;
    padding: 10px 20px;
  }
}
.cards__block__title {
  font-size: 26px;
  line-height: 32px;
  padding: 5px 12px;
  background-color: #fff;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .cards__block__title {
    font-size: 59px;
    line-height: 71px;
    padding: 18px 35px;
  }
}
.cards__block__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .cards__block__image {
    background-position: center 75%;
    background-size: auto;
  }
}
.cards__block__image.nala-sopara {
  background-image: url(../images/nala-sopara.jpg);
}
.cards__block__image.kamathipura {
  background-image: url(../images/kamathipura_new.jpg);
}
.cards__block__image.jvlr {
  background-image: url(../images/jvlr.jpg);
}
.cards__block__image.mward {
  background-image: url(../images/mward.jpg);
}
.cards__block__content-wrap {
  position: absolute;
  z-index: -1;
  top: 50%;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-50%);
  transition: all 400ms ease;
  white-space: nowrap;
}
.cards__block .orange {
  color: #e26001;
}
.cards__block .green {
  color: #2cc369;
}
.cards__block .yellow {
  color: #aa9527;
}
.cards__block .blue {
  color: #2cafdb;
}

.case-study-header {
  font-family: "Big Shoulders Stencil Text", Arial;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .case-study-header__wrap {
    display: flex;
    align-items: flex-start;
  }
}
.case-study-header__name {
  background-color: #2cc369;
  color: #fff;
  min-width: 115px;
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  padding: 7px 13px;
  margin-top: 15px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .case-study-header__name {
    margin-right: 16px;
    margin-top: 23px;
  }
}
.case-study-header__title {
  display: flex;
  align-items: center;
  font-weight: 800;
}
.case-study-header__title__number {
  font-size: 70px;
  line-height: 84px;
  color: #E2DBCF;
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  .case-study-header__title__number {
    font-size: 120px;
    line-height: 144px;
  }
}
.case-study-header__title__text {
  font-size: 25px;
  line-height: 30px;
  color: #2cc369;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .case-study-header__title__text {
    font-size: 45px;
    line-height: 54px;
  }
}

/*
 * Case Study - 01
 */
.map-container {
  width: 100%;
  position: relative;
}
.map-container__container {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Exo", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container__container__content {
  width: 100%;
  position: relative;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 300;
  max-width: 639px;
  background-color: rgba(0, 0, 0, 0.83);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding: 27px 30px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .map-container__container__content {
    font-size: 20px;
    line-height: 30px;
  }
}
.map-container .map-wrapper {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  width: 100%;
}
.map-container .map-item {
  width: 100%;
  height: 100%;
  position: absolute;
}

.separator-content {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #fff;
}
.separator-content__container {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #2cc369;
  text-align: center;
  max-width: 1016px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 66px 0;
}
@media screen and (min-width: 768px) {
  .separator-content__container {
    font-size: 24px;
    line-height: 35px;
    padding: 80px 0;
  }
  .separator-content__container--small-text {
    font-size: 20px;
    line-height: 30px;
  }
  .separator-content__container--large-text {
    font-size: 30px;
    line-height: 50px;
    padding: 114px 0;
  }
}
.separator-content__container p + p {
  margin-top: 25px;
}
.separator-content__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.post-navigation {
  background-color: #fff;
  position: relative;
}
.post-navigation__wrap {
  padding: 40px 0;
}
.post-navigation__content {
  font-family: "Big Shoulders Stencil Text", Arial;
  display: flex;
  align-items: center;
}
.post-navigation__content span {
  color: #E2DBCF;
  font-weight: 800;
  text-transform: uppercase;
}
.post-navigation__content__number {
  font-size: 70px;
  line-height: 84px;
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  .post-navigation__content__number {
    font-size: 120px;
    line-height: 144px;
  }
}
.post-navigation__content__title {
  font-size: 25px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .post-navigation__content__title {
    font-size: 45px;
    line-height: 54px;
  }
}
.post-navigation__content__link {
  text-decoration: none;
  width: 40px;
  margin-left: 35px;
}
@media screen and (min-width: 768px) {
  .post-navigation__content__link {
    width: 122px;
    margin-left: 48px;
  }
}
.post-navigation__content__link img {
  max-width: 100%;
}

.paginations {
  background-color: #1C60BC;
  position: relative;
}
.paginations__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
}
.paginations__list__item {
  font-family: "Big Shoulders Stencil Text", Arial;
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .paginations__list__item {
    font-size: 58px;
    line-height: 69px;
  }
}
.paginations__list__item + .paginations__list__item {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .paginations__list__item + .paginations__list__item {
    margin-left: 50px;
  }
}
.paginations__list__item.active span,
.paginations__list__item.active a {
  color: #fff;
}
.paginations__list__item span,
.paginations__list__item a {
  color: #4087E8;
  text-decoration: none;
  padding: 5px 0;
  display: block;
}
.paginations__list__item span:hover,
.paginations__list__item a:hover {
  color: #fff;
}

/*
 * Case Study - 02
 */
.parallax-block {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.parallax-block__figure-wrap {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 0;
}
.parallax-block__figure {
  position: absolute;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  left: 0;
}
.parallax-block__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.parallax-block__figure.left-mobile img {
  object-position: left;
}
@media screen and (min-width: 768px) {
  .parallax-block__figure.left-mobile img {
    object-position: center;
  }
}
.parallax-block__figure--has-overlay::before {
  content: "";
  background-color: rgba(44, 195, 105, 0.44);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.parallax-block__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.parallax-block__content {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.83);
  max-width: 639px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  padding: 30px 25px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  opacity: 0;
  font-weight: 300;
}
.parallax-block__content p + p {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .parallax-block__content {
    padding: 36px 30px;
    font-size: 20px;
    line-height: 30px;
  }
  .parallax-block__content p + p {
    margin-top: 20px;
  }
}
.parallax-block__content__title {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #2cc369;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .parallax-block__content__title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
  }
}

/*
 * Case Study - 05
 */
.casestudy-slider {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 60px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.casestudy-slider__wrapper {
  padding: 0 60px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .casestudy-slider__wrapper {
    max-width: 100%;
  }
}
@media screen and (min-width: 1275px) {
  .casestudy-slider__wrapper {
    padding: 0 120px;
  }
}
.casestudy-slider__slides {
  max-width: 1275px;
  position: relative;
  margin: 0 auto;
}
.casestudy-slider__slides .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  margin-left: -40px;
  margin-right: -40px;
  font-size: 60px;
  color: #2cc369;
  z-index: -1;
}
@media screen and (min-width: 1275px) {
  .casestudy-slider__slides .owl-nav {
    font-size: 100px;
    margin-left: -70px;
    margin-right: -70px;
  }
}
.casestudy-slider__slides .owl-nav button.disabled {
  opacity: 0.5;
  cursor: auto;
}

.speech-block {
  background-color: #000;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.speech-block__bg-text {
  font-family: "Big Shoulders Stencil Text", Arial;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.14;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 0;
}
.speech-block__bg-text__wrapper {
  position: absolute;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .speech-block__bg-text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .speech-block__bg-text__wrapper .hide-lg {
    display: none;
  }
}
.speech-block__bg-text .large {
  font-size: 36vw;
  line-height: 1;
}
@media screen and (min-width: 560px) {
  .speech-block__bg-text .large {
    font-size: 30vw;
  }
}
@media screen and (min-width: 980px) {
  .speech-block__bg-text .large {
    font-size: 21vw;
  }
}
.speech-block__bg-text .small {
  font-size: 25vw;
  line-height: 1;
}
@media screen and (min-width: 560px) {
  .speech-block__bg-text .small {
    font-size: 20vw;
  }
}
@media screen and (min-width: 980px) {
  .speech-block__bg-text .small {
    font-size: 15.4vw;
  }
}
.speech-block__container {
  margin: 0 20px;
  color: #fff;
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding-bottom: 20px;
  box-sizing: border-box;
}
.speech-block__description {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-top: 130px;
  max-width: 758px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .speech-block__description {
    font-size: 24px;
    line-height: 35px;
  }
}
.speech-block__conversations {
  margin-top: 82px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .speech-block__conversations {
    max-width: 1016px;
  }
}
@media screen and (min-width: 768px) {
  .speech-block__conversations__row {
    display: flex;
    justify-content: space-between;
  }
}
.speech-block__conversations__block {
  display: flex;
  margin-bottom: 82px;
}
@media screen and (min-width: 768px) {
  .speech-block__conversations__block {
    width: calc((100% - 16px) / 2);
  }
  .speech-block__conversations__block--right {
    margin-top: 90px;
  }
}
.speech-block__conversations__figure {
  width: 160px;
}
@media screen and (min-width: 1024px) {
  .speech-block__conversations__figure {
    width: 242px;
  }
}
.speech-block__conversations__figure img {
  max-width: 100%;
}
.speech-block__conversations__text {
  color: #2cc369;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 15px;
  width: calc(100% - 175px);
}
.speech-block__conversations__block--right .speech-block__conversations__text {
  margin-left: 0;
  margin-right: 15px;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .speech-block__conversations__text {
    font-size: 20px;
    line-height: 30px;
    width: calc(100% - 257px);
  }
}

/*
 * Case Study - 06
 */
.resources-section {
  background-color: #fff;
  position: relative;
}
.resources-section__container {
  text-align: center;
  padding: 11px 0 37px;
}
@media screen and (min-width: 768px) {
  .resources-section__container {
    padding: 18px 0 42px;
  }
}
.resources-section__link-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #1C60BC;
  border: 2px solid #1C60BC;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 7px;
}
.resources-section__list {
  list-style: none;
  padding-left: 0;
  margin: 34px 0 0;
}
@media screen and (min-width: 768px) {
  .resources-section__list {
    margin-top: 48px;
  }
}
.resources-section__item {
  color: #313131;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .resources-section__item {
    font-size: 20px;
    line-height: 30px;
  }
}
.resources-section__item__title {
  display: block;
  font-weight: 500;
}
.resources-section__item__link {
  font-weight: 300;
  text-decoration: none;
  color: #313131;
}
