h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  margin: 0;
}

p, a, span, button {
  font-family: 'Roboto', sans-serif;
}

button.button {
  background: #87cf35;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 20px;
  position: relative;
  border: none;
  outline: none;
  margin-right: 10px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

button.button::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  border: 1px solid #333333;
}

button.button:hover {
  background: #6da928;
  -webkit-transition: 300ms;
  transition: 300ms;
}

button.button a {
  text-decoration: none;
  color: inherit;
}

button.button-alt {
  padding: 8px 20px;
  border: 1px solid #333333;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #333333), color-stop(50%, transparent));
  background: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

button.button-alt:hover {
  background-position: 0 0;
  -webkit-transition: 300ms;
  transition: 300ms;
  color: #ffffff;
}

form {
  width: 100%;
}

form .form-grp {
  height: 40px;
  width: 100%;
  margin: 30px 0 0;
}

form .form-grp .form-input {
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  border-radius: 10px;
  border: 2px solid #333333;
  padding: 0 10px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp .form-input::-webkit-input-placeholder {
  color: transparent;
}

form .form-grp .form-input:-ms-input-placeholder {
  color: transparent;
}

form .form-grp .form-input::-ms-input-placeholder {
  color: transparent;
}

form .form-grp .form-input::placeholder {
  color: transparent;
}

form .form-grp .form-input:focus, form .form-grp .form-input:not(:placeholder-shown) {
  border-color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp .form-input:focus + .form-label,
form .form-grp .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(10px, -60px);
          transform: translate(10px, -60px);
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp .form-label {
  display: block;
  -webkit-transform: translate(10px, -33px);
          transform: translate(10px, -33px);
  pointer-events: none;
  font-family: 'Oswald', sans-serif;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp-alt {
  width: 100%;
  margin: 30px 0 0;
  position: relative;
}

form .form-grp-alt .form-input {
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  border-radius: 10px;
  border: 2px solid #333333;
  padding: 0 10px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp-alt .form-input::-webkit-input-placeholder {
  color: transparent;
}

form .form-grp-alt .form-input:-ms-input-placeholder {
  color: transparent;
}

form .form-grp-alt .form-input::-ms-input-placeholder {
  color: transparent;
}

form .form-grp-alt .form-input::placeholder {
  color: transparent;
}

form .form-grp-alt .form-input:focus, form .form-grp-alt .form-input:not(:placeholder-shown) {
  border-color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp-alt .form-input:focus + .form-label,
form .form-grp-alt .form-input:not(:placeholder-shown) + .form-label {
  top: -20px;
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form .form-grp-alt .form-label {
  position: absolute;
  top: 5px;
  left: 10px;
  pointer-events: none;
  font-family: 'Oswald', sans-serif;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form button {
  background: none;
  border: 2px solid #333333;
  border-radius: 10px;
  padding: 5px 20px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

form button:hover, form button:focus {
  background: #87cf35;
  color: #ffffff;
  border-color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

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

*, body, .row {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/*------------ Desktop View -------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.navbar .navbar-brand {
  position: relative;
}

.navbar .navbar-brand::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#87cf35), color-stop(90%, transparent)) no-repeat;
  background: linear-gradient(-90deg, #87cf35, transparent 90%) no-repeat;
  background-size: 0% 100%;
  background-position: right center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10%;
  right: -5px;
  bottom: 0;
  border-radius: 0 10px 10px 0;
  -webkit-transition: background-size 300ms ease-in;
  transition: background-size 300ms ease-in;
}

.navbar .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #333333;
  font-weight: 500;
  font-size: 18px;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  padding-bottom: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.navbar .navbar-nav .nav-item .dropdown-menu :hover {
  background: rgba(135, 207, 53, 0.2);
}

.navbar.scrolled {
  background: #ffffff;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
}

.navbar.scrolled .navbar-brand::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#87cf35), color-stop(90%, transparent)) no-repeat;
  background: linear-gradient(-90deg, #87cf35, transparent 90%) no-repeat;
  background-size: 100% 100%;
  background-position: right center;
  -webkit-transition: background-size 300ms ease-in;
  transition: background-size 300ms ease-in;
}

.section-one {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.section-one .bg-layer {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.section-one .bg-layer img {
  position: absolute;
  height: 200%;
  right: -5%;
  bottom: 20%;
  left: auto;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-animation-name: scale;
          animation-name: scale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.section-one .bg-layer .bg-layer-1 {
  -webkit-animation-duration: 30000ms;
          animation-duration: 30000ms;
}

.section-one .bg-layer .bg-layer-2 {
  -webkit-animation-duration: 20000ms;
          animation-duration: 20000ms;
  animation-direction: reverse;
}

.section-one .bg-layer .bg-layer-3 {
  -webkit-animation-duration: 10000ms;
          animation-duration: 10000ms;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.section-one .shape1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-one .shape1 img {
  position: absolute;
  top: 60vh;
  left: -10vh;
  max-width: 300px;
  opacity: .5;
  -webkit-animation: rotate 10000ms linear none infinite;
          animation: rotate 10000ms linear none infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.section-one .shape2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-one .shape2 img {
  position: absolute;
  top: 20vh;
  right: -10vh;
  max-width: 300px;
  opacity: .5;
  -webkit-animation: rotate 10000ms linear none infinite;
          animation: rotate 10000ms linear none infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.section-one .row {
  padding-top: 200px;
}

.section-one .row .col-lg-6 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-one .row .col-lg-6 .wrapper {
  padding: 50px;
  max-width: 700px;
  margin-left: auto;
}

.section-one .row .col-lg-6 .wrapper h1 {
  color: #87cf35;
  font-weight: 900;
  font-size: 90px;
}

.section-one .row .col-lg-6 .wrapper h2 {
  color: #4d4d4d;
}

.section-one .row .col-lg-6 .wrapper p {
  color: #333333;
  font-size: 20px;
}

.section-one .row .col-lg-6 .wrapper button {
  font-size: 18px;
}

.section-one .row .col-lg-6 .wrapper a {
  color: #7b7b7b;
}

.section-one .row .col-lg-6 .wrapper a i.phone::before {
  content: url(../svg/phone-call.svg);
  vertical-align: middle;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
}

.section-one .row .col-lg-6:nth-child(2) {
  position: relative;
  min-height: 600px;
}

.section-one .row .col-lg-6:nth-child(2) #hero {
  position: absolute;
  height: 400px;
  bottom: 0;
  right: 0;
  width: 100%;
}

.section-one .row .col-lg-6:nth-child(2) #hero::before {
  content: url(../img/hero-img.png);
  position: absolute;
  bottom: 0;
  -webkit-box-shadow: -20px 20px 40px rgba(51, 51, 51, 0.3);
          box-shadow: -20px 20px 40px rgba(51, 51, 51, 0.3);
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.section-two {
  margin-bottom: 100px;
  margin-top: 100px;
}

.section-two .row .col-lg-9 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.section-two .row .col-lg-9 .wrapper {
  height: 500px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr .8fr 50px;
      grid-template-rows: 1fr .8fr 50px;
  gap: 10px;
      grid-template-areas: "news1 news2 news3" "news1 news4 news5" "news1 news4 button";
}

.section-two .row .col-lg-9 .wrapper .news1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: news1;
}

.section-two .row .col-lg-9 .wrapper .news2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: news2;
}

.section-two .row .col-lg-9 .wrapper .news3 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: news3;
}

.section-two .row .col-lg-9 .wrapper .news4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: news4;
}

.section-two .row .col-lg-9 .wrapper .news5 {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: news5;
}

.section-two .row .col-lg-9 .wrapper button {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: button;
  font-size: 18px;
}

.section-two .row .col-lg-9 .wrapper .card {
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.section-two .row .col-lg-9 .wrapper .card img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}

.section-two .row .col-lg-9 .wrapper .card .card-img-overlay {
  background: rgba(51, 51, 51, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.section-two .row .col-lg-9 .wrapper .card .card-img-overlay h4 {
  font-weight: 900;
  color: #87cf35;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.section-two .row .col-lg-9 .wrapper .card .card-img-overlay p {
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
}

.section-two .row .col-lg-9 .wrapper .card:hover img {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}

.section-two .row .col-lg-9 .wrapper .card:hover .card-img-overlay {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.section-two .row .col-lg-9 .wrapper .card:hover .card-img-overlay h4 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.section-two .row .col-lg-9 .wrapper .card:hover .card-img-overlay::after {
  content: "";
  position: absolute;
  top: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
  background: linear-gradient(to bottom, transparent, black);
}

.section-two .row .col-lg-3 .wrapper {
  background: #f5fff5;
  height: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 10px rgba(51, 51, 51, 0.3);
          box-shadow: 0 6px 10px rgba(51, 51, 51, 0.3);
}

.section-two .row .col-lg-3 .wrapper h4 {
  font-size: 32px;
  color: #87cf35;
}

.section-two .row .col-lg-3 .wrapper ul {
  list-style: none;
  margin: 30px 0;
}

.section-two .row .col-lg-3 .wrapper ul li {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0;
}

.section-two .row .col-lg-3 .wrapper ul li:hover {
  background: rgba(51, 51, 51, 0.1);
}

.section-two .row .col-lg-3 .wrapper ul li a {
  color: #7b7b7b;
  font-weight: 400;
}

.section-two .row .col-lg-3 .wrapper a {
  color: #87cf35;
  font-weight: 500;
  display: block;
  margin: 10px 0;
}

.section-three {
  background: url(../svg/section-bg-tri.svg), #87cf35;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-three .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-three .container h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
}

.section-three .container > span {
  color: #ffffff;
  font-weight: 300;
  font-size: 40px;
}

.section-three .container .col-lg-6 {
  margin-top: 24px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.section-three .container .col-lg-6 h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

.section-three .container .col-lg-6 ul {
  list-style: none;
}

.section-three .container .col-lg-6 ul li {
  font-size: 24px;
  color: #ffffff;
  margin: 8px 0;
}

.section-three .container .col-lg-6 .button {
  color: #87cf35;
  background: #ffffff;
}

.section-three .container .col-lg-6 .button::before {
  border-color: #ffffff;
}

.section-three .container .col-lg-6 .button-alt {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, transparent));
  background: linear-gradient(90deg, #ffffff 50%, transparent 50%);
  border-color: #ffffff;
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.section-three .container .col-lg-6 .button-alt:hover {
  background-position: 0 0;
  -webkit-transition: 300ms;
  transition: 300ms;
  color: #87cf35;
}

.section-three .container .col-lg-6 span {
  display: block;
  margin-top: 20px;
  color: #ffffff;
}

.section-three .container .col-lg-6 span a {
  color: #ffffff;
}

.section-three .container .col-lg-6:nth-child(2) ul li {
  position: relative;
}

.section-three .container .col-lg-6:nth-child(2) ul li::before {
  content: url(../svg/tick.svg);
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  height: 40px;
  width: 40px;
}

.section-four {
  padding: 100px 0 50px 0;
  background: url(../svg/section-bg-waves.svg) no-repeat;
  background-size: cover;
  background-position: top;
}

.section-four .row .col-lg-7 img {
  height: 100%;
  width: 100%;
}

.section-four .row .col-lg-5 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-four .row .col-lg-5 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  white-space: nowrap;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.section-four .row .col-lg-5 .wrapper {
  margin: 24px 0px 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(135, 207, 53, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.section-four .row .col-lg-5 .wrapper p {
  font-size: 24px;
  font-weight: 500;
  color: #87cf35;
}

.section-four .row .col-lg-5 .wrapper span {
  display: block;
  margin-top: 8px;
  color: #87cf35;
}

.section-four .row .col-lg-5 .wrapper span a {
  color: #23bc23;
}

.section-five {
  margin: 100px auto;
}

.section-five h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  position: relative;
}

.section-five h2::before {
  content: url(../svg/heading-bg-1.svg);
  position: absolute;
  top: -100px;
  left: -100px;
}

.section-five .tabs {
  margin: 50px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
}

.section-five .tabs .tab {
  width: 20%;
  height: 80px;
  margin: 0 20px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #f5fff5;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
  color: #87cf35;
  font-family: 'Oswald', sans-serif;
  cursor: pointer;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.section-five .tabs .selected {
  background: #87cf35;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 20px 40px rgba(51, 51, 51, 0.4);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 20px 40px rgba(51, 51, 51, 0.4);
  color: #ffffff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.section-five .tab-content {
  display: none;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-five .tab-content .card {
  width: 30%;
  margin: 20px 10px;
  padding: 20px;
  border-radius: 20px;
  background: #f5fff5;
  border: none;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
  position: relative;
}

.section-five .tab-content .card .row {
  margin-bottom: 10px;
}

.section-five .tab-content .card .row .col-3 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0;
}

.section-five .tab-content .card .row .col-3 img {
  width: 100%;
  height: 60px;
}

.section-five .tab-content .card .row .col-9 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0;
}

.section-five .tab-content .card .row .col-9 h4 {
  font-weight: 900;
  font-size: 30px;
}

.section-five .tab-content .card .row .col-9 span {
  color: #7b7b7b;
}

.section-five .tab-content .card .row .col-6 {
  padding: 0;
}

.section-five .tab-content .card p {
  margin: 0;
  font-weight: 500;
}

.section-six {
  margin: 100px auto;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.section-six::after {
  content: url(../svg/pie.svg);
  position: absolute;
  top: 0;
  right: -50px;
}

.section-six h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-six .row .col-lg-6 {
  padding: 20px;
}

.section-six .row .col-lg-6 .row {
  margin-bottom: 20px;
}

.section-six .row .col-lg-6 .row .col-3,
.section-six .row .col-lg-6 .row .col-6,
.section-six .row .col-lg-6 .row .col-9 {
  padding: 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-six .row .col-lg-6 img {
  width: 100px;
  height: 100px;
}

.section-six .row .col-lg-6 h4 {
  color: #87cf35;
  font-size: 30px;
  font-weight: 700;
}

.section-six .row .col-lg-6 h4 + span {
  font-size: 20px;
  color: #7b7b7b;
  font-weight: 500;
}

.section-six .row .col-lg-6 span {
  color: #333333;
  font-size: 20px;
  font-weight: 400;
}

.section-six .row .col-lg-6 strong {
  font-size: 20px;
}

.section-six .row .col-lg-6 p {
  margin: 10px 0;
}

.section-seven {
  background: url(../img/sip.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.section-seven .wrapper {
  max-width: 500px;
  padding: 30px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
}

.section-seven .wrapper h2 {
  font-size: 50px;
  font-weight: 900;
  color: #87cf35;
}

.section-seven .wrapper p {
  font-size: 20px;
}

.section-seven .wrapper ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.section-seven .wrapper ol li {
  font-weight: 500;
  font-size: 20px;
}

.section-eight {
  padding: 100px 0;
  background: url(../svg/section-bg-blobs.svg) no-repeat;
  background-position: center;
  background-size: cover;
}

.section-eight .col-lg-6 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-eight .col-lg-6 > p {
  margin-top: 20px;
  font-size: 20px;
}

.section-eight .col-lg-6 span {
  display: block;
  margin-top: 20px;
  color: #87cf35;
}

.section-eight .col-lg-6 span a {
  color: #87cf35;
}

.section-eight .col-lg-6 .accordion {
  border: none;
  counter-reset: card;
}

.section-eight .col-lg-6 .accordion .card {
  border: none;
  background: none;
  padding: 0 10px;
  margin-bottom: 20px;
}

.section-eight .col-lg-6 .accordion .card .header {
  margin-bottom: 10px;
}

.section-eight .col-lg-6 .accordion .card .header h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-eight .col-lg-6 .accordion .card .header h4::before {
  counter-increment: card;
  content: counter(card);
  height: 40px;
  width: 40px;
  background: #87cf35;
  color: #ffffff;
  font-size: 20px;
  padding-top: 7px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  vertical-align: middle;
}

.section-nine {
  padding: 100px 0;
  background: linear-gradient(45deg, #93d44a, #6da928);
  position: relative;
  z-index: 1;
}

.section-nine h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
}

.section-nine p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  margin-top: 24px;
}

.section-nine button {
  color: #87cf35;
  background: #ffffff;
}

.section-nine span {
  display: block;
  margin-top: 10px;
  color: #ffffff;
}

.section-nine span a {
  color: #ffffff;
}

.section-ten {
  margin: 100px auto;
}

.section-ten span {
  font-size: 16px;
  font-weight: 500;
  color: #7b7b7b;
}

.section-ten h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  position: relative;
}

.section-ten h2::after {
  content: '';
  position: absolute;
  top: -150%;
  left: 65%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 200px;
  width: 200px;
  background: url(../svg/heading-square.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section-ten section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 20px;
      grid-template-areas: "cards para" "cards wrapper";
  margin-top: 50px;
}

.section-ten section .cards {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: cards;
  counter-reset: card;
  margin: 0 50px 0 0;
}

.section-ten section .cards .card {
  margin-bottom: 20px;
  padding: 30px;
  border: none;
  border-radius: 40px;
  background: #f5fff5;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
  position: relative;
  z-index: 1;
}

.section-ten section .cards .card h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  position: relative;
}

.section-ten section .cards .card h4::before {
  counter-increment: card;
  content: counter(card);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -30%);
          transform: translate(-10%, -30%);
  z-index: -1;
  font-size: 100px;
  color: rgba(135, 207, 53, 0.3);
}

.section-ten section .cards .card p {
  margin: 8px 0 0;
}

.section-ten section .para {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: para;
}

.section-ten section .para p {
  margin: 0;
}

.section-ten section .wrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: wrapper;
}

.section-ten section .wrapper p {
  color: #87cf35;
}

.section-ten section .wrapper form {
  background: rgba(135, 207, 53, 0.3);
  padding: 20px;
  border-radius: 20px;
}

.section-ten section .wrapper form .form-grp {
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-ten section .wrapper form .form-grp:nth-child(3) {
  margin-bottom: 0;
}

.section-ten section .wrapper form .form-grp .form-input:focus + .form-label,
.section-ten section .wrapper form .form-grp .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(15px, -52px);
          transform: translate(15px, -52px);
  background: #dbf1c2;
  display: inline-block;
  padding: 0 5px;
}

.section-ten section .wrapper span, .section-ten section .wrapper a {
  color: #87cf35;
  font-weight: 400;
}

.section-eleven {
  margin: 100px 0 auto;
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0.5))), url(../img/sip-alt.png) no-repeat;
  background: linear-gradient(rgba(51, 51, 51, 0.5)), url(../img/sip-alt.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.section-eleven span {
  color: #ffffff;
  font-style: 16px;
  font-weight: 500;
}

.section-eleven h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-eleven .row .col-lg-6 {
  padding: 30px 30px 0 0;
}

.section-eleven .row .col-lg-6 p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
}

.section-eleven .row .col-lg-6 > h4 {
  color: #ffffff;
  font-family: 'Roboto',sans-serif;
  font-weight: 500;
}

.section-eleven .row .col-lg-6 ul {
  list-style: none;
  margin-top: 10px;
}

.section-eleven .row .col-lg-6 ul li {
  position: relative;
  margin-left: 50px;
}

.section-eleven .row .col-lg-6 ul li::before {
  content: url(../svg/tick-alt.svg);
  position: absolute;
  left: -50px;
}

.section-eleven .row .col-lg-6 ul li h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-twelve {
  margin: 100px auto;
}

.section-twelve .row .col-lg-6 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
}

.section-twelve .row .col-lg-6 span {
  font-size: 16px;
  font-weight: 500;
  color: #7b7b7b;
}

.section-twelve .row .col-lg-6 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-twelve .row .col-lg-6 ul {
  list-style: none;
  margin-top: 10px;
}

.section-twelve .row .col-lg-6 ul li {
  margin-bottom: 10px;
}

.section-twelve .row .col-lg-6 ul li h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-twelve .row .col-lg-6 ul li p {
  margin: 0;
}

.section-twelve .row .col-lg-6 .wrapper img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-twelve .row .col-lg-6 .wrapper a {
  text-decoration: none;
}

.section-twelve .row .col-lg-6 .wrapper a .button {
  display: block;
  margin-top: 10px;
  margin-left: auto;
}

.section-twelve .row .col-lg-6 .wrapper h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-left: 100px;
  position: relative;
}

.section-twelve .row .col-lg-6 .wrapper h4::before {
  content: "";
  position: absolute;
  background: url(../svg/heading-bg-circle.svg);
  background-size: contain;
  height: 300px;
  width: 300px;
  top: -80%;
  left: -20%;
}

.section-twelve .row .col-lg-6 .wrapper form {
  margin: 50px 0 10px 0;
  padding: 20px;
  border-radius: 30px;
  background: rgba(51, 51, 51, 0.05);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.section-twelve .row .col-lg-6 .wrapper span, .section-twelve .row .col-lg-6 .wrapper a {
  color: #87cf35;
  font-weight: 400;
}

.section-thirteen {
  margin: 100px 0 auto;
  padding: 100px 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.575)), to(rgba(0, 0, 0, 0.603))), url(../img/sip.png) no-repeat;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.575), rgba(0, 0, 0, 0.603)), url(../img/sip.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-thirteen .container {
  position: relative;
  z-index: 1;
}

.section-thirteen .container > h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
}

.section-thirteen .container > h3 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
}

.section-thirteen .container > p {
  color: #ffffff;
  font-weight: 500;
}

.section-thirteen section {
  position: relative;
  margin-bottom: 50px;
}

.section-thirteen section > h4 {
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-90deg);
          transform: translate(-50%, -50%) rotateZ(-90deg);
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-thirteen section .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-thirteen section .swiper-container .swiper-slide {
  width: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-thirteen section .swiper-container .swiper-slide .card {
  border: none;
  background: rgba(51, 51, 51, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  margin: 0;
  border-radius: 4px;
}

.section-thirteen section .swiper-container .swiper-slide .card img {
  width: 200px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-thirteen section .swiper-container .swiper-slide .card h4 {
  color: #ffffff;
  text-align: center;
  font-weight: 400;
}

.section-thirteen section .swiper-container .swiper-slide .card h2 {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-thirteen section .swiper-container .swiper-slide .card span {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #87cf35;
}

.section-thirteen section .swiper-container .swiper-slide > h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #ffffff;
}

.section-thirteen section .swiper-container .swiper-slide > h4 strong {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  gap: 10px;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-left h4 {
  font-size: 40px;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right p {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right h4 strong {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  font-size: 100px;
}

.section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right span {
  color: #ffffff;
  font-size: 30px;
}

.section-fourteen {
  padding: 100px 0;
  background: url(../svg/section-bg-waves-2.svg) no-repeat;
  background-size: cover;
  background-position: center;
}

.section-fourteen .col-lg-6 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-fourteen .col-lg-6 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  font-size: 50px;
}

.section-fourteen .col-lg-6 span {
  display: block;
  font-size: 50px;
  color: #87cf35;
}

.section-fourteen .col-lg-6 form {
  background: rgba(51, 51, 51, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
}

.section-fourteen .col-lg-6 form .form-grp:nth-child(1) {
  margin-top: 10px;
}

.section-fifteen {
  margin: 100px auto;
}

.section-fifteen h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-fifteen p {
  color: #333333;
  font-weight: 500;
}

.section-fifteen .row .col-lg-7 {
  padding: 0;
}

.section-fifteen .row .col-lg-7 ul {
  list-style: none;
  margin-top: 20px;
}

.section-fifteen .row .col-lg-7 ul li {
  position: relative;
}

.section-fifteen .row .col-lg-7 ul li::before {
  content: url(../svg/tick-alt.svg);
  position: absolute;
  left: -50px;
}

.section-fifteen .row .col-lg-7 ul li h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-fifteen .row .col-lg-5 .wrapper {
  position: relative;
  margin-left: 50px;
  min-height: 200px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.section-fifteen .row .col-lg-5 .wrapper h4 {
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-90deg);
          transform: translate(-50%, -50%) rotateZ(-90deg);
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-fifteen .row .col-lg-5 .wrapper p {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: 0;
}

.section-seventeen {
  margin: 100px auto;
}

.section-seventeen h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  position: relative;
}

.section-seventeen h2::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -10%;
  height: 100px;
  width: 240px;
  background: url(../svg/heading-bg-2.svg) no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: -1;
}

.section-seventeen p {
  font-size: 20px;
}

.section-seventeen section {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.section-seventeen section .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px auto;
      grid-template-columns: 100px auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 20px;
      grid-template-areas: "img h4" "p p";
}

.section-seventeen section .wrapper img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img;
  height: 100px;
  width: 100px;
}

.section-seventeen section .wrapper h4 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: h4;
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-top: auto;
}

.section-seventeen section .wrapper p {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: p;
  font-size: 16px;
}

.section-eighteen {
  margin: 100px auto;
}

.section-eighteen h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-eighteen section {
  height: 80vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr .75fr 1fr .75fr .75fr;
      grid-template-columns: 1fr .75fr 1fr .75fr .75fr;
  -ms-grid-rows: .75fr .25fr .5fr .4fr 50px;
      grid-template-rows: .75fr .25fr .5fr .4fr 50px;
  gap: 10px;
      grid-template-areas: "img1 img1 img2 img3 img4" "img1 img1 img5 img3 img6" "img7 img8 img5 img9 img6" "img7 img8 img10 img9 img6" "img7 img8 img10 img9 button";
}

.section-eighteen section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-eighteen section img:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: img1;
}

.section-eighteen section img:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: img2;
}

.section-eighteen section img:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  grid-area: img3;
}

.section-eighteen section img:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: img4;
}

.section-eighteen section img:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: img5;
}

.section-eighteen section img:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: img6;
}

.section-eighteen section img:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: img7;
}

.section-eighteen section img:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  grid-area: img8;
}

.section-eighteen section img:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 4;
  grid-area: img9;
}

.section-eighteen section img:nth-child(10) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: img10;
}

.section-eighteen section img:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: button;
}

.section-ninteen {
  min-height: 70vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: url(../img/section-bg-pattern.png) no-repeat, #d3ecb7;
  background-size: cover;
}

.section-ninteen .col-lg-12 {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.section-ninteen .col-lg-12 .card {
  background: #ffffff33;
  max-width: 500px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.section-ninteen .col-lg-12 .card img {
  max-width: 300px;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.section-ninteen .col-lg-12 .card h4 {
  color: #626262;
  margin-bottom: 16px;
}

.section-ninteen .col-lg-12 .card h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  font-size: 60px;
  margin-bottom: 0;
}

.section-ninteen .col-lg-12 .card a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  padding: 10px;
  background: #87cf35;
  max-width: 200px;
  margin: auto;
}

.section-ninteen .col-lg-12 .register-card {
  background: #ffffff33;
  max-width: 500px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.section-ninteen .col-lg-12 .register-card h3 {
  color: #626262;
}

.section-ninteen .col-lg-12 .register-card h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  font-size: 100px;
  margin-bottom: 20px;
}

.section-ninteen .col-lg-12 .register-card p {
  font-size: 24px;
  color: #626262;
  margin-bottom: 20px;
}

.section-ninteen .col-lg-12 .register-card button {
  color: #626262;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  border-radius: 15px;
  border: 2px solid #626262;
}

.purple {
  background: url(../img/section-bg-pattern.png) no-repeat, #d4b7ec;
}

.red {
  background: url(../img/section-bg-pattern.png) no-repeat, #fccd90;
}

.section-twenty {
  background: url(../img/sip.png) no-repeat, url(../svg/section-bg-waves.svg) no-repeat;
  background-position: right, top;
  background-size: 50%, cover;
  padding: 100px 0;
}

.section-twenty .col-lg-6 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
}

.section-twenty .col-lg-6 p {
  font-size: 30px;
  color: #333333;
}

.section-twentyone {
  margin: 100px 0;
}

.section-twentyone h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.section-twentyone section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-twentyone section .card {
  padding: 20px;
  width: 240px;
  border-radius: 4px;
  border: none;
  background: #f5fff5;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
  position: relative;
  z-index: 1;
}

.section-twentyone section .card img {
  max-width: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-twentyone section .card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #87cf35;
  margin: 20px 0;
}

.section-twentyone section .card a {
  color: #7b7b7b;
}

.section-twentyone section .card button {
  width: 100%;
}

.section-twentyone .container > button {
  margin: 20px auto;
  display: block;
}

.section-twentytwo {
  margin: 100px auto;
  overflow: hidden;
}

.section-twentytwo h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
  position: relative;
}

.section-twentytwo h2::before {
  content: url(../svg/circle-border.svg);
  position: absolute;
  top: -100%;
  left: -20%;
  -webkit-animation: rotate 20s linear 0s infinite;
          animation: rotate 20s linear 0s infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.section-twentytwo section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-twentytwo section .card {
  background: none;
  border: none;
  max-width: 320px;
}

.section-twentytwo section .card .card-content {
  padding: 20px;
  border-radius: 30px;
  background: #f5fff5;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
}

.section-twentytwo section .card .card-content img {
  width: 100%;
  height: 200px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.section-twentytwo section .card .card-content h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  font-size: 24px;
  margin: 20px 0;
}

.section-twentytwo section .card .card-content p {
  color: #333333;
  margin-bottom: 0;
}

.section-twentytwo .button {
  display: block;
  margin: 20px auto;
}

.section-twentythree {
  margin: 100px 0 auto;
  padding: 100px 0;
  background: url(../svg/section-bg-lines.svg) no-repeat;
  background-size: cover;
}

.section-twentythree h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.section-twentythree .card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px auto;
      grid-template-columns: 100px auto;
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
  background: #f5fff5;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
}

.section-twentythree .card img {
  height: 100%;
  width: 100%;
}

.section-twentythree .card h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin: auto;
}

.section-twentyfour {
  padding: 100px 0;
  background: #87cf35;
}

.section-twentyfour h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-twentyfour section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-twentyfour section .card {
  height: 180px;
  width: 180px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: none;
  border-radius: 60px;
  border: none;
  border: 10px solid #87cf35;
  -webkit-box-shadow: -5px -5px 10px #9fd95e, 5px 5px 10px #6da928;
          box-shadow: -5px -5px 10px #9fd95e, 5px 5px 10px #6da928;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.section-twentyfour section .card a svg {
  height: 60px;
}

.section-twentyfour section .card a svg path {
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.section-twentyfour section .card:hover {
  background: linear-gradient(-45deg, #93d44a, #7abd2d);
  -webkit-box-shadow: -5px -5px 10px #9fd95e, 5px 5px 10px #6da928, inset -5px -5px 10px #9fd95e, inset 5px 5px 10px #6da928;
          box-shadow: -5px -5px 10px #9fd95e, 5px 5px 10px #6da928, inset -5px -5px 10px #9fd95e, inset 5px 5px 10px #6da928;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.section-twentyfour section .card:hover a svg path {
  fill: #ffffff;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.section-twentyfive {
  padding: 100px 0;
  background: url(../img/sip.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.section-twentyfive .col-lg-6 h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 60px;
}

.section-twentyfive .col-lg-6 form {
  background: rgba(51, 51, 51, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
}

.section-twentyfive .col-lg-6 form .form-grp:nth-child(1) {
  margin-top: 10px;
}

.section-twentysix {
  margin-top: 100px;
}

.section-twentysix .container .row:first-child {
  margin-bottom: 50px;
}

.section-twentysix .container .row:first-child .col-lg-6 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-twentysix .container .row:first-child .col-lg-6 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
  position: relative;
}

.section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: url(../svg/heading-bg-1.svg);
  position: absolute;
  left: -100px;
  top: -100px;
  z-index: -1;
}

.section-twentysix .container .row:first-child .col-lg-6 .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px auto;
      grid-template-columns: 80px auto;
  gap: 20px;
  margin-bottom: 20px;
}

.section-twentysix .container .row:first-child .col-lg-6 .wrapper img {
  height: 100%;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content span {
  color: #7b7b7b;
  font-weight: 400;
}

.section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content h6, .section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content a {
  display: block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
}

.section-twentysix .container .row:first-child .col-lg-6 form {
  background: rgba(51, 51, 51, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
}

.section-twentysix .container .row:first-child .col-lg-6 form .form-grp:nth-child(1) {
  margin-top: 10px;
}

.section-twentysix .container .row:nth-child(2) .wrapper img {
  width: 50px;
  margin-right: 10px;
}

.section-twentysix .container .row:nth-child(2) .wrapper span {
  color: #7b7b7b;
  vertical-align: bottom;
}

.section-twentysix .container .row:nth-child(2) .wrapper .wrapper-content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 10px;
}

.section-twentysix .container .row:nth-child(2) .wrapper .wrapper-content h6, .section-twentysix .container .row:nth-child(2) .wrapper .wrapper-content a {
  display: block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}

.section-twentysix section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.section-twentysix section .card {
  background: none;
  border: none;
  border-radius: 0;
  width: 25%;
}

.section-twentysix section .card img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0;
}

.section-twentysix section .card .card-img-overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.section-twentysix section .card .card-img-overlay a {
  display: block;
  margin-top: 150px;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
}

.section-twentyseven {
  margin: 100px 0;
}

.section-twentyseven .col-lg-7 h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
}

.section-twentyseven .col-lg-7 h4 {
  text-align: center;
}

.section-twentyseven .col-lg-7 p {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.section-twentyseven .col-lg-7 p span {
  display: block;
  font-size: 100px;
  font-weight: 900;
  line-height: 80px;
  margin-top: 30px;
}

.section-twentyseven .col-lg-7 h4:nth-child(4) {
  font-size: 30px;
  font-weight: 900;
}

.section-twentyseven .col-lg-7 .top-ranks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
}

.section-twentyseven .col-lg-7 .top-ranks .rank {
  margin: 20px 0;
}

.section-twentyseven .col-lg-7 .top-ranks .rank h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
}

.section-twentyseven .col-lg-7 .top-ranks .rank p {
  margin: unset;
  font-size: 24px;
  color: #333333;
}

.section-twentyeight {
  min-height: 90vh;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  background: url(../img/sip3.jpg) no-repeat;
  background-size: cover;
}

.section-twentyeight .row {
  margin: 0;
  background: rgba(123, 123, 123, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 50px;
  -webkit-box-shadow: 0 2px 5px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px 5px rgba(51, 51, 51, 0.2);
}

.section-twentyeight .row .col-md-12 h1 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  font-size: 72px;
  color: #87cf35;
}

.section-twentyeight .row .col-md-12 h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
}

.section-twentyeight .row .col-md-12 h6 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 32px;
  color: #ffffff;
}

.section-twentyeight .row .col-md-12 span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 90px;
  background: linear-gradient(135deg, #87cf35, #23bc23);
  font-weight: 500;
  color: #ffffff;
}

.section-twentyeight .row .col-md-4 h2 {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-twentyeight .row .col-md-4 form {
  width: 100%;
}

.section-twentyeight .row .col-md-4 form .form-grp {
  width: 100%;
  height: 60px;
  position: relative;
  margin-bottom: 20px;
}

.section-twentyeight .row .col-md-4 form .form-grp input {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 15px;
  padding-top: 20px;
  border: 2px solid #333333;
  border-radius: 4px;
  background: none;
  color: #ffffff;
}

.section-twentyeight .row .col-md-4 form .form-grp input::-webkit-input-placeholder {
  color: transparent;
}

.section-twentyeight .row .col-md-4 form .form-grp input:-ms-input-placeholder {
  color: transparent;
}

.section-twentyeight .row .col-md-4 form .form-grp input::-ms-input-placeholder {
  color: transparent;
}

.section-twentyeight .row .col-md-4 form .form-grp input::placeholder {
  color: transparent;
}

.section-twentyeight .row .col-md-4 form .form-grp input:focus, .section-twentyeight .row .col-md-4 form .form-grp input:not(:placeholder-shown) {
  border-color: #ffffff;
}

.section-twentyeight .row .col-md-4 form .form-grp input:focus + label,
.section-twentyeight .row .col-md-4 form .form-grp input:not(:placeholder-shown) + label {
  top: 15%;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  font-size: 14px;
  color: #ffffff;
}

.section-twentyeight .row .col-md-4 form .form-grp label {
  margin: 0;
  padding-inline: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.section-twentyeight .row .col-md-4 form button {
  display: block;
  width: 100%;
  border: none;
  padding: 10px;
  margin-bottom: 50px;
  background: #87cf35;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.section-twentyeight .row .col-md-4 form button:hover, .section-twentyeight .row .col-md-4 form button:focus {
  background: #6da928;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.section-twentyeight .row .col-md-4 a {
  color: #ffffff;
}

.section-twentynine {
  margin: 100px auto;
}

.section-twentynine .swiper-container {
  margin-top: 50px;
  overflow: hidden;
}

.section-twentynine .swiper-container h2 {
  font-size: 40px;
  font-weight: 900;
  color: #87cf35;
  text-align: center;
  margin-bottom: 50px;
}

.section-twentynine .swiper-container .swiper-wrapper .card {
  width: 300px;
  background: #87cf35;
  border: none;
  padding: 30px;
}

.section-twentynine .swiper-container .swiper-wrapper .card h4 {
  color: #ffffff;
  text-align: center;
}

.section-twentynine .swiper-container .swiper-wrapper .card h5 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
}

.terms .container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 10px;
}

.terms .container li::marker {
  font-weight: 700;
  font-size: 20px;
}

.terms .container h4 {
  font-size: 16px;
}

footer {
  background: #24362E;
  padding: 100px 0 50px 0;
}

footer .row h4 {
  color: #ffffff;
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 20px;
}

footer .row p, footer .row a {
  color: #cccccc;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
  display: block;
}

footer .row a:hover {
  color: #87cf35;
}

footer .row section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .row section .card {
  border: none;
  background: none;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: -3px -3px 6px #385548, 3px 3px 6px #101714;
          box-shadow: -3px -3px 6px #385548, 3px 3px 6px #101714;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

footer .row section .card a svg {
  width: 40px;
  height: 40px;
}

footer .row section .card a svg path {
  fill: #ffffff;
}

footer .row section .card:hover a svg path {
  fill: #87cf35;
}

footer .row .label {
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  display: block;
  line-height: 35px;
}

footer .row .info {
  line-height: 20px;
  display: block;
  margin-bottom: 20px;
}

footer span, footer a {
  color: #cccccc;
}

.banner {
  height: 300px;
  background: url(../img/banner-bg-alt.png) no-repeat;
  background-position: top;
  background-size: cover;
}

.banner .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner .container h1 {
  font-size: 60px;
  color: #ffffff;
}

.course {
  margin-top: 100px;
}

.course .course__about {
  margin: 50px auto;
}

.course .course__about .container .col-lg-6 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.course .course__about .container .col-lg-6 h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.course .course__about .container .col-lg-6 p {
  color: #7b7b7b;
  font-size: 18px;
  line-height: 30px;
}

.course .course__about .container .col-lg-6 img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.course .course__detail {
  margin: 50px auto;
}

.course .course__detail > h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
}

.course .course__detail .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.course .course__detail .container .card {
  width: 30%;
  margin: 20px 10px;
  padding: 20px;
  border-radius: 20px;
  background: #f5fff5;
  border: none;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
}

.course .course__detail .container .card .row {
  margin-bottom: 10px;
}

.course .course__detail .container .card .row .col-3 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0;
}

.course .course__detail .container .card .row .col-3 img {
  width: 100%;
  height: 60px;
}

.course .course__detail .container .card .row .col-9 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0;
}

.course .course__detail .container .card .row .col-9 h4 {
  font-weight: 900;
  font-size: 30px;
}

.course .course__detail .container .card .row .col-9 span {
  color: #7b7b7b;
}

.course .course__detail .container .card .row .col-6 {
  padding: 0;
}

.course .course__detail .container .card p {
  margin: 0;
  font-weight: 500;
}

.course .course__detail button {
  display: block;
  margin: auto;
}

.course .section-six {
  margin-bottom: 50px;
}

.course .section-six::after {
  content: none;
}

.course .section-thirteen {
  margin-top: 0;
}

.course .section-fifteen {
  margin: 50px auto;
}

.course .section-fifteen .col-lg-5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.course .section-ninteen .register-card button {
  position: relative;
}

.course .section-ninteen .register-card button a {
  all: unset;
}

.trial-class {
  background: #87cf35;
  margin: 50px auto;
  padding: 50px 0;
}

.trial-class .container {
  position: relative;
  z-index: 1;
}

.trial-class .container h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.trial-class .container p {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.trial-class .container button {
  background: #ffffff;
  color: #87cf35;
  margin-bottom: 10px;
}

.trial-class .container button::before {
  border-color: #ffffff;
}

.trial-class .container span {
  display: block;
  color: #ffffff;
}

.trial-class .container span a {
  color: #ffffff;
}

.login {
  background: #f5fff5;
}

.login .wrapper {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: 800px;
  padding: 100px 0;
}

.login .wrapper .wrapper__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .6fr 1fr;
      grid-template-columns: .6fr 1fr;
  width: 1000px;
  -webkit-box-shadow: 0 40px 20px -5px rgba(51, 51, 51, 0.3);
          box-shadow: 0 40px 20px -5px rgba(51, 51, 51, 0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.login .wrapper .wrapper__content::before {
  content: url(../svg/shape4-1.svg);
  position: absolute;
  left: 10%;
  bottom: 5%;
  -webkit-animation: scale 10s linear 0s infinite;
          animation: scale 10s linear 0s infinite;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.login .wrapper .wrapper__content::after {
  content: url(../svg/shape4-2.svg);
  position: absolute;
  right: 5%;
  top: 5%;
  -webkit-animation: rotate 10s linear 0s infinite;
          animation: rotate 10s linear 0s infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.login .wrapper .wrapper__content .wrapper__action {
  height: 100%;
  background: radial-gradient(ellipse at top left, #87cf35, #52801e);
  border-radius: 20px 0 0 20px;
  -ms-grid-row-align: center;
      align-self: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 2;
}

.login .wrapper .wrapper__content .wrapper__action h2 {
  font-size: 50px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.login .wrapper .wrapper__content .wrapper__action p {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  margin: auto 20px;
}

.login .wrapper .wrapper__content .wrapper__action button {
  width: 200px;
  display: block;
  margin: auto;
  padding: 8px 0;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 99px;
  background: transparent;
}

.login .wrapper .wrapper__content .wrapper__form {
  padding: 100px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 2;
}

.login .wrapper .wrapper__content .wrapper__form .form h2 {
  font-size: 50px;
  color: #87cf35;
  text-align: center;
}

.login .wrapper .wrapper__content .wrapper__form .form form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp {
  height: 50px;
  margin: 20px 0 0;
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp .form-input {
  padding-top: 10px;
  border: none;
  border-radius: 0;
  background: rgba(51, 51, 51, 0.05);
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp .form-input:focus + .form-label,
.login .wrapper .wrapper__content .wrapper__form .form form .form-grp .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(10px, -50px);
          transform: translate(10px, -50px);
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp .form-label {
  -webkit-transform: translate(10px, -37px);
          transform: translate(10px, -37px);
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp-alt {
  height: 200px;
  margin: 20px 0 0;
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp-alt .form-input {
  padding-top: 20px;
  border: none;
  border-radius: 0;
  background: rgba(51, 51, 51, 0.05);
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp-alt .form-input:focus + .form-label,
.login .wrapper .wrapper__content .wrapper__form .form form .form-grp-alt .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.login .wrapper .wrapper__content .wrapper__form .form form .form-grp-alt .form-label {
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
  margin-bottom: 0;
}

.login .wrapper .wrapper__content .wrapper__form .form form button {
  background: #87cf35;
  color: #ffffff;
  border-color: #87cf35;
  border-radius: 99px;
  width: 200px;
  display: block;
  margin: 20px auto 0 auto;
}

.login .wrapper .wrapper__content .wrapper__form .form form button:hover, .login .wrapper .wrapper__content .wrapper__form .form form button:focus {
  background: #6da928;
  border-color: #6da928;
}

.contact .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.about .about__content {
  margin-top: 50px;
}

.about .about__content h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
  text-align: center;
}

.about .about__content p {
  color: #7b7b7b;
  line-height: 30px;
  clear: both;
  display: table;
}

.about .about__content p img {
  width: 50%;
  float: left;
  margin: 0 20px 0 0;
}

.about .about__content-motivation {
  background: #87cf35;
  margin: 50px auto;
  padding: 50px 0;
}

.about .about__content-motivation .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about .about__content-motivation .container .wrapper h4 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  color: #ffffff;
}

.about .about__content-motivation .container .wrapper p {
  color: #ffffff;
}

.about .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.gallery .gallery__content {
  margin-top: 50px;
}

.gallery .gallery__content h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
  margin-bottom: 20px;
}

.career .container .wrapper .wrapper__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.career .container .wrapper .wrapper__content .wrapper__action {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 50px;
}

.career .container .wrapper .wrapper__content .wrapper__action h2 {
  font-size: 50px;
  font-weight: 700;
  color: #87cf35;
}

.career .container .wrapper .wrapper__content .wrapper__action p {
  font-size: 20px;
  font-weight: 300;
}

.career .container .wrapper .wrapper__form .form {
  margin: 50px;
}

.career .container .wrapper .wrapper__form .form form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.career .container .wrapper .wrapper__form .form form .form-grp {
  height: 50px;
  margin: 20px 0 0;
}

.career .container .wrapper .wrapper__form .form form .form-grp .form-input {
  padding-top: 10px;
  border: none;
  border-radius: 0;
  background: rgba(51, 51, 51, 0.05);
}

.career .container .wrapper .wrapper__form .form form .form-grp .form-input:focus + .form-label,
.career .container .wrapper .wrapper__form .form form .form-grp .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(10px, -50px);
          transform: translate(10px, -50px);
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.career .container .wrapper .wrapper__form .form form .form-grp .form-label {
  -webkit-transform: translate(10px, -37px);
          transform: translate(10px, -37px);
}

.career .container .wrapper .wrapper__form .form form .form-grp-alt {
  height: 200px;
  margin: 20px 0 0;
}

.career .container .wrapper .wrapper__form .form form .form-grp-alt .form-input {
  padding-top: 20px;
  border: none;
  border-radius: 0;
  background: rgba(51, 51, 51, 0.05);
}

.career .container .wrapper .wrapper__form .form form .form-grp-alt .form-input:focus + .form-label,
.career .container .wrapper .wrapper__form .form form .form-grp-alt .form-input:not(:placeholder-shown) + .form-label {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  font-size: 14px;
  color: #87cf35;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.career .container .wrapper .wrapper__form .form form .form-grp-alt .form-label {
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
  margin-bottom: 0;
}

.career .container .wrapper .wrapper__form .form form button {
  background: #87cf35;
  color: #ffffff;
  border-color: #87cf35;
  border-radius: 99px;
  width: 200px;
  display: block;
  margin: 20px auto 0 auto;
}

.career .container .wrapper .wrapper__form .form form button:hover, .career .container .wrapper .wrapper__form .form form button:focus {
  background: #6da928;
  border-color: #6da928;
}

.scholarship .section-three {
  background: none;
}

.scholarship .section-three h2 {
  color: #87cf35;
}

.scholarship .section-three span {
  color: #333333;
}

.scholarship .section-three .col-lg-6 h4 {
  color: #87cf35;
}

.scholarship .section-three .col-lg-6 ul li {
  color: #333333;
}

.scholarship .section-three .col-lg-6 .button {
  color: #ffffff;
  background: #87cf35;
}

.scholarship .section-three .col-lg-6 .button::before {
  border-color: #333333;
}

.scholarship .section-three .col-lg-6 .button-alt {
  color: #87cf35;
  border-color: #87cf35;
}

.scholarship .section-three .col-lg-6 span {
  color: #87cf35;
}

.scholarship .section-three .col-lg-6 span a {
  color: #87cf35;
}

.scholarship .section-three .col-lg-6:nth-child(2) ul li::before {
  content: url(../svg/tick-alt.svg);
}

.scholarship .trial-class {
  margin: 0;
}

.scholarship .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.student-zone .section-twentyone section .card {
  margin-bottom: 30px;
}

.student-zone .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.sip .sip__about .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px auto;
}

.sip .sip__about .container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sip .sip__about .container .wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.sip .sip__about .container .wrapper p {
  color: #7b7b7b;
}

.sip .sip__course {
  margin: 50px auto;
}

.sip .sip__course h2 {
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  text-align: center;
  margin-bottom: 20px;
}

.sip .sip__course .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 50px;
}

.sip .sip__course .container .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px auto;
      grid-template-columns: 100px auto;
  background-color: #f5fff5;
  border-radius: 30px;
  padding: 20px;
  -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
}

.sip .sip__course .container .wrapper img {
  width: 80%;
}

.sip .sip__course .container .wrapper h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sip .sip__course .container .wrapper p {
  margin: 0;
}

.sip .section-eleven {
  background: none;
  margin: 50px auto;
  padding: 0;
}

.sip .section-eleven .container h2 {
  text-align: center;
}

.sip .section-eleven .container .row .col-lg-6 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sip .section-eleven .container .row .col-lg-6 p {
  color: #7b7b7b;
}

.sip .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.sip .success__heading {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  color: #87cf35;
  margin: 200px 0 50px;
}

.sip .success__link {
  display: block;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 200px;
}

.nep .nep__content {
  margin: 50px auto;
}

.nep .nep__content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.nep .nep__content img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}

.nep .nep__content p {
  font-size: 20px;
  font-weight: 300;
  color: #7b7b7b;
}

.nep .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.answer-key .answer-key__content {
  margin: 50px auto;
}

.answer-key .answer-key__content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 20px;
}

.answer-key .answer-key__content table {
  counter-reset: serial-number;
}

.answer-key .answer-key__content table tr {
  margin: 10px 0;
}

.answer-key .answer-key__content table tr:nth-child(even) {
  background: rgba(51, 51, 51, 0.05);
}

.answer-key .answer-key__content table tr th {
  white-space: nowrap;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #87cf35;
}

.answer-key .answer-key__content table tr td {
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #7b7b7b;
}

.answer-key .answer-key__content table tr td:first-child:before {
  counter-increment: serial-number;
  content: counter(serial-number) ".";
}

.answer-key .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

.center .center__content {
  margin: 50px auto;
}

.center .center__content .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.center .center__content .wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #87cf35;
  margin-bottom: 10px;
}

.center .center__content .wrapper img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}

.center .center__content .wrapper p {
  font-size: 18px;
  font-weight: 300;
  color: #7b7b7b;
}

.center section.center__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.center section.center__gallery .card {
  background: none;
  border: none;
  border-radius: 0;
  width: 25%;
  height: 25vh;
  overflow: hidden;
}

.center section.center__gallery .card .card-img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.center .section-twentysix {
  margin-top: 50px;
}

.center .section-twentysix .container .row:first-child .col-lg-6 h2::before {
  content: none;
}

/*------------ Desktop View ends here -------------*/
/*------------ Mobile View -------------*/
@media only screen and (max-width: 600px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .navbar .navbar-brand {
    position: relative;
    height: 50px;
    width: 130px;
  }
  .navbar .navbar-brand img {
    height: 100%;
    width: 100%;
  }
  .navbar .navbar-brand::after {
    content: "";
    background: -webkit-gradient(linear, right top, left top, from(#87cf35), color-stop(90%, transparent)) no-repeat;
    background: linear-gradient(-90deg, #87cf35, transparent 90%) no-repeat;
    background-size: 0% 100%;
    background-position: right center;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 10%;
    right: -5px;
    bottom: 0;
    border-radius: 0 10px 10px 0;
    -webkit-transition: background-size 300ms ease ease-in;
    transition: background-size 300ms ease ease-in;
  }
  .navbar .navbar-toggler {
    padding: 0;
  }
  .navbar .navbar-toggler img {
    height: 30px;
    width: 30px;
  }
  .navbar .navbar-nav .nav-item {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: #333333;
    font-weight: 500;
    font-size: 18px;
  }
  .navbar.scrolled {
    background: #ffffff;
    -webkit-transition: 300ms;
    transition: 300ms;
    -webkit-box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
            box-shadow: 0 2px rgba(51, 51, 51, 0.1), 0 0px 10px rgba(51, 51, 51, 0.2);
  }
  .navbar.scrolled .navbar-brand::after {
    content: "";
    background: -webkit-gradient(linear, right top, left top, from(#87cf35), color-stop(90%, transparent)) no-repeat;
    background: linear-gradient(-90deg, #87cf35, transparent 90%) no-repeat;
    background-size: 100% 100%;
    background-position: right center;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 10%;
    right: -5px;
    bottom: 0;
    border-radius: 0 10px 10px 0;
    -webkit-transition: background-size 300ms ease-in;
    transition: background-size 300ms ease-in;
  }
  .section-one {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .section-one .shape1 img {
    max-width: 250px;
    left: -50vw;
  }
  .section-one .shape2 img {
    top: 10vh;
    right: -30vw;
    max-width: 200px;
  }
  .section-one .row {
    padding-top: 100px;
  }
  .section-one .row .col-lg-6 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .section-one .row .col-lg-6 .wrapper {
    padding: 10px;
  }
  .section-one .row .col-lg-6 .wrapper h1 {
    font-size: 48px;
  }
  .section-one .row .col-lg-6 .wrapper h2 {
    font-size: 24px;
  }
  .section-one .row .col-lg-6 .wrapper p {
    color: #333333;
    font-size: 16px;
    margin-top: 20px;
  }
  .section-one .row .col-lg-6 .wrapper button {
    font-size: 18px;
  }
  .section-one .row .col-lg-6 .wrapper a {
    font-size: 16px;
    display: block;
    margin-top: 20px;
  }
  .section-one .row .col-lg-6 .wrapper a i.phone::before {
    content: url(../svg/phone-call.svg);
    vertical-align: middle;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  .section-one .row .col-lg-6:nth-child(2) {
    position: relative;
    min-height: 500px;
  }
  .section-one .row .col-lg-6:nth-child(2) #hero {
    position: absolute;
    height: 300px;
    bottom: 0;
    right: auto;
    left: auto;
    width: 90%;
  }
  .section-one .row .col-lg-6:nth-child(2) #hero::before {
    content: "";
    background: url(../img/hero-img.png) no-repeat;
    position: absolute;
    height: 400px;
    width: 100%;
    background-size: contain;
    background-position: center;
    bottom: 50px;
    left: 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-filter: drop-shadow(-20px -20px 20px rgba(51, 51, 51, 0.3));
            filter: drop-shadow(-20px -20px 20px rgba(51, 51, 51, 0.3));
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  .section-two {
    margin-bottom: 100px;
    margin-top: 100px;
  }
  .section-two .row .col-lg-9 {
    height: 100%;
    margin-bottom: 20px;
  }
  .section-two .row .col-lg-9 h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-two .row .col-lg-9 .wrapper {
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[5] 50px;
        grid-template-rows: repeat(5, 1fr) 50px;
    gap: 10px;
        grid-template-areas: "news1" "news2" "news3"        "news4" "news5" "button";
  }
  .section-two .row .col-lg-9 .wrapper .news1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: news1;
  }
  .section-two .row .col-lg-9 .wrapper .news2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: news2;
  }
  .section-two .row .col-lg-9 .wrapper .news3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: news3;
  }
  .section-two .row .col-lg-9 .wrapper .news4 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: news4;
  }
  .section-two .row .col-lg-9 .wrapper .news5 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: news5;
  }
  .section-two .row .col-lg-9 .wrapper button {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: button;
    font-size: 18px;
  }
  .section-two .row .col-lg-9 .wrapper .card {
    height: 200px;
    border: none;
    border-radius: 0;
    overflow: hidden;
  }
  .section-two .row .col-lg-9 .wrapper .card:hover img {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: 1000ms;
    transition: 1000ms;
  }
  .section-two .row .col-lg-3 {
    margin-top: 20px;
  }
  .section-two .row .col-lg-3 .wrapper {
    padding: 20px;
  }
  .section-two .row .col-lg-3 .wrapper h4 {
    font-size: 24px;
    color: #87cf35;
  }
  .section-two .row .col-lg-3 .wrapper ul {
    margin: 20px 0;
  }
  .section-two .row .col-lg-3 .wrapper ul li {
    font-size: 16px;
    margin: 5px 0;
  }
  .section-two .row .col-lg-3 .wrapper ul li a {
    color: #7b7b7b;
    font-weight: 400;
  }
  .section-three .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-three .container h2 {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
  }
  .section-three .container > span {
    font-size: 24px;
  }
  .section-three .container .col-lg-6 {
    padding: 0 50px;
    margin-bottom: 20px;
  }
  .section-three .container .col-lg-6 h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
  }
  .section-three .container .col-lg-6 ul {
    list-style: none;
  }
  .section-three .container .col-lg-6 ul li {
    font-size: 18px;
    color: #ffffff;
    margin: 5px 0;
  }
  .section-three .container .col-lg-6 .button {
    font-size: 16px;
    padding: 8px 10px;
  }
  .section-three .container .col-lg-6 .button-alt {
    font-size: 16px;
    padding: 8px 10px;
  }
  .section-three .container .col-lg-6 span {
    display: block;
    margin-top: 16px;
    color: #ffffff;
  }
  .section-three .container .col-lg-6 span a {
    color: #ffffff;
    white-space: nowrap;
  }
  .section-three .container .col-lg-6:nth-child(2) ul li {
    margin: 10px 0;
  }
  .section-four {
    padding: 50px 0;
  }
  .section-four .row .col-lg-7 img {
    height: 100%;
    width: 100%;
  }
  .section-four .row .col-lg-5 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .section-four .row .col-lg-5 h2 {
    font-size: 40px;
    font-weight: 500;
    white-space: normal;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .section-four .row .col-lg-5 .wrapper p {
    font-size: 24px;
  }
  .section-four .row .col-lg-5 .wrapper span a {
    white-space: nowrap;
  }
  .section-five {
    margin: 50px auto;
  }
  .section-five h2 {
    font-size: 40px;
    font-weight: 500;
    position: relative;
  }
  .section-five h2::before {
    top: -50px;
    z-index: -1;
  }
  .section-five .tabs {
    margin: 50px auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-five .tabs .tab {
    white-space: nowrap;
    width: 80%;
    height: 60px;
    margin: 10px;
    border-radius: 20px;
  }
  .section-five .tab-content {
    display: none;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-five .tab-content .card {
    width: 100%;
  }
  .section-six {
    margin: 50px auto;
  }
  .section-six::after {
    top: -30px;
    right: -120px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .section-six h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
  }
  .section-six .row .col-lg-6 {
    margin-bottom: 20px;
  }
  .section-six .row .col-lg-6 .row {
    margin-bottom: 20px;
  }
  .section-six .row .col-lg-6 .row .col-3,
  .section-six .row .col-lg-6 .row .col-6,
  .section-six .row .col-lg-6 .row .col-9 {
    padding: 0 5px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .section-six .row .col-lg-6 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .section-six .row .col-lg-6 h4 {
    font-size: 24px;
  }
  .section-six .row .col-lg-6 h4 + span {
    font-size: 16px;
  }
  .section-six .row .col-lg-6 span {
    font-size: 16px;
  }
  .section-six .row .col-lg-6 strong {
    font-size: 18px;
  }
  .section-six .row .col-lg-6 p {
    margin: 10px 0;
    font-size: 16px;
  }
  .section-seven {
    padding: 50px 0;
  }
  .section-seven .wrapper {
    max-width: 500px;
    padding: 20px;
  }
  .section-seven .wrapper h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-seven .wrapper p {
    font-size: 16px;
  }
  .section-seven .wrapper ol li {
    font-size: 18px;
  }
  .section-eight {
    padding: 50px 0;
  }
  .section-eight .col-lg-6 {
    padding: 0;
  }
  .section-eight .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-eight .col-lg-6 > p {
    margin-top: 20px;
    font-size: 16px;
  }
  .section-eight .col-lg-6 .accordion {
    margin-top: 50px;
  }
  .section-eight .col-lg-6 .accordion .card {
    padding: 0;
    margin-bottom: 20px;
  }
  .section-eight .col-lg-6 .accordion .card .header {
    margin-bottom: 10px;
  }
  .section-eight .col-lg-6 .accordion .card .header h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-eight .col-lg-6 .accordion .card .collapse p {
    font-size: 16px;
  }
  .section-nine {
    padding: 50px 0;
  }
  .section-nine h2 {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
  }
  .section-nine p {
    font-size: 16px;
  }
  .section-nine span {
    font-size: 16px;
  }
  .section-ten {
    margin: 50px auto;
  }
  .section-ten span {
    font-size: 14px;
  }
  .section-ten h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-ten section {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
    gap: 10px;
        grid-template-areas: "para" "cards" "wrapper";
    margin-top: 20px;
  }
  .section-ten section .cards {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: cards;
    margin: 0 auto;
  }
  .section-ten section .cards .card h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-ten section .cards .card p {
    font-size: 16px;
  }
  .section-ten section .para {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: para;
  }
  .section-ten section .para p {
    font-size: 16px;
  }
  .section-ten section .wrapper {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: wrapper;
  }
  .section-eleven {
    margin: 50px 0 auto;
    padding: 50px 0;
  }
  .section-eleven span {
    font-style: 14px;
  }
  .section-eleven h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-eleven .row .col-lg-6 {
    padding: 20px 0 0;
  }
  .section-eleven .row .col-lg-6 p {
    font-size: 16px;
  }
  .section-eleven .row .col-lg-6 > h4 {
    color: #ffffff;
    font-family: 'Roboto',sans-serif;
    font-weight: 500;
  }
  .section-eleven .row .col-lg-6 ul li h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-twelve {
    margin: 50px auto;
  }
  .section-twelve .row .col-lg-6 {
    padding: 0;
  }
  .section-twelve .row .col-lg-6 span {
    font-size: 14px;
  }
  .section-twelve .row .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-twelve .row .col-lg-6 ul li {
    margin-bottom: 10px;
  }
  .section-twelve .row .col-lg-6 ul li h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-twelve .row .col-lg-6 ul li p {
    font-size: 16px;
  }
  .section-twelve .row .col-lg-6 .wrapper img {
    height: 300px;
  }
  .section-thirteen {
    margin: 50px 0 auto;
    padding: 50px 0;
  }
  .section-thirteen .container {
    position: relative;
    z-index: 1;
  }
  .section-thirteen .container > h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .section-thirteen .container > h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
  }
  .section-thirteen .container > p {
    font-style: 16px;
  }
  .section-thirteen section > h4 {
    position: static;
    -webkit-transform: translate(0) rotateZ(0deg);
            transform: translate(0) rotateZ(0deg);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card {
    border: none;
    background: rgba(51, 51, 51, 0.3);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 10px;
    margin: 0;
    border-radius: 4px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card img {
    width: 150px;
    height: 180px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card h4 {
    font-size: 18px;
    margin-top: 8px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card h2 {
    font-size: 40px;
    font-weight: 500;
    font-weight: 700;
  }
  .section-thirteen section .swiper-container .swiper-slide .card span {
    font-size: 18px;
  }
  .section-thirteen section .swiper-container .swiper-slide > h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
  }
  .section-thirteen section .swiper-container .swiper-slide > h4 strong {
    font-size: 40px;
    font-weight: 500;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-left h4 {
    font-size: 24px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right p {
    font-size: 18px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right h4 strong {
    font-size: 60px;
    font-weight: 700;
    color: #87cf35;
    font-size: 50px;
  }
  .section-thirteen section .swiper-container .swiper-slide .card-alt .card-content-right span {
    color: #ffffff;
    font-size: 18px;
  }
  .section-fourteen {
    padding: 50px 0;
  }
  .section-fourteen .col-lg-6 {
    padding: 0;
  }
  .section-fourteen .col-lg-6 h2 {
    font-size: 30px;
    font-weight: 700;
    color: #87cf35;
    margin-bottom: 20px;
  }
  .section-fourteen .col-lg-6 span {
    font-size: 30px;
  }
  .section-fifteen {
    margin: 50px auto;
  }
  .section-fifteen h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-fifteen p {
    font-weight: 400;
  }
  .section-fifteen .row .col-lg-7 {
    padding: 0;
  }
  .section-fifteen .row .col-lg-7 ul {
    margin-left: 50px;
  }
  .section-fifteen .row .col-lg-7 ul li {
    position: relative;
  }
  .section-fifteen .row .col-lg-7 ul li h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .section-fifteen .row .col-lg-5 {
    margin-top: 30px;
  }
  .section-fifteen .row .col-lg-5 .wrapper {
    margin-left: 30px;
  }
  .section-fifteen .row .col-lg-5 .wrapper h4 {
    left: -20px;
  }
  .section-seventeen {
    margin: 50px auto;
  }
  .section-seventeen h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-seventeen h2::before {
    top: -80%;
    left: -30%;
    height: 60px;
  }
  .section-seventeen p {
    font-size: 16px;
  }
  .section-seventeen section {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .section-seventeen section .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px auto;
        grid-template-columns: 70px auto;
  }
  .section-seventeen section .wrapper img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: img;
    height: 70px;
    width: 70px;
  }
  .section-seventeen section .wrapper h4 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: h4;
    font-size: 30px;
    font-weight: 700;
    color: #87cf35;
    margin-top: auto;
  }
  .section-seventeen section .wrapper p {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: p;
    font-size: 16px;
  }
  .section-eighteen {
    margin: 50px auto;
  }
  .section-eighteen h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .section-eighteen section {
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .5fr .5fr;
        grid-template-columns: .5fr .5fr;
    -ms-grid-rows: 1fr .5fr .5fr 1fr .5fr .5fr 50px;
        grid-template-rows: 1fr .5fr .5fr 1fr .5fr .5fr 50px;
    gap: 10px;
        grid-template-areas: "img1 img1" "img2 img3" "img4 img5" "img6 img6" "img7 img8" "img9 img10" "button button";
  }
  .section-eighteen section img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .section-eighteen section img:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: img1;
  }
  .section-eighteen section img:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: img2;
  }
  .section-eighteen section img:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: img3;
  }
  .section-eighteen section img:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: img4;
  }
  .section-eighteen section img:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: img5;
  }
  .section-eighteen section img:nth-child(6) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: img6;
  }
  .section-eighteen section img:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: img7;
  }
  .section-eighteen section img:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
    grid-area: img8;
  }
  .section-eighteen section img:nth-child(9) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    grid-area: img9;
  }
  .section-eighteen section img:nth-child(10) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
    grid-area: img10;
  }
  .section-eighteen section img:nth-child(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: button;
  }
  .section-ninteen {
    padding: 50px 0;
  }
  .section-ninteen .col-lg-6:first-child {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .section-ninteen .col-lg-6:first-child h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .section-twenty {
    background: url(../svg/section-bg-waves.svg) no-repeat;
    background-position: top;
    background-size: cover;
    padding: 100px 0;
  }
  .section-twenty .col-lg-6 {
    text-align: center;
  }
  .section-twenty .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-twenty .col-lg-6 p {
    font-size: 30px;
    color: #333333;
  }
  .section-twentyone {
    margin: 50px 0;
  }
  .section-twentyone h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
  }
  .section-twentyone section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-twentyone section .card {
    margin-bottom: 20px;
  }
  .section-twentytwo {
    margin: 50px auto;
    overflow: hidden;
  }
  .section-twentytwo h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .section-twentytwo section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-twentytwo section .card {
    margin-bottom: 20px;
  }
  .section-twentytwo .button {
    display: block;
    margin: 20px auto;
  }
  .section-twentythree {
    margin: 50px 0 auto;
    padding: 50px 0;
  }
  .section-twentythree h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .section-twentythree .card {
    -ms-grid-columns: 70px auto;
        grid-template-columns: 70px auto;
    gap: 0px;
  }
  .section-twentythree .card img {
    height: 100%;
    width: 100%;
  }
  .section-twentythree .card h4 {
    font-size: 24px;
    font-weight: 700;
    margin: auto;
  }
  .section-twentyfour {
    padding: 50px 0;
  }
  .section-twentyfour h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .section-twentyfour section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-twentyfour section .card {
    height: 100px;
    width: 100px;
    border-radius: 40px;
    margin: 10px;
  }
  .section-twentyfour section .card a svg {
    height: 50px;
    max-width: 60px;
  }
  .section-twentyfive {
    padding: 50px 0;
  }
  .section-twentyfive .col-lg-6 {
    padding: 0;
  }
  .section-twentyfive .col-lg-6 h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 30px;
  }
  .section-twentysix {
    margin-top: 50px;
  }
  .section-twentysix .container .row:first-child {
    margin-bottom: 50px;
  }
  .section-twentysix .container .row:first-child .col-lg-6 {
    padding: 0;
  }
  .section-twentysix .container .row:first-child .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .section-twentysix .container .row:first-child .col-lg-6 .wrapper {
    -ms-grid-columns: 60px auto;
        grid-template-columns: 60px auto;
    gap: 10px;
  }
  .section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content span {
    font-size: 14px;
  }
  .section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content h6, .section-twentysix .container .row:first-child .col-lg-6 .wrapper .wrapper-content a {
    font-size: 16px;
  }
  .section-twentysix .container .row:nth-child(2) .wrapper {
    margin-bottom: 20px;
  }
  .section-twentysix .container .row:nth-child(2) .wrapper img {
    width: 40px;
    margin-right: 5px;
  }
  .section-twentysix .container .row:nth-child(2) .wrapper span {
    font-size: 14px;
  }
  .section-twentysix section {
    display: block;
    margin-top: 50px;
  }
  .section-twentysix section .card {
    width: 100%;
  }
  .section-twentysix section .card img {
    height: 100px;
  }
  .section-twentysix section .card .card-img-overlay a {
    margin-top: 50px;
  }
  .section-twentyseven {
    margin: 100px 0;
  }
  .section-twentyseven .col-lg-5 img {
    width: 100%;
  }
  .section-twentyeight {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .section-twentyeight .row {
    padding: 20px;
  }
  .section-twentyeight .row .col-md-8 h1 {
    font-size: 38px;
  }
  .section-twentyeight .row .col-md-8 h4 {
    font-size: 18px;
  }
  .section-twentyeight .row .col-md-8 h6 {
    font-size: 14px;
    margin-top: 24px;
  }
  .section-twentyeight .row .col-md-8 span {
    margin: 5px;
  }
  .section-twentyeight .row .col-md-4 {
    margin-top: 50px;
  }
  footer {
    background: #24362E;
    padding: 100px 0 50px 0;
  }
  footer .row .col-lg-4 {
    padding: 0;
    margin-bottom: 50px;
  }
  footer .row .col-lg-4 p, footer .row .col-lg-4 a {
    font-size: 16px;
    line-height: 30px;
  }
  footer .row .col-lg-4 a:hover {
    color: #87cf35;
  }
  footer .row .col-lg-4 section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .row .col-lg-4 section .card {
    border: none;
    background: none;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-shadow: -3px -3px 6px #385548, 3px 3px 6px #101714;
            box-shadow: -3px -3px 6px #385548, 3px 3px 6px #101714;
    -webkit-transition: 300ms all;
    transition: 300ms all;
  }
  footer .row .col-lg-4 section .card a svg {
    width: 40px;
    height: 40px;
  }
  footer .row .col-lg-4 section .card a svg path {
    fill: #ffffff;
  }
  footer .row .col-lg-4 section .card:hover a svg path {
    fill: #87cf35;
  }
  footer span, footer a {
    font-size: 14px;
  }
  .banner {
    height: 200px;
    background: url(../img/banner-bg-mob.png) no-repeat;
    background-position: top;
    background-size: cover;
  }
  .banner .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner .container h1 {
    font-size: 40px;
    color: #ffffff;
  }
  .course {
    margin-top: 100px;
  }
  .course .course__about {
    margin: 50px auto;
  }
  .course .course__about .container .col-lg-6 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .course .course__about .container .col-lg-6 h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .course .course__about .container .col-lg-6 p {
    color: #7b7b7b;
    font-size: 16px;
    line-height: 25px;
  }
  .course .course__detail > h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
  }
  .course .course__detail .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .course .course__detail .container .card {
    width: 100%;
  }
  .course .course__detail .container .card .row .col-3 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 0;
  }
  .course .course__detail .container .card .row .col-3 img {
    width: 100%;
    height: 60px;
  }
  .course .course__detail .container .card .row .col-9 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 0;
  }
  .course .course__detail .container .card .row .col-9 h4 {
    font-weight: 900;
    font-size: 30px;
  }
  .course .course__detail .container .card .row .col-9 span {
    font-size: 14px;
  }
  .course .course__detail .container .card .row .col-6 {
    padding: 0;
  }
  .course .course__detail .container .card p {
    margin: 0;
    font-weight: 500;
  }
  .course .course__detail button {
    display: block;
    margin: auto;
  }
  .course .section-six {
    margin-bottom: 50px;
  }
  .course .section-six::after {
    content: none;
  }
  .course .section-fifteen {
    margin: 50px auto;
  }
  .course .section-fifteen .col-lg-5 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .course .section-twentysix .container .row:first-child .col-lg-6 h2::before {
    content: none;
  }
  .trial-class {
    background: #87cf35;
    margin: 50px auto;
    padding: 50px 0;
  }
  .trial-class .container h2 {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .trial-class .container p {
    font-size: 16px;
    line-height: 25px;
  }
  .trial-class .container span {
    font-size: 16px;
  }
  .trial-class .container span a {
    white-space: nowrap;
  }
  .login .wrapper {
    padding: 100px 20px;
  }
  .login .wrapper .wrapper__content {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: .5fr 1fr;
        grid-template-rows: .5fr 1fr;
    width: 100%;
  }
  .login .wrapper .wrapper__content .wrapper__action {
    background: radial-gradient(ellipse at top left, #87cf35, #52801e);
    border-radius: 0;
    -ms-flex-item-align: center;
        align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
    padding: 20px;
  }
  .login .wrapper .wrapper__content .wrapper__action h2 {
    font-size: 40px;
  }
  .login .wrapper .wrapper__content .wrapper__action p {
    font-size: 18px;
  }
  .login .wrapper .wrapper__content .wrapper__action button {
    margin-top: 10px;
  }
  .login .wrapper .wrapper__content .wrapper__form {
    padding: 20px;
  }
  .login .wrapper .wrapper__content .wrapper__form .form h2 {
    font-size: 30px;
  }
  .about .about__content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .about .about__content p {
    line-height: 25px;
    font-size: 16px;
  }
  .about .about__content p img {
    width: 100%;
    margin: 0;
  }
  .about .about__content-motivation {
    background: #87cf35;
    margin: 50px auto;
    padding: 50px 0;
  }
  .about .about__content-motivation .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
  .about .about__content-motivation .container .wrapper h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
  }
  .about .section-twentysix .container .row:first-child .col-lg-6 h2::before {
    content: none;
  }
  .career .container .wrapper .wrapper__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
  .career .container .wrapper .wrapper__content .wrapper__action {
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 0px;
  }
  .career .container .wrapper .wrapper__content .wrapper__action h2 {
    font-size: 40px;
    font-weight: 500;
    margin-top: 20px;
  }
  .career .container .wrapper .wrapper__content .wrapper__action p {
    font-size: 16px;
  }
  .career .container .wrapper .wrapper__form {
    margin-bottom: 50px;
  }
  .career .container .wrapper .wrapper__form .form {
    margin: 0px;
  }
  .sip .sip__about .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
  .sip .sip__about .container .wrapper h2 {
    font-size: 30px;
    font-weight: 700;
    color: #87cf35;
    margin-bottom: 20px;
  }
  .sip .sip__course {
    margin: 50px auto;
  }
  .sip .sip__course h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
  }
  .sip .sip__course .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[4];
        grid-template-rows: repeat(4, auto);
    gap: 50px;
  }
  .sip .sip__course .container .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px auto;
        grid-template-columns: 70px auto;
  }
  .sip .sip__course .container .wrapper img {
    width: 80%;
  }
  .sip .sip__course .container .wrapper h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .sip .sip__course .container .wrapper p {
    font-size: 16px;
  }
  .sip .section-eleven {
    background: none;
    margin: 50px auto;
    padding: 0;
  }
  .sip .section-eleven .container h2 {
    text-align: center;
  }
  .sip .section-eleven .container .row .col-lg-6 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .sip .section-eleven .container .row .col-lg-6 p {
    color: #7b7b7b;
  }
  .sip .section-twentysix .container .row:first-child .col-lg-6 h2::before {
    content: none;
  }
  .answer-key .answer-key__content {
    margin: 50px auto;
  }
  .answer-key .answer-key__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .answer-key .answer-key__content table tr {
    margin: 10px 0;
  }
  .answer-key .answer-key__content table tr th {
    padding: 5px;
    font-size: 16px;
  }
  .answer-key .answer-key__content table tr td {
    padding: 5px;
    font-size: 16px;
  }
  .answer-key .section-twentysix .container .row:first-child .col-lg-6 h2::before {
    content: none;
  }
  .center .center__content {
    margin: 50px auto;
  }
  .center .center__content .wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
  .center .center__content .wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .center .center__content .wrapper img {
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
  }
  .center .center__content .wrapper p {
    font-size: 18px;
  }
  .center section.center__gallery {
    display: block;
  }
  .center section.center__gallery .card {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .center .section-twentysix {
    margin-top: 50px;
  }
  .center .section-twentysix .container .row:first-child .col-lg-6 h2::before {
    content: none;
  }
}
/*# sourceMappingURL=main.css.map */