/* RemixDesign | woaichidapi@163.com | Redesigned by JimmyCheung */
audio {
  display: none;
}

.audioplayer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0 20px;
  width: 280px;
  height: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px 0 100px 100px;
  background: #2e2e85;
}

@media screen and (max-width: 960px) {
  .audioplayer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
  }
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
  position: relative;
  left: 0;
  background: url("/documents/554082/34071115/icon-play.svg") no-repeat top left;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  cursor: pointer;
  height: 29px;
  width: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.audioplayer-playing .audioplayer-playpause a {
  position: relative;
  left: 0;
  background: url("/documents/554082/34071115/icon-stop.svg") no-repeat top left;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  cursor: pointer;
  height: 29px;
  width: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.audio-file-name {
  font-size: 16px;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
  margin-left: 6px;
  letter-spacing: 0.09px;
}

.audioplayer-time {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
}

.audioplayer-time-current {
  margin-left: 10px;
  display: none;
}

.audioplayer-time-duration {
  margin-left: 10px;
}

.audioplayer-bar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px 0 12px;
  height: 12px;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 960px) {
  .audioplayer-bar {
    margin: 0 10px;
  }
}

.audioplayer-bar > div {
  position: absolute;
  left: 0;
  top: 5px;
}

.audioplayer-bar-loaded {
  z-index: 1;
  height: 3px;
  background: #ffffff;
}

.audioplayer-bar-played {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 2;
  height: 3px;
  background: #a1d4ff;
}

.audioplayer-bar-played::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: -7px;
  right: 0;
  margin-right: -10px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 100%;
}

.audioplayer-volume {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.audioplayer-volume-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.audioplayer-volume-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 6px;
  height: 8px;
  background-color: #9A9FB0;
  position: relative;
}

.audioplayer-volume-button a:before,
.audioplayer-volume-button a:after {
  content: '';
  position: absolute;
}

.audioplayer-volume-button a:before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 9px solid #9A9FB0;
  border-bottom: 8px solid transparent;
  border-left: none;
  top: -4px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
  left: 10px;
  top: -2px;
  width: 6px;
  height: 6px;
  border: 6px double #9A9FB0;
  border-width: 6px 6px 0 0;
  border-radius: 0 12px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
  background-color: #FD4F1A;
}

.audioplayer-mute .audioplayer-volume-button a:before {
  border-right: 9px solid #FD4F1A;
}

.audioplayer-volume-adjust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 8px;
}

.audioplayer-volume-adjust > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 2px;
  cursor: pointer;
  background-color: #BEC8D2;
}

.audioplayer-volume-adjust div div {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #0059FF;
}

/* responsive | you can change the max-width value to match your theme */
@media screen and (max-width: 679px) {
  .audioplayer-volume-adjust {
    display: none;
  }
}

.audioplayer-time-duration {
  margin-left: 10px;
  display: none !important;
}

.khalid,
.paul {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  padding-left: 8px;
  font-size: 12px;
}

.audio-player-paul .khalid {
  display: none;
}

.audio-player-khalid .paul {
  display: none;
}
.main-content {
  padding-top: 70px;
  background-image: url("/documents/554082/34071115/bg-banner.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 65px;
}

@media screen and (max-width: 960px) {
  .main-content .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.banner-section {
  text-align: center;
}

.banner-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  font-size: 38px;
  margin: 70px 0 40px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-section h1 img {
  margin-left: 10px;
}

@media screen and (max-width: 960px) {
  .banner-section h1 {
    font-size: 26px;
    margin: 50px 0 45px 0;
  }
  .banner-section h1 img {
    width: 108px;
  }
}

.banner-section .btn-exp-container .btn {
  width: 225px;
  margin: auto;
}

.banner-section .btn-exp-container .btn:hover {
  -webkit-box-shadow: 0 9px 16px 0 rgba(205, 140, 102, 0.5);
          box-shadow: 0 9px 16px 0 rgba(205, 140, 102, 0.5);
}

@media screen and (max-width: 960px) {
  .banner-section .btn-exp-container .btn {
    padding: 14px 15px;
    width: 260px;
    font-size: 16px;
  }
}

.banner-section .banner-image-collage-destkop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 62px;
  position: relative;
}

.banner-section .banner-image-collage-destkop .desktop-banner {
  display: block;
}

@media screen and (max-width: 960px) {
  .banner-section .banner-image-collage-destkop .desktop-banner {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-section .banner-image-collage-destkop .desktop-banner {
    display: block;
  }
}

.banner-section .banner-image-collage-destkop .responsive-banner {
  display: none;
}

@media screen and (max-width: 960px) {
  .banner-section .banner-image-collage-destkop .responsive-banner {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-section .banner-image-collage-destkop .responsive-banner {
    display: none;
  }
}

.banner-section .banner-image-collage-destkop img {
  margin: 12px 17px 0 0;
}

@media screen and (max-width: 960px) {
  .banner-section .banner-image-collage-destkop img {
    margin: 0;
    max-width: 375px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-section .banner-image-collage-destkop img {
    max-width: 100%;
  }
}

.banner-section .banner-image-collage-destkop .play-icon {
  background: url("/documents/554082/34071115/icon-play-blue.svg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 100px;
  -webkit-box-shadow: 0 16px 40px 0 rgba(46, 46, 133, 0.13);
          box-shadow: 0 16px 40px 0 rgba(46, 46, 133, 0.13);
  z-index: 11;
  border: solid 10px #f9fbfb;
  margin-top: 60px;
}

@media screen and (max-width: 960px) {
  .banner-section .banner-image-collage-destkop .play-icon {
    width: 80px;
    height: 80px;
    border: solid 10px #f9fbfb;
    margin-top: -115px;
  }
}

.banner-section .banner-image-collage-destkop .play-icon.active::after {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -50%;
  left: -50%;
  right: 0;
  bottom: 0;
  content: '';
  height: 200%;
  width: 200%;
  border: 20px solid white;
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.banner-section .banner-image-collage-destkop .play-icon.active::before {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -50%;
  left: -50%;
  right: 0;
  bottom: 0;
  content: '';
  height: 200%;
  width: 200%;
  border: 20px solid white;
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.banner-section .banner-image-collage-destkop .play-icon:hover {
  -webkit-box-shadow: 0 16px 40px 0 #c0895f;
          box-shadow: 0 16px 40px 0 #c0895f;
}

.banner-section .banner-image-collage-destkop span {
  width: 168px;
  margin-right: 17px;
}

@media screen and (max-width: 960px) {
  .banner-section .banner-image-collage-destkop span {
    width: 107px;
    margin-right: 9px;
  }
}

.banner-modal {
  z-index: 1111;
}

.banner-modal .modal-dialog {
  width: 900px;
  text-align: center;
  margin: 5% auto auto auto;
}

@media screen and (max-width: 960px) {
  .banner-modal .modal-dialog {
    width: 100%;
    margin-top: 20%;
  }
}

@media screen and (max-width: 960px) and (orientation: landscape) {
  .banner-modal .modal-dialog {
    margin-top: 5%;
  }
}

.banner-modal .modal-dialog .banner-modal-body {
  padding: 0;
}

.banner-modal .banner-close-modal-mobile {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 111;
  cursor: pointer;
}

.banner-modal .banner-close-modal-mobile img {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 960px) {
  .banner-modal .banner-close-modal-mobile {
    right: 10px;
  }
}

.banner-modal .vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
}

.banner-modal .vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
}

.banner-modal .modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  max-width: inherit;
  /* For Bootstrap 4 - to avoid the modal window stretching full width */
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  pointer-events: all;
}

.who-is-gig-section {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .who-is-gig-section {
    margin-top: 80px;
  }
}

.who-is-gig-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  color: #191619;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section h1 {
    font-size: 28px;
    line-height: 1.21;
    letter-spacing: normal;
  }
}

.who-is-gig-section .sub-heading {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.09px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  margin: 0;
  color: #191619;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section .sub-heading {
    margin-top: 10px;
    letter-spacing: 0.1px;
    font-size: 18px;
  }
}

.who-is-gig-section .wig-content-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section .wig-content-section {
    display: block;
    margin-top: 35px;
  }
}

.who-is-gig-section .wig-content-section .item {
  width: 280px;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section .wig-content-section .item {
    width: auto;
    margin-top: 41px;
  }
}

.who-is-gig-section .wig-content-section .item .who-is-gig-icon {
  min-height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.who-is-gig-section .wig-content-section .item p {
  font-size: 16px;
  line-height: 1.44;
  letter-spacing: 0.09px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  margin: 30px 0 0 0;
  color: #191619;
}

@media screen and (max-width: 960px) {
  .who-is-gig-section .wig-content-section .item p {
    margin-top: 10px;
    line-height: 1.17;
    letter-spacing: 0.1px;
    font-size: 18px;
  }
}

.gig-leader-section {
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section {
    margin-top: 54px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .gig-leader-section {
    margin-top: 80px;
  }
}

.gig-leader-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 30px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .gig-leader-section h1 {
    font-size: 28px;
    line-height: 34px;
  }
}

.gig-leader-section .gl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 60px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item {
    display: block;
    margin-bottom: 70px;
    margin-left: 30px;
    margin-right: 30px;
  }
}

.gig-leader-section .gl-item.ceo-khaled-section .audioplayer {
  border-radius: 0 100px 100px 100px;
}

.gig-leader-section .gl-item .ceo-pic {
  width: 333px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item .ceo-pic {
    width: auto;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .gig-leader-section .gl-item .ceo-pic {
    width: auto;
  }
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item .ceo-pic img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gig-leader-section .gl-item .ceo-pic img {
    width: auto;
  }
}

.gig-leader-section .gl-item .gl-said {
  text-align: left;
  width: 500px;
  margin-left: 122px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item .gl-said {
    margin-left: auto;
    width: auto;
  }
}

.gig-leader-section .gl-item .gl-said .text {
  line-height: 23px;
  letter-spacing: 0.09px;
  font-size: 16px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  color: #191619;
  margin-bottom: 13px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item .gl-said .text {
    font-size: 18px;
    line-height: 1.44;
    margin-bottom: 15px;
  }
}

.gig-leader-section .gl-item .gl-said .name {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: 0.09px;
  font-size: 16px;
}

.gig-leader-section .gl-item .gl-said .name.music-name {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  font-size: 15px;
}

.gig-leader-section .gl-item .gl-said .post {
  line-height: 1.44;
  letter-spacing: 0.09px;
  color: rgba(25, 22, 25, 0.5);
  font-size: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item.rtl-item {
    direction: initial;
  }
}

.gig-leader-section .gl-item.rtl-item .ceo-pic {
  width: 333px;
  text-align: center;
  margin-right: 122px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item.rtl-item .ceo-pic {
    width: auto;
    text-align: center;
    margin-right: auto;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .gig-leader-section .gl-item.rtl-item .ceo-pic {
    width: auto;
    margin-right: auto;
  }
}

.gig-leader-section .gl-item.rtl-item .gl-said {
  text-align: right;
  margin-right: 121px;
  margin-left: auto;
  width: 500px;
}

@media screen and (max-width: 960px) {
  .gig-leader-section .gl-item.rtl-item .gl-said {
    width: auto;
    text-align: left;
    margin-right: auto;
  }
}

.our-promise-section {
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .our-promise-section {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .our-promise-section {
    margin-top: 90px;
  }
}

@media screen and (max-width: 960px) {
  .our-promise-section .container {
    padding: 0;
    width: auto;
  }
}

.our-promise-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 82px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .our-promise-section h1 {
    font-size: 28px;
    line-height: 1.21;
    margin: 0 0 30px 0;
  }
}

.our-promise-section .op-slider {
  padding: 0 60px;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider {
    padding: 0;
  }
}

.our-promise-section .op-slider .op-item {
  padding: 0 25px 0 25px;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .op-item {
    padding: 0 0 0 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .our-promise-section .op-slider .op-item {
    padding: 0 0 0 30px;
  }
}

.our-promise-section .op-slider .op-item .call-out {
  background: #ecf2f7;
  padding: 24px 40px 40px 29px;
  text-align: left;
  color: #191619;
  border-radius: 6px;
  position: relative;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .op-item .call-out {
    padding: 24px 20px;
  }
}

.our-promise-section .op-slider .op-item .call-out:after {
  top: 100%;
  left: 10%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(236, 242, 247, 0);
  border-top-color: #ecf2f7;
  border-width: 15px;
  margin-left: -15px;
}

.our-promise-section .op-slider .op-item .call-out .text {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.63;
  color: #191619;
  min-height: 135px;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .op-item .call-out .text {
    font-size: 18px;
    line-height: 1.33;
  }
}

.our-promise-section .op-slider .op-item .call-out .video-btn {
  background: #2e2e85;
  border-radius: 0 100px 100px 100px;
  max-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 19px;
  color: #ffffff;
  margin-top: 21px;
  cursor: pointer;
}

.our-promise-section .op-slider .op-item .call-out .video-btn .video-icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-promise-section .op-slider .op-item .call-out .video-btn .video-title {
  font-size: 16px;
  margin-left: 10px;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.09px;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .op-item .call-out .video-btn .video-title {
    font-size: 16px;
    line-height: 1.44;
    letter-spacing: 0.09px;
  }
}

.our-promise-section .op-slider .op-item .call-out .video-btn .video-duration {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
}

.our-promise-section .op-slider .op-item .user-pic-name {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.our-promise-section .op-slider .op-item .user-pic-name .user-name {
  margin-left: 18px;
}

.our-promise-section .op-slider .op-item .user-pic-name .user-name .name {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  line-height: 1.44;
  letter-spacing: 0.09px;
}

.our-promise-section .op-slider .op-item .user-pic-name .user-name .post {
  line-height: 1.31;
  letter-spacing: 0.09px;
  font-size: 16px;
  color: rgba(25, 22, 25, 0.5);
  max-width: 250px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
}

.our-promise-section .op-slider .op-item .user-pic-name .user-pic img {
  width: 91px;
}

.our-promise-section .op-slider .slick-list {
  padding: 0 !important;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .slick-list {
    padding: 0 11% 0 0 !important;
  }
}

.our-promise-section .op-slider .slick-dots {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -70px;
  list-style: none;
  padding: 0;
  margin: auto;
  width: auto;
}

@media screen and (max-width: 960px) {
  .our-promise-section .op-slider .slick-dots {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.our-promise-section .op-slider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #cfcfd0;
  border-radius: 100px;
  list-style: none;
  padding: 0;
}

.our-promise-section .op-slider .slick-dots li button {
  padding: 0;
  margin: 0;
}

.our-promise-section .op-slider .slick-dots li button:before {
  content: '';
}

.our-promise-section .op-slider .slick-dots li.slick-active {
  width: 11px;
  height: 11px;
  background: #2e2e85;
  border-radius: 100%;
}

.our-promise-section .op-slider .slick-prev,
.our-promise-section .op-slider .slick-next {
  width: 52px;
  height: 52px;
  top: 30%;
  z-index: 1;
}

.our-promise-section .op-slider .slick-prev {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev.svg") no-repeat;
  background-repeat: no-repeat;
  left: 0;
}

.our-promise-section .op-slider .slick-prev:before {
  content: '';
}

.our-promise-section .op-slider .slick-prev.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.our-promise-section .op-slider .slick-next {
  background: url("/documents/554082/34071115/icon-circle-arrow-next.svg") no-repeat;
  background-repeat: no-repeat;
  right: 0;
}

.our-promise-section .op-slider .slick-next:before {
  content: '';
}

.our-promise-section .op-slider .slick-next.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-next-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.be-section {
  text-align: center;
  margin-top: 130px;
}

.be-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 82px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .be-section h1 {
    font-size: 28px;
    line-height: 1.21;
    margin: 0 0 40px 0;
  }
}

.be-section .be-slider .slide .be-item {
  text-align: left;
  padding-right: 50px;
}

.be-section .be-slider .slide .be-item .host-name-place {
  margin-top: 21px;
  color: #29353d;
  font-size: 16px;
  line-height: 1.38;
}

.be-section .be-slider .slide .be-item .host-name-place .host-name {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
}

.be-section .be-slider .slide .be-item .host-name-place .host-place {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
}

@media screen and (max-width: 960px) {
  .be-section .be-slider .slide .be-item .be-pic {
    width: 280px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .be-section .be-slider .slide .be-item .be-pic {
    width: 100%;
  }
}

.be-section .be-slider .slide .be-item .be-item-title {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.67px;
  color: #191619;
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  margin-bottom: 11px;
  margin-top: 17px;
}

.be-section .be-slider .slide .be-item .be-item-desc {
  font-size: 18px;
  line-height: 1.44;
  color: #29353d;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  margin-bottom: 11px;
}

.be-section .be-slider .slide .be-item .lnk-read-more {
  color: #2e2e85;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  cursor: pointer;
}

.be-section .be-slider .slide .be-item .lnk-read-more:hover img {
  -webkit-animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
          animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.be-section .be-slider .slide .be-item .lnk-read-more img {
  display: inline;
}

.be-section .be-slider .slick-dots {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -70px;
  list-style: none;
  padding: 0;
  margin: auto;
  width: auto;
}

@media screen and (max-width: 960px) {
  .be-section .be-slider .slick-dots {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.be-section .be-slider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #cfcfd0;
  border-radius: 100px;
  list-style: none;
  padding: 0;
}

.be-section .be-slider .slick-dots li button {
  padding: 0;
  margin: 0;
}

.be-section .be-slider .slick-dots li button:before {
  content: '';
}

.be-section .be-slider .slick-dots li.slick-active {
  width: 11px;
  height: 11px;
  background: #2e2e85;
  border-radius: 100%;
}

@media screen and (max-width: 960px) {
  .be-section .be-slider .slick-list {
    padding: 0 7% 0 0% !important;
  }
}

.be-section .slick-prev,
.be-section .slick-next {
  width: 52px;
  height: 52px;
  top: -105px;
  z-index: 1;
}

.be-section .slick-prev , .be-section .slick-prev:hover ,.be-section .slick-prev:focus{
  background: url("/documents/554082/34071115/icon-circle-arrow-prev.svg") no-repeat;
  background-repeat: no-repeat;
  left: initial;
  right: 60px;
}

.be-section .slick-prev:before {
  content: '';
}

.be-section .slick-prev.slick-disabled , .be-section .slick-prev.slick-disabled:focus , .be-section .slick-prev.slick-disabled:hover {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.be-section .slick-next , .be-section .slick-next:focus , .be-section .slick-next:hover{
  background: url("/documents/554082/34071115/icon-circle-arrow-next.svg") no-repeat;
  background-repeat: no-repeat;
  left: initial;
  right: 0;
}

.be-section .slick-next:before {
  content: '';
}

.be-section .slick-next.slick-disabled , .be-section .slick-next.slick-disabled:focus , .be-section .slick-next.slick-disabled:hover{
  background: url("/documents/554082/34071115/icon-circle-arrow-next-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.faq-section {
  text-align: center;
  margin-top: 130px;
}

.faq-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 82px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .faq-section h1 {
    font-size: 28px;
    line-height: 1.21;
    margin: 0 0 40px 0;
  }
}

.faq-section .nav-tabs-wrapper .nav-tabs {
  border-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  -webkit-box-shadow: 0 16px 40px 0 rgba(112, 144, 176, 0.13);
          box-shadow: 0 16px 40px 0 rgba(112, 144, 176, 0.13);
  border: solid 1px #e2e2e2;
  background-color: #ffffff;
  max-width: 941px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .faq-section .nav-tabs-wrapper .nav-tabs {
    max-width: initial;
  }
}

.faq-section .nav-tabs-wrapper .nav-tabs li {
  border-radius: 0;
  border-right: solid 1px #e2e2e2;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  font-size: 22px;
  line-height: 0.91;
  letter-spacing: 0.12px;
  text-align: center;
  padding: 29px;
  width: 50%;
  cursor: pointer;
  color: rgba(25, 22, 25, 0.5);
}

@media screen and (max-width: 960px) {
  .faq-section .nav-tabs-wrapper .nav-tabs li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 80px;
    padding: initial;
    font-size: 20px;
    padding: 0 20px;
  }
}

.faq-section .nav-tabs-wrapper .nav-tabs li:last-child {
  border-right: 0;
}

.faq-section .nav-tabs-wrapper .nav-tabs li.active {
  border-bottom: solid 4px #CD8C66;
  color: #191619;
}

.faq-section .nav-tabs-wrapper .tab-content {
  margin-top: 30px;
}

.faq-section .nav-tabs-wrapper .btn-container {
  padding-bottom: 92px;
  padding-top: 55px;
  max-width: 285px;
  margin: auto;
}

.faq-section .nav-tabs-wrapper .btn-container .btn {
  font-size: 18px;
  text-transform: uppercase;
}

.faq-section .nav-tabs-wrapper .btn-container .btn:hover {
  -webkit-box-shadow: 0 9px 16px 0 rgba(205, 140, 102, 0.5);
          box-shadow: 0 9px 16px 0 rgba(205, 140, 102, 0.5);
}

@media screen and (max-width: 960px) {
  .faq-section .nav-tabs-wrapper .btn-container .btn {
    font-size: 16px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 960px) {
  .faq-section .nav-tabs-wrapper .btn-container {
    padding-top: 45px;
    padding-bottom: 30px;
    max-width: initial;
  }
}

.faq-section .faq-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faq-section .faq-body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .faq-section .faq-body .item {
    width: 50%;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .faq-section .faq-body .item {
    width: auto;
  }
}

.faq-section .faq-body .item .faq-content {
  padding: 25px;
  border-radius: 6px;
  -webkit-box-shadow: 0 16px 40px 0 rgba(112, 144, 176, 0.13);
          box-shadow: 0 16px 40px 0 rgba(112, 144, 176, 0.13);
  background: #ffffff;
  max-width: 290px;
  text-align: left;
  margin: 18px;
  -webkit-transition: .7s;
  transition: .7s;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  will-change: transform;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 960px) {
  .faq-section .faq-body .item .faq-content {
    padding: 13px;
    margin: 15px 7px 0 7px;
    word-break: break-word;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .faq-section .faq-body .item .faq-content {
    max-width: 270px;
  }
}

.faq-section .faq-body .item .faq-content h2 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 24px;
  line-height: 1.42;
  margin: 0 0 30px 0;
  padding: 0;
  min-height: 135px;
  color: #191619;
}

@media screen and (max-width: 960px) {
  .faq-section .faq-body .item .faq-content h2 {
    font-size: 18px;
    min-height: initial;
    line-height: 1.33;
  }
}

.faq-section .faq-body .item .faq-content .view-more {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
}

.faq-section .faq-body .item .faq-content .view-more:hover img {
  -webkit-animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
          animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.faq-section .faq-body .item .faq-content:hover {
  background: #5f96c0;
  color: #ffffff;
  -webkit-transition: .7s ease-in-out;
  transition: .7s ease-in-out;
}

.faq-section .faq-body .item .faq-content:hover h2 {
  color: #ffffff;
}

.still-questions {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 60px;
}

.still-questions h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 20px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .still-questions h1 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding-right: 25px;
  }
}

.still-questions .contact-details {
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.1px;
}

@media screen and (max-width: 960px) {
  .still-questions .contact-details {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.still-questions .contact-details p {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  color: #191619;
  margin: 0 0 5px 0;
}

@media screen and (max-width: 960px) {
  .still-questions .contact-details p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 960px) {
  .still-questions .contact-details .phone-numbers {
    line-height: 26px;
  }
}

.still-questions .contact-details .phone-numbers a {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  color: #2e2e85;
  margin: 0 15px;
  font-size: 18px;
}

@media screen and (max-width: 960px) {
  .still-questions .contact-details .phone-numbers a {
    margin: 0 0 0 20px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .still-questions .contact-details .phone-numbers a {
    margin: 0 0 0 50px;
  }
}

.faq-modal {
  z-index: 1111;
}

.faq-modal .modal-dialog {
  min-width: 900px;
  margin-top: 10%;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog {
    margin: 30px auto;
    min-width: auto;
    width: 90%;
  }
}

.faq-modal .modal-dialog .faq-modal-close {
  position: absolute;
  right: 37px;
  top: 41px;
  z-index: 1;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-modal-close {
    display: none;
  }
}

.faq-modal .modal-dialog .faq-close-modal-mobile {
  display: none;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-close-modal-mobile {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}

.faq-modal .modal-dialog .faq-body {
  padding: 30px;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-body {
    padding: 20px;
  }
}

.faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item .faq-count {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  line-height: 1.43;
  letter-spacing: 0.08px;
  font-size: 14px;
  display: block;
  margin-top: 18px;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item .faq-count {
    margin-top: 0;
  }
}

.faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item h1 {
    line-height: 29px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

.faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item p {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.09px;
}

@media screen and (max-width: 960px) {
  .faq-modal .modal-dialog .faq-body .faq-modal-items .faq-item p {
    max-height: 40vh;
    overflow-x: auto;
  }
}

.faq-modal .faq-modal-next-pre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 31px;
}

@media screen and (max-width: 960px) {
  .faq-modal .faq-modal-next-pre {
    margin-top: 15px;
  }
}

.faq-modal .faq-modal-next-pre .faq-modal-pre {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev.svg") no-repeat top left;
  width: 52px;
  height: 52px;
  margin-right: 17px;
  cursor: pointer;
}

.faq-modal .faq-modal-next-pre .faq-modal-pre.faq-modal-pre-dis {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev-disabled.svg") no-repeat top left;
  cursor: auto;
}

.faq-modal .faq-modal-next-pre .faq-modal-next {
  background: url("/documents/554082/34071115/icon-circle-arrow-next.svg") no-repeat top left;
  width: 52px;
  height: 52px;
  margin-right: 17px;
  cursor: pointer;
}

.faq-modal .faq-modal-next-pre .faq-modal-next.faq-modal-next-dis {
  background: url("/documents/554082/34071115/icon-circle-arrow-next-disabled.svg") no-repeat top left;
  cursor: auto;
}

.timeline-section {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 100px;
}

@media screen {
  .timeline-section .container {
    padding-right: 0;
  }
}

.timeline-section::before {
  position: absolute;
  content: " ";
  top: auto;
  bottom: 0px;
  left: 74%;
  right: 0;
  margin-bottom: 27px;
  border-bottom: dotted 3px #CD8C66;
}

@media screen and (max-width: 960px) {
  .timeline-section::before {
    left: 90%;
  }
}

.timeline-section h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  margin: 0 0 82px 0;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .timeline-section h1 {
    font-size: 28px;
    margin: 0 0 50px 0;
    padding-right: 25px;
  }
}

.timeline-section .timeline-row {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-section .timeline-row .slick-list {
  padding: 0 5% 0 2% !important;
}

.timeline-section .timeline-row .timeline-item {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-section .timeline-row .timeline-item::before {
  position: absolute;
  content: " ";
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  margin-bottom: 27px;
  border-bottom: solid 3px #CD8C66;
}

@media screen and (max-width: 960px) {
  .timeline-section .timeline-row .timeline-item .timeline-body {
    max-width: 293px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body.timeline-body-item-two {
  margin-top: 45px;
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body.timeline-body-item-three {
    margin-top: 20px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body.timeline-body-item-four {
  margin-top: 36px;
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body.timeline-body-item-four {
    margin-top: 74px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-badge {
  position: absolute;
  bottom: 45px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-badge .circle {
  width: 18px;
  height: 18px;
  border: solid 4px #c88656;
  background-color: #ffffff;
  border-radius: 100px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-badge .h-line {
  min-height: 30px;
  border-left: solid 1px #26637e;
  margin: 0 0 3px 7px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-badge .h-line.height {
  height: 125px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-badge .date {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 14px;
  margin-bottom: -45px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel {
  margin-bottom: 95px;
  margin-left: 5px;
  margin-right: 55px;
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel {
    margin-right: 10px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-one {
  margin-bottom: 170px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-two {
  margin-bottom: 75px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-three {
  margin-bottom: 168px;
  margin-right: 65px;
}

@media screen and (max-width: 960px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-three {
    margin-bottom: 185px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-three {
    margin-right: 10px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-four {
  margin-right: 90px;
  margin-bottom: 76px;
}

@media screen and (max-width: 960px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-four {
    margin-bottom: 91px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-four {
    margin-right: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-four {
    margin-bottom: 92px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-five {
  margin-right: 90px;
  margin-bottom: 112px;
}

@media screen and (max-width: 960px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-five {
    margin-bottom: 128px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-five {
    margin-right: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel.timeline-item-five {
    margin-bottom: 128px;
  }
}

@media screen and (max-width: 960px) {
  .timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel {
    margin-bottom: 163px;
    margin-left: 5px;
  }
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel .pics img {
  display: inline-block;
  margin-right: 10px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel .timeline-heading {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.07px;
  color: #191619;
  margin-bottom: 5px;
  margin-top: 15px;
}

.timeline-section .timeline-row .timeline-item .timeline-body .timeline-panel .timeline-body-text {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  color: #191619;
}

.timeline-section .slick-dots {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -70px;
  list-style: none;
  padding: 0;
  margin: auto;
  width: auto;
}

@media screen and (max-width: 960px) {
  .timeline-section .slick-dots {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.timeline-section .slick-dots li {
  width: 8px;
  height: 8px;
  background: #cfcfd0;
  border-radius: 100px;
  list-style: none;
  padding: 0;
}

.timeline-section .slick-dots li button {
  padding: 0;
  margin: 0;
}

.timeline-section .slick-dots li button:before {
  content: '';
}

.timeline-section .slick-dots li.slick-active {
  width: 11px;
  height: 11px;
  background: #2e2e85;
  border-radius: 100%;
}

.timeline-section .slick-prev,
.timeline-section .slick-next {
  width: 52px;
  height: 52px;
  top: -105px;
  z-index: 1;
}

.timeline-section .slick-prev {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev.svg") no-repeat;
  background-repeat: no-repeat;
  left: initial;
  right: 60px;
}

.timeline-section .slick-prev:before {
  content: '';
}

.timeline-section .slick-prev.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.timeline-section .slick-next {
  background: url("/documents/554082/34071115/icon-circle-arrow-next.svg") no-repeat;
  background-repeat: no-repeat;
  left: initial;
  right: 0;
}

.timeline-section .slick-next:before {
  content: '';
}

.timeline-section .slick-next.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-next-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.gig-group-numbers {
  background: #2e2e85;
  color: #ffffff;
  padding: 54px 0;
  text-align: center;
  margin-top: 0px;
}

@media screen and (max-width: 960px) {
  .gig-group-numbers {
    margin-top: 30px;
  }
}

.gig-group-numbers h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 960px) {
  .gig-group-numbers h1 {
    font-size: 28px;
    line-height: 1.31;
  }
}

.gig-group-numbers .ggn-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  margin-top: 63px;
  margin-bottom: 81px;
}

@media screen and (max-width: 960px) {
  .gig-group-numbers .ggn-body {
    margin-top: 33px;
    margin-bottom: 65px;
    margin-left: 30px;
    margin-right: 10px;
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .gig-group-numbers .ggn-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

@media screen and (max-width: 960px) {
  .gig-group-numbers .ggn-body .ggn-item {
    margin-bottom: 30px;
  }
}

.gig-group-numbers .ggn-body .ggn-item .ggn-title {
  font-family: 'Poppins-semibold';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  line-height: 3.29;
  letter-spacing: 1.26px;
  font-size: 14px;
}

.gig-group-numbers .ggn-body .ggn-item .ggn-value {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 45px;
  line-height: 1.02;
  letter-spacing: -1.29px;
}

@media screen and (max-width: 960px) {
  .gig-group-numbers .ggn-body .ggn-item .ggn-value {
    margin-bottom: 5px;
  }
}

.gig-group-numbers .ggn-body .ggn-item .ggn-increase {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.08px;
  font-size: 16px;
}

.gig-group-numbers .ggn-body .ggn-item .ggn-increase .per {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
}

.gig-group-numbers .fy-text {
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.08px;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .gig-group-numbers .fy-text {
    font-size: 14px;
  }
}

.gig-news-container {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .gig-news-container {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}

.gig-news-container h1 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 36px;
  line-height: 1.26;
  color: #191619;
  padding: 0;
  margin: 0 0 47px 0;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .gig-news-container h1 {
    font-size: 28px;
  }
}

.gig-news-container .gig-news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content {
    display: block;
  }
}

.gig-news-container .gig-news-content .gig-featured-news {
  width: 404px;
  border: solid 1px #dfdfdf;
  border-radius: 10px 10px 0 0;
  margin-right: 30px;
  position: relative;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-featured-news {
    margin-right: 0;
    width: initial;
    margin-bottom: 30px;
  }
}

.gig-news-container .gig-news-content .gig-featured-news .tag-fn {
  position: absolute;
  top: -14px;
  left: 10px;
  border-radius: 13px;
  background: #c0895f;
  letter-spacing: 0.08px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  padding: 3px 29px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-featured-news .pic-fn {
    width: 340px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .gig-news-container .gig-news-content .gig-featured-news .pic-fn {
    width: 100%;
  }
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body {
  padding: 22px;
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .fn-date-source {
  font-size: 18px;
  line-height: 1.22;
  color: #29353d;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .fn-title {
  font-size: 21px;
  line-height: 1.62;
  letter-spacing: -0.58px;
  color: #191619;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  margin: 12px 0 18px 0;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-featured-news .fn-body .fn-title {
    font-size: 18px;
  }
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow {
  font-size: 16px;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  font-style: normal;
  color: #2e2e85;
  cursor: pointer;
  line-height: normal;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow {
    font-size: 18px;
  }
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow img {
  margin-right: 5px;
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:hover, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:active, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:visited, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:focus {
  color: #2e2e85;
}

.gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:hover img, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:active img, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:visited img, .gig-news-container .gig-news-content .gig-featured-news .fn-body .right-link-with-arrow:focus img {
  -webkit-animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
          animation: animate-arrow-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.gig-news-container .gig-news-content .gig-news-body {
  border: solid 1px rgba(151, 151, 151, 0.3);
  width: 700px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body {
    width: initial;
    border: 0;
    padding-bottom: 60px;
  }
}

.gig-news-container .gig-news-content .gig-news-body .news-item {
  border-bottom: solid 1px #cacaca;
  padding: 22px 34px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .news-item {
    border-top: solid 1px #cacaca;
    padding: 25px 0;
    border-bottom: 0;
  }
}

.gig-news-container .gig-news-content .gig-news-body .news-item:last-child {
  border-bottom: 0;
}

.gig-news-container .gig-news-content .gig-news-body .news-item .ni-date-source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  line-height: 1.22;
  color: #29353d;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  margin-bottom: 5px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .news-item .ni-date-source {
    margin-bottom: 20px;
  }
}

.gig-news-container .gig-news-content .gig-news-body .news-item .news-title {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 21px;
  line-height: 1.62;
  letter-spacing: -0.58px;
  padding-right: 150px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .news-item .news-title {
    padding-right: 0;
  }
}

.gig-news-container .gig-news-content .gig-news-body .news-item .news-title a {
  color: #191619;
}

.gig-news-container .gig-news-content .gig-news-body .slick-prev,
.gig-news-container .gig-news-content .gig-news-body .slick-next {
  width: 52px;
  height: 52px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-prev,
  .gig-news-container .gig-news-content .gig-news-body .slick-next {
    top: 94%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-prev,
  .gig-news-container .gig-news-content .gig-news-body .slick-next {
    top: 105%;
  }
}

.gig-news-container .gig-news-content .gig-news-body .slick-prev {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev.svg") no-repeat;
  background-repeat: no-repeat;
  right: -80px;
  left: initial;
  margin-top: -80px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-prev {
    left: 30%;
    margin-top: 0;
    right: initial;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-prev {
    left: 30%;
    margin-top: 0;
    right: initial;
  }
}

.gig-news-container .gig-news-content .gig-news-body .slick-prev:before {
  content: '';
}

.gig-news-container .gig-news-content .gig-news-body .slick-prev.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-prev-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

.gig-news-container .gig-news-content .gig-news-body .slick-next {
  background: url("/documents/554082/34071115/icon-circle-arrow-next.svg") no-repeat;
  background-repeat: no-repeat;
  right: -80px;
}

@media screen and (max-width: 960px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-next {
    right: 30%;
    margin-top: 0;
    left: initial;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .gig-news-container .gig-news-content .gig-news-body .slick-next {
    right: 30%;
    margin-top: 0;
    left: initial;
  }
}

.gig-news-container .gig-news-content .gig-news-body .slick-next:before {
  content: '';
}

.gig-news-container .gig-news-content .gig-news-body .slick-next.slick-disabled {
  background: url("/documents/554082/34071115/icon-circle-arrow-next-disabled.svg") no-repeat;
  background-repeat: no-repeat;
  cursor: unset;
}

@media screen and (max-width: 960px) {
  .vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 90%;
    margin: auto;
  }
}

@media screen and (max-width: 960px) {
  .vertical-align-center {
    display: table-cell;
    vertical-align: middle;
  }
}

@media screen and (max-width: 960px) {
  .hideInResponsive {
    display: none;
  }
}

.showInResponsive {
  display: none;
}

@media screen and (max-width: 960px) {
  .showInResponsive {
    display: block;
  }
}

.audio-player-paul {
  text-align: right;
}

@media screen and (max-width: 960px) {
  .audio-player-paul {
    text-align: initial;
  }
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
            transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
            transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}

.dialog-ovelay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11111;
}

.dialog-ovelay .dialog {
  width: 500px;
  margin: 100px auto 0;
  background: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .dialog-ovelay .dialog {
    width: 90%;
    margin: 10% auto auto auto;
  }
}

.dialog-ovelay .dialog h3 {
  font-family: 'Poppins-Bold';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-size: 25px;
  line-height: 1.31;
  padding: 0;
  margin: 0;
  display: none;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .dialog-ovelay .dialog h3 {
    font-size: 28px;
  }
}

.dialog-ovelay .dialog .dialog-msg p {
  font-size: 16px;
  line-height: 1.29;
  letter-spacing: 0.08px;
  font-family: 'Source Sans Pro';
  font-weight: normal;
  font-style: normal;
  padding-bottom: 10px;
}

.dialog-ovelay .dialog .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.dialog-ovelay .dialog .btn-container .btn {
  width: 150px;
  margin-right: 10px;
}
/*# sourceMappingURL=index.css.map */