html {
  padding-top: 80px;
  scroll-padding-top: 80px;
  -webkit-appearance: initial;
}

/* SVG */
.svg-animate {
  opacity: 1;
  stroke: black;
  stroke-dasharray: 1, 190;
  animation: dash 4s forwards;
}

@keyframes dash {
  from {
    stroke-dasharray: 1, 190;
  }

  to {
    stroke-dasharray: 190, 190;
  }
}

/* END SVG */

.bonusAnimation {
  animation: scaleBonus infinite alternate-reverse;
  animation-duration: 1s;
}

@keyframes scaleBonus {
  from {
    scale: 1;
  }

  to {
    scale: 1.4;
  }
}

.fadeIn {
  animation: fadeIn 0.5s forwards;
}

.fadeOut {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fw-bolder {
  font-weight: 800 !important;
}

.checkbox-container {
  min-width: 20px;
  min-height: 20px;
  border: 2px solid #ffc01f;
  border-radius: 2px;
}

.checkbox-container-red {
  min-width: 20px;
  min-height: 20px;
  border: 2px solid #c22f2f;
  border-radius: 2px;
}

.checkbox-container-teal {
  min-width: 20px;
  min-height: 20px;
  border: 2px solid #45cbcd;
  border-radius: 2px;
}

.checkbox-container-safety {
  width: 20px;
  height: 20px;
  border: 2px solid #7bc1c2;
  border-radius: 2px;
}

.consult-button {
  background-color: rgb(255, 184, 0);
  box-shadow: 0px 8.6871px 6.94968px rgba(50, 51, 51, 0.0798677),
    0px 3.43489px 2.74791px rgba(50, 51, 51, 0.0558033);
  color: black;
  transition-duration: 0.3s;
  transform: scale(1, 1);
}

.consult-button-red {
  background-color: #e64e45;
  box-shadow: 0px 8.6871px 6.94968px rgba(50, 51, 51, 0.0798677),
    0px 3.43489px 2.74791px rgba(50, 51, 51, 0.0558033);
  color: white;
  transition-duration: 0.3s;
  transform: scale(1, 1);
}

.consult-button-teal {
  background-color: #45cbcd;
  box-shadow: 0px 8.6871px 6.94968px rgba(50, 51, 51, 0.0798677),
    0px 3.43489px 2.74791px rgba(50, 51, 51, 0.0558033);
  color: white;
}

.hiddenContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.rotateZ {
  transition: transform 0.2s;
}

.circle-dropdawn {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
}

/* .circle-dropdawn:hover{
  background-color: #2E3540;;
  border: 1px solid #2E3540; 
  border-radius: 50%; 
  width: 24px; 
  height: 24px; 
  font-size: 1rem;
  color: white;
} */

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.text-mainYellow {
  color: #ffb800;
}

.text-mainRed {
  color: #e64e45;
}

.text-teal {
  color: #45cbcd !important;
}

.width-50p {
  width: 50% !important;
}

.width-100p {
  width: 100% !important;
}

.height-100p {
  height: 100% !important;
}

.opacity-0 {
  opacity: 0;
}

.opacity-09 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

.z-index-1031 {
  z-index: 1031;
}

.z-index-1032 {
  z-index: 1032;
}

.transition-03 {
  transition: 0.3s;
}

.transition-05 {
  transition: 0.5s;
}

.bg-black {
  background-color: black;
}

.bg-teal {
  background-color: #45cbcd;
}

.bg-red {
  background-color: #c93030;
}

.cursor-pointer {
  cursor: pointer;
}

.phoneCodeInput {
  border: none;
  border-radius: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #26292d;
  -webkit-appearance: initial;
  visibility: hidden;
}

/* POPUP */
.popup-h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 110%;
}

.popup-video-h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 0.87rem;
  line-height: 117%;
}

.popup-p1 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.015em;
}

.popup-video-p1 {
  font-style: normal;
  font-weight: normal;
  font-size: 0.87rem;
  line-height: 117%;
}

.freeLesson-input-popup {
  outline: none;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  letter-spacing: -0.045em;
  padding-top: 3px;
  padding-bottom: 3px;
  min-width: 100%;
  width: 100%;
  -webkit-appearance: initial;
}

.slideOutUp {
  animation: slideOutUp 0.3s forwards;
}

@keyframes slideOutUp {
  from {
    left: 0%;
  }

  to {
    left: -100%;
  }
}

.slideInUp {
  animation: slideInUp 0.3s forwards;
}

@keyframes slideInUp {
  from {
    left: 100%;
  }

  to {
    left: 0%;
  }
}

.number {
  max-height: 0px;
  animation: number-fill 4s alternate;
}

@keyframes number-fill {
  0% {
    max-height: 0px;
  }

  100% {
    max-height: 40px;
  }
}

.slideLogoUp {
  animation: slideUp 0.3s forwards;
}

.slideLogoDown {
  animation: slideDown 0.3s forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-60px);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-60px);
  }

  100% {
    transform: translateY(0px);
  }
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.pack-price {
  font-size: 44px;
  color: #2e3540;
}

.pack-price-old {
  font-size: 28px;
  text-decoration-line: line-through;
  text-decoration-color: #c93030;
}

.color-menu {
  color: #4f545c;
}

.block1-header-black {
  font-size: 1.43rem;
  line-height: 123.6%;
  letter-spacing: -0.055em;
  color: #2e3540;
}

.block1-header-yellow {
  font-size: 1.43rem;
  line-height: 123.6%;
  letter-spacing: -0.055em;
  color: #ffb800;
}

.block1-header-red {
  font-size: 1.43rem;
  line-height: 123.6%;
  letter-spacing: -0.055em;
  color: #c93030;
}

.block1-header-teal {
  font-size: 1.43rem;
  line-height: 123.6%;
  letter-spacing: -0.055em;
  color: #45cbcd;
}

.underlineImage {
  width: 160px;
  height: 15px;
}

.underlineImageTeal {
  width: 160px;
  height: 15px;
}

.warranty-text {
  font-size: 0.87rem;
  line-height: 129.6%;
  letter-spacing: -0.005em;
  color: #717988;
}

.responsive-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainVideo {
  position: absolute;
  width: 100%;
  padding-top: 56.25%;
  /* background-image: url('../images/authors/mainVideoImage.jpg');
  background-size: cover; */
}

.description-number {
  font-size: 2.37rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: #2e3540;
}

.description-label {
  font-size: 1rem;
  font-weight: bold;
  line-height: 105.1%;
  letter-spacing: -0.025em;
  color: #2e3540;
  max-width: 150px;
}

.description-text {
  font-size: 0.87rem;
  line-height: 125.6%;
  letter-spacing: -0.025em;
  color: rgba(113, 121, 136, 0.9);
}

.fakePopup-description {
  right: 0px;
  top: 25px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.header1 {
  font-size: 1.43rem;
  line-height: 94.6%;
  letter-spacing: -0.01em;
  color: #2e3540;
}

.header2 {
  font-size: 1.2rem;
  line-height: 105%;
  letter-spacing: -0.025em;
  color: #2e3540;
}

.about-link {
  text-decoration: none;
  font-size: 0.81rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  color: #000000;
}

.jobCounter {
  max-width: 150px;
}

.market-link {
  font-size: 1rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  color: #fb5e5e;
}

.market-header {
  font-size: 2.37rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  color: #2e3540;
}

.market-indeedHeader {
  font-weight: 500;
  font-size: 0.81rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  color: #000000;
}

.market-indeedHeader2 {
  font-weight: bold;
  font-size: 0.82rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: #000000;
}

.market-indeedTextGray {
  font-size: 0.6rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.7);
}

.indeedTextGradient {
  height: 66px;
  font-size: 0.87rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: rgba(0, 0, 0, 0.7);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
}

.market-indeedTextRating {
  font-weight: 500;
  font-size: 0.6rem;
  line-height: 132.1%;
  letter-spacing: -0.01em;
  color: #000000;
}

.marketData-card {
  border: 1px solid #ededed;
  border-radius: 7px;
  height: auto;
}

.marketData-logos {
  height: 16px;
}

.default-text {
  font-size: 0.81rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: #2d2d2d;
}

.forWhom-text1 {
  font-size: 0.87rem;
  line-height: 119.1%;
  letter-spacing: -0.025em;
  color: rgba(0, 0, 0, 0.7);
  max-width: 400px;
}

.forWhom-label {
  font-size: 1.12rem;
  line-height: 125.1%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.forWhom-text {
  font-size: 0.87rem;
  line-height: 125.1%;
  letter-spacing: -0.035em;
  color: #717988;
}

.forWhomImages {
  width: 56px;
  height: 57px;
  box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.03);
}

.willLearn-header {
  font-size: 1.31rem;
  line-height: 93.3%;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.exclusive-header {
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.willLearn-header2 {
  font-size: 1rem;
  line-height: 93.3%;
  letter-spacing: -0.015em;
  color: #fffefe;
}

.willLearn-text {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #555a66;
}

.willLearnIcons {
  width: 40px;
}

.teaching-header1 {
  font-size: 1.43rem;
  line-height: 93.1%;
  letter-spacing: -0.025em;
  color: #2e3540;
}

.teaching-header2 {
  font-size: 1.12rem;
  line-height: 125.1%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.teaching-text {
  font-size: 0.93rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: #717988;
}

.teaching-number-icons {
  height: 60px;
}

.teachingImage {
  position: absolute;
  top: 0px;
  left: 100%;
  width: 100%;
  height: auto;
}

#teachingImages {
  height: auto;
  width: 100%;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.02));
}

.programContent-header1 {
  font-size: 1.43rem;
  line-height: 107.3%;
  letter-spacing: -0.045em;
  color: #2e3540;
}

.programContent-text {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: rgba(0, 0, 0, 0.49);
}

.programContent-nr {
  font-size: 1.25rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.programContent-li {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #000000;
  max-width: 275px;
}

.programContent-li-text {
  font-size: 0.8rem;
  line-height: 135.3%;
  letter-spacing: -0.045em;
  color: #000000;
}

.programContentPlayButton {
  width: 20px;
  height: 20px;
}

.authorsDennisDescription {
}

.authorsDennisPhotoBlock {
  background: radial-gradient(
    58.64% 58.64% at 50% 41.36%,
    #ffe5a2 0%,
    #ffd058 100%
  );
}

.authorsNickPhotoBlock {
  background: radial-gradient(
    58.64% 58.64% at 50% 41.36%,
    #c93030be 0%,
    #c93030 100%
  );
}

.authorsDianaPhotoBlock {
  background: radial-gradient(
    58.64% 58.64% at 50% 41.36%,
    #d6faf9 0%,
    #c8f3f1 100%
  );
}

.authorImage {
  width: 100%;
  max-width: 260px;
  max-height: 314px;
}

.authorName {
  font-size: 1rem;
  line-height: 22px;
  color: #000000;
}

.authorDuty {
  font-size: 0.8rem;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
}

.authorDescription {
  font-size: 0.81rem;
  line-height: 121.8%;
  letter-spacing: -0.025em;
  color: #000000;
}

.freeLesson-header {
  font-size: 1.31rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.freeLesson-input {
  outline: none;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  letter-spacing: -0.045em;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 100%;
  -webkit-appearance: initial;
}

.freeLesson-button {
  outline: none;
  border: none;
  font-size: 1rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #1c1f25;
  background-color: #ffc01f;
  width: 100%;
}

.freeLesson-button-red {
  outline: none;
  border: none;
  font-size: 1rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: white;
  background-color: #c22f2f;
  width: 100%;
}

.freeLesson-button-teal {
  outline: none;
  border: none;
  font-size: 1rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: white;
  background-color: #45cbcd;
  width: 100%;
}

.freeLesson-text {
  font-size: 0.81rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.freeLesson-text-yellow {
  font-size: 0.81rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #f2b416;
}

.freeLesson-text-red {
  font-size: 0.81rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #c22f2f;
}

.freeLesson-text-teal {
  font-size: 0.81rem;
  line-height: 119.8%;
  letter-spacing: -0.015em;
  color: #45cbcd;
}

.freeLesson-successFormHeader {
  font-size: 2rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #ffb800;
}

.freeLesson-successFormHeader-teal {
  font-size: 2rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #45cbcd;
}

.freeLesson-successFormText {
  font-size: 1rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #ffffff;
  max-width: 100%;
}

.freeLesson-successFormImage {
  width: 110px;
  height: 110px;
}

.freeLesson-contentHeight {
  height: 400px;
}

.fragmentLabel {
  font-weight: bold;
  font-size: 1.31rem;
  line-height: 107.3%;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.fragmentVideoNr {
  font-size: 0.87rem;
  line-height: 117%;
  color: #717988;
}

.fragmentVideoLabel {
  font-size: 1rem;
  line-height: 117%;
  color: #ffffff;
  opacity: 0.9;
}

.fragmentVideoText {
  font-size: 0.81rem;
  line-height: 117%;
  color: #ffffff;
  opacity: 0.9;
}

.fragmentVideoPlayButton {
  width: 48px;
  height: 48px;
}

.videoFragments {
  transition: 0.7s;
  transform: translateX(-100%);
}

.fragmentVideoPopUp {
  position: absolute;
  width: 100%;
  padding-top: 58.25%;
  left: 0%;
}

.video-fragment {
  position: relative;
  min-width: 100%;
  cursor: pointer;
  filter: grayscale(1);
  transition: 0.5s;
  /* padding-right: 0%; */
}

/* .fragmentVideo1{
  position: absolute; 
  width: 100%; 
  padding-top: 56.25%; 
  left: -100%;
  background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo1.jpg');
  background-size: cover;
}
.fragmentVideo2{
  position: absolute; 
  width: 100%; 
  padding-top: 56.25%;
  left: 0%;
  background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo2.jpg');
  background-size: cover;
}
.fragmentVideo3{
  position: absolute; 
  width: 100%; 
  padding-top: 56.25%;
  right: -100%;
  background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo3.jpg');
  background-size: cover;
}
.fragmentVideo4{
  position: absolute; 
  width: 100%; 
  padding-top: 56.25%;
  right: -200%;
  background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo4.jpg');
  background-size: cover;
} */

.buyProfession-header1 {
  font-size: 1.62rem;
  line-height: 110.3%;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.buyProfession-text {
  font-size: 0.87rem;
  line-height: 104.1%;
  letter-spacing: -0.025em;
  color: #555a66;
}

.buyProfession-description {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  color: #555a66;
}

.buyProfession-extended {
  font-size: 1rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.buyProfession-extendedtext {
  font-size: 0.87rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #555a66;
}

.buyProfession-extendedprice {
  font-size: 0.87rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #ff5b51;
}

.buyProfession-goldnumber {
  font-size: 1.87rem;
  line-height: 132.1%;
  letter-spacing: -0.025em;
  color: #cfc5aa;
}

.buyProfession-goldtext {
  font-size: 0.75rem;
  line-height: 105.1%;
  letter-spacing: -0.025em;
  color: #cfc5aa;
}

.buyProfession-header {
  font-size: 1.43rem;
  line-height: 141.3%;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.buyProfession-headermoney {
  font-size: 1.68rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.buyProfession-smallText {
  font-size: 0.75rem;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #555a66;
}

.buyProfessionCountDown {
  background-color: #202126;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.counterDays {
  font-weight: bold;
  font-size: 2.12rem;
  line-height: 103.3%;
  color: #ff5b51;
}

.counterText {
  font-size: 0.75rem;
  line-height: 103.3%;
  color: #dcd3d3;
}

#paymentButtonActive {
  background-color: #ffb800;
  border: none;
  font-size: 1.06rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #16171a;
  width: 100%;
  outline: none;
}

#paymentButtonActiveSafety {
  background-color: #45cbcd;
  border: none;
  font-size: 1.06rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: white;
  width: 100%;
  outline: none;
}

#paymentButton {
  background-color: #3a3c42;
  border: none;
  font-size: 1.06rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #adafbd;
  width: 100%;
  margin-top: 30px;
  outline: none;
}

.paymentPackage {
  width: 100%;
  height: 60px;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 9%);
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 17px;
  padding-bottom: 17px;
  transition: 0.5s;
}

.paymentPackage:hover {
  width: 100%;
  height: 60px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 17px;
  padding-bottom: 17px;
  transition: 0.5s;
  cursor: pointer;
}

.paymentPackage-selected {
  width: 100%;
  height: 60px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 17px;
  padding-bottom: 17px;
  transition: 0.5s;
}

.payment-price {
  font-weight: bold;
  font-size: 20px;
  line-height: 107.3%;
  text-align: right;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.package-description {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.015em;
  color: #555a66;
  max-width: 100%;
}

.package-description-card {
  font-size: 14px;
  line-height: 131.8%;
  letter-spacing: -0.015em;
  color: #555a66;
  max-width: 80%;
}

.package-label {
  font-weight: bold;
  font-size: 18px;
  line-height: 93.3%;
  letter-spacing: -0.01em;
  color: white;
}

.full-pack-little {
  background-color: #45cbcd;
  font-weight: bold;
  font-size: 10px;
  line-height: 93.3%;
  letter-spacing: -0.01em;
  color: #ffffff;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.buyProfession-extendedblock {
  border: none;
}

.buyProfession-courselabel {
  font-size: 1rem;
  line-height: 93.3%;
  letter-spacing: -0.045em;
  color: #fffefe;
}

#standardPackage {
  position: absolute;
  left: 0%;
}

#paymentPackages {
  position: absolute;
  left: 0%;
}

#extendedPackage {
  position: absolute;
  left: 100%;
}

#paymentFormBlock {
  position: absolute;
  left: 100%;
}

.package-lesson-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  border: 2px solid #353840;
  font-weight: bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.025em;
  color: #bbbdc7;
}

.paymentForm {
  width: 100%;
}

.paymentFormLabel {
  font-size: 0.93rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #444855;
}

.paymentFormInput {
  color: white;
  background-color: transparent;
  border: none;
  border-radius: unset;
  border-bottom: 1px solid #5f6372;
  padding-bottom: 3px;
  margin-bottom: 2rem;
  font-size: 1.31rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  width: 100%;
  outline: none;
  -webkit-appearance: initial;
}

.slideOutLeft {
  animation-name: slideOutLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.slideOutRight {
  animation-name: slideOutRight;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.slideInRight {
  animation-name: slideInRight;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes slideOutLeft {
  from {
    left: 0%;
  }

  to {
    left: -100%;
  }
}

@keyframes slideInLeft {
  from {
    left: 100%;
  }

  to {
    left: 0%;
  }
}

@keyframes slideInRight {
  from {
    left: -100%;
  }

  to {
    left: 0%;
  }
}

@keyframes slideOutRight {
  from {
    left: 0;
  }

  to {
    left: 100%;
  }
}

.certificate-header {
  font-size: 1.43rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.certificate-greytext {
  font-size: 0.87rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #717988;
}

.certificate-duty {
  font-size: 1.31rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.certificate-salary {
  font-size: 1.31rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.certificate-header2 {
  font-size: 1.12rem;
  line-height: 103.3%;
  letter-spacing: -0.035em;
  color: #000000;
}

.certificate-features {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #000000;
}

.certificate-warrantyblock {
  background-color: #16171a;
  margin: auto;
}

.certificate-warrantyheader {
  font-size: 1rem;
  line-height: 106.3%;
  letter-spacing: -0.035em;
  color: #ffb800;
}

.certificate-warrantytext {
  font-size: 0.75rem;
  line-height: 106.3%;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.42);
}

.faq-header {
  font-size: 1.43rem;
  line-height: 98.8%;
  letter-spacing: -0.035em;
  color: #2e3540;
}

.showMore {
  font-size: 0.9rem;
  line-height: 119.8%;
  letter-spacing: -0.045em;
  text-decoration-line: underline;
  color: #000000;
}

.dropdawnMenu-links {
  font-size: 0.87rem;
  line-height: 20px;
  color: #3f444b;
}

.footer-links {
  font-size: 0.87rem;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-useful-links {
  font-size: 0.87rem;
  line-height: 87.3%;
  letter-spacing: -0.02em;
  color: #747881;
}

.footer-text {
  font-size: 0.81rem;
  line-height: 211.8%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-phone-text {
  font-size: 1.31rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.footer-phone-text:hover {
  font-size: 1.31rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #ffb800;
}

.footer-phone-text-teal {
  font-size: 1.31rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.footer-phone-text-teal:hover {
  font-size: 1.31rem;
  line-height: 119.8%;
  letter-spacing: -0.035em;
  color: #45cbcd;
}

.footer-smallText {
  font-size: 0.75rem;
  line-height: 15px;
  letter-spacing: -0.005em;
  color: #747881;
}

.footer-columnLabel {
  font-size: 1rem;
  line-height: 119.8%;
  letter-spacing: -0.03em;
  color: #f1f3f4;
}

.footer-mailLink {
  border: 1px solid #43464a;
  text-decoration: none;
}

.footer-mailText {
  font-size: 0.87rem;
  line-height: 119.8%;
  letter-spacing: -0.02em;
  color: #f3f3f3;
}

.footer-bgcolor {
  background-color: #1f2124;
}

.modal-fontSize {
  font-size: 0.7rem;
}

.freemodule-animationbutton {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

@media only screen and (min-width: 768px) {
  .fs-md-14 {
    font-size: 14px;
  }

  .pack-price {
    font-size: 48px;
    color: #2e3540;
  }

  .pack-price-old {
    font-size: 32px;
    text-decoration-line: line-through;
    text-decoration-color: #c93030;
  }

  .modal-fontSize {
    font-size: 1rem;
  }

  .jobCounter {
    max-width: 200px;
  }

  .fragmentVideoPlayButton {
    width: 64px;
    height: 64px;
    animation-name: scaleDown-fragment-button;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }

  .fragmentVideoPlayButton:hover {
    animation-name: scaleUp-fragment-button;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }

  @keyframes scaleUp-fragment-button {
    from {
      width: 64px;
      height: 64px;
    }

    to {
      width: 82px;
      height: 82px;
    }
  }

  @keyframes scaleDown-fragment-button {
    from {
      width: 82px;
      height: 82px;
    }

    to {
      width: 64px;
      height: 64px;
    }
  }

  .videoFragments {
    transition: 0.7s;
    transform: translateX(-26.12%);
  }

  .video-fragment {
    position: relative;
    min-width: 50%;
    cursor: pointer;
    filter: grayscale(1);
    transition: 0.5s;
    /* padding-right: 2%; */
  }

  .fragmentVideoText {
    font-size: 1.12rem;
    line-height: 117%;
    color: #ffffff;
  }

  /* .fragmentVideo1{
    position: absolute; 
    width: 50%;
    padding-top: 28.12%; 
    left: -26%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo1.jpg');
    background-size: cover;
    filter: grayscale(100);
  }
  .fragmentVideo2{
    position: absolute; 
    width: 50%;
    padding-top: 28.12%; 
    left: 25%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo2.jpg');
    background-size: cover;
  }
  .fragmentVideo3{
    position: absolute; 
    width: 50%;
    padding-top: 28.12%; 
    right: -26%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo3.jpg');
    background-size: cover;
    filter: grayscale(100);
  }
  .fragmentVideo4{
    position: absolute; 
    width: 50%;
    padding-top: 28.12%; 
    right: -77%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 60%, rgba(0,0,0, 1)100% ), url('../images/authors/fragmentVideo4.jpg');
    background-size: cover;
    filter: grayscale(100);
  } */
  .mainVideo {
    position: absolute;
    width: 100%;
    padding-top: 56.25%;
    /* background-image: url('../images/authors/mainVideoImage.jpg');
    background-size: cover; */
  }

  .showMore {
    font-size: 1.12rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    text-decoration-line: underline;
    color: #000000;
  }
}

@media only screen and (min-width: 992px) {
  .width-lg-50p {
    width: 50% !important;
  }

  .width-lg-100p {
    width: 100% !important;
  }

  /* POPUP */
  .popup-h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 2.12rem;
    line-height: 110%;
  }

  .popup-video-h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 1.37rem;
    line-height: 117%;
  }

  .popup-p1 {
    font-style: normal;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 140%;
    letter-spacing: -0.015em;
  }

  .popup-video-p1 {
    font-style: normal;
    font-weight: normal;
    font-size: 0.87rem;
    line-height: 117%;
  }

  .fragmentVideoPopUp {
    position: absolute;
    width: 50%;
    padding-top: 28.12%;
    left: 25%;
  }

  .authorsDianaPhotoBlock {
    background: #f5f8fa;
  }

  .fragmentVideoLabel {
    font-weight: bold;
    font-size: 1.62rem;
    line-height: 117%;
    color: #ffffff;
  }

  .responsive-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.03);
  }

  .fakePopup-description {
    right: -60px;
    top: 0px;
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
  }

  .buyProfessionCountDown {
    border: 1.5px solid #202126;
    background-color: transparent;
  }

  .buyProfession-header1 {
    font-size: 2.5rem;
    line-height: 110.3%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .package-description {
    font-size: 16px;
    line-height: 131.8%;
    letter-spacing: -0.015em;
    color: #555a66;
    max-width: 100%;
  }

  .package-label {
    font-weight: bold;
    font-size: 18px;
    line-height: 93.3%;
    letter-spacing: -0.01em;
    color: white;
  }

  .header1 {
    font-size: 2.5rem;
    line-height: 94.6%;
    letter-spacing: -0.01em;
    color: #2e3540;
  }

  .header2 {
    font-size: 1.4rem;
    line-height: 105%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .teaching-header1 {
    font-size: 2rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .teaching-bg-yellow {
    background-color: #ffb800;
  }

  .teaching-bg-red {
    background-color: #c93030;
  }

  .teaching-bg-teal {
    background-color: #7bc2c3;
  }

  .teaching-bg-black {
    background-color: #151617;
  }

  .teaching-header1 {
    font-size: 2.5rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .teaching-header2 {
    font-size: 1rem;
    line-height: 125.1%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .teaching-text {
    font-size: 0.7rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #717988;
  }

  .teaching-delimiter {
    width: 1px;
    height: 31px;
  }

  .fakePopup-teaching {
    width: 105%;
    right: -50px;
    box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.15);
  }

  .teaching-number-icons {
    height: 40px;
  }

  .programContent-header1 {
    font-size: 2.5rem;
    line-height: 107.3%;
    letter-spacing: -0.045em;
    color: #2e3540;
  }

  .programContent-text {
    font-size: 0.85rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #000000;
  }

  .programContent-li {
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #000000;
    max-width: 100%;
  }

  .programContentPlayButton {
    width: 30px;
    height: 30px;
  }

  .willLearn-header {
    font-size: 2rem;
    line-height: 93.3%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .freeLesson-input-popup {
    outline: none;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    letter-spacing: -0.045em;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 150px;
    width: 220px;
    max-width: 220px;
    -webkit-appearance: initial;
  }

  .authorsDennisDescription {
    width: 105%;
    right: -50px;
    box-shadow: 0px 40px 30px rgba(0, 0, 0, 0.05);
  }

  .authorsDennisPhotoBlock {
    background: #f3f3f1;
  }

  .authorsNickPhotoBlock {
    background: radial-gradient(
      58.64% 58.64% at 50% 41.36%,
      #f3f3f1 0%,
      #f3f3f1 100%
    );
  }

  .authorsDennisDescription {
    width: 105%;
    right: -50px;
    box-shadow: 0px 40px 30px rgba(0, 0, 0, 0.05);
  }

  .authorMainName {
    font-size: 1.6rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .authorMainDuty {
    font-size: 0.7rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: rgba(0, 0, 0, 0.4);
  }

  .authorMainDescription {
    font-size: 0.75rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: rgba(0, 0, 0, 0.7);
  }

  .authorMainLiText {
    font-size: 0.8rem;
  }

  .certificate-header {
    font-size: 2.5rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .certificate-warrantyblock {
    background-color: #27cd81;
  }

  .certificate-warrantyheader {
    font-size: 1.12rem;
    line-height: 106.3%;
    letter-spacing: -0.035em;
    color: #ffffff;
  }

  .certificate-warrantytext {
    font-size: 0.81rem;
    line-height: 106.3%;
    letter-spacing: -0.035em;
    color: #baffdf;
  }

  .faq-header {
    font-size: 2.5rem;
    line-height: 98.8%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .paymentPackage {
    width: 100%;
    height: auto;
    border: 2px solid rgb(255 255 255 / 9%);
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 17px;
    padding-bottom: 17px;
    transition: 0.5s;
  }

  .paymentPackage:hover {
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 17px;
    padding-bottom: 17px;
    transition: 0.5s;
  }

  .paymentPackage-selected {
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 17px;
    padding-bottom: 17px;
    transition: 0.5s;
  }

  .payment-package-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
  }

  .payment-package-circle-selected {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 2px solid white;
    background-color: #45cbcd;
  }

  .package-lesson-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    border: 2px solid #353840;
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.025em;
    color: #bbbdc7;
  }
}

@media only screen and (min-width: 992px) {
  .freeLesson-input {
    outline: none;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    letter-spacing: -0.045em;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 120px;
    width: 200px;
    max-width: 200px;
    -webkit-appearance: initial;
  }
}

@media only screen and (min-width: 1200px) {
  html {
    padding-top: 120px;
    scroll-padding-top: 120px;
  }

  .freemodule-animationbutton {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }

  .freemodule-button {
    font-size: 0.72rem;
    line-height: 1.12rem;
    text-shadow: 0px 0.765957px 0.382979px rgba(0, 0, 0, 0.05);
  }

  .freeLesson-contentHeight {
    height: 310px;
  }

  #languageSelector {
    width: 70px;
    height: 40px;
    max-height: 80px;
    overflow: hidden;
    margin-left: -2rem;
  }

  #consultationBlock {
    display: none;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 5px rgba(211, 211, 211, 0.3);
    margin-left: -1.5rem;
    margin-top: 3.5rem;
    max-width: 216px;
  }

  .menu-nav {
    font-size: 0.8rem;
    line-height: 1.12rem;
    color: #4f545c;
  }

  .menu-nav:hover {
    font-size: 0.8rem;
    line-height: 1.12rem;
    color: #4f545c;
  }

  .siteNavigation {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid transparent;
  }

  .siteNavigation:hover {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid #ffb800;
  }

  .siteNavigation-red {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid transparent;
  }

  .siteNavigation-red:hover {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid #c93030;
  }

  .siteNavigation-teal {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid transparent;
  }

  .siteNavigation-teal:hover {
    font-size: 0.9rem;
    line-height: 1.12rem;
    color: #4f545c;
    border-bottom: 2px solid #45cbcd;
  }

  .consult-button:hover {
    transition-duration: 0.3s;
    color: #4f545c;
    /* transform: scale(1.1, 1.1); */
    background-color: rgb(255, 184, 0);
  }

  .slideOutUp {
    animation: slideOutUp 0.3s forwards;
  }

  @keyframes slideOutUp {
    from {
      top: 0%;
    }

    to {
      top: -100%;
    }
  }

  .slideInUp {
    animation: slideInUp 0.3s forwards;
  }

  @keyframes slideInUp {
    from {
      top: 100%;
    }

    to {
      top: 0%;
    }
  }

  .number {
    max-height: 0px;
    animation: number-fill 4s alternate;
  }

  @keyframes number-fill {
    from {
      max-height: 0px;
    }

    to {
      max-height: 40px;
    }
  }

  #teachingImages {
    height: 420px;
    width: 100%;
  }

  .checkbox-container {
    width: 20px;
    height: 20px;
    border: 2px solid #ffc01f;
    border-radius: 2px;
  }

  .checkbox-container-red {
    width: 20px;
    height: 20px;
    border: 2px solid #c22f2f;
    border-radius: 2px;
  }

  .checkbox-container-teal {
    width: 20px;
    height: 20px;
    border: 2px solid #45cbcd;
    border-radius: 2px;
  }

  .circle-dropdawn {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
  }

  /* .circle-dropdawn:hover{
    background-color: #2E3540;;
    border: 1px solid #2E3540; 
    border-radius: 50%; 
    width: 30px; 
    height: 30px; 
    font-size: 1.5rem;
    color: white;
    padding-left: 1px;
  } */
  .block1-header-black {
    font-size: 3.5rem;
    line-height: 123.6%;
    letter-spacing: -0.055em;
    color: #2e3540;
  }

  .block1-header-yellow {
    font-size: 3.5rem;
    line-height: 123.6%;
    letter-spacing: -0.055em;
    color: #ffb800;
  }

  .block1-header-red {
    font-size: 3.5rem;
    line-height: 123.6%;
    letter-spacing: -0.055em;
    color: #c93030;
  }

  .block1-header-teal {
    font-size: 3.5rem;
    line-height: 123.6%;
    letter-spacing: -0.055em;
    color: #45cbcd;
  }

  .underlineImage {
    width: 253px;
    height: 25px;
  }

  .underlineImageTeal {
    width: 380px;
    height: 25px;
  }

  .teachingImage {
    top: 420px;
    position: absolute;
    width: 90%;
    height: 300px;
    left: 55%;
    margin-left: -262px;
  }

  .warranty-button {
    font-size: 1rem;
    line-height: 129.6%;
    letter-spacing: -0.005em;
    background: #e7ebf2;
    border-radius: 71px;
    color: #505966;
  }

  .warranty-text {
    font-size: 1.18rem;
    line-height: 129.6%;
    letter-spacing: -0.005em;
    color: #717988;
  }

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .description-number {
    font-size: 3.25rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .description-label {
    font-size: 1.31rem;
    font-weight: bold;
    line-height: 105.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
    max-width: 100%;
  }

  .description-text {
    font-size: 0.87rem;
    line-height: 125.6%;
    letter-spacing: -0.025em;
    color: rgba(113, 121, 136, 0.9);
  }

  .fakePopup-description {
    right: -90px;
    top: 0px;
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
  }

  .header1 {
    font-size: 3rem;
    line-height: 94.6%;
    letter-spacing: -0.01em;
    color: #2e3540;
  }

  .header2 {
    font-size: 1.8rem;
    line-height: 105%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .about-link {
    text-decoration: none;
    font-size: 0.93rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    color: #000000;
  }

  .market-link {
    font-size: 1rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    text-decoration-line: underline;
    color: #fb5e5e;
  }

  .market-header {
    font-size: 2.37rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    color: #2e3540;
  }

  .market-indeedHeader {
    font-weight: 500;
    font-size: 1rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    color: #000000;
  }

  .market-indeedHeader2 {
    font-weight: bold;
    font-size: 1.06rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #000000;
  }

  .market-indeedTextGray {
    font-size: 0.81rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.7);
  }

  .market-indeedTextRating {
    font-weight: 500;
    font-size: 0.81rem;
    line-height: 132.1%;
    letter-spacing: -0.01em;
    color: #000000;
  }

  .marketData-card {
    border: 1px solid #ededed;
    border-radius: 7px;
    height: auto;
  }

  .indeedTextGradient {
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      transparent
    );
  }

  .default-text {
    font-size: 1rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #2d2d2d;
  }

  .marketData-logos {
    height: 28px;
  }

  .forWhom-text1 {
    font-size: 1rem;
    line-height: 119.1%;
    letter-spacing: -0.025em;
    color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
  }

  .forWhom-label {
    font-size: 1.3rem;
    line-height: 125.1%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .forWhom-text {
    font-size: 1rem;
    line-height: 125.1%;
    letter-spacing: -0.035em;
    color: #717988;
  }

  .forWhomImages {
    width: 113px;
    height: 112px;
  }

  .willLearn-header {
    font-size: 2.5rem;
    line-height: 93.3%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .exclusive-header {
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
  }

  .willLearn-header2 {
    font-size: 1.3rem;
    line-height: 93.3%;
    letter-spacing: -0.015em;
    color: #fffefe;
  }

  .willLearn-text {
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #555a66;
  }

  .willLearnIcons {
    width: 48px;
  }

  .teaching-header1 {
    font-size: 2.5rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .teaching-header2 {
    font-size: 1.3rem;
    line-height: 125.1%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .teaching-text {
    font-size: 0.9rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #717988;
  }

  .teaching-delimiter {
    width: 1px;
    height: 51px;
  }

  .fakePopup-teaching {
    width: 105%;
    right: -50px;
    box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.15);
  }

  .teaching-number-icons {
    height: 40px;
  }

  .programContent-header1 {
    font-size: 3rem;
    line-height: 107.3%;
    letter-spacing: -0.045em;
    color: #2e3540;
  }

  .programContent-nr {
    font-size: 1.62rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .programContent-li {
    font-size: 1.3rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #000000;
    max-width: 100%;
  }

  .programContent-li-text {
    font-size: 1rem;
    line-height: 135.3%;
    letter-spacing: -0.045em;
    color: #000000;
  }

  .authorsDennisDescription {
    width: 105%;
    right: -50px;
    box-shadow: 0px 40px 30px rgba(0, 0, 0, 0.05);
  }

  .authorMainName {
    font-size: 1.8rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: #2e3540;
  }

  .authorMainDuty {
    font-size: 0.73rem;
    line-height: 93.1%;
    letter-spacing: -0.025em;
    color: rgba(0, 0, 0, 0.4);
  }

  .authorMainDescription {
    font-size: 0.81rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: rgba(0, 0, 0, 0.7);
  }

  .authorMainLiText {
    font-size: 1rem;
  }

  .freeLesson-header {
    font-size: 1.75rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .freeLesson-input-popup {
    outline: none;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    letter-spacing: -0.045em;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 150px;
    width: 170px;
    max-width: 170px;
    -webkit-appearance: initial;
  }

  .freeLesson-button {
    outline: none;
    border: none;
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #1c1f25;
    background-color: #ffc01f;
    width: auto;
  }

  .freeLesson-button-red {
    outline: none;
    border: none;
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: white;
    background-color: #c22f2f;
    width: auto;
  }

  .freeLesson-button-teal {
    outline: none;
    border: none;
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: white;
    background-color: #45cbcd;
    width: auto;
  }

  .freeLesson-button:hover {
    background-color: #ff9900;
  }

  .freeLesson-button-safety {
    outline: none;
    border: none;
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #1c1f25;
    background-color: white;
    width: 200px;
  }

  .freeLesson-text {
    font-size: 0.81rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #ffffff;
  }

  .freeLesson-text-yellow {
    font-size: 0.81rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #f2b416;
  }

  .freeLesson-text-teal {
    font-size: 0.81rem;
    line-height: 119.8%;
    letter-spacing: -0.015em;
    color: #45cbcd;
  }

  .freeLesson-successFormHeader {
    font-size: 2.75rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #ffb800;
  }

  .freeLesson-successFormText {
    font-size: 2rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .freeLesson-successFormImage {
    width: 230px;
    height: 230px;
  }

  .fragmentLabel {
    font-weight: bold;
    font-size: 3rem;
    line-height: 107.3%;
    letter-spacing: -0.025em;
    color: #ffffff;
  }

  .fragmentVideoNr {
    font-size: 1rem;
    line-height: 117%;
    color: #717988;
  }

  .buyProfession-header1 {
    font-size: 3rem;
    line-height: 110.3%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .buyProfession-text {
    font-size: 1.12rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #555a66;
    max-width: 490px;
  }

  .buyProfession-description {
    font-size: 0.93rem;
    line-height: 119.8%;
    letter-spacing: -0.045em;
    color: #555a66;
    max-width: 450px;
  }

  .buyProfession-extended {
    font-size: 1rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #ffffff;
  }

  .buyProfession-extendedtext {
    font-size: 0.87rem;
    line-height: 103.3%;
    color: #555a66;
  }

  .buyProfession-extendedprice {
    font-size: 2.12rem;
    line-height: 103.3%;
    color: #ff5b51;
    font-weight: bold;
  }

  .buyProfession-goldnumber {
    font-size: 2.62rem;
    line-height: 132.1%;
    letter-spacing: -0.025em;
    color: #cfc5aa;
  }

  .buyProfession-goldtext {
    font-size: 1rem;
    line-height: 105.1%;
    letter-spacing: -0.025em;
    color: #cfc5aa;
  }

  .buyProfession-header {
    font-size: 2rem;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #ffffff;
  }

  .buyProfession-headermoney {
    font-size: 3rem;
    line-height: 119.8%;
    letter-spacing: -0.035em;
    color: #ffffff;
  }

  .buyProfession-buybutton {
    background-color: #ffb800;
    border: none;
    font-size: 1.06rem;
    line-height: 119.8%;
    letter-spacing: -0.035em;
    color: #16171a;
    margin-top: 0px;
  }

  .buyProfession-buybutton:hover {
    background-color: #ff9900;
  }

  .buyProfession-extendedblock {
    border: 1.5px solid #202126;
  }

  .buyProfession-courselabel {
    font-size: 1.31rem;
    line-height: 93.3%;
    letter-spacing: -0.045em;
    color: #fffefe;
  }

  #paymentFormBlock {
    position: absolute;
    left: 100%;
  }

  .paymentForm {
    /* position: absolute; */
    width: 350px;
  }

  .paymentPackage {
    width: 100%;
    height: auto;
    border: 2px solid rgb(255 255 255 / 9%);
    border-radius: 5px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 23px;
    padding-bottom: 23px;
    transition: 0.5s;
  }

  .paymentPackage:hover {
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 23px;
    padding-bottom: 23px;
    cursor: pointer;
    transition: 0.5s;
  }

  .paymentPackage-selected {
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 23px;
    padding-bottom: 23px;
    transition: 0.5s;
  }

  .payment-price {
    font-weight: bold;
    font-size: 30px;
    line-height: 107.3%;
    text-align: right;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .full-pack-little {
    background-color: #45cbcd;
    font-weight: bold;
    font-size: 18px;
    line-height: 93.3%;
    letter-spacing: -0.01em;
    color: #ffffff;
    padding-left: 9px;
    padding-right: 9px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .package-description {
    font-size: 14px;
    line-height: 131.8%;
    letter-spacing: -0.015em;
    color: #555a66;
    max-width: 100%;
  }

  .package-lesson-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    border-radius: 50%;
    border: 2px solid #353840;
    font-weight: bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.025em;
    color: #bbbdc7;
  }

  .certificate-header {
    font-size: 3rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .certificate-greytext {
    font-size: 1rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #717988;
  }

  .certificate-duty {
    font-size: 1.5rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .certificate-salary {
    font-size: 1.31rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #2e323a;
  }

  .certificate-header2 {
    font-size: 1.5rem;
    line-height: 103.3%;
    letter-spacing: -0.035em;
    color: #000000;
  }

  .certificate-features {
    font-size: 1rem;
    line-height: 119.8%;
    letter-spacing: -0.035em;
    color: #000000;
  }

  .faq-header {
    font-size: 3rem;
    line-height: 98.8%;
    letter-spacing: -0.035em;
    color: #2e3540;
  }

  .footer-text {
    font-size: 0.75rem;
    line-height: 119.8%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.3);
  }
}

@media only screen and (min-width: 1400px) {
  .pb-xxl-5-5 {
    padding-bottom: 4rem !important;
  }

  .menu-nav {
    font-size: 1rem;
    line-height: 1.12rem;
    color: #4f545c;
  }

  .menu-nav:hover {
    font-size: 1rem;
    line-height: 1.12rem;
    color: #4f545c;
  }

  .freemodule-animationbutton {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  .freemodule-button {
    font-size: 0.8rem;
    line-height: 1.12rem;
    text-shadow: 0px 0.765957px 0.382979px rgba(0, 0, 0, 0.05);
  }

  #languageSelector {
    width: 70px;
    height: 40px;
    max-height: 80px;
    overflow: hidden;
    margin-left: -1rem;
  }

  #consultationBlock {
    display: none;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 5px rgba(211, 211, 211, 0.3);
    margin-left: 0.35rem;
    margin-top: 3.5rem;
    max-width: 216px;
  }

  .teachingImage {
    top: 420px;
    position: absolute;
    height: 300px;
    left: 50%;
    margin-left: -262px;
  }

  .freeLesson-input {
    outline: none;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    letter-spacing: -0.045em;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 150px;
    width: 230px;
    max-width: 230px;
    -webkit-appearance: initial;
  }

  .buyProfession-header {
    font-size: 2.12rem;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #ffffff;
  }

  .buyProfession-header1 {
    font-size: 3.5rem;
    line-height: 110.3%;
    letter-spacing: -0.045em;
    color: #ffffff;
  }
}

/* Dimas css */

label.error {
  padding-top: 15px;
  color: red;
  font-size: 10px;
}

p.thank {
  color: #27cd81;
  font-size: 16px;
}
