*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

/*  ==========================================================================
    General
    ==========================================================================

    BASE DATA


    */
body,
html {
  font-family: "GT Super Display";
  min-height: 100%;
  height: 100%;
  font-size: 18px;
  scroll-behavior: smooth;
}

@media (max-width: 425px) {
  body,
  html {
    font-size: 16px;
    line-height: 1.25em;
  }
}

a,
a:active,
a:visited {
  text-decoration: none;
}

p {
  margin: 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  line-height: 1.25em;
}

@media (max-width: 425px) {
  ol,
  ul {
    padding: 0 0 0 15px;
  }
}

section {
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

div.test,
section.test {
  border: 1px solid gray !important;
  min-height: 0px;
}

/*  ==========================================================================
    Links
    ==========================================================================*/
/*  ==========================================================================
    Common
    ==========================================================================*/
.extra-large-frame {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .extra-large-frame {
    padding-left: 20px;
    padding-right: 20px;
  }
  .extra-large-frame .inner-frame {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.large-frame {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1440px) {
  .large-frame {
    padding-left: 20px;
    padding-right: 20px;
  }
  .large-frame .inner-frame {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.frame {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1440px) {
  .frame {
    padding-left: 20px;
    padding-right: 20px;
  }
  .frame .inner-frame {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.inner-frame {
  width: 100%;
  max-width: 994px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .inner-frame {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrapper.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-wrapper.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-wrapper.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-wrapper.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-wrapper > div.flex-2 {
  width: 50%;
}

@media (max-width: 650px) {
  .flex-wrapper > div.flex-2 {
    width: 100%;
  }
}

.flex-wrapper > div.flex-3 {
  width: calc(100% / 3);
}

@media (max-width: 650px) {
  .flex-wrapper > div.flex-3 {
    width: 100%;
  }
}

.flex-wrapper > div.flex-4 {
  width: 25%;
}

@media (max-width: 650px) {
  .flex-wrapper > div.flex-4 {
    width: 100%;
  }
}

.flex-wrapper > div.flex-5 {
  width: calc(100% / 5);
}

@media (max-width: 650px) {
  .flex-wrapper > div.flex-5 {
    width: 100%;
  }
}

.flex-wrapper > div.flex-6 {
  width: calc(100% / 6);
}

@media (max-width: 650px) {
  .flex-wrapper > div.flex-6 {
    width: 100%;
  }
}

.banner-section {
  height: 90vh;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: silver;
}

.banner-section h1 {
  margin: 0;
  text-align: center;
}

/*  ==========================================================================
    CLEARFIX
    ==========================================================================*/
.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

button.light-button {
  padding: 20px 27px 20px 30px;
  border: 1px solid #E5785F;
  border-radius: 5px;
  background: 0 0;
  min-width: 173px;
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-family: "Apercu Pro";
  font-weight: 700;
  text-align: center;
  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;
}

@media (max-width: 650px) {
  button.light-button {
    font-size: 12px;
    line-height: 9.76px;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16.7px 27px 16.7px 30px;
  }
}

button.light-button:hover {
  background-color: #E5785F;
  border: 1px solid transparent;
}

button.light-button:hover a {
  color: #fff;
}

button.light-button a {
  color: #E5785F;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button.light-button a svg {
  margin-left: 12px;
}

button.light-button:hover svg path {
  fill: #fff;
}

.cb10-text-reveal {
  position: relative;
  background: #F8EEE1;
  padding: 135px 0;
  overflow: hidden;
  margin-bottom: 10px;
}

@media (max-width: 650px) {
  .cb10-text-reveal {
    padding: 40px 0;
  }
}

.cb10-text-reveal .illustration {
  position: absolute;
  right: -60px;
  top: 73px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}

@media (max-width: 650px) {
  .cb10-text-reveal .illustration {
    display: none;
  }
}

.cb10-text-reveal .active .illustration {
  fill: white;
}

.cb10-text-reveal .cb10-head {
  position: relative;
  margin: 0px auto 110px auto;
  text-align: center;
  margin-bottom: 110px;
  max-width: 745px;
  -ms-grid-column-align: center;
      justify-self: center;
}

@media (max-width: 768px) {
  .cb10-text-reveal .cb10-head {
    max-width: none;
  }
}

@media (max-width: 650px) {
  .cb10-text-reveal .cb10-head {
    margin-bottom: 45px;
  }
}

.cb10-text-reveal .cb10-head h2 {
  font-family: "GT Super Display";
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.018em;
  color: #181818;
  margin-bottom: 18px;
}

@media (max-width: 650px) {
  .cb10-text-reveal .cb10-head h2 {
    margin-bottom: 24px;
  }
}

.cb10-text-reveal .cb10-head p {
  font-family: "Apercu Pro";
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #181818;
  margin-bottom: 0;
}

@media (max-width: 650px) {
  .cb10-text-reveal .cb10-head p {
    font-size: 16px;
    line-height: 24px;
  }
}

.cb10-text-reveal .cb10-head p span a {
  color: #E5785F;
  font-weight: 400;
}

.cb10-text-reveal .cb10-content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.cb10-text-reveal .cb10-content-row .cb-10-list {
  position: relative;
  display: block;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 445px;
  margin-right: 47px;
}

@media (max-width: 992px) {
  .cb10-text-reveal .cb10-content-row .cb-10-list {
    display: none;
  }
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 2px solid #fff;
  max-width: 445px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item {
    max-width: none;
    width: 100%;
    padding: 20px 0;
  }
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item:first-child {
  padding-top: 0;
  border: none;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item:last-child {
  padding-bottom: 10px;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item:hover .cb-10-link {
  color: #B94C45;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item .cb-10-link {
  position: relative;
  display: list-item;
  font-family: "Apercu Pro";
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E5785F;
  margin-bottom: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item.active .cb-10-link {
  color: #181818;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .cb-10-list-item.active:hover .cb-10-link {
  color: #181818 !important;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .see-more-button {
  border-top: 2px solid #fff;
  padding-top: 30px;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .see-more-button a {
  font-family: "Apercu Pro";
  font-weight: 700;
  font-size: 16px;
  color: #E5785F;
}

.cb10-text-reveal .cb10-content-row .cb-10-list .see-more-button a:hover {
  color: #B94C45;
}

.cb10-text-reveal .cb10-content-row .tab_container {
  width: 100%;
}

.cb10-text-reveal .cb10-content-row .tab_container .tab_drawer_heading {
  display: none !important;
  cursor: pointer;
  position: relative;
  display: list-item;
  font-family: "Apercu Pro";
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E5785F;
  margin: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid #fff;
}

.cb10-text-reveal .cb10-content-row .tab_container .tab_drawer_heading:first-of-type {
  border-color: transparent;
}

@media (max-width: 992px) {
  .cb10-text-reveal .cb10-content-row .tab_container .tab_drawer_heading {
    display: block !important;
  }
}

.cb10-text-reveal .cb10-content-row .tab_container .see-more-button {
  display: none;
  border-top: 2px solid #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .cb10-text-reveal .cb10-content-row .tab_container .see-more-button {
    display: block !important;
  }
}

.cb10-text-reveal .cb10-content-row .cb10-dropdown {
  max-width: 100%;
  padding: 60px 58px 60px 49px;
  background-color: #fff;
}

@media (max-width: 992px) {
  .cb10-text-reveal .cb10-content-row .cb10-dropdown {
    margin-bottom: 20px;
  }
}

.cb10-text-reveal .cb10-content-row .cb10-drop-head {
  font-family: "GT Super Display";
  font-weight: 400;
  font-size: 27px;
  line-height: 36px;
  color: #181818;
  margin: 0 0 15px 0;
}

.cb10-text-reveal .cb10-content-row .cb10-drop-text {
  margin: 0;
}

@media (max-width: 650px) {
  .cb10-text-reveal .cb10-content-row .cb10-drop-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.cb10-text-reveal .cb10-content-row .cb10-drop-text span {
  display: block;
  margin-bottom: 26px;
  font-family: "Apercu Pro";
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
}

.cb10-text-reveal .cb10-content-row .btn.download {
  display: inline-block;
  padding: 20px 27px 20px 30px;
  border: 1px solid #E5785F;
  border-radius: 5px;
  margin-top: 29px;
  font-family: "Apercu Pro";
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #181818;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cb10-text-reveal .cb10-content-row .btn.download:hover {
  background-color: #E5785F;
  color: #fff;
}

@media (max-width: 650px) {
  .cb10-text-reveal .cb10-content-row .btn.download {
    width: 100%;
  }
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.cb10-text-reveal.two:hover .playbutton {
  opacity: 1;
}

.cb10-text-reveal.two .cb10-dropdown, .cb10-text-reveal.two .cb10-dropdown-mob {
  position: relative;
  background-color: transparent;
  right: auto;
  padding: 0 !important;
}

.cb10-text-reveal.two .drop-video {
  height: 572px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 992px) {
  .cb10-text-reveal.two .drop-video {
    max-height: 572px;
    height: 100%;
  }
}

@media (max-width: 650px) {
  .cb10-text-reveal.two .drop-video {
    max-height: 343px;
    height: 100%;
  }
}

.cb10-text-reveal.two .drop-video[poster] {
  width: 100%;
}

.cb10-text-reveal.two .play-button-area {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.cb10-text-reveal.two .play-button-area .play-button {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

@media (max-width: 650px) {
  .cb10-text-reveal.two .play-button-area .play-button {
    height: 75px;
    width: 75px;
  }
}

.cb10-text-reveal.two .play-button-area:hover .play-button {
  height: 115px;
  width: 115px;
}

@media (max-width: 650px) {
  .cb10-text-reveal.two .play-button-area:hover .play-button {
    height: 80px;
    width: 80px;
  }
}

.cb10-text-reveal.two .play-button-area .play-img, .cb10-text-reveal.two .play-button-area .pause-img {
  position: absolute;
  height: 26px;
  width: 26px;
  top: 0;
  bottom: 0;
  left: 3px;
  right: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 1;
}

@media (max-width: 650px) {
  .cb10-text-reveal.two .play-button-area .play-img, .cb10-text-reveal.two .play-button-area .pause-img {
    width: 20px;
    height: 20px;
  }
}

.cb10-text-reveal.two .play-button-area .pause-img {
  opacity: 0;
}

.cb10-text-reveal.two .cb10-dropdown.play .play-button-area, .cb10-text-reveal.two .cb10-dropdown-mob.play .play-button-area {
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb10-text-reveal.two .cb10-dropdown.play .pause-img, .cb10-text-reveal.two .cb10-dropdown-mob.play .pause-img {
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb10-text-reveal.two .cb10-dropdown.play .play-img, .cb10-text-reveal.two .cb10-dropdown-mob.play .play-img {
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb10-text-reveal.two .cb10-dropdown.play:hover .play-button-area, .cb10-text-reveal.two .cb10-dropdown-mob.play:hover .play-button-area {
  opacity: 1;
}

.cb8-related-content {
  padding: 135px 0;
  background-color: #F8C7A2;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

@media (max-width: 650px) {
  .cb8-related-content {
    padding: 60px 0;
    background-color: #f7c8a399;
  }
}

.cb8-related-content .related-content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
}

@media (max-width: 992px) {
  .cb8-related-content .related-content-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.cb8-related-content .related-content-row .related-content-left img {
  border-radius: 0px 0px 150px 0px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.cb8-related-content .related-content-row .related-content-left h4 {
  font-weight: 400;
  font-size: 39px;
  line-height: 51px;
  letter-spacing: -0.015em;
  color: #181818;
  margin: 0 0 18px 0;
}

@media (max-width: 650px) {
  .cb8-related-content .related-content-row .related-content-left h4 {
    margin: 0 0 14px 0;
  }
}

.cb8-related-content .related-content-row .cb-8-link {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-right: 31px;
  font-family: "Apercu Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.cb8-related-content .related-content-row .cb-8-link:hover {
  color: #E5785F;
  padding-right: 35px;
}

@media (max-width: 650px) {
  .cb8-related-content .related-content-row .cb-8-link {
    font-size: 14px;
    padding-right: 24px;
  }
}

.cb8-related-content .related-content-row .cb-8-link img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb8-related-content .related-content-row .related-content-right {
  max-width: 480px;
  width: 100%;
}

@media (max-width: 992px) {
  .cb8-related-content .related-content-row .related-content-right {
    max-width: none;
  }
}

.cb8-related-content .related-content-row .related-content-right .related-content-list {
  margin: 0 0 51px 0;
  padding-bottom: 51px;
  border-bottom: 2px solid #fff;
}

.cb8-related-content .related-content-row .related-content-right .related-content-list:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 650px) {
  .cb8-related-content .related-content-row .related-content-right .related-content-list {
    padding-bottom: 30px;
    margin: 0 0 30px 0;
    border-bottom: 1px solid rgba(126, 126, 126, 0.3);
  }
}

.cb8-related-content .related-content-row .related-content-right h4 {
  font-weight: 400;
  font-size: 27px;
  line-height: 36px;
  color: #181818;
  margin: 0 0 18px 0;
}

@media (max-width: 650px) {
  .cb8-related-content .related-content-row .related-content-right h4 {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 7px 0;
  }
}

.cb-9-stats-callout {
  position: relative;
  padding: 135px 0;
  height: 800px;
  background-position: center;
  background-size: cover;
  transition: background-image .5s linear;
  -webkit-transition: background-image .5s linear;
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 992px) {
  .cb-9-stats-callout {
    height: auto;
  }
}

@media (max-width: 767px) {
  .cb-9-stats-callout {
    padding: 40px 0 60px 0;
  }
}

.cb-9-stats-callout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all .5s linear;
  -webkit-transition: all .5s linear;
}

.cb-9-stats-callout .cb9-stats-callout-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

@media (max-width: 992px) {
  .cb-9-stats-callout .cb9-stats-callout-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left {
  max-width: 592px;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left {
    margin: 0 auto 30px auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left {
    margin: 0 auto;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left h5 {
  font-family: "Apercu Pro";
  font-weight: 700;
  font-size: 21px;
  line-height: 21px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F8C7A2;
  margin: 0 0 21px 0;
  transition: color .5s linear;
  -webkit-transition: color .5s linear;
}

@media mobileStart {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left h5 {
    font-size: 13px;
    line-height: 17px;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left h2 {
  font-weight: 400;
  font-size: 39px;
  line-height: 51px;
  color: #181818;
  transition: color .5s linear;
  -webkit-transition: color .5s linear;
  margin: 0;
}

@media (max-width: 767px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-left h2 {
    font-size: 23px;
    line-height: 29px;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right {
  position: absolute;
  top: 51px;
  bottom: 0;
  margin: auto 0;
  right: 0;
  width: 779px;
  z-index: 1;
}

@media (max-width: 992px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100%;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg {
  position: relative;
}

@media (max-width: 992px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg {
    display: none;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-one, .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-two, .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-three {
  display: block;
  cursor: pointer;
  pointer-events: bounding-box;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-one:hover h3, .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-two:hover h3, .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg #number-three:hover h3 {
  color: #F8C7A2;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg .diamond-path {
  transition: all .5s linear;
  -webkit-transition: all .5s linear;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg foreignObject h3 {
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 63px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #476142;
  margin: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg .sort-text {
  font-family: "Apercu Pro";
  line-height: 27px;
  font-weight: 300;
  color: #fff !important;
  opacity: 0;
  display: none;
  transition: opacity .5s linear;
  -webkit-transition: opacity .5s linear;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right svg .sort-text.show-para {
  display: block;
  opacity: 1;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content {
  display: none;
}

@media (max-width: 992px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content {
    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;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list {
  text-align: center;
  width: 45%;
  margin-top: 30px;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list:first-child {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list {
    width: 100%;
  }
  .cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list:first-child {
    margin-right: 0;
  }
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list h2 {
  font-size: 60px;
  line-height: 63px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #476142;
  margin: 0 0 8px 0;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list h6 {
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #181818;
  margin: 0 0 14px 0;
}

.cb-9-stats-callout .cb9-stats-callout-row .cb9-stats-callout-right .cb9-mob-content .cb9-stats-callout-list p {
  font-size: 16px;
  font-family: "Apercu Pro";
  line-height: 24px;
  color: #181818;
  margin: 0;
}

.cb-9-stats-callout .cb9-stats-callout-list-img {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #181818;
  left: 0;
  top: 0;
  z-index: -1;
}

.cb-9-stats-callout .cb9-stats-callout-list-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  opacity: .5;
}

.cb-9-stats-callout.active-section .cb9-stats-callout-row .cb9-stats-callout-left h2, .cb-9-stats-callout.active-section .cb9-stats-callout-row .cb9-stats-callout-left h5 {
  color: #fff !important;
}

.cb-9-stats-callout.active-section .cb9-stats-callout-row .cb9-stats-callout-right foreignObject h3 {
  color: #fff;
}

.cb-9-stats-callout.active-section .cb9-stats-callout-row .diamond-path {
  stroke: #fff;
}

.cb-9-stats-callout.active-section .cb9-stats-callout-row .cta-title {
  color: #fff;
}

.num-1-bg.active-section {
  background-image: url("../image/cb-9-poster2.png");
}

.num-1-bg.active-section::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.num-2-bg.active-section {
  background-image: url("../image/cb-9-poster.png");
}

.num-2-bg.active-section::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.num-3-bg.active-section {
  background-image: url("../image/cb-9-poster3.png");
}

.num-3-bg.active-section::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.cb-12 {
  position: relative;
  padding: 210px 0 135px 0;
  background-color: #F3EFEE;
  z-index: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cb-12::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#93344E), to(#E28B98));
  background: linear-gradient(180deg, #93344E 0%, #E28B98 100%);
  opacity: 0;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

@media (max-width: 650px) {
  .cb-12 {
    padding: 84px 0 80px 0;
  }
}

.cb-12 .cb-10-head {
  margin-bottom: 60px;
}

.cb-12 .cb-10-head h2 {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  letter-spacing: -0.018em;
  color: #181818;
  margin: 0;
}

@media (max-width: 650px) {
  .cb-12 .cb-10-head {
    margin: 0;
  }
  .cb-12 .cb-10-head h2 {
    font-size: 32px;
    line-height: 36px;
  }
}

.cb-12 .frame {
  position: relative;
  z-index: 1;
}

.cb-12 .cb-12-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.cb-12 .cb-12-row .mg-0 {
  margin: 0 0 0 0  !important;
}

@media (max-width: 1260px) {
  .cb-12 .cb-12-row .mg-0 {
    margin: 30px auto 0 auto !important;
  }
}

.cb-12 .cb-12-row .mgt-60 {
  margin: 60px 0 0 0 !important;
}

.cb-12 .cb-12-row .mgy-30 {
  margin: 30px 0 30px 0 !important;
}

.cb-12 .cb-12-row .cb-12-col-4 {
  width: 100%;
  max-width: 406px;
}

@media (max-width: 1260px) {
  .cb-12 .cb-12-row .cb-12-col-4 {
    max-width: none;
  }
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box {
  position: relative;
  padding-right: 30px;
  padding-top: 30px;
  margin: 30px 0 30px 0;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1260px) {
  .cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box {
    max-width: 406px;
    margin: 30px auto 00px auto;
  }
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box {
    margin: 0 auto;
  }
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box .cb12-bgimg {
  position: absolute;
  right: 30px;
  top: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transition: top .6s ease, right .6s ease, opacity .3s ease;
  transition: top .6s ease, right .6s ease, opacity .3s ease;
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box .cb12-bgimg {
    max-width: 302px;
  }
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box:hover .cb12-bgimg {
  top: 0;
  right: 0;
  opacity: 1;
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box .cb12-img {
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0 0 150px 0;
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box p {
  position: absolute;
  margin: 0;
  left: 30px;
  bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box p span {
  display: block;
  font-family: "Apercu Pro";
}

.cb-12 .cb-12-row .cb-12-col-4 .cb-12-img-box.active {
  margin-top: 30px;
}

.cb-12 .cb-12-row .cb-12-col-12 {
  width: 100%;
}

.cb-12 .cb-12-row .cb-12-col-12 .cb-12-img-content {
  position: relative;
  padding: 60px 230px 118px 230px;
  margin: 30px 0 0 0;
  background-color: #fff;
}

.cb-12 .cb-12-row .cb-12-col-12 .cb-12-img-content .close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}

.cb-12 .cb-12-row .cb-12-col-12 .cb-12-img-content h3 {
  font-weight: 400;
  font-size: 27px;
  line-height: 36px;
  color: #181818;
  margin: 0 0 15px 0;
}

.cb-12 .cb-12-row .cb-12-col-12 .cb-12-img-content h4 {
  font-family: "Apercu Pro";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #476142;
  margin: 0 0 51px 0;
}

.cb-12 .cb-12-row .cb-12-col-12 .cb-12-img-content p {
  font-family: "Apercu Pro";
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #181818;
  margin: 0;
}

@media (max-width: 1260px) {
  .cb-12 .cb-12-row .dis-non-xl {
    display: none;
  }
}

.cb-12 .cb-12-row .active + .cb-12-img-content-mob {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  height: auto;
  -webkit-transform-origin: top;
          transform-origin: top;
  margin: 60px 0 30px 0;
  padding: 60px 230px 118px 230px;
}

@media (max-width: 992px) {
  .cb-12 .cb-12-row .active + .cb-12-img-content-mob {
    padding: 60px;
    margin: 60px 0 0 0;
  }
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .active + .cb-12-img-content-mob {
    margin: 30px 0 0 0;
    padding: 42px 20px 44px 20px;
  }
}

.cb-12 .cb-12-row .cb-12-img-content-mob {
  position: relative;
  padding: 0;
  margin: 60px 0 30px 0;
  background-color: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  height: 0;
  -webkit-transition: height .3s ease, margin .1s ease, padding .1s ease, -webkit-transform .3s ease;
  transition: height .3s ease, margin .1s ease, padding .1s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, height .3s ease, margin .1s ease, padding .1s ease;
  transition: transform .3s ease, height .3s ease, margin .1s ease, padding .1s ease, -webkit-transform .3s ease;
}

@media (max-width: 992px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob {
    margin: 0;
  }
}

.cb-12 .cb-12-row .cb-12-img-content-mob .close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob .close-btn {
    height: 21px;
    width: 21px;
    right: 14px;
    top: 14px;
  }
}

.cb-12 .cb-12-row .cb-12-img-content-mob h3 {
  font-weight: 400;
  font-size: 27px;
  line-height: 36px;
  color: #181818;
  margin: 0 0 15px 0;
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob h3 {
    font-size: 21px;
    line-height: 27px;
    margin: 0 0 8px 0;
  }
}

.cb-12 .cb-12-row .cb-12-img-content-mob h4 {
  font-family: "Apercu Pro";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #476142;
  margin: 0 0 51px 0;
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob h4 {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 16px 0;
    color: #909D60;
  }
}

.cb-12 .cb-12-row .cb-12-img-content-mob p {
  font-family: "Apercu Pro";
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #181818;
  margin: 0;
}

@media (max-width: 650px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 1260px) {
  .cb-12 .cb-12-row .cb-12-img-content-mob {
    display: none;
  }
}

.burgundy-bg.cb-12 {
  background: #93344E;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

.burgundy-bg.cb-12 .cb-10-head h2 {
  color: #fff;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.cb-12.burgundy-bg-light::after {
  opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*# sourceMappingURL=style.css.map */