@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FCFCFC;
}

main {
  min-height: 100vh;
  min-width: 300px;
}

.min-height {
  min-height: 100vw;
}

button {
  outline: 0;
  border: 0;
  background: transparent;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

main,
header > div {
  margin: auto;
  width: 100%;
  padding: 5px 20px;
  min-width: 300px;
  max-width: 1600px;
}

.progress-bar > span {
  height: 5px;
  background: orange;
  float: left;
}

#content_ifr {
  min-height: 500px !important;
}

#overview img {
  max-width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-success {
  background: #46E78D !important;
  border-color: #46E78D;
}

#announcements a {
  color: #3E3E3E;
}

a {
  transition: all 1s;
}

a:hover {
  text-decoration: none;
  color: #46E78E;
}

.pagination {
  padding: 20px 0;
  margin-top: 20px;
}
.pagination li {
  margin-right: 10px;
}
.pagination li a {
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all 1s;
}
.pagination li a:hover {
  color: #46E78E;
  background: #46E78E;
}
.pagination li:disabled a {
  background: #eaeaea;
  color: white !important;
}

.blog-single-category {
  border-radius: 20px;
  z-index: 10000;
  width: 300px;
  background: white;
  min-height: 40px;
}
.blog-single-category a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px;
}

/* Style the header */
.header {
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}

.vjs-paused > span::before, .vjs-playing > span::before {
  transform: translateX(-50px);
}

.btn.bg-yellow:hover {
  opacity: 0.6;
}

.bg-yellow {
  background: #FFF800 !important;
}

.btn.bg-success:hover {
  background: #46E78D !important;
  opacity: 0.6;
}

.btn {
  transition: 0.5s all;
}

.rounded-10 {
  border-radius: 10px !important;
}

.text-black {
  color: black !important;
}

.font-700 {
  font-weight: 700;
}

.bg-gray {
  background: #F3F2FF !important;
}

.text-gray {
  color: rgba(0, 0, 0, 0.5) !important;
}

.rounded-15 {
  border-radius: 15px !important;
}

#course-app > div {
  padding-top: 20px;
  max-width: 1600px;
}
#course-app > div .video-temp-window {
  width: 100%;
  background: black;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
#course-app > div .video-temp-window span {
  font-size: 30px;
  color: white;
}
#course-app > div .video-js {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
#course-app > div .video-js video {
  width: 100% !important;
}
#course-app > div .video-js .vjs-big-play-button {
  top: unset !important;
  left: unset !important;
}
#course-app > div .vjs-texttrack-settings {
  display: none;
}
#course-app > div .vjs-playback-rate-value {
  display: flex;
  justify-content: center;
  align-items: center;
}
#course-app > div .video-temp-window, #course-app > div .video-js {
  min-height: 300px;
  max-height: 300px;
}
@media only screen and (min-width: 992px) {
  #course-app > div .video-temp-window, #course-app > div .video-js {
    min-height: 500px;
    max-height: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  #course-app > div .video-temp-window, #course-app > div .video-js {
    min-height: 700px;
    max-height: 700px;
  }
}
#course-app > div .vjs-control-bar {
  padding-left: 20px;
}
#course-app > div .vjs-remaining-time {
  width: 50px !important;
}
#course-app > div .skip-back span:before {
  content: "<< ";
}
#course-app > div .skip-forward span:before {
  content: " >>";
}
#course-app > div #course-sections {
  max-height: 80vh;
  overflow-y: scroll;
  border-radius: 20px;
  padding-top: 10px;
  height: 100%;
}
#course-app > div #course-sections .single-section {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 10px;
  cursor: pointer;
}
#course-app > div #course-sections .single-section h3 {
  font-size: 20px;
  font-weight: normal;
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 50px;
}
#course-app > div #course-sections .single-section .completed {
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}
#course-app > div #course-sections .single-section .completed svg {
  fill: rgba(31, 220, 48, 0.6);
  transition: all 1s;
}
#course-app > div #course-sections .single-section .slider {
  margin-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 5px;
  display: flex;
  justify-content: center;
}
#course-app > div #course-sections .single-section .slider svg {
  fill: gray;
  transition: all 1s;
}
#course-app > div #course-sections .single-section #sub-section-container {
  padding: 0 10px;
}
#course-app > div #course-sections .single-section .sub-section {
  transition: all 1s;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#course-app > div #course-sections .single-section .sub-section h5 {
  font-weight: normal;
  font-size: 15px;
}
#course-app > div #course-text {
  background: #FFFFFF;
  margin-top: 20px;
  font-weight: normal;
  padding: 20px 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
#course-app > div #course-text h2 {
  padding-bottom: 10px;
  font-size: 20px;
}
#course-app > div #course-text .single-qa {
  margin-bottom: 5px;
}
#course-app > div #course-text .single-qa > div, #course-app > div #course-text .single-qa textarea, #course-app > div #course-text .single-qa button {
  border-radius: 20px;
  width: 100%;
}
#course-app > div #course-text .course-text-top {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#course-app > div #course-text .course-text-top button {
  text-align: center;
  padding: 5px;
  width: 50%;
  border-radius: 20px;
  margin-bottom: 20px;
}
#course-app > div #course-text .course-text-top .active-button {
  background: #F9A500;
  color: white;
}

header > div {
  height: 90px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  header > div {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  header > div .head-holder {
    width: 250px;
  }
}
header > div .logo {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  header > div .logo {
    justify-content: flex-start;
    width: auto;
  }
}
header > div .logo #logo {
  padding: 5px;
}
header > div .logo #logo img {
  width: 150px;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  header > div .logo #logo img {
    margin-top: 0;
    width: 220px;
  }
}
header > div .menu_wrapper {
  position: absolute;
  top: 30px;
  right: 40px;
}
header > div .menu_wrapper svg {
  width: 20px;
}

.announcements {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .announcements {
    width: unset;
  }
}
.announcements h4 {
  color: white;
}
@media only screen and (min-width: 992px) {
  .announcements h4 {
    color: #3E3E3E;
  }
}
.announcements > div {
  min-width: 100%;
  background: transparent;
  position: static;
  padding: 20px;
}
@media only screen and (min-width: 992px) {
  .announcements > div {
    min-width: 300px;
    max-width: 300px;
    position: absolute;
    background: white;
    top: 65px;
    right: 40px;
  }
}
.announcements a {
  display: block;
  float: right;
  width: 100%;
}
.announcements p {
  white-space: normal;
}
@media only screen and (max-width: 992px) {
  .announcements p {
    color: white;
  }
}

#menu {
  height: 100%;
  width: 50%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background: rgba(25, 25, 25, 0.7);
  display: none;
}
@media only screen and (min-width: 1200px) {
  #menu {
    width: 100%;
    display: flex;
    justify-content: center;
    position: static;
    background: transparent;
  }
}
#menu > ul {
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background: #191919;
  padding-top: 70px;
  right: 0;
  padding-bottom: 20px;
  width: 70%;
  position: fixed;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  #menu > ul {
    height: unset;
    width: unset;
    padding-bottom: 0;
    position: static;
    justify-content: center;
    flex-direction: row;
    padding-top: 0;
    background: transparent;
  }
}
#menu > ul > li {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #menu > ul > li {
    width: unset;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
#menu > ul > li a {
  padding: 10px 20px;
  font-size: 13px;
  color: #909090;
  transition: all 1s;
  cursor: pointer;
}
#menu > ul > li a svg {
  transition: fill 0.5s;
}
@media only screen and (min-width: 1200px) {
  #menu > ul > li a {
    color: #444444;
    font-size: 15px;
    white-space: nowrap;
  }
}
#menu > ul > li a:hover {
  text-decoration: none;
  opacity: 0.6;
}
#menu > ul > li a:hover svg {
  fill: #46E78D !important;
}
@media only screen and (min-width: 1200px) {
  #menu > ul > li:nth-last-child(1) {
    position: absolute;
    right: 0;
  }
}
#menu .user-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu .user-announcement .bell {
  height: 30px;
}
#menu .user-announcement .bell svg {
  width: 20px;
  fill: #444444;
  transition: all 1s;
}
#menu .user-announcement .bell svg:hover {
  fill: #46E78D;
}
#menu .user-announcement .bell span {
  background: red;
  width: 10px;
  height: 10px;
  font-size: 13px;
  top: 4px;
  right: 4px;
  transform: translate(8px, -5px);
  border-radius: 100px;
}
#menu #user-panel-icon svg {
  width: 25px;
  fill: #444444;
}

#close-menu {
  position: absolute;
  z-index: 1000;
  top: 30px;
  right: 30px;
}
@media only screen and (min-width: 1200px) {
  #close-menu {
    display: none;
  }
}
#close-menu svg {
  transform: rotate(45deg);
  fill: grey;
  width: 20px;
}

#budget-tools {
  position: relative;
}
#budget-tools ul {
  border-left: 1px solid white;
  margin-left: 20px;
}
@media only screen and (min-width: 1200px) {
  #budget-tools ul {
    top: 40px;
    position: absolute;
    right: -66px;
  }
}

#choose-plan {
  padding: 40px 10px;
  max-width: 1200px;
  margin: auto;
}
#choose-plan .popular {
  z-index: -1;
  color: white;
  position: absolute;
  right: -55px;
  top: 65px;
  background: #4285F4;
  padding: 2px;
  width: 200px;
  text-align: center;
  transform: rotate(40deg);
}
#choose-plan .choose-plan-single-top {
  width: 85%;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 10px;
}
#choose-plan .choose-plan-single-top .name {
  font-size: 20px;
  margin: 0;
}
#choose-plan .choose-plan-single-top .price {
  font-size: 35px;
  font-weight: bold;
  display: flex;
}
#choose-plan .choose-plan-single-top .price span, #choose-plan .choose-plan-single-top .price s, #choose-plan .choose-plan-single-top .price div {
  display: flex;
  align-items: center;
}
#choose-plan .choose-plan-single-top .year {
  font-size: 23px;
  color: #A0A0A0;
  font-weight: lighter !important;
}
#choose-plan .choose-plan-single {
  width: 310px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(75, 75, 75, 0.5);
  min-height: 510px;
}
@media only screen and (max-width: 992px) {
  #choose-plan .choose-plan-single {
    margin-bottom: 50px;
  }
}
#choose-plan .choose-plan-single .choose-plan-single-header {
  color: black;
  font-size: 20px;
  text-align: center;
  padding: 5px;
  z-index: 120;
}
#choose-plan .choose-plan-single .choose-plan-single-m1 {
  white-space: nowrap;
  padding: 2px 0;
  font-weight: lighter !important;
}
#choose-plan .choose-plan-single .choose-plan-single-m1 svg {
  margin-right: 10px;
}
#choose-plan .choose-plan-single .choose-plan-single-m1, #choose-plan .choose-plan-single .choose-plan-single-m2, #choose-plan .choose-plan-single .choose-plan-single-signup {
  width: 85%;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: center;
  margin: auto;
}
#choose-plan .choose-plan-single .choose-plan-single-m1:nth-child(1) {
  padding-top: 40px;
}
#choose-plan .choose-plan-single .choose-plan-single-m1:nth-last-child {
  padding-bottom: 20px;
}
#choose-plan .choose-plan-single .choose-plan-single-signup {
  width: 100%;
  justify-content: center;
  margin-top: 50px;
  position: absolute;
  bottom: 0;
}
#choose-plan .choose-plan-single .choose-plan-single-signup a {
  width: 85%;
  background: #46E78E;
  padding: 10px 25px;
  border-radius: 5px;
  color: black;
}

#question-answer {
  max-width: 1600px;
}
#question-answer * {
  color: #3E3E3E;
}
#question-answer form {
  max-width: 900px;
  margin: auto;
}
#question-answer form textarea {
  text-align: center;
}
#question-answer #qa-search-panel {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#question-answer #qa-search-panel input {
  border-radius: 20px;
  background: white;
  border: none;
}
#question-answer #qa-search-panel button {
  background: transparent;
  border: none;
}
#question-answer .single-qa {
  width: 100%;
  max-width: 500px;
  padding: 5px;
}
#question-answer .single-qa > div {
  cursor: pointer;
  min-height: 300px;
  border-radius: 20px !important;
}

#user-panel {
  height: 50px;
}
#user-panel > div {
  background: #f5f5f5;
  width: 100%;
  max-width: 1600px;
  border-radius: 20px;
  margin: auto;
  padding: 10px 30px;
}
#user-panel > div button {
  border-radius: 20px;
  padding: 5px 20px;
}

#payment > div {
  max-width: 500px;
  margin: auto;
}
#payment .accepted-container svg {
  width: 50px;
}
#payment .form {
  width: 100%;
}
#payment .form button {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: auto;
  background: #3E3E3E;
  color: white;
  margin-top: 20px;
  padding: 5px 30px;
  display: block;
}
#payment .form input, #payment .form textarea, #payment .form select {
  width: 100%;
  max-width: 500px;
  margin: auto;
  text-align: center;
  display: block;
  color: #3E3E3E;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#register *, #login *, #redeem *, #forgot *, #update-email *, #change-password * {
  font-weight: no;
}
#register h2, #login h2, #redeem h2, #forgot h2, #update-email h2, #change-password h2 {
  width: 100%;
  text-align: center;
  color: #3E3E3E;
  margin-bottom: 30px;
}
#register input, #login input, #redeem input, #forgot input, #update-email input, #change-password input {
  width: 100%;
  max-width: 400px;
  margin: auto;
  text-align: center;
  display: block;
  color: #3E3E3E;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#register input::placeholder, #login input::placeholder, #redeem input::placeholder, #forgot input::placeholder, #update-email input::placeholder, #change-password input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
}
#register button, #login button, #redeem button, #forgot button, #update-email button, #change-password button {
  padding: 10px 40px;
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
#register button svg, #login button svg, #redeem button svg, #forgot button svg, #update-email button svg, #change-password button svg {
  margin-right: 20px;
}
#register .or-splitter, #login .or-splitter, #redeem .or-splitter, #forgot .or-splitter, #update-email .or-splitter, #change-password .or-splitter {
  width: 100%;
  position: relative;
  max-width: 400px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}
#register .or-splitter > div:nth-child(1), #login .or-splitter > div:nth-child(1), #redeem .or-splitter > div:nth-child(1), #forgot .or-splitter > div:nth-child(1), #update-email .or-splitter > div:nth-child(1), #change-password .or-splitter > div:nth-child(1) {
  width: 100%;
  height: 2px;
  background: black;
}
#register .or-splitter > div:nth-child(2), #login .or-splitter > div:nth-child(2), #redeem .or-splitter > div:nth-child(2), #forgot .or-splitter > div:nth-child(2), #update-email .or-splitter > div:nth-child(2), #change-password .or-splitter > div:nth-child(2) {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translate(0, -13px);
}
#register .or-splitter > div:nth-child(2) span, #login .or-splitter > div:nth-child(2) span, #redeem .or-splitter > div:nth-child(2) span, #forgot .or-splitter > div:nth-child(2) span, #update-email .or-splitter > div:nth-child(2) span, #change-password .or-splitter > div:nth-child(2) span {
  margin: auto;
  background: white;
  padding: 0 20px;
}

#admin-root {
  max-width: 1200px;
  margin: auto;
}
#admin-root h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#admin-root .admin-single .admin-single-qa-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  #admin-root .admin-single .admin-single-qa-panel {
    justify-content: flex-end;
  }
}
#admin-root .admin-single .admin-single-qa-panel button, #admin-root .admin-single .admin-single-qa-panel span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-left: 10px;
}
#admin-root .admin-single .admin-single-qa-panel button svg, #admin-root .admin-single .admin-single-qa-panel span svg {
  fill: #3E3E3E;
}
#admin-root .admin-single .admin-single-qa-panel span {
  margin-right: 10px;
}

#blog {
  padding: 0;
}
#blog > div:nth-of-type(1) {
  width: 100%;
  background: #46E78D;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#blog > div:nth-of-type(2) {
  margin: auto;
  max-width: 1200px;
}
#blog h1 {
  font-size: 20px;
}
@media only screen and (min-width: 992px) {
  #blog h1 {
    font-size: 35px;
  }
}
#blog .single-post {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #blog .single-post {
    width: 50%;
  }
}
#blog .single-post > div {
  width: 100%;
}
#blog .single-post > div > div:nth-of-type(1) {
  width: 100%;
}
#blog .single-post > div > div:nth-of-type(1) img {
  width: 100%;
  border-bottom: 3px solid #43E089;
}
#blog .single-post > div > div:nth-of-type(2) h4 a {
  font-size: 20px;
  color: black !important;
}
#blog .single-post > div > div:nth-of-type(2) span {
  font-size: 14px;
  font-weight: lighter;
}
#blog .single-post > div > div:nth-of-type(2) svg {
  width: 14px;
  transform: translateY(-2px);
  margin-right: 5px;
}

#blog-single-page {
  max-width: 1200px;
  margin: auto;
  min-height: 80vh;
}
#blog-single-page img {
  width: 100%;
  height: auto;
}
#blog-single-page span, #blog-single-page a {
  color: #a8a8a8;
}
#blog-single-page svg {
  fill: #a8a8a8;
}
#blog-single-page h1, #blog-single-page h2, #blog-single-page h3 {
  margin: 0 0 0.35em;
}
#blog-single-page h1 {
  font-size: 40px;
}
#blog-single-page h2 {
  font-size: 28px;
}
#blog-single-page h3 {
  font-size: 20px;
}
#blog-single-page p {
  margin: 0 0 1.15em;
}
#blog-single-page p + h2 {
  margin-top: 1.5em;
}
#blog-single-page ol, #blog-single-page ul {
  padding-left: 20px;
}
#blog-single-page ol li, #blog-single-page ul li {
  list-style-type: unset;
}

#comments li {
  list-style-type: none !important;
}

#home {
  overflow: hidden;
}
@media (min-width: 992px) {
  #home h1 {
    font-size: 45px;
  }
}
#home h1 {
  font-size: 40px;
}
#home .btn-home {
  padding: 12px 25px;
  font-size: 18px;
  min-width: 220px;
  max-width: 220px;
}

.different-single {
  width: 320px;
  height: 200px;
  min-width: 320px;
  z-index: -2;
}

.testemonials-single {
  width: 330px;
  height: 300px;
  min-width: 330px;
}

.different-single h4 {
  font-size: 20px;
}

.testemonials-single h4 {
  font-size: 20px;
  height: 100%;
  display: block;
}

.different-single p, .testemonials-single p {
  font-size: 14px;
}

.testemonials-single span {
  width: 70px;
  height: 70px;
  background: yellow;
  display: block;
  border-radius: 100px;
}

.different-single span {
  top: -15px;
  font-size: 140px;
  right: 15px;
  color: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

#different > div:nth-child(2) > div, #testemonials > div:nth-child(2) > div {
  /*max-width: 900px;*/
}

#what-will-i-learn svg {
  width: 100% !important;
  max-width: 500px;
}

#what-will-i-learn h4 {
  font-size: 45px;
}
#what-will-i-learn p {
  font-size: 20px;
}

#home-free svg {
  max-height: 600px;
  max-width: 100%;
  /*transform: translateY(-70px);*/
}

#home-top svg {
  position: absolute;
  top: -70px;
  left: -50px;
  z-index: -1;
}

#home-video-container {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 350px;
  overflow: hidden;
  background: black;
  border: 5px solid black;
}
@media only screen and (max-width: 370px) {
  #home-video-container {
    height: 200px;
  }
}
@media only screen and (min-width: 992px) {
  #home-video-container {
    padding: 0;
    height: 614px;
  }
}
#home-video-container video {
  object-fit: cover;
}
#home-video-container .vjs-poster {
  background-size: cover;
}
#home-video-container .video-js {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  width: 100%;
  height: 100%;
}
#home-video-container .vjs-control-bar > div, #home-video-container .vjs-control-bar > button:not(.vjs-play-control) {
  display: none;
}
#home-video-container .vjs-volume-panel {
  display: block !important;
  transform: translateY(-30px);
  position: absolute;
  right: 20px;
}
#home-video-container .vjs-volume-panel > div {
  display: none;
}
#home-video-container .vjs-mute-control {
  display: block !important;
}
#home-video-container .vjs-play-control {
  transform: translate(50px, -20px);
}
#home-video-container .vjs-tech {
  width: 100%;
}
#home-video-container .vjs-tech:focus {
  outline: none;
}
#home-video-container .vjs-big-play-button {
  top: unset;
  left: unset;
}

#home-video-frame {
  width: 300px;
  display: block;
}
@media only screen and (min-width: 992px) {
  #home-video-frame {
    width: 450px;
  }
}

footer {
  margin: auto;
  margin-top: 50px;
  width: 100%;
  padding: 5px 20px;
  min-width: 300px;
  background: #46E78E;
}
footer p {
  color: black;
}
footer a {
  color: black;
}
footer svg {
  fill: #000000;
}

#contact {
  min-height: 80vh;
}
#contact > div:nth-of-type(1) {
  background: #46E78D;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact form {
  max-width: 700px;
  margin: auto;
  padding: 10px;
}
#contact form input, #contact form textarea {
  border: 1px solid #EBEBEB !important;
  background: white;
}
#contact form input::placeholder, #contact form textarea::placeholder {
  color: #A0A0A0;
  font-size: 15px;
  font-weight: lighter;
}
#contact h1 {
  font-size: 20px;
}
@media only screen and (min-width: 992px) {
  #contact h1 {
    font-size: 35px;
  }
}
#contact h2 {
  font-weight: lighter;
}
#contact button {
  background: #46E78D;
  max-width: 700px;
  margin: auto;
}

.text-success {
  color: #46E78D !important;
}

.bg-success {
  background: #46E78D !important;
}

.btn-warning {
  /*background: #F9A92B;*/
}

.bg-warning {
  /*background: #F9A92B;*/
}

#calculator-top {
  border-radius: 20px !important;
}

.calculator {
  border: 5px solid #F9A92B;
}

.payments {
  border: 1px solid #F9A92B;
  border-radius: 20px !important;
}

.payments-delete {
  top: 0;
  right: 15px;
  bottom: 0;
  height: 100%;
  width: 25px;
  transition: all 0.5s;
}

.payments-delete i {
  color: red;
  font-size: 23px;
  transition: all 0.5s;
}

.payments-delete:hover i {
  color: blue !important;
}

.calculator {
  border-radius: 20px !important;
  border-color: #F9A92B !important;
  border-width: 5px !important;
}

.calculator-table-slide-button {
  top: 30px;
  right: 20px;
}

.amortization {
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.86);
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 20px;
}

.amortization-tables-container {
  width: 100%;
}

.amortization > div {
  background: white;
  height: 90%;
  max-width: 100%;
  overflow-x: scroll;
}

.calculator-table {
  border-radius: 20px !important;
  border-color: #F9A92B !important;
  border-width: 5px !important;
  min-height: 150px;
  overflow: hidden;
}

.calculator-table table {
  margin-top: 80px;
}

.calculator-table table thead {
  background: white;
}

.amortization th {
  white-space: nowrap !important;
}
.amortization-close-button {
  right: -14px;
}

.loading-icon {
  width: 50px;
  height: 100%;
  right: 0;
  top: 0;
}

.loading-icon svg {
  width: 50px;
  height: 50px;
}

.calculator-popup {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  z-index: 3000;
}

.calculator-popup > div {
  background: white;
  max-width: 700px;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rollover {
  position: relative;
}

.rollover .rollover-tooltip {
  display: none;
  position: absolute;
  top: 20px;
  min-width: 300px;
  background: black;
  color: white;
  padding: 10px;
  z-index: 1000;
  border-radius: 10px;
}

.rollover:hover .rollover-tooltip {
  display: block;
}

.amortization-tables-container > div:nth-child(1) {
  margin-top: 150px;
}

.amortization-head > div {
  position: fixed;
  left: 30px;
  right: 30px;
  z-index: 2000;
  width: auto;
  margin: auto;
}

.amortization-head > div > div {
  width: 94%;
  margin: auto;
  background-color: white;
  border-radius: 20px;
}

.scrolled {
  top: 0;
}

.scrolled > div {
  position: fixed;
  left: 80px;
  right: 80px;
  top: 220px;
  width: auto;
  background-color: white;
  border-radius: 20px;
}

.calculator-table-head {
  z-index: 2000;
  background: white;
  left: 0;
  right: 0;
}

.about-circle {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
}

.about-pyramid {
  position: absolute;
  bottom: -100px;
  right: 10px;
  z-index: -1;
}

.about-image {
  width: 300px;
}

@media (min-width: 992px) {
  .about-image {
    width: 450px;
  }
}
input.checkbox {
  display: inline-block;
}

.spin-1 {
  border-radius: 500px;
  background-color: #0CB1C4;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* transform: rotate(3deg); */
  /* transform: rotate(0.3rad);/ */
  /* transform: rotate(3grad); */
  /* transform: rotate(.03turn);  */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(2000deg);
  }
}
.video-container-1 {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-container-1::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

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

.section-sticky {
  position: fixed;
  top: 50px;
  right: 4%;
  width: 270px;
  z-index: 1000;
}

#course-live-section {
  z-index: 100;
  width: 21.5%;
}
@media only screen and (min-width: 1560px) {
  #course-live-section {
    width: 25%;
    max-width: 347px;
  }
}

ol li {
  list-style-type: unset !important;
}

ol {
  margin-left: 15px !important;
}

/*# sourceMappingURL=style.css.map */
