
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #7437DD;
    --card-line-height: 1.2em;
    --card-padding: 1em;
    --card-radius: 0.5em;
    --color-green: #558309;
    --color-gray: #e2ebf6;
    --color-dark-gray: #c4d1e1;
    --radio-border-width: 2px;
    --radio-size: 1.5em;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility
}

body {
    font-family: "Montserrat", sans-serif;
    background-image: linear-gradient(to top, #f6f9fc, #f9fafd, #fbfcfe, #fdfdfe, #ffffff);
    min-height: 100vh
}


ul {
  margin: 0;
}

/* NAVBAR */
.navbar {
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
  box-shadow: 0 5px 37px #7437dd14;
}
.navbar__logo {
  width: 200px
}
.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 15px;
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
}
.btn-register {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  padding: 11px 30px;
  font-weight: 600;
  box-shadow: 0 5px 25px #7437dd57;
}
.btn-login {
  font-weight: 600;
  color: #000
}
.header {
  background-color: #F5FCFE;
}
.header__primary--heading {
  font-size: 3rem;
  line-height: 1.3
}
.header-hint {
  font-weight: 700;
  font-style: italic;
}
.header-description {
  font-size: 1.3rem;
  margin-top: 20px;
}
.btn-fill {
  background-color: #FFD660;
  color: #000;
  font-weight: 600;
  border-radius: 100px;
  padding: 11px 30px;
}
.btn-learn-more {
  font-weight: 600;
  color: #7437dd;
  font-size: 1.1rem;
}
.category-box-icon img {
  width: 100px;
  margin-bottom: 20px;
  filter: grayscale(1);
  transition: all 0.3s linear
}
.category-box:hover .category-box-icon img {
  filter: grayscale(0);
  transform: translateY(-8px)
}

section {
  padding: 6rem 0
}
.categories__top-header {
  width: 50%;
  margin: auto
}
.category-top-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #471997;
}
.category-box {
  background-image: linear-gradient(to top, #e9edf2, #eff1f5, #f5f6f8, #fafafc, #ffffff);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 51px #4719973b;
  height: 100%;
  transition: all 0.3s ease-in-out
}
.category-box:hover {
  background-image: linear-gradient(to top, #5200d4, #5c15d5, #6522d6, #6d2dd7, #7537d8);
}
.category-box:hover .category-box-inner h3 {
  color: #fff
}
.categories .col-lg-3 {
  margin-bottom: 20px;
}
.category-box-inner h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #273b4c;
}
.why-heading {
  font-weight: 700;
  color: #231242;
  font-size: 3rem;
}
.why-choose-us-content p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  color: #05295da3;
}
.why-choose--list li {
  display: block;
  padding: 8px 0;
  border-radius: 10px;
  color: #1c2e49;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.why-choose--list li i {
  color: #24ba74;
  font-size: 21px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 32px #416fb22e;
  text-align: center;
  line-height: 2.5;
  padding: 0;
  margin-right: 10px;
}
.why-choose--list {
  display: flex;
  flex-wrap: wrap
}
.why-choose--list li {
  width: 50%;
  display: flex;
  align-items: center
}
.text-primary {
  color: var(--primary-color) !important
}

.learning-path {
  background-color: #F7FBFF
}
.learning-path-header {
  width: 50%;
  margin: auto
}
.learning-header-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #471997
}
.learning-path-description {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3b5376
}
.learn-path-heading {
  position: relative;
}
.learn-path-heading::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #dedbdb;
  border-radius: 50%;
  background-color: #fff;
  z-index: 2;
}
.field-container {
  position: relative;
  margin-top: 13vh;
}
.field-container::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 94px;
  background-color: #dedbdb;
}
.field-container::before {
  content: '';
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 90px;
  background-color: #dedbdb;
}
.learn-path-heading {
  position: relative;
  background-color: #ffffff;
  display: inline-block;
  box-shadow: 0 5px 25px #ffe5f7;
  padding: 10px 43px;
  border-radius: 10px;
  color: #7437dd;
}
h3 {
  margin: 0;
}
.learn-path-field {
  border: 2px solid #8a8a8a36;
  padding: 15px 35px;
  display: table;
  margin: auto;
  border-radius: 10px;
  background-color: #7437dd;
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
}
.card-content {
  width: 400px;
  margin: 4vh auto 0 auto;
}
.card-content-list {
  text-align: left
}
.card-content-list li {
  margin-bottom: 15px;
  font-size: 17px;
  color: #003268;
  font-weight: 600;
}
.card-content .card {
  border: none;
  box-shadow: rgb(80 50 89 / 20%) 0px 60px 40px -7px;
  border-radius: 15px;
}
.card-content .card img {
  border-radius: 10px;
  height: 250px;
  width: 100%
}

.main-head {
	background: #0D1440;
	box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
	padding: 1rem;
	margin-bottom: 0;
	margin-top: 5rem;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 4px;
	font-size: 16px;
}

.pricing-table {
	background: #fff;
	box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
	padding: 2rem;
	border-radius: 4px;
	transition: .3s;
  position: relative;
}

.discount-pricing {
  background-color: #b30415;
  color: #fff;
  padding: 6px 15px;
  border-radius: 10px;
  display: table;
  margin: 20px auto;
}
.discount-pricing {
  font-weight: 500;
}

.pricing-table:hover {
	box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, .15);
}

.pricing-table .pricing-label {
	border-radius: 2px;
	padding: .25rem .5rem;
	margin-bottom: 1rem;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
}

.pricing-table h2 {
  color: #000000;
  font-size: 35px;
  font-weight: 500;
}

.pricing-table h5 {
  color: #2b4c6d;
  font-size: 18px;
  font-weight: 400;
}

.pricing-table .pricing-features {
	margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
  font-size: 17px;
  margin: 0.5rem 0;
  color: #7a848f;
  margin-bottom: 20px;
}

.pricing-table .pricing-features .feature span {
	display: inline-block;
	float: right;
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table 	.price-tag {
	margin-top: 2rem;
	text-align: center;
	font-weight: 500;
}

.pricing-table .price-tag .symbol {
	font-size: 24px;
}

.pricing-table .price-tag .amount {
	letter-spacing: -2px;
	font-size: 64px;
}

.pricing-table .price-tag .after {
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table .price-button {
	display: block;
	color: #fff;
	margin-top: 2rem;
	padding: .75rem;
	border-radius: 2px;
	text-align: center;
	font-weight: 500;
	transition: .3s;
}

.pricing-table .price-button:hover {
	text-decoration: none;
}

.purple .pricing-label {
	background: #7437dd;
  color: #ffffff;
  border-radius: 6px;
}

.purple .price-tag {
	color: #7437dd;
}

.purple .price-button {
  background: #000000;
  text-decoration: none;
}

.purple .price-button:hover {
	background: var(--primary-color);
}

.turquoise .pricing-label {
	background: #b9edee;
	color: #44cdd2;
}

.turquoise .price-tag {
	color: #44cdd2;
}

.turquoise .price-button {
	background: #44cdd2;
}

.turquoise .price-button:hover {
	background: #2dbcc4;
}

.red .pricing-label {
	background: #ffc4c4;
	color: #ff5e5e;
}

.red .price-tag {
	color: #ff5e5e;
}

.red .price-button {
	background: #ff5e5e;
}

.red .price-button:hover {
	background: #f23c3c;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #7437dd;
}
.accordion-item .accordion-button {
  font-size: 25px;
  color: #7437dd
}
.accordion-item .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #7437dd
}
.accordion-body {
  font-size: 25px;
  color: #838587
}
.pricing {
  background-color: rgb(243, 243, 243)
}

.footer {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: #fff
}
.footer a {
  color: #fff;
  text-decoration: none
}
.footer-logo {
  background-color: #fff;
  border-radius: 10px;
  width: 193px;
  padding: 10px;
  margin-bottom: 20px;
}
.footer ul li {
  margin-bottom: 20px;
}
.footer-heading {
  margin-bottom: 30px;
  font-size: 25px
}
.footer-payment-img {
  background-color: #fff;
  margin-top: 23px;
  display: block;
  border-radius: 10px;
  padding: 10px;
}
.copyright {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.329)
}
.login-box {
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 4rem;
  max-width: 526px;
  margin: auto;
}
.login-primary-heading {
  font-weight: 600;
  color: #7437dd;
  font-size: 2rem;
}
.login-box .form-control {
  border: 1px solid #66889954;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  color: #000;
  box-shadow: none
}
.btn-primary-login {
  background-color: #7437dd;
  color: #fff;
  border: none;
  box-shadow: 0 20px 30px #7437dd45;
}


.grid {
  display: grid;
  grid-gap: var(--card-padding);
  margin: 0 auto;
  max-width: 60em;
  padding: 0;
}
@media (min-width: 42em) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
 }
}
.card-package {
  background-color: #fff;
  border-radius: var(--card-radius);
  position: relative;
  padding: 0;
}
.card:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
.radio {
  font-size: inherit;
  margin: 0;
  position: absolute;
  right: calc(var(--card-padding) + var(--radio-border-width));
  top: calc(var(--card-padding) + var(--radio-border-width));
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: var(--radio-border-width) solid var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
    height: var(--radio-size);
    outline: none;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
    width: var(--radio-size);
 }
  .radio::after {
    border: var(--radio-border-width) solid #fff;
    border-top: 0;
    border-left: 0;
    content: '';
    display: block;
    height: 0.75rem;
    left: 25%;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate(-50%, -50%);
    width: 0.375rem;
 }
  .radio:checked {
    background: var(--color-green);
    border-color: var(--color-green);
 }
  .card:hover .radio {
    border-color: var(--color-dark-gray);
 }
  .card:hover .radio:checked {
    border-color: var(--color-green);
 }
}
.plan-details {
  border: var(--radio-border-width) solid var(--color-gray);
  border-radius: var(--card-radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
  transition: border-color 0.2s ease-out;
}
.card:hover .plan-details {
  border-color: var(--color-dark-gray);
}
.radio:checked ~ .plan-details {
  border-color: var(--color-green);
}
.radio:focus ~ .plan-details {
  box-shadow: 0 0 0 2px var(--color-dark-gray);
}
.radio:disabled ~ .plan-details {
  color: var(--color-dark-gray);
  cursor: default;
}
.radio:disabled ~ .plan-details .plan-type {
  color: var(--color-dark-gray);
}
.card:hover .radio:disabled ~ .plan-details {
  border-color: var(--color-gray);
  box-shadow: none;
}
.card:hover .radio:disabled {
  border-color: var(--color-gray);
}
.plan-type {
  color: var(--color-green);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1em;
}
.plan-cost {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0.5rem 0;
}
.slash {
  font-weight: normal;
}
.plan-cycle {
  font-size: 2rem;
  font-variant: none;
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
}
.hidden-visually {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.register-form {
  max-width: 50% !important;
}
.ar_flag {
  width: 30px;
  border-radius: 5px
}

.img-transformed {

}

@media only screen and (max-width: 992px) {
  .header__primary--heading {
    font-size: 2rem;
  }
  .header-inner {
    padding-top: 20px;
    text-align: center;
  }
  .navbar__logo {
    width: 150px;
  }
  .navbar {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .categories__top-header {
    width: 100%;
  }
  .category-top-heading {
    font-size: 2rem;
  }
  .categories .col-lg-3 {
    width: 50%;
  }
  .category-box-icon img {
    width: 58px;
  }
  .category-box-inner h3 {
    font-size: 16px;
  }
  .why-heading {
    font-size: 2rem
  }
  .why-choose-us-content p {
    font-size: 17px;
  }
  .why-choose--list li {
    width: 100%;
  }
  .learning-path-header {
    width: 100%;
  }
  section {
    padding: 40px 0;
  }
  .field-container::after {
    bottom: 21px
  }
  .accordion-body {
    font-size: 20px;
  }
  .accordion-item .accordion-button {
    font-size: 18px;
    font-weight: 500;
  }
  .footer-payment-img {
    margin-bottom: 20px;
  }
  .card-content {
    width: 100%;
  }
  .btn {
    font-size: 12px;
  }
  .navbar .nav-link {
    padding: 10px !important;
    margin-bottom: 15px;
  }
  .login-box {
    padding: 1rem;
    max-width: 100%;
  }
  .register-form {
    max-width: 100% !important;
  }
  .login-primary-heading {
    font-size: 20px
  }
}

@media only screen and (max-width: 1024px) {
  .card-content {
    width: 100%;
  }
  .field-container::before {
    top: 100px;
  }
  .field-container::after {
    bottom: 18px
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .card-content {
    width: 400px;
  }
  .mt-mobile {
    margin-top: 20px;
  }
} 