@import url("https://use.typekit.net/ptj3uti.css");
* {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1 {
  display: none;
}

.containerBox {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.main-title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  font-family: "acumin-pro-condensed", sans-serif;
  margin-bottom: 20px;
}
@media (min-width: 996px) {
  .main-title {
    font-size: 55px;
  }
}
.main-title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #17a2b8;
  width: 60px;
  height: 4px;
  display: block;
}

.main-text {
  font-size: 17px;
  line-height: 1.7;
  padding: 25px 0;
}
@media (min-width: 996px) {
  .main-text {
    font-size: 20px;
    padding: 50px 0;
  }
}

.btnBox {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
}
.btnBox:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btnBox.btnStyBlue {
  background: #17a2b8;
}

.btnBox.btnStyBlack {
  background: #000;
  margin-top: 10px;
}
@media (min-width: 996px) {
  .btnBox.btnStyBlack {
    margin-top: 0;
  }
}

html {
  scroll-behavior: smooth;
}

.project {
  position: relative;
  overflow: hidden;
}
@media (min-width: 996px) {
  .project {
    padding-top: 80px;
  }
}
.project img {
  display: block;
}
.project figure {
  margin: 0;
  padding: 0;
}
.project .headeraBlock {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 15px 25px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 996px) {
  .project .headeraBlock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
}
.project .headeraBlock__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.project .headeraBlock__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media (min-width: 996px) {
  .project .headeraBlock__logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 30%;
    text-align: left;
  }
}
.project .headeraBlock__logo figure {
  display: inline-block;
}
.project .headeraBlock__logo img {
  max-height: 40px;
  width: auto;
}
@media (min-width: 996px) {
  .project .headeraBlock__logo img {
    max-height: 48px;
  }
}
.project .headeraBlock__nav {
  display: none;
}
@media (min-width: 996px) {
  .project .headeraBlock__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}
.project .headeraBlock__nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .project .headeraBlock__nav a {
    font-size: 17px;
  }
}
.project .headeraBlock__nav a:hover {
  border-bottom: 3px solid #d6d6d6;
}
.project .headeraBlock__nav.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  background: #d6d6d6;
  z-index: 99;
  padding: 50px;
  text-align: center;
}
.project .headeraBlock__nav.is-open a {
  font-size: 20px;
}
.project .headeraBlock__nav.is-open .headeraBlock__nav-btn {
  display: inline-block;
  font-size: 16px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto;
}
.project .headeraBlock__nav.is-open .btnBox {
  color: #fff;
}
.project .headeraBlock__nav-btn {
  display: none;
}
@media (min-width: 996px) {
  .project .headeraBlock__nav-btn {
    display: none !important;
  }
}
.project .headeraBlock__cta {
  display: none;
}
@media (min-width: 996px) {
  .project .headeraBlock__cta {
    display: block;
    width: 30%;
    text-align: right;
  }
}
@media (min-width: 996px) {
  .project .headeraBlock__cta .btnBox {
    display: inline-block;
  }
}
.project .headeraBlock__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}
@media (min-width: 996px) {
  .project .headeraBlock__hamburger {
    display: none;
  }
}
.project .headeraBlock__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.project .headeraBlock__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.project .headeraBlock__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.project .headeraBlock__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.project .kv {
  position: relative;
  text-align: center;
}
.project .kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: #d6d6d6;
  z-index: -1;
}
@media (min-width: 996px) {
  .project .kv::before {
    height: 70%;
  }
}
.project .kv__title {
  font-size: 40px;
  font-weight: bold;
  font-family: "acumin-pro-condensed", sans-serif;
  margin-bottom: 30px;
  padding: 0 25px;
  line-height: 1;
}
@media (min-width: 996px) {
  .project .kv__title {
    font-size: 80px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1930px) {
  .project .kv__title {
    font-size: 120px;
  }
}
.project .kv__txtBox {
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .kv__txtBox {
    padding: 100px 25px;
  }
}
.project .kv__txtBox h3 {
  font-size: 35px;
  font-weight: bold;
  font-family: "acumin-pro-condensed", sans-serif;
}
@media (min-width: 996px) {
  .project .kv__txtBox h3 {
    font-size: 60px;
  }
}
.project .kv__txtBox h4 {
  font-size: 25px;
  font-family: "acumin-pro-condensed", sans-serif;
}
@media (min-width: 996px) {
  .project .kv__txtBox h4 {
    font-size: 30px;
  }
}
.project .kv__txtBox h6 {
  font-size: 20px;
  font-weight: 400;
}
.project .kv figure img {
  width: 90%;
  margin: 0 auto;
}
.project .transformingClassrooms {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .transformingClassrooms {
    padding: 100px 25px;
  }
}
.project .transformingClassrooms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d6d6d6;
  z-index: -1;
}
@media (min-width: 996px) {
  .project .transformingClassrooms::before {
    width: 70%;
  }
}
@media (min-width: 996px) {
  .project .transformingClassrooms__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 996px) {
  .project .transformingClassrooms__wrapper-txtBox {
    width: 45%;
  }
}
.project .transformingClassrooms__wrapper .videoBox {
  margin: 50px 0 0;
}
@media (min-width: 996px) {
  .project .transformingClassrooms__wrapper .videoBox {
    width: 50%;
  }
}
.project .transformingClassrooms__wrapper .videoBox .videoBox-wrapper {
  margin: 0 auto;
}
.project .transformingClassrooms__wrapper .videoBox .videoBox-wrapper__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.project .transformingClassrooms__wrapper .videoBox .videoBox-wrapper__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project .leadingFuture {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .leadingFuture {
    padding: 0 25px 30px;
    margin: 100px 0;
  }
}
.project .leadingFuture::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 65%;
  background: #d6d6d6;
  z-index: -1;
}
@media (min-width: 996px) {
  .project .leadingFuture::before {
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 996px) {
  .project .leadingFuture__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 996px) {
  .project .leadingFuture__wrapper-txtBox {
    width: 40%;
  }
}
@media (min-width: 996px) {
  .project .leadingFuture__wrapper-txtBox .btnWrapper .btnBox:nth-child(2) {
    margin-left: 20px;
  }
}
.project .leadingFuture__wrapper .imgBox {
  margin: 20px 0 0;
}
@media (min-width: 996px) {
  .project .leadingFuture__wrapper .imgBox {
    width: 55%;
  }
}
.project .leadingFuture__wrapper .imgBox .noteBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin: 50px 0 30px;
}
@media (min-width: 996px) {
  .project .leadingFuture__wrapper .imgBox .noteBox {
    font-size: 16px;
    margin: 50px 0 30px;
  }
}
.project .leadingFuture__wrapper .imgBox .noteBox p:first-child {
  margin-right: 20px;
}
.project .elevateEducation {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .elevateEducation {
    padding: 100px 25px;
  }
}
.project .elevateEducation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d6d6d6;
  z-index: -1;
}
@media (min-width: 996px) {
  .project .elevateEducation::before {
    width: 70%;
  }
}
@media (min-width: 996px) {
  .project .elevateEducation__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 996px) {
  .project .elevateEducation__wrapper-txtBox {
    width: 45%;
  }
}
.project .elevateEducation__wrapper .imgBox {
  margin: 50px 0 0;
}
@media (min-width: 996px) {
  .project .elevateEducation__wrapper .imgBox {
    width: 50%;
  }
}
.project .ourProducts {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .ourProducts {
    padding: 100px 25px;
  }
}
@media (min-width: 996px) {
  .project .ourProducts__wrapper-txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media (min-width: 996px) {
  .project .ourProducts__wrapper-txtBox p {
    width: 50%;
  }
}
@media (min-width: 996px) {
  .project .ourProducts__wrapper-slider {
    margin-left: 5%;
  }
}
.project .ourProducts__wrapper-slider .pdItem__title {
  font-size: 22px;
  font-weight: bold;
  font-family: "acumin-pro-condensed", sans-serif;
  margin: 20px 0;
}
@media (min-width: 996px) {
  .project .ourProducts__wrapper-slider .pdItem__title {
    font-size: 30px;
  }
}
.project .testimonials {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .testimonials {
    padding: 100px 25px;
  }
}
.project .testimonials__wrapper-slider {
  margin-top: 50px;
}
@media (min-width: 996px) {
  .project .testimonials__wrapper-slider {
    margin-left: 5%;
    margin-top: 0;
  }
}
.project .findOurStand {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .findOurStand {
    padding: 100px 25px;
  }
}
@media (min-width: 996px) {
  .project .findOurStand__wrapper-txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.project .findOurStand__wrapper-txtBox .infoBox {
  margin-top: 50px;
}
@media (min-width: 996px) {
  .project .findOurStand__wrapper-txtBox .infoBox {
    margin-top: 0;
  }
}
.project .findOurStand__wrapper-txtBox .infoBox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.project .findOurStand__wrapper-txtBox .infoBox__item-iconBox {
  margin-right: 20px;
}
.project .findOurStand__wrapper-txtBox .infoBox__item-iconBox span::before {
  font-size: 25px;
}
.project .gallery {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .gallery {
    padding: 100px 25px;
  }
}
.project .gallery__wrapper-imgBlock {
  margin-top: 50px;
}
.project .gallery__wrapper-imgBlock .imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.project .gallery__wrapper-imgBlock .imgBox img {
  width: calc((100% - 20px) / 5);
  padding: 5px 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0;
}
@media (min-width: 996px) {
  .project .gallery__wrapper-imgBlock .imgBox img {
    width: 300px;
    padding: 10px 0;
  }
}
.project .gallery__wrapper-imgBlock .imgBox img:nth-child(n+5) {
  display: none !important;
}
@media (min-width: 996px) {
  .project .gallery__wrapper-imgBlock .imgBox img:nth-child(n+5) {
    display: block !important;
  }
}
@media (min-width: 996px) {
  .project .gallery__wrapper-imgBlock .imgBox img:nth-child(n+6) {
    display: none !important;
  }
}
.project .gallery__wrapper-imgBlock .imgBox.is-expanded img:nth-child(n+5) {
  display: block !important;
}
.project .gallery__wrapper-imgBlock .btnBoxWrapper {
  text-align: center;
}
.project .gallery__wrapper-imgBlock .btnBoxWrapper .btnBox {
  display: block;
  margin: 20px auto 0;
}
.project .connectWithUs {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .connectWithUs {
    padding: 100px 25px;
  }
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-txtBox p {
    width: 50%;
  }
}
.project .connectWithUs__wrapper-infoBox {
  margin-top: 30px;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.project .connectWithUs__wrapper-infoBox h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox h5 {
    font-size: 25px;
    margin-right: 50px;
  }
}
.project .connectWithUs__wrapper-infoBox .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox .item {
    margin-top: 0;
  }
}
.project .connectWithUs__wrapper-infoBox .item__iconBox {
  margin-right: 25px;
  width: 40px;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox .item__iconBox {
    width: 50px;
  }
}
.project .connectWithUs__wrapper-infoBox .item__txtBox p {
  font-size: 18px;
  width: 100%;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox .item__txtBox p {
    font-size: 22px;
  }
}
.project .connectWithUs__wrapper-infoBox .item__txtBox-followBtn {
  display: inline-block;
  margin-top: 10px;
}
.project .connectWithUs__wrapper-infoBox .item__txtBox-followBtn span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  border: 1px solid #000;
  padding: 3px 20px;
  border-radius: 50px;
}
@media (min-width: 996px) {
  .project .connectWithUs__wrapper-infoBox .item__txtBox-followBtn span {
    font-size: 22px;
  }
}
.project .connectWithUs__wrapper-infoBox .item__txtBox-followBtn span:hover {
  background: #000;
  color: #fff;
}
.project .iWantMsiToContactMeForMyProject {
  position: relative;
  padding: 50px 25px;
}
@media (min-width: 996px) {
  .project .iWantMsiToContactMeForMyProject {
    padding: 100px 25px;
  }
}
.project .iWantMsiToContactMeForMyProject__wrapper {
  width: 100%;
  margin: 0 auto;
  background: #d6d6d6;
  text-align: center;
  padding: 75px 25px;
}
.project .iWantMsiToContactMeForMyProject__wrapper-txtBox .main-title::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.project .iWantMsiToContactMeForMyProject__wrapper-txtBox .btnBox {
  margin-top: 30px;
}
@media (min-width: 996px) {
  .project .iWantMsiToContactMeForMyProject__wrapper-txtBox .btnBox {
    margin-top: 50px;
  }
}/*# sourceMappingURL=main.css.map */