@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
}
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;
  border-radius: 3px;
  margin-left: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #707070;
}
/* 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;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #002B54;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #002B54;
}
.cismp-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.cismp-main p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #1d1d1d;
  width: 100%;
}
.cismp-main p strong p b {
  font-weight: 700;
}
.cismp-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
}
.cismp-main button {
  outline: none;
}
.cismp-main h1,
.cismp-main h2,
.cismp-main h3,
.cismp-main h4 {
  margin: 0;
}
.cismp-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.cismp-main ul,
.cismp-main li {
  padding: 0;
  margin: 0;
  color: #1d1d1d;
  list-style: none;
}
.cismp-main .container {
  width: 100%;
}
.cismp-main .flex-container {
  display: flex;
  margin: auto;
}
.cismp-main .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.cismp-main .buttons .btn-green,
.cismp-main .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  min-width: 160px;
  white-space: nowrap;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  outline: none;
}
.cismp-main .buttons .btn-green img,
.cismp-main .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.cismp-main .buttons .btn-green::before,
.cismp-main .buttons .btn-white::before {
  content: '';
  position: absolute;
  bottom: 3px;
  right: -100%;
  height: 4px;
  width: 100%;
  background: linear-gradient(270deg, transparent, #fff);
  transition: 0.7s;
  transition-delay: 0.25s;
}
.cismp-main .buttons .btn-green::after,
.cismp-main .buttons .btn-white::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 3px;
  height: 100%;
  width: 4px;
  background: linear-gradient(360deg, transparent, #fff);
  transition: 0.5s;
  transition-delay: 0s;
}
.cismp-main .buttons .btn-green span,
.cismp-main .buttons .btn-white span {
  display: flex;
  position: absolute;
}
.cismp-main .buttons .btn-green span:nth-child(1),
.cismp-main .buttons .btn-white span:nth-child(1) {
  top: 3px;
  left: -100%;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #fff);
  transition: 0.5s;
  transition-delay: 1s;
}
.cismp-main .buttons .btn-green span:nth-child(2),
.cismp-main .buttons .btn-white span:nth-child(2) {
  top: -100%;
  right: 3px;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, transparent, #fff);
  transition: 0.5s;
  transition-delay: 0.75s;
}
.cismp-main .buttons .btn-green:hover,
.cismp-main .buttons .btn-white:hover {
  background-color: #002B54;
  transition: 0.5s linear;
  transition-delay: 1s;
}
.cismp-main .buttons .btn-green:hover span:nth-child(1),
.cismp-main .buttons .btn-white:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.cismp-main .buttons .btn-green:hover span:nth-child(2),
.cismp-main .buttons .btn-white:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.cismp-main .buttons .btn-green:hover:before,
.cismp-main .buttons .btn-white:hover:before {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.cismp-main .buttons .btn-green:hover:after,
.cismp-main .buttons .btn-white:hover:after {
  top: -100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.cismp-main .buttons .btn-green {
  background-color: #78A300;
  color: #fff;
}
.cismp-main .buttons .btn-white {
  background-color: #fff;
  color: #1d1d1d;
  border: 1px solid #002B54;
}
.cismp-main .buttons .btn-white:hover {
  background-color: #f1f1f1;
}
.cismp-main .buttons .btn-white:hover::before {
  background: linear-gradient(270deg, transparent, #002B54);
}
.cismp-main .buttons .btn-white:hover::after {
  background: linear-gradient(270deg, transparent, #002B54);
}
.cismp-main .buttons .btn-white span:nth-child(1) {
  background: linear-gradient(270deg, transparent, #002B54);
}
.cismp-main .buttons .btn-white span:nth-child(2) {
  background: linear-gradient(270deg, transparent, #002B54);
}
.cismp-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.cismp-main .heading h2 {
  position: relative;
  padding-left: 1rem;
}
.cismp-main .heading h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background-image: url(/_public/images/cismp/blue-heading.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  animation: move 3s linear infinite;
  top: 4px;
}
.cismp-main .heading h2::after {
  content: '';
  width: 4px;
  height: 28px;
  background-image: url(/_public/images/cismp/grey-heading.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  animation: move-2 3s linear infinite;
  left: 8px;
  top: 4px;
}
.cismp-main .center-heading {
  align-items: center;
}
.cismp-main .center-heading h2 {
  text-align: center;
}
.cismp-main .white-heading h2 {
  color: #fff;
}
.cismp-main .white-heading h2::before {
  background-image: url(/_public/images/cismp/white-left.svg);
}
.cismp-main .white-heading h2::after {
  background-image: url(/_public/images/cismp/white-right.svg);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes starMove {
  0% {
    left: 0;
    top: 0;
  }
  100% {
    left: -10000px;
    top: -2000px;
  }
}
@keyframes move {
  0% {
    transform: scale(1);
    left: 0px;
  }
  50% {
    transform: scale(1.5);
    left: 8px;
  }
  100% {
    transform: scale(1);
    left: 0px;
  }
}
@keyframes move-2 {
  0% {
    transform: scale(1);
    left: 8px;
  }
  50% {
    transform: scale(0.5);
    left: 0px;
  }
  100% {
    transform: scale(1);
    left: 8px;
  }
}
.cismp-main .banner {
  flex-direction: column;
  background-color: #002B54;
}
.cismp-main .banner .logo-container {
  display: flex;
}
.cismp-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #fff;
  align-items: center;
}
.cismp-main .banner .logo-container .container .tka-logo {
  display: flex;
  max-width: 200px;
}
.cismp-main .banner .logo-container .container .tka-logo img {
  width: 100%;
  height: 100%;
}
.cismp-main .banner .logo-container .container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.cismp-main .banner .logo-container .container .menu img {
  width: 24px;
  height: 22px;
}
.cismp-main .banner .logo-container .container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.cismp-main .banner .logo-container .container .menu-links .menu-toggle {
  color: #002B54;
  align-items: center;
}
.cismp-main .banner .logo-container .container .menu-links .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.cismp-main .banner .logo-container .container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #002B54;
}
.cismp-main .banner .logo-container .container ul .links-li:first-child {
  padding-top: 0;
}
.cismp-main .banner .logo-container .container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.cismp-main .banner .logo-container .container ul .links-li:last-child {
  display: none;
  padding-bottom: 0;
}
.cismp-main .banner .logo-container .container ul .links-li .link {
  font-size: 14px;
  color: #002B54;
}
.cismp-main .banner .logo-container .container ul .buttons {
  display: none;
}
.cismp-main .banner .logo-container .container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.cismp-main .banner .logo-container .container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.cismp-main .banner .logo-container .container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
}
.cismp-main .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.cismp-main .banner .sticky-up {
  top: -100px;
}
.cismp-main .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
.cismp-main .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cismp-main .banner .banner-container .banner-content h1 {
  display: flex;
  color: #fff;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 24px;
  width: 100%;
}
.cismp-main .banner .banner-container .banner-content h1 img {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
}
.cismp-main .banner .banner-container .banner-content p {
  color: #fff;
}
.cismp-main .banner .banner-container .banner-content h3 {
  display: flex;
  color: #fff;
  margin: 1rem 0 1rem 0;
}
.cismp-main .banner .banner-container .banner-content h3 img {
  margin-right: 7px;
  width: 25px;
  height: 25px;
}
.cismp-main .banner .banner-container .banner-content .countdown {
  display: flex;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer {
  display: flex;
  flex-direction: column;
  margin-right: 0.9rem;
  position: relative;
  align-items: center;
  z-index: 0;
  width: 58px;
  border: 1px solid #78A300;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/cismp/colon.svg);
  width: 15px;
  height: 31px;
  right: -15px;
  top: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer:last-child {
  margin-right: 0;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer:last-child::before {
  content: none;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer span {
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding: 0.5rem 0;
  font-weight: 500;
  color: #fff;
}
.cismp-main .banner .banner-container .banner-content .countdown .timer p {
  width: 100%;
  font-weight: 500;
  background-color: #fff;
  color: #002B54;
  text-align: center;
  font-size: 13px;
}
.cismp-main .banner .banner-container .banner-content .buttons {
  margin-top: 2rem;
}
.cismp-main .banner .banner-container .banner-content .buttons .btn-green:hover {
  background-color: #78A300;
}
.cismp-main .banner .banner-container .banner-info {
  margin-top: 2rem;
  display: flex;
  height: 100%;
}
.cismp-main .banner .banner-container .banner-info img {
  width: 100%;
  height: 100%;
}
.cismp-main .facts-fig {
  padding: 3rem 1.5rem;
}
.cismp-main .facts-fig .facts-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .facts-fig .facts-container p {
  text-align: center;
}
.cismp-main .facts-fig .facts-container .facts-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.cismp-main .facts-fig .facts-container .facts-list .facts {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  width: 126px;
}
.cismp-main .facts-fig .facts-container .facts-list .facts .image {
  width: 85px;
  height: 85px;
  padding: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 10px solid #C8D0D9;
  box-shadow: 0 0 0 10px #B5C1CD;
}
.cismp-main .facts-fig .facts-container .facts-list .facts .image img {
  width: 100%;
  height: 100%;
}
.cismp-main .facts-fig .facts-container .facts-list .facts .image .white-img {
  display: none;
}
.cismp-main .facts-fig .facts-container .facts-list .facts .facts-count {
  display: flex;
  align-items: center;
  margin: 15px 0 5px 0;
}
.cismp-main .facts-fig .facts-container .facts-list .facts .facts-count h3,
.cismp-main .facts-fig .facts-container .facts-list .facts .facts-count span {
  color: #78A300;
  font-weight: 600;
  font-size: 20px;
}
.cismp-main .facts-fig .facts-container .facts-list .facts p {
  font-weight: 700;
  line-height: 1.4;
}
.cismp-main .facts-fig .facts-container .facts-list .facts:hover .image {
  transition: 0.5s ease-in-out;
  background-color: #002B54;
  border: 10px solid #8195AA;
  box-shadow: 0 0 0 10px #B5C1CD;
}
.cismp-main .facts-fig .facts-container .facts-list .facts:hover .image .white-img {
  display: flex;
}
.cismp-main .facts-fig .facts-container .facts-list .facts:hover .image .black-img {
  display: none;
}
.cismp-main .overview-course {
  padding: 3rem 1.5rem;
  background-color: #f5f5f5;
  padding-bottom: 5rem;
}
.cismp-main .overview-course .overview-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .overview-course .overview-container .overview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cismp-main .overview-course .overview-container .course {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.cismp-main .overview-course .overview-container .course .course-inner {
  display: flex;
  position: relative;
  width: 272px;
  align-self: center;
}
.cismp-main .overview-course .overview-container .course .course-inner::after {
  content: '';
  background-color: #002B54;
  width: 90%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  left: -7px;
  bottom: -24px;
  transform: skew(0deg, 5deg);
  z-index: 0;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  align-items: flex-start;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content .course-img {
  display: flex;
  background-color: #002B54;
  padding: 0.7rem;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content .course-img img {
  width: 100%;
  height: 100%;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content h3 {
  font-size: 16px;
  margin: 0.5rem 0;
  width: 100%;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content p {
  color: #ABABAB;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content::before {
  content: '';
  background-color: #f7f7f7;
  width: 90%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  left: 0;
  top: 20px;
  transform: skew(0deg, 11deg);
  transition: 0.7s ease-out;
  z-index: -1;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content:hover::before {
  width: 100%;
  transform: skew(0deg, 0deg);
  top: 0;
  left: 0;
}
.cismp-main .overview-course .overview-container .course .course-inner .course-content .buttons {
  justify-content: flex-start;
}
.cismp-main .cover {
  display: none;
}
.cismp-main .form-choose {
  padding: 3rem 1.5rem;
  background-color: #002B54;
}
.cismp-main .form-choose .choose-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .form-choose .choose-container .form {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  margin-bottom: 0;
  order: 2;
}
.cismp-main .form-choose .choose-container .form .heading h2 {
  padding-left: 0;
}
.cismp-main .form-choose .choose-container .form .heading h2::before,
.cismp-main .form-choose .choose-container .form .heading h2::after {
  content: none;
}
.cismp-main .form-choose .choose-container .form .input-container {
  display: flex;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #B9B9B9;
  margin-bottom: 1rem;
  width: 100%;
}
.cismp-main .form-choose .choose-container .form .input-container input,
.cismp-main .form-choose .choose-container .form .input-container textarea {
  width: 100%;
  border: none;
  outline: 0;
  font-weight: 500;
  background-color: transparent;
}
.cismp-main .form-choose .choose-container .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.cismp-main .form-choose .choose-container .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #afafaf;
}
.cismp-main .form-choose .choose-container .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #afafaf;
}
.cismp-main .form-choose .choose-container .form .input-error {
  border-bottom: 2px solid red;
}
.cismp-main .form-choose .choose-container .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.cismp-main .form-choose .choose-container .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: red;
}
.cismp-main .form-choose .choose-container .form .form-consent {
  display: flex;
  font-size: 12px;
  margin-bottom: 0.4rem;
  width: 100%;
}
.cismp-main .form-choose .choose-container .form .form-consent:last-child {
  margin-bottom: 0;
}
.cismp-main .form-choose .choose-container .form .form-consent label {
  margin-left: 0.3rem;
  width: 90%;
}
.cismp-main .form-choose .choose-container .form .form-consent p {
  color: #000000;
  line-height: 1.4;
  font-size: 12px;
}
.cismp-main .form-choose .choose-container .form .form-consent a {
  color: #78A300;
  font-weight: bold;
}
.cismp-main .form-choose .choose-container .form .consent-error,
.cismp-main .form-choose .choose-container .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.cismp-main .form-choose .choose-container .form .consent-error p,
.cismp-main .form-choose .choose-container .form .consent-error-other p {
  color: red;
  line-height: 1.4;
  font-size: 12px;
}
.cismp-main .form-choose .choose-container .why-choose {
  display: flex;
  flex-direction: column;
  order: 1;
}
.cismp-main .form-choose .choose-container .why-choose p {
  color: #fff;
  text-align: center;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list {
  display: flex;
  flex-direction: column;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list .choose {
  display: flex;
  flex-direction: column;
  width: 320px;
  align-self: center;
  padding: 1rem;
  align-items: center;
  background-color: #1b354f;
  margin-top: 1.5rem;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list .choose span {
  display: flex;
  width: 50px;
  height: 50px;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list .choose span img {
  width: 100%;
  height: 100%;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content h3 {
  color: #fff;
  text-align: center;
  margin: 0.5rem 0;
  line-height: 1.2;
  font-size: 16px;
}
.cismp-main .qualified {
  padding: 3rem 1.5rem;
  padding-bottom: 0;
}
.cismp-main .qualified .qualified-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .qualified .qualified-container .qualified-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cismp-main .qualified .qualified-container .qualified-content .heading{
  width: 100%;
}
.cismp-main .qualified .qualified-container .qualified-content ul{
  width: 100%;
}
.cismp-main .qualified .qualified-container .qualified-content ul li {
  font-size: 14px;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}
.cismp-main .qualified .qualified-container .qualified-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  border: 3px solid #707070;
  background-color: #fff;
  z-index: -1;
}
.cismp-main .qualified .qualified-container .course-review {
  height: 100%;
  margin-top: 2rem;
}
.cismp-main .qualified .qualified-container .course-review .heading {
  margin-bottom: 2rem;
}
.cismp-main .qualified .qualified-container .course-review .heading h2{
  width: 100%;
}
.cismp-main .qualified .qualified-container .course-review span {
  display: flex;
}
.cismp-main .qualified .qualified-container .course-review span img {
  width: 100%;
  height: 100%;
}
.cismp-main .limited-budget {
  padding: 3rem 1.5rem;
}
.cismp-main .limited-budget .budget-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .limited-budget .budget-container .budget {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  order: 2;
  margin-top: 2rem;
}
.cismp-main .limited-budget .budget-container .budget p {
  font-weight: 500;
}
.cismp-main .limited-budget .budget-container .budget ul{
  width: 100%;
}
.cismp-main .limited-budget .budget-container .budget ul li {
  font-size: 14px;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}
.cismp-main .limited-budget .budget-container .budget ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url(/_public/images/cismp/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  z-index: -1;
}
.cismp-main .limited-budget .budget-container .budget .count {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}
.cismp-main .limited-budget .budget-container .objectives {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cismp-main .limited-budget .budget-container .objectives ul{
  width: 100%;
}
.cismp-main .limited-budget .budget-container .objectives ul li {
  font-size: 14px;
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  z-index: 1;
}
.cismp-main .limited-budget .budget-container .objectives ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  border: 3px solid #707070;
  background-color: #fff;
  z-index: -1;
}
.cismp-main .delivery-methods {
  padding: 3rem 1.5rem;
  background-color: #002B54;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.cismp-main .delivery-methods #background,
.cismp-main .delivery-methods #midground {
  background-image: url(/_public/images/cismp/midground.png);
  animation: starMove 300s linear infinite;
}
.cismp-main .delivery-methods #foreground {
  background-image: url(/_public/images/cismp/foreground.png);
  animation: starMove 300s linear infinite;
}
.cismp-main .delivery-methods .white-stars {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
.cismp-main .delivery-methods .delivery-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .delivery-methods .delivery-container p {
  color: #fff;
  text-align: center;
}
.cismp-main .delivery-methods .delivery-container .delivery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  width: 134px;
  align-self: center;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery .image {
  display: flex;
  background-color: #D1D1D1;
  padding: 0.3rem;
  transition: 1s all;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery .image span {
  width: 80px;
  height: 80px;
  padding: 1.3rem;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery .image span img {
  width: 100%;
  height: 100%;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery .image span .black {
  display: flex;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery .image span .white {
  display: none;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery p {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover .image span {
  background-color: #002B54;
  transition: 1s all;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover .image span .white {
  display: flex;
}
.cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover .image span .black {
  display: none;
}
.cismp-main .benefits-success {
  padding: 3rem 1.5rem;
  background-color: #f5f5f5;
}
.cismp-main .benefits-success .benefit-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .benefits-success .benefit-container .benefit {
  display: flex;
  width: 100%;
  order: 2;
  margin-top: 2rem;
  height: 100%;
}
.cismp-main .benefits-success .benefit-container .benefit img {
  width: 100%;
  height: 100%;
}
.cismp-main .benefits-success .benefit-container .success {
  display: flex;
  flex-direction: column;
}
.cismp-main .benefits-success .benefit-container .success .heading{
  width: 100%;
}
.cismp-main .benefits-success .benefit-container .success .heading h2{
  width: 100%;
}
.cismp-main .benefits-success .benefit-container .success p {
  text-align: center;
}
.cismp-main .benefits-success .benefit-container .success p:nth-child(2) {
  margin-bottom: 0.5rem;
}
.cismp-main .limited-offer {
  padding: 3rem 1.5rem;
  padding-bottom: 0;
}
.cismp-main .limited-offer .offer-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}
.cismp-main .limited-offer .offer-container .offer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cismp-main .limited-offer .offer-container .offer span {
  display: flex;
  width: 70px;
  height: 70px;
}
.cismp-main .limited-offer .offer-container .offer span img {
  width: 100%;
  height: 100%;
}
.cismp-main .limited-offer .offer-container .offer .offer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cismp-main .limited-offer .offer-container .offer .offer-content h2,
.cismp-main .limited-offer .offer-container .offer .offer-content p {
  text-align: center;
}
.cismp-main .limited-offer .offer-container .offer .offer-content h2 {
  margin: 0.5rem 0;
}
.cismp-main .faq-review {
  padding: 3rem 1.5rem;
}
.cismp-main .faq-review .faq-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .faq-review .faq-container .faq {
  display: flex;
  flex-direction: column;
}
.cismp-main .faq-review .faq-container .faq .heading {
  margin-bottom: 1.5rem;
}
.cismp-main .faq-review .faq-container .faq .heading h2 {
  text-align: center;
}
.cismp-main .faq-review .faq-container .faq .faq-list {
  display: flex;
  flex-direction: column;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 1.2rem;
  width: 100%;
  padding: 0.8rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name:last-child {
  margin-bottom: 0;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ques {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ques h3 {
  font-size: 14px;
  width: 88%;
  margin-right: auto;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ques span {
  width: 25px;
  height: 25px;
  transition: 0.7s ease-in-out;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ques span img {
  width: 100%;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ans {
  display: none;
  padding-top: 8px;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ans p {
  line-height: 1.6;
  font-size: 13px;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ans ul {
  margin-top: 5px;
  padding-left: 0.7rem;
  margin-left: 0.5rem;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ans ul li {
  font-size: 13px;
  line-height: 1.5;
  list-style: disc;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name.active::after {
  background-color: #78A300;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques::before {
  width: 15px;
  height: 15px;
  border: 2px solid #78A300;
  left: -29px;
  transition: 0.5s ease-in-out;
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques span {
  transform: rotate(180deg);
}
.cismp-main .faq-review .faq-container .faq .faq-list .faq-name.active + .faq-name::before {
  background-color: #78A300;
}
.cismp-main .faq-review .faq-container .review {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.cismp-main .faq-review .faq-container .review .review-list {
  display: flex;
  flex-direction: column;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content {
  width: 95%;
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-image: url(/_public/images/cismp/bottom-review.svg), url(/_public/images/cismp/top-review.svg);
  background-position: bottom, top;
  background-repeat: no-repeat;
  background-size: contain;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content h3 {
  text-align: center;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content h4 {
  color: #78A300;
  text-align: center;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content p {
  text-align: center;
  margin: 1rem 0;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content span {
  width: 55px;
  height: 55px;
  display: flex;
}
.cismp-main .faq-review .faq-container .review .review-list .review-content span img {
  width: 100%;
  height: 100%;
}
.cismp-main .faq-review .faq-container .review .review-list .owl-dots {
  width: 130px;
  display: flex;
  align-self: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.cismp-main .faq-review .faq-container .review .review-list .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #C7C7C7;
}
.cismp-main .faq-review .faq-container .review .review-list .owl-dots .owl-dot.active {
  width: 28px;
  height: 12px;
  background-color: #78A300;
  border-radius: 20px;
}
.cismp-main .offer-footer {
  padding: 3rem 1.5rem;
  background-color: #002B54;
}
.cismp-main .offer-footer .footer-container {
  display: flex;
  flex-direction: column;
}
.cismp-main .offer-footer .footer-container .looking-for {
  display: none;
}
.cismp-main .offer-footer .footer-container .looking-for h2 {
  text-align: center;
  font-size: 28px;
}
.cismp-main .offer-footer .footer-container .looking-for p {
  line-height: 1.4;
  padding-top: 0.5rem;
  text-align: center;
}
.cismp-main .offer-footer .footer-container .footer {
  display: flex;
  flex-direction: column;
}
.cismp-main .offer-footer .footer-container .footer .footer-content {
  display: flex;
  flex-direction: column;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .heading {
  margin-bottom: 1rem;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list {
  display: flex;
  flex-direction: column;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact {
  display: flex;
  align-items: center;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact span {
  display: flex;
  width: 58px;
  height: 54px;
  margin-right: 0.5rem;
  align-items: center;
  background-image: url(/_public/images/cismp/polygon.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1.1rem;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact span img {
  width: 100%;
  height: 100%;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact .info {
  display: flex;
  flex-direction: column;
  width: 70%;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact .info p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact .info a {
  color: #fff;
  font-size: 14px;
}
.cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact:first-child {
  margin-bottom: 1rem;
}
.cismp-main .offer-footer .footer-container .footer .buttons {
  justify-content: flex-start;
}
.cismp-main .offer-footer .footer-container .footer .buttons .btn-green:hover {
  background-color: #78A300;
}
@media (min-width : 768px) {
  .cismp-main .buttons .btn-green,
  .cismp-main .buttons .btn-white {
    font-size: 16px;
  }
  .cismp-main .banner {
    padding: 3rem 2rem;
    padding-top: 1rem;
  }
  .cismp-main .banner .logo-container {
    width: 100%;
  }
  .cismp-main .banner .logo-container .container .menu.active + .menu-links {
    width: 50%;
  }
  .cismp-main .banner .banner-container {
    width: 100%;
    padding: 0;
    padding-top: 2rem;
  }
  .cismp-main .banner .banner-container .banner-content h1 {
    align-items: center;
  }
  .cismp-main .banner .banner-container .banner-content .countdown .timer {
    width: 70px;
    margin-right: 1.2rem;
  }
  .cismp-main .banner .banner-container .banner-content .countdown .timer::before {
    right: -18px;
  }
  .cismp-main .banner .banner-container .banner-content .countdown .timer p {
    font-size: 14px;
  }
  .cismp-main .banner .banner-container .banner-info {
    display: none;
  }
  .cismp-main .facts-fig {
    padding: 3rem 2rem;
  }
  .cismp-main .facts-fig .facts-container .facts-list .facts {
    width: 24%;
  }
  .cismp-main .facts-fig .facts-container .facts-list .facts p {
    font-size: 16px;
  }
  .cismp-main .overview-course {
    padding: 3rem 2rem;
  }
  .cismp-main .overview-course .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .overview-course .overview-container .overview {
    width: 56%;
  }
  .cismp-main .overview-course .overview-container .course {
    margin-top: 0;
    width: 40%;
  }
  .cismp-main .cover {
    display: flex;
    padding: 3rem 2rem;
  }
  .cismp-main .cover .cover-container {
    display: flex;
    flex-direction: column;
  }
  .cismp-main .cover .cover-container .heading {
    margin-bottom: 2rem;
  }
  .cismp-main .cover .cover-container span {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .cismp-main .cover .cover-container span img {
    width: 100%;
    height: 100%;
  }
  .cismp-main .form-choose {
    padding: 3rem 2rem;
  }
  .cismp-main .form-choose .choose-container .form {
    width: 65%;
    align-self: center;
    background-image: url('/_public/images/cismp/form-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose {
    width: 48%;
  }
  .cismp-main .qualified {
    padding: 3rem 2rem;
  }
  .cismp-main .qualified .qualified-container .qualified-content {
    align-items: center;
  }
  .cismp-main .qualified .qualified-container .qualified-content .heading{
    width: auto;
  }
  .cismp-main .qualified .qualified-container .course-review span {
    width: 80%;
    margin: auto;
  }
  .cismp-main .limited-budget {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .cismp-main .limited-budget .budget-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .limited-budget .budget-container .budget {
    order: 0;
    margin-top: 0;
    width: 48%;
    height:100%;
    position: sticky;
    top: 55px;
  }
  .cismp-main .limited-budget .budget-container .budget ul{
    width: 100%;
  }
  .cismp-main .limited-budget .budget-container .objectives {
    width: 48%;
  }
  .cismp-main .delivery-methods {
    padding: 3rem 2rem;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list {
    position: relative;
    z-index: 1;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    top: 45%;
    left: 16%;
    border-top: 2px dotted #fff;
    z-index: -1;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery {
    width: 158px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background-color: #fff;
    top: 33px;
    right: -25px;
    border: 4px solid #707070;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery:last-child::before {
    content: none;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery p {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover .image {
    transform: rotate(46deg);
    transition: 1s all;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover .image span .white {
    transform: rotate(-46deg);
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery:hover p {
    margin-top: 1.5rem;
    transition: 1s all;
  }
  .cismp-main .benefits-success {
    padding: 3rem 2rem;
  }
  .cismp-main .benefits-success .benefit-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .benefits-success .benefit-container .benefit {
    width: 48%;
    margin-top: 0;
    order: 1;
    position: sticky;
    height: fit-content;
    top: 65px;
  }
  .cismp-main .benefits-success .benefit-container .success {
    width: 48%;
    align-items: flex-start;
    order: 2;
  }
  .cismp-main .benefits-success .benefit-container .success .heading h2 {
    text-align: left;
  }
  .cismp-main .benefits-success .benefit-container .success p {
    text-align: left;
  }
  .cismp-main .limited-offer {
    padding: 3rem 2rem;
    background-image: url('/_public/images/cismp/offer-left.png'), url('/_public/images/cismp/offer-right.png');
    background-repeat: no-repeat;
    background-size: 21% 100%;
    background-position: left, right;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cismp-main .limited-offer .offer-container {
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    width: 70%;
    margin: auto;
  }
  .cismp-main .limited-offer .offer-container .offer {
    flex-direction: row;
    width: 60%;
  }
  .cismp-main .limited-offer .offer-container .offer span {
    margin-right: 1rem;
  }
  .cismp-main .limited-offer .offer-container .offer .offer-content {
    width: 70%;
  }
  .cismp-main .limited-offer .offer-container .offer .offer-content h2,
  .cismp-main .limited-offer .offer-container .offer .offer-content p {
    text-align: left;
  }
  .cismp-main .limited-offer .offer-container .offer .offer-content h2 {
    margin: 0;
  }
  .cismp-main .limited-offer .offer-container .buttons {
    margin-top: 0;
    width: 33%;
    justify-content: flex-end;
  }
  .cismp-main .faq-review {
    padding: 3rem 2rem;
    padding-bottom: 0;
  }
  .cismp-main .faq-review .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .faq-review .faq-container .faq {
    width: 50%;
  }
  .cismp-main .faq-review .faq-container .review {
    width: 47%;
    margin-top: 0;
    position: sticky;
    height: fit-content;
    top: 74px;
  }
  .cismp-main .faq-review .faq-container .review .review-list .review-content {
    width: 83%;
    margin: auto;
  }
  .cismp-main .offer-footer {
    padding: 3rem 2rem;
    padding-bottom: 1.5rem;
    background-image: url('/_public/images/cismp/footer-bg.png');
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 78%;
    background-position: bottom;
  }
  .cismp-main .offer-footer .footer-container .looking-for {
    display: flex;
    width: 80%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    align-self: center;
    position: relative;
    z-index: 1;
  }
  .cismp-main .offer-footer .footer-container .looking-for::before {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #78A300;
    position: absolute;
    top: -10px;
    left: 0;
  }
  .cismp-main .offer-footer .footer-container .footer {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content {
    width: 62%;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content .heading {
    display: none;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content .contact-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact {
    width: 36%;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content .contact-list .contact:first-child {
    margin-bottom: 0;
    width: 64%;
  }
  .cismp-main .offer-footer .footer-container .footer .buttons {
    margin-top: 0;
    width: 40%;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  .cismp-main p {
    line-height: 1.8;
  }
  .cismp-main .heading h2 {
    font-size: 28px;
  }
  .cismp-main .banner {
    background-color: transparent;
    background-image: url(/_public/images/cismp/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0;
  }
  .cismp-main .banner .logo-container {
    padding: 1rem 2rem;
    background-color: white;
    border-bottom-right-radius: 68px;
    border-bottom-left-radius: 68px;
  }
  .cismp-main .banner .logo-container .container {
    box-shadow: none;
    padding: 0;
    background-color: transparent;
  }
  .cismp-main .banner .logo-container .container .menu {
    display: none;
  }
  .cismp-main .banner .logo-container .container .menu-links {
    width: 78%;
    display: flex;
    background: 0 0;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .cismp-main .banner .logo-container .container .menu-links .menu-toggle {
    display: none;
  }
  .cismp-main .banner .logo-container .container .menu-links ul {
    display: flex;
    align-items: center;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .link {
    font-weight: 600;
    color: #000000;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .link::before {
    content: '';
    width: 0;
    height: 0;
    background-color: #002B54;
    position: absolute;
    bottom: -5px;
    transition: 0.5s ease-in-out;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .link::after {
    content: '';
    width: 0;
    height: 10px;
    border-radius: 50%;
    background-color: #78A300;
    position: absolute;
    top: 0;
    left: 45%;
    transition: 0.2s ease-in-out;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .link:hover::before {
    width: 100%;
    height: 2px;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .link:hover::after {
    width: 10px;
    top: 17px;
    left: 45%;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .buttons .btn-green {
    border: 1px solid transparent;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .buttons .btn-white {
    margin-right: 1rem;
    box-shadow: none;
  }
  .cismp-main .banner .container{
    height: 100%;
  }
  .cismp-main .banner .sticky .container {
    padding: 0;
  }
  .cismp-main .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
    padding-bottom: 3rem;
  }
  .cismp-main .banner .banner-container .banner-content {
    width: 53%;
  }
  .cismp-main .banner .banner-container .banner-info {
    display: flex;
    margin-top: 0;
    width: 44%;
    align-self: center;
  }
  .cismp-main .overview-course {
    padding-bottom: 5rem;
  }
  .cismp-main .overview-course .overview-container .overview {
    width: 60%;
  }
  .cismp-main .overview-course .overview-container .course {
    width: 30%;
  }
  .cismp-main .form-choose {
    background-image: url('/_public/images/cismp/choose-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    padding-top: 6rem !important;
  }
  .cismp-main .form-choose .choose-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .form-choose .choose-container .form {
    width: 35%;
    margin-top: 0;
    align-items: flex-start;
    order: 0;
  }
  .cismp-main .form-choose .choose-container .why-choose {
    width: 62%;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose {
    min-height: 217px;
  }
  .cismp-main .qualified {
    background-image: url(/_public/images/cismp/qualified-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .cismp-main .qualified .qualified-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .cismp-main .qualified .qualified-container .qualified-content {
    width: 45%;
  }
  .cismp-main .qualified .qualified-container .course-review {
    width: 45%;
    margin-top: 0;
  }
  .cismp-main .qualified .qualified-container .course-review span {
    width: 100%;
  }
  .cismp-main .limited-budget {
    padding-top: 1rem;
  }
  .cismp-main .limited-budget .budget-container .budget {
    background-image: url(/_public/images/cismp/budget-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    padding: 2rem;
    padding-right: 8rem;
    align-self: center;
    position: initial;
  }
  .cismp-main .limited-budget .budget-container .budget .buttons {
    justify-content: flex-start;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery::before {
    right: -30%;
  }
  .cismp-main .benefits-success {
    background-image: url('/_public/images/cismp/success.png');
    background-repeat: no-repeat;
    background-size: 59% 100%;
    background-position: top right -20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .cismp-main .benefits-success .benefit-container .benefit {
    width: 43%;
    position: initial;
    align-self: center;
  }
  .cismp-main .benefits-success .benefit-container .success {
    width: 46%;
  }
  .cismp-main .limited-offer .offer-container .offer {
    width: 70%;
  }
  .cismp-main .limited-offer .offer-container .offer .offer-content {
    width: 93%;
  }
  .cismp-main .offer-footer .footer-container .looking-for {
    width: 54%;
  }
  .cismp-main .offer-footer .footer-container .footer {
    margin-top: 1.5rem;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content {
    width: 56%;
  }
  .cismp-main .faq-review .faq-container .faq {
    padding-left: 2rem;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name {
    position: relative;
    z-index: 1;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name::before {
    content: '';
    width: 2px;
    height: 16px;
    background-color: #707070;
    position: absolute;
    left: -20px;
    z-index: -1;
    top: 5px;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name::after {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #707070;
    position: absolute;
    left: -20px;
    z-index: 1;
    top: 25px;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name:first-child::before {
    content: none;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name:last-child::after {
    content: none;
  }
  .cismp-main .faq-review .faq-container .faq .faq-list .faq-name .ques::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50px;
    background-color: #fff;
    left: -26px;
    top: 20px;
    z-index: 2;
    border: 2px solid #707070;
  }
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 40%;
  }
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .owl-prev,
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .owl-next {
    background-image: url(/_public/images/cismp/review-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    outline: 0;
    width: 25px;
    height: 25px;
    opacity: 0.5;
    transform: translate(-7px);
  }
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .owl-prev span,
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .owl-next span {
    display: none;
  }
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .owl-next {
    transform: rotate(180deg) translate(-7px);
  }
  .cismp-main .faq-review .faq-container .review .review-list .owl-nav .btn-active {
    opacity: 1;
  }
}
@media (min-width : 1366px) {
  .cismp-main .container {
    width: 1200px;
    margin: 0 auto;
  }
  .cismp-main .heading h2 {
    font-size: 32px;
  }
  .cismp-main .buttons .btn-green,
  .cismp-main .buttons .btn-white {
    font-size: 18px;
  }
  .cismp-main .banner .logo-container {
    padding: 1rem 0;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li {
    margin-right: 2rem;
  }
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .btn-white,
  .cismp-main .banner .logo-container .container .menu-links ul .links-li .btn-green {
    min-width: 173px;
  }
  .cismp-main .banner .banner-container {
    padding: 2rem 0;
  }
  .cismp-main .banner .banner-container .banner-content {
    width: 60%;
  }
  .cismp-main .banner .banner-container .banner-info {
    width: 34%;
  }
  .cismp-main .facts-fig {
    padding: 4rem 0rem;
  }
  .cismp-main .facts-fig .facts-container {
    position: relative;
    z-index: 1;
  }
  .cismp-main .facts-fig .facts-container::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/cismp/facts-dots.svg);
    width: 140px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    right: -15px;
    top: -59px;
    animation: rotate 10s linear infinite;
  }
  .cismp-main .facts-fig .facts-container .facts-list .facts {
    width: 15%;
  }
  .cismp-main .overview-course {
    padding: 4rem 0rem;
  }
  .cismp-main .overview-course .overview-container .course .course-inner {
    width: 326px;
  }
  .cismp-main .cover {
    padding: 4rem 0rem;
  }
  .cismp-main .form-choose {
    padding: 4rem 0rem;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose {
    flex-direction: row;
    justify-content: space-between;
    min-height: auto;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose span {
    width: 75px;
    height: 75px;
    padding-right: 1rem;
    border-right: 2px solid #8996a3;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content {
    width: 67%;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content p,
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content h3 {
    text-align: left;
    line-height: 1.6;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content p{
    font-size: 13px;
  }
  .cismp-main .form-choose .choose-container .why-choose .choose-list .choose .choose-content h3 {
    margin-top: 0;
    font-size: 16px;
  }
  .cismp-main .qualified {
    padding: 4rem 0rem;
  }
  .cismp-main .qualified .qualified-container .qualified-content {
    width: 50%;
  }
  .cismp-main .qualified .qualified-container .course-review {
    width: 42%;
    align-items: center;
  }
  .cismp-main .limited-budget {
    padding: 4rem 0rem;
    padding-top: 3rem;
  }
  .cismp-main .limited-budget .budget-container .budget {
    width: 47%;
  }
  .cismp-main .delivery-methods {
    padding: 4rem 0rem;
  }
  .cismp-main .delivery-methods .delivery-container .delivery-list .delivery::before {
    right: -45%;
  }
  .cismp-main .benefits-success {
    padding: 4rem 0rem;
  }
  .cismp-main .benefits-success .benefit-container .benefit {
    width: 40%;
  }
  .cismp-main .faq-review {
    padding: 4rem 0rem;
  }
  .cismp-main .faq-review .faq-container .review .review-list .review-content {
    width: 80%;
  }
  .cismp-main .offer-footer {
    padding: 4rem 0rem;
    padding-bottom: 1.5rem;
    padding-top: 0;
  }
  .cismp-main .offer-footer .footer-container .footer .footer-content {
    width: 46%;
  }
}
@media (min-width : 1500px) {
  .cismp-main .limited-offer {
    background-image: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }
}
