@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
body {
  margin: 0;
  padding: 0;
}
.scaled-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.scaled-main p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  color: #0F0F0F;
  width: 100%;
}
.scaled-main p strong,
.scaled-main p b {
  font-weight: 700;
}
.scaled-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.scaled-main h1,
.scaled-main h2,
.scaled-main h3,
.scaled-main h4 {
  margin: 0;
}
.scaled-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.scaled-main ul,
.scaled-main li {
  padding: 0;
  margin: 0;
}
@keyframes move-bg {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
}
@keyframes pulse-1 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes hvr-wobble-vertical {
  0% {
    transform: translateY(8px);
  }
  30% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(4px);
  }
  70% {
    transform: translateY(-2px);
  }
  85% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-courses {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 0.8;
  }
  to {
    transform: scale(15) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scaled-container {
  width: 100%;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  padding: 7px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  margin-left: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #707070;
}
::-webkit-scrollbar-thumb {
  background: #EE9D1C;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #EE9D1C;
}
.form {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.form .main-input {
  display: flex;
  flex-direction: column;
}
.form .main-input .input-container {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}
.form .main-input .input-container .input-field,
.form .main-input .input-container textarea {
  width: 100%;
  border: none;
  padding: 0.5rem;
  outline: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: #000000;
  border-radius: 10px;
  border: 2px solid transparent;
}
.form .main-input .input-container textarea {
  height: 75px;
  resize: none;
  overflow: auto;
}
.form .main-input .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #95989A;
}
.form .main-input .input-container :-ms-input-placeholder { 
  /* IE 10+ */ 
  color: #95989A;
}
.form .main-input .input-error .input-field {
  border: 2px solid red;
}
.form .main-input .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.form .main-input .input-error :-ms-input-placeholder {
  /* IE 10+ */ 
  color: red;
}
.form .form-consent {
  display: flex;
  color: #FFF;
  font-size: 11px;
  margin-bottom: 0.4rem;
}
.form .form-consent label {
  margin-left: 0.3rem;
  width: 90%;
}
.form .form-consent p {
  color: #FFF;
  line-height: 1.4;
  font-size: 11px;
}
.form .form-consent a {
  color: #EE9D1C;
  font-weight: bold;
}
.form .form-consent:last-child {
  margin-bottom: 0;
}
.form .consent-error {
  margin-bottom: 0.5rem;
}
.form .consent-error p {
  color: red;
  line-height: 1.4;
  font-size: 11px;
}
.form .scaled-buttons .btn-yellow .blue {
  display: none;
}
.form .scaled-buttons .btn-yellow span {
  background: #FFF;
}
.form .scaled-buttons .btn-yellow:hover {
  color: #16183E;
}
.form .scaled-buttons .btn-yellow:hover .blue {
  display: flex;
}
.form .scaled-buttons .btn-yellow:hover .white {
  display: none;
}
.scaled-main .flex-container {
  display: flex;
  margin: auto;
}
.scaled-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.scaled-buttons .btn-yellow,
.scaled-buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  text-decoration: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  min-width: 167px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  white-space: nowrap;
}
.scaled-buttons .btn-yellow img,
.scaled-buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.scaled-buttons .btn-yellow span,
.scaled-buttons .btn-white span {
  background: #0f083a none repeat scroll 0 0;
  border-radius: 50%;
  display: block;
  height: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  width: 0;
  z-index: -1;
}
.scaled-buttons .btn-yellow:hover span,
.scaled-buttons .btn-white:hover span {
  height: 562.5px;
  width: 562.5px;
}
.scaled-buttons .btn-yellow {
  background-color: #EE9D1C;
  color: #FFF;
}
.scaled-buttons .btn-white {
  background: #FFF;
  color: #000000;
}
.scaled-buttons .btn-white span {
  background: linear-gradient(180deg, #ffffff 0%, #e2e2e2 100%);
}
.scaled-buttons .btn-white:hover {
  color: #16183E;
}
.scaled-heading {
  display: flex;
  flex-direction: column;
}
.scaled-heading h2 {
  font-size: 22px;
  color: #000000;
  width: 100%;
}
.scaled-heading .heading-overlay {
  display: inline-block;
  position: relative;
  height: 5px;
  border-radius: 30px;
  background-color: #1C1D46;
  width: 90px;
  margin-top: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}
.scaled-heading .heading-overlay:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #FFF;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: move-bg;
  animation-name: move-bg;
}
.center-heading {
  justify-content: center;
  align-items: center;
}
.center-heading h2 {
  text-align: center;
}
.white-heading h2 {
  text-align: center;
  color: #FFF;
}
.white-heading .heading-overlay {
  background-color: #EE9D1C;
}
.circle {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.circle .circle-inner {
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1);
  transform-origin: center center;
}
.circle .circle-1 {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  top: 0;
  animation: pulse-1 1.8s linear 0s infinite;
  opacity: 0.3;
}
.circle .circle-2 {
  width: 66.6%;
  height: 66.6%;
  background-color: #707070;
  top: 16.5%;
  animation: pulse-2 1.8s linear 0s infinite;
}
.scaled-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  box-shadow: 0 0 10px grey;
  background-color: #16183E;
  padding: 1rem 1.5rem;
  transition: 1s;
}
.scaled-sticky .menu-links ul .links-li .btn-yellow {
  box-shadow: 0 0 10px #e1e1e1;
}
.scaled-sticky-up {
  top: -100px;
}
.scaled-sticky-down {
  top: 0;
  left: 0;
}
.scaled-banner {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem;
  background-color: #16183E;
}
.scaled-banner .banner-container {
  display: flex;
  flex-direction: column;
}
.scaled-banner .banner-container .logo-container {
  display: flex;
}
.scaled-banner .banner-container .logo-container .scaled-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scaled-banner .banner-container .logo-container .tka-logo {
  display: flex;
  max-width: 200px;
}
.scaled-banner .banner-container .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.scaled-banner .banner-container .logo-container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.scaled-banner .banner-container .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.scaled-banner .banner-container .logo-container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.scaled-banner .banner-container .logo-container .menu-links .menu-toggle img {
  width: 15px;
  height: 22px;
  margin-right: 5px;
}
.scaled-banner .banner-container .logo-container ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.scaled-banner .banner-container .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000000;
}
.scaled-banner .banner-container .logo-container ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.scaled-banner .banner-container .logo-container ul .links-li:last-child {
  display: none;
  padding-bottom: 0;
}
.scaled-banner .banner-container .logo-container ul .links-li .link {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}
.scaled-banner .banner-container .logo-container ul .scaled-buttons {
  display: none;
}
.scaled-banner .banner-container .logo-container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.scaled-banner .banner-container .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.scaled-banner .banner-container .logo-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
}
.scaled-banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  width: 100%;
}
.scaled-banner .banner-container .banner-content .scaled-logo {
  width: 115px;
}
.scaled-banner .banner-container .banner-content h1 {
  display: flex;
  align-items: flex-start;
  color: #FFF;
  margin: 1rem 0 0.2rem 0;
  font-size: 24px;
}
.scaled-banner .banner-container .banner-content h1 img {
  width: 35px;
  margin-right: 10px;
}
.scaled-banner .banner-container .banner-content p {
  color: #FFF;
}
.scaled-banner .banner-container .banner-content .scaled-offer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.scaled-banner .banner-container .banner-content .scaled-offer h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #FFF;
}
.scaled-banner .banner-container .banner-content .scaled-offer h3 img {
  width: 22px;
  margin-right: 5px;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer {
  display: flex;
  margin-top: 1rem;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5rem;
  position: relative;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer p {
  text-align: center;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer::after {
  position: absolute;
  content: '';
  background-image: url("/_public/images/safe/colons.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 40px;
  top: 0px;
  right: -20px;
  animation: flickerAnimation 1s infinite;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer:last-child {
  margin-right: 0;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer:last-child::after {
  content: none;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  font-weight: 800;
}
.scaled-banner .banner-container .banner-content .scaled-offer .countdown-offer .timer span::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/safe/polygon.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: rotate 5s linear infinite;
}
.scaled-banner .banner-container .banner-content .scaled-buttons {
  justify-content: flex-start;
}
.scaled-banner .banner-container .banner-content .scaled-buttons .btn-yellow .blue {
  display: none;
}
.scaled-banner .banner-container .banner-content .scaled-buttons .btn-yellow span {
  background: #FFF;
}
.scaled-banner .banner-container .banner-content .scaled-buttons .btn-yellow:hover {
  color: #16183E;
}
.scaled-banner .banner-container .banner-content .scaled-buttons .btn-yellow:hover .blue {
  display: flex;
}
.scaled-banner .banner-container .banner-content .scaled-buttons .btn-yellow:hover .white {
  display: none;
}
.scaled-banner .banner-container .requirement-image {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.scaled-banner .banner-container .requirement-image img {
  width: 100%;
  height: 100%;
}
.scaled-facts {
  padding: 3rem 1.5rem;
}
.scaled-facts .inner-facts {
  display: flex;
  flex-direction: column;
}
.scaled-facts .inner-facts .text {
  text-align: center;
}
.scaled-facts .inner-facts .facts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.scaled-facts .inner-facts .facts-list .facts {
  display: flex;
  border-radius: 30px 0 0 30px;
  margin-top: 1.5rem;
}
.scaled-facts .inner-facts .facts-list .facts .fact-img {
  display: flex;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 50px;
  position: relative;
  left: 0;
  width: 75px;
  height: 75px;
  z-index: 1;
}
.scaled-facts .inner-facts .facts-list .facts .fact-img::before {
  content: '';
  background-image: url('/_public/images/safe/blue-curve.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 75px;
  position: absolute;
  top: 0;
  left: 54px;
  z-index: -1;
}
.scaled-facts .inner-facts .facts-list .facts .fact-img img {
  width: 40px;
  height: 40px;
}
.scaled-facts .inner-facts .facts-list .facts .fact-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 180px;
  padding-left: 1.3rem;
}
.scaled-facts .inner-facts .facts-list .facts .fact-content span {
  display: flex;
  font-size: 21px;
  font-weight: bold;
}
.scaled-roadmap {
  display: none !important;
}
.scaled-overview {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
}
.scaled-overview .overview-main {
  display: flex;
  flex-direction: column;
}
.scaled-overview .overview-main .overview {
  display: flex;
  flex-direction: column;
}
.scaled-overview .overview-main .overview p:nth-child(4){
  margin-top: .5rem;
}
.scaled-overview .overview-main .overview .scaled-buttons {
  align-self: flex-start;
}
.scaled-overview .overview-main .delivery {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  padding-bottom: 0;
}
.scaled-overview .overview-main .delivery .delivery-contents {
  display: flex;
  flex-direction: column;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods {
  width: 230px;
}
.scaled-overview .overview-main .delivery .delivery-contents .image {
  display: none;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods {
  display: flex;
  flex-direction: column;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms h3 {
  font-weight: 700;
  font-size: 16px;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:nth-child(4) {
  margin-bottom: 0;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms span {
  display: flex;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid #EE9D1C;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms span .blue-image {
  width: 25px;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms span .white-image {
  display: none;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:hover {
  cursor: pointer;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:hover span {
  background-color: #EE9D1C;
  border: 3px #EE9D1C solid;
  transition: 0.2s ease-in-out;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:hover span .blue-image {
  display: none;
}
.scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:hover span .white-image {
  display: flex;
  width: 25px;
}
.scaled-courses {
  padding-bottom: 0!important;
}
.scaled-popular {
  padding: 3rem 1.5rem;
  background-color: #f3f3f3;
  overflow: hidden;
}
.scaled-popular .scaled-heading p {
  text-align: center;
}
.scaled-popular .scaled-heading p span {
  color: #1C1D46;
  font-weight: 600;
}
.scaled-popular .courses-container {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  justify-content: center;
  align-items:flex-start;
}
.scaled-popular .courses-container .parent-rainbow {
  border-radius: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 270px;
  height: 350px;
  margin-bottom: 2rem;
}
.scaled-popular .courses-container .parent-rainbow:last-child {
  margin-bottom: 0;
}
.scaled-popular .courses-container .parent-rainbow .rainbow {
  width: 100%;
  height: 100%;
  animation: rotate-courses linear 8s infinite;
}
.scaled-popular .courses-container .parent-rainbow .rainbow span {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate(-50%, -50%);
  display: flex;
}
.scaled-popular .courses-container .parent-rainbow .rainbow span::after {
  display: flex;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
}
.scaled-popular .courses-container .parent-rainbow .rainbow span:first-child {
  background: #EE9D1C;
}
.scaled-popular .courses-container .parent-rainbow .rainbow span:first-child::after {
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
}
.scaled-popular .courses-container .parent-rainbow .rainbow span:last-child {
  background: #16183E;
}
.scaled-popular .courses-container .parent-rainbow .rainbow span:last-child::after {
  background-color: #babac3;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  padding: 2rem 1rem;
  margin-bottom: 1rem;
  position: absolute;
  margin-bottom: 0;
  width: 94%;
  height: 96%;
  left: 8px;
  top: 7px;
  border-radius: 10px;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses:nth-last-child(1) {
  margin-bottom: 0;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .course-img {
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 10px;
  background-color: #FFF;
  height: 80px;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .course-img span {
  background-color: #F5F5F5;
  padding: 10px;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .course-img span .blue-image {
  width: 40px;
  height: 40px;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .course-img span .white-image {
  display: none;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .contents {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  width: 100%;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .contents a {
  text-align: center;
  font-weight: 600;
  height: 65px;
  width: 100%;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .contents p {
  text-align: center;
  color: #707070;
  font-weight: 600;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses .contents p span {
  font-weight: 400;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses:hover .course-img {
  background-color: #BFBFC8;
  transition: 0.8s ease-in-out;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses:hover .course-img span {
  background-color: #16183E;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses:hover .course-img span .blue-image {
  display: none;
}
.scaled-popular .courses-container .parent-rainbow .certification-courses:hover .course-img span .white-image {
  display: flex;
  width: 40px;
  height: 40px;
}
.scaled-results {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.scaled-results .results-inner {
  display: flex;
  flex-direction: column;
}
.scaled-results .results-inner .graph-image {
  flex-direction: column;
  display: none;
}
.scaled-results .results-inner .limited-budget {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #16183E;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}
.scaled-results .results-inner .limited-budget h2 {
  color: #FFF;
  margin-bottom: 0.5rem;
}
.scaled-results .results-inner .limited-budget p {
  color: #EE9D1C;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 16px;
}
.scaled-results .results-inner .limited-budget .live {
  margin-top: 0.2rem;
  font-size: 14px;
}
.scaled-results .results-inner .limited-budget ul {
  list-style: none;
  margin-left: 15px;
  width: 100%;
}
.scaled-results .results-inner .limited-budget ul li {
  color: #FFF;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
}
.scaled-results .results-inner .limited-budget ul li::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #FFF;
  left: -16px;
  top: 6px;
  transform: rotate(43deg);
}
.scaled-packages {
  padding: 3rem 1.5rem;
  padding-top: 0;
}
.scaled-packages .package-container {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.scaled-packages .package-container .certification-package {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 2rem 0.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  justify-content: space-between;
}
.scaled-packages .package-container .certification-package::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg,#16183E, #63647E);
  background-image: -ms-linear-gradient(0deg,#16183E, #63647E);
  width: 100%;
  border-radius: 17px;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -2;
}
.scaled-packages .package-container .certification-package:hover::before {
  content: none;
}
.scaled-packages .package-container .certification-package:hover .package-heading {
  color: #FFF;
  transition: 1s all;
}
.scaled-packages .package-container .certification-package:hover .package-heading p {
  color: #FFF;
}
.scaled-packages .package-container .certification-package:hover ul li p {
  color: #FFF;
}
.scaled-packages .package-container .certification-package:hover ul li::before {
  transform: rotate(-360deg);
  transition: all 0.5s ease-out;
}
.scaled-packages .package-container .certification-package:hover::after {
  transform: scale(1);
}
.scaled-packages .package-container .certification-package:nth-last-child(1) {
  margin-bottom: 0;
}
.scaled-packages .package-container .certification-package::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/safe/package-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 42%;
  top: 0;
  left: 0;
  z-index: -1;
}
.scaled-packages .package-container .certification-package .package-heading {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.scaled-packages .package-container .certification-package .package-heading h3 {
  text-align: center;
}
.scaled-packages .package-container .certification-package .package-heading p {
  text-align: center;
  margin-top: 5px;
}
.scaled-packages .package-container .certification-package ul {
  list-style: none;
  width: 100%;
}
.scaled-packages .package-container .certification-package ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.scaled-packages .package-container .certification-package ul li p {
  line-height: 1.4;
}
.scaled-packages .package-container .certification-package ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/safe/orange-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  top: 2px;
  height: 15px;
  width: 10px;
  left: 8px;
  z-index: -1;
}
.scaled-packages .package-container .certification-package .scaled-buttons .btn-yellow {
  padding: 10px 38px;
}
.scaled-testimonial {
  padding: 3rem 1.5rem;
  background-color: #16183E;
  position: relative;
}
.scaled-testimonial .boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.scaled-testimonial .boxes li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.scaled-testimonial .boxes li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.scaled-testimonial .boxes li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.scaled-testimonial .boxes li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.scaled-testimonial .boxes li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.scaled-testimonial .boxes li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.scaled-testimonial .boxes li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.scaled-testimonial .boxes li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.scaled-testimonial .boxes li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.scaled-testimonial .boxes li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.scaled-testimonial .boxes li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
.scaled-testimonial .inner-testimonial {
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.scaled-testimonial .inner-testimonial .testimonial-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  padding: 2rem 1rem;
  border-radius: 15px;
  align-items: center;
  width: 90%;
  margin: auto;
  box-shadow: 13px 12px 1px #a4a5b4;
  margin-bottom: 1rem;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial span {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50px;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial span img {
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .name p {
  color: #EE9D1C;
  font-size: 12px;
  font-weight: bold;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .name h4 {
  text-align: center;
  margin-top: 5px;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .view {
  line-height: 1.4;
  font-size: 13px;
  text-align: center;
  margin: 0.5rem 0;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .star {
  display: flex;
}
.scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .star img {
  width: 22px;
  height: 22px;
}
.scaled-testimonial .inner-testimonial .testimonial-list .owl-nav {
  display: flex;
  margin: auto;
  margin-top: 1.5rem;
  width: 85px;
  justify-content: space-between;
}
.scaled-testimonial .inner-testimonial .testimonial-list .owl-nav .owl-prev {
  background-image: url('/_public/images/safe/arrow-left.svg');
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  outline: none;
}
.scaled-testimonial .inner-testimonial .testimonial-list .owl-nav .owl-prev span {
  display: none;
}
.scaled-testimonial .inner-testimonial .testimonial-list .owl-nav .owl-next {
  background-image: url('/_public/images/safe/arrow-right.svg');
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  outline: none;
}
.scaled-testimonial .inner-testimonial .testimonial-list .owl-nav .owl-next span {
  display: none;
}
.why-choose {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.why-choose .why-inner {
  display: flex;
  flex-direction: column;
}
.why-choose .why-inner .choose-container {
  display: flex;
  flex-direction: column;
}
.why-choose .why-inner .choose-container .choose-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  align-items: center;
}
.why-choose .why-inner .choose-container .choose-content p {
  text-align: center;
}
.why-choose .why-inner .choose-container .limited-container {
  display: flex;
  flex-direction: column;
  background-color: #16183E;
  padding: 1rem;
  margin-top: 3rem;
  border-radius: 10px;
  background-image: url(/_public/images/safe/dots.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
}
.why-choose .why-inner .choose-container .limited-container .watch {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}
.why-choose .why-inner .choose-container .limited-container .watch img {
  width: 100%;
}
.why-choose .why-inner .choose-container .limited-container .limited-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-choose .why-inner .choose-container .limited-container .limited-content p {
  color: #FFF;
  text-align: center;
}
.why-choose .why-inner .choose-container .limited-container .limited-content .scaled-buttons .btn-yellow .blue {
  display: none;
}
.why-choose .why-inner .choose-container .limited-container .limited-content .scaled-buttons .btn-yellow span {
  background: #FFF;
}
.why-choose .why-inner .choose-container .limited-container .limited-content .scaled-buttons .btn-yellow:hover {
  color: #16183E;
}
.why-choose .why-inner .choose-container .limited-container .limited-content .scaled-buttons .btn-yellow:hover .blue {
  display: flex;
}
.why-choose .why-inner .choose-container .limited-container .limited-content .scaled-buttons .btn-yellow:hover .white {
  display: none;
}
.why-choose .why-inner .guarantee-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.why-choose .why-inner .guarantee-list .guarantee-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  background-image: url(/_public/images/safe/why-wave.png);
  background-size: 100% 69%;
  background-repeat: no-repeat;
}
.why-choose .why-inner .guarantee-list .guarantee-name:last-child {
  margin-bottom: 0;
}
.why-choose .why-inner .guarantee-list .guarantee-name .blue-image {
  display: none;
}
.why-choose .why-inner .guarantee-list .guarantee-name:hover {
  background-color: #16183E;
  background-image: none;
  transition: all 0.5s ease-out;
}
.why-choose .why-inner .guarantee-list .guarantee-name:hover p,
.why-choose .why-inner .guarantee-list .guarantee-name:hover h3 {
  color: #FFF;
}
.why-choose .why-inner .guarantee-list .guarantee-name:hover .white-image {
  display: none;
}
.why-choose .why-inner .guarantee-list .guarantee-name:hover .blue-image {
  display: flex;
}
.why-choose .why-inner .guarantee-list .guarantee-name span {
  width: 80px;
  height: 80px;
}
.why-choose .why-inner .guarantee-list .guarantee-name span img {
  width: 100%;
  height: 100%;
}
.why-choose .why-inner .guarantee-list .guarantee-name p {
  text-align: center;
  line-height: 1.5;
}
.why-choose .why-inner .guarantee-list .guarantee-name h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
}
.scaled-faq {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
}
.scaled-faq .faq-main {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  position: relative;
  align-items: flex-start;
}
.scaled-faq .faq-main .faq {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  border-radius: 15px;
  background-color: #FFF;
  height: fit-content;
  z-index: 1;
  cursor: pointer;
  width: 100%;
}
.scaled-faq .faq-main .faq:last-child {
  margin-bottom: 0;
}
.scaled-faq .faq-main .faq .question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.scaled-faq .faq-main .faq .question h3 {
  font-size: 14px;
  width: 85%;
}
.scaled-faq .faq-main .faq .question span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scaled-faq .faq-main .faq .question span img {
  width: 20px;
}
.scaled-faq .faq-main .faq .question .white {
  display: none;
}
.scaled-faq .faq-main .faq .answer {
  display: none;
  padding: 1rem;
}
.scaled-faq .faq-main .faq .answer p {
  font-size: 13px;
}
.scaled-faq .faq-main .faq .answer ul {
  margin-bottom: 0;
  padding-left: 18px;
}
.scaled-faq .faq-main .faq .answer ul li {
  font-size: 13px;
  line-height: 1.5;
}
.scaled-faq .faq-main .faq.active .question {
  background-color: #1C1D46;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.scaled-faq .faq-main .faq.active .question h3 {
  color: #FFF;
}
.scaled-faq .faq-main .faq.active .question .white {
  display: flex;
}
.scaled-faq .faq-main .faq.active .question .blue {
  display: none;
}
.scaled-faq .faq-main .faq.active .answer {
  background-color: #FBFAFA;
  border-radius: 15px;
}
.scaled-footer {
  padding: 3rem 1.5rem;
  background-color: #16183E;
  overflow: hidden;
}
.scaled-footer .hero {
  position: relative;
  display: flex;
}
.scaled-footer .hero .cube {
  display: flex;
  position: absolute;
  top: 94vh;
  left: 45vw;
  width: 10px;
  height: 10px;
  border: solid 1px #d28710;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  animation: cube 12s ease-in forwards infinite;
}
.scaled-footer .hero .cube:nth-child(2n) {
  border-color: #f2b14b;
}
.scaled-footer .hero .cube:nth-child(2) {
  animation-delay: 2s;
  left: 25vw;
  top: 40vh;
}
.scaled-footer .hero .cube:nth-child(3) {
  animation-delay: 4s;
  left: 59vw;
  top: 58vh;
}
.scaled-footer .hero .cube:nth-child(4) {
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}
.scaled-footer .hero .cube:nth-child(5) {
  animation-delay: 8s;
  left: 10vw;
  top: 98vh;
}
.scaled-footer .hero .cube:nth-child(6) {
  animation-delay: 10s;
  left: 50vw;
  top: 10vh;
}
.scaled-footer .main-footer {
  display: flex;
  flex-direction: column;
}
.scaled-footer .main-footer .contact-us {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  z-index: 1;
  justify-content: center;
  align-items: center;
  position: relative;
}
.scaled-footer .main-footer .contact-us::before {
  content: '';
  background-image: url(/_public/images/safe/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 278px;
  height: 269px;
  left: 0;
  top: -40px;
  z-index: -1;
  position: absolute;
}
.scaled-footer .main-footer .contact-us .scaled-heading span {
  display: none;
}
.scaled-footer .main-footer .contact-us .contact-info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  width: 252px;
  padding-left: 2rem;
}
.scaled-footer .main-footer .contact-us .contact-info .contact {
  display: flex;
  margin-bottom: 0.5rem;
}
.scaled-footer .main-footer .contact-us .contact-info .contact span {
  display: flex;
  background-color: #16183E;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  margin-right: 0.3rem;
}
.scaled-footer .main-footer .contact-us .contact-info .contact span img {
  width: 12px;
  height: 12px;
}
.scaled-footer .main-footer .contact-us .contact-info .contact a,
.scaled-footer .main-footer .contact-us .contact-info .contact p {
  font-size: 11px;
  color: #FFF;
  width: 128px;
}
.scaled-footer .main-footer .contact-us .contact-info .contact a {
  align-self: center;
}
.popup-form {
  display: none;
  background-color: #f9f9f9d6;
  z-index: 16;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  overflow: auto;
  justify-content: center;
}
.popup-form .form {
  position: relative;
  padding: 2rem 1.5rem;
  background-color: #FFF;
  border-radius: 15px;
  width: 90%;
  margin: auto;
  top: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.popup-form .form .form-heading {
  display: flex;
  justify-content: center;
}
.popup-form .form .form-heading h2 {
  color: #000000;
}
.popup-form .form .main-input .input-container {
  margin-bottom: 1rem;
}
.popup-form .form .form-consent p,
.popup-form .form .form-consent label {
  color: #000000;
}
.popup-form .form .form-consent a {
  color: #EE9D1C;
}
.popup-form .form .close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -3px;
  right: -5px;
  cursor: pointer;
}
.popup-form .form h2 {
  margin-bottom: 2rem;
}
@media (min-width : 768px) {
  .togaf-buttons .btn-yellow,
  .togaf-buttons .btn-white {
    font-size: 16px;
  }
  .scaled-banner {
    padding: 3rem 2rem;
    padding-top: 1.5rem;
  }
  .scaled-banner .banner-container {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .scaled-banner .banner-container .scaled-sticky{
    padding: 1rem 2rem;
  }
  .scaled-banner .banner-container .banner-content h1{
    align-items: center;
  }
  .scaled-banner .banner-container .logo-container {
    width: 100%;
  }
  .scaled-banner .banner-container .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .scaled-banner .banner-container .requirement-image {
    display: none;
  }
  .scaled-facts {
    padding: 3rem 2rem;
  }
  .scaled-facts .inner-facts .facts-list {
    justify-content: space-around;
  }
  .scaled-roadmap {
    padding: 3rem 2rem;
    display: flex !important;
    flex-direction: column;
  }
  .scaled-container{
    height: 100%;
  }
  .scaled-roadmap .inner-roadmap {
    display: flex;
    flex-direction: column;
  }
  .scaled-roadmap .inner-roadmap .roadmap {
    display: flex;
    height: 100%;
  }
  .scaled-roadmap .inner-roadmap .roadmap img {
    width: 100%;
    height: 100%;
  }
  .scaled-overview {
    padding: 3rem 2rem;
    background-color: transparent;
    padding-top: 0;
  }
  .scaled-overview .overview-main {
    flex-direction: row;
    justify-content: space-between;
  }
  .scaled-overview .overview-main .overview {
    width: 50%;
  }
  .scaled-overview .overview-main .delivery {
    width: 46%;
    padding: 0;
    position: sticky;
    top: 55px;
    height: fit-content;
  }
  .scaled-overview .overview-main .delivery .delivery-contents {
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    margin-top: 3rem;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .image {
    display: flex;
    width: 120px;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .image .img {
    width: 100%;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods {
    width: 225px;
    position: relative;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms {
    position: absolute;
    margin-bottom: 0;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:nth-child(1) {
    left: -100px;
    top: -40px;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:nth-child(2) {
    left: 0px;
    top: 50px;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:nth-child(3) {
    left: 0px;
    top: 178px;
  }
  .scaled-overview .overview-main .delivery .delivery-contents .delivery-methods .training-platforms:nth-child(4) {
    left: -100px;
    top: 265px;
  }
  .scaled-courses {
    padding: 3rem 2rem !important;
  }
  
  .scaled-courses .courses-container .parent-rainbow:last-child {
    margin-top: 0;
  }
  .scaled-popular {
    padding: 3rem 2rem;
  }
  .scaled-popular .courses-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
   
  }
  .scaled-popular .courses-container .parent-rainbow {
    margin-right: 2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(2) {
    margin-right: 0;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(4) {
    margin-right: 0;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(6) {
    margin-right: 0;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(8) {
    margin-right: 0;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-last-child(2) {
    margin-bottom: 0;
  }
  .scaled-popular .courses-container .parent-rainbow:last-child {
    margin-right: 0;
  }
  .scaled-popular .courses-container .parent-rainbow .certification-courses {
    z-index: 1;
  }
  .scaled-popular .courses-container .parent-rainbow .certification-courses::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/safe/certification-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 57px;
    width: 159px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .scaled-popular .courses-container .parent-rainbow .certification-courses::after {
    content: '';
    position: absolute;
    background-image: url(/_public/images/safe/certification-bg2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 55px;
    width: 60px;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .scaled-results {
    padding: 3rem 2rem;
  }
  .scaled-results .results-inner .graph-image {
    display: flex;
    position: relative;
    margin-bottom: 3rem;
    height: 100%;
  }
  .scaled-results .results-inner .graph-image .image {
    width: 100%;
    height: 100%;
  }
  .scaled-results .results-inner .graph-image .image img {
    width: 100%;
  }
  .scaled-results .results-inner .graph-image .graph-progress {
    display: flex;
    position: absolute;
    width: 45%;
    align-items: center;
    bottom: 48px;
    right: -14px;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress {
    display: flex;
    width: 100px;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress .graph-circle {
    width: 100px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress .graph-circle::after {
    content: '33%';
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    top: 34px;
    left: 28px;
    color: #000000;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress .graph-circle .progress-ring {
    width: 100px;
    height: 100px;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress .graph-circle .progress-ring .circle-default {
    stroke: orange!important;
    stroke-width: 10;
  }
  .scaled-results .results-inner .graph-image .graph-progress .progress .graph-circle .progress-ring .progress-ring-circle {
    transition: 3s stroke-dashoffset;
    transform: rotate(-82deg);
    transform-origin: 48% 47%;
    stroke-width: 11px;
    stroke: #cecece !important;
  }
  .scaled-results .results-inner .graph-image .graph-progress p {
    line-height: 1.4;
    width: 70%;
    font-weight: 700;
    font-size: 12px;
    margin-left: 15px;
  }
  .scaled-results .results-inner .limited-budget {
    align-self: center;
    width: 65%;
  }
  .scaled-results .results-inner .limited-budget p {
    font-size: 17px;
  }
  .scaled-packages {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .scaled-packages .package-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .scaled-packages .package-container .certification-package {
    width: 45%;
    margin-right: 2rem;
  }
  .scaled-packages .package-container .certification-package .package-heading a {
    min-height: 50px;
  }
  .scaled-packages .package-container .certification-package ul {
    min-height: 160px;
  }
  .scaled-packages .package-container .certification-package ul li {
    padding-left: 2rem;
  }
  .scaled-packages .package-container .certification-package:nth-child(2) {
    margin-right: 0;
  }
  .scaled-packages .package-container .certification-package:nth-child(3) {
    margin-bottom: 0;
  }
  .scaled-packages .package-container .certification-package:nth-last-child(1) {
    margin-bottom: 0;
    margin-right: 0;
  }
  .scaled-testimonial {
    padding: 3rem 2rem;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial {
    flex-direction: row;
    align-items: flex-start;
    height: 480px;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial span {
    margin-right: 1rem;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content {
    align-items: flex-start;
    width: 70%;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .name {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .name h4{
    margin-top: 0px;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial .testimonial-content .view {
    text-align: left;
  }
  .why-choose {
    padding: 3rem 2rem;
  }
  .why-choose .why-inner .choose-container .limited-container {
    position: relative;
  }
  .why-choose .why-inner .choose-container .limited-container::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/safe/left-bg.png);
    height: 235px;
    width: 127px;
    left: -17px;
    top: -24px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .why-choose .why-inner .choose-container .limited-container::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/safe/right-bg.png);
    height: 235px;
    width: 127px;
    right: -19px;
    top: -24px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .why-choose .why-inner .guarantee-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .why-choose .why-inner .guarantee-list .guarantee-name {
    width: 45%;
  }
  .why-choose .why-inner .guarantee-list .guarantee-name:nth-last-child(2) {
    margin-bottom: 0;
  }
  .scaled-faq {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
  }
  .scaled-faq .faq-main {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .scaled-faq .faq-main .faq {
    width: 48%;
  }
  .scaled-faq .faq-main .faq:nth-last-child(2) {
    margin-bottom: 0;
  }
  .scaled-footer {
    padding: 3rem 2rem;
  }
  .scaled-footer .main-footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .scaled-footer .main-footer .form {
    width: 55%;
  }
  .scaled-footer .main-footer .form .main-input {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .scaled-footer .main-footer .form .main-input .input-container {
    width: 48%;
  }
  .scaled-footer .main-footer .form .main-input .input-container:last-child {
    width: 100%;
  }
  .scaled-footer .main-footer .contact-us {
    width: 40%;
    background-color: transparent;
    align-items: center;
    margin-top: 0;
  }
  .scaled-footer .main-footer .contact-us::before {
    width: 330px;
    height: 330px;
    left: -25px;
    top: 75px;
  }
  .scaled-footer .main-footer .contact-us .contact-info {
    padding: 1rem;
    padding-top: 0;
  }
  .scaled-footer .main-footer .contact-us .contact-info .contact a {
    font-size: 13px;
  }
  .popup-form .form {
    width: 460px;
    position: relative;
    top: 26px;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    height: fit-content;
  }
  .popup-form .form::before {
    position: absolute;
    content: '';
    background-image: url('/_public/images/safe/popup-top.png');
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -44px;
    top: -26px;
    z-index: -1;
  }
  .popup-form .form::after {
    position: absolute;
    content: '';
    background-image: url('/_public/images/safe/popup-bottom.png');
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    right: -66px;
    bottom: -60px;
    z-index: -1;
  }
}
@media (min-width : 1024px) {
  .scaled-heading h2 {
    font-size: 28px;
  }
  .scaled-banner .banner-container .logo-container .menu {
    display: none;
  }
  .scaled-banner .banner-container .logo-container .menu-links {
    width: 75%;
    display: flex;
    align-items: center;
    background: 0 0;
    max-height: unset;
    overflow: unset;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .scaled-banner .banner-container .logo-container .menu-links .menu-toggle {
    display: none;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li {
    border-bottom: none;
    border-bottom-style: none;
    margin-right: .8rem;
    padding: 0;
    position: relative;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li .link {
    font-weight: 600;
    transition: none;
    color: #000000;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li::after {
    content: '.';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    color: transparent;
    background: #EE9D1C;
    height: 2px;
    transition: all 0.5s;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    top: -25px;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #EE9D1C;
    height: 2px;
    transition: all 0.5s;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li:hover::after {
    width: 100%;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li:hover::before {
    width: 100%;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li:last-child:hover::before {
    content: none;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li:last-child:hover::after {
    content: none;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .scaled-buttons .btn-white {
    margin-right: 1rem;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .scaled-buttons .btn-yellow:hover {
    box-shadow: 0 0 10px #ffffff;
  }
  .scaled-banner .banner-container .banner-content {
    width: 55%;
  }
  .scaled-banner .banner-container .requirement-image {
    width: 42%;
    display: flex;
  }
  .scaled-facts .inner-facts {
    align-items: center;
  }
  .scaled-facts .inner-facts .text {
    width: 60%;
  }
  .scaled-facts .inner-facts .facts-list {
    width: 100%;
  }
  .scaled-overview .overview-main .delivery {
    width: 44%;
    position: inherit;
  }

  .scaled-popular .courses-container .parent-rainbow:nth-child(2) {
    margin-right: 2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(3) {
    margin-right: 0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(4) {
    margin-right: 2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(6) {
    margin-right:0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(9) {
    margin-right:0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(8) {
    margin-right:2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:last-child {
    margin-right:0;
    margin-top: 0rem;
  }
  .scaled-results .results-inner {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .scaled-results .results-inner .graph-image {
    width: 56%;
    margin-bottom: 0;
  }
  .scaled-results .results-inner .limited-budget {
    width: 40%;
  }
  .scaled-results .results-inner .limited-budget ul li::before {
    left: -19px;
  }
  .scaled-packages .package-container .certification-package {
    width: 33%;
    margin-bottom: 2rem;
  }
  .scaled-testimonial {
    background-image: url('/_public/images/safe/testimonial-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    position: relative;
    z-index: 1;
  }
  .scaled-testimonial::before {
    content: '';
    background-image: url('/_public/images/safe/bubble.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial {
    width: 80%;
    height: 408px;
  }
  .why-choose .why-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .why-choose .why-inner .choose-container {
    width: 48%;
  }
  .why-choose .why-inner .choose-container .choose-content {
    box-shadow: none;
    background-image: url(/_public/images/safe/why-bg.png);
    background-size: 100% 85%;
    background-repeat: no-repeat;
  }
  .why-choose .why-inner .choose-container .limited-container {
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
    padding: 1rem 5rem;
    align-items: flex-start;
  }
  .why-choose .why-inner .choose-container .limited-container::before {
    height: 220px;
  }
  .why-choose .why-inner .choose-container .limited-container::after {
    height: 220px;
  }
  .why-choose .why-inner .choose-container .limited-container .limited-content {
    width: 80%;
  }
  .why-choose .why-inner .guarantee-list {
    width: 50%;
    margin: 0;
    align-items: flex-start;
  }
  .why-choose .why-inner .guarantee-list .guarantee-name {
    min-height: 241px;
  }
  .why-choose .why-inner .guarantee-list .guarantee-name:nth-child(even) {
    margin-top: -20px;
  }
  .why-choose .why-inner .guarantee-list .guarantee-name h3 {
    font-size: 16px;
    text-align: center;
  }
  .scaled-footer {
    background-image: url('/_public/images/safe/form-bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f9f9f9;
  }
  .scaled-footer .main-footer .contact-us::before{
    left: 30px;
    top: 55px;
  }
}
@media (min-width : 1366px) {
  .scaled-container {
    width: 1200px;
    margin: 0 auto;
  }
  .scaled-buttons .btn-yellow,
  .scaled-buttons .btn-white {
    font-size: 18px;
  }
  .scaled-buttons .btn-yellow img,
  .scaled-buttons .btn-white img {
    width: 22px;
    height: 22px;
  }
  .scaled-heading h2 {
    font-size: 32px;
  }
  .scaled-banner {
    padding: 4rem 0rem;
    padding-top: 2rem;
    background-color: transparent;
    background-image: url("/_public/images/safe/banner-bg.png");
    background-repeat: no-repeat;
    background-size: 103% 100%;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li {
    margin-right: 1.5rem;
  }
  .scaled-banner .banner-container .logo-container .menu-links ul .links-li .link {
    color: #000000;
  }
  .scaled-banner .banner-container .scaled-sticky .menu-links ul .links-li .link {
    color: #ffffff!important;
  }
  .scaled-banner .banner-container .requirement-image {
    width: 35%;
    margin-top: 2.2rem;
  }
  .scaled-facts {
    padding: 4rem 0rem;
  }
  .scaled-facts .inner-facts .facts-list {
    justify-content: space-evenly;
  }
  .scaled-overview {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .scaled-overview .overview-main .overview {
    width: 49%;
  }
  .scaled-overview .overview-main .delivery .delivery-contents {
    margin-top: 5rem;
  }
  .scaled-popular {
    padding: 4rem 0rem!important;
  }
  .scaled-roadmap {
    padding: 4rem 0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(3) {
    margin-right: 2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(4) {
    margin-right: 0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(5) {
    margin-bottom: 0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(6) {
    margin-bottom: 0rem;
    margin-right: 2rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(8) {
    margin-right: 0rem;
  }
  .scaled-popular .courses-container .parent-rainbow:nth-child(9) {
    margin-right:2em;
  }
  .scaled-popular .courses-container .parent-rainbow:last-child {
    margin-right:0;
  }
  .scaled-results {
    padding: 4rem 0rem;
    padding-bottom: 2rem;
  }
  .scaled-packages {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .scaled-packages .package-container {
    flex-wrap: nowrap;
  }
  .scaled-packages .package-container .certification-package {
    width: 23%;
    margin-bottom: 0;
  }
  .scaled-packages .package-container .certification-package:nth-child(2) {
    margin-right: 2rem;
  }
  .scaled-packages .package-container .certification-package ul {
    min-height: 190px;
  }
  .scaled-packages .package-container .certification-package .scaled-buttons .btn-yellow {
    padding: 10px 20px;
  }
  .scaled-testimonial {
    padding: 4rem 0rem;
  }
  .scaled-testimonial .inner-testimonial .testimonial-list .testimonial {
    height: 330px;
  }
  .why-choose {
    padding: 4rem 0rem;
  }
  .why-choose .why-inner .choose-container {
    width: 43%;
  }
  .why-choose .why-inner .choose-container .limited-container::before {
    height: 206px;
  }
  .why-choose .why-inner .choose-container .limited-container::after {
    height: 206px;
  }
  .scaled-faq {
    padding: 4rem 0rem;
  }
  .scaled-footer {
    padding: 4rem 0rem;
  }
  .scaled-footer .main-footer .form {
    width: 60%;
  }
  .scaled-footer .main-footer .contact-us::before {
    width: 365px;
    height: 365px;
  }
}
