@charset "UTF-8";

button.css-reset {
  border-radius: 0;
  background: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

.background-image.standard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.gp-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 900px) {
  .gp-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 500px) {
  .gp-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 430px) {
  .gp-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.video-gallery-section {
  background: #f8f8f8;
}

.video-gallery-section .video-gallery-wrapper {
  padding: 70px;
  min-height: 587px;
}

@media screen and (max-width: 1400px) {
  .video-gallery-section .video-gallery-wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.video-gallery-section .video-gallery-wrapper .selectCategoryContainer {
  display: none;
}

.video-gallery-section .video-gallery-wrapper .selectCategoryContainer #categorySelect {
  width: 10%;
  margin-bottom: 20px;
  display: block;
  background-color: inherit;
  color: black;
  border: none;
  border-bottom: 2px solid white;
}

@media screen and (max-width: 1500px) {
  .video-gallery-section .video-gallery-wrapper .selectCategoryContainer #categorySelect {
    width: 15%;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 1150px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems {
    justify-content: space-around;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video {
  padding: 10px 10px;
  margin-bottom: 40px;
  width: 31%;
  border-radius: 20px;
  background: white;
  color: white;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1400px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video {
    width: 31%;
  }
}

@media screen and (max-width: 1150px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video {
    width: 48%;
  }
}

@media screen and (max-width: 790px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video {
    width: 85%;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video h3 {
  font-size: 18px;
  color: black;
  font-weight: 400 !important;
}

@media screen and (max-width: 1350px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video h3 {
    font-size: 15px;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  height: 300px;
}

@media screen and (max-width: 1600px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 272px;
  }
}

@media screen and (max-width: 1400px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 229px;
  }
}

@media screen and (max-width: 1200px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 200px;
  }
}

@media screen and (max-width: 1150px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 250px;
  }
}

@media screen and (max-width: 1000px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 225px;
  }
}

@media screen and (max-width: 890px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 195px;
  }
}

@media screen and (max-width: 790px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper {
    height: 300px;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .background-image {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .titleandtimestamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  color: black;
  font-size: 18px;
  background: #fafafa;
  opacity: 0.9;
  border-radius: 0px 0px 10px 10px;
  padding: 0 10px;
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .titleandtimestamp .play-timestamp-wrapper {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 400px) {
  .video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .titleandtimestamp .play-timestamp-wrapper {
    width: 33%;
  }
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .titleandtimestamp .play-timestamp-wrapper .time-stamp-wrapper h5 {
  font-size: 18px;
  font-weight: 400;
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .playbutton-container {
  color: black;
}

.video-gallery-section .video-gallery-wrapper .videoGalleryItems .single-video .single-video-wrapper .playbutton-container .fa-play-circle {
  font-size: 24px;
}

.nivo-lightbox-overlay .nivo-lightbox-wrap .nivo-lightbox-content iframe {
  display: block;
}

.nivo-lightbox-wrap.nivo-lightbox-wrap {
  top: 8%;
  bottom: 8%;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
  background-position: center center !important;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.gp-solutions-testimonial {
  width: 100%;
  background: #f0f0f0;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .gp-solutions-testimonial {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 600px) {
  .gp-solutions-testimonial {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.gp-solutions-testimonial.font-type-rock_salt .st-container p {
  font-family: 'Rock Salt', cursive;
  font-size: 16px;
  line-height: 32px;
}

.gp-solutions-testimonial.font-type-rock_salt .st-container p.st-text {
  font-size: 18px;
  line-height: 42px;
}

.gp-solutions-testimonial.font-type-glory .st-container p {
  font-family: 'Give You Glory', cursive;
  font-size: 24px;
  line-height: 34px;
}

.gp-solutions-testimonial.font-type-glory .st-container p.st-text {
  font-size: 28px;
  line-height: 46px;
}

.gp-solutions-testimonial.font-type-king .st-container p {
  font-family: 'Loved by the King', cursive;
  font-size: 30px;
  line-height: 38px;
}

.gp-solutions-testimonial.font-type-king .st-container p.st-text {
  font-size: 34px;
  line-height: 46px;
}

.gp-solutions-testimonial .st-container {
  width: 100%;
  max-width: 810px;
}

.gp-solutions-testimonial .st-container>*,
.gp-solutions-testimonial .st-container p {
  margin: 0 0 24px 0;
  padding: 0;
}

.gp-solutions-testimonial .st-container>*:last-child,
.gp-solutions-testimonial .st-container p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {

  .gp-solutions-testimonial .st-container>*,
  .gp-solutions-testimonial .st-container p {
    margin-bottom: 20px;
  }
}

.gp-solutions-testimonial .st-container .st-quote {
  margin-left: auto;
  margin-right: auto;
  width: 90px;
  height: 90px;
  background: #b50000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-radius: 99px;
  -webkit-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 35px;
}

.gp-solutions-testimonial .st-container .st-quote i {
  color: white;
  width: 100%;
  text-align: center;
  font-size: 50px;
}

.gp-solutions-testimonial .st-container p {
  font-size: 20px;
  line-height: 28px;
}

.gp-solutions-testimonial .st-container .st-author {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.gp-solutions-testimonial .st-container .st-loc {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .gp-solutions-testimonial .st-container p {
    font-size: 17px;
    line-height: 25px;
  }

  .gp-solutions-testimonial .st-container .st-author {
    font-size: 15px;
    line-height: 19px;
  }

  .gp-solutions-testimonial .st-container .st-loc {
    font-size: 14px;
    line-height: 18px;
  }
}

.gp-solutions-testimonial .st-container .st-btn {
  padding-top: 7px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.gp-solutions-testimonial .st-container .st-btn .seven-secrets-call-to-action {
  margin-top: 0;
}

#PageMainDiv.has-alt-img #leftSec img {
  position: absolute;
  display: block;
  left: 42%;
  padding: 0;
  margin: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 91%;
}

@media screen and (max-width: 1650px) {
  #PageMainDiv.has-alt-img #leftSec img {
    left: 55%;
  }
}

@media screen and (max-width: 1250px) {
  #PageMainDiv.has-alt-img #leftSec img {
    left: 60%;
    height: 90%;
  }
}

@media screen and (max-width: 1200px) {
  #PageMainDiv.has-alt-img #leftSec img {
    left: 0;
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
  }
}

@media screen and (max-width: 1090px) {
  #PageMainDiv.has-alt-img #leftSec img {
    -webkit-transform: translateX(-34%);
    -ms-transform: translateX(-34%);
    transform: translateX(-34%);
  }
}

.gp-coupon-codes {
  padding-top: 10px;
  text-align: center;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-toggle-checked {
  cursor: pointer !important;
}

.gp-coupon-codes.gpcc-4-alt.gpcc-checked .when-not-checked {
  display: none !important;
}

.gp-coupon-codes.gpcc-4-alt.gpcc-not-checked .when-checked {
  display: none !important;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon .img {
  display: block;
  width: 51px;
  height: auto;
  max-width: none;
  min-width: 0;
  max-height: none;
  min-height: 0;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon .icon {
  margin-left: 2px;
  margin-right: 5px;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon .icon.icon-grey i {
  color: #878787;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon .icon.icon-green i {
  color: #007600;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-img-icon .icon i {
  font-size: 15px;
  line-height: 15px;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-text .text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #007600;
}

.gp-coupon-codes.gpcc-4-alt .gpcc-checkbox-wrapper .gpcc-text .text strong {
  font-weight: 700;
}

.gp-coupon-codes .coupon {
  margin-top: 13px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.gp-coupon-codes .coupon p {
  border: 2px dashed #bfbfbf;
  font-size: 30px;
  line-height: 1em;
  font-weight: 300;
  padding: 6px 17px 5px 17px;
}

.gp-coupon-codes p {
  font-size: 15px;
  line-height: 1.2em;
  color: #b41932;
  letter-spacing: 0;
  margin: 0 0 5px 0;
  padding: 0;
  font-weight: 500;
}

.gp-coupon-codes p:last-child {
  margin-bottom: 0;
}

.gp-coupon-codes p.lg {
  font-weight: 700;
  font-size: 18px;
}

.page-id-13080 #GuaranteeSec {
  display: none;
}

#HomeSec:after {
  content: '\A';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  opacity: 0.4;
}

#extension {
  background: black;
}

#extension .extension-text h1,
#extension .extension-text h2,
#extension .extension-text h3 {
  font-size: 20px;
  margin: 0;
}

.angled-border-new {
  border-width: 150px 1663px 1663px;
}

#NewIntro {
  height: auto;
  background: #020024;
  background: linear-gradient(180deg, #020024 0%, #090979 53%, #4357a7 80%, #6b8cc6 93%, #93c1e5 100%);
}

#NewIntro #HomeInnerDiv {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8% 0px;
}

@media screen and (max-width: 1365px) {
  #NewIntro #HomeInnerDiv {
    padding: 10% !important;
  }
}

@media screen and (max-width: 700px) {
  #NewIntro #HomeInnerDiv {
    padding: 25% 5% !important;
    width: 100% !important;
  }
}

#NewIntro #HomeInnerDiv h3,
#NewIntro #HomeInnerDiv h2 {
  margin-top: 0 !important;
  margin-bottom: 75px;
}

#NewIntro #HomeInnerDiv h2 {
  color: #e9b777;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  #NewIntro #HomeInnerDiv h2 {
    font-size: 9vw !important;
  }
}

#NewIntro #HomeInnerDiv h2 strong {
  color: gold;
  font-weight: 700;
}

@media screen and (max-width: 1365px) {
  #HomeSec {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
  }
}

#HomeSec #HomeInnerDiv {
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 1365px) {
  #HomeSec #HomeInnerDiv {
    padding: 10% !important;
  }
}

@media screen and (max-width: 700px) {
  #HomeSec #HomeInnerDiv {
    padding: 25% 5% !important;
    width: 100% !important;
  }
}

#HomeSec #HomeInnerDiv h3,
#HomeSec #HomeInnerDiv h2 {
  margin-top: 0 !important;
  margin-bottom: 75px;
}

@media screen and (max-width: 600px) {
  #HomeSec #HomeInnerDiv h2 {
    font-size: 9vw !important;
  }
}

#newmortstory {
  background: black;
  height: auto;
}

@media screen and (min-width: 1366px) {
  #newmortstory {
    padding-bottom: 150px;
  }
}

#newmortstory .text {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  padding: 0% 2%;
  border: 1px solid white;
  color: white;
  font-size: 1.35rem !important;
}

@media screen and (max-width: 1365px) {
  #newmortstory .text {
    padding: 10% !important;
  }
}

@media screen and (max-width: 1023px) {
  #newmortstory .text {
    border: none;
  }
}

@media screen and (max-width: 800px) {
  #newmortstory .text {
    padding: 4% !important;
    padding-bottom: 30% !important;
  }
}

#newmortstory .text h5 {
  font-size: 1.15rem;
}

@media screen and (max-width: 1025px) {
  #newmortstory .text h5 p {
    font-size: 1.84rem !important;
  }
}

@media screen and (max-width: 800px) {
  #newmortstory .text h5 p {
    font-size: 1.34rem !important;
  }
}

#newmortstory .text ul {
  list-style: none;
}

#TragedySolutionSec {
  padding: 100px 0px !important;
  height: auto !important;
}

@media screen and (max-width: 800px) {
  #TragedySolutionSec {
    height: unset !important;
  }
}

@media screen and (max-width: 1366px) {
  #TragedySolutionSec .text-wrapper {
    padding: 0% 12%;
  }
}

@media screen and (max-width: 500px) {
  #TragedySolutionSec .text-wrapper {
    padding: 0% 5%;
  }
}

#TragedySolutionSec .text-wrapper .text {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #TragedySolutionSec .text-wrapper .text {
    width: 90% !important;
    padding: 25px 0px !important;
  }
}

@media screen and (max-width: 1366px) {
  #TragedySolutionSec .text-wrapper .text h1 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 500px) {
  #TragedySolutionSec .text-wrapper .text h1 {
    font-size: 2.5rem;
  }
}

#TragedySolutionSec .text-wrapper .text p {
  font-size: 1.25rem !important;
  width: unset;
  text-align: left;
  font-size: 20px;
}

#TragedySolutionSec .text-wrapper .text p:first-child {
  text-align: center;
  margin-bottom: 20px;
}

#TragedySolutionExt {
  padding: 100px 0px !important;
  height: auto !important;
  background: radial-gradient(circle, #02314f 22%, #001726 100%);
  border-top: solid;
  border-width: 1px;
  border-color: #262626;
}

@media screen and (max-width: 500px) {
  #TragedySolutionExt {
    padding: 50px 0px !important;
  }
}

@media screen and (max-width: 1366px) {
  #TragedySolutionExt .text-wrapper {
    padding: 0% 12%;
  }
}

@media screen and (max-width: 500px) {
  #TragedySolutionExt .text-wrapper {
    padding: 0% 5%;
  }
}

#TragedySolutionExt .text-wrapper .text {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #TragedySolutionExt .text-wrapper .text {
    width: 90% !important;
    padding: 25px 0px !important;
  }
}

#TragedySolutionExt .text-wrapper .text h1 {
  color: white;
}

@media screen and (max-width: 1366px) {
  #TragedySolutionExt .text-wrapper .text h1 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 500px) {
  #TragedySolutionExt .text-wrapper .text h1 {
    font-size: 2.5rem;
  }
}

#TragedySolutionExt .text-wrapper .text p {
  font-size: 1.15rem !important;
  width: unset;
  text-align: left;
  font-size: 20px;
  color: white;
}

@media screen and (max-width: 1199px) {
  #CTATextSec {
    height: auto !important;
  }
}

@media screen and (max-width: 600px) {
  #CTATextSec {
    height: auto !important;
  }
}

@media screen and (max-width: 1199px) {
  #CTATextSec .valign-wrapper {
    position: unset !important;
  }
}

#CTATextSec h2 {
  width: 700px !important;
  color: black !important;
  font-size: 18px !important;
  text-align: justify !important;
  font-weight: 400 !important;
  position: absolute !important;
  right: 15vw !important;
  background: rgba(255, 255, 255, 0.85) !important;
  padding: 50px !important;
  border-radius: 3px !important;
  top: 35px !important;
}

@media screen and (max-width: 1200px) {
  #CTATextSec h2 {
    width: 100% !important;
    right: unset !important;
    height: 100% !important;
    position: unset !important;
  }
}

@media screen and (max-width: 600px) {
  #CTATextSec h2 {
    margin-top: 0 !important;
    position: unset !important;
    padding: 50px 25px !important;
  }
}

#SignitureSection {
  height: auto !important;
  max-height: unset !important;
}

@media screen and (max-width: 800px) {
  #AboutRightDiv #AboutHorzDiv #AboutFrame {
    height: unset !important;
  }
}

@media screen and (max-width: 800px) {
  #AboutRightDiv #AboutHorzDiv #AboutFrame h2 {
    padding: 25px 0px !important;
  }
}

@media screen and (max-width: 1200px) {}

#FooterMediaDiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#FooterMediaDiv .linked-in svg {
  height: 35px;
  width: 27px;
  position: relative;
  top: 2px;
  right: -2px;
}

@media screen and (max-width: 590px) {
  #FooterMediaDiv .linked-in svg {
    height: 45px;
    width: 34px;
  }
}

@media screen and (max-width: 499px) {
  #FooterMediaDiv .linked-in svg {
    height: 34px;
    width: 28px;
    position: relative;
    top: 2px;
    right: -2px;
  }
}

@media screen and (max-width: 360px) {
  #FooterMediaDiv .linked-in svg {
    height: 20px;
    width: 27px;
    position: relative;
    top: 3px;
    right: -2px;
  }
}

@media screen and (max-width: 399px) {
  #FooterMediaDiv .linked-in svg {
    height: 22px;
    width: 27px;
    position: relative;
    top: 6px;
    right: -2px;
  }
}

@media screen and (max-width: 360px) {
  #FooterMediaDiv .linked-in svg {
    height: 22px;
    width: 27px;
    position: relative;
    top: 3px;
    right: -2px;
  }
}

.postid-12925 h1,
.postid-12925 h2,
.postid-12925 h3,
.postid-12925 h4,
.postid-12925 h5,
.postid-12925 p,
.postid-12925 a,
.postid-12925 li,
.postid-12925 ul,
.postid-12925 span,
.postid-12925 label {
  font-family: 'Montserrat', sans-serif;
}

.postid-12925 #PageMainDiv {
  background: linear-gradient(90deg, #110f0d 0%, #2a2521 69%);
}

.postid-12925 #PageMainDiv #BackgroundGradient {
  display: none;
}

.postid-12925 #PageMainDiv #TitleBreak {
  display: none;
}

.postid-12925 #PageMainDiv #Subtitle {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2.5px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media screen and (min-width: 1370px) {
  .postid-12925 #PageMainDiv #Subtitle {
    letter-spacing: 4.4px;
  }
}

.postid-12925 #PageMainDiv #InnerDiv #LeftSec img {
  height: 100%;
}

@media screen and (min-width: 1370px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec {
    width: 800px;
    right: -50px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec #Title {
    font-size: 63px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 0px;
    line-height: 73px;
    color: #ffffff;
  }
}

.postid-12925 #PageMainDiv #InnerDiv #RightSec #NumberText {
  font-size: 20px;
  font-weight: 600;
  color: #dddddd;
  margin-bottom: 40px;
}

@media screen and (min-width: 1380px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    left: 80px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    margin-bottom: 60px;
    width: 780px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-right: 48px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1100px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 13px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
  }
}

.postid-12925 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12925 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500 !important;
  }
}

.postid-12925 .gp-solutions-testimonial .st-container .st-quote {
  background: #d2b6a4;
  font-family: 'Alice', serif;
}

.postid-12925 .gp-solutions-testimonial .st-container .st-text {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.postid-12925 .gp-solutions-testimonial .st-container .st-author {
  text-align: center;
  font-size: 16px;
  line-height: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.postid-12925 .gp-solutions-testimonial .st-container .st-loc {
  text-align: center;
  color: #959595;
  font-size: 16px;
  line-height: 8px;
  font-weight: 300;
}

@media screen and (min-width: 1366px) {
  .postid-12925 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
    top: 122px;
    position: relative;
  }
}

.postid-12925 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12925 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12925 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MediaSec {
    height: 400px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MediaSec #MediaTitle {
    padding-top: 140px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 6.2px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MediaSec img {
    margin-bottom: 140px;
  }
}

.postid-12925 #MiniSubscibeSec h1 {
  color: #2a2521;
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MiniSubscibeSec h1 {
    margin-bottom: 50px;
    font-size: 55px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MiniSubscibeSec .seven-secrets-call-to-action {
    width: 570px;
  }
}

.postid-12925 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12925 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12925 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12925 #AboutSec {
    padding: 115px 0px;
  }
}

.postid-12925 #AboutSec h6 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 6.2px;
  font-weight: 600;
  color: #c4c4c4;
  margin-bottom: 30px;
}

.postid-12925 #AboutSec #AboutName {
  font-size: 55px;
  line-height: 73px;
  color: #2a2521;
  font-weight: 300;
  margin-bottom: 50px;
}

.postid-12925 #AboutSec #AboutSubText {
  margin-top: 0;
  font-size: 18px;
  line-height: 32px;
}

@media screen and (min-width: 1366px) {
  .postid-12925 #AboutSec #AboutSubText {
    width: 760px;
  }
}

.postid-12927 h1,
.postid-12927 h2,
.postid-12927 h3,
.postid-12927 h4,
.postid-12927 h5,
.postid-12927 p,
.postid-12927 a,
.postid-12927 li,
.postid-12927 ul,
.postid-12927 span,
.postid-12927 label {
  font-family: 'Montserrat', sans-serif;
}

.postid-12927 #PageMainDiv {
  background: linear-gradient(90deg, #110f0d 0%, #2a2521 69%);
}

.postid-12927 #PageMainDiv #BackgroundGradient {
  display: none;
}

.postid-12927 #PageMainDiv #TitleBreak {
  display: none;
}

.postid-12927 #PageMainDiv #Subtitle {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media screen and (min-width: 1370px) {
  .postid-12927 #PageMainDiv #Subtitle {
    letter-spacing: 4.4px;
  }
}

.postid-12927 #PageMainDiv #InnerDiv #LeftSec img {
  height: 100%;
}

@media screen and (min-width: 1370px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec {
    width: 800px;
    right: -50px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec #Title {
    font-size: 63px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 0px;
    line-height: 73px;
    color: #ffffff;
  }
}

.postid-12927 #PageMainDiv #InnerDiv #RightSec #NumberText {
  font-size: 20px;
  font-weight: 600;
  color: #dddddd;
  margin-bottom: 40px;
}

@media screen and (min-width: 1380px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    left: 80px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    margin-bottom: 60px;
    width: 780px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-right: 48px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1100px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 13px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
  }
}

.postid-12927 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12927 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

.postid-12927 .gp-solutions-testimonial .st-container .st-quote {
  background: #d2b6a4;
  font-family: 'Alice', serif;
}

.postid-12927 .gp-solutions-testimonial .st-container .st-text {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.postid-12927 .gp-solutions-testimonial .st-container .st-author {
  text-align: center;
  font-size: 16px;
  line-height: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.postid-12927 .gp-solutions-testimonial .st-container .st-loc {
  text-align: center;
  color: #959595;
  font-size: 16px;
  line-height: 8px;
  font-weight: 300;
}

@media screen and (min-width: 1366px) {
  .postid-12927 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
    top: 122px;
    position: relative;
  }
}

.postid-12927 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12927 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12927 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MediaSec {
    height: 400px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MediaSec #MediaTitle {
    padding-top: 140px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 6.2px;
  }
}

.postid-12927 #MediaSec img {
  filter: grayscale(100%);
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MediaSec img {
    margin-bottom: 140px;
  }
}

.postid-12927 #MiniSubscibeSec h1 {
  color: #2a2521;
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MiniSubscibeSec h1 {
    margin-bottom: 50px;
    font-size: 55px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MiniSubscibeSec .seven-secrets-call-to-action {
    width: 570px;
  }
}

.postid-12927 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12927 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12927 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12927 #AboutSec {
    padding: 115px 0px;
  }
}

.postid-12927 #AboutSec h6 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 6.2px;
  font-weight: 600;
  color: #c4c4c4;
  margin-bottom: 30px;
}

.postid-12927 #AboutSec #AboutName {
  font-size: 55px;
  line-height: 73px;
  color: #2a2521;
  font-weight: 300;
  margin-bottom: 50px;
}

.postid-12927 #AboutSec #AboutSubText {
  margin-top: 0;
  font-size: 18px;
  line-height: 32px;
}

@media screen and (min-width: 1366px) {
  .postid-12927 #AboutSec #AboutSubText {
    width: 760px;
  }
}

.postid-12928 h1,
.postid-12928 h2,
.postid-12928 h3,
.postid-12928 h4,
.postid-12928 h5,
.postid-12928 p,
.postid-12928 a,
.postid-12928 li,
.postid-12928 ul,
.postid-12928 span,
.postid-12928 label {
  font-family: 'Montserrat', sans-serif;
}

.postid-12928 #PageMainDiv {
  background: linear-gradient(90deg, #110f0d 0%, #2a2521 69%);
}

.postid-12928 #PageMainDiv #BackgroundGradient {
  display: none;
}

.postid-12928 #PageMainDiv #TitleBreak {
  display: none;
}

.postid-12928 #PageMainDiv #Subtitle {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media screen and (min-width: 1370px) {
  .postid-12928 #PageMainDiv #Subtitle {
    letter-spacing: 4.4px;
  }
}

.postid-12928 #PageMainDiv #InnerDiv #LeftSec img {
  height: 100%;
}

@media screen and (min-width: 1370px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec {
    width: 800px;
    right: -50px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec #Title {
    font-size: 63px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 0px;
    line-height: 73px;
  }
}

.postid-12928 #PageMainDiv #InnerDiv #RightSec #NumberText {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
}

@media screen and (min-width: 1380px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    left: 80px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    margin-bottom: 60px;
    width: 780px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-right: 48px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1100px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 13px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
  }
}

.postid-12928 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
  background: #b50000;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12928 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

.postid-12928 .gp-solutions-testimonial .st-container .st-quote {
  background: #b50000;
  font-family: 'Alice', serif;
}

.postid-12928 .gp-solutions-testimonial .st-container .st-text {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.postid-12928 .gp-solutions-testimonial .st-container .st-author {
  text-align: center;
  font-size: 16px;
  line-height: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.postid-12928 .gp-solutions-testimonial .st-container .st-loc {
  text-align: center;
  color: #959595;
  font-size: 16px;
  line-height: 8px;
  font-weight: 300;
}

@media screen and (min-width: 1366px) {
  .postid-12928 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
    top: 122px;
    position: relative;
  }
}

.postid-12928 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
  background: #b50000;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12928 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12928 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MediaSec {
    height: 400px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MediaSec #MediaTitle {
    padding-top: 140px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 6.2px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MediaSec img {
    margin-bottom: 140px;
  }
}

.postid-12928 #MiniSubscibeSec h1 {
  color: #2a2521;
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MiniSubscibeSec h1 {
    margin-bottom: 50px;
    font-size: 55px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MiniSubscibeSec .seven-secrets-call-to-action {
    width: 570px;
  }
}

.postid-12928 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
  background: #b50000;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12928 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12928 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12928 #AboutSec {
    padding: 115px 0px;
  }
}

.postid-12928 #AboutSec h6 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 6.2px;
  font-weight: 600;
  color: #c4c4c4;
  margin-bottom: 30px;
}

.postid-12928 #AboutSec #AboutName {
  font-size: 55px;
  line-height: 73px;
  color: #2a2521;
  font-weight: 300;
  margin-bottom: 50px;
}

.postid-12928 #AboutSec #AboutSubText {
  margin-top: 0;
  font-size: 18px;
  line-height: 32px;
}

@media screen and (min-width: 1366px) {
  .postid-12928 #AboutSec #AboutSubText {
    width: 760px;
  }
}

.postid-12929 h1,
.postid-12929 h2,
.postid-12929 h3,
.postid-12929 h4,
.postid-12929 h5,
.postid-12929 p,
.postid-12929 a,
.postid-12929 li,
.postid-12929 ul,
.postid-12929 span,
.postid-12929 label {
  font-family: 'Montserrat', sans-serif;
}

.postid-12929 #PageMainDiv {
  background: linear-gradient(90deg, #110f0d 0%, #2a2521 69%);
}

.postid-12929 #PageMainDiv #BackgroundGradient {
  display: none;
}

.postid-12929 #PageMainDiv #TitleBreak {
  display: none;
}

.postid-12929 #PageMainDiv #Subtitle {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media screen and (min-width: 1370px) {
  .postid-12929 #PageMainDiv #Subtitle {
    letter-spacing: 4.4px;
  }
}

.postid-12929 #PageMainDiv #InnerDiv #LeftSec img {
  height: 100%;
}

@media screen and (min-width: 1370px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec {
    width: 800px;
    right: -50px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec #Title {
    font-size: 63px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 0px;
    line-height: 73px;
    color: #ffffff;
  }
}

.postid-12929 #PageMainDiv #InnerDiv #RightSec #NumberText {
  font-size: 20px;
  font-weight: 600;
  color: #dddddd;
  margin-bottom: 40px;
}

@media screen and (min-width: 1380px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    left: 80px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec #ListsDiv {
    margin-bottom: 60px;
    width: 780px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-right: 48px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1100px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec #ListsDiv label {
    font-size: 13px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
  }
}

.postid-12929 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12929 #PageMainDiv #InnerDiv #RightSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

.postid-12929 .gp-solutions-testimonial .st-container .st-quote {
  background: #d2b6a4;
  font-family: 'Alice', serif;
}

.postid-12929 .gp-solutions-testimonial .st-container .st-text {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.postid-12929 .gp-solutions-testimonial .st-container .st-author {
  text-align: center;
  font-size: 16px;
  line-height: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.postid-12929 .gp-solutions-testimonial .st-container .st-loc {
  text-align: center;
  color: #959595;
  font-size: 16px;
  line-height: 8px;
  font-weight: 300;
}

@media screen and (min-width: 1366px) {
  .postid-12929 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action {
    width: unset;
    max-width: 80%;
    top: 122px;
    position: relative;
  }
}

.postid-12929 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12929 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12929 .gp-solutions-testimonial .st-container .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MediaSec {
    height: 400px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MediaSec #MediaTitle {
    padding-top: 140px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 6.2px;
  }
}

.postid-12929 #MediaSec img {
  filter: grayscale(100%);
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MediaSec img {
    margin-bottom: 140px;
  }
}

.postid-12929 #MiniSubscibeSec h1 {
  color: #2a2521;
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MiniSubscibeSec h1 {
    margin-bottom: 50px;
    font-size: 55px;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MiniSubscibeSec .seven-secrets-call-to-action {
    width: 570px;
  }
}

.postid-12929 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
  background: #d2b6a4;
  color: #2a2521;
  border-radius: 0;
  font-weight: 600;
}

@media screen and (min-width: 1366px) {
  .postid-12929 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
    border-radius: 0;
    letter-spacing: 4.4px;
  }
}

@media screen and (max-width: 1200px) {
  .postid-12929 #MiniSubscibeSec .seven-secrets-call-to-action .cta-inner a {
    font-weight: 500;
  }
}

@media screen and (min-width: 1366px) {
  .postid-12929 #AboutSec {
    padding: 115px 0px;
  }
}

.postid-12929 #AboutSec h6 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 6.2px;
  font-weight: 600;
  color: #c4c4c4;
  margin-bottom: 30px;
}

.postid-12929 #AboutSec #AboutName {
  font-size: 55px;
  line-height: 73px;
  color: #2a2521;
  font-weight: 300;
  margin-bottom: 50px;
}

.postid-12929 #AboutSec #AboutSubText {
  margin-top: 0;
  font-size: 18px;
  line-height: 32px;
}

@media screen and (min-width: 1366px) {
  .postid-12929 #AboutSec #AboutSubText {
    width: 760px;
  }
}

.postid-13112 #PageMainDiv {
  height: 723px;
}

.postid-13112 #LeftSec img {
  height: 120%;
  margin-left: -383px;
  padding-top: 49px;
  display: inline-block;
  top: -120px;
  position: relative;
}

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1200px) {
  .postid-13112 #LeftSec img {
    padding-top: 12px;
  }
}

@media screen and (max-width: 1450px) {
  .postid-13112 #RightSec {
    right: -50px;
  }
}

@media screen and (max-width: 600px) {
  .postid-13112 #RightSec {
    right: 0px;
  }
}

.postid-13113 #PageMainDiv {
  height: 723px;
}

.postid-13113 #LeftSec img {
  height: 120%;
  margin-left: -383px;
  padding-top: 49px;
  display: inline-block;
  top: -120px;
  position: relative;
}

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1200px) {
  .postid-13113 #LeftSec img {
    padding-top: 12px;
  }
}

@media screen and (max-width: 1450px) {
  .postid-13113 #RightSec {
    right: -50px;
  }
}

@media screen and (max-width: 600px) {
  .postid-13113 #RightSec {
    right: 0px;
  }
}

.postid-13114 #PageMainDiv {
  height: 723px;
}

.postid-13114 #LeftSec img {
  height: 102%;
  margin-left: -300px;
  padding-top: 49px;
  display: inline-block;
  top: -14px;
  position: relative;
}

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1200px) {
  .postid-13114 #LeftSec img {
    padding-top: 12px;
  }
}

@media screen and (max-width: 1450px) {
  .postid-13114 #RightSec {
    right: -50px;
  }
}

@media screen and (max-width: 1000px) {
  .postid-13114 #RightSec {
    right: 0px;
  }
}

@media screen and (min-width: 601px) and (max-width: 1025px) {
  .postid-13119 #ListsDiv label {
    height: 30px;
    line-height: 13px;
  }
}

@media screen and (max-width: 1000px) {
  .postid-13119 #PageMainDiv {
    height: 1015px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13119 #PageMainDiv {
    height: 975px;
  }
}

@media screen and (max-width: 1000px) {
  .postid-13119 #PageMainDiv #BackgroundGradient {
    height: 1015px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13119 #PageMainDiv #BackgroundGradient {
    height: 918px;
  }
}

@media screen and (max-width: 400px) {
  .postid-13119 #PageMainDiv #BackgroundGradient {
    height: 883px;
  }
}

@media screen and (max-width: 340px) {
  .postid-13119 #PageMainDiv #BackgroundGradient {
    height: 848px;
  }
}

.postid-13119 #RightSec .mobile-headshot {
  margin-top: 20px;
}

@media screen and (min-width: 1001px) {
  .postid-13119 #RightSec .mobile-headshot {
    display: none;
  }
}

.postid-13119 #RightSec .mobile-headshot img {
  width: 450px;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .postid-13119 #RightSec .mobile-headshot img {
    width: 540px;
  }
}

@media screen and (max-width: 640px) {
  .postid-13119 #RightSec .mobile-headshot img {
    width: 475px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13119 #RightSec .mobile-headshot img {
    width: 380px;
  }
}

@media screen and (max-width: 340px) {
  .postid-13119 #RightSec .mobile-headshot img {
    width: 300px;
  }
}

@media screen and (min-width: 601px) and (max-width: 1025px) {
  .postid-13143 #ListsDiv label {
    height: 30px;
    line-height: 13px;
  }
}

@media screen and (max-width: 1000px) {
  .postid-13143 #PageMainDiv {
    height: 920px;
  }
}

@media screen and (max-width: 600px) {
  .postid-13143 #PageMainDiv {
    height: 940px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13143 #PageMainDiv {
    height: 918px;
  }
}

@media screen and (max-width: 400px) {
  .postid-13143 #PageMainDiv {
    height: 883px;
  }
}

@media screen and (max-width: 340px) {
  .postid-13143 #PageMainDiv {
    height: 848px;
  }
}

@media screen and (max-width: 1000px) {
  .postid-13143 #PageMainDiv #BackgroundGradient {
    height: 920px;
  }
}

@media screen and (max-width: 600px) {
  .postid-13143 #PageMainDiv #BackgroundGradient {
    height: 940px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13143 #PageMainDiv #BackgroundGradient {
    height: 918px;
  }
}

@media screen and (max-width: 400px) {
  .postid-13143 #PageMainDiv #BackgroundGradient {
    height: 883px;
  }
}

@media screen and (max-width: 340px) {
  .postid-13143 #PageMainDiv #BackgroundGradient {
    height: 848px;
  }
}

.postid-13143 #RightSec .mobile-headshot {
  margin-top: 20px;
}

@media screen and (min-width: 1001px) {
  .postid-13143 #RightSec .mobile-headshot {
    display: none;
  }
}

.postid-13143 #RightSec .mobile-headshot img {
  width: 450px;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .postid-13143 #RightSec .mobile-headshot img {
    width: 535px;
  }
}

@media screen and (max-width: 460px) {
  .postid-13143 #RightSec .mobile-headshot img {
    width: 380px;
  }
}

@media screen and (max-width: 340px) {
  .postid-13143 #RightSec .mobile-headshot img {
    width: 300px;
  }
}

.page-id-82 #AudioSec,
.page-id-15 #AudioSec,
.page-id-4380 #AudioSec,
.page-id-5481 #AudioSec,
.postid-4843 #AudioSec {
  display: none;
}

.page-id-82 #ProductInnerDiv #Title,
.page-id-15 #ProductInnerDiv #Title,
.page-id-4380 #ProductInnerDiv #Title,
.page-id-5481 #ProductInnerDiv #Title,
.postid-4843 #ProductInnerDiv #Title,
.page-id-9021 #ProductInnerDiv #Title {
  margin-bottom: 40px;
}

.page-id-82 #ProductInnerDiv #ProductDivCenter,
.page-id-15 #ProductInnerDiv #ProductDivCenter,
.page-id-4380 #ProductInnerDiv #ProductDivCenter,
.page-id-5481 #ProductInnerDiv #ProductDivCenter,
.postid-4843 #ProductInnerDiv #ProductDivCenter,
.page-id-9021 #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
}

@media screen and (max-width: 950px) {

  .page-id-82 #ProductInnerDiv #ProductDivCenter,
  .page-id-15 #ProductInnerDiv #ProductDivCenter,
  .page-id-4380 #ProductInnerDiv #ProductDivCenter,
  .page-id-5481 #ProductInnerDiv #ProductDivCenter,
  .postid-4843 #ProductInnerDiv #ProductDivCenter,
  .page-id-9021 #ProductInnerDiv #ProductDivCenter {
    margin: 40px auto;
  }
}

.page-id-82 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter,
.page-id-15 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter,
.page-id-4380 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter,
.page-id-5481 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter,
.postid-4843 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter {
  background: #881124;
}

.page-id-82 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover,
.page-id-15 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover,
.page-id-4380 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover,
.page-id-5481 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover,
.postid-4843 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover,
.page-id-9021 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover {
  background-color: #ce1a37;
}

.page-id-82 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter,
.page-id-15 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter,
.page-id-4380 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter,
.page-id-5481 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter,
.postid-4843 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter,
.page-id-9021 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.page-id-82 #ProductInnerDiv #ProductDiv,
.page-id-15 #ProductInnerDiv #ProductDiv,
.page-id-4380 #ProductInnerDiv #ProductDiv,
.page-id-5481 #ProductInnerDiv #ProductDiv,
.postid-4843 #ProductInnerDiv #ProductDiv,
.page-id-9021 #ProductInnerDiv #ProductDiv {
  height: 720px;
}

.page-id-82 #ProductInnerDiv #ProductDiv:hover,
.page-id-15 #ProductInnerDiv #ProductDiv:hover,
.page-id-4380 #ProductInnerDiv #ProductDiv:hover,
.page-id-5481 #ProductInnerDiv #ProductDiv:hover,
.postid-4843 #ProductInnerDiv #ProductDiv:hover,
.page-id-9021 #ProductInnerDiv #ProductDiv:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 951px) {

  .page-id-82 #ProductInnerDiv #ProductDiv,
  .page-id-15 #ProductInnerDiv #ProductDiv,
  .page-id-4380 #ProductInnerDiv #ProductDiv,
  .page-id-5481 #ProductInnerDiv #ProductDiv,
  .postid-4843 #ProductInnerDiv #ProductDiv,
  .page-id-9021 #ProductInnerDiv #ProductDiv {
    margin-right: -50px;
  }
}

@media screen and (min-width: 600px) {

  .page-id-82 #ProductInnerDiv #ProductDiv,
  .page-id-15 #ProductInnerDiv #ProductDiv,
  .page-id-4380 #ProductInnerDiv #ProductDiv,
  .page-id-5481 #ProductInnerDiv #ProductDiv,
  .postid-4843 #ProductInnerDiv #ProductDiv,
  .page-id-9021 #ProductInnerDiv #ProductDiv {
    width: 360px;
  }
}

.page-id-82 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
.page-id-15 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
.page-id-4380 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
.page-id-5481 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
.postid-4843 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
.page-id-9021 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
  height: 224px;
}

@media screen and (max-width: 1100px) {

  .page-id-82 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-15 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-4380 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-5481 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .postid-4843 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-9021 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
}

@media screen and (max-width: 1024px) {

  .page-id-82 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-15 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-4380 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-5481 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .postid-4843 #ProductInnerDiv #ProductDiv #ProductCheckDiv,
  .page-id-9021 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 256px;
  }
}

.page-id-82 #ProductInnerDiv #ProductDiv.ProductDiv1,
.page-id-15 #ProductInnerDiv #ProductDiv.ProductDiv1,
.page-id-4380 #ProductInnerDiv #ProductDiv.ProductDiv1,
.page-id-5481 #ProductInnerDiv #ProductDiv.ProductDiv1,
.postid-4843 #ProductInnerDiv #ProductDiv.ProductDiv1,
.page-id-9021 #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}

.page-id-84 #AudioSec {
  display: none;
}

.page-id-84 #ProductInnerDiv #Title {
  margin-bottom: 40px;
}

.page-id-84 #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
}

@media screen and (max-width: 950px) {
  .page-id-84 #ProductInnerDiv #ProductDivCenter {
    margin: 40px auto;
  }
}

.page-id-84 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter {
  background: #881124;
}

.page-id-84 #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover {
  background-color: #ce1a37;
}

.page-id-84 #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.page-id-84 #ProductInnerDiv #ProductDiv {
  height: 720px;
}

.page-id-84 #ProductInnerDiv #ProductDiv:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 951px) {
  .page-id-84 #ProductInnerDiv #ProductDiv {
    margin-right: -50px;
  }
}

@media screen and (min-width: 600px) {
  .page-id-84 #ProductInnerDiv #ProductDiv {
    width: 360px;
  }
}

.page-id-84 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
  height: 224px;
}

@media screen and (max-width: 1100px) {
  .page-id-84 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .page-id-84 #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 256px;
  }
}

.page-id-84 #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}

.single-post #ProductInnerDiv #Title {
  margin-bottom: 40px;
}

.single-post #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
}

@media screen and (max-width: 950px) {
  .single-post #ProductInnerDiv #ProductDivCenter {
    margin: 40px auto;
  }
}

.single-post #ProductInnerDiv #ProductDivCenter #ProductButtonCenter {
  background: #881124;
}

.single-post #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover {
  background-color: #ce1a37;
}

.single-post #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.single-post #ProductInnerDiv #ProductDiv {
  height: 720px;
}

.single-post #ProductInnerDiv #ProductDiv:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 951px) {
  .single-post #ProductInnerDiv #ProductDiv {
    margin-right: -50px;
  }
}

@media screen and (min-width: 600px) {
  .single-post #ProductInnerDiv #ProductDiv {
    width: 360px;
  }
}

.single-post #ProductInnerDiv #ProductDiv #ProductCheckDiv {
  height: 224px;
}

@media screen and (max-width: 1100px) {
  .single-post #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .single-post #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 256px;
  }
}

.single-post #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}

.page-template-videoGalleryPage #ProductInnerDiv #Title,  .page-template-recomended-readings-prospects-php #ProductInnerDiv #Title{
  margin-bottom: 40px;
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
}

.page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
}

@media screen and (max-width: 950px) {
  .page-template-videoGalleryPage #ProductInnerDiv #ProductDivCenter,  .page-template-recomended-readings-prospects-php #ProductDivCenter{
    margin: 40px auto!important;
  }
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDivCenter #ProductButtonCenter {
  background: #881124;
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover {
  background-color: #ce1a37;
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv {
  height: 720px;
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDiv:hover, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 951px) {
  .page-template-videoGalleryPage #ProductInnerDiv #ProductDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv {
    margin-right: -50px;
  }
}

@media screen and (min-width: 600px) {
  .page-template-videoGalleryPage #ProductInnerDiv #ProductDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv {
    width: 360px;
  }
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDiv #ProductCheckDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv  {
  height: 224px;
}

.page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv  {
  height: 224px;
}


@media screen and (max-width: 1100px) {
  .page-template-videoGalleryPage #ProductInnerDiv #ProductDiv #ProductCheckDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
  .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .page-template-videoGalleryPage #ProductInnerDiv #ProductDiv #ProductCheckDiv, .page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 256px;
  }
}

.page-template-videoGalleryPage #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}



.page-template-recomended-readings-prospects-php #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}

.page-id-13452 #GuaranteeSec {
  background: #b41932;
  width: 800px;
  height: 170px;
}

@media screen and (max-width: 600px) {
  .page-id-13452 #GuaranteeSec {
    height: 130px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13452 #GuaranteeSec {
    height: 123px;
  }
}

.page-id-13452 #GuaranteeSec.guaranteeOpen {
  background: white;
  color: black;
}

.page-id-13452 #GuaranteeSec.guaranteeOpen #GuaranteeImg {
  border-color: white !important;
  color: #b41932;
}

.page-id-13452 #GuaranteeSec.guaranteeOpen #GuaranteeSubtitle {
  color: #b41932;
}

.page-id-13452 #GuaranteeSec.guaranteeOpen p {
  color: black;
}

.page-id-13452 #GuaranteeSec #GuaranteeImg {
  color: white;
  border-color: white;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .page-id-13452 #GuaranteeSec #GuaranteeImg {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13452 #GuaranteeSec #GuaranteeImg {
    font-size: 16px;
  }
}

.page-id-13452 #GuaranteeSec #GuaranteeSubtitle {
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  text-align: center;
  margin-right: 0;
}

@media screen and (max-width: 600px) {
  .page-id-13452 #GuaranteeSec #GuaranteeSubtitle {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13452 #GuaranteeSec #GuaranteeSubtitle {
    font-size: 12px;
  }
}

.page-id-13452 #GuaranteeSec #GuaranteeDeatails {
  color: white !important;
}

@media screen and (max-width: 600px) {
  .page-id-13452 #GuaranteeSec #GuaranteeDeatails {
    display: block;
    margin-right: 0;
  }
}

.page-id-13452 #GuaranteeSec p {
  color: white;
  margin-top: 50px;
}

.page-id-13465 #GuaranteeSec {
  background: #b41932;
  width: 800px;
  height: 170px;
}

@media screen and (max-width: 600px) {
  .page-id-13465 #GuaranteeSec {
    height: 130px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13465 #GuaranteeSec {
    height: 123px;
  }
}

.page-id-13465 #GuaranteeSec.guaranteeOpen {
  background: white;
  color: black;
}

.page-id-13465 #GuaranteeSec.guaranteeOpen #GuaranteeImg {
  border-color: white !important;
  color: #b41932;
}

.page-id-13465 #GuaranteeSec.guaranteeOpen #GuaranteeSubtitle {
  color: #b41932;
}

.page-id-13465 #GuaranteeSec.guaranteeOpen p {
  color: black;
}

.page-id-13465 #GuaranteeSec #GuaranteeImg {
  color: white;
  border-color: white;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .page-id-13465 #GuaranteeSec #GuaranteeImg {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13465 #GuaranteeSec #GuaranteeImg {
    font-size: 16px;
  }
}

.page-id-13465 #GuaranteeSec #GuaranteeSubtitle {
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  text-align: center;
  margin-right: 0;
}

@media screen and (max-width: 600px) {
  .page-id-13465 #GuaranteeSec #GuaranteeSubtitle {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .page-id-13465 #GuaranteeSec #GuaranteeSubtitle {
    font-size: 12px;
  }
}

.page-id-13465 #GuaranteeSec #GuaranteeDeatails {
  color: white !important;
}

@media screen and (max-width: 600px) {
  .page-id-13465 #GuaranteeSec #GuaranteeDeatails {
    display: block;
    margin-right: 0;
  }
}

.page-id-13465 #GuaranteeSec p {
  color: white;
  margin-top: 50px;
}

.home #ProductInnerDiv #Title {
  margin-bottom: 40px;
}

.home #ProductInnerDiv #ProductDivCenter {
  bottom: 0px;
  margin-right: 50px;
  border-color: #881124;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

@media screen and (max-width: 950px) {
  .home #ProductInnerDiv #ProductDivCenter {
    margin: 40px auto;
  }
}

.home #ProductInnerDiv #ProductDivCenter:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important;
}

.home #ProductInnerDiv #ProductDivCenter #ProductButtonCenter {
  background: #881124;
}

.home #ProductInnerDiv #ProductDivCenter #ProductButtonCenter:hover {
  background-color: #ce1a37;
}

.home #ProductInnerDiv #ProductDivCenter #ProductTitleCenter {
  color: #881124;
  font-size: 24px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.home #ProductInnerDiv #ProductDiv {
  height: 720px;
}

.home #ProductInnerDiv #ProductDiv:hover {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 951px) {
  .home #ProductInnerDiv #ProductDiv {
    margin-right: -50px;
  }
}

@media screen and (min-width: 600px) {
  .home #ProductInnerDiv #ProductDiv {
    width: 360px;
  }
}

.home #ProductInnerDiv #ProductDiv #ProductCheckDiv {
  height: 224px;
}

@media screen and (max-width: 1100px) {
  .home #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .home #ProductInnerDiv #ProductDiv #ProductCheckDiv {
    height: 256px;
  }
}

.home #ProductInnerDiv #ProductDiv.ProductDiv1 {
  display: none;
}

.tbc-new .animate-children>* {
  position: relative;
  top: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.tbc-new .animate-children>*:nth-child(2) {
  -webkit-transition: all 0.7s ease 0.3s;
  -moz-transition: all 0.7s ease 0.3s;
  -ms-transition: all 0.7s ease 0.3s;
  -o-transition: all 0.7s ease 0.3s;
  transition: all 0.7s ease 0.3s;
}

.tbc-new .animate-children>*:nth-child(3) {
  -webkit-transition: all 0.7s ease 0.6s;
  -moz-transition: all 0.7s ease 0.6s;
  -ms-transition: all 0.7s ease 0.6s;
  -o-transition: all 0.7s ease 0.6s;
  transition: all 0.7s ease 0.6s;
}

.tbc-new .animate-children>*:nth-child(4) {
  -webkit-transition: all 0.7s ease 0.9s;
  -moz-transition: all 0.7s ease 0.9s;
  -ms-transition: all 0.7s ease 0.9s;
  -o-transition: all 0.7s ease 0.9s;
  transition: all 0.7s ease 0.9s;
}

.tbc-new .animate-children>*:nth-child(6) {
  -webkit-transition: all 0.7s ease 1.2s;
  -moz-transition: all 0.7s ease 1.2s;
  -ms-transition: all 0.7s ease 1.2s;
  -o-transition: all 0.7s ease 1.2s;
  transition: all 0.7s ease 1.2s;
}

.tbc-new .animate-children>*:nth-child(6) {
  -webkit-transition: all 0.7s ease 1.5s;
  -moz-transition: all 0.7s ease 1.5s;
  -ms-transition: all 0.7s ease 1.5s;
  -o-transition: all 0.7s ease 1.5s;
  transition: all 0.7s ease 1.5s;
}

.tbc-new .animate-children>*:nth-child(7) {
  -webkit-transition: all 0.7s ease 1.8s;
  -moz-transition: all 0.7s ease 1.8s;
  -ms-transition: all 0.7s ease 1.8s;
  -o-transition: all 0.7s ease 1.8s;
  transition: all 0.7s ease 1.8s;
}

.tbc-new .animate-children>*:nth-child(8) {
  -webkit-transition: all 0.7s ease 2.1s;
  -moz-transition: all 0.7s ease 2.1s;
  -ms-transition: all 0.7s ease 2.1s;
  -o-transition: all 0.7s ease 2.1s;
  transition: all 0.7s ease 2.1s;
}

.tbc-new .animate-children.animated>* {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.tbc-new .animate-left {
  position: relative;
  left: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.tbc-new .animate-left.animated {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.tbc-new .animate-right {
  position: relative;
  left: -30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.tbc-new .animate-right.animated {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.tbc-new .animate-up {
  position: relative;
  top: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.tbc-new .animate-up.animated {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.tbc-new .animate-down {
  position: relative;
  top: -30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.tbc-new .animate-down.animated {
  opacity: 1;
  visibility: visible;
  top: 0;
}

body.footer-white.tbc-new-red #FooterMediaDiv a {
  border-color: #999999;
}

body.footer-white.tbc-new-red #FooterMediaDiv a svg {
  fill: #999999;
}

body.footer-white.tbc-new-red #FooterMediaDiv a:hover {
  background: #a70e27;
  border-color: #a70e27;
}

body.footer-white.tbc-new-red #FooterMediaDiv a:hover svg {
  fill: white;
}

body.footer-white footer {
  background: white;
}

body.footer-white #FooterMediaDiv {
  padding-top: 20px;
}

body.footer-white #FooterMediaDiv a {
  border-color: #ddc4b2;
  box-shadow: none;
}

body.footer-white #FooterMediaDiv a svg {
  fill: #ddc4b2;
}

body.footer-white #FooterMediaDiv a:hover {
  background: #ddc4b2;
}

body.footer-white #FooterMediaDiv a:hover svg {
  fill: white;
}

body.footer-white #FooterLinkDiv {
  margin-top: 30px;
}

body.footer-white #FooterLinkDiv a {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #737373;
}

body.footer-white #FooterLinkDiv a:hover {
  color: #000000;
}

body.footer-white #FooterSmallLinkDiv {
  margin-top: -8px;
}

body.footer-white #FooterSmallLinkDiv a {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #9b9b9b;
  opacity: 1;
}

body.footer-white #FooterSmallLinkDiv a:hover {
  color: #4e4e4e;
}

body.footer-white #CopyrightText {
  font-family: 'Montserrat', sans-serif;
  color: #8f8f8f;
  opacity: 1;
  padding: 25px 16px 50px 16px;
}

body.footer-white #CopyrightText:hover {
  color: #213f48;
}

body.tbc-new.tbc-new-beige #MenuDiv {
  background: #ac866b;
}

body.tbc-new.tbc-new-beige #MenuOrderButton {
  color: #bea18c;
}

body.tbc-new #HEADER {
  z-index: 500;
}

body.tbc-new #EntireBody {
  z-index: 50;
  box-shadow: none;
}

body.tbc-new #MenuIcon {
  color: #213f48;
}

body.tbc-new #MenuButton {
  font-family: 'Montserrat', sans-serif;
}

body.tbc-new #MenuOrderButton {
  padding-top: 12px;
}

.tbc-new div {
  font-family: 'Montserrat', sans-serif;
  color: #213f48;
  font-weight: 400;
}

.tbc-new strong {
  font-weight: 600;
}

.tbc-new .text-white h1,
.tbc-new .text-white h2,
.tbc-new .text-white h3,
.tbc-new .text-white h4,
.tbc-new .text-white h5,
.tbc-new .text-white h6,
.tbc-new .text-white p {
  color: white;
}

.tbc-new .text-white .text-btn a,
.tbc-new .text-white .text-btn span {
  color: white;
}

.tbc-new h1,
.tbc-new h2,
.tbc-new h3,
.tbc-new h4,
.tbc-new h5,
.tbc-new h6,
.tbc-new p,
.tbc-new div {
  font-family: 'Montserrat', sans-serif;
}

.tbc-new h1 span,
.tbc-new h2 span,
.tbc-new h3 span,
.tbc-new h4 span,
.tbc-new h5 span,
.tbc-new h6 span,
.tbc-new p span,
.tbc-new div span,
.tbc-new h1 strong,
.tbc-new h2 strong,
.tbc-new h3 strong,
.tbc-new h4 strong,
.tbc-new h5 strong,
.tbc-new h6 strong,
.tbc-new p strong,
.tbc-new div strong,
.tbc-new h1 a,
.tbc-new h2 a,
.tbc-new h3 a,
.tbc-new h4 a,
.tbc-new h5 a,
.tbc-new h6 a,
.tbc-new p a,
.tbc-new div a {
  font-family: 'Montserrat', sans-serif;
}

.tbc-new .p-lg p {
  font-size: 24px;
  line-height: 38px;
}

@media screen and (max-width: 1500px) {
  .tbc-new .p-lg p {
    font-size: 22px;
    line-height: 36px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new .p-lg p {
    font-size: 20px;
    line-height: 34px;
  }
}

.tbc-new p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
  color: #213f48;
  letter-spacing: 0;
}

@media screen and (max-width: 1500px) {
  .tbc-new p {
    font-size: 16px;
    line-height: 30px;
  }
}

.tbc-new .content ul,
.tbc-new .content li {
  font-size: 18px;
  line-height: 28px;
  list-style: initial;
  font-weight: 400;
  color: #213f48;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width: 1500px) {

  .tbc-new .content ul,
  .tbc-new .content li {
    font-size: 16px;
    line-height: 26px;
  }
}

.tbc-new .content li {
  margin-bottom: 8px;
}

.tbc-new .content li:last-child {
  margin-bottom: 0;
}

.tbc-new .content>* {
  margin-bottom: 20px;
}

.tbc-new .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new h1,
.tbc-new h2,
.tbc-new h3,
.tbc-new h4,
.tbc-new h5,
.tbc-new h6 {
  margin: 0;
  font-weight: 300;
  line-height: 1.25em;
  color: #213f48;
}

.tbc-new h1 strong,
.tbc-new h2 strong,
.tbc-new h3 strong,
.tbc-new h4 strong,
.tbc-new h5 strong,
.tbc-new h6 strong {
  font-weight: 600;
}

.tbc-new h1 {
  font-size: 60px;
  line-height: 74px;
}

@media screen and (max-width: 1500px) {
  .tbc-new h1 {
    font-size: 50px;
    line-height: 62px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

.tbc-new h2 {
  font-size: 50px;
  line-height: 62px;
}

@media screen and (max-width: 1500px) {
  .tbc-new h2 {
    font-size: 42px;
    line-height: 52px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new h2 {
    font-size: 34px;
    line-height: 42px;
  }
}

.tbc-new h3 {
  font-size: 36px;
  line-height: 44px;
}

@media screen and (max-width: 1500px) {
  .tbc-new h3 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

.tbc-new h4,
.tbc-new h5,
.tbc-new h6 {
  font-size: 28px;
  line-height: 36px;
}

@media screen and (max-width: 600px) {

  .tbc-new h4,
  .tbc-new h5,
  .tbc-new h6 {
    font-size: 22px;
    line-height: 30px;
  }
}

.tbc-new .h-pad {
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 700px) {
  .tbc-new .h-pad {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new .container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.tbc-new .v-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new .text-btn {
  color: #213f48;
}

.tbc-new .text-btn a,
.tbc-new .text-btn span {
  font-size: 18px;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #213f48;
}

@media screen and (max-width: 1500px) {

  .tbc-new .text-btn a,
  .tbc-new .text-btn span {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 600px) {

  .tbc-new .text-btn a,
  .tbc-new .text-btn span {
    font-size: 14px;
    line-height: 20px;
  }
}

.tbc-new .text-btn a {
  cursor: pointer;
}

.tbc-new .text-btn:hover a {
  color: #bea18c;
}

.tbc-new.tbc-new-red .text-btn a:hover {
  color: #a70e27;
}

.tbc-new-beige .background-image {
  background-color: #213f48;
}

.tbc-new-beige .section-hero {
  position: relative;
  overflow: hidden;
  background-color: #213f48;
}

.tbc-new-beige .section-hero::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 32%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-hero::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 9;
  left: 0;
  width: 60%;
  top: 0;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-hero .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 110%;
}

@media screen and (max-width: 800px) {
  .tbc-new-beige .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-beige .section-hero .background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.08;
}

@media screen and (max-width: 800px) {
  .tbc-new-beige .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-beige .section-hero .v-container {
  position: relative;
  z-index: 15;
  height: calc(100vh - 10px);
  height: -moz-calc(100vh - 10px);
  height: -webkit-calc(100vh - 10px);
  height: -o-calc(100vh - 10px);
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 600px) {}

.tbc-new-beige .section-hero .container {
  max-width: 1700px;
}

.tbc-new-beige .section-hero .content {
  width: 100%;
  max-width: 900px;
}

.tbc-new-beige .section-hero .content h1,
.tbc-new-beige .section-hero .content h2 {
  font-size: 70px;
  line-height: 80px;
}

.tbc-new-beige .section-hero .content h1 strong,
.tbc-new-beige .section-hero .content h2 strong {
  font-weight: 700;
}

.tbc-new-beige .section-hero .content>* {
  color: white;
}

@media screen and (max-width: 1700px) {
  .tbc-new-beige .section-hero .content {
    max-width: 800px;
  }

  .tbc-new-beige .section-hero .content h1,
  .tbc-new-beige .section-hero .content h2 {
    font-size: 62px;
    line-height: 72px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-hero .content {
    max-width: 600px;
  }

  .tbc-new-beige .section-hero .content h1,
  .tbc-new-beige .section-hero .content h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-hero .content {
    max-width: 500px;
  }

  .tbc-new-beige .section-hero .content h1,
  .tbc-new-beige .section-hero .content h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

.tbc-new-beige .section-logos {
  padding-top: 90px;
  padding-bottom: 90px;
}

.tbc-new-beige .section-logos .container {
  width: 75%;
  max-width: 1170px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-logos .container {
    width: 92%;
    max-width: 520px;
  }
}

.tbc-new-beige .section-logos .content {
  text-align: center;
  margin-bottom: 10px;
}

.tbc-new-beige .section-logos .logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-logos .logos {
    margin-top: 30px;
  }
}

.tbc-new-beige .section-logos .logos>a {
  display: block;
  width: 12.5%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-logos .logos>a {
    width: 33%;
    padding: 0 6%;
    margin-bottom: 10px;
  }
}

.tbc-new-beige .section-logos .logos>a:hover img {
  filter: grayscale(0);
}

.tbc-new-beige .section-logos .logos>a>img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(90);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.tbc-new-beige .section-success {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 590px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-success {
    min-height: 0;
  }
}

.tbc-new-beige .section-success .grad {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: #f5f5f5;
}

.tbc-new-beige .section-success .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1450px;
}

.tbc-new-beige .section-success .container .left-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .left-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-success .container .left-side {
    width: 100%;
  }
}

.tbc-new-beige .section-success .container .left-side .content {
  text-align: right;
  padding-right: 16%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .left-side .content {
    padding-right: 12%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-success .container .left-side .content {
    padding-right: 10%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-success .container .left-side .content {
    padding: 0 6%;
    text-align: center;
    margin-bottom: 50px;
  }
}

.tbc-new-beige .section-success .container .left-side .content .title {
  font-weight: 300;
  font-size: 58px;
  line-height: 66px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .left-side .content .title {
    font-size: 50px;
    line-height: 58px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-success .container .left-side .content .title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-success .container .left-side .content .title {
    font-size: 32px;
    line-height: 48px;
  }
}

.tbc-new-beige .section-success .container .right-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .right-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-success .container .right-side {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-success .container .right-side .inner {
    text-align: center;
  }
}

.tbc-new-beige .section-success .container .right-side .inner .right-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 320px;
  line-height: 0.73em;
  font-weight: 800;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tbc-new-beige .section-success .container .right-side .inner .right-top span {
  font-size: 0.6em;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-top {
    font-size: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-top {
    font-size: 200px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-top {
    font-size: 160px;
  }
}

.tbc-new-beige .section-success .container .right-side .inner .right-btm {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-btm {
    font-size: 44px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-btm {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-success .container .right-side .inner .right-btm {
    font-size: 24px;
  }
}

.tbc-new-beige .section-mort {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#4a372a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-mort {
    background: none;
  }
}

.tbc-new-beige .section-mort .left-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-mort .left-side {
    width: 43%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-mort .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, #000000 0%, #c2a693 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000000 0%, #c2a693 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000000 0%, #c2a693 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#c2a693, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-beige .section-mort .left-side img {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 92%;
  width: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-mort .left-side img {
    left: 56%;
    height: 90%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-mort .left-side img {
    height: 88%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-mort .left-side img {
    display: block;
    margin: 0 auto;
    position: relative;
    left: auto;
    width: 700px;
    max-width: 100%;
    margin-top: 50px;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-beige .section-mort .left-side img {
    margin-top: 40px;
    -webkit-transform: translateX(2%);
    -ms-transform: translateX(2%);
    transform: translateX(2%);
  }
}

.tbc-new-beige .section-mort .right-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding-top: 70px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 680px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-mort .right-side {
    min-height: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-mort .right-side {
    width: 57%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-mort .right-side {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-beige .section-mort .right-side .content {
  width: 85%;
  max-width: 600px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-mort .right-side .content {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-mort .right-side .content {
    margin: 0 auto;
  }

  .tbc-new-beige .section-mort .right-side .content>* {
    color: #213f48;
  }
}

.tbc-new-beige .section-countdown {
  padding: 90px 0;
}

.tbc-new-beige .section-countdown .container {
  text-align: center;
  max-width: 750px;
}

.tbc-new-beige .section-countdown .line-1 {
  text-transform: uppercase;
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tbc-new-beige .section-countdown .line-2 {
  margin-bottom: 27px;
}

.tbc-new-beige .section-countdown .dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 25px;
}

.tbc-new-beige .section-countdown .dates .date-item {
  width: 106px;
  height: 121px;
  margin: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-countdown .dates .date-item {
    width: 90px;
    height: 100px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-beige .section-countdown .dates .date-item {
    width: 68px;
    height: 82px;
    margin: 0 5px;
  }
}

.tbc-new-beige .section-countdown .dates .date-item .amt {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-countdown .dates .date-item .amt {
    font-size: 40px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-beige .section-countdown .dates .date-item .amt {
    font-size: 32px;
  }
}

.tbc-new-beige .section-countdown .dates .date-item .measure {
  width: 100%;
  text-align: center;
  color: #9c9c9c;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-countdown .dates .date-item .measure {
    font-size: 12px;
  }
}

.tbc-new-beige .section-tstm-left .content-wrap .content {
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-beige .section-tstm-left .container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .section-tstm-left .container-2 .btn-wrap {
  text-align: left;
}

.tbc-new-beige .section-tstm-right .content-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-beige .section-tstm-right .content-wrap .content {
  left: -67px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-tstm-right .content-wrap .content {
    left: -50px;
  }
}

.tbc-new-beige .section-tstm-right .img-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-beige .section-tstm-right .container-2 .btn-wrap {
  text-align: right;
}

.tbc-new-beige .section-tstm-left,
.tbc-new-beige .section-tstm-right {
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-tstm-left,
  .tbc-new-beige .section-tstm-right {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.tbc-new-beige .section-tstm-left .container-1,
.tbc-new-beige .section-tstm-right .container-1,
.tbc-new-beige .section-tstm-left .container-2,
.tbc-new-beige .section-tstm-right .container-2 {
  max-width: 1530px;
}

.tbc-new-beige .section-tstm-left .container-1,
.tbc-new-beige .section-tstm-right .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-beige .section-tstm-left .container-2,
.tbc-new-beige .section-tstm-right .container-2 {
  margin-top: 40px;
}

.tbc-new-beige .section-tstm-left .container-2 .btn-wrap,
.tbc-new-beige .section-tstm-right .container-2 .btn-wrap {
  width: 56%;
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .container-2 .btn-wrap,
  .tbc-new-beige .section-tstm-right .container-2 .btn-wrap {
    width: 100%;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-tstm-left .container-2 .text-btn a,
  .tbc-new-beige .section-tstm-right .container-2 .text-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .container-2,
  .tbc-new-beige .section-tstm-right .container-2 {
    margin-top: 0;
  }
}

.tbc-new-beige .section-tstm-left .img-wrap,
.tbc-new-beige .section-tstm-right .img-wrap {
  position: relative;
  overflow: visible;
  z-index: 5;
  width: 56%;
  height: 620px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-beige .section-tstm-left .img-wrap,
  .tbc-new-beige .section-tstm-right .img-wrap {
    height: 550px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-tstm-left .img-wrap,
  .tbc-new-beige .section-tstm-right .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .img-wrap,
  .tbc-new-beige .section-tstm-right .img-wrap {
    height: 400px;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-beige .section-tstm-left .img-wrap,
  .tbc-new-beige .section-tstm-right .img-wrap {
    height: 70vw;
  }
}

.tbc-new-beige .section-tstm-left .img-wrap .background-image,
.tbc-new-beige .section-tstm-right .img-wrap .background-image {
  filter: hue-rotate(12deg) saturate(20%);
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .img-wrap .background-image,
  .tbc-new-beige .section-tstm-right .img-wrap .background-image {
    left: 0;
    right: auto;
    width: calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: -o-calc(100% - 30px);
  }
}

.tbc-new-beige .section-tstm-left .content-wrap,
.tbc-new-beige .section-tstm-right .content-wrap {
  position: relative;
  z-index: 10;
  width: 44%;
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .content-wrap,
  .tbc-new-beige .section-tstm-right .content-wrap {
    width: 100%;
    padding-left: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-beige .section-tstm-left .content-wrap .content,
.tbc-new-beige .section-tstm-right .content-wrap .content {
  position: relative;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 420px;
  padding: 12% 10%;
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-beige .section-tstm-left .content-wrap .content>*,
.tbc-new-beige .section-tstm-right .content-wrap .content>* {
  width: 100%;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1600px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content,
  .tbc-new-beige .section-tstm-right .content-wrap .content {
    padding: 10% 10%;
    min-height: 370px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content,
  .tbc-new-beige .section-tstm-right .content-wrap .content {
    width: calc(100% + 50px);
    width: -moz-calc(100% + 50px);
    width: -webkit-calc(100% + 50px);
    width: -o-calc(100% + 50px);
    min-height: 300px;
    padding: 55px 50px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content,
  .tbc-new-beige .section-tstm-right .content-wrap .content {
    position: relative;
    top: -30px;
    width: 100%;
    left: 0;
    min-height: 330px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content,
  .tbc-new-beige .section-tstm-right .content-wrap .content {
    padding: 50px 30px;
  }
}

.tbc-new-beige .section-tstm-left .content-wrap .content .quot,
.tbc-new-beige .section-tstm-right .content-wrap .content .quot {
  position: absolute;
  top: 47px;
  left: 36px;
  width: 21%;
  height: auto;
  z-index: 2;
}

.tbc-new-beige .section-tstm-left .content-wrap .content p,
.tbc-new-beige .section-tstm-right .content-wrap .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content p,
  .tbc-new-beige .section-tstm-right .content-wrap .content p {
    font-size: 22px;
    line-height: 34px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content p,
  .tbc-new-beige .section-tstm-right .content-wrap .content p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-beige .section-tstm-left .content-wrap .content p,
  .tbc-new-beige .section-tstm-right .content-wrap .content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.tbc-new-beige .section-tstm-left .content-wrap .content .tstm-by,
.tbc-new-beige .section-tstm-right .content-wrap .content .tstm-by {
  padding-top: 4px;
  margin-bottom: 3px;
}

.tbc-new-beige .section-help {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 20;
  background: white;
}

@media screen and (max-width: 1400px) {
  .tbc-new-beige .section-help {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-help {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-help {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.tbc-new-beige .section-help .content-container {
  max-width: 1250px;
}

.tbc-new-beige .section-help .img-container {
  max-width: 1600px;
}

.tbc-new-beige .section-help .img-container img {
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-beige .section-help .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-help .content-1 {
    margin-bottom: 12px;
  }
}

.tbc-new-beige .section-help .content-2 {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-help .content-2 {
    margin-bottom: 22px;
  }
}

.tbc-new-beige .section-help .content-2 p {
  font-size: 36px;
  line-height: 46px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-help .content-2 p {
    font-size: 32px;
    line-height: 42px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-help .content-2 p {
    font-size: 22px;
    line-height: 32px;
  }
}

.tbc-new-beige .section-help-2 {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-help-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-help-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-beige .section-help-2 .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-help-2 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 1600px;
}

.tbc-new-beige .section-help-2 .left-side {
  width: 47%;
  padding-right: 5%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-help-2 .left-side {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
}

.tbc-new-beige .section-help-2 .left-side .content {
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-help-2 .left-side .content {
    text-align: left;
  }
}

@media screen and (max-width: 1400px) {
  .tbc-new-beige .section-help-2 .left-side .content h2 {
    font-size: 34px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-help-2 .left-side .content h2 br {
    display: none;
  }
}

.tbc-new-beige .section-help-2 .right-side {
  width: 53%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-help-2 .right-side {
    width: 100%;
  }
}

.tbc-new-beige .section-tragedy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.tbc-new-beige .section-tragedy .left-side {
  position: relative;
  z-index: 10;
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tragedy .left-side {
    width: 100%;
    height: 550px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .left-side {
    height: 400px;
  }
}

.tbc-new-beige .section-tragedy .left-side .img {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #bea18c;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tragedy .left-side .img {
    width: 100%;
  }
}

.tbc-new-beige .section-tragedy .right-side .right-top .content-1,
.tbc-new-beige .section-tragedy .tragedy-items .item .item-right .content {
  width: 92%;
  max-width: 700px;
}

.tbc-new-beige .section-tragedy .right-side {
  position: relative;
  z-index: 20;
  width: 55%;
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tragedy .right-side {
    width: 100%;
    background: white;
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tragedy .right-side {
    padding-bottom: 20px;
  }
}

.tbc-new-beige .section-tragedy .right-side .right-top {
  padding-left: 187px;
  margin-top: 10px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tragedy .right-side .right-top {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .right-side .right-top {
    padding-left: 100px;
  }
}

.tbc-new-beige .section-tragedy .right-side .right-top .content-1 {
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .right-side .right-top .content-1 {
    padding-right: 18px;
  }
}

.tbc-new-beige .section-tragedy .right-side .right-top .content-1 h2 {
  margin-bottom: 5px;
}

.tbc-new-beige .section-tragedy .right-side .right-top .content-1 .tagline {
  font-size: 26px;
}

.tbc-new-beige .section-tragedy .tragedy-items .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 50px;
}

.tbc-new-beige .section-tragedy .tragedy-items .item:first-child .item-left::after {
  top: 50%;
}

.tbc-new-beige .section-tragedy .tragedy-items .item:last-child .item-left::after {
  bottom: 50%;
}

.tbc-new-beige .section-tragedy .tragedy-items .item .item-left {
  position: relative;
  padding-left: 50px;
  padding-right: 35px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .tragedy-items .item .item-left {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tbc-new-beige .section-tragedy .tragedy-items .item .item-left::after {
  content: '';
  display: block;
  width: 2px;
  position: absolute;
  z-index: 5;
  left: 100px;
  top: 0;
  bottom: -50px;
  background: #ddc4b2;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .tragedy-items .item .item-left::after {
    left: 49px;
  }
}

.tbc-new-beige .section-tragedy .tragedy-items .item .item-left .inner {
  position: relative;
  z-index: 10;
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-radius: 99px;
  background: white;
  border: 2px solid #ddc4b2;
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .tragedy-items .item .item-left .inner {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
}

.tbc-new-beige .section-tragedy .tragedy-items .item .item-right {
  width: calc(100% - 187px);
  width: -moz-calc(100% - 187px);
  width: -webkit-calc(100% - 187px);
  width: -o-calc(100% - 187px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tragedy .tragedy-items .item .item-right {
    width: calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -o-calc(100% - 100px);
  }
}

.tbc-new-beige .section-tragedy .tragedy-items .item .item-right .content {
  width: 100%;
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tragedy .tragedy-items .item .item-right .content {
    padding-right: 18px;
  }
}

.tbc-new-beige .section-type-split-left-1 {
  position: relative;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
}

.tbc-new-beige .section-type-split-left-1 .left-side {
  width: 39%;
  position: relative;
  z-index: 20;
  overflow: visible;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-type-split-left-1 .left-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-type-split-left-1 .left-side {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-beige .section-type-split-left-1 .left-side .background-image {
  top: -60px;
  bottom: 0;
  height: auto;
}

@media screen and (max-width: 1300px) {
  .tbc-new-beige .section-type-split-left-1 .left-side .background-image {
    top: -50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-type-split-left-1 .left-side .background-image {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    padding-bottom: 100%;
  }
}

.tbc-new-beige .section-type-split-left-1 .right-side {
  position: relative;
  z-index: 10;
  width: 61%;
  min-height: 660px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-type-split-left-1 .right-side {
    min-height: 580px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-beige .section-type-split-left-1 .right-side {
    min-height: 500px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-type-split-left-1 .right-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-type-split-left-1 .right-side {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    width: 100%;
    padding-top: 300px;
    margin-top: -250px;
    padding-bottom: 0;
  }
}

.tbc-new-beige .section-type-split-left-1 .right-side::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: white;
}

.tbc-new-beige .section-type-split-left-1 .right-side .grad {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-type-split-left-1 .right-side .content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-beige .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 0;
  }
}

.tbc-new-beige .section-wondering {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 95px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-wondering {
    padding-top: 70px;
  }
}

.tbc-new-beige .section-wondering .container-1 {
  text-align: center;
  max-width: 1150px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-wondering .container-1 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-wondering .container-1 {
    margin-bottom: 45px;
  }
}

.tbc-new-beige .section-wondering .container-2 {
  max-width: 1475px;
  padding-left: 18px;
  padding-right: 18px;
}

.tbc-new-beige .section-wondering .container-3 {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 1250px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-wondering .container-3 {
    padding-top: 100px;
    max-width: 1100px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-wondering .container-3 {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.tbc-new-beige .section-wondering .container-3 .content p {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-wondering .container-3 .content p {
    font-size: 21px;
    line-height: 30px;
  }
}

.tbc-new-beige .section-wondering .wondering-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-wondering .wondering-cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-beige .section-wondering .wondering-cards .card-item {
  position: relative;
  width: 18.4%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  border-top: 17px solid #ddc4b2;
  height: 300px;
  margin-bottom: 28px;
  cursor: pointer;
}

@media screen and (max-width: 1600px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item {
    width: 18.8%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item {
    width: 265px;
    height: 290px;
    margin: 0 12px 24px 12px;
  }
}

.tbc-new-beige .section-wondering .wondering-cards .card-item::before {
  content: '';
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  top: -17px;
  border-radius: 7px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 1025px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover::before {
    opacity: 1;
  }

  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover .card-inner .icon {
    top: -18px;
  }

  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover .card-inner .icon svg {
    fill: white;
  }

  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover .card-inner .btm {
    top: -18px;
  }

  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover .card-inner .btm .title {
    color: white;
  }

  .tbc-new-beige .section-wondering .wondering-cards .card-item:hover .card-inner .btm .learn-more {
    opacity: 1;
    visibility: visible;
    color: white;
  }
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  z-index: 10;
  text-align: center;
  padding: 10%;
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .icon {
  position: relative;
  top: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .icon svg {
  fill: #ddc4b2;
  width: 117px;
  height: 110px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm {
  position: relative;
  top: 0;
  min-height: 78px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm {
    max-width: 200px;
    min-height: 75px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm {
    min-height: 66px;
    max-width: 180px;
  }
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm .title {
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 18px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 17px;
    line-height: 23px;
  }
}

.tbc-new-beige .section-wondering .wondering-cards .card-item .card-inner .btm .learn-more {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tbc-new-beige .tbc-lightbox.lb-wondering .inner-1 {
  max-width: 1500px;
}

.tbc-new-beige .tbc-lightbox.lb-wondering .content .title {
  font-size: 32px;
  margin-bottom: 18px;
}

.tbc-new-beige .tbc-lightbox.lb-wondering .content i {
  color: #bea18c;
}

.tbc-new-beige .tbc-lightbox.lb-wondering .content .how-to-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.tbc-new-beige .tbc-lightbox.lb-wondering .content .how-to-items>* {
  width: 50%;
  padding-right: 15px;
  margin-bottom: 3px;
}

@media screen and (max-width: 1100px) {
  .tbc-new-beige .tbc-lightbox.lb-wondering .content .how-to-items>* {
    width: 100%;
    padding-right: 0;
  }
}

.tbc-new-beige .section-bottom-line {
  position: relative;
  height: 850px;
  padding-top: 135px;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-bottom-line {
    padding-top: 120px;
    height: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-bottom-line {
    padding-top: 90px;
    height: 730px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-beige .section-bottom-line {
    padding-top: 60px;
    height: 620px;
  }
}

.tbc-new-beige .section-bottom-line .background-image {
  z-index: 1;
  position: absolute;
  top: 20%;
  bottom: -25%;
  left: 0;
  width: 100%;
  height: initial;
}

.tbc-new-beige .section-bottom-line .background-image .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 5;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-bottom-line .container {
  position: relative;
  z-index: 10;
  max-width: 1120px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-bottom-line .container {
    max-width: 900px;
  }
}

.tbc-new-beige .section-bottom-line .content {
  text-align: center;
}

.tbc-new-beige .section-bottom-line .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-bottom-line .content p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-beige .section-bottom-line .content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.tbc-new-beige .section-caution {
  position: relative;
  min-height: 730px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-caution {
    min-height: 700px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-caution {
    min-height: 620px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-caution {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.tbc-new-beige .section-caution .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-caution .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1380px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-caution .container {
    max-width: 1170px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-caution .container {
    max-width: 1000px;
  }
}

.tbc-new-beige .section-caution .container .left-side {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-caution .container .left-side {
    width: 100%;
  }
}

.tbc-new-beige .section-caution .container .left-side .caution {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.26em;
  margin-bottom: 10px;
}

.tbc-new-beige .section-caution .container .left-side .caution .icon svg {
  width: 24px;
  height: 24px;
}

.tbc-new-beige .section-caution .container .right-side {
  width: 42%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-caution .container .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-caution .container .right-side {
    display: none;
  }
}

.tbc-new-beige .section-caution .container .right-side svg {
  fill: #ddc4b2;
}

.tbc-new-beige .section-media {
  margin-top: 60px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-media {
    margin-top: 0;
  }
}

.tbc-new-beige .section-media .container-1 {
  max-width: 950px;
  text-align: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-media .container-1 {
    max-width: 800px;
  }
}

.tbc-new-beige .section-media .container-1 .content p {
  font-size: 18px;
  line-height: 28px;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-media .container-1 .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.tbc-new-beige .section-media .container-2 {
  margin-top: 30px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-media .container-2 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-media .container-2 {
    margin-top: 25px;
    margin-bottom: 50px;
  }
}

.tbc-new-beige .section-media .container-3 {
  max-width: 1050px;
  text-align: center;
  margin-bottom: 50px;
}

.tbc-new-beige .section-media .container-4 {
  max-width: 950px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-media .container-4 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-media .container-4 {
    margin-bottom: 50px;
  }
}

.tbc-new-beige .section-media .container-5 {
  max-width: 1050px;
  text-align: center;
  padding-bottom: 50px;
}

.tbc-new-beige .section-media .media-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

.tbc-new-beige .section-media .media-slider .inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
}

.tbc-new-beige .section-media .media-slider .inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-beige .section-media .media-slider .inner .item {
  margin: 0 32px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-media .media-slider .inner .item {
    margin: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-media .media-slider .inner .item {
    margin: 0 10px;
  }
}

.tbc-new-beige .section-media .media-slider .inner .item img {
  display: block;
  width: 210px;
  height: auto;
  filter: grayscale(100);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-beige .section-media .media-slider .inner .item img.js-tall {
  height: 70px;
  width: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-media .media-slider .inner .item img {
    width: 170px;
  }

  .tbc-new-beige .section-media .media-slider .inner .item img.js-tall {
    height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-media .media-slider .inner .item img {
    width: 135px;
  }

  .tbc-new-beige .section-media .media-slider .inner .item img.js-tall {
    height: 45px;
  }
}

.tbc-new-beige .section-media .media-slider .inner .item img:hover {
  filter: grayscale(0);
}

.tbc-new-beige .section-media .media-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-media .media-cards {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-beige .section-media .media-cards .card-item {
  width: 46%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

@media screen and (max-width: 980px) {
  .tbc-new-beige .section-media .media-cards .card-item {
    width: 47%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-media .media-cards .card-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .tbc-new-beige .section-media .media-cards .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-beige .section-media .media-cards .card-item .top {
  padding: 50px 0 25px 0;
}

.tbc-new-beige .section-media .media-cards .card-item .top .img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 235px;
  height: 235px;
  border-radius: 999px;
  margin: 0 auto;
}

.tbc-new-beige .section-media .media-cards .card-item .top .img::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  border: 7px solid #ddc4b2;
  border-radius: 999px;
}

.tbc-new-beige .section-media .media-cards .card-item .btm {
  width: 90%;
  margin: 0 auto;
  min-height: 175px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-media .media-cards .card-item .btm {
    min-height: 0;
    padding-bottom: 40px;
  }
}

.tbc-new-beige .section-media .media-cards .card-item .btm .title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 8px;
}

.tbc-new-beige .section-media .media-cards .card-item .btm p {
  font-size: 18px;
  line-height: 26px;
}

.tbc-new-beige .section-what-you-get {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 580px;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-what-you-get {
    min-height: 480px;
  }
}

.tbc-new-beige .section-what-you-get .container {
  text-align: center;
  max-width: 1100px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-what-you-get .container {
    max-width: 960px;
  }
}

.tbc-new-beige .section-what-you-get .container p {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 5px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-what-you-get .container p {
    font-size: 26px;
    line-height: 36px;
  }
}

.tbc-new-beige .wyg-controls {
  position: fixed;
  z-index: 5000;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  padding: 28px 14px;
  background: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .wyg-controls {
    padding: 22px 9px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .wyg-controls {
    display: none;
  }
}

.tbc-new-beige .wyg-controls::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
}

.tbc-new-beige .wyg-controls.active {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.tbc-new-beige .wyg-controls.active::before {
  opacity: 1;
}

.tbc-new-beige .wyg-controls .item {
  position: relative;
  z-index: 10;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 3px solid #ddc4b2;
  margin-bottom: 15px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  cursor: pointer;
}

.tbc-new-beige .wyg-controls .item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .wyg-controls .item {
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    border-width: 2px;
  }

  .tbc-new-beige .wyg-controls .item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-beige .wyg-controls .item:hover,
.tbc-new-beige .wyg-controls .item.active {
  border: 5px solid #ddc4b2;
}

.tbc-new-beige .section-tele-seminars {
  position: relative;
  min-height: 690px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-tele-seminars {
    min-height: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tele-seminars {
    min-height: 0;
  }
}

.tbc-new-beige .section-tele-seminars .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .grad {
    display: none;
  }
}

.tbc-new-beige .section-tele-seminars .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-beige .section-tele-seminars .left-side .img-wrap {
  position: absolute;
  bottom: 0;
  left: 60%;
  overflow: visible;
  height: 95%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tele-seminars .left-side .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .left-side .img-wrap {
    padding-top: 30px;
    position: relative;
    height: 100%;
    left: 0;
  }
}

.tbc-new-beige .section-tele-seminars .left-side .img-wrap img {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .left-side .img-wrap img {
    position: relative;
    display: block;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 70%;
    max-width: 370px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-beige .section-tele-seminars .right-side {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 80px 0;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tele-seminars .right-side {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .right-side {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
    width: 100%;
    padding-top: 70px;
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-beige .section-tele-seminars .right-side .content {
  width: 100%;
  max-width: 650px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tele-seminars .right-side .content {
    margin-left: auto;
    margin-right: auto;
    max-width: 460px;
  }
}

@media screen and (max-width: 768px) {}

.tbc-new-beige .section-solutions-library {
  position: relative;
  overflow: hidden;
}

.tbc-new-beige .section-solutions-library .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-solutions-library .container {
  max-width: 1466px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: 760px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .container {
    padding-left: 90px;
    padding-right: 0;
    height: 700px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-solutions-library .container {
    padding-left: 70px;
    height: 630px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-solutions-library .container {
    padding-left: 30px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-solutions-library .container {
    height: auto;
    width: 94%;
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-beige .section-solutions-library .container .left-side {
  position: relative;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .container .left-side {
    width: 42%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-solutions-library .container .left-side {
    width: 46%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-beige .section-solutions-library .container .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-solutions-library .container .left-side {
    width: 100%;
    height: 450px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-beige .section-solutions-library .container .right-side {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .container .right-side {
    width: 58%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-solutions-library .container .right-side {
    width: 54%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-beige .section-solutions-library .container .right-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-solutions-library .container .right-side {
    display: block;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-beige .section-solutions-library .container .right-side .content {
  width: 100%;
  max-width: 580px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .container .right-side .content {
    max-width: 580px;
  }
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .container .right-side .content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-solutions-library .container .right-side .content {
    width: 100%;
  }
}

.tbc-new-beige .section-solutions-library .sl-slider {
  height: 100%;
}

.tbc-new-beige .section-solutions-library .sl-slider .overflow-outer {
  height: 100%;
  overflow: hidden;
}

.tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
  position: relative;
  padding-top: 15px;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
  padding-left: 10px;
  padding-right: 18%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
    padding-right: 10px;
  }
}

.tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item {
  background: white;
  -webkit-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #ddc4b2;
  border-radius: 3px;
  padding: 9px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 18px;
}

.tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
  font-size: 16px;
  line-height: 24px;
  padding-right: 10px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
    font-size: 15px;
    line-height: 23px;
  }
}

.tbc-new-beige .section-audio-learning {
  position: relative;
}

.tbc-new-beige .section-audio-learning .background-image {
  z-index: 5;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-audio-learning .background-image {
    left: 0;
    right: auto;
    width: 105%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-audio-learning .background-image {
    width: 160%;
  }
}

.tbc-new-beige .section-audio-learning .content-wrap {
  position: relative;
  z-index: 10;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: 11%;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-audio-learning .content-wrap {
    padding-left: 9%;
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-audio-learning .content-wrap {
    min-height: 600px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-audio-learning .content-wrap {
    padding-left: 6%;
    padding-right: 6%;
  }
}

.tbc-new-beige .section-audio-learning .content-wrap .content {
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 50px;
  padding-right: 45px;
  width: 100%;
  max-width: 675px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content {
    max-width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content {
    padding: 55px 50px;
    max-width: 500px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content {
    padding: 45px 10%;
  }
}

.tbc-new-beige .section-audio-learning .content-wrap .content h2 {
  font-size: 56px;
  line-height: 62px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content h2 {
    font-size: 50px;
    line-height: 56px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content h2 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-audio-learning .content-wrap .content h2 {
    font-size: 38px;
    line-height: 46px;
  }
}

.tbc-new-beige .section-workbook {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-workbook .flex {
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-workbook .flex {
    min-height: 660px;
  }
}

.tbc-new-beige .section-workbook .flex .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding: 60px 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-workbook .flex .left-side {
    width: 60%;
    padding-left: 70px;
    padding-right: 105px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-workbook .flex .left-side {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 10px 7% 60px 7%;
  }
}

.tbc-new-beige .section-workbook .flex .left-side .content {
  width: 100%;
  max-width: 685px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-workbook .flex .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-beige .section-workbook .flex .right-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-workbook .flex .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-workbook .flex .right-side {
    width: 100%;
    height: 500px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-workbook .flex .right-side {
    height: 400px;
  }
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3%;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .img-1 {
  position: absolute;
  z-index: 20;
  top: 14%;
  height: 52%;
  width: 100%;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .img-1 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 48%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .img-2 {
  position: absolute;
  z-index: 20;
  overflow: visible;
  top: 61%;
  height: 31%;
  width: 100%;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .img-2 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 46%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
  position: absolute;
  left: 0;
  width: 114%;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 155%;
    left: -21%;
    bottom: 2%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 98%;
    max-width: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.tbc-new-beige .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 .circle-inner-2 {
  position: absolute;
  padding-bottom: 100%;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 9999px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  -webkit-transform-origin: 50% bottom;
  /* Chrome, Safari, Opera */
  -ms-transform-origin: 50% bottom;
  /* IE 9 */
  transform-origin: 50% bottom;
}

.tbc-new-beige .section-mic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-mic .left-side {
  position: relative;
  width: 47%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-mic .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-mic .left-side {
    width: 100%;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-beige .section-mic .left-side .img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 8%;
  bottom: 8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-mic .left-side .img {
    top: 15%;
    bottom: 15%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-mic .left-side .img {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 400px;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-position: 20% 50%;
    top: auto;
    bottom: auto;
  }
}

@media screen and (max-width: 560px) {
  .tbc-new-beige .section-mic .left-side .img {
    height: 60vw;
  }
}

.tbc-new-beige .section-mic .right-side {
  min-height: 770px;
  width: 53%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-mic .right-side {
    min-height: 680px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-mic .right-side {
    min-height: 600px;
    width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-mic .right-side {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-mic .right-side {
    width: 100%;
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-beige .section-mic .right-side .content {
  width: 100%;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-mic .right-side .content {
    max-width: 640px;
  }
}

.tbc-new-beige .section-autograph {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 760px;
  padding: 90px 50px 90px 90px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-autograph {
    padding-left: 70px;
    padding-right: 0;
    min-height: 660px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-autograph {
    padding-left: 50px;
    min-height: 600px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-autograph {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-autograph {
    padding-top: 60px;
  }
}

.tbc-new-beige .section-autograph .left-side {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-autograph .left-side {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-autograph .left-side {
    width: 100%;
  }
}

.tbc-new-beige .section-autograph .left-side .content {
  width: 100%;
  max-width: 660px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-autograph .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-beige .section-autograph .right-side {
  position: relative;
  width: 52%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-autograph .right-side {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-autograph .right-side {
    width: 100%;
  }
}

.tbc-new-beige .section-autograph .right-side .img-wrap {
  position: absolute;
  left: 50%;
  height: 100%;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-autograph .right-side .img-wrap {
    position: relative;
    left: auto;
    height: auto;
    width: 100%;
  }
}

.tbc-new-beige .section-autograph .right-side .img-wrap img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 0;
  width: 460px;
  height: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-autograph .right-side .img-wrap img {
    width: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-autograph .right-side .img-wrap img {
    width: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-autograph .right-side .img-wrap img {
    width: 330px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-autograph .right-side .img-wrap img {
    margin-top: 10px;
    position: relative;
    top: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-beige .section-homework {
  position: relative;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 90px 70px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-homework {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-homework {
    padding-left: 70px;
    padding-right: 30px;
    min-height: 660px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-homework {
    min-height: 575px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-homework {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-homework {
    padding: 50px 7vw;
  }
}

.tbc-new-beige .section-homework .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 1370px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-homework .container {
    max-width: 1130px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-homework .container {
    max-width: 350px;
  }
}

.tbc-new-beige .section-homework .container .card-item {
  min-height: 390px;
  width: 31%;
  background: white;
  padding: 50px;
  border-radius: 9px;
  border-top: 17px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .section-homework .container .card-item:nth-child(1) {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.tbc-new-beige .section-homework .container .card-item:nth-child(2) {
  -webkit-transition: all 0.3s linear 0.3s;
  -moz-transition: all 0.3s linear 0.3s;
  -ms-transition: all 0.3s linear 0.3s;
  -o-transition: all 0.3s linear 0.3s;
  transition: all 0.3s linear 0.3s;
}

.tbc-new-beige .section-homework .container .card-item:nth-child(3) {
  -webkit-transition: all 0.3s linear 0.6s;
  -moz-transition: all 0.3s linear 0.6s;
  -ms-transition: all 0.3s linear 0.6s;
  -o-transition: all 0.3s linear 0.6s;
  transition: all 0.3s linear 0.6s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-homework .container .card-item {
    width: 31.5%;
    padding: 50px 45px;
    min-height: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-homework .container .card-item {
    min-height: 0;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-beige .section-homework .container .card-item {
    padding: 42px 30px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-homework .container .card-item {
    padding: 35px 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-homework .container .card-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .tbc-new-beige .section-homework .container .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-beige .section-homework .container .card-item .content {
  text-align: center;
}

.tbc-new-beige .section-homework .container .card-item .content h2 {
  font-size: 39px;
  line-height: 45px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-homework .container .card-item .content h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-homework .container .card-item .content h2 {
    font-size: 28px;
    line-height: 33px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-homework .container .card-item .content p {
    line-height: 1.78em;
  }
}

.tbc-new-beige .section-members-only {
  overflow: hidden;
  padding-left: 90px;
  padding-right: 90px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only {
    padding-right: 50px;
  }
}

.tbc-new-beige .section-members-only .container {
  max-width: 1366px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only .container {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-members-only {
    padding-left: 0;
    padding-right: 0;
  }
}

.tbc-new-beige .section-members-only .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 310px;
  padding: 60px 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only .container-1 {
    min-height: 260px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-1 {
    min-height: 0;
    padding: 60px 0 50px 0;
    max-width: 800px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-members-only .container-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .section-members-only .container-1 .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-1 .flex {
    display: block;
  }
}

.tbc-new-beige .section-members-only .container-1 .flex .left-side {
  width: 410px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only .container-1 .flex .left-side {
    width: 320px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-1 .flex .left-side {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tbc-new-beige .section-members-only .container-1 .flex .right-side {
  width: calc(100% - 410px);
  width: -moz-calc(100% - 410px);
  width: -webkit-calc(100% - 410px);
  width: -o-calc(100% - 410px);
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only .container-1 .flex .right-side {
    width: calc(100% - 320px);
    width: -moz-calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
    width: -o-calc(100% - 320px);
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-1 .flex .right-side {
    width: 100%;
  }
}

.tbc-new-beige .section-members-only .container-1 .flex .right-side .content {
  width: 90%;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-members-only .container-1 .flex .right-side .content {
    width: 93%;
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-1 .flex .right-side .content {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-members-only .container-2 {
    max-width: 800px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-members-only .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-members-only .container-2 {
    margin-top: -20px;
    padding-bottom: 46px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.tbc-new-beige .section-members-only .container-2 img {
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}

.tbc-new-beige .section-type-split-left-2,
.tbc-new-beige .section-type-split-right-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-type-split-left-2 .img-wrap,
.tbc-new-beige .section-type-split-right-2 .img-wrap {
  position: relative;
  width: 45%;
}

@media screen and (max-width: 1024px) {

  .tbc-new-beige .section-type-split-left-2 .img-wrap,
  .tbc-new-beige .section-type-split-right-2 .img-wrap {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-type-split-left-2 .img-wrap .background-image,
  .tbc-new-beige .section-type-split-right-2 .img-wrap .background-image {
    top: 0;
    left: 5vw;
    right: 5vw;
    bottom: 5vw;
    width: auto;
    height: auto;
    border-radius: 7px;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-type-split-left-2 .img-wrap,
  .tbc-new-beige .section-type-split-right-2 .img-wrap {
    width: 100%;
    height: 80vw;
  }

  .tbc-new-beige .section-type-split-left-2 .img-wrap.img-wrap,
  .tbc-new-beige .section-type-split-right-2 .img-wrap.img-wrap {
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-beige .section-type-split-left-2 .img-wrap,
  .tbc-new-beige .section-type-split-right-2 .img-wrap {
    height: 90vw;
  }
}

.tbc-new-beige .section-type-split-left-2 .content-wrap,
.tbc-new-beige .section-type-split-right-2 .content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 55%;
  min-height: 760px;
}

@media screen and (max-width: 1440px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap,
  .tbc-new-beige .section-type-split-right-2 .content-wrap {
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap,
  .tbc-new-beige .section-type-split-right-2 .content-wrap {
    min-height: 550px;
  }
}

@media screen and (max-width: 1024px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap,
  .tbc-new-beige .section-type-split-right-2 .content-wrap {
    width: 53%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap,
  .tbc-new-beige .section-type-split-right-2 .content-wrap {
    background: none;
    width: 100%;
    padding-top: 11vw;
    padding-bottom: 11vw;
    min-height: 300px;
  }

  .tbc-new-beige .section-type-split-left-2 .content-wrap.content-wrap,
  .tbc-new-beige .section-type-split-right-2 .content-wrap.content-wrap {
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-beige .section-type-split-left-2 .content-wrap .content,
.tbc-new-beige .section-type-split-right-2 .content-wrap .content {
  width: 100%;
  max-width: 618px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1500px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap .content,
  .tbc-new-beige .section-type-split-right-2 .content-wrap .content {
    max-width: 550px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-beige .section-type-split-left-2 .content-wrap .content,
  .tbc-new-beige .section-type-split-right-2 .content-wrap .content {
    padding-left: 20px;
  }
}

.tbc-new-beige .section-type-split-left-2 .img-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-beige .section-type-split-left-2 .content-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-beige .section-privacy {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 600px;
  padding: 90px 0;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-privacy {
    min-height: 550px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-privacy {
    min-height: 500px;
  }
}

.tbc-new-beige .section-privacy .grad {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d1ae96, endColorstr=#d1ae96, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-privacy .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 122%;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-privacy .background-image {
    background-position: 70% 50%;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-privacy .background-image {
    height: 132%;
  }
}

.tbc-new-beige .section-privacy .container {
  padding-top: 62px;
  position: relative;
  z-index: 20;
  max-width: 1000px;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-privacy .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .section-privacy .container * {
  color: white;
}

.tbc-new-beige .section-privacy .container *.text-btn a:hover,
.tbc-new-beige .section-privacy .container *.text-btn span:hover {
  color: white;
  text-decoration: underline;
}

.tbc-new-beige .section-privacy .container .line-1 {
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-privacy .container .line-1 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-privacy .container .line-1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.tbc-new-beige .section-privacy .container .line-2 {
  font-size: 58px;
  line-height: 64px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-privacy .container .line-2 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-privacy .container .line-2 {
    font-size: 40px;
    line-height: 46px;
  }
}

.tbc-new-beige .section-tracks {
  position: relative;
  z-index: 50;
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks {
    padding-top: 65px;
  }
}

.tbc-new-beige .section-tracks .container {
  max-width: 860px;
}

.tbc-new-beige .section-tracks .container .content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 45px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .container .content {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-tracks .container .content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .container .content h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

.tbc-new-beige .section-tracks .track-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .track-cards {
    width: 100%;
    max-width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-beige .section-tracks .track-cards .track-card {
  position: relative;
  top: 0;
  cursor: pointer;
  width: 47%;
  background: white;
  border-top: 17px solid #ddc4b2;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 305px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tracks .track-cards .track-card {
    height: 280px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .track-cards .track-card {
    width: 100%;
    margin-bottom: 20px;
    height: 230px;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .tbc-new-beige .section-tracks .track-cards .track-card:hover {
    top: -10px;
    border-color: #bea18c;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover::before {
    opacity: 1;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover .inner {
    top: -25px;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover .inner i {
    color: white;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover .inner .title {
    color: white;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover .inner .extra {
    opacity: 1;
    margin-top: 7px;
  }

  .tbc-new-beige .section-tracks .track-cards .track-card:hover .inner .extra p {
    color: white;
  }
}

.tbc-new-beige .section-tracks .track-cards .track-card::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 17px);
  height: -moz-calc(100% + 17px);
  height: -webkit-calc(100% + 17px);
  height: -o-calc(100% + 17px);
  border-radius: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-beige .section-tracks .track-cards .track-card:nth-child(1) .inner i {
  position: relative;
  top: -4px;
}

.tbc-new-beige .section-tracks .track-cards .track-card .inner {
  position: relative;
  z-index: 10;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 80%;
  max-width: 230px;
  margin: 50px auto;
  text-align: center;
}

.tbc-new-beige .section-tracks .track-cards .track-card .inner i {
  font-size: 110px;
  margin-bottom: 12px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tracks .track-cards .track-card .inner i {
    font-size: 90px;
  }
}

.tbc-new-beige .section-tracks .track-cards .track-card .inner .title {
  font-size: 31px;
  line-height: 37px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-tracks .track-cards .track-card .inner .title {
    font-size: 26px;
    line-height: 31px;
  }
}

.tbc-new-beige .section-tracks .track-cards .track-card .inner .extra {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .section-tracks .track-cards .track-card .inner .extra {
    display: none;
  }
}

.tbc-new-beige .section-tracks .track-cards .track-card .inner .extra p {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.tbc-new-beige .section-tracks .tracks-btn {
  margin-top: 36px;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .tracks-btn {
    margin-top: 20px;
  }
}

.tbc-new-beige .section-tracks .tracks-btn a {
  display: block;
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 21px 20px 20px 20px;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  color: #213f48;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 16px;
  line-height: 20px;
}

.tbc-new-beige .section-tracks .tracks-btn a:hover {
  background: #bea18c;
  color: white;
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-tracks .tracks-btn a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.18em;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-tracks .tracks-btn a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12em;
  }
}

.tbc-new-beige .section-ready {
  position: relative;
  z-index: 20;
  margin-top: -160px;
  padding-top: 270px;
  padding-bottom: 110px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-ready {
    padding-top: 240px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-ready {
    margin-top: 90px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-beige .section-ready {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-ready {
    padding-top: 90px;
  }
}

.tbc-new-beige .section-ready .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: visible;
}

.tbc-new-beige .section-ready .background img {
  position: absolute;
  z-index: 5;
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-beige .section-ready .background .grad {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-ready .container {
  position: relative;
  z-index: 20;
  max-width: 1460px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-ready .container {
    max-width: 1260px;
  }
}

.tbc-new-beige .section-ready .container .content {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-ready .container .content {
    max-width: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-beige .section-ready .container .content {
    width: 78%;
    max-width: 700px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-ready .container .content {
    width: 100%;
  }
}

.tbc-new-beige .section-schedule {
  position: relative;
  z-index: 50;
  padding-bottom: 80px;
}

.tbc-new-beige .section-schedule .container {
  max-width: 870px;
}

.tbc-new-beige .section-schedule .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

.tbc-new-beige .section-schedule .content-2 {
  text-align: center;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.tbc-new-beige .section-schedule .content-2 p {
  font-size: 21px;
  line-height: 31px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-schedule .content-2 p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-schedule .content-2 p {
    font-size: 18px;
    line-height: 28px;
  }
}

.tbc-new-beige .section-schedule .schedule-table {
  margin-bottom: 45px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
}

.tbc-new-beige .section-schedule .schedule-table .table-header,
.tbc-new-beige .section-schedule .schedule-table .table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 0 12px;
}

@media screen and (max-width: 700px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header,
  .tbc-new-beige .section-schedule .schedule-table .table-row {
    padding: 16px;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header:last-child,
.tbc-new-beige .section-schedule .schedule-table .table-row:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.tbc-new-beige .section-schedule .schedule-table .table-header>div,
.tbc-new-beige .section-schedule .schedule-table .table-row>div {
  padding: 14px;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #737373;
}

@media screen and (max-width: 700px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div,
  .tbc-new-beige .section-schedule .schedule-table .table-row>div {
    text-align: center;
    padding: 0;
    margin-bottom: 4px;
  }

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:last-child,
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(1),
.tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(1) {
  width: 48%;
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 44%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 100%;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(2),
.tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(2) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 100%;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(3),
.tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(3) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-beige .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 100%;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header {
  padding-top: 5px;
  margin-bottom: -3px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-schedule .schedule-table .table-header {
    display: none;
  }
}

.tbc-new-beige .section-schedule .schedule-table .table-header>div {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.tbc-new-beige .section-schedule .schedule-table .table-row:nth-child(odd) {
  background: #f7f7f7;
}

.tbc-new-beige .section-schedule .schedule-table .table-row>div:nth-child(1) {
  color: #213f48;
  font-weight: 600;
}

.tbc-new-beige .tbc-accordion-item {
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  margin-bottom: 20px;
  border-left: 16px solid #ddc4b2;
  padding-left: 18px;
  padding-right: 25px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .tbc-accordion-item {
    margin-bottom: 15px;
  }
}

.tbc-new-beige .tbc-accordion-item:last-child {
  margin-bottom: 0;
}

.tbc-new-beige .tbc-accordion-item.closed .acc-top .icons .fa-minus {
  display: none;
}

.tbc-new-beige .tbc-accordion-item.closed .acc-top .icons .fa-plus {
  display: block;
}

.tbc-new-beige .tbc-accordion-item .acc-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  min-height: 65px;
  padding: 16px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .tbc-accordion-item .acc-top {
    min-height: 60px;
    padding: 13px 0;
  }
}

.tbc-new-beige .tbc-accordion-item .acc-top .title {
  padding-right: 10px;
}

.tbc-new-beige .tbc-accordion-item .acc-top .title p {
  font-size: 18px;
  line-height: 22px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .tbc-accordion-item .acc-top .title p {
    font-size: 16px;
    line-height: 20px;
  }
}

.tbc-new-beige .tbc-accordion-item .acc-top .icons i {
  font-size: 22px;
  color: #ddc4b2;
}

.tbc-new-beige .tbc-accordion-item .acc-top .icons .fa-minus {
  display: block;
}

.tbc-new-beige .tbc-accordion-item .acc-top .icons .fa-plus {
  display: none;
}

.tbc-new-beige .tbc-accordion-item .acc-btm {
  display: none;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  padding-bottom: 16px;
}

.tbc-new-beige .tbc-accordion-item .acc-btm p {
  font-size: 16px;
  line-height: 28px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .tbc-accordion-item .acc-btm p {
    font-size: 14px;
    line-height: 26px;
  }
}

.tbc-new-beige .section-schedule-btm {
  position: relative;
  padding-top: 60px;
  height: 750px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-beige .section-schedule-btm {
    padding-top: 20px;
    height: 600px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-schedule-btm {
    height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-schedule-btm {
    height: auto;
    padding-bottom: 400px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-schedule-btm {
    padding-top: 0;
  }
}

.tbc-new-beige .section-schedule-btm .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 90%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .tbc-new-beige .section-schedule-btm .background {
    background-position-x: 65%;
  }
}

.tbc-new-beige .section-schedule-btm .background .grad-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-schedule-btm .background .grad-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e3cfc0, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-schedule-btm .container {
  max-width: 890px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-schedule-btm .container {
    max-width: 850px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-schedule-btm .container {
    max-width: 700px;
  }
}

.tbc-new-beige .section-schedule-btm .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-schedule-btm .content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-schedule-btm .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

.tbc-new-beige .section-pricing {
  padding: 105px 50px 125px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-pricing {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing {
    padding-top: 75px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-pricing {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .section-pricing .container-1 {
  max-width: 1000px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .container-1 {
    max-width: 500px;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-beige .section-pricing .container-1 {
    margin-bottom: 20px;
  }
}

.tbc-new-beige .section-pricing .container-2 {
  max-width: 560px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .container-2 {
    max-width: 470px;
  }
}

.tbc-new-beige .section-pricing .content-1 {
  margin-bottom: 24px;
  text-align: center;
}

.tbc-new-beige .section-pricing .price-items .price-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin: 18px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .price-items .price-item {
    margin: 16px 0;
  }
}

.tbc-new-beige .section-pricing .price-items .price-item.animate>div:nth-child(1) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-beige .section-pricing .price-items .price-item.animate>div:nth-child(2) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(1) {
  position: relative;
  left: -60px;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #213f48;
  padding-right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 550px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 16px;
    width: calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: -o-calc(100% - 110px);
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 14px;
    width: calc(100% - 91px);
    width: -moz-calc(100% - 91px);
    width: -webkit-calc(100% - 91px);
    width: -o-calc(100% - 91px);
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 13px;
    padding-right: 0;
  }
}

.tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(1) i {
  vertical-align: super;
  color: #ddc4b2;
}

.tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(2) {
  position: relative;
  left: 60px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 18px;
  line-height: 1.3em;
  color: #9c9c9c;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 16px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-beige .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 12px;
  }
}

.tbc-new-beige .section-pricing .price-items .price-item:hover>div {
  color: #caa388;
}

.tbc-new-beige .section-pricing .total-price {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 18px 0;
  margin-top: 35px;
}

.tbc-new-beige .section-pricing .total-price::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: -3%;
  width: 106%;
  height: 1px;
  background: #9c9c9c;
}

.tbc-new-beige .section-pricing .total-price>div:nth-child(1) {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #213f48;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .total-price>div:nth-child(1) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-beige .section-pricing .total-price>div:nth-child(1) {
    font-size: 7vw;
  }
}

.tbc-new-beige .section-pricing .total-price>div:nth-child(2) {
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ddc4b2;
  position: relative;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .total-price>div:nth-child(2) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-beige .section-pricing .total-price>div:nth-child(2) {
    font-size: 7vw;
  }
}

.tbc-new-beige .section-pricing .value {
  margin-top: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 34px;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .value {
    font-size: 22px;
    line-height: 30px;
  }
}

.tbc-new-beige .section-pricing .per-month {
  margin-top: 35px;
  background: white;
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 25px 15px;
  text-align: center;
}

.tbc-new-beige .section-pricing .per-month>div:nth-child(1) {
  font-size: 158px;
  line-height: 160px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-pricing .per-month>div:nth-child(1) {
    font-size: 118px;
    line-height: 120px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-beige .section-pricing .per-month>div:nth-child(1) {
    font-size: 100px;
    line-height: 102px;
  }
}

.tbc-new-beige .section-pricing .per-month>div:nth-child(2) {
  margin-top: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #9c9c9c;
}

@media screen and (max-width: 450px) {
  .tbc-new-beige .section-pricing .per-month>div:nth-child(2) {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}

.tbc-new-beige .section-work {
  padding-bottom: 130px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-work {
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-beige .section-work {
    padding-bottom: 70px;
  }
}

.tbc-new-beige .section-work .right-side .content {
  max-width: 800px;
  padding-right: 0;
}

.tbc-new-beige .section-order {
  padding: 100px 50px 180px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-order {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-beige .section-order {
    padding-top: 80px;
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-beige .section-order {
    padding-top: 65px;
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order {
    padding-bottom: 210px;
  }
}

.tbc-new-beige .section-order .container {
  max-width: 1600px;
}

.tbc-new-beige .section-order .content-1 {
  text-align: center;
  margin-bottom: 40px;
}

.tbc-new-beige .section-order .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .tbc-new-beige .section-order .cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-beige .section-order .cols.animated .col-1,
.tbc-new-beige .section-order .cols.animated .col-2,
.tbc-new-beige .section-order .cols.animated .col-3 {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1250px) {
  .tbc-new-beige .section-order .cols {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-beige .section-order .cols {
    max-width: 500px;
  }
}

.tbc-new-beige .section-order .cols .col-1 {
  left: -100px;
}

.tbc-new-beige .section-order .cols .col-1,
.tbc-new-beige .section-order .cols .col-3 {
  width: 27%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  left: -100px;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

@media screen and (max-width: 1250px) {

  .tbc-new-beige .section-order .cols .col-1,
  .tbc-new-beige .section-order .cols .col-3 {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 48.5%;
  }
}

@media screen and (max-width: 800px) {

  .tbc-new-beige .section-order .cols .col-1,
  .tbc-new-beige .section-order .cols .col-3 {
    width: 100%;
  }
}

.tbc-new-beige .section-order .cols .col-2 {
  width: 40%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  top: 100px;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
  -o-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-beige .section-order .cols .col-2 {
    width: 41.8%;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-beige .section-order .cols .col-2 {
    margin-top: 30px;
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-ordinal-group: 3;
    -ms-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
}

.tbc-new-beige .section-order .cols .col-3 {
  left: 100px;
}

.tbc-new-beige .section-order a.order-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
}

.tbc-new-beige .section-order a.order-cell:hover::before {
  opacity: 0.9;
}

.tbc-new-beige .section-order .order-cell {
  display: block;
  position: relative;
  width: 100%;
  background: white;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  margin-bottom: 20px;
  color: #213f48;
}

.tbc-new-beige .section-order .order-cell:last-child {
  margin-bottom: 0;
}

.tbc-new-beige .section-order .order-cell .color-primary {
  color: #ddc4b2;
}

.tbc-new-beige .section-order .order-cell .extra-bold {
  font-weight: 900;
}

.tbc-new-beige .section-order .order-cell>* {
  position: relative;
  z-index: 10;
}

.tbc-new-beige .section-order .order-cell.cell-type-text-sm,
.tbc-new-beige .section-order .order-cell.cell-type-text-lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 83px;
  padding: 16px 18px;
}

.tbc-new-beige .section-order .order-cell.cell-type-text-lg>div {
  font-size: 28px;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-cell.cell-type-text-lg>div {
    font-size: 24px;
  }
}

.tbc-new-beige .section-order .order-cell.cell-type-img {
  padding: 20px;
}

.tbc-new-beige .section-order .order-cell.cell-type-img img {
  width: 90%;
  margin: 0 auto;
  height: auto;
}

.tbc-new-beige .section-order .order-cell.cell-bbb {
  min-height: 178px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .section-order .order-cell.cell-bbb img {
  max-width: 300px;
}

.tbc-new-beige .section-order .order-cell.cell-trustpilot {
  min-height: 177px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .section-order .order-cell.cell-trustpilot img {
  max-width: 280px;
}

.tbc-new-beige .section-order .order-cell.cell-media {
  min-height: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .section-order .order-cell.cell-year>div {
  width: 85%;
  max-width: 270px;
  font-size: 18px;
  line-height: 28px;
}

.tbc-new-beige .section-order .order-cell.cell-advocacy>div {
  max-width: 301px;
}

.tbc-new-beige .section-order .order-cell.cell-tstm {
  text-align: left;
  padding: 20px;
}

.tbc-new-beige .section-order .order-cell.cell-tstm>div:nth-child(1) {
  font-size: 14px;
  line-height: 24px;
}

.tbc-new-beige .section-order .order-cell.cell-tstm>div:nth-child(2) {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-beige .section-order .order-cell.cell-tstm>div:nth-child(2)>span:nth-child(2) {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #ddc4b2;
}

.tbc-new-beige .section-order .order-card {
  display: block;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-top: 16px solid #ddc4b2;
  border-radius: 9px;
  text-align: center;
  padding: 32px 28px 0 28px;
}

.tbc-new-beige .section-order .order-card .title {
  font-size: 28px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  .tbc-new-beige .section-order .order-card .title {
    font-size: 24px;
  }
}

.tbc-new-beige .section-order .order-card .list-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 15px auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .list-items {
    max-width: 300px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.tbc-new-beige .section-order .order-card .list-items>div {
  text-align: left;
  font-size: 16px;
  margin-bottom: 9px;
}

.tbc-new-beige .section-order .order-card .list-items>div i {
  color: #ddc4b2;
  margin-right: 5px;
}

.tbc-new-beige .section-order .order-card .list-items>div:nth-child(even) {
  width: 180px;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .list-items>div:nth-child(even) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-beige .section-order .order-card .list-items>div:nth-child(odd) {
  width: 235px;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .list-items>div:nth-child(odd) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-beige .section-order .order-card .price {
  font-size: 85px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 500px) {
  .tbc-new-beige .section-order .order-card .price {
    font-size: 70px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-beige .section-order .order-card .price>span {
    display: none;
  }
}

.tbc-new-beige .section-order .order-card .price-per {
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #9c9c9c;
  font-size: 13px;
  margin-bottom: 10px;
}

.tbc-new-beige .section-order .order-card .btm-container {
  position: relative;
  z-index: 20;
  width: 90%;
  max-width: 480px;
  margin: 25px auto 0 auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .btm-container .select-items {
    margin-bottom: -20px;
  }
}

.tbc-new-beige .section-order .order-card .btm-container .select-items .select-item {
  position: relative;
  margin-bottom: 15px;
}

.tbc-new-beige .section-order .order-card .btm-container .select-items .select-item select {
  display: block;
  color: #213f48;
  border-radius: 9px;
  border: none;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 1.1em 17px;
  height: auto;
}

.tbc-new-beige .section-order .order-card .btm-container .select-items .select-item i {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 15px;
  font-size: 20px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-beige .section-order .order-card .btm-container .select-items .select-item i:hover {
  color: #213f48;
}

.tbc-new-beige .section-order .order-card .btm-container .order-btn {
  cursor: pointer;
  position: relative;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  background: #ddc4b2;
  border-radius: 9px;
  padding: 22px 20px;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .btm-container .order-btn {
    padding: 18px;
  }
}

.tbc-new-beige .section-order .order-card .btm-container .order-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.tbc-new-beige .section-order .order-card .btm-container .order-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: black;
}

.tbc-new-beige .section-order .order-card .btm-container .order-btn:hover::after {
  opacity: 0.1;
}

.tbc-new-beige .section-order .order-card .btm-container .order-btn>div {
  position: relative;
  z-index: 10;
  font-size: 28px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: white;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .btm-container .order-btn>div {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-beige .section-order .order-card .btm-container .order-btn>div {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.tbc-new-beige .section-order .order-card .order-links {
  position: absolute;
  z-index: 10;
  padding-top: 60px;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .order-links {
    padding-top: 70px;
  }
}

.tbc-new-beige .section-order .order-card .order-links>* {
  font-size: 13px;
  color: #9c9c9c;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .order-links>* {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.tbc-new-beige .section-order .order-card .order-links a:hover {
  color: #213f48;
}

.tbc-new-beige .section-order .order-card .order-links .sep {
  margin: 0 10px;
}

@media screen and (max-width: 540px) {
  .tbc-new-beige .section-order .order-card .order-links .sep {
    display: none;
  }
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_video"] .inner-1 {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 {
  max-width: 960px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 .inner-2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .content-1 {
  margin-bottom: 25px;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
    width: 100%;
    margin-bottom: 30px;
  }
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
    width: 100%;
  }
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content i {
  color: #ddc4b2;
  margin-right: 8px;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>* {
  margin-bottom: 7px;
}

.tbc-new-beige .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-beige .section-signature {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tbc-new-beige .section-signature::before {
  content: '';
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 75%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-beige .section-signature .background-image {
  z-index: 5;
}

.tbc-new-beige .section-signature .container {
  z-index: 20;
  max-width: 700px;
}

.tbc-new-beige .section-signature .container .content {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .section-signature .container .content {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .section-signature .container .content .img {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
  margin-top: -8px;
}

.tbc-new-beige .section-signature .container .content>* {
  margin-bottom: 18px;
}

.tbc-new-beige .section-signature .container .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-beige .tbc-lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: none;
  padding: 120px 40px 60px 40px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .tbc-lightbox {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .tbc-lightbox.lb-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-beige .tbc-lightbox>.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: black;
  opacity: 0.4;
}

.tbc-new-beige .tbc-lightbox .inner-1 {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 900px;
  margin: auto auto;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-top: 16px solid #ddc4b2;
  overflow-y: auto;
  padding-top: 45px;
  padding-bottom: 55px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 700px) {
  .tbc-new-beige .tbc-lightbox .inner-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-beige .tbc-lightbox .inner-1>.close {
  position: absolute;
  top: 0;
  right: 0;
}

.tbc-new-beige .tbc-lightbox .inner-1>.close i {
  cursor: pointer;
  font-size: 20px;
  padding: 10px 20px;
}

.tbc-new-beige .tbc-lightbox .inner-1>.close i:hover {
  color: #ddc4b2;
}

.tbc-new-beige *[data-lightbox-open] {
  cursor: pointer;
}

.tbc-new-red .background-image {
  background-color: #213f48;
}

.tbc-new-red .section-hero {
  position: relative;
  overflow: hidden;
  background-color: #213f48;
}

.tbc-new-red .section-hero::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 32%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-hero::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 9;
  left: 0;
  width: 60%;
  top: 0;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=black, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-hero .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 110%;
}

@media screen and (max-width: 800px) {
  .tbc-new-red .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-red .section-hero .background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.08;
}

@media screen and (max-width: 800px) {
  .tbc-new-red .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-red .section-hero .v-container {
  position: relative;
  z-index: 15;
  height: calc(100vh - 10px);
  height: -moz-calc(100vh - 10px);
  height: -webkit-calc(100vh - 10px);
  height: -o-calc(100vh - 10px);
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 600px) {}

.tbc-new-red .section-hero .container {
  max-width: 1700px;
}

.tbc-new-red .section-hero .content {
  width: 100%;
  max-width: 900px;
}

.tbc-new-red .section-hero .content h1,
.tbc-new-red .section-hero .content h2 {
  font-size: 70px;
  line-height: 80px;
}

.tbc-new-red .section-hero .content h1 strong,
.tbc-new-red .section-hero .content h2 strong {
  font-weight: 700;
}

.tbc-new-red .section-hero .content>* {
  color: white;
}

@media screen and (max-width: 1700px) {
  .tbc-new-red .section-hero .content {
    max-width: 800px;
  }

  .tbc-new-red .section-hero .content h1,
  .tbc-new-red .section-hero .content h2 {
    font-size: 62px;
    line-height: 72px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-hero .content {
    max-width: 600px;
  }

  .tbc-new-red .section-hero .content h1,
  .tbc-new-red .section-hero .content h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-hero .content {
    max-width: 500px;
  }

  .tbc-new-red .section-hero .content h1,
  .tbc-new-red .section-hero .content h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

.tbc-new-red .section-logos {
  padding-top: 90px;
  padding-bottom: 90px;
}

.tbc-new-red .section-logos .container {
  width: 75%;
  max-width: 1170px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-logos .container {
    width: 92%;
    max-width: 520px;
  }
}

.tbc-new-red .section-logos .content {
  text-align: center;
  margin-bottom: 10px;
}

.tbc-new-red .section-logos .logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-logos .logos {
    margin-top: 30px;
  }
}

.tbc-new-red .section-logos .logos>a {
  display: block;
  width: 12.5%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-logos .logos>a {
    width: 33%;
    padding: 0 6%;
    margin-bottom: 10px;
  }
}

.tbc-new-red .section-logos .logos>a:hover img {
  filter: grayscale(0);
}

.tbc-new-red .section-logos .logos>a>img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(90);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.tbc-new-red .section-success {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 590px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-success {
    min-height: 0;
  }
}

.tbc-new-red .section-success .grad {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: #f5f5f5;
}

.tbc-new-red .section-success .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1450px;
}

.tbc-new-red .section-success .container .left-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .left-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-success .container .left-side {
    width: 100%;
  }
}

.tbc-new-red .section-success .container .left-side .content {
  text-align: right;
  padding-right: 16%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .left-side .content {
    padding-right: 12%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-success .container .left-side .content {
    padding-right: 10%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-success .container .left-side .content {
    padding: 0 6%;
    text-align: center;
    margin-bottom: 50px;
  }
}

.tbc-new-red .section-success .container .left-side .content .title {
  font-weight: 300;
  font-size: 58px;
  line-height: 66px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .left-side .content .title {
    font-size: 50px;
    line-height: 58px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-success .container .left-side .content .title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-success .container .left-side .content .title {
    font-size: 32px;
    line-height: 48px;
  }
}

.tbc-new-red .section-success .container .right-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .right-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-success .container .right-side {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-success .container .right-side .inner {
    text-align: center;
  }
}

.tbc-new-red .section-success .container .right-side .inner .right-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 320px;
  line-height: 0.73em;
  font-weight: 800;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tbc-new-red .section-success .container .right-side .inner .right-top span {
  font-size: 0.6em;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .right-side .inner .right-top {
    font-size: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-success .container .right-side .inner .right-top {
    font-size: 200px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-success .container .right-side .inner .right-top {
    font-size: 160px;
  }
}

.tbc-new-red .section-success .container .right-side .inner .right-btm {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-success .container .right-side .inner .right-btm {
    font-size: 44px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-success .container .right-side .inner .right-btm {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-success .container .right-side .inner .right-btm {
    font-size: 24px;
  }
}

.tbc-new-red .section-mort {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#4a372a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(100deg, #000000 0%, #450000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(100deg, #000000 0%, #450000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(100deg, #000000 0%, #450000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#450000, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-mort {
    background: none;
  }
}

.tbc-new-red .section-mort .left-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-mort .left-side {
    width: 43%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-mort .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, #000000 0%, #000000 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000000 0%, #000000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000000 0%, #000000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#000000, GradientType=1);
    /* IE6-9 */
    background: linear-gradient(90deg, #000000 0%, #000000 69%) !important;
  }
}

.tbc-new-red .section-mort .left-side img {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 92%;
  width: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-mort .left-side img {
    left: 56%;
    height: 90%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-mort .left-side img {
    height: 88%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-mort .left-side img {
    display: block;
    margin: 0 auto;
    position: relative;
    left: auto;
    width: 700px;
    max-width: 100%;
    margin-top: 50px;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-red .section-mort .left-side img {
    margin-top: 40px;
    -webkit-transform: translateX(2%);
    -ms-transform: translateX(2%);
    transform: translateX(2%);
  }
}

.tbc-new-red .section-mort .right-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding-top: 70px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 680px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-mort .right-side {
    min-height: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-mort .right-side {
    width: 57%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-mort .right-side {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-red .section-mort .right-side .content {
  width: 85%;
  max-width: 600px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-mort .right-side .content {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-mort .right-side .content {
    margin: 0 auto;
  }

  .tbc-new-red .section-mort .right-side .content>* {
    color: #213f48;
  }
}

.tbc-new-red .section-countdown {
  padding: 90px 0;
}

.tbc-new-red .section-countdown .container {
  text-align: center;
  max-width: 750px;
}

.tbc-new-red .section-countdown .line-1 {
  text-transform: uppercase;
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tbc-new-red .section-countdown .line-2 {
  margin-bottom: 27px;
}

.tbc-new-red .section-countdown .dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 25px;
}

.tbc-new-red .section-countdown .dates .date-item {
  width: 106px;
  height: 121px;
  margin: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-countdown .dates .date-item {
    width: 90px;
    height: 100px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-red .section-countdown .dates .date-item {
    width: 68px;
    height: 82px;
    margin: 0 5px;
  }
}

.tbc-new-red .section-countdown .dates .date-item .amt {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-countdown .dates .date-item .amt {
    font-size: 40px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-red .section-countdown .dates .date-item .amt {
    font-size: 32px;
  }
}

.tbc-new-red .section-countdown .dates .date-item .measure {
  width: 100%;
  text-align: center;
  color: #9c9c9c;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-countdown .dates .date-item .measure {
    font-size: 12px;
  }
}

.tbc-new-red .section-tstm-left .content-wrap .content {
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-red .section-tstm-left .container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-red .section-tstm-left .container-2 .btn-wrap {
  text-align: left;
}

.tbc-new-red .section-tstm-right .content-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-red .section-tstm-right .content-wrap .content {
  left: -67px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-tstm-right .content-wrap .content {
    left: -50px;
  }
}

.tbc-new-red .section-tstm-right .img-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-red .section-tstm-right .container-2 .btn-wrap {
  text-align: right;
}

.tbc-new-red .section-tstm-left,
.tbc-new-red .section-tstm-right {
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-tstm-left,
  .tbc-new-red .section-tstm-right {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.tbc-new-red .section-tstm-left .container-1,
.tbc-new-red .section-tstm-right .container-1,
.tbc-new-red .section-tstm-left .container-2,
.tbc-new-red .section-tstm-right .container-2 {
  max-width: 1530px;
}

.tbc-new-red .section-tstm-left .container-1,
.tbc-new-red .section-tstm-right .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-red .section-tstm-left .container-2,
.tbc-new-red .section-tstm-right .container-2 {
  margin-top: 40px;
}

.tbc-new-red .section-tstm-left .container-2 .btn-wrap,
.tbc-new-red .section-tstm-right .container-2 .btn-wrap {
  width: 56%;
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .container-2 .btn-wrap,
  .tbc-new-red .section-tstm-right .container-2 .btn-wrap {
    width: 100%;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-tstm-left .container-2 .text-btn a,
  .tbc-new-red .section-tstm-right .container-2 .text-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .container-2,
  .tbc-new-red .section-tstm-right .container-2 {
    margin-top: 0;
  }
}

.tbc-new-red .section-tstm-left .img-wrap,
.tbc-new-red .section-tstm-right .img-wrap {
  position: relative;
  overflow: visible;
  z-index: 5;
  width: 56%;
  height: 620px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-red .section-tstm-left .img-wrap,
  .tbc-new-red .section-tstm-right .img-wrap {
    height: 550px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-tstm-left .img-wrap,
  .tbc-new-red .section-tstm-right .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .img-wrap,
  .tbc-new-red .section-tstm-right .img-wrap {
    height: 400px;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-red .section-tstm-left .img-wrap,
  .tbc-new-red .section-tstm-right .img-wrap {
    height: 70vw;
  }
}

.tbc-new-red .section-tstm-left .img-wrap .background-image,
.tbc-new-red .section-tstm-right .img-wrap .background-image {
  filter: hue-rotate(12deg) saturate(20%);
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .img-wrap .background-image,
  .tbc-new-red .section-tstm-right .img-wrap .background-image {
    left: 0;
    right: auto;
    width: calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: -o-calc(100% - 30px);
  }
}

.tbc-new-red .section-tstm-left .content-wrap,
.tbc-new-red .section-tstm-right .content-wrap {
  position: relative;
  z-index: 10;
  width: 44%;
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .content-wrap,
  .tbc-new-red .section-tstm-right .content-wrap {
    width: 100%;
    padding-left: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-red .section-tstm-left .content-wrap .content,
.tbc-new-red .section-tstm-right .content-wrap .content {
  position: relative;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 420px;
  padding: 12% 10%;
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-red .section-tstm-left .content-wrap .content>*,
.tbc-new-red .section-tstm-right .content-wrap .content>* {
  width: 100%;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1600px) {

  .tbc-new-red .section-tstm-left .content-wrap .content,
  .tbc-new-red .section-tstm-right .content-wrap .content {
    padding: 10% 10%;
    min-height: 370px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-tstm-left .content-wrap .content,
  .tbc-new-red .section-tstm-right .content-wrap .content {
    width: calc(100% + 50px);
    width: -moz-calc(100% + 50px);
    width: -webkit-calc(100% + 50px);
    width: -o-calc(100% + 50px);
    min-height: 300px;
    padding: 55px 50px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-red .section-tstm-left .content-wrap .content,
  .tbc-new-red .section-tstm-right .content-wrap .content {
    position: relative;
    top: -30px;
    width: 100%;
    left: 0;
    min-height: 330px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-red .section-tstm-left .content-wrap .content,
  .tbc-new-red .section-tstm-right .content-wrap .content {
    padding: 50px 30px;
  }
}

.tbc-new-red .section-tstm-left .content-wrap .content .quot,
.tbc-new-red .section-tstm-right .content-wrap .content .quot {
  position: absolute;
  top: 47px;
  left: 36px;
  width: 21%;
  height: auto;
  z-index: 2;
}

.tbc-new-red .section-tstm-left .content-wrap .content p,
.tbc-new-red .section-tstm-right .content-wrap .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-red .section-tstm-left .content-wrap .content p,
  .tbc-new-red .section-tstm-right .content-wrap .content p {
    font-size: 22px;
    line-height: 34px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-tstm-left .content-wrap .content p,
  .tbc-new-red .section-tstm-right .content-wrap .content p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-red .section-tstm-left .content-wrap .content p,
  .tbc-new-red .section-tstm-right .content-wrap .content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.tbc-new-red .section-tstm-left .content-wrap .content .tstm-by,
.tbc-new-red .section-tstm-right .content-wrap .content .tstm-by {
  padding-top: 4px;
  margin-bottom: 3px;
}

.tbc-new-red .section-help {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 20;
  background: white;
}

@media screen and (max-width: 1400px) {
  .tbc-new-red .section-help {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-help {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-help {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.tbc-new-red .section-help .content-container {
  max-width: 1250px;
}

.tbc-new-red .section-help .img-container {
  max-width: 1600px;
}

.tbc-new-red .section-help .img-container img {
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-red .section-help .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-help .content-1 {
    margin-bottom: 12px;
  }
}

.tbc-new-red .section-help .content-2 {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-help .content-2 {
    margin-bottom: 22px;
  }
}

.tbc-new-red .section-help .content-2 p {
  font-size: 36px;
  line-height: 46px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-help .content-2 p {
    font-size: 32px;
    line-height: 42px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-help .content-2 p {
    font-size: 22px;
    line-height: 32px;
  }
}

.tbc-new-red .section-help-2 {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-help-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-help-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-red .section-help-2 .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-help-2 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 1600px;
}

.tbc-new-red .section-help-2 .left-side {
  width: 47%;
  padding-right: 5%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-help-2 .left-side {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
}

.tbc-new-red .section-help-2 .left-side .content {
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-help-2 .left-side .content {
    text-align: left;
  }
}

@media screen and (max-width: 1400px) {
  .tbc-new-red .section-help-2 .left-side .content h2 {
    font-size: 34px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-help-2 .left-side .content h2 br {
    display: none;
  }
}

.tbc-new-red .section-help-2 .right-side {
  width: 53%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-help-2 .right-side {
    width: 100%;
  }
}

.tbc-new-red .section-tragedy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.tbc-new-red .section-tragedy .left-side {
  position: relative;
  z-index: 10;
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tragedy .left-side {
    width: 100%;
    height: 550px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .left-side {
    height: 400px;
  }
}

.tbc-new-red .section-tragedy .left-side .img {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #bea18c;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tragedy .left-side .img {
    width: 100%;
  }
}

.tbc-new-red .section-tragedy .right-side .right-top .content-1,
.tbc-new-red .section-tragedy .tragedy-items .item .item-right .content {
  width: 92%;
  max-width: 700px;
}

.tbc-new-red .section-tragedy .right-side {
  position: relative;
  z-index: 20;
  width: 55%;
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tragedy .right-side {
    width: 100%;
    background: white;
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tragedy .right-side {
    padding-bottom: 20px;
  }
}

.tbc-new-red .section-tragedy .right-side .right-top {
  padding-left: 187px;
  margin-top: 10px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tragedy .right-side .right-top {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .right-side .right-top {
    padding-left: 100px;
  }
}

.tbc-new-red .section-tragedy .right-side .right-top .content-1 {
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .right-side .right-top .content-1 {
    padding-right: 18px;
  }
}

.tbc-new-red .section-tragedy .right-side .right-top .content-1 h2 {
  margin-bottom: 5px;
}

.tbc-new-red .section-tragedy .right-side .right-top .content-1 .tagline {
  font-size: 26px;
}

.tbc-new-red .section-tragedy .tragedy-items .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 50px;
}

.tbc-new-red .section-tragedy .tragedy-items .item:first-child .item-left::after {
  top: 50%;
}

.tbc-new-red .section-tragedy .tragedy-items .item:last-child .item-left::after {
  bottom: 50%;
}

.tbc-new-red .section-tragedy .tragedy-items .item .item-left {
  position: relative;
  padding-left: 50px;
  padding-right: 35px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .tragedy-items .item .item-left {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tbc-new-red .section-tragedy .tragedy-items .item .item-left::after {
  content: '';
  display: block;
  width: 2px;
  position: absolute;
  z-index: 5;
  left: 100px;
  top: 0;
  bottom: -50px;
  background: #ddc4b2;
  background: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .tragedy-items .item .item-left::after {
    left: 49px;
  }
}

.tbc-new-red .section-tragedy .tragedy-items .item .item-left .inner {
  position: relative;
  z-index: 10;
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-radius: 99px;
  background: white;
  border: 2px solid #ddc4b2;
  font-size: 14px;
  border-color: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .tragedy-items .item .item-left .inner {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
}

.tbc-new-red .section-tragedy .tragedy-items .item .item-right {
  width: calc(100% - 187px);
  width: -moz-calc(100% - 187px);
  width: -webkit-calc(100% - 187px);
  width: -o-calc(100% - 187px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tragedy .tragedy-items .item .item-right {
    width: calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -o-calc(100% - 100px);
  }
}

.tbc-new-red .section-tragedy .tragedy-items .item .item-right .content {
  width: 100%;
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tragedy .tragedy-items .item .item-right .content {
    padding-right: 18px;
  }
}

.tbc-new-red .section-type-split-left-1 {
  position: relative;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
}

.tbc-new-red .section-type-split-left-1 .left-side {
  width: 39%;
  position: relative;
  z-index: 20;
  overflow: visible;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-type-split-left-1 .left-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-type-split-left-1 .left-side {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-red .section-type-split-left-1 .left-side .background-image {
  top: -60px;
  bottom: 0;
  height: auto;
}

@media screen and (max-width: 1300px) {
  .tbc-new-red .section-type-split-left-1 .left-side .background-image {
    top: -50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-type-split-left-1 .left-side .background-image {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    padding-bottom: 100%;
  }
}

.tbc-new-red .section-type-split-left-1 .right-side {
  position: relative;
  z-index: 10;
  width: 61%;
  min-height: 660px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-type-split-left-1 .right-side {
    min-height: 580px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-red .section-type-split-left-1 .right-side {
    min-height: 500px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-type-split-left-1 .right-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-type-split-left-1 .right-side {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    width: 100%;
    padding-top: 300px;
    margin-top: -250px;
    padding-bottom: 0;
  }
}

.tbc-new-red .section-type-split-left-1 .right-side::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: white;
}

.tbc-new-red .section-type-split-left-1 .right-side .grad {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-type-split-left-1 .right-side .content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-red .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 0;
  }
}

.tbc-new-red .section-wondering {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 95px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-wondering {
    padding-top: 70px;
  }
}

.tbc-new-red .section-wondering .container-1 {
  text-align: center;
  max-width: 1150px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-wondering .container-1 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-wondering .container-1 {
    margin-bottom: 45px;
  }
}

.tbc-new-red .section-wondering .container-2 {
  max-width: 1475px;
  padding-left: 18px;
  padding-right: 18px;
}

.tbc-new-red .section-wondering .container-3 {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 1250px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-wondering .container-3 {
    padding-top: 100px;
    max-width: 1100px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-wondering .container-3 {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.tbc-new-red .section-wondering .container-3 .content p {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-wondering .container-3 .content p {
    font-size: 21px;
    line-height: 30px;
  }
}

.tbc-new-red .section-wondering .wondering-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-wondering .wondering-cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-red .section-wondering .wondering-cards .card-item {
  position: relative;
  width: 18.4%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  border-top: 17px solid #ddc4b2;
  height: 300px;
  margin-bottom: 28px;
  cursor: pointer;
  border-color: #a70e27;
}

@media screen and (max-width: 1600px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item {
    width: 18.8%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item {
    width: 265px;
    height: 290px;
    margin: 0 12px 24px 12px;
  }
}

.tbc-new-red .section-wondering .wondering-cards .card-item::before {
  content: '';
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  top: -17px;
  border-radius: 7px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

@media screen and (min-width: 1025px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item:hover::before {
    opacity: 1;
  }

  .tbc-new-red .section-wondering .wondering-cards .card-item:hover .card-inner .icon {
    top: -18px;
  }

  .tbc-new-red .section-wondering .wondering-cards .card-item:hover .card-inner .icon svg {
    fill: white;
  }

  .tbc-new-red .section-wondering .wondering-cards .card-item:hover .card-inner .btm {
    top: -18px;
  }

  .tbc-new-red .section-wondering .wondering-cards .card-item:hover .card-inner .btm .title {
    color: white;
  }

  .tbc-new-red .section-wondering .wondering-cards .card-item:hover .card-inner .btm .learn-more {
    opacity: 1;
    visibility: visible;
    color: white;
  }
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  z-index: 10;
  text-align: center;
  padding: 10%;
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .icon {
  position: relative;
  top: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .icon svg {
  fill: #ddc4b2;
  width: 117px;
  height: 110px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  fill: #a70e27;
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm {
  position: relative;
  top: 0;
  min-height: 78px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm {
    max-width: 200px;
    min-height: 75px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm {
    min-height: 66px;
    max-width: 180px;
  }
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm .title {
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 18px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 17px;
    line-height: 23px;
  }
}

.tbc-new-red .section-wondering .wondering-cards .card-item .card-inner .btm .learn-more {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tbc-new-red .tbc-lightbox.lb-wondering .inner-1 {
  max-width: 1500px;
}

.tbc-new-red .tbc-lightbox.lb-wondering .content .title {
  font-size: 32px;
  margin-bottom: 18px;
}

.tbc-new-red .tbc-lightbox.lb-wondering .content i {
  color: #bea18c;
  color: #91051a;
}

.tbc-new-red .tbc-lightbox.lb-wondering .content .how-to-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.tbc-new-red .tbc-lightbox.lb-wondering .content .how-to-items>* {
  width: 50%;
  padding-right: 15px;
  margin-bottom: 3px;
}

@media screen and (max-width: 1100px) {
  .tbc-new-red .tbc-lightbox.lb-wondering .content .how-to-items>* {
    width: 100%;
    padding-right: 0;
  }
}

.tbc-new-red .section-bottom-line {
  position: relative;
  height: 850px;
  padding-top: 135px;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-bottom-line {
    padding-top: 120px;
    height: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-bottom-line {
    padding-top: 90px;
    height: 730px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-red .section-bottom-line {
    padding-top: 60px;
    height: 620px;
  }
}

.tbc-new-red .section-bottom-line .background-image {
  z-index: 1;
  position: absolute;
  top: 20%;
  bottom: -25%;
  left: 0;
  width: 100%;
  height: initial;
}

.tbc-new-red .section-bottom-line .background-image .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 5;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-bottom-line .container {
  position: relative;
  z-index: 10;
  max-width: 1120px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-bottom-line .container {
    max-width: 900px;
  }
}

.tbc-new-red .section-bottom-line .content {
  text-align: center;
}

.tbc-new-red .section-bottom-line .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-bottom-line .content p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-red .section-bottom-line .content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.tbc-new-red .section-caution {
  position: relative;
  min-height: 730px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-caution {
    min-height: 700px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-caution {
    min-height: 620px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-caution {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.tbc-new-red .section-caution .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-caution .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1380px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-caution .container {
    max-width: 1170px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-caution .container {
    max-width: 1000px;
  }
}

.tbc-new-red .section-caution .container .left-side {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-caution .container .left-side {
    width: 100%;
  }
}

.tbc-new-red .section-caution .container .left-side .caution {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.26em;
  margin-bottom: 10px;
}

.tbc-new-red .section-caution .container .left-side .caution .icon svg {
  width: 24px;
  height: 24px;
}

.tbc-new-red .section-caution .container .right-side {
  width: 42%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-caution .container .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-caution .container .right-side {
    display: none;
  }
}

.tbc-new-red .section-caution .container .right-side svg {
  fill: #ddc4b2;
  fill: #a70e27;
}

.tbc-new-red .section-media {
  margin-top: 60px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-media {
    margin-top: 0;
  }
}

.tbc-new-red .section-media .container-1 {
  max-width: 950px;
  text-align: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-media .container-1 {
    max-width: 800px;
  }
}

.tbc-new-red .section-media .container-1 .content p {
  font-size: 18px;
  line-height: 28px;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-media .container-1 .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.tbc-new-red .section-media .container-2 {
  margin-top: 30px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-media .container-2 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-media .container-2 {
    margin-top: 25px;
    margin-bottom: 50px;
  }
}

.tbc-new-red .section-media .container-3 {
  max-width: 1050px;
  text-align: center;
  margin-bottom: 50px;
}

.tbc-new-red .section-media .container-4 {
  max-width: 950px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-media .container-4 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-media .container-4 {
    margin-bottom: 50px;
  }
}

.tbc-new-red .section-media .container-5 {
  max-width: 1050px;
  text-align: center;
  padding-bottom: 50px;
}

.tbc-new-red .section-media .media-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

.tbc-new-red .section-media .media-slider .inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
}

.tbc-new-red .section-media .media-slider .inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-red .section-media .media-slider .inner .item {
  margin: 0 32px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-media .media-slider .inner .item {
    margin: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-media .media-slider .inner .item {
    margin: 0 10px;
  }
}

.tbc-new-red .section-media .media-slider .inner .item img {
  display: block;
  width: 210px;
  height: auto;
  filter: grayscale(100);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-red .section-media .media-slider .inner .item img.js-tall {
  height: 70px;
  width: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-media .media-slider .inner .item img {
    width: 170px;
  }

  .tbc-new-red .section-media .media-slider .inner .item img.js-tall {
    height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-media .media-slider .inner .item img {
    width: 135px;
  }

  .tbc-new-red .section-media .media-slider .inner .item img.js-tall {
    height: 45px;
  }
}

.tbc-new-red .section-media .media-slider .inner .item img:hover {
  filter: grayscale(0);
}

.tbc-new-red .section-media .media-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-media .media-cards {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-red .section-media .media-cards .card-item {
  width: 46%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

@media screen and (max-width: 980px) {
  .tbc-new-red .section-media .media-cards .card-item {
    width: 47%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-media .media-cards .card-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .tbc-new-red .section-media .media-cards .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-red .section-media .media-cards .card-item .top {
  padding: 50px 0 25px 0;
}

.tbc-new-red .section-media .media-cards .card-item .top .img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 235px;
  height: 235px;
  border-radius: 999px;
  margin: 0 auto;
}

.tbc-new-red .section-media .media-cards .card-item .top .img::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  border: 7px solid #ddc4b2;
  border-radius: 999px;
  border-color: #a70e27;
}

.tbc-new-red .section-media .media-cards .card-item .btm {
  width: 90%;
  margin: 0 auto;
  min-height: 175px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-media .media-cards .card-item .btm {
    min-height: 0;
    padding-bottom: 40px;
  }
}

.tbc-new-red .section-media .media-cards .card-item .btm .title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 8px;
}

.tbc-new-red .section-media .media-cards .card-item .btm p {
  font-size: 18px;
  line-height: 26px;
}

.tbc-new-red .section-what-you-get {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 580px;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-what-you-get {
    min-height: 480px;
  }
}

.tbc-new-red .section-what-you-get .container {
  text-align: center;
  max-width: 1100px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-what-you-get .container {
    max-width: 960px;
  }
}

.tbc-new-red .section-what-you-get .container p {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 5px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-what-you-get .container p {
    font-size: 26px;
    line-height: 36px;
  }
}

.tbc-new-red .wyg-controls {
  position: fixed;
  z-index: 5000;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  padding: 28px 14px;
  background: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .wyg-controls {
    padding: 22px 9px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .wyg-controls {
    display: none;
  }
}

.tbc-new-red .wyg-controls::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
}

.tbc-new-red .wyg-controls.active {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.tbc-new-red .wyg-controls.active::before {
  opacity: 1;
}

.tbc-new-red .wyg-controls .item {
  position: relative;
  z-index: 10;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 3px solid #ddc4b2;
  margin-bottom: 15px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  cursor: pointer;
  border-color: #a70e27;
}

.tbc-new-red .wyg-controls .item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .wyg-controls .item {
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    border-width: 2px;
  }

  .tbc-new-red .wyg-controls .item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-red .wyg-controls .item:hover,
.tbc-new-red .wyg-controls .item.active {
  border: 5px solid #ddc4b2;
  border-color: #a70e27;
}

.tbc-new-red .section-tele-seminars {
  position: relative;
  min-height: 690px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-tele-seminars {
    min-height: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tele-seminars {
    min-height: 0;
  }
}

.tbc-new-red .section-tele-seminars .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #e7e7e7 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e7e7e7 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e7e7e7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e7e7e7, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .grad {
    display: none;
  }
}

.tbc-new-red .section-tele-seminars .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-red .section-tele-seminars .left-side .img-wrap {
  position: absolute;
  bottom: 0;
  left: 60%;
  overflow: visible;
  height: 95%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tele-seminars .left-side .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .left-side .img-wrap {
    padding-top: 30px;
    position: relative;
    height: 100%;
    left: 0;
  }
}

.tbc-new-red .section-tele-seminars .left-side .img-wrap img {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .left-side .img-wrap img {
    position: relative;
    display: block;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 70%;
    max-width: 370px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-red .section-tele-seminars .right-side {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 80px 0;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tele-seminars .right-side {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .right-side {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
    width: 100%;
    padding-top: 70px;
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-red .section-tele-seminars .right-side .content {
  width: 100%;
  max-width: 650px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tele-seminars .right-side .content {
    margin-left: auto;
    margin-right: auto;
    max-width: 460px;
  }
}

@media screen and (max-width: 768px) {}

.tbc-new-red .section-solutions-library {
  position: relative;
  overflow: hidden;
}

.tbc-new-red .section-solutions-library .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tbc-new-red .section-solutions-library .container {
  max-width: 1466px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: 760px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .container {
    padding-left: 90px;
    padding-right: 0;
    height: 700px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-solutions-library .container {
    padding-left: 70px;
    height: 630px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-solutions-library .container {
    padding-left: 30px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-solutions-library .container {
    height: auto;
    width: 94%;
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-red .section-solutions-library .container .left-side {
  position: relative;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .container .left-side {
    width: 42%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-solutions-library .container .left-side {
    width: 46%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-red .section-solutions-library .container .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-solutions-library .container .left-side {
    width: 100%;
    height: 450px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-red .section-solutions-library .container .right-side {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .container .right-side {
    width: 58%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-solutions-library .container .right-side {
    width: 54%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-red .section-solutions-library .container .right-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-solutions-library .container .right-side {
    display: block;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-red .section-solutions-library .container .right-side .content {
  width: 100%;
  max-width: 580px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .container .right-side .content {
    max-width: 580px;
  }
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .container .right-side .content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-solutions-library .container .right-side .content {
    width: 100%;
  }
}

.tbc-new-red .section-solutions-library .sl-slider {
  height: 100%;
}

.tbc-new-red .section-solutions-library .sl-slider .overflow-outer {
  height: 100%;
  overflow: hidden;
}

.tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
  position: relative;
  padding-top: 15px;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
  padding-left: 10px;
  padding-right: 18%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
    padding-right: 10px;
  }
}

.tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item {
  background: white;
  -webkit-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #ddc4b2;
  border-radius: 3px;
  padding: 9px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 18px;
  border-color: #a70e27;
}

.tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
  font-size: 16px;
  line-height: 24px;
  padding-right: 10px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
    font-size: 15px;
    line-height: 23px;
  }
}

.tbc-new-red .section-audio-learning {
  position: relative;
}

.tbc-new-red .section-audio-learning .background-image {
  z-index: 5;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-audio-learning .background-image {
    left: 0;
    right: auto;
    width: 105%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-audio-learning .background-image {
    width: 160%;
  }
}

.tbc-new-red .section-audio-learning .content-wrap {
  position: relative;
  z-index: 10;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: 11%;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-audio-learning .content-wrap {
    padding-left: 9%;
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-audio-learning .content-wrap {
    min-height: 600px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-audio-learning .content-wrap {
    padding-left: 6%;
    padding-right: 6%;
  }
}

.tbc-new-red .section-audio-learning .content-wrap .content {
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 50px;
  padding-right: 45px;
  width: 100%;
  max-width: 675px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-audio-learning .content-wrap .content {
    max-width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-audio-learning .content-wrap .content {
    padding: 55px 50px;
    max-width: 500px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-audio-learning .content-wrap .content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-audio-learning .content-wrap .content {
    padding: 45px 10%;
  }
}

.tbc-new-red .section-audio-learning .content-wrap .content h2 {
  font-size: 56px;
  line-height: 62px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-audio-learning .content-wrap .content h2 {
    font-size: 50px;
    line-height: 56px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-audio-learning .content-wrap .content h2 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-audio-learning .content-wrap .content h2 {
    font-size: 38px;
    line-height: 46px;
  }
}

.tbc-new-red .section-workbook {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-workbook .flex {
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-workbook .flex {
    min-height: 660px;
  }
}

.tbc-new-red .section-workbook .flex .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding: 60px 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-workbook .flex .left-side {
    width: 60%;
    padding-left: 70px;
    padding-right: 105px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-workbook .flex .left-side {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 10px 7% 60px 7%;
  }
}

.tbc-new-red .section-workbook .flex .left-side .content {
  width: 100%;
  max-width: 685px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-workbook .flex .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-red .section-workbook .flex .right-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-workbook .flex .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-workbook .flex .right-side {
    width: 100%;
    height: 500px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-workbook .flex .right-side {
    height: 400px;
  }
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3%;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .img-1 {
  position: absolute;
  z-index: 20;
  top: 14%;
  height: 52%;
  width: 100%;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .img-1 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 48%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .img-2 {
  position: absolute;
  z-index: 20;
  overflow: visible;
  top: 61%;
  height: 31%;
  width: 100%;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .img-2 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 46%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
  position: absolute;
  left: 0;
  width: 114%;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 155%;
    left: -21%;
    bottom: 2%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 98%;
    max-width: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.tbc-new-red .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 .circle-inner-2 {
  position: absolute;
  padding-bottom: 100%;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 9999px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  -webkit-transform-origin: 50% bottom;
  /* Chrome, Safari, Opera */
  -ms-transform-origin: 50% bottom;
  /* IE 9 */
  transform-origin: 50% bottom;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #e9e9e9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e9e9e9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e9e9e9, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-mic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-mic .left-side {
  position: relative;
  width: 47%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-mic .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-mic .left-side {
    width: 100%;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-red .section-mic .left-side .img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 8%;
  bottom: 8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-mic .left-side .img {
    top: 15%;
    bottom: 15%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-mic .left-side .img {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 400px;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-position: 20% 50%;
    top: auto;
    bottom: auto;
  }
}

@media screen and (max-width: 560px) {
  .tbc-new-red .section-mic .left-side .img {
    height: 60vw;
  }
}

.tbc-new-red .section-mic .right-side {
  min-height: 770px;
  width: 53%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-mic .right-side {
    min-height: 680px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-mic .right-side {
    min-height: 600px;
    width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-mic .right-side {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-mic .right-side {
    width: 100%;
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-red .section-mic .right-side .content {
  width: 100%;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-mic .right-side .content {
    max-width: 640px;
  }
}

.tbc-new-red .section-autograph {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 760px;
  padding: 90px 50px 90px 90px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #fafafa 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fafafa 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-autograph {
    padding-left: 70px;
    padding-right: 0;
    min-height: 660px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-autograph {
    padding-left: 50px;
    min-height: 600px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-autograph {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-autograph {
    padding-top: 60px;
  }
}

.tbc-new-red .section-autograph .left-side {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-autograph .left-side {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-autograph .left-side {
    width: 100%;
  }
}

.tbc-new-red .section-autograph .left-side .content {
  width: 100%;
  max-width: 660px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-autograph .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-red .section-autograph .right-side {
  position: relative;
  width: 52%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-autograph .right-side {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-autograph .right-side {
    width: 100%;
  }
}

.tbc-new-red .section-autograph .right-side .img-wrap {
  position: absolute;
  left: 50%;
  height: 100%;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-autograph .right-side .img-wrap {
    position: relative;
    left: auto;
    height: auto;
    width: 100%;
  }
}

.tbc-new-red .section-autograph .right-side .img-wrap img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 0;
  width: 460px;
  height: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-autograph .right-side .img-wrap img {
    width: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-autograph .right-side .img-wrap img {
    width: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-autograph .right-side .img-wrap img {
    width: 330px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-autograph .right-side .img-wrap img {
    margin-top: 10px;
    position: relative;
    top: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-red .section-homework {
  position: relative;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 90px 70px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-homework {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-homework {
    padding-left: 70px;
    padding-right: 30px;
    min-height: 660px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-homework {
    min-height: 575px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-homework {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-homework {
    padding: 50px 7vw;
  }
}

.tbc-new-red .section-homework .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 1370px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-homework .container {
    max-width: 1130px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-homework .container {
    max-width: 350px;
  }
}

.tbc-new-red .section-homework .container .card-item {
  min-height: 390px;
  width: 31%;
  background: white;
  padding: 50px;
  border-radius: 9px;
  border-top: 17px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-color: #a70e27;
}

.tbc-new-red .section-homework .container .card-item:nth-child(1) {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.tbc-new-red .section-homework .container .card-item:nth-child(2) {
  -webkit-transition: all 0.3s linear 0.3s;
  -moz-transition: all 0.3s linear 0.3s;
  -ms-transition: all 0.3s linear 0.3s;
  -o-transition: all 0.3s linear 0.3s;
  transition: all 0.3s linear 0.3s;
}

.tbc-new-red .section-homework .container .card-item:nth-child(3) {
  -webkit-transition: all 0.3s linear 0.6s;
  -moz-transition: all 0.3s linear 0.6s;
  -ms-transition: all 0.3s linear 0.6s;
  -o-transition: all 0.3s linear 0.6s;
  transition: all 0.3s linear 0.6s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-homework .container .card-item {
    width: 31.5%;
    padding: 50px 45px;
    min-height: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-homework .container .card-item {
    min-height: 0;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-red .section-homework .container .card-item {
    padding: 42px 30px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-homework .container .card-item {
    padding: 35px 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-homework .container .card-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .tbc-new-red .section-homework .container .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-red .section-homework .container .card-item .content {
  text-align: center;
}

.tbc-new-red .section-homework .container .card-item .content h2 {
  font-size: 39px;
  line-height: 45px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-homework .container .card-item .content h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-homework .container .card-item .content h2 {
    font-size: 28px;
    line-height: 33px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-homework .container .card-item .content p {
    line-height: 1.78em;
  }
}

.tbc-new-red .section-members-only {
  overflow: hidden;
  padding-left: 90px;
  padding-right: 90px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only {
    padding-right: 50px;
  }
}

.tbc-new-red .section-members-only .container {
  max-width: 1366px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only .container {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-members-only {
    padding-left: 0;
    padding-right: 0;
  }
}

.tbc-new-red .section-members-only .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 310px;
  padding: 60px 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only .container-1 {
    min-height: 260px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-1 {
    min-height: 0;
    padding: 60px 0 50px 0;
    max-width: 800px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-members-only .container-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .section-members-only .container-1 .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-1 .flex {
    display: block;
  }
}

.tbc-new-red .section-members-only .container-1 .flex .left-side {
  width: 410px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only .container-1 .flex .left-side {
    width: 320px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-1 .flex .left-side {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tbc-new-red .section-members-only .container-1 .flex .right-side {
  width: calc(100% - 410px);
  width: -moz-calc(100% - 410px);
  width: -webkit-calc(100% - 410px);
  width: -o-calc(100% - 410px);
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only .container-1 .flex .right-side {
    width: calc(100% - 320px);
    width: -moz-calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
    width: -o-calc(100% - 320px);
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-1 .flex .right-side {
    width: 100%;
  }
}

.tbc-new-red .section-members-only .container-1 .flex .right-side .content {
  width: 90%;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-members-only .container-1 .flex .right-side .content {
    width: 93%;
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-1 .flex .right-side .content {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-members-only .container-2 {
    max-width: 800px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-members-only .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-members-only .container-2 {
    margin-top: -20px;
    padding-bottom: 46px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.tbc-new-red .section-members-only .container-2 img {
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}

.tbc-new-red .section-type-split-left-2,
.tbc-new-red .section-type-split-right-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-type-split-left-2 .img-wrap,
.tbc-new-red .section-type-split-right-2 .img-wrap {
  position: relative;
  width: 45%;
}

@media screen and (max-width: 1024px) {

  .tbc-new-red .section-type-split-left-2 .img-wrap,
  .tbc-new-red .section-type-split-right-2 .img-wrap {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-type-split-left-2 .img-wrap .background-image,
  .tbc-new-red .section-type-split-right-2 .img-wrap .background-image {
    top: 0;
    left: 5vw;
    right: 5vw;
    bottom: 5vw;
    width: auto;
    height: auto;
    border-radius: 7px;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-type-split-left-2 .img-wrap,
  .tbc-new-red .section-type-split-right-2 .img-wrap {
    width: 100%;
    height: 80vw;
  }

  .tbc-new-red .section-type-split-left-2 .img-wrap.img-wrap,
  .tbc-new-red .section-type-split-right-2 .img-wrap.img-wrap {
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-red .section-type-split-left-2 .img-wrap,
  .tbc-new-red .section-type-split-right-2 .img-wrap {
    height: 90vw;
  }
}

.tbc-new-red .section-type-split-left-2 .content-wrap,
.tbc-new-red .section-type-split-right-2 .content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 55%;
  min-height: 760px;
}

@media screen and (max-width: 1440px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap,
  .tbc-new-red .section-type-split-right-2 .content-wrap {
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap,
  .tbc-new-red .section-type-split-right-2 .content-wrap {
    min-height: 550px;
  }
}

@media screen and (max-width: 1024px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap,
  .tbc-new-red .section-type-split-right-2 .content-wrap {
    width: 53%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap,
  .tbc-new-red .section-type-split-right-2 .content-wrap {
    background: none;
    width: 100%;
    padding-top: 11vw;
    padding-bottom: 11vw;
    min-height: 300px;
  }

  .tbc-new-red .section-type-split-left-2 .content-wrap.content-wrap,
  .tbc-new-red .section-type-split-right-2 .content-wrap.content-wrap {
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-red .section-type-split-left-2 .content-wrap .content,
.tbc-new-red .section-type-split-right-2 .content-wrap .content {
  width: 100%;
  max-width: 618px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1500px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap .content,
  .tbc-new-red .section-type-split-right-2 .content-wrap .content {
    max-width: 550px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-red .section-type-split-left-2 .content-wrap .content,
  .tbc-new-red .section-type-split-right-2 .content-wrap .content {
    padding-left: 20px;
  }
}

.tbc-new-red .section-type-split-left-2 .img-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-red .section-type-split-left-2 .content-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-red .section-privacy {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 600px;
  padding: 90px 0;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-privacy {
    min-height: 550px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-privacy {
    min-height: 500px;
  }
}

.tbc-new-red .section-privacy .grad {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d1ae96, endColorstr=#d1ae96, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=black, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-privacy .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 122%;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-privacy .background-image {
    background-position: 70% 50%;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-privacy .background-image {
    height: 132%;
  }
}

.tbc-new-red .section-privacy .container {
  padding-top: 62px;
  position: relative;
  z-index: 20;
  max-width: 1000px;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-privacy .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .section-privacy .container * {
  color: white;
}

.tbc-new-red .section-privacy .container *.text-btn a:hover,
.tbc-new-red .section-privacy .container *.text-btn span:hover {
  color: white;
  text-decoration: underline;
}

.tbc-new-red .section-privacy .container .line-1 {
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-privacy .container .line-1 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-privacy .container .line-1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.tbc-new-red .section-privacy .container .line-2 {
  font-size: 58px;
  line-height: 64px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-privacy .container .line-2 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-privacy .container .line-2 {
    font-size: 40px;
    line-height: 46px;
  }
}

.tbc-new-red .section-tracks {
  position: relative;
  z-index: 50;
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks {
    padding-top: 65px;
  }
}

.tbc-new-red .section-tracks .container {
  max-width: 860px;
}

.tbc-new-red .section-tracks .container .content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 45px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .container .content {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-tracks .container .content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .container .content h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

.tbc-new-red .section-tracks .track-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .track-cards {
    width: 100%;
    max-width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-red .section-tracks .track-cards .track-card {
  position: relative;
  top: 0;
  cursor: pointer;
  width: 47%;
  background: white;
  border-top: 17px solid #ddc4b2;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 305px;
  border-color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tracks .track-cards .track-card {
    height: 280px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .track-cards .track-card {
    width: 100%;
    margin-bottom: 20px;
    height: 230px;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .tbc-new-red .section-tracks .track-cards .track-card:hover {
    top: -10px;
    border-color: #bea18c;
    border-color: #a70e27;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover::before {
    opacity: 1;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover .inner {
    top: -25px;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover .inner i {
    color: white;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover .inner .title {
    color: white;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover .inner .extra {
    opacity: 1;
    margin-top: 7px;
  }

  .tbc-new-red .section-tracks .track-cards .track-card:hover .inner .extra p {
    color: white;
  }
}

.tbc-new-red .section-tracks .track-cards .track-card::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 17px);
  height: -moz-calc(100% + 17px);
  height: -webkit-calc(100% + 17px);
  height: -o-calc(100% + 17px);
  border-radius: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.tbc-new-red .section-tracks .track-cards .track-card:nth-child(1) .inner i {
  position: relative;
  top: -4px;
}

.tbc-new-red .section-tracks .track-cards .track-card .inner {
  position: relative;
  z-index: 10;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 80%;
  max-width: 230px;
  margin: 50px auto;
  text-align: center;
}

.tbc-new-red .section-tracks .track-cards .track-card .inner i {
  font-size: 110px;
  margin-bottom: 12px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tracks .track-cards .track-card .inner i {
    font-size: 90px;
  }
}

.tbc-new-red .section-tracks .track-cards .track-card .inner .title {
  font-size: 31px;
  line-height: 37px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-tracks .track-cards .track-card .inner .title {
    font-size: 26px;
    line-height: 31px;
  }
}

.tbc-new-red .section-tracks .track-cards .track-card .inner .extra {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .section-tracks .track-cards .track-card .inner .extra {
    display: none;
  }
}

.tbc-new-red .section-tracks .track-cards .track-card .inner .extra p {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.tbc-new-red .section-tracks .tracks-btn {
  margin-top: 36px;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .tracks-btn {
    margin-top: 20px;
  }
}

.tbc-new-red .section-tracks .tracks-btn a {
  display: block;
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 21px 20px 20px 20px;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  color: #213f48;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 16px;
  line-height: 20px;
}

.tbc-new-red .section-tracks .tracks-btn a:hover {
  background: #bea18c;
  color: white;
  background: #a70e27;
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-tracks .tracks-btn a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.18em;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-tracks .tracks-btn a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12em;
  }
}

.tbc-new-red .section-ready {
  position: relative;
  z-index: 20;
  margin-top: -160px;
  padding-top: 270px;
  padding-bottom: 110px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-ready {
    padding-top: 240px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-ready {
    margin-top: 90px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-red .section-ready {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-ready {
    padding-top: 90px;
  }
}

.tbc-new-red .section-ready .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: visible;
}

.tbc-new-red .section-ready .background img {
  position: absolute;
  z-index: 5;
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-red .section-ready .background .grad {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-ready .container {
  position: relative;
  z-index: 20;
  max-width: 1460px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-ready .container {
    max-width: 1260px;
  }
}

.tbc-new-red .section-ready .container .content {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-ready .container .content {
    max-width: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-red .section-ready .container .content {
    width: 78%;
    max-width: 700px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-ready .container .content {
    width: 100%;
  }
}

.tbc-new-red .section-schedule {
  position: relative;
  z-index: 50;
  padding-bottom: 80px;
}

.tbc-new-red .section-schedule .container {
  max-width: 870px;
}

.tbc-new-red .section-schedule .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

.tbc-new-red .section-schedule .content-2 {
  text-align: center;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.tbc-new-red .section-schedule .content-2 p {
  font-size: 21px;
  line-height: 31px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-schedule .content-2 p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-schedule .content-2 p {
    font-size: 18px;
    line-height: 28px;
  }
}

.tbc-new-red .section-schedule .schedule-table {
  margin-bottom: 45px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
  border-color: #a70e27;
}

.tbc-new-red .section-schedule .schedule-table .table-header,
.tbc-new-red .section-schedule .schedule-table .table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 0 12px;
}

@media screen and (max-width: 700px) {

  .tbc-new-red .section-schedule .schedule-table .table-header,
  .tbc-new-red .section-schedule .schedule-table .table-row {
    padding: 16px;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header:last-child,
.tbc-new-red .section-schedule .schedule-table .table-row:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.tbc-new-red .section-schedule .schedule-table .table-header>div,
.tbc-new-red .section-schedule .schedule-table .table-row>div {
  padding: 14px;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #737373;
}

@media screen and (max-width: 700px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div,
  .tbc-new-red .section-schedule .schedule-table .table-row>div {
    text-align: center;
    padding: 0;
    margin-bottom: 4px;
  }

  .tbc-new-red .section-schedule .schedule-table .table-header>div:last-child,
  .tbc-new-red .section-schedule .schedule-table .table-row>div:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(1),
.tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(1) {
  width: 48%;
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 44%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 100%;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(2),
.tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(2) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 100%;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(3),
.tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(3) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-red .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 100%;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header {
  padding-top: 5px;
  margin-bottom: -3px;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-schedule .schedule-table .table-header {
    display: none;
  }
}

.tbc-new-red .section-schedule .schedule-table .table-header>div {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.tbc-new-red .section-schedule .schedule-table .table-row:nth-child(odd) {
  background: #f7f7f7;
}

.tbc-new-red .section-schedule .schedule-table .table-row>div:nth-child(1) {
  color: #213f48;
  font-weight: 600;
}

.tbc-new-red .tbc-accordion-item {
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  margin-bottom: 20px;
  border-left: 16px solid #ddc4b2;
  padding-left: 18px;
  padding-right: 25px;
  border-color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .tbc-accordion-item {
    margin-bottom: 15px;
  }
}

.tbc-new-red .tbc-accordion-item:last-child {
  margin-bottom: 0;
}

.tbc-new-red .tbc-accordion-item.closed .acc-top .icons .fa-minus {
  display: none;
}

.tbc-new-red .tbc-accordion-item.closed .acc-top .icons .fa-plus {
  display: block;
}

.tbc-new-red .tbc-accordion-item .acc-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  min-height: 65px;
  padding: 16px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .tbc-accordion-item .acc-top {
    min-height: 60px;
    padding: 13px 0;
  }
}

.tbc-new-red .tbc-accordion-item .acc-top .title {
  padding-right: 10px;
}

.tbc-new-red .tbc-accordion-item .acc-top .title p {
  font-size: 18px;
  line-height: 22px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .tbc-accordion-item .acc-top .title p {
    font-size: 16px;
    line-height: 20px;
  }
}

.tbc-new-red .tbc-accordion-item .acc-top .icons i {
  font-size: 22px;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-red .tbc-accordion-item .acc-top .icons .fa-minus {
  display: block;
}

.tbc-new-red .tbc-accordion-item .acc-top .icons .fa-plus {
  display: none;
}

.tbc-new-red .tbc-accordion-item .acc-btm {
  display: none;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  padding-bottom: 16px;
}

.tbc-new-red .tbc-accordion-item .acc-btm p {
  font-size: 16px;
  line-height: 28px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .tbc-accordion-item .acc-btm p {
    font-size: 14px;
    line-height: 26px;
  }
}

.tbc-new-red .section-schedule-btm {
  position: relative;
  padding-top: 60px;
  height: 750px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-red .section-schedule-btm {
    padding-top: 20px;
    height: 600px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-schedule-btm {
    height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-schedule-btm {
    height: auto;
    padding-bottom: 400px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-schedule-btm {
    padding-top: 0;
  }
}

.tbc-new-red .section-schedule-btm .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 90%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .tbc-new-red .section-schedule-btm .background {
    background-position-x: 65%;
  }
}

.tbc-new-red .section-schedule-btm .background .grad-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-schedule-btm .background .grad-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e3cfc0, GradientType=1);
  /* IE6-9 */
  height: 32%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ffffff, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-schedule-btm .container {
  max-width: 890px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-schedule-btm .container {
    max-width: 850px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-schedule-btm .container {
    max-width: 700px;
  }
}

.tbc-new-red .section-schedule-btm .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-schedule-btm .content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-schedule-btm .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

.tbc-new-red .section-pricing {
  padding: 105px 50px 125px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-pricing {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing {
    padding-top: 75px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-pricing {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .section-pricing .container-1 {
  max-width: 1000px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .container-1 {
    max-width: 500px;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-red .section-pricing .container-1 {
    margin-bottom: 20px;
  }
}

.tbc-new-red .section-pricing .container-2 {
  max-width: 560px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .container-2 {
    max-width: 470px;
  }
}

.tbc-new-red .section-pricing .content-1 {
  margin-bottom: 24px;
  text-align: center;
}

.tbc-new-red .section-pricing .price-items .price-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin: 18px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .price-items .price-item {
    margin: 16px 0;
  }
}

.tbc-new-red .section-pricing .price-items .price-item.animate>div:nth-child(1) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-red .section-pricing .price-items .price-item.animate>div:nth-child(2) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-red .section-pricing .price-items .price-item>div:nth-child(1) {
  position: relative;
  left: -60px;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #213f48;
  padding-right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 550px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 16px;
    width: calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: -o-calc(100% - 110px);
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 14px;
    width: calc(100% - 91px);
    width: -moz-calc(100% - 91px);
    width: -webkit-calc(100% - 91px);
    width: -o-calc(100% - 91px);
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 13px;
    padding-right: 0;
  }
}

.tbc-new-red .section-pricing .price-items .price-item>div:nth-child(1) i {
  vertical-align: super;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-red .section-pricing .price-items .price-item>div:nth-child(2) {
  position: relative;
  left: 60px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 18px;
  line-height: 1.3em;
  color: #9c9c9c;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 16px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-red .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 12px;
  }
}

.tbc-new-red .section-pricing .price-items .price-item:hover>div {
  color: #caa388;
  color: #a70e27;
}

.tbc-new-red .section-pricing .total-price {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 18px 0;
  margin-top: 35px;
}

.tbc-new-red .section-pricing .total-price::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: -3%;
  width: 106%;
  height: 1px;
  background: #9c9c9c;
}

.tbc-new-red .section-pricing .total-price>div:nth-child(1) {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #213f48;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .total-price>div:nth-child(1) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-red .section-pricing .total-price>div:nth-child(1) {
    font-size: 7vw;
  }
}

.tbc-new-red .section-pricing .total-price>div:nth-child(2) {
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ddc4b2;
  position: relative;
  color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .total-price>div:nth-child(2) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-red .section-pricing .total-price>div:nth-child(2) {
    font-size: 7vw;
  }
}

.tbc-new-red .section-pricing .value {
  margin-top: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 34px;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .value {
    font-size: 22px;
    line-height: 30px;
  }
}

.tbc-new-red .section-pricing .per-month {
  margin-top: 35px;
  background: white;
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 25px 15px;
  text-align: center;
  border-color: #a70e27;
}

.tbc-new-red .section-pricing .per-month>div:nth-child(1) {
  font-size: 158px;
  line-height: 160px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-pricing .per-month>div:nth-child(1) {
    font-size: 118px;
    line-height: 120px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-red .section-pricing .per-month>div:nth-child(1) {
    font-size: 100px;
    line-height: 102px;
  }
}

.tbc-new-red .section-pricing .per-month>div:nth-child(2) {
  margin-top: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #9c9c9c;
}

@media screen and (max-width: 450px) {
  .tbc-new-red .section-pricing .per-month>div:nth-child(2) {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}

.tbc-new-red .section-work {
  padding-bottom: 130px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-work {
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-red .section-work {
    padding-bottom: 70px;
  }
}

.tbc-new-red .section-work .right-side .content {
  max-width: 800px;
  padding-right: 0;
}

.tbc-new-red .section-order {
  padding: 100px 50px 180px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-order {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-red .section-order {
    padding-top: 80px;
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-red .section-order {
    padding-top: 65px;
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order {
    padding-bottom: 210px;
  }
}

.tbc-new-red .section-order .container {
  max-width: 1600px;
}

.tbc-new-red .section-order .content-1 {
  text-align: center;
  margin-bottom: 40px;
}

.tbc-new-red .section-order .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .tbc-new-red .section-order .cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-red .section-order .cols.animated .col-1,
.tbc-new-red .section-order .cols.animated .col-2,
.tbc-new-red .section-order .cols.animated .col-3 {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1250px) {
  .tbc-new-red .section-order .cols {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-red .section-order .cols {
    max-width: 500px;
  }
}

.tbc-new-red .section-order .cols .col-1 {
  left: -100px;
}

.tbc-new-red .section-order .cols .col-1,
.tbc-new-red .section-order .cols .col-3 {
  width: 27%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  left: -100px;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

@media screen and (max-width: 1250px) {

  .tbc-new-red .section-order .cols .col-1,
  .tbc-new-red .section-order .cols .col-3 {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 48.5%;
  }
}

@media screen and (max-width: 800px) {

  .tbc-new-red .section-order .cols .col-1,
  .tbc-new-red .section-order .cols .col-3 {
    width: 100%;
  }
}

.tbc-new-red .section-order .cols .col-2 {
  width: 40%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  top: 100px;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
  -o-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-red .section-order .cols .col-2 {
    width: 41.8%;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-red .section-order .cols .col-2 {
    margin-top: 30px;
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-ordinal-group: 3;
    -ms-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
}

.tbc-new-red .section-order .cols .col-3 {
  left: 100px;
}

.tbc-new-red .section-order a.order-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
}

.tbc-new-red .section-order a.order-cell:hover::before {
  opacity: 0.9;
}

.tbc-new-red .section-order .order-cell {
  display: block;
  position: relative;
  width: 100%;
  background: white;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  margin-bottom: 20px;
  color: #213f48;
}

.tbc-new-red .section-order .order-cell:last-child {
  margin-bottom: 0;
}

.tbc-new-red .section-order .order-cell .color-primary {
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-red .section-order .order-cell .extra-bold {
  font-weight: 900;
}

.tbc-new-red .section-order .order-cell>* {
  position: relative;
  z-index: 10;
}

.tbc-new-red .section-order .order-cell.cell-type-text-sm,
.tbc-new-red .section-order .order-cell.cell-type-text-lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 83px;
  padding: 16px 18px;
}

.tbc-new-red .section-order .order-cell.cell-type-text-lg>div {
  font-size: 28px;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-cell.cell-type-text-lg>div {
    font-size: 24px;
  }
}

.tbc-new-red .section-order .order-cell.cell-type-img {
  padding: 20px;
}

.tbc-new-red .section-order .order-cell.cell-type-img img {
  width: 90%;
  margin: 0 auto;
  height: auto;
}

.tbc-new-red .section-order .order-cell.cell-bbb {
  min-height: 178px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-red .section-order .order-cell.cell-bbb img {
  max-width: 300px;
}

.tbc-new-red .section-order .order-cell.cell-trustpilot {
  min-height: 177px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-red .section-order .order-cell.cell-trustpilot img {
  max-width: 280px;
}

.tbc-new-red .section-order .order-cell.cell-media {
  min-height: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-red .section-order .order-cell.cell-year>div {
  width: 85%;
  max-width: 270px;
  font-size: 18px;
  line-height: 28px;
}

.tbc-new-red .section-order .order-cell.cell-advocacy>div {
  max-width: 301px;
}

.tbc-new-red .section-order .order-cell.cell-tstm {
  text-align: left;
  padding: 20px;
}

.tbc-new-red .section-order .order-cell.cell-tstm>div:nth-child(1) {
  font-size: 14px;
  line-height: 24px;
}

.tbc-new-red .section-order .order-cell.cell-tstm>div:nth-child(2) {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-red .section-order .order-cell.cell-tstm>div:nth-child(2)>span:nth-child(2) {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-red .section-order .order-card {
  display: block;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-top: 16px solid #ddc4b2;
  border-radius: 9px;
  text-align: center;
  padding: 32px 28px 0 28px;
  border-color: #a70e27;
}

.tbc-new-red .section-order .order-card .title {
  font-size: 28px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  .tbc-new-red .section-order .order-card .title {
    font-size: 24px;
  }
}

.tbc-new-red .section-order .order-card .list-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 15px auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .list-items {
    max-width: 300px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.tbc-new-red .section-order .order-card .list-items>div {
  text-align: left;
  font-size: 16px;
  margin-bottom: 9px;
}

.tbc-new-red .section-order .order-card .list-items>div i {
  color: #ddc4b2;
  margin-right: 5px;
  color: #a70e27;
}

.tbc-new-red .section-order .order-card .list-items>div:nth-child(even) {
  width: 180px;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .list-items>div:nth-child(even) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-red .section-order .order-card .list-items>div:nth-child(odd) {
  width: 235px;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .list-items>div:nth-child(odd) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-red .section-order .order-card .price {
  font-size: 85px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 500px) {
  .tbc-new-red .section-order .order-card .price {
    font-size: 70px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-red .section-order .order-card .price>span {
    display: none;
  }
}

.tbc-new-red .section-order .order-card .price-per {
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #9c9c9c;
  font-size: 13px;
  margin-bottom: 10px;
}

.tbc-new-red .section-order .order-card .btm-container {
  position: relative;
  z-index: 20;
  width: 90%;
  max-width: 480px;
  margin: 25px auto 0 auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .btm-container .select-items {
    margin-bottom: -20px;
  }
}

.tbc-new-red .section-order .order-card .btm-container .select-items .select-item {
  position: relative;
  margin-bottom: 15px;
}

.tbc-new-red .section-order .order-card .btm-container .select-items .select-item select {
  display: block;
  color: #213f48;
  border-radius: 9px;
  border: none;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 1.1em 17px;
  height: auto;
}

.tbc-new-red .section-order .order-card .btm-container .select-items .select-item i {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 15px;
  font-size: 20px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #a70e27;
}

.tbc-new-red .section-order .order-card .btm-container .select-items .select-item i:hover {
  color: #213f48;
}

.tbc-new-red .section-order .order-card .btm-container .order-btn {
  cursor: pointer;
  position: relative;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  background: #ddc4b2;
  border-radius: 9px;
  padding: 22px 20px;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .btm-container .order-btn {
    padding: 18px;
  }
}

.tbc-new-red .section-order .order-card .btm-container .order-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.tbc-new-red .section-order .order-card .btm-container .order-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: black;
}

.tbc-new-red .section-order .order-card .btm-container .order-btn:hover::after {
  opacity: 0.1;
}

.tbc-new-red .section-order .order-card .btm-container .order-btn>div {
  position: relative;
  z-index: 10;
  font-size: 28px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: white;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .btm-container .order-btn>div {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-red .section-order .order-card .btm-container .order-btn>div {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.tbc-new-red .section-order .order-card .order-links {
  position: absolute;
  z-index: 10;
  padding-top: 60px;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .order-links {
    padding-top: 70px;
  }
}

.tbc-new-red .section-order .order-card .order-links>* {
  font-size: 13px;
  color: #9c9c9c;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .order-links>* {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.tbc-new-red .section-order .order-card .order-links a:hover {
  color: #213f48;
}

.tbc-new-red .section-order .order-card .order-links .sep {
  margin: 0 10px;
}

@media screen and (max-width: 540px) {
  .tbc-new-red .section-order .order-card .order-links .sep {
    display: none;
  }
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_video"] .inner-1 {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 {
  max-width: 960px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 .inner-2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .content-1 {
  margin-bottom: 25px;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
    width: 100%;
    margin-bottom: 30px;
  }
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
    width: 100%;
  }
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content i {
  color: #ddc4b2;
  margin-right: 8px;
  color: #a70e27;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>* {
  margin-bottom: 7px;
}

.tbc-new-red .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-red .section-signature {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tbc-new-red .section-signature::before {
  content: '';
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 75%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-red .section-signature .background-image {
  z-index: 5;
}

.tbc-new-red .section-signature .container {
  z-index: 20;
  max-width: 700px;
}

.tbc-new-red .section-signature .container .content {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 700px) {
  .tbc-new-red .section-signature .container .content {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .section-signature .container .content .img {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
  margin-top: -8px;
}

.tbc-new-red .section-signature .container .content>* {
  margin-bottom: 18px;
}

.tbc-new-red .section-signature .container .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-red .tbc-lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: none;
  padding: 120px 40px 60px 40px;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .tbc-lightbox {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .tbc-lightbox.lb-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-red .tbc-lightbox>.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: black;
  opacity: 0.4;
}

.tbc-new-red .tbc-lightbox .inner-1 {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 900px;
  margin: auto auto;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-top: 16px solid #ddc4b2;
  overflow-y: auto;
  padding-top: 45px;
  padding-bottom: 55px;
  padding-left: 50px;
  padding-right: 50px;
  border-color: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-red .tbc-lightbox .inner-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-red .tbc-lightbox .inner-1>.close {
  position: absolute;
  top: 0;
  right: 0;
}

.tbc-new-red .tbc-lightbox .inner-1>.close i {
  cursor: pointer;
  font-size: 20px;
  padding: 10px 20px;
}

.tbc-new-red .tbc-lightbox .inner-1>.close i:hover {
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-red *[data-lightbox-open] {
  cursor: pointer;
}

nav#qm-panel-menu {
  width: auto;
  height: auto;
}

#CampImg.is-tbc-alt {
  height: 290px;
}

@media screen and (max-width: 1200px) {
  #CampImg.is-tbc-alt {
    height: auto;
    width: 330px;
    max-width: 80%;
  }
}

#ProductImg.is-tbc-alt {
  margin-top: 30px;
  margin-bottom: 19px;
}

#NS_CampImg.is-tbc-alt {
  height: 322px;
  top: 133px;
  right: 45px;
}

@media screen and (max-width: 1100px) {
  #NS_CampImg.is-tbc-alt {
    top: 101px;
    width: 380px;
    max-width: 79%;
    height: auto;
  }
}

#ProductImg.is-tbc-alt {
  margin-top: 30px;
  margin-bottom: 19px;
}

#EntireBody.seven-secrets-replace-subscribe-div-with-button #secureText {
  display: none !important;
}

#EntireBody.seven-secrets-replace-subscribe-div-with-button #SubscribeDiv {
  display: none !important;
}

body.ss-subscribe-lightbox-active {
  overflow: hidden !important;
}

.seven-secrets-call-to-action {
  width: 510px;
  max-width: 90%;
  margin: 23px auto 0 auto;
  background: #ebebeb;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 5px;
}

.seven-secrets-call-to-action.no-border {
  background: transparent;
  padding: 0;
}

.seven-secrets-call-to-action .cta-inner a,
.seven-secrets-call-to-action .cta-inner button {
  background: #b50000;
  font-size: 20px;
  line-height: 1.2em;
  padding: 13px 30px;
  display: block;
  width: 100%;
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: white;
  font-weight: 300;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.seven-secrets-call-to-action .cta-inner a i,
.seven-secrets-call-to-action .cta-inner button i {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: -1px;
  margin-left: 10px;
}

.seven-secrets-call-to-action .cta-inner a i,
.seven-secrets-call-to-action .cta-inner button i,
.seven-secrets-call-to-action .cta-inner a span,
.seven-secrets-call-to-action .cta-inner button span {
  display: inline;
  vertical-align: middle;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  color: inherit;
}

.seven-secrets-call-to-action .cta-inner a:hover,
.seven-secrets-call-to-action .cta-inner button:hover {
  background: #d60000;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.seven-secrets-call-to-action .cta-inner a:hover i,
.seven-secrets-call-to-action .cta-inner button:hover i {
  margin-left: 20px;
}

@media screen and (max-width: 600px) {
  .seven-secrets-call-to-action {
    width: 260px;
  }

  .seven-secrets-call-to-action .cta-inner i {
    display: none !important;
  }
}

.ss-subscribe-lightbox {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 40px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  overflow: auto;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  background: rgba(20, 20, 20, 0.93);
}

@media screen and (max-width: 450px) {
  .ss-subscribe-lightbox {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.ss-subscribe-lightbox.active {
  z-index: 50000;
  opacity: 1;
  visibility: visible;
}

.ss-subscribe-lightbox .lb-inner {
  position: relative;
  margin: auto auto;
  background: black;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  width: 100%;
  max-width: 850px;
  padding-top: 40px;
}

.ss-subscribe-lightbox .lb-inner * {
  color: white;
}

@media screen and (max-width: 768px) {
  .ss-subscribe-lightbox .lb-inner {
    max-width: 480px;
  }
}

.ss-subscribe-lightbox .lb-inner .lb-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  cursor: pointer;
  text-align: center;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 {
  padding-bottom: 50px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-top {
  width: 86%;
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding-bottom: 12px;
  border-bottom: 1px solid white;
  text-align: center;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-top img {
  display: block;
  margin: 0 auto 8px auto;
  width: 100%;
  height: auto;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-top p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-top {
    margin-bottom: 22px;
  }
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex * {
  box-sizing: border-box;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 {
    width: 100%;
    padding: 0 6%;
    margin-bottom: 25px;
  }
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 .image-wrapper {
  position: relative;
  width: 86%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 .image-wrapper {
    width: 100%;
  }
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-1 .image-wrapper.type-reg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=black, GradientType=1);
  /* IE6-9 */
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 {
  width: 50%;
  padding-right: 7%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 {
    width: 100%;
    padding: 0 6%;
  }
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper>* {
  margin: 0 0 35px 0;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper>*:last-child {
  margin-bottom: 0;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper .top {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper .btm {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form {
  display: block;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeButton {
  background: #b50000;
  font-size: 18px;
  margin: 0 0;
  margin-left: 10px;
  width: 270px;
  height: 45px;
  border: none;
  border-radius: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  padding-top: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeButton i {
  font-size: 20px;
  position: relative;
  top: 4px;
  left: 5px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeButton:hover {
  background: #d60000;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeButton:hover i {
  left: 12px;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput {
  text-transform: capitalize;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput {
  margin: 0 0;
  display: block;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 3px;
  height: 45px;
  background: white;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 700 !important;
  position: relative;
  color: black;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput::-webkit-input-placeholder,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput::-webkit-input-placeholder {
  color: gray;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput:-moz-placeholder,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput:-moz-placeholder {
  color: gray;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput::-moz-placeholder,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput::-moz-placeholder {
  color: gray;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput:-ms-input-placeholder,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput:-ms-input-placeholder {
  color: gray;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeNameInput,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeEmailInput,
.ss-subscribe-lightbox .lb-inner .lb-inner-2 .ss-flex .col-2 .text-wrapper form #SubscribeButton {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
  float: none;
}

/*# sourceMappingURL=master.css.map */

.tbc-new-latest .background-image {
  background-color: #213f48;
}

.tbc-new-latest .section-hero {
  position: relative;
  overflow: hidden;
  background-color: #213f48;
}

.tbc-new-latest .section-hero::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 32%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-hero::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 9;
  left: 0;
  width: 60%;
  top: 0;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(221, 196, 178, 0.65) 0%, rgba(221, 196, 178, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=black, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-hero .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 110%;
}

@media screen and (max-width: 800px) {
  .tbc-new-latest .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-latest .section-hero .background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.08;
}

@media screen and (max-width: 800px) {
  .tbc-new-latest .section-hero .background-image {
    background-position: 68% !important;
  }
}

.tbc-new-latest .section-hero .v-container {
  position: relative;
  z-index: 15;
  height: calc(100vh - 10px);
  height: -moz-calc(100vh - 10px);
  height: -webkit-calc(100vh - 10px);
  height: -o-calc(100vh - 10px);
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 600px) {}

.tbc-new-latest .section-hero .container {
  max-width: 1700px;
}

.tbc-new-latest .section-hero .content {
  width: 100%;
  max-width: 900px;
}

.tbc-new-latest .section-hero .content h1,
.tbc-new-latest .section-hero .content h2 {
  font-size: 70px;
  line-height: 80px;
}

.tbc-new-latest .section-hero .content h1 strong,
.tbc-new-latest .section-hero .content h2 strong {
  font-weight: 700;
}

.tbc-new-latest .section-hero .content>* {
  color: white;
}

@media screen and (max-width: 1700px) {
  .tbc-new-latest .section-hero .content {
    max-width: 800px;
  }

  .tbc-new-latest .section-hero .content h1,
  .tbc-new-latest .section-hero .content h2 {
    font-size: 62px;
    line-height: 72px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-hero .content {
    max-width: 600px;
  }

  .tbc-new-latest .section-hero .content h1,
  .tbc-new-latest .section-hero .content h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-hero .content {
    max-width: 500px;
  }

  .tbc-new-latest .section-hero .content h1,
  .tbc-new-latest .section-hero .content h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

.tbc-new-latest .section-logos {
  padding-top: 90px;
  padding-bottom: 90px;
}

.tbc-new-latest .section-logos .container {
  width: 75%;
  max-width: 1170px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-logos .container {
    width: 92%;
    max-width: 520px;
  }
}

.tbc-new-latest .section-logos .content {
  text-align: center;
  margin-bottom: 10px;
}

.tbc-new-latest .section-logos .logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-logos .logos {
    margin-top: 30px;
  }
}

.tbc-new-latest .section-logos .logos>a {
  display: block;
  width: 12.5%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-logos .logos>a {
    width: 33%;
    padding: 0 6%;
    margin-bottom: 10px;
  }
}

.tbc-new-latest .section-logos .logos>a:hover img {
  filter: grayscale(0);
}

.tbc-new-latest .section-logos .logos>a>img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(90);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.tbc-new-latest .section-success {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 590px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-success {
    min-height: 0;
  }
}

.tbc-new-latest .section-success .grad {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: #f5f5f5;
}

.tbc-new-latest .section-success .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1450px;
}

.tbc-new-latest .section-success .container .left-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .left-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-success .container .left-side {
    width: 100%;
  }
}

.tbc-new-latest .section-success .container .left-side .content {
  text-align: right;
  padding-right: 16%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .left-side .content {
    padding-right: 12%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-success .container .left-side .content {
    padding-right: 10%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-success .container .left-side .content {
    padding: 0 6%;
    text-align: center;
    margin-bottom: 50px;
  }
}

.tbc-new-latest .section-success .container .left-side .content .title {
  font-weight: 300;
  font-size: 58px;
  line-height: 66px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .left-side .content .title {
    font-size: 50px;
    line-height: 58px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-success .container .left-side .content .title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-success .container .left-side .content .title {
    font-size: 32px;
    line-height: 48px;
  }
}

.tbc-new-latest .section-success .container .right-side {
  width: 50%;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .right-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-success .container .right-side {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-success .container .right-side .inner {
    text-align: center;
  }
}

.tbc-new-latest .section-success .container .right-side .inner .right-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 320px;
  line-height: 0.73em;
  font-weight: 800;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tbc-new-latest .section-success .container .right-side .inner .right-top span {
  font-size: 0.6em;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-top {
    font-size: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-top {
    font-size: 200px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-top {
    font-size: 160px;
  }
}

.tbc-new-latest .section-success .container .right-side .inner .right-btm {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-btm {
    font-size: 44px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-btm {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-success .container .right-side .inner .right-btm {
    font-size: 24px;
  }
}

.tbc-new-latest .section-mort {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(100deg, #000000 0%, #4a372a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#4a372a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(100deg, #000000 0%, #450000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(100deg, #000000 0%, #450000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(100deg, #000000 0%, #450000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#450000, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-mort {
    background: none;
  }
}

.tbc-new-latest .section-mort .left-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-mort .left-side {
    width: 43%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-mort .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, #000000 0%, #000000 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000000 0%, #000000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000000 0%, #000000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=#000000, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-latest .section-mort .left-side img {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 92%;
  width: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-mort .left-side img {
    left: 56%;
    height: 90%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-mort .left-side img {
    height: 88%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-mort .left-side img {
    display: block;
    margin: 0 auto;
    position: relative;
    left: auto;
    width: 700px;
    max-width: 100%;
    margin-top: 50px;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-latest .section-mort .left-side img {
    margin-top: 40px;
    -webkit-transform: translateX(2%);
    -ms-transform: translateX(2%);
    transform: translateX(2%);
  }
}

.tbc-new-latest .section-mort .right-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding-top: 70px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 680px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-mort .right-side {
    min-height: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-mort .right-side {
    width: 57%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-mort .right-side {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-latest .section-mort .right-side .content {
  width: 85%;
  max-width: 600px;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-mort .right-side .content {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-mort .right-side .content {
    margin: 0 auto;
  }

  .tbc-new-latest .section-mort .right-side .content>* {
    color: #213f48;
  }
}

.tbc-new-latest .section-countdown {
  padding: 90px 0;
}

.tbc-new-latest .section-countdown .container {
  text-align: center;
  max-width: 750px;
}

.tbc-new-latest .section-countdown .line-1 {
  text-transform: uppercase;
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tbc-new-latest .section-countdown .line-2 {
  margin-bottom: 27px;
}

.tbc-new-latest .section-countdown .dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 25px;
}

.tbc-new-latest .section-countdown .dates .date-item {
  width: 106px;
  height: 121px;
  margin: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-countdown .dates .date-item {
    width: 90px;
    height: 100px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-latest .section-countdown .dates .date-item {
    width: 68px;
    height: 82px;
    margin: 0 5px;
  }
}

.tbc-new-latest .section-countdown .dates .date-item .amt {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-countdown .dates .date-item .amt {
    font-size: 40px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-latest .section-countdown .dates .date-item .amt {
    font-size: 32px;
  }
}

.tbc-new-latest .section-countdown .dates .date-item .measure {
  width: 100%;
  text-align: center;
  color: #9c9c9c;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-countdown .dates .date-item .measure {
    font-size: 12px;
  }
}

.tbc-new-latest .section-tstm-left .content-wrap .content {
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-latest .section-tstm-left .container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-latest .section-tstm-left .container-2 .btn-wrap {
  text-align: left;
}

.tbc-new-latest .section-tstm-right .content-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-latest .section-tstm-right .content-wrap .content {
  left: -67px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-tstm-right .content-wrap .content {
    left: -50px;
  }
}

.tbc-new-latest .section-tstm-right .img-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-latest .section-tstm-right .container-2 .btn-wrap {
  text-align: right;
}

.tbc-new-latest .section-tstm-left,
.tbc-new-latest .section-tstm-right {
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-tstm-left,
  .tbc-new-latest .section-tstm-right {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.tbc-new-latest .section-tstm-left .container-1,
.tbc-new-latest .section-tstm-right .container-1,
.tbc-new-latest .section-tstm-left .container-2,
.tbc-new-latest .section-tstm-right .container-2 {
  max-width: 1530px;
}

.tbc-new-latest .section-tstm-left .container-1,
.tbc-new-latest .section-tstm-right .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-latest .section-tstm-left .container-2,
.tbc-new-latest .section-tstm-right .container-2 {
  margin-top: 40px;
}

.tbc-new-latest .section-tstm-left .container-2 .btn-wrap,
.tbc-new-latest .section-tstm-right .container-2 .btn-wrap {
  width: 56%;
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .container-2 .btn-wrap,
  .tbc-new-latest .section-tstm-right .container-2 .btn-wrap {
    width: 100%;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-tstm-left .container-2 .text-btn a,
  .tbc-new-latest .section-tstm-right .container-2 .text-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .container-2,
  .tbc-new-latest .section-tstm-right .container-2 {
    margin-top: 0;
  }
}

.tbc-new-latest .section-tstm-left .img-wrap,
.tbc-new-latest .section-tstm-right .img-wrap {
  position: relative;
  overflow: visible;
  z-index: 5;
  width: 56%;
  height: 620px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-latest .section-tstm-left .img-wrap,
  .tbc-new-latest .section-tstm-right .img-wrap {
    height: 550px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-tstm-left .img-wrap,
  .tbc-new-latest .section-tstm-right .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .img-wrap,
  .tbc-new-latest .section-tstm-right .img-wrap {
    height: 400px;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-latest .section-tstm-left .img-wrap,
  .tbc-new-latest .section-tstm-right .img-wrap {
    height: 70vw;
  }
}

.tbc-new-latest .section-tstm-left .img-wrap .background-image,
.tbc-new-latest .section-tstm-right .img-wrap .background-image {
  filter: hue-rotate(12deg) saturate(20%);
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .img-wrap .background-image,
  .tbc-new-latest .section-tstm-right .img-wrap .background-image {
    left: 0;
    right: auto;
    width: calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: -o-calc(100% - 30px);
  }
}

.tbc-new-latest .section-tstm-left .content-wrap,
.tbc-new-latest .section-tstm-right .content-wrap {
  position: relative;
  z-index: 10;
  width: 44%;
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .content-wrap,
  .tbc-new-latest .section-tstm-right .content-wrap {
    width: 100%;
    padding-left: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-latest .section-tstm-left .content-wrap .content,
.tbc-new-latest .section-tstm-right .content-wrap .content {
  position: relative;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 420px;
  padding: 12% 10%;
  width: calc(100% + 67px);
  width: -moz-calc(100% + 67px);
  width: -webkit-calc(100% + 67px);
  width: -o-calc(100% + 67px);
}

.tbc-new-latest .section-tstm-left .content-wrap .content>*,
.tbc-new-latest .section-tstm-right .content-wrap .content>* {
  width: 100%;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1600px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content,
  .tbc-new-latest .section-tstm-right .content-wrap .content {
    padding: 10% 10%;
    min-height: 370px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content,
  .tbc-new-latest .section-tstm-right .content-wrap .content {
    width: calc(100% + 50px);
    width: -moz-calc(100% + 50px);
    width: -webkit-calc(100% + 50px);
    width: -o-calc(100% + 50px);
    min-height: 300px;
    padding: 55px 50px;
  }
}

@media screen and (max-width: 900px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content,
  .tbc-new-latest .section-tstm-right .content-wrap .content {
    position: relative;
    top: -30px;
    width: 100%;
    left: 0;
    min-height: 330px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content,
  .tbc-new-latest .section-tstm-right .content-wrap .content {
    padding: 50px 30px;
  }
}

.tbc-new-latest .section-tstm-left .content-wrap .content .quot,
.tbc-new-latest .section-tstm-right .content-wrap .content .quot {
  position: absolute;
  top: 47px;
  left: 36px;
  width: 21%;
  height: auto;
  z-index: 2;
}

.tbc-new-latest .section-tstm-left .content-wrap .content p,
.tbc-new-latest .section-tstm-right .content-wrap .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1600px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content p,
  .tbc-new-latest .section-tstm-right .content-wrap .content p {
    font-size: 22px;
    line-height: 34px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content p,
  .tbc-new-latest .section-tstm-right .content-wrap .content p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-latest .section-tstm-left .content-wrap .content p,
  .tbc-new-latest .section-tstm-right .content-wrap .content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.tbc-new-latest .section-tstm-left .content-wrap .content .tstm-by,
.tbc-new-latest .section-tstm-right .content-wrap .content .tstm-by {
  padding-top: 4px;
  margin-bottom: 3px;
}

.tbc-new-latest .section-help {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 20;
  background: white;
}

@media screen and (max-width: 1400px) {
  .tbc-new-latest .section-help {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-help {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-help {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.tbc-new-latest .section-help .content-container {
  max-width: 1250px;
}

.tbc-new-latest .section-help .img-container {
  max-width: 1600px;
}

.tbc-new-latest .section-help .img-container img {
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-latest .section-help .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-help .content-1 {
    margin-bottom: 12px;
  }
}

.tbc-new-latest .section-help .content-2 {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-help .content-2 {
    margin-bottom: 22px;
  }
}

.tbc-new-latest .section-help .content-2 p {
  font-size: 36px;
  line-height: 46px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-help .content-2 p {
    font-size: 32px;
    line-height: 42px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-help .content-2 p {
    font-size: 22px;
    line-height: 32px;
  }
}

.tbc-new-latest .section-help-2 {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-help-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-help-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-latest .section-help-2 .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-help-2 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 1600px;
}

.tbc-new-latest .section-help-2 .left-side {
  width: 47%;
  padding-right: 5%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-help-2 .left-side {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
}

.tbc-new-latest .section-help-2 .left-side .content {
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-help-2 .left-side .content {
    text-align: left;
  }
}

@media screen and (max-width: 1400px) {
  .tbc-new-latest .section-help-2 .left-side .content h2 {
    font-size: 34px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-help-2 .left-side .content h2 br {
    display: none;
  }
}

.tbc-new-latest .section-help-2 .right-side {
  width: 53%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-help-2 .right-side {
    width: 100%;
  }
}

.tbc-new-latest .section-tragedy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.tbc-new-latest .section-tragedy .left-side {
  position: relative;
  z-index: 10;
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tragedy .left-side {
    width: 100%;
    height: 550px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .left-side {
    height: 400px;
  }
}

.tbc-new-latest .section-tragedy .left-side .img {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #bea18c;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tragedy .left-side .img {
    width: 100%;
  }
}

.tbc-new-latest .section-tragedy .right-side .right-top .content-1,
.tbc-new-latest .section-tragedy .tragedy-items .item .item-right .content {
  width: 92%;
  max-width: 700px;
}

.tbc-new-latest .section-tragedy .right-side {
  position: relative;
  z-index: 20;
  width: 55%;
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tragedy .right-side {
    width: 100%;
    background: white;
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tragedy .right-side {
    padding-bottom: 20px;
  }
}

.tbc-new-latest .section-tragedy .right-side .right-top {
  padding-left: 187px;
  margin-top: 10px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tragedy .right-side .right-top {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .right-side .right-top {
    padding-left: 100px;
  }
}

.tbc-new-latest .section-tragedy .right-side .right-top .content-1 {
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .right-side .right-top .content-1 {
    padding-right: 18px;
  }
}

.tbc-new-latest .section-tragedy .right-side .right-top .content-1 h2 {
  margin-bottom: 5px;
}

.tbc-new-latest .section-tragedy .right-side .right-top .content-1 .tagline {
  font-size: 26px;
}

.tbc-new-latest .section-tragedy .tragedy-items .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 50px;
}

.tbc-new-latest .section-tragedy .tragedy-items .item:first-child .item-left::after {
  top: 50%;
}

.tbc-new-latest .section-tragedy .tragedy-items .item:last-child .item-left::after {
  bottom: 50%;
}

.tbc-new-latest .section-tragedy .tragedy-items .item .item-left {
  position: relative;
  padding-left: 50px;
  padding-right: 35px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .tragedy-items .item .item-left {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tbc-new-latest .section-tragedy .tragedy-items .item .item-left::after {
  content: '';
  display: block;
  width: 2px;
  position: absolute;
  z-index: 5;
  left: 100px;
  top: 0;
  bottom: -50px;
  background: #ddc4b2;
  background: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .tragedy-items .item .item-left::after {
    left: 49px;
  }
}

.tbc-new-latest .section-tragedy .tragedy-items .item .item-left .inner {
  position: relative;
  z-index: 10;
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-radius: 99px;
  background: white;
  border: 2px solid #ddc4b2;
  font-size: 14px;
  border-color: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .tragedy-items .item .item-left .inner {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
}

.tbc-new-latest .section-tragedy .tragedy-items .item .item-right {
  width: calc(100% - 187px);
  width: -moz-calc(100% - 187px);
  width: -webkit-calc(100% - 187px);
  width: -o-calc(100% - 187px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tragedy .tragedy-items .item .item-right {
    width: calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -o-calc(100% - 100px);
  }
}

.tbc-new-latest .section-tragedy .tragedy-items .item .item-right .content {
  width: 100%;
  padding-right: 24px;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tragedy .tragedy-items .item .item-right .content {
    padding-right: 18px;
  }
}

.tbc-new-latest .section-type-split-left-1 {
  position: relative;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
}

.tbc-new-latest .section-type-split-left-1 .left-side {
  width: 39%;
  position: relative;
  z-index: 20;
  overflow: visible;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-type-split-left-1 .left-side {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-type-split-left-1 .left-side {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-latest .section-type-split-left-1 .left-side .background-image {
  top: -60px;
  bottom: 0;
  height: auto;
}

@media screen and (max-width: 1300px) {
  .tbc-new-latest .section-type-split-left-1 .left-side .background-image {
    top: -50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-type-split-left-1 .left-side .background-image {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    padding-bottom: 100%;
  }
}

.tbc-new-latest .section-type-split-left-1 .right-side {
  position: relative;
  z-index: 10;
  width: 61%;
  min-height: 660px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-type-split-left-1 .right-side {
    min-height: 580px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-latest .section-type-split-left-1 .right-side {
    min-height: 500px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-type-split-left-1 .right-side {
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-type-split-left-1 .right-side {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    width: 100%;
    padding-top: 300px;
    margin-top: -250px;
    padding-bottom: 0;
  }
}

.tbc-new-latest .section-type-split-left-1 .right-side::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: white;
}

.tbc-new-latest .section-type-split-left-1 .right-side .grad {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.3) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-type-split-left-1 .right-side .content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .tbc-new-latest .section-type-split-left-1 .right-side .content {
    max-width: 600px;
    padding-right: 0;
  }
}

.tbc-new-latest .section-wondering {
  position: relative;
  z-index: 20;
  background: white;
  padding-top: 95px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-wondering {
    padding-top: 70px;
  }
}

.tbc-new-latest .section-wondering .container-1 {
  text-align: center;
  max-width: 1150px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-wondering .container-1 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-wondering .container-1 {
    margin-bottom: 45px;
  }
}

.tbc-new-latest .section-wondering .container-2 {
  max-width: 1475px;
  padding-left: 18px;
  padding-right: 18px;
}

.tbc-new-latest .section-wondering .container-3 {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 1250px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-wondering .container-3 {
    padding-top: 100px;
    max-width: 1100px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-wondering .container-3 {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.tbc-new-latest .section-wondering .container-3 .content p {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-wondering .container-3 .content p {
    font-size: 21px;
    line-height: 30px;
  }
}

.tbc-new-latest .section-wondering .wondering-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-wondering .wondering-cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-latest .section-wondering .wondering-cards .card-item {
  position: relative;
  width: 18.4%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  border-top: 17px solid #ddc4b2;
  height: 300px;
  margin-bottom: 28px;
  cursor: pointer;
  border-color: #a70e27;
}

@media screen and (max-width: 1600px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item {
    width: 18.8%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item {
    width: 265px;
    height: 290px;
    margin: 0 12px 24px 12px;
  }
}

.tbc-new-latest .section-wondering .wondering-cards .card-item::before {
  content: '';
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  top: -17px;
  border-radius: 7px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

@media screen and (min-width: 1025px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover::before {
    opacity: 1;
  }

  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover .card-inner .icon {
    top: -18px;
  }

  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover .card-inner .icon svg {
    fill: white;
  }

  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover .card-inner .btm {
    top: -18px;
  }

  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover .card-inner .btm .title {
    color: white;
  }

  .tbc-new-latest .section-wondering .wondering-cards .card-item:hover .card-inner .btm .learn-more {
    opacity: 1;
    visibility: visible;
    color: white;
  }
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  z-index: 10;
  text-align: center;
  padding: 10%;
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .icon {
  position: relative;
  top: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .icon svg {
  fill: #ddc4b2;
  width: 117px;
  height: 110px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  fill: #a70e27;
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm {
  position: relative;
  top: 0;
  min-height: 78px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm {
    max-width: 200px;
    min-height: 75px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm {
    min-height: 66px;
    max-width: 180px;
  }
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm .title {
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 18px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm .title {
    font-size: 17px;
    line-height: 23px;
  }
}

.tbc-new-latest .section-wondering .wondering-cards .card-item .card-inner .btm .learn-more {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tbc-new-latest .tbc-lightbox.lb-wondering .inner-1 {
  max-width: 1500px;
}

.tbc-new-latest .tbc-lightbox.lb-wondering .content .title {
  font-size: 32px;
  margin-bottom: 18px;
}

.tbc-new-latest .tbc-lightbox.lb-wondering .content i {
  color: #bea18c;
  color: #91051a;
}

.tbc-new-latest .tbc-lightbox.lb-wondering .content .how-to-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.tbc-new-latest .tbc-lightbox.lb-wondering .content .how-to-items>* {
  width: 50%;
  padding-right: 15px;
  margin-bottom: 3px;
}

@media screen and (max-width: 1100px) {
  .tbc-new-latest .tbc-lightbox.lb-wondering .content .how-to-items>* {
    width: 100%;
    padding-right: 0;
  }
}

.tbc-new-latest .section-bottom-line {
  position: relative;
  height: 850px;
  padding-top: 135px;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-bottom-line {
    padding-top: 120px;
    height: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-bottom-line {
    padding-top: 90px;
    height: 730px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-latest .section-bottom-line {
    padding-top: 60px;
    height: 620px;
  }
}

.tbc-new-latest .section-bottom-line .background-image {
  z-index: 1;
  position: absolute;
  top: 20%;
  bottom: -25%;
  left: 0;
  width: 100%;
  height: initial;
}

.tbc-new-latest .section-bottom-line .background-image .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 5;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-bottom-line .container {
  position: relative;
  z-index: 10;
  max-width: 1120px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-bottom-line .container {
    max-width: 900px;
  }
}

.tbc-new-latest .section-bottom-line .content {
  text-align: center;
}

.tbc-new-latest .section-bottom-line .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-bottom-line .content p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .tbc-new-latest .section-bottom-line .content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.tbc-new-latest .section-caution {
  position: relative;
  min-height: 730px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-caution {
    min-height: 700px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-caution {
    min-height: 620px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-caution {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.tbc-new-latest .section-caution .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(221, 196, 178, 0.5) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=white, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f1f1 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f1f1f1, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-caution .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1380px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-caution .container {
    max-width: 1170px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-caution .container {
    max-width: 1000px;
  }
}

.tbc-new-latest .section-caution .container .left-side {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-caution .container .left-side {
    width: 100%;
  }
}

.tbc-new-latest .section-caution .container .left-side .caution {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.26em;
  margin-bottom: 10px;
}

.tbc-new-latest .section-caution .container .left-side .caution .icon svg {
  width: 24px;
  height: 24px;
}

.tbc-new-latest .section-caution .container .right-side {
  width: 42%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-caution .container .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-caution .container .right-side {
    display: none;
  }
}

.tbc-new-latest .section-caution .container .right-side svg {
  fill: #ddc4b2;
  fill: #a70e27;
}

.tbc-new-latest .section-media {
  margin-top: 60px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-media {
    margin-top: 0;
  }
}

.tbc-new-latest .section-media .container-1 {
  max-width: 950px;
  text-align: center;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-media .container-1 {
    max-width: 800px;
  }
}

.tbc-new-latest .section-media .container-1 .content p {
  font-size: 18px;
  line-height: 28px;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-media .container-1 .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.tbc-new-latest .section-media .container-2 {
  margin-top: 30px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-media .container-2 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-media .container-2 {
    margin-top: 25px;
    margin-bottom: 50px;
  }
}

.tbc-new-latest .section-media .container-3 {
  max-width: 1050px;
  text-align: center;
  margin-bottom: 50px;
}

.tbc-new-latest .section-media .container-4 {
  max-width: 950px;
  margin-bottom: 90px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-media .container-4 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-media .container-4 {
    margin-bottom: 50px;
  }
}

.tbc-new-latest .section-media .container-5 {
  max-width: 1050px;
  text-align: center;
  padding-bottom: 50px;
}

.tbc-new-latest .section-media .media-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

.tbc-new-latest .section-media .media-slider .inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
}

.tbc-new-latest .section-media .media-slider .inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-latest .section-media .media-slider .inner .item {
  margin: 0 32px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-media .media-slider .inner .item {
    margin: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-media .media-slider .inner .item {
    margin: 0 10px;
  }
}

.tbc-new-latest .section-media .media-slider .inner .item img {
  display: block;
  width: 210px;
  height: auto;
  filter: grayscale(100);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tbc-new-latest .section-media .media-slider .inner .item img.js-tall {
  height: 70px;
  width: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-media .media-slider .inner .item img {
    width: 170px;
  }

  .tbc-new-latest .section-media .media-slider .inner .item img.js-tall {
    height: 54px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-media .media-slider .inner .item img {
    width: 135px;
  }

  .tbc-new-latest .section-media .media-slider .inner .item img.js-tall {
    height: 45px;
  }
}

.tbc-new-latest .section-media .media-slider .inner .item img:hover {
  filter: grayscale(0);
}

.tbc-new-latest .section-media .media-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-media .media-cards {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-latest .section-media .media-cards .card-item {
  width: 46%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

@media screen and (max-width: 980px) {
  .tbc-new-latest .section-media .media-cards .card-item {
    width: 47%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-media .media-cards .card-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .tbc-new-latest .section-media .media-cards .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-latest .section-media .media-cards .card-item .top {
  padding: 50px 0 25px 0;
}

.tbc-new-latest .section-media .media-cards .card-item .top .img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 235px;
  height: 235px;
  border-radius: 999px;
  margin: 0 auto;
}

.tbc-new-latest .section-media .media-cards .card-item .top .img::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  border: 7px solid #ddc4b2;
  border-radius: 999px;
  border-color: #a70e27;
}

.tbc-new-latest .section-media .media-cards .card-item .btm {
  width: 90%;
  margin: 0 auto;
  min-height: 175px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-media .media-cards .card-item .btm {
    min-height: 0;
    padding-bottom: 40px;
  }
}

.tbc-new-latest .section-media .media-cards .card-item .btm .title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 8px;
}

.tbc-new-latest .section-media .media-cards .card-item .btm p {
  font-size: 18px;
  line-height: 26px;
}

.tbc-new-latest .section-what-you-get {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 580px;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-what-you-get {
    min-height: 480px;
  }
}

.tbc-new-latest .section-what-you-get .container {
  text-align: center;
  max-width: 1100px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-what-you-get .container {
    max-width: 960px;
  }
}

.tbc-new-latest .section-what-you-get .container p {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 5px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-what-you-get .container p {
    font-size: 26px;
    line-height: 36px;
  }
}

.tbc-new-latest .wyg-controls {
  position: fixed;
  z-index: 5000;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  padding: 28px 14px;
  background: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .wyg-controls {
    padding: 22px 9px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .wyg-controls {
    display: none;
  }
}

.tbc-new-latest .wyg-controls::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background: white;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
}

.tbc-new-latest .wyg-controls.active {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.tbc-new-latest .wyg-controls.active::before {
  opacity: 1;
}

.tbc-new-latest .wyg-controls .item {
  position: relative;
  z-index: 10;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 3px solid #ddc4b2;
  margin-bottom: 15px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  cursor: pointer;
  border-color: #a70e27;
}

.tbc-new-latest .wyg-controls .item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .wyg-controls .item {
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    border-width: 2px;
  }

  .tbc-new-latest .wyg-controls .item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-latest .wyg-controls .item:hover,
.tbc-new-latest .wyg-controls .item.active {
  border: 5px solid #ddc4b2;
  border-color: #a70e27;
}

.tbc-new-latest .section-tele-seminars {
  position: relative;
  min-height: 690px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-tele-seminars {
    min-height: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tele-seminars {
    min-height: 0;
  }
}

.tbc-new-latest .section-tele-seminars .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #e7e7e7 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e7e7e7 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e7e7e7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e7e7e7, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .grad {
    display: none;
  }
}

.tbc-new-latest .section-tele-seminars .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .left-side {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(221, 196, 178, 0.3) 0%, rgba(221, 196, 178, 0.2) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-latest .section-tele-seminars .left-side .img-wrap {
  position: absolute;
  bottom: 0;
  left: 60%;
  overflow: visible;
  height: 95%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tele-seminars .left-side .img-wrap {
    height: 480px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .left-side .img-wrap {
    padding-top: 30px;
    position: relative;
    height: 100%;
    left: 0;
  }
}

.tbc-new-latest .section-tele-seminars .left-side .img-wrap img {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .left-side .img-wrap img {
    position: relative;
    display: block;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 70%;
    max-width: 370px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-latest .section-tele-seminars .right-side {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 80px 0;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tele-seminars .right-side {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .right-side {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
    /* IE6-9 */
    width: 100%;
    padding-top: 70px;
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
    /* IE6-9 */
  }
}

.tbc-new-latest .section-tele-seminars .right-side .content {
  width: 100%;
  max-width: 650px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tele-seminars .right-side .content {
    margin-left: auto;
    margin-right: auto;
    max-width: 460px;
  }
}

@media screen and (max-width: 768px) {}

.tbc-new-latest .section-solutions-library {
  position: relative;
  overflow: hidden;
}

.tbc-new-latest .section-solutions-library .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tbc-new-latest .section-solutions-library .container {
  max-width: 1466px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: 760px;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .container {
    padding-left: 90px;
    padding-right: 0;
    height: 700px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-solutions-library .container {
    padding-left: 70px;
    height: 630px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-solutions-library .container {
    padding-left: 30px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-solutions-library .container {
    height: auto;
    width: 94%;
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-latest .section-solutions-library .container .left-side {
  position: relative;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .container .left-side {
    width: 42%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-solutions-library .container .left-side {
    width: 46%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-latest .section-solutions-library .container .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-solutions-library .container .left-side {
    width: 100%;
    height: 450px;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.tbc-new-latest .section-solutions-library .container .right-side {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .container .right-side {
    width: 58%;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-solutions-library .container .right-side {
    width: 54%;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-latest .section-solutions-library .container .right-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-solutions-library .container .right-side {
    display: block;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-latest .section-solutions-library .container .right-side .content {
  width: 100%;
  max-width: 580px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .container .right-side .content {
    max-width: 580px;
  }
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .container .right-side .content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-solutions-library .container .right-side .content {
    width: 100%;
  }
}

.tbc-new-latest .section-solutions-library .sl-slider {
  height: 100%;
}

.tbc-new-latest .section-solutions-library .sl-slider .overflow-outer {
  height: 100%;
  overflow: hidden;
}

.tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
  position: relative;
  padding-top: 15px;
  -webkit-transition: all 1s linear 0s;
  -moz-transition: all 1s linear 0s;
  -ms-transition: all 1s linear 0s;
  -o-transition: all 1s linear 0s;
  transition: all 1s linear 0s;
  padding-left: 10px;
  padding-right: 18%;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner {
    padding-right: 10px;
  }
}

.tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner.no-trans-time {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item {
  background: white;
  -webkit-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7px 3px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #ddc4b2;
  border-radius: 3px;
  padding: 9px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 18px;
  border-color: #a70e27;
}

.tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
  font-size: 16px;
  line-height: 24px;
  padding-right: 10px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-solutions-library .sl-slider .overflow-outer .overflow-inner .slider-item p {
    font-size: 15px;
    line-height: 23px;
  }
}

.tbc-new-latest .section-audio-learning {
  position: relative;
}

.tbc-new-latest .section-audio-learning .background-image {
  z-index: 5;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-audio-learning .background-image {
    left: 0;
    right: auto;
    width: 105%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-audio-learning .background-image {
    width: 160%;
  }
}

.tbc-new-latest .section-audio-learning .content-wrap {
  position: relative;
  z-index: 10;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;

  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: 11%;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-audio-learning .content-wrap {
    padding-left: 9%;
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-audio-learning .content-wrap {
    min-height: 600px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-audio-learning .content-wrap {
    padding-left: 6%;
    padding-right: 6%;
  }
}

.tbc-new-latest .section-audio-learning .content-wrap .content {

  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 50px;
  padding-right: 45px;
  width: 100%;
  max-width: 675px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content {
    max-width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content {
    padding: 55px 50px;
    max-width: 500px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content {
    padding: 45px 10%;
  }
}

.tbc-new-latest .section-audio-learning .content-wrap .content h2 {
  font-size: 56px;
  line-height: 62px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content h2 {
    font-size: 50px;
    line-height: 56px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content h2 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-audio-learning .content-wrap .content h2 {
    font-size: 38px;
    line-height: 46px;
  }
}

.tbc-new-latest .section-workbook {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-workbook .flex {
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-workbook .flex {
    min-height: 660px;
  }
}

.tbc-new-latest .section-workbook .flex .left-side {
  position: relative;
  z-index: 10;
  width: 50%;
  padding: 60px 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-workbook .flex .left-side {
    width: 60%;
    padding-left: 70px;
    padding-right: 105px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-workbook .flex .left-side {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 10px 7% 60px 7%;
  }
}

.tbc-new-latest .section-workbook .flex .left-side .content {
  width: 100%;
  max-width: 685px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-workbook .flex .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-latest .section-workbook .flex .right-side {
  position: relative;
  z-index: 5;
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-workbook .flex .right-side {
    width: 38%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-workbook .flex .right-side {
    width: 100%;
    height: 500px;
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-workbook .flex .right-side {
    height: 400px;
  }
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3%;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .img-1 {
  position: absolute;
  z-index: 20;
  top: 14%;
  height: 52%;
  width: 100%;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .img-1 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 48%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .img-2 {
  position: absolute;
  z-index: 20;
  overflow: visible;
  top: 61%;
  height: 31%;
  width: 100%;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .img-2 img {
  position: absolute;
  top: 0;
  height: 100%;
  left: 46%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
  position: absolute;
  left: 0;
  width: 114%;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 155%;
    left: -21%;
    bottom: 2%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 {
    width: 98%;
    max-width: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.tbc-new-latest .section-workbook .flex .right-side .images-wrapper .circle-wrapper .circle-inner-1 .circle-inner-2 {
  position: absolute;
  padding-bottom: 100%;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 9999px;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  -webkit-transform-origin: 50% bottom;
  /* Chrome, Safari, Opera */
  -ms-transform-origin: 50% bottom;
  /* IE 9 */
  transform-origin: 50% bottom;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #e9e9e9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e9e9e9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e9e9e9, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-mic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-mic .left-side {
  position: relative;
  width: 47%;
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-mic .left-side {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-mic .left-side {
    width: 100%;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tbc-new-latest .section-mic .left-side .img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 8%;
  bottom: 8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-mic .left-side .img {
    top: 15%;
    bottom: 15%;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-mic .left-side .img {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 400px;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-position: 20% 50%;
    top: auto;
    bottom: auto;
  }
}

@media screen and (max-width: 560px) {
  .tbc-new-latest .section-mic .left-side .img {
    height: 60vw;
  }
}

.tbc-new-latest .section-mic .right-side {
  min-height: 770px;
  width: 53%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-mic .right-side {
    min-height: 680px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-mic .right-side {
    min-height: 600px;
    width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-mic .right-side {
    min-height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-mic .right-side {
    width: 100%;
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tbc-new-latest .section-mic .right-side .content {
  width: 100%;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-mic .right-side .content {
    max-width: 640px;
  }
}

.tbc-new-latest .section-autograph {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 760px;
  padding: 90px 50px 90px 90px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #fafafa 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fafafa 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-autograph {
    padding-left: 70px;
    padding-right: 0;
    min-height: 660px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-autograph {
    padding-left: 50px;
    min-height: 600px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-autograph {
    padding-left: 7vw;
    padding-right: 7vw;
    min-height: 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-autograph {
    padding-top: 60px;
  }
}

.tbc-new-latest .section-autograph .left-side {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-autograph .left-side {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-autograph .left-side {
    width: 100%;
  }
}

.tbc-new-latest .section-autograph .left-side .content {
  width: 100%;
  max-width: 660px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-autograph .left-side .content {
    max-width: 620px;
  }
}

.tbc-new-latest .section-autograph .right-side {
  position: relative;
  width: 52%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-autograph .right-side {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-autograph .right-side {
    width: 100%;
  }
}

.tbc-new-latest .section-autograph .right-side .img-wrap {
  position: absolute;
  left: 50%;
  height: 100%;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-autograph .right-side .img-wrap {
    position: relative;
    left: auto;
    height: auto;
    width: 100%;
  }
}

.tbc-new-latest .section-autograph .right-side .img-wrap img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 0;
  width: 460px;
  height: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-autograph .right-side .img-wrap img {
    width: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-autograph .right-side .img-wrap img {
    width: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-autograph .right-side .img-wrap img {
    width: 330px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-autograph .right-side .img-wrap img {
    margin-top: 10px;
    position: relative;
    top: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-latest .section-homework {
  position: relative;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 90px 70px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-homework {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-homework {
    padding-left: 70px;
    padding-right: 30px;
    min-height: 660px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-homework {
    min-height: 575px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-homework {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-homework {
    padding: 50px 7vw;
  }
}

.tbc-new-latest .section-homework .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 1370px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-homework .container {
    max-width: 1130px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-homework .container {
    max-width: 350px;
  }
}

.tbc-new-latest .section-homework .container .card-item {
  min-height: 390px;
  width: 31%;
  background: white;
  padding: 50px;
  border-radius: 9px;
  border-top: 17px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-color: #a70e27;
}

.tbc-new-latest .section-homework .container .card-item:nth-child(1) {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.tbc-new-latest .section-homework .container .card-item:nth-child(2) {
  -webkit-transition: all 0.3s linear 0.3s;
  -moz-transition: all 0.3s linear 0.3s;
  -ms-transition: all 0.3s linear 0.3s;
  -o-transition: all 0.3s linear 0.3s;
  transition: all 0.3s linear 0.3s;
}

.tbc-new-latest .section-homework .container .card-item:nth-child(3) {
  -webkit-transition: all 0.3s linear 0.6s;
  -moz-transition: all 0.3s linear 0.6s;
  -ms-transition: all 0.3s linear 0.6s;
  -o-transition: all 0.3s linear 0.6s;
  transition: all 0.3s linear 0.6s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-homework .container .card-item {
    width: 31.5%;
    padding: 50px 45px;
    min-height: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-homework .container .card-item {
    min-height: 0;
  }
}

@media screen and (max-width: 1100px) {
  .tbc-new-latest .section-homework .container .card-item {
    padding: 42px 30px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-homework .container .card-item {
    padding: 35px 20px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-homework .container .card-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .tbc-new-latest .section-homework .container .card-item:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-latest .section-homework .container .card-item .content {
  text-align: center;
}

.tbc-new-latest .section-homework .container .card-item .content h2 {
  font-size: 39px;
  line-height: 45px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-homework .container .card-item .content h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-homework .container .card-item .content h2 {
    font-size: 28px;
    line-height: 33px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-homework .container .card-item .content p {
    line-height: 1.78em;
  }
}

.tbc-new-latest .section-members-only {
  overflow: hidden;
  padding-left: 90px;
  padding-right: 90px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only {
    padding-right: 50px;
  }
}

.tbc-new-latest .section-members-only .container {
  max-width: 1366px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only .container {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-members-only {
    padding-left: 0;
    padding-right: 0;
  }
}

.tbc-new-latest .section-members-only .container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 310px;
  padding: 60px 0;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only .container-1 {
    min-height: 260px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-1 {
    min-height: 0;
    padding: 60px 0 50px 0;
    max-width: 800px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-members-only .container-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .section-members-only .container-1 .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-1 .flex {
    display: block;
  }
}

.tbc-new-latest .section-members-only .container-1 .flex .left-side {
  width: 410px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only .container-1 .flex .left-side {
    width: 320px;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-1 .flex .left-side {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tbc-new-latest .section-members-only .container-1 .flex .right-side {
  width: calc(100% - 410px);
  width: -moz-calc(100% - 410px);
  width: -webkit-calc(100% - 410px);
  width: -o-calc(100% - 410px);
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only .container-1 .flex .right-side {
    width: calc(100% - 320px);
    width: -moz-calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
    width: -o-calc(100% - 320px);
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-1 .flex .right-side {
    width: 100%;
  }
}

.tbc-new-latest .section-members-only .container-1 .flex .right-side .content {
  width: 90%;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-members-only .container-1 .flex .right-side .content {
    width: 93%;
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-1 .flex .right-side .content {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-members-only .container-2 {
    max-width: 800px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-members-only .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-members-only .container-2 {
    margin-top: -20px;
    padding-bottom: 46px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.tbc-new-latest .section-members-only .container-2 img {
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}

.tbc-new-latest .section-type-split-left-2,
.tbc-new-latest .section-type-split-right-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(221, 196, 178, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ddc4b2, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#f1f1f1, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-type-split-left-2 .img-wrap,
.tbc-new-latest .section-type-split-right-2 .img-wrap {
  position: relative;
  width: 45%;
}

@media screen and (max-width: 1024px) {

  .tbc-new-latest .section-type-split-left-2 .img-wrap,
  .tbc-new-latest .section-type-split-right-2 .img-wrap {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-type-split-left-2 .img-wrap .background-image,
  .tbc-new-latest .section-type-split-right-2 .img-wrap .background-image {
    top: 0;
    left: 5vw;
    right: 5vw;
    bottom: 5vw;
    width: auto;
    height: auto;
    border-radius: 7px;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-type-split-left-2 .img-wrap,
  .tbc-new-latest .section-type-split-right-2 .img-wrap {
    width: 100%;
    height: 80vw;
  }

  .tbc-new-latest .section-type-split-left-2 .img-wrap.img-wrap,
  .tbc-new-latest .section-type-split-right-2 .img-wrap.img-wrap {
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 500px) {

  .tbc-new-latest .section-type-split-left-2 .img-wrap,
  .tbc-new-latest .section-type-split-right-2 .img-wrap {
    height: 90vw;
  }
}

.tbc-new-latest .section-type-split-left-2 .content-wrap,
.tbc-new-latest .section-type-split-right-2 .content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 55%;
  min-height: 760px;
}

@media screen and (max-width: 1440px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap,
  .tbc-new-latest .section-type-split-right-2 .content-wrap {
    min-height: 660px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap,
  .tbc-new-latest .section-type-split-right-2 .content-wrap {
    min-height: 550px;
  }
}

@media screen and (max-width: 1024px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap,
  .tbc-new-latest .section-type-split-right-2 .content-wrap {
    width: 53%;
  }
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap,
  .tbc-new-latest .section-type-split-right-2 .content-wrap {
    background: none;
    width: 100%;
    padding-top: 11vw;
    padding-bottom: 11vw;
    min-height: 300px;
  }

  .tbc-new-latest .section-type-split-left-2 .content-wrap.content-wrap,
  .tbc-new-latest .section-type-split-right-2 .content-wrap.content-wrap {
    -webkit-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.tbc-new-latest .section-type-split-left-2 .content-wrap .content,
.tbc-new-latest .section-type-split-right-2 .content-wrap .content {
  width: 100%;
  max-width: 618px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1500px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap .content,
  .tbc-new-latest .section-type-split-right-2 .content-wrap .content {
    max-width: 550px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1200px) {

  .tbc-new-latest .section-type-split-left-2 .content-wrap .content,
  .tbc-new-latest .section-type-split-right-2 .content-wrap .content {
    padding-left: 20px;
  }
}

.tbc-new-latest .section-type-split-left-2 .img-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.tbc-new-latest .section-type-split-left-2 .content-wrap {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.tbc-new-latest .section-privacy {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 600px;
  padding: 90px 0;
  overflow: hidden;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-privacy {
    min-height: 550px;
  }
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-privacy {
    min-height: 500px;
  }
}

.tbc-new-latest .section-privacy .grad {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(209, 174, 150, 0) 0%, rgba(209, 174, 150, 0.98) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d1ae96, endColorstr=#d1ae96, GradientType=1);
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=black, endColorstr=black, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-privacy .background-image {
  z-index: 5;
  top: auto;
  bottom: 0;
  height: 122%;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-privacy .background-image {
    background-position: 70% 50%;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-privacy .background-image {
    height: 132%;
  }
}

.tbc-new-latest .section-privacy .container {
  padding-top: 62px;
  position: relative;
  z-index: 20;
  max-width: 1000px;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-privacy .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .section-privacy .container * {
  color: white;
}

.tbc-new-latest .section-privacy .container *.text-btn a:hover,
.tbc-new-latest .section-privacy .container *.text-btn span:hover {
  color: white;
  text-decoration: underline;
}

.tbc-new-latest .section-privacy .container .line-1 {
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-privacy .container .line-1 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-privacy .container .line-1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.tbc-new-latest .section-privacy .container .line-2 {
  font-size: 58px;
  line-height: 64px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-privacy .container .line-2 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-privacy .container .line-2 {
    font-size: 40px;
    line-height: 46px;
  }
}

.tbc-new-latest .section-tracks {
  position: relative;
  z-index: 50;
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks {
    padding-top: 65px;
  }
}

.tbc-new-latest .section-tracks .container {
  max-width: 860px;
}

.tbc-new-latest .section-tracks .container .content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 45px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .container .content {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-tracks .container .content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .container .content h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

.tbc-new-latest .section-tracks .track-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .track-cards {
    width: 100%;
    max-width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tbc-new-latest .section-tracks .track-cards .track-card {
  position: relative;
  top: 0;
  cursor: pointer;
  width: 47%;
  background: white;
  border-top: 17px solid #ddc4b2;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 305px;
  border-color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tracks .track-cards .track-card {
    height: 280px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .track-cards .track-card {
    width: 100%;
    margin-bottom: 20px;
    height: 230px;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .tbc-new-latest .section-tracks .track-cards .track-card:hover {
    top: -10px;
    border-color: #bea18c;

    border-color: #a70e27;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover::before {
    opacity: 1;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover .inner {
    top: -25px;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover .inner i {
    color: white;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover .inner .title {
    color: white;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover .inner .extra {
    opacity: 1;
    margin-top: 7px;
  }

  .tbc-new-latest .section-tracks .track-cards .track-card:hover .inner .extra p {
    color: white;
  }
}

.tbc-new-latest .section-tracks .track-cards .track-card::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 17px);
  height: -moz-calc(100% + 17px);
  height: -webkit-calc(100% + 17px);
  height: -o-calc(100% + 17px);
  border-radius: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(225deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.tbc-new-latest .section-tracks .track-cards .track-card:nth-child(1) .inner i {
  position: relative;
  top: -4px;
}

.tbc-new-latest .section-tracks .track-cards .track-card .inner {
  position: relative;
  z-index: 10;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 80%;
  max-width: 230px;
  margin: 50px auto;
  text-align: center;
}

.tbc-new-latest .section-tracks .track-cards .track-card .inner i {
  font-size: 110px;
  margin-bottom: 12px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tracks .track-cards .track-card .inner i {
    font-size: 90px;
  }
}

.tbc-new-latest .section-tracks .track-cards .track-card .inner .title {
  font-size: 31px;
  line-height: 37px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-tracks .track-cards .track-card .inner .title {
    font-size: 26px;
    line-height: 31px;
  }
}

.tbc-new-latest .section-tracks .track-cards .track-card .inner .extra {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .section-tracks .track-cards .track-card .inner .extra {
    display: none;
  }
}

.tbc-new-latest .section-tracks .track-cards .track-card .inner .extra p {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.tbc-new-latest .section-tracks .tracks-btn {
  margin-top: 36px;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .tracks-btn {
    margin-top: 20px;
  }
}

.tbc-new-latest .section-tracks .tracks-btn a {
  display: block;
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 21px 20px 20px 20px;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  color: #213f48;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 16px;
  line-height: 20px;
}

.tbc-new-latest .section-tracks .tracks-btn a:hover {
  background: #bea18c;
  color: white;
  background: #a70e27;
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-tracks .tracks-btn a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.18em;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-tracks .tracks-btn a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12em;
  }
}

.tbc-new-latest .section-ready {
  position: relative;
  z-index: 20;
  margin-top: -160px;
  padding-top: 270px;
  padding-bottom: 110px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-ready {
    padding-top: 240px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-ready {
    margin-top: 90px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .tbc-new-latest .section-ready {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-ready {
    padding-top: 90px;
  }
}

.tbc-new-latest .section-ready .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: visible;
}

.tbc-new-latest .section-ready .background img {
  position: absolute;
  z-index: 5;
  display: block;
  width: 100%;
  height: auto;
}

.tbc-new-latest .section-ready .background .grad {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-ready .container {
  position: relative;
  z-index: 20;
  max-width: 1460px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-ready .container {
    max-width: 1260px;
  }
}

.tbc-new-latest .section-ready .container .content {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-ready .container .content {
    max-width: 800px;
  }
}

@media screen and (max-width: 1200px) {
  .tbc-new-latest .section-ready .container .content {
    width: 78%;
    max-width: 700px;
  }
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-ready .container .content {
    width: 100%;
  }
}

.tbc-new-latest .section-schedule {
  position: relative;
  z-index: 50;
  padding-bottom: 80px;
}

.tbc-new-latest .section-schedule .container {
  max-width: 870px;
}

.tbc-new-latest .section-schedule .content-1 {
  text-align: center;
  margin-bottom: 25px;
}

.tbc-new-latest .section-schedule .content-2 {
  text-align: center;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.tbc-new-latest .section-schedule .content-2 p {
  font-size: 21px;
  line-height: 31px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-schedule .content-2 p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-schedule .content-2 p {
    font-size: 18px;
    line-height: 28px;
  }
}

.tbc-new-latest .section-schedule .schedule-table {
  margin-bottom: 45px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
  border-color: #a70e27;
}

.tbc-new-latest .section-schedule .schedule-table .table-header,
.tbc-new-latest .section-schedule .schedule-table .table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 0 12px;
}

@media screen and (max-width: 700px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header,
  .tbc-new-latest .section-schedule .schedule-table .table-row {
    padding: 16px;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header:last-child,
.tbc-new-latest .section-schedule .schedule-table .table-row:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.tbc-new-latest .section-schedule .schedule-table .table-header>div,
.tbc-new-latest .section-schedule .schedule-table .table-row>div {
  padding: 14px;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #737373;
}

@media screen and (max-width: 700px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div,
  .tbc-new-latest .section-schedule .schedule-table .table-row>div {
    text-align: center;
    padding: 0;
    margin-bottom: 4px;
  }

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:last-child,
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:last-child {
    margin-bottom: 0;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(1),
.tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(1) {
  width: 48%;
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 44%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(1),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(1) {
    width: 100%;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(2),
.tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(2) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(2),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(2) {
    width: 100%;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(3),
.tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(3) {
  width: 26%;
}

@media screen and (max-width: 768px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 28%;
  }
}

@media screen and (max-width: 700px) {

  .tbc-new-latest .section-schedule .schedule-table .table-header>div:nth-child(3),
  .tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(3) {
    width: 100%;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header {
  padding-top: 5px;
  margin-bottom: -3px;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-schedule .schedule-table .table-header {
    display: none;
  }
}

.tbc-new-latest .section-schedule .schedule-table .table-header>div {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.tbc-new-latest .section-schedule .schedule-table .table-row:nth-child(odd) {
  background: #f7f7f7;
}

.tbc-new-latest .section-schedule .schedule-table .table-row>div:nth-child(1) {
  color: #213f48;
  font-weight: 600;
}

.tbc-new-latest .tbc-accordion-item {
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  margin-bottom: 20px;
  border-left: 16px solid #ddc4b2;
  padding-left: 18px;
  padding-right: 25px;
  border-color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .tbc-accordion-item {
    margin-bottom: 15px;
  }
}

.tbc-new-latest .tbc-accordion-item:last-child {
  margin-bottom: 0;
}

.tbc-new-latest .tbc-accordion-item.closed .acc-top .icons .fa-minus {
  display: none;
}

.tbc-new-latest .tbc-accordion-item.closed .acc-top .icons .fa-plus {
  display: block;
}

.tbc-new-latest .tbc-accordion-item .acc-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  min-height: 65px;
  padding: 16px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .tbc-accordion-item .acc-top {
    min-height: 60px;
    padding: 13px 0;
  }
}

.tbc-new-latest .tbc-accordion-item .acc-top .title {
  padding-right: 10px;
}

.tbc-new-latest .tbc-accordion-item .acc-top .title p {
  font-size: 18px;
  line-height: 22px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .tbc-accordion-item .acc-top .title p {
    font-size: 16px;
    line-height: 20px;
  }
}

.tbc-new-latest .tbc-accordion-item .acc-top .icons i {
  font-size: 22px;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-latest .tbc-accordion-item .acc-top .icons .fa-minus {
  display: block;
}

.tbc-new-latest .tbc-accordion-item .acc-top .icons .fa-plus {
  display: none;
}

.tbc-new-latest .tbc-accordion-item .acc-btm {
  display: none;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  padding-bottom: 16px;
}

.tbc-new-latest .tbc-accordion-item .acc-btm p {
  font-size: 16px;
  line-height: 28px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .tbc-accordion-item .acc-btm p {
    font-size: 14px;
    line-height: 26px;
  }
}

.tbc-new-latest .section-schedule-btm {
  position: relative;
  padding-top: 60px;
  height: 750px;
}

@media screen and (max-width: 1500px) {
  .tbc-new-latest .section-schedule-btm {
    padding-top: 20px;
    height: 600px;
  }
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-schedule-btm {
    height: 550px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-schedule-btm {
    height: auto;
    padding-bottom: 400px;
  }
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-schedule-btm {
    padding-top: 0;
  }
}

.tbc-new-latest .section-schedule-btm .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 90%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .tbc-new-latest .section-schedule-btm .background {
    background-position-x: 65%;
  }
}

.tbc-new-latest .section-schedule-btm .background .grad-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-schedule-btm .background .grad-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(227, 207, 192, 0.92) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e3cfc0, GradientType=1);
  /* IE6-9 */
  height: 32%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#ffffff, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-schedule-btm .container {
  max-width: 890px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-schedule-btm .container {
    max-width: 850px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-schedule-btm .container {
    max-width: 700px;
  }
}

.tbc-new-latest .section-schedule-btm .content p {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-schedule-btm .content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-schedule-btm .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

.tbc-new-latest .section-pricing {
  padding: 105px 50px 125px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-pricing {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing {
    padding-top: 75px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-pricing {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .section-pricing .container-1 {
  max-width: 1000px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .container-1 {
    max-width: 500px;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-latest .section-pricing .container-1 {
    margin-bottom: 20px;
  }
}

.tbc-new-latest .section-pricing .container-2 {
  max-width: 560px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .container-2 {
    max-width: 470px;
  }
}

.tbc-new-latest .section-pricing .content-1 {
  margin-bottom: 24px;
  text-align: center;
}

.tbc-new-latest .section-pricing .price-items .price-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin: 18px 0;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .price-items .price-item {
    margin: 16px 0;
  }
}

.tbc-new-latest .section-pricing .price-items .price-item.animate>div:nth-child(1) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-latest .section-pricing .price-items .price-item.animate>div:nth-child(2) {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(1) {
  position: relative;
  left: -60px;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #213f48;
  padding-right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 550px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 16px;
    width: calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: -o-calc(100% - 110px);
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 14px;
    width: calc(100% - 91px);
    width: -moz-calc(100% - 91px);
    width: -webkit-calc(100% - 91px);
    width: -o-calc(100% - 91px);
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(1) {
    font-size: 13px;
    padding-right: 0;
  }
}

.tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(1) i {
  vertical-align: super;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(2) {
  position: relative;
  left: 60px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 18px;
  line-height: 1.3em;
  color: #9c9c9c;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 16px;
  }
}

@media screen and (max-width: 550px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-latest .section-pricing .price-items .price-item>div:nth-child(2) {
    font-size: 12px;
  }
}

.tbc-new-latest .section-pricing .price-items .price-item:hover>div {
  color: #caa388;
  color: #a70e27;
}

.tbc-new-latest .section-pricing .total-price {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 18px 0;
  margin-top: 35px;
}

.tbc-new-latest .section-pricing .total-price::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: -3%;
  width: 106%;
  height: 1px;
  background: #9c9c9c;
}

.tbc-new-latest .section-pricing .total-price>div:nth-child(1) {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #213f48;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .total-price>div:nth-child(1) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-latest .section-pricing .total-price>div:nth-child(1) {
    font-size: 7vw;
  }
}

.tbc-new-latest .section-pricing .total-price>div:nth-child(2) {
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ddc4b2;
  position: relative;
  color: #a70e27;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .total-price>div:nth-child(2) {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .tbc-new-latest .section-pricing .total-price>div:nth-child(2) {
    font-size: 7vw;
  }
}

.tbc-new-latest .section-pricing .value {
  margin-top: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 34px;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .value {
    font-size: 22px;
    line-height: 30px;
  }
}

.tbc-new-latest .section-pricing .per-month {
  margin-top: 35px;
  background: white;
  border-radius: 9px;
  border-top: 16px solid #ddc4b2;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 25px 15px;
  text-align: center;
  border-color: #a70e27;
}

.tbc-new-latest .section-pricing .per-month>div:nth-child(1) {
  font-size: 158px;
  line-height: 160px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-pricing .per-month>div:nth-child(1) {
    font-size: 118px;
    line-height: 120px;
  }
}

@media screen and (max-width: 450px) {
  .tbc-new-latest .section-pricing .per-month>div:nth-child(1) {
    font-size: 100px;
    line-height: 102px;
  }
}

.tbc-new-latest .section-pricing .per-month>div:nth-child(2) {
  margin-top: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #9c9c9c;
}

@media screen and (max-width: 450px) {
  .tbc-new-latest .section-pricing .per-month>div:nth-child(2) {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}

.tbc-new-latest .section-work {
  padding-bottom: 130px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-work {
    padding-bottom: 115px;
  }
}

@media screen and (max-width: 900px) {
  .tbc-new-latest .section-work {
    padding-bottom: 70px;
  }
}

.tbc-new-latest .section-work .right-side .content {
  max-width: 800px;
  padding-right: 0;
}

.tbc-new-latest .section-order {
  padding: 100px 50px 180px 50px;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-order {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-latest .section-order {
    padding-top: 80px;
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-latest .section-order {
    padding-top: 65px;
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order {
    padding-bottom: 210px;
  }
}

.tbc-new-latest .section-order .container {
  max-width: 1600px;
}

.tbc-new-latest .section-order .content-1 {
  text-align: center;
  margin-bottom: 40px;
}

.tbc-new-latest .section-order .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .tbc-new-latest .section-order .cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.tbc-new-latest .section-order .cols.animated .col-1,
.tbc-new-latest .section-order .cols.animated .col-2,
.tbc-new-latest .section-order .cols.animated .col-3 {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1250px) {
  .tbc-new-latest .section-order .cols {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 800px) {
  .tbc-new-latest .section-order .cols {
    max-width: 500px;
  }
}

.tbc-new-latest .section-order .cols .col-1 {
  left: -100px;
}

.tbc-new-latest .section-order .cols .col-1,
.tbc-new-latest .section-order .cols .col-3 {
  width: 27%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  left: -100px;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

@media screen and (max-width: 1250px) {

  .tbc-new-latest .section-order .cols .col-1,
  .tbc-new-latest .section-order .cols .col-3 {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 48.5%;
  }
}

@media screen and (max-width: 800px) {

  .tbc-new-latest .section-order .cols .col-1,
  .tbc-new-latest .section-order .cols .col-3 {
    width: 100%;
  }
}

.tbc-new-latest .section-order .cols .col-2 {
  width: 40%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  top: 100px;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
  -o-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

@media screen and (max-width: 1440px) {
  .tbc-new-latest .section-order .cols .col-2 {
    width: 41.8%;
  }
}

@media screen and (max-width: 1250px) {
  .tbc-new-latest .section-order .cols .col-2 {
    margin-top: 30px;
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-ordinal-group: 3;
    -ms-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
}

.tbc-new-latest .section-order .cols .col-3 {
  left: 100px;
}

.tbc-new-latest .section-order a.order-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.2);
}

.tbc-new-latest .section-order a.order-cell:hover::before {
  opacity: 0.9;
}

.tbc-new-latest .section-order .order-cell {
  display: block;
  position: relative;
  width: 100%;
  background: white;
  text-align: center;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  margin-bottom: 20px;
  color: #213f48;
}

.tbc-new-latest .section-order .order-cell:last-child {
  margin-bottom: 0;
}

.tbc-new-latest .section-order .order-cell .color-primary {
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-latest .section-order .order-cell .extra-bold {
  font-weight: 900;
}

.tbc-new-latest .section-order .order-cell>* {
  position: relative;
  z-index: 10;
}

.tbc-new-latest .section-order .order-cell.cell-type-text-sm,
.tbc-new-latest .section-order .order-cell.cell-type-text-lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 83px;
  padding: 16px 18px;
}

.tbc-new-latest .section-order .order-cell.cell-type-text-lg>div {
  font-size: 28px;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-cell.cell-type-text-lg>div {
    font-size: 24px;
  }
}

.tbc-new-latest .section-order .order-cell.cell-type-img {
  padding: 20px;
}

.tbc-new-latest .section-order .order-cell.cell-type-img img {
  width: 90%;
  margin: 0 auto;
  height: auto;
}

.tbc-new-latest .section-order .order-cell.cell-bbb {
  min-height: 178px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-latest .section-order .order-cell.cell-bbb img {
  max-width: 300px;
}

.tbc-new-latest .section-order .order-cell.cell-trustpilot {
  min-height: 177px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-latest .section-order .order-cell.cell-trustpilot img {
  max-width: 280px;
}

.tbc-new-latest .section-order .order-cell.cell-media {
  min-height: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-latest .section-order .order-cell.cell-year>div {
  width: 85%;
  max-width: 270px;
  font-size: 18px;
  line-height: 28px;
}

.tbc-new-latest .section-order .order-cell.cell-advocacy>div {
  max-width: 301px;
}

.tbc-new-latest .section-order .order-cell.cell-tstm {
  text-align: left;
  padding: 20px;
}

.tbc-new-latest .section-order .order-cell.cell-tstm>div:nth-child(1) {
  font-size: 14px;
  line-height: 24px;
}

.tbc-new-latest .section-order .order-cell.cell-tstm>div:nth-child(2) {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-latest .section-order .order-cell.cell-tstm>div:nth-child(2)>span:nth-child(2) {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-latest .section-order .order-card {
  display: block;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-top: 16px solid #ddc4b2;
  border-radius: 9px;
  text-align: center;
  padding: 32px 28px 0 28px;
  border-color: #a70e27;
}

.tbc-new-latest .section-order .order-card .title {
  font-size: 28px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  .tbc-new-latest .section-order .order-card .title {
    font-size: 24px;
  }
}

.tbc-new-latest .section-order .order-card .list-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 15px auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .list-items {
    max-width: 300px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.tbc-new-latest .section-order .order-card .list-items>div {
  text-align: left;
  font-size: 16px;
  margin-bottom: 9px;
}

.tbc-new-latest .section-order .order-card .list-items>div i {
  color: #ddc4b2;
  margin-right: 5px;
  color: #a70e27;
}

.tbc-new-latest .section-order .order-card .list-items>div:nth-child(even) {
  width: 180px;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .list-items>div:nth-child(even) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-latest .section-order .order-card .list-items>div:nth-child(odd) {
  width: 235px;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .list-items>div:nth-child(odd) {
    width: 100%;
    text-align: center;
  }
}

.tbc-new-latest .section-order .order-card .price {
  font-size: 85px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-linear-gradient(#ddc4b2, #bea18c);
  background: -webkit-linear-gradient(#a70e27, #91051a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 500px) {
  .tbc-new-latest .section-order .order-card .price {
    font-size: 70px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-latest .section-order .order-card .price>span {
    display: none;
  }
}

.tbc-new-latest .section-order .order-card .price-per {
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #9c9c9c;
  font-size: 13px;
  margin-bottom: 10px;
}

.tbc-new-latest .section-order .order-card .btm-container {
  position: relative;
  z-index: 20;
  width: 90%;
  max-width: 480px;
  margin: 25px auto 0 auto;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .btm-container .select-items {
    margin-bottom: -20px;
  }
}

.tbc-new-latest .section-order .order-card .btm-container .select-items .select-item {
  position: relative;
  margin-bottom: 15px;
}

.tbc-new-latest .section-order .order-card .btm-container .select-items .select-item select {
  display: block;
  color: #213f48;
  border-radius: 9px;
  border: none;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  padding: 1.1em 17px;
  height: auto;
}

.tbc-new-latest .section-order .order-card .btm-container .select-items .select-item i {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 15px;
  font-size: 20px;
  color: #ddc4b2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #a70e27;
}

.tbc-new-latest .section-order .order-card .btm-container .select-items .select-item i:hover {
  color: #213f48;
}

.tbc-new-latest .section-order .order-card .btm-container .order-btn {
  cursor: pointer;
  position: relative;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  background: #ddc4b2;
  border-radius: 9px;
  padding: 22px 20px;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .btm-container .order-btn {
    padding: 18px;
  }
}

.tbc-new-latest .section-order .order-card .btm-container .order-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 9px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  /* Old browsers */
  background: -moz-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(235deg, #ddc4b2 0%, #bea18c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ddc4b2, endColorstr=#bea18c, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#038543+0,5ead4c+100 */
  background: #038543;
  /* Old browsers */
  background: -moz-linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(235deg, #a70e27 0%, #91051a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a70e27, endColorstr=#91051a, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.tbc-new-latest .section-order .order-card .btm-container .order-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: 9px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: black;
}

.tbc-new-latest .section-order .order-card .btm-container .order-btn:hover::after {
  opacity: 0.1;
}

.tbc-new-latest .section-order .order-card .btm-container .order-btn>div {
  position: relative;
  z-index: 10;
  font-size: 28px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: white;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .btm-container .order-btn>div {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .tbc-new-latest .section-order .order-card .btm-container .order-btn>div {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.tbc-new-latest .section-order .order-card .order-links {
  position: absolute;
  z-index: 10;
  padding-top: 60px;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .order-links {
    padding-top: 70px;
  }
}

.tbc-new-latest .section-order .order-card .order-links>* {
  font-size: 13px;
  color: #9c9c9c;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .order-links>* {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.tbc-new-latest .section-order .order-card .order-links a:hover {
  color: #213f48;
}

.tbc-new-latest .section-order .order-card .order-links .sep {
  margin: 0 10px;
}

@media screen and (max-width: 540px) {
  .tbc-new-latest .section-order .order-card .order-links .sep {
    display: none;
  }
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_video"] .inner-1 {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_video"] .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 {
  max-width: 960px;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .inner-1 .inner-2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .content-1 {
  margin-bottom: 25px;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side {
    width: 100%;
    margin-bottom: 30px;
  }
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .left-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side {
    width: 100%;
  }
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content i {
  color: #ddc4b2;
  margin-right: 8px;
  color: #a70e27;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>* {
  margin-bottom: 7px;
}

.tbc-new-latest .tbc-lightbox[data-lightbox-id="order_includes"] .flex .right-side .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-latest .section-signature {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tbc-new-latest .section-signature::before {
  content: '';
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 75%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=white, GradientType=1);
  /* IE6-9 */
}

.tbc-new-latest .section-signature .background-image {
  z-index: 5;
}

.tbc-new-latest .section-signature .container {
  z-index: 20;
  max-width: 700px;
}

.tbc-new-latest .section-signature .container .content {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .section-signature .container .content {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .section-signature .container .content .img {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
  margin-top: -8px;
}

.tbc-new-latest .section-signature .container .content>* {
  margin-bottom: 18px;
}

.tbc-new-latest .section-signature .container .content>*:last-child {
  margin-bottom: 0;
}

.tbc-new-latest .tbc-lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: none;
  padding: 120px 40px 60px 40px;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .tbc-lightbox {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .tbc-lightbox.lb-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.tbc-new-latest .tbc-lightbox>.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: black;
  opacity: 0.4;
}

.tbc-new-latest .tbc-lightbox .inner-1 {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 900px;
  margin: auto auto;
  background: white;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-top: 16px solid #ddc4b2;
  overflow-y: auto;
  padding-top: 45px;
  padding-bottom: 55px;
  padding-left: 50px;
  padding-right: 50px;
  border-color: #a70e27;
}

@media screen and (max-width: 700px) {
  .tbc-new-latest .tbc-lightbox .inner-1 {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.tbc-new-latest .tbc-lightbox .inner-1>.close {
  position: absolute;
  top: 0;
  right: 0;
}

.tbc-new-latest .tbc-lightbox .inner-1>.close i {
  cursor: pointer;
  font-size: 20px;
  padding: 10px 20px;
}

.tbc-new-latest .tbc-lightbox .inner-1>.close i:hover {
  color: #ddc4b2;
  color: #a70e27;
}

.tbc-new-latest *[data-lightbox-open] {
  cursor: pointer;
}

a[type="button"] {
  -webkit-appearance: none !important;
}

#EntireBody.bootcamp-members-2019 #DashboardMenuDiv h1 {
  text-transform: none !important;
}

.outer_div {}

#HelpInnerDiv {
  width: 800px;
  height: 400px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
  background: #b41932;
  margin-top: 30px;
  overflow: hidden;
  font-family: 'Trirong', sans-serif !important;

}

#HelpDiv {
  width: 800px;
  height: 400px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
  background: #b41932;
  margin-top: 30px;
  margin-bottom: 50px !important;

}

#HelpOuterDiv {
  min-height: 600px;
  height: calc(100vh - 60px)
}

#HelpTitle {
  font-size: 28px;
  font-weight: 300;
  margin: 0 0;
  padding: 15px 0px;
  background: white;
  color: #b41932;
  border: solid 2px #b41932;
  border-bottom: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv {
  float: left;
  width: 300px;
  height: 300px;
  background: white;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  margin-top: 20px;
  margin-left: 20px;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv h1 {
  font-size: 23px;
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 0px;
  color: #b41932;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv span {
  display: block;
  font-weight: 300;
  font-size: 23px;
  text-transform: uppercase;
  padding-top: 5px;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv img {
  height: 125px;
  width: 125px;

  border: solid 5px white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  object-fit: cover;
  display: block;
  background: black;
  margin: 0 auto;
  border-radius: 50%;
  margin-top: 10px
}

#HelpMFDiv button {
  height: 50px;
  width: 230px;
  background: #b41932;
  text-align: center;
  display: block;
  font-size: 25px;
  margin: 0 auto;
  color: white;
  font-weight: 200;
  padding-top: 7px;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-top: 5px;
  cursor: pointer;
  border: none;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#HelpMFDiv small {
  display: block;
  clear: both;
  width: 100%;
  margin-top: 0px;
  font-size: 13px;
  font-weight: 300;
  color: dimgray;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv a {
  background: none;
  box-shadow: none;
  margin: 0 0;
  height: 0px;
  font-size: 11px;
  text-decoration: none;
  color: #b41932;
  padding-top: 5px;
  font-weight: 500;
  display: block;

  margin: 0 auto;
  width: 150px;
  font-family: 'Trirong', sans-serif !important
}

#HelpMFDiv a:hover {
  text-decoration: underline;
}

#HelpOtherDiv {
  float: left;
  width: calc(100% - 320px);
  overflow: hidden;
  height: 100%;
}

#HelpOtherDiv h1 {
  font-size: 20px;
  font-weight: 200;
  margin-top: 30px;
  color: white;
  font-family: 'Trirong', sans-serif !important
}

#HelpOtherDiv span {
  display: block;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 5px;
  font-family: 'Trirong', sans-serif !important
}

#HelpOtherDiv button {
  height: 50px;
  width: 230px;
  background: white;
  text-align: center;
  display: block;
  font-size: 25px;
  margin: 0 auto;
  color: #b41932;
  font-weight: 200;
  padding-top: 7px;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-top: 0px;
  cursor: pointer;
  border: none;
  font-family: 'Trirong', sans-serif !important
}

#HelpOtherDiv button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#HelpOtherDiv a {
  background: none;
  box-shadow: none;
  margin: 0 0;
  height: 0px;
  font-size: 11px;
  text-decoration: none;
  color: white;
  padding-top: 3px;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  width: 150px;
  font-family: 'Trirong', sans-serif !important
}

#HelpOtherDiv a:hover {
  text-decoration: underline;
}

#HelpOtherDiv img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  border: solid 5px white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-left: 10px;
  margin-right: 10px;
  object-fit: cover;
  margin-top: 0px;

}

#HelpOtherDiv small {
  display: block;
  clear: both;
  width: 100%;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 300;
  color: white;
  padding-bottom: 5px;
  opacity: white;
  font-family: 'Trirong', sans-serif !important
}

#PluggedInDiv {
  background: #b41932;
  width: 800px;
  height: 100px;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-family: 'Trirong', sans-serif !important
}

.tab-pane #PluggedInDiv,
#Module-0.tab-pane .outer_div {
  display: none;
}

#Module-10.tab-pane #PluggedInDiv,
#Module-11.tab-pane #PluggedInDiv {
  display: block !important;
}

#PluggedInDiv h1 {
  color: white;
  font-size: 28px;
  font-weight: 100;
  float: left;
  padding-left: 30px;
  margin-top: 23px;
  margin-bottom: 0px;
  font-family: 'Trirong', sans-serif !important
}

#PluggedInDiv h2 {
  color: white;
  font-size: 17px;
  font-weight: 300;
  float: left;
  padding-left: 50px;
  margin-top: 3px;
  text-align: right;
  width: 527px;
  font-family: 'Trirong', sans-serif !important
}

#PluggedInDiv button {
  height: 50px;
  width: 200px;
  font-size: 19px;
  color: #b41932;
  font-weight: 300;
  background: white;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  margin-top: 25px;
  margin-left: 40px;
  font-family: 'Trirong', sans-serif !important
}

#PluggedInDiv button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.welcome-box {
  width: 90%;
  background: #fff;
  box-shadow: 0 0 50px rgba(136, 0, 0, 0.15);
  border-radius: 10px;
  padding: 50px 50px;
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  line-height: 28px;
}

.welcome-presentation {
  margin-bottom: 40px;
}

.welcome-presentation h1 {
  font-size: 42px;
  color: #880000;
  font-weight: 700;
  line-height: 1;
  margin: 2.1rem 0 1.68rem 0;
  text-transform: uppercase;
}

.welcome-box .button,
.next_btn,
.next_btn:focus {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 3px;
  margin-right: 15px;
  cursor: pointer;
  color: white;
  background: #8e162a;
  margin-top: 10px;
  display: inline-block;
  border: none;
}

.welcome-box .button:hover,
.next_btn:hover {
  background: #b51b34;
}

.sidenav #Module-0-tab.nav-link.active {
  color: #ffffff !important;
  background-color: #881c19 !important;
  border-color: #9e362b #9e362b #9e362b;
}

#Module-0 .module-title,
#Module-0 .module-details q,
#Module-0 .video-presentation,
#Module-0 .audio-presentation,
#Module-0 .pdf-presentation,
#Module-0 .important-reminder {
  display: none !important;
}

.dashboard-wrapper a#Module-11-tab .nexttab.next_btn {
  display: none !important;
}

#Module-1 .previous-reminder {
  display: none !important;
}

.last .nexttab {
  display: none !important;
}

@media only screen and (max-width:900px) {
  .outer_div {
    margin-left: 305px;
  }

  #HelpDiv {
    width: 95%;
    height: auto !important;
    max-width: 400px;
  }
}

@media only screen and (max-width:767px) {
  .outer_div {
    margin-left: 0px;
    display: block;
    text-align: center;
    width: 100%;
  }

  #HelpDiv {
    width: 95%;
    height: auto;
    max-width: 400px;
  }

  #HelpInnerDiv {
    width: 95%;
    height: 780px;
    margin-top: 120px;
    max-width: 400px;
  }

  #HelpTitle {
    padding: 20px 20px;
  }

  #HelpMFDiv {
    float: none;
    margin: 0 auto;
    margin-top: 30px;
  }

  #HelpOtherDiv {
    float: none;
    width: 95%;
    margin: 0 auto;
    height: auto;
    padding-bottom: 30px;
  }

  #HelpOtherDiv a {
    margin-top: 7px;
  }

  #HelpOtherDiv img {
    width: 90px;
    height: 90px;
    margin: 0 3px;
  }

  #HelpOtherDiv small {
    font-size: 12px;
    margin-bottom: 7px;
  }

  #HelpOtherDiv span {
    width: 250px;
    margin: 0 auto;
    font-size: 23px;
    line-height: 120%;
  }

  #PluggedInDiv {
    width: 95%;
    max-width: 400px;
    overflow: hidden;
    margin-top: 40px;
    height: auto;
  }

  #PluggedInDiv h1 {
    float: none;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    padding-top: 15px;
    font-size: 27px;
    font-weight: 300;
  }

  #PluggedInDiv h2 {
    float: none;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-top: 5px;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
  }

  #PluggedInDiv button {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  #LoginInnerDiv {
    width: 310px;
  }

  #LoginInnerDiv i {
    left: calc((310px / 2) - 35px);

  }

  .welcome-box {
    width: 100%;
    padding: 30px 30px;
    font-size: 16px;
    line-height: 24px;
  }
}