@font-face {
  font-family: "SF-Pro-Display";
  src: url("../src/fonts/SF-Pro-Display-Regular.woff2") format("woff2"), url("../src/fonts/SF-Pro-Display-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../src/fonts/SF-Pro-Display-Medium.woff2") format("woff2"), url("../src/fonts/SF-Pro-Display-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../src/fonts/SF-Pro-Display-Semibold.woff2") format("woff2"), url("../src/fonts/SF-Pro-Display-Semibold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../src/fonts/SF-Pro-Display-Bold.woff2") format("woff2"), url("../src/fonts/SF-Pro-Display-Bold.woff") format("woff");
  font-weight: 700;
}
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}
@media (max-width: 575px) {
  html {
    scroll-padding-top: 65px;
  }
}

/* Base Styles */
body {
  font-family: "SF-Pro-Display", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
span {
  color: #101010;
}

a {
  color: #CA599F;
  text-decoration: none;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration: underline;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 575px) {
  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.custom-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .custom-container {
    max-width: 880px;
  }
}
@media (max-width: 991px) {
  .custom-container {
    max-width: 720px;
  }
}

.section-title {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: -0.48px;
  line-height: 1.07;
}
@media (max-width: 1199px) {
  .section-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.section-text {
  font-size: 32px;
}
@media (max-width: 1199px) {
  .section-text {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-text {
    font-size: 22px;
  }
}

.img-object-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-light {
  background-color: #F4F4F4 !important;
}

.bg-dark {
  background-color: #101010 !important;
}

.bg-dark-light {
  background-color: #2D2D2D;
}

.bg-secondary {
  color: #3C3C3C;
  background-color: #CACACA !important;
}

.bg-secondary-dark {
  color: #fff;
  background-color: #101010 !important;
}

.bg-grey {
  color: #fff;
  background-color: #414141;
}

.bg-blue {
  background-color: #147AFF;
}

.bg-pink {
  background-color: #FFEDED;
}

.bg-green-light {
  background-color: #E3FFEC;
}

.bg-yellow-light {
  background-color: #FFF5E3;
}

.text-grey-light {
  color: #989898;
}

.text-blue {
  color: #147AFF;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background-color: #147AFF;
  border: 1px solid #147AFF;
}
.btn-primary:hover {
  color: #147AFF;
  border: 1px solid #147AFF;
  background: #fff;
}
.btn-primary svg {
  fill: currentColor;
}

.btn-primary-red {
  color: #fff;
  background-color: #E5362D;
  border: 1px solid #E5362D;
}
.btn-primary-red:hover {
  color: #E5362D;
  border: 1px solid #E5362D;
  background: #fff;
}
.btn-primary-red svg {
  fill: currentColor;
}
.btn-primary-red:first-child:active {
  color: #E5362D;
  border: 1px solid #E5362D;
  background: #fff;
}

.btn-dark {
  color: #fff;
  background-color: #101010;
  border: 1px solid #101010;
}
.btn-dark:hover {
  color: #101010;
  background-color: #fff;
  border: 1px solid #101010;
}

.btn-dark-light {
  background-color: #212121;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn-dark-light:hover {
  background-color: #fff;
  color: #101010;
}

:not(.btn-check) + .btn-dark-light:active {
  background-color: #fff;
  color: #101010;
}

.btn-blue {
  background-color: #147AFF;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-blue:hover {
  background-color: #0068ef;
  color: #fff;
}

.badge {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
}
@media (max-width: 575px) {
  .badge {
    padding: 4px 13px;
    font-size: 12px;
    font-weight: 400;
  }
}

.icon-wrap-dark,
.icon-wrap-light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.icon-wrap-dark.more,
.icon-wrap-light.more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  gap: 16px;
  font-size: 20px;
  text-decoration: none;
}
.icon-wrap-dark.more svg,
.icon-wrap-light.more svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 575px) {
  .icon-wrap-dark.more,
  .icon-wrap-light.more {
    padding: 0 30px;
  }
  .icon-wrap-dark.more svg,
  .icon-wrap-light.more svg {
    width: 15px;
    height: 15px;
  }
}
.icon-wrap-dark svg,
.icon-wrap-light svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 575px) {
  .icon-wrap-dark,
  .icon-wrap-light {
    width: 70px;
    height: 35px;
  }
  .icon-wrap-dark svg,
  .icon-wrap-light svg {
    width: 20px;
    height: 20px;
  }
}

.icon-wrap-dark {
  color: #fff;
  background-color: #101010;
  border: 1px solid #101010;
}
.icon-wrap-dark:hover {
  background-color: #fff;
  color: #101010;
}
.icon-wrap-dark:hover svg {
  fill: currentColor;
}
.icon-wrap-dark svg {
  fill: #fff;
}

.icon-wrap-light {
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
}
.icon-wrap-light:hover {
  background-color: #101010;
  color: #fff;
}
.icon-wrap-light:hover svg {
  fill: currentColor;
}
.icon-wrap-light svg {
  fill: #101010;
}

.underline-blue {
  white-space: nowrap;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 8px;
  text-underline-offset: 8px;
  text-decoration-color: #147AFF;
}
@media (max-width: 575px) {
  .underline-blue {
    white-space: normal;
    text-decoration-thickness: 6px;
    text-underline-offset: 6px;
  }
}

.error-border {
  border: 2px solid red !important;
}

.tooltip {
  --bs-tooltip-bg: #ebebeb;
  --bs-tooltip-color: #000;
}
.tooltip.show {
  opacity: 1;
}
.tooltip .tooltip-inner {
  max-width: 280px;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.card-body {
  padding: 40px;
}
.card-body .card-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
.card-body .card-text {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 1199px) {
  .card-body {
    padding: 34px;
  }
}
@media (max-width: 575px) {
  .card-body {
    padding: 16px;
  }
  .card-body .card-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .card-body .card-text {
    font-size: 18px;
  }
}

.custom-card-body {
  padding: 24px;
}
.custom-card-body .title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .custom-card-body .title {
    font-size: 22px;
  }
}
.custom-card-body .number {
  font-size: 14px;
  opacity: 50%;
}
.custom-card-body .img-wrap {
  border-radius: 30px;
}

.card-body-mini {
  padding: 20px;
  border-radius: 20px;
}
.card-body-mini .title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .card-body-mini .title {
    font-size: 24px;
  }
}
.card-body-mini .number {
  font-size: 16px;
  opacity: 50%;
}

/* Carousel Styles */
.carousel {
  position: relative;
}
.carousel .carousel-inner {
  position: static;
}
.carousel .carousel-indicators {
  top: -62px;
  bottom: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.carousel .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #989898;
}
.carousel .carousel-indicators [data-bs-target].active {
  background-color: #147AFF;
}
@media (max-width: 991px) {
  .carousel .carousel-indicators {
    margin-right: 125px;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .carousel .carousel-indicators {
    top: -45px;
    margin-right: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  top: -70px;
  width: 50px;
  height: 50px;
  background-color: transparent;
}
.carousel .carousel-control-prev svg,
.carousel .carousel-control-next svg {
  width: 30px;
  height: 30px;
  fill: #989898;
}
.carousel .carousel-control-prev svg:hover,
.carousel .carousel-control-next svg:hover {
  fill: darcen(#989898, 15);
}
@media (max-width: 575px) {
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    display: none;
  }
}
.carousel .carousel-control-prev {
  right: 70px;
  left: auto;
}
.carousel .carousel-control-next {
  right: 0;
}

.custom-modal.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -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;
}
.custom-modal.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-modal.modal .modal-content {
  background: white;
  padding: 60px;
  border-radius: 0;
  max-width: 600px;
  width: 90%;
  text-align: center;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content {
    padding: 30px 16px;
  }
}
.custom-modal.modal .modal-content .dp {
  margin: 0 auto 10px;
  width: 105px;
  height: 77px;
  fill: #BCBCBC;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .dp {
    width: 110px;
    height: 80px;
    margin-bottom: 10px;
  }
}
.custom-modal.modal .modal-content h2 {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content h2 {
    font-size: 26px;
  }
}
.custom-modal.modal .modal-content p,
.custom-modal.modal .modal-content label {
  line-height: 1;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content p,
  .custom-modal.modal .modal-content label {
    font-size: 16px;
  }
}
.custom-modal.modal .modal-content label {
  text-align: start;
}
.custom-modal.modal .modal-content .message-error {
  line-height: 1;
}
.custom-modal.modal .modal-content .message-error .title {
  display: block;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .message-error .title {
    font-size: 30px;
  }
}
.custom-modal.modal .modal-content .message-error .title span {
  color: #DB2626;
}
.custom-modal.modal .modal-content .message-error .text {
  display: block;
  font-size: 36px;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .message-error .text {
    font-size: 24px;
  }
}
.custom-modal.modal .modal-content .message-success .title {
  margin-bottom: 24px;
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 767px) {
  .custom-modal.modal .modal-content .message-success .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .message-success .title {
    font-size: 34px;
  }
}
.custom-modal.modal .modal-content .message-success .title span {
  color: #147AFF;
}
.custom-modal.modal .modal-content .message-success .text {
  font-size: 30px;
  line-height: 1;
}
@media (max-width: 767px) {
  .custom-modal.modal .modal-content .message-success .text {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .message-success .text {
    font-size: 20px;
  }
}
.custom-modal.modal .modal-content .message-success,
.custom-modal.modal .modal-content .message-error {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  pointer-events: none;
  padding-bottom: 60px;
  background-color: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.custom-modal.modal .modal-content .message-success .dp,
.custom-modal.modal .modal-content .message-error .dp {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 128px;
  height: 74px;
}
@media (max-width: 575px) {
  .custom-modal.modal .modal-content .message-success .dp,
  .custom-modal.modal .modal-content .message-error .dp {
    width: 70px;
    height: 50px;
  }
}
.custom-modal.modal .modal-content .message-success.show,
.custom-modal.modal .modal-content .message-error.show {
  opacity: 1;
  visibility: visible;
}
.custom-modal.modal .modal-content .close-modal {
  width: 25px;
  height: 25px;
  fill: #989898;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  cursor: pointer;
}
.custom-modal.modal .modal-content .form-check-input,
.custom-modal.modal .modal-content .form-control {
  background-color: #DFDFDF;
  border: none;
}
.custom-modal.modal .modal-content .form-check-input:-webkit-autofill, .custom-modal.modal .modal-content .form-check-input:-webkit-autofill:focus,
.custom-modal.modal .modal-content .form-control:-webkit-autofill,
.custom-modal.modal .modal-content .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #DFDFDF inset;
          box-shadow: 0 0 0 1000px #DFDFDF inset;
  -webkit-text-fill-color: #000;
  caret-color: auto;
}
.custom-modal.modal .modal-content .form-check-input.input-error-bg,
.custom-modal.modal .modal-content .form-control.input-error-bg {
  color: #fff;
  background-color: #FFB5B5;
}
.custom-modal.modal .modal-content .btn {
  padding: 8px 50px;
}

/* Form styles */
.contact-form .form-control {
  padding: 12px 40px;
  font-size: 22px;
  border-radius: 50px;
}
@media (max-width: 1199px) {
  .contact-form .form-control {
    padding: 12px 40px;
  }
}
@media (max-width: 575px) {
  .contact-form .form-control {
    padding: 8px 25px;
    font-size: 15px;
  }
}
.contact-form .form-check-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: #575757;
  cursor: pointer;
}
.contact-form .form-check-input:checked {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 352' fill='none'%3e%3cpath opacity='0.967' fill-rule='evenodd' clip-rule='evenodd' d='M511.5 13.5C511.5 19.167 511.5 24.833 511.5 30.5C509.92 33.263 508.087 35.93 506 38.5C406.139 138.694 305.973 238.527 205.5 338C177.685 356.439 150.352 355.772 123.5 336C83.6667 296.167 43.8333 256.333 4 216.5C2.19914 213.563 0.699136 210.563 -0.5 207.5C-0.5 204.5 -0.5 201.5 -0.5 198.5C5.01994 182.929 15.6866 177.762 31.5 183C72.139 222.639 112.472 262.639 152.5 303C160.621 308.495 168.954 308.828 177.5 304C277.167 204.333 376.833 104.667 476.5 5.00003C490.961 -3.22297 502.627 -0.389674 511.5 13.5Z' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #444242;
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-form.popup .error-message {
  background-color: #f9f7f7;
}
.contact-form.popup .form-check-input {
  background-color: #DFDFDF;
}
.contact-form.popup .form-check-input:checked {
  background-color: #b2b2b2;
}
.contact-form .loader {
  width: 100px;
  height: 100px;
  border: 10px solid #c2dcff;
  border-top: 10px solid #147AFF;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  z-index: 2;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.btn {
  padding: 8px 32px;
  border-radius: 50rem;
  font-size: 22px;
}
@media (max-width: 575px) {
  .btn {
    padding: 6px 15px;
    font-size: 15px;
  }
}

.navbar {
  padding-top: 17px;
  padding-bottom: 17px;
}
@media (max-width: 575px) {
  .navbar {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.navbar .navbar-toggler {
  width: 45px;
  height: 45px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #1C1C1C;
  border: none;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .navbar-toggler .close svg,
.navbar .navbar-toggler .open svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.navbar .navbar-toggler[aria-expanded=false] .close {
  display: none;
}
.navbar .navbar-toggler[aria-expanded=false] .open {
  display: block;
}
.navbar .navbar-toggler .close {
  display: block;
}
.navbar .navbar-toggler .open {
  display: none;
}
@media (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    font-size: 35px;
    font-weight: 600;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-nav .nav-link {
    font-size: 30px;
  }
}
.navbar .text-social {
  font-size: 15px;
  font-weight: 400;
}
.navbar .btn {
  font-size: 18px;
  padding: 4px 26px;
}
.navbar .navbar-brand img {
  width: 186px;
}
@media (max-width: 575px) {
  .navbar .navbar-brand img {
    width: 140px;
  }
}
.navbar .link-phone .phone {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.navbar .social-wrap .social-item {
  width: 50px;
  height: 50px;
  background-color: #212121;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.navbar .social-wrap .social-item:hover {
  background: #fff;
}
.navbar .social-wrap .social-item:hover svg {
  fill: #101010;
}
.navbar .social-wrap .social-item svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.section-header .title {
  font-size: 175px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .section-header .title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .section-header .title {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .section-header .title {
    font-size: 65px;
    text-align: center;
  }
}
.section-header .title-dep-ex {
  font-size: 120px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .section-header .title-dep-ex {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .section-header .title-dep-ex {
    font-size: 50px;
  }
}
.section-header .desc {
  font-size: 32px;
}
@media (max-width: 767px) {
  .section-header .desc {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-header .desc {
    font-size: 24px;
  }
}
.section-header .img {
  width: 245px;
  aspect-ratio: 1/1;
}
@media (max-width: 1199px) {
  .section-header .img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .section-header .img {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .section-header .img {
    width: 120px;
  }
}
.section-header .img.dept-space {
  fill: #147AFF;
}

.hero-section {
  color: white;
  width: 100%;
  min-height: calc(100vh - 80px);
}
@media (max-width: 575px) {
  .hero-section {
    min-height: calc(100vh - 72px);
  }
}
.hero-section .background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (max-width: 575px) {
  .hero-section .background-video .background-video {
    height: calc(100vh - 72px);
  }
}
.hero-section .main-content .title {
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.48px;
  max-width: 13500px;
  margin: 0 auto 100px;
}
@media (max-width: 1199px) {
  .hero-section .main-content .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-section .main-content .title {
    font-size: 40px;
    margin: 0 auto 40px;
  }
}
.hero-section .main-content .btn-enrolment {
  gap: 24px;
  background-color: rgba(255, 255, 255, 0.09);
  padding: 10px 40px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hero-section .main-content .btn-enrolment:hover {
  color: #101010;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1199px) {
  .hero-section .main-content .btn-enrolment {
    gap: 18px;
    padding: 8px 40px;
    font-size: 18px;
  }
}
.hero-section .main-content .btn-enrolment .avatar-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
}
@media (max-width: 1199px) {
  .hero-section .main-content .btn-enrolment .avatar-btn {
    width: 35px;
    height: 35px;
  }
}
.hero-section .main-content .btn-enrolment .avatar-btn:nth-child(2) {
  margin-left: -40px;
}
.hero-section .main-content .btn-enrolment .chevron-right {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
@media (max-width: 1199px) {
  .hero-section .main-content .btn-enrolment .chevron-right {
    width: 18px;
    height: 18px;
  }
}

/* Our Approach Section */
.our-approach .our-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1199px) {
  .our-approach .our-approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.our-approach .match,
.our-approach .car-engine {
  height: 250px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .our-approach .match,
  .our-approach .car-engine {
    border-radius: 30px;
  }
}
.our-approach .car-engine {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575px) {
  .our-approach .car-engine {
    height: 150px;
  }
}
.our-approach .car-engine p {
  text-align: center;
  font-size: 65px;
  font-weight: 600;
  line-height: 1;
  color: #C7C7C7;
  max-width: 500px;
}
@media (max-width: 575px) {
  .our-approach .car-engine p {
    font-size: 40px;
  }
}
.our-approach .car-engine img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 95%;
  max-height: 95%;
}

/* ---  */
/* About Us Section */
.about-us .wrap-svg .dp,
.about-us .wrap-svg .skolkovo {
  width: 110px;
  aspect-ratio: 150/110;
}
@media (max-width: 575px) {
  .about-us .wrap-svg .dp,
  .about-us .wrap-svg .skolkovo {
    width: 70px;
  }
}
.about-us .wrap-svg .dp {
  fill: #000;
}
.about-us .wrap-svg .close {
  width: 14px;
  height: 14px;
}
.about-us .map-item {
  width: 48%;
}
@media (max-width: 767px) {
  .about-us .map-item {
    width: 100%;
  }
}
.about-us .map-item:hover .text, .about-us .map-item:hover .location-desc {
  text-decoration: underline;
  text-decoration-color: #101010;
}
.about-us .wrap-map .map-img {
  width: 100%;
  aspect-ratio: 7/5;
}
.about-us .location-wrap img {
  width: 50px;
  aspect-ratio: 16/11;
}
.about-us .location-wrap .text {
  font-size: 22px;
}
@media (max-width: 575px) {
  .about-us .location-wrap .text {
    font-size: 18px;
  }
}
.about-us .location-desc {
  font-size: 20px;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 575px) {
  .about-us .location-desc {
    font-size: 16px;
  }
}
.about-us .person-card .seo-avatar-wrap {
  width: 39%;
  aspect-ratio: 16/19;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media (max-width: 991px) {
  .about-us .person-card .seo-avatar-wrap {
    -ms-flex-item-align: center;
        align-self: center;
    max-width: 450px;
    width: 100%;
  }
}
.about-us .person-card .seo-avatar-wrap img {
  border-radius: 40px;
}
.about-us .person-card .person-desc {
  width: 61%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media (max-width: 991px) {
  .about-us .person-card .person-desc {
    width: 100%;
  }
}
.about-us .person-card .person-desc .desc {
  padding: 35px 55px;
  border-radius: 40px;
  -webkit-box-shadow: 10px 18px 208.3px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 10px 18px 208.3px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .about-us .person-card .person-desc .desc {
    padding: 20px 24px;
  }
}
.about-us .person-card .person-desc .desc .title {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .about-us .person-card .person-desc .desc .title {
    font-size: 30px;
  }
}
.about-us .person-card .person-desc .desc .text {
  margin-bottom: 8px;
  font-size: 26px;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .about-us .person-card .person-desc .desc .text {
    font-size: 22px;
  }
}
.about-us .person-card .badge {
  font-size: 18px;
  padding: 6px 12px;
}
@media (max-width: 575px) {
  .about-us .person-card .badge {
    font-size: 14px;
    padding: 4px 12px;
  }
}
.about-us .person-card .seo-avatar-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .about-us .person-card .seo-avatar-title {
    font-size: 20px;
  }
}
.about-us .person-card .seo-avatar-title span {
  font-size: 24px;
  font-weight: 400;
  padding-left: 16px;
}
@media (max-width: 575px) {
  .about-us .person-card .seo-avatar-title span {
    font-size: 16px;
  }
}
.about-us .animation-t span {
  white-space: nowrap;
  font-weight: 500;
}

/* ---  */
/* Products Section */
.products .products-item:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .products .products-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.products .products-item {
  display: grid;
  gap: 30px;
  grid-template-columns: 5fr 4fr;
}
@media (max-width: 1199px) {
  .products .products-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.products .products-item .card-preview,
.products .products-item .card-details {
  min-height: 300px;
  padding: 35px;
}
@media (max-width: 575px) {
  .products .products-item .card-preview,
  .products .products-item .card-details {
    padding: 16px;
  }
}
.products .products-item .card-preview {
  overflow: hidden;
}
.products .products-item .card-preview .content-wrap .title,
.products .products-item .card-preview .content-wrap .d-flex {
  width: 65%;
}
.products .products-item .card-preview .category {
  font-size: 25px;
}
.products .products-item .card-preview .title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
.products .products-item .card-preview .title.title-card-1 {
  font-size: 42px;
}
@media (max-width: 575px) {
  .products .products-item .card-preview .title.title-card-1 {
    font-size: 36px;
  }
}
.products .products-item .card-preview .img-item-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
}
@media (max-width: 575px) {
  .products .products-item .card-preview .img-item-1 {
    display: none;
  }
}
.products .products-item .card-preview .img-item-2 {
  fill: #147AFF;
}
.products .products-item .card-preview .img-item-2,
.products .products-item .card-preview .img-item-3,
.products .products-item .card-preview .img-item-4 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 25px;
  height: 190px;
  aspect-ratio: 1/1;
}
@media (max-width: 575px) {
  .products .products-item .card-preview .img-item-2,
  .products .products-item .card-preview .img-item-3,
  .products .products-item .card-preview .img-item-4 {
    right: clamp(-2.5rem, -8.722rem + 28.44vw, 1.5rem);
    height: 160px;
  }
}
@media (max-width: 575px) {
  .products .products-item .card-preview .img-item-3.el-show {
    -webkit-transform: translate(0, 0) rotate(-13deg);
        -ms-transform: translate(0, 0) rotate(-13deg);
            transform: translate(0, 0) rotate(-13deg);
  }
}
.products .products-item .card-details .description {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.products .products-item .card-details .action-link {
  text-decoration: none;
}
.products .products-item .card-details .action-link:hover .icon-wrap-dark {
  color: #000;
  background-color: transparent;
}
.products .products-item .card-details .action-link:hover .icon-wrap-dark svg {
  fill: #101010;
}
.products .products-item .card-details .action-link:hover .icon-wrap-light {
  color: #fff;
  background-color: #101010;
}
.products .products-item .card-details .action-link:hover .icon-wrap-light svg {
  fill: #fff;
}
.products .products-item .card-details .action-link:hover .card-text {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 575px) {
  .products .products-item .card-preview,
  .products .products-item .card-details {
    min-height: 250px;
  }
  .products .products-item .card-preview .category {
    font-size: 16px;
  }
  .products .products-item .card-preview .title {
    font-size: 40px;
  }
  .products .products-item .card-details .description {
    font-size: 20px;
  }
  .products .products-item .card-details .action-link {
    font-size: 16px;
  }
}

/* ---  */
/* Projects Section  */
.projects .section-title span {
  background-color: #147AFF;
  color: #fff;
  padding: 0 8px;
  white-space: nowrap;
}
.projects .projects-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1199px) {
  .projects .projects-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.projects .projects-cards .title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .projects .projects-cards .title {
    font-size: 26px;
  }
}
.projects .projects-cards .text {
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 575px) {
  .projects .projects-cards .text {
    font-size: 16px;
  }
}
.projects .projects-cards .card-1,
.projects .projects-cards .card-2 {
  width: 100%;
  height: auto;
  padding-bottom: 32%;
}
.projects .projects-cards .card-1 > div,
.projects .projects-cards .card-2 > div {
  z-index: 2;
}
.projects .projects-cards .card-1 img,
.projects .projects-cards .card-2 img {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.projects .projects-cards .card-1 svg,
.projects .projects-cards .card-2 svg {
  width: 35px;
  height: 35px;
  margin-bottom: 6px;
}
@media (max-width: 575px) {
  .projects .projects-cards .card-1 svg,
  .projects .projects-cards .card-2 svg {
    height: 26px;
  }
}
.projects .projects-cards .card-1 svg {
  fill: #147AFF;
}
.projects .projects-cards .card-2 svg {
  fill: red;
}

/* ---  */
/* Testimonials Section */
.testimonials .carousel-inner {
  gap: 50px;
}
.testimonials .carousel-item .avatar {
  width: 45px;
  height: 45px;
}
@media (max-width: 575px) {
  .testimonials .carousel-item .avatar {
    width: 35px;
    height: 35px;
  }
}
.testimonials .carousel-item .avatar-name {
  font-size: 24px;
}
@media (max-width: 575px) {
  .testimonials .carousel-item .avatar-name {
    font-size: 20px;
  }
}
.testimonials .carousel-item .text {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1199px) {
  .testimonials .carousel-item .text {
    font-size: 20px;
  }
}

/* ---  */
/* Contact Form Section */
.contact-area.page-start .section-title {
  letter-spacing: -0.48px;
}
.contact-area .contact-area-wrap {
  position: relative;
  background-color: #101010;
  padding: 60px;
}
.contact-area .contact-area-wrap .title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .contact-area .contact-area-wrap {
    padding: 16px;
  }
  .contact-area .contact-area-wrap .title {
    font-size: 32px;
    margin-bottom: 25px;
    letter-spacing: -0.48px;
  }
}
.contact-area .form-check-input,
.contact-area .form-control {
  background-color: #575757;
  border: none;
}
.contact-area .form-check-input::-webkit-input-placeholder, .contact-area .form-control::-webkit-input-placeholder {
  color: #fff;
}
.contact-area .form-check-input::-moz-placeholder, .contact-area .form-control::-moz-placeholder {
  color: #fff;
}
.contact-area .form-check-input:-ms-input-placeholder, .contact-area .form-control:-ms-input-placeholder {
  color: #fff;
}
.contact-area .form-check-input::-ms-input-placeholder, .contact-area .form-control::-ms-input-placeholder {
  color: #fff;
}
.contact-area .form-check-input::placeholder,
.contact-area .form-control::placeholder {
  color: #fff;
}
.contact-area .form-check-input.input-error-bg,
.contact-area .form-control.input-error-bg {
  background-color: #6B3E3E;
  color: #fff;
  -webkit-text-fill-color: #fff !important;
}
.contact-area .form-check-input:-webkit-autofill, .contact-area .form-check-input:-webkit-autofill:focus,
.contact-area .form-control:-webkit-autofill,
.contact-area .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #575757 inset !important;
          box-shadow: 0 0 0 1000px #575757 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: auto;
}
.contact-area .form-check-input {
  margin-top: 2px;
}
@media (max-width: 575px) {
  .contact-area .form-check-label {
    font-size: 12px;
  }
}
.contact-area .btn {
  padding: 10px 32px;
}
@media (max-width: 575px) {
  .contact-area .btn {
    padding: 6px 25px;
  }
}
.contact-area .btn .chevron-right {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .contact-area .message-wrap {
    min-height: 30px;
    margin-top: 6px;
    text-align: center;
  }
}
.contact-area .message-wrap .message-success {
  color: #fff;
  font-size: 22px;
}
@media (max-width: 575px) {
  .contact-area .message-wrap .message-success {
    font-size: 15px;
    text-align: center;
  }
}
.contact-area .message-wrap .message-success span {
  color: #147AFF;
}
.contact-area .message-wrap .message-error {
  text-align: start;
  line-height: 1;
}
@media (max-width: 991px) {
  .contact-area .message-wrap .message-error {
    text-align: center;
  }
}
.contact-area .message-wrap .message-error .title,
.contact-area .message-wrap .message-error .text {
  color: #fff;
}
.contact-area .message-wrap .message-error .title span,
.contact-area .message-wrap .message-error .text span {
  color: #DB2626;
}
.contact-area .message-wrap .message-error .title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .contact-area .message-wrap .message-error .title {
    font-size: 15px;
  }
}
.contact-area .message-wrap .message-error .text {
  font-size: 16px;
}
@media (max-width: 575px) {
  .contact-area .message-wrap .message-error .text {
    font-size: 13px;
  }
}
.contact-area .message-wrap .message-success,
.contact-area .message-wrap .message-error {
  opacity: 0;
  height: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-area .message-wrap .message-success.show,
.contact-area .message-wrap .message-error.show {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.contact-area .contact-area-logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 475px;
  width: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 1199px) {
  .contact-area .contact-area-logo-wrap {
    display: none;
  }
}
.contact-area .contact-area-logo-wrap .video {
  width: 100%;
  height: 100%;
}
.contact-area .contact-area-logo-wrap .video.dep-space {
  fill: #fff;
}
.contact-area .contact-area-logo-wrap .img {
  width: 70%;
  aspect-ratio: 1;
  fill: #fff;
}
.contact-area .contact-area-start {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1/1;
}

/* ---  */
/* Footer Styles */
.footer {
  background-color: #101010;
}
.footer .section-title,
.footer .section-text {
  color: #fff;
}
.footer .footer-nav .nav-item {
  list-style: none;
}
.footer .footer-nav .nav-link {
  color: #fff;
  font-size: 20px;
}
.footer .social-item {
  width: 50px;
  height: 50px;
  background-color: #212121;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.footer .social-item:hover {
  background-color: #fff;
}
.footer .social-item:hover svg {
  fill: #212121;
}
.footer .social-item svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer .client-wrap {
  gap: 44px;
}
.footer .client-wrap .client-item img {
  height: 65px;
  width: auto;
}
@media (max-width: 575px) {
  .footer .client-wrap {
    gap: 20px;
  }
  .footer .client-wrap .client-item img {
    max-height: 43px;
  }
}
@media (max-width: 575px) {
  .footer .section-title {
    font-size: 25px;
  }
  .footer .section-text {
    font-size: 15px;
  }
}

/* Page start  */
/* Course Details Section  */
.course-details .details-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .course-details .details-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .course-details .details-card-1,
  .course-details .details-card-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.course-details .details-card-1 .card-body,
.course-details .details-card-2 .card-body {
  padding: 32px;
}
@media (max-width: 575px) {
  .course-details .details-card-1 .card-body,
  .course-details .details-card-2 .card-body {
    padding: 16px;
  }
}
.course-details .details-card-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}
.course-details .details-card-1 h2.title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .course-details .details-card-1 h2.title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .course-details .details-card-1 .details-free {
    font-size: 16px;
  }
}
.course-details .details-card-1 .category {
  font-size: 18px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .course-details .details-card-1 .category {
    margin-bottom: 20px;
  }
}
.course-details .details-card-1 .price {
  width: 25px;
  height: 25px;
}
@media (max-width: 575px) {
  .course-details .details-card-1 .price {
    width: 18px;
    height: 18px;
  }
}
.course-details .details-card-1 .description {
  font-size: 24px;
  line-height: 1;
  width: 60%;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .course-details .details-card-1 .description {
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.course-details .details-card-1 .details-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
}
@media (max-width: 575px) {
  .course-details .details-card-1 .details-img {
    display: none;
  }
}
@media (max-width: 1199px) {
  .course-details .details-card-1 .card-body {
    min-height: 400px;
  }
}
@media (max-width: 575px) {
  .course-details .details-card-1 .card-body {
    min-height: auto;
  }
}
.course-details .details-card-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
  line-height: 1;
}
.course-details .details-card-2 .details-card-grid {
  display: grid;
  gap: 25px;
  grid-auto-rows: 125px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .course-details .details-card-2 .details-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.course-details .details-card-2 .grid-item-1,
.course-details .details-card-2 .grid-item-4 {
  grid-column: 1/-1;
}
@media (max-width: 575px) {
  .course-details .details-card-2 .grid-item-2 .number {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
.course-details .details-card-2 .big-number {
  font-size: 35px;
}

/* ---  */
/* Course Benefits Section  */
.course-benefits .benefits-title {
  display: inline-block;
  padding: 20px;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -0.48px;
  background-color: #F4F4F4;
}
@media (max-width: 1199px) {
  .course-benefits .benefits-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .course-benefits .benefits-title {
    padding: 15px;
    font-size: 24px;
  }
}
.course-benefits .section-title {
  line-height: 1;
  letter-spacing: -0.48px;
}
.course-benefits .section-text {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 575px) {
  .course-benefits .section-text {
    font-size: 24px;
  }
}
.course-benefits .benefits-grid {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .course-benefits .benefits-grid {
    grid-template-columns: auto auto;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .course-benefits .benefits-grid {
    grid-template-columns: auto;
  }
}
.course-benefits .benefits-grid .benefits-icon {
  width: 40px;
  height: 40px;
  fill: #000;
}
@media (max-width: 575px) {
  .course-benefits .benefits-grid .benefits-icon {
    width: 25px;
    height: 25px;
  }
}
.course-benefits .benefits-grid .text {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .course-benefits .benefits-grid .text {
    font-size: 20px;
  }
}
.course-benefits .benefits-value {
  font-size: 80px;
}
@media (max-width: 1199px) {
  .course-benefits .benefits-value {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .course-benefits .benefits-value {
    font-size: 40px;
  }
}
.course-benefits .benefits-forever {
  font-weight: 400;
}
@media (max-width: 575px) {
  .course-benefits .benefits-forever {
    font-size: 22px;
  }
}

/* ---  */
/* Target Audience Section */
.target-audience .audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 170px;
  gap: 25px;
  grid-template-areas: "item-1 item-1 item-2 item-2 item-3" "item-4 item-4 item-4 item-4 item-3" "item-5 item-5 item-6 item-6 item-6";
}
.target-audience .audience-grid .item-1 {
  grid-area: item-1;
}
.target-audience .audience-grid .item-2 {
  grid-area: item-2;
}
.target-audience .audience-grid .item-3 {
  grid-area: item-3;
  font-size: 100px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .target-audience .audience-grid .item-3 {
    font-size: 60px;
  }
}
.target-audience .audience-grid .item-4 {
  grid-area: item-4;
  background-color: #F4F4F4;
  color: #101010;
}
@media (max-width: 991px) {
  .target-audience .audience-grid .item-4 {
    background-color: #101010;
  }
  .target-audience .audience-grid .item-4 .title,
  .target-audience .audience-grid .item-4 .number {
    color: #fff;
  }
}
.target-audience .audience-grid .item-5 {
  grid-area: item-5;
  background-color: #101010;
}
.target-audience .audience-grid .item-5 .title,
.target-audience .audience-grid .item-5 .number {
  color: #fff;
}
@media (max-width: 991px) {
  .target-audience .audience-grid .item-5 {
    background-color: #F4F4F4;
  }
  .target-audience .audience-grid .item-5 .title,
  .target-audience .audience-grid .item-5 .number {
    color: #101010;
  }
}
.target-audience .audience-grid .item-6 {
  grid-area: item-6;
}
@media (max-width: 991px) {
  .target-audience .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "item-1 item-1 item-3" "item-2 item-2 item-2" "item-4 item-4 item-5" "item-4 item-4 item-5" "item-6 item-6 item-6";
  }
}
@media (max-width: 575px) {
  .target-audience .audience-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 155px;
    gap: 16px;
    grid-template-areas: "item-1" "item-2" "item-3" "item-4" "item-5" "item-6";
  }
}
.target-audience .audience-grid .card-body-mini .title {
  font-size: 28px;
}
@media (max-width: 575px) {
  .target-audience .audience-grid .card-body-mini .title {
    font-size: 22px;
  }
}

/* ---  */
/* Page d-space  */
/* Course Features Section */
.course-features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 25px;
  grid-template-areas: "item-1 item-2 item-2 item-3" "item-4 item-4 item-5 item-5";
}
@media (max-width: 1199px) {
  .course-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item-1 item-2" "item-3 item-3" "item-4 item-5";
  }
}
@media (max-width: 575px) {
  .course-features .features-grid {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "item-1" "item-2" "item-3" "item-4" "item-5";
  }
}
.course-features .features-grid .item-1 {
  grid-area: item-1;
}
.course-features .features-grid .item-1 .youtube {
  width: 40px;
  height: 40px;
  fill: #fff;
}
.course-features .features-grid .item-2 {
  grid-area: item-2;
}
.course-features .features-grid .item-2 .features-live {
  font-size: 20px;
  padding: 4px 15px;
  background-color: #ED3131;
}
.course-features .features-grid .item-2 .live-rounded {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 50%;
}
.course-features .features-grid .item-3 {
  grid-area: item-3;
}
.course-features .features-grid .item-4 {
  position: relative;
  overflow: hidden;
  grid-area: item-4;
}
.course-features .features-grid .item-4 .title,
.course-features .features-grid .item-4 .d-flex {
  position: relative;
  z-index: 2;
}
.course-features .features-grid .item-5 {
  position: relative;
  overflow: hidden;
  grid-area: item-5;
}
.course-features .features-grid .item-5 .title,
.course-features .features-grid .item-5 .d-flex {
  position: relative;
  z-index: 2;
}
.course-features .features-grid .item-4 .img,
.course-features .features-grid .item-5 .img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .course-features .features-grid .item-4 .img,
  .course-features .features-grid .item-5 .img {
    height: 65%;
  }
}
@media (max-width: 991px) {
  .course-features .features-grid .item-4 .img,
  .course-features .features-grid .item-5 .img {
    height: 60%;
  }
}
.course-features .features-grid .card-body-mini .title {
  font-size: 28px;
}
@media (max-width: 575px) {
  .course-features .features-grid .card-body-mini .title {
    font-size: 26px;
  }
}

/* ---  */
/* Levels of Education Section */
.levels-of-education .education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 1199px) {
  .levels-of-education .education-grid {
    grid-template-columns: 1fr;
  }
}
.levels-of-education .education-grid .card-1 {
  background-color: #EDF4FF;
}
.levels-of-education .education-grid .card-2 {
  background-color: #FFF5E3;
}
.levels-of-education .education-grid .circle-1,
.levels-of-education .education-grid .circle-2 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.levels-of-education .education-grid .circle-1 {
  background-color: #3586FF;
}
.levels-of-education .education-grid .circle-2 {
  background-color: #FFB835;
}
.levels-of-education .education-grid .title {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .levels-of-education .education-grid .title {
    font-size: 36px;
  }
}
.levels-of-education .education-grid .term-info {
  font-size: 22px;
  font-weight: 600;
}
.levels-of-education .education-grid .period-tag {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .levels-of-education .education-grid .period-tag {
    font-size: 16px;
  }
}
.levels-of-education .education-grid .text {
  font-size: 25px;
}
@media (max-width: 575px) {
  .levels-of-education .education-grid .text {
    font-size: 20px;
  }
}
.levels-of-education .education-grid .price {
  width: 27px;
  height: 27px;
}

/* ---  */
/* Format of Learning Section */
.format-of-learning .learning-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .format-of-learning .learning-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .format-of-learning .learning-grid .card-1,
  .format-of-learning .learning-grid .card-2,
  .format-of-learning .learning-grid .card-3 {
    max-width: 350px;
    width: 100%;
  }
  .format-of-learning .learning-grid .card-1 {
    justify-self: start;
  }
  .format-of-learning .learning-grid .card-2 {
    justify-self: center;
  }
  .format-of-learning .learning-grid .card-3 {
    justify-self: end;
  }
}
@media (max-width: 575px) {
  .format-of-learning .learning-grid {
    background-image: none;
  }
}
.format-of-learning .learning-grid .img-wrap {
  padding: 16px;
  margin-bottom: 16px;
  height: 200px;
}
.format-of-learning .learning-grid .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.format-of-learning .learning-grid .learning-say {
  padding: 15px 25px;
  font-size: 25px;
  border: 2px solid #000;
  border-radius: 50rem;
}
@media (max-width: 1199px) {
  .format-of-learning .learning-grid .learning-say {
    padding: 15px 15px;
    font-size: 20px;
  }
}

/* ---  */
/* Duration Section  */
.duration .calendar {
  width: 60px;
  height: 60px;
}
@media (max-width: 575px) {
  .duration .calendar {
    width: 40px;
    height: 40px;
  }
}
.duration .description-bold {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .duration .description-bold {
    font-size: 24px;
  }
}
.duration .description-light {
  font-size: 24px;
}
@media (max-width: 575px) {
  .duration .description-light {
    font-size: 18px;
  }
}

/* ---  */
/* Target Audience Section  */
.audience-list .audience-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1199px) {
  .audience-list .audience-grid {
    grid-template-columns: 1fr;
  }
}
.audience-list .audience-grid .card-1,
.audience-list .audience-grid .card-2,
.audience-list .audience-grid .card-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 1199px) {
  .audience-list .audience-grid .card-1,
  .audience-list .audience-grid .card-2,
  .audience-list .audience-grid .card-3 {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .audience-list .audience-grid .card-1,
  .audience-list .audience-grid .card-2,
  .audience-list .audience-grid .card-3 {
    grid-template-columns: 1fr;
  }
}
.audience-list .audience-grid .card-1 .img-wrap,
.audience-list .audience-grid .card-2 .img-wrap,
.audience-list .audience-grid .card-3 .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 190px;
  margin-bottom: 16px;
}
.audience-list .audience-grid .card-1 .img-wrap img,
.audience-list .audience-grid .card-2 .img-wrap img,
.audience-list .audience-grid .card-3 .img-wrap img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.audience-list .audience-grid .card-2 .img-text {
  font-size: 22px;
}
.audience-list .audience-grid .card-2 .close {
  width: 15px;
  height: 15px;
  fill: #ED3131;
}

/* ---  */
/* Course Program Section */
.course-program .card-wrap {
  gap: 30px;
}
@media (max-width: 575px) {
  .course-program .card-wrap {
    gap: 16px;
  }
}
.course-program .program-card .program-card-content,
.course-program .program-card .program-card-img {
  min-height: 350px;
  width: 50%;
}
@media (max-width: 991px) {
  .course-program .program-card .program-card-content,
  .course-program .program-card .program-card-img {
    min-height: 300px;
    width: 100%;
    border: 1px solid #101010;
  }
}
@media (max-width: 575px) {
  .course-program .program-card .program-card-content,
  .course-program .program-card .program-card-img {
    min-height: auto;
  }
}
.course-program .program-card .program-card-content .program-title,
.course-program .program-card .program-card-img .program-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .course-program .program-card .program-card-content .program-title,
  .course-program .program-card .program-card-img .program-title {
    font-size: 24px;
  }
}
.course-program .program-card .program-card-content .program-text,
.course-program .program-card .program-card-img .program-text {
  font-size: 20px;
  font-weight: 500;
  opacity: 50%;
}
@media (max-width: 575px) {
  .course-program .program-card .program-card-content .program-text,
  .course-program .program-card .program-card-img .program-text {
    font-size: 18px;
  }
}

/* ---  */
/* Page D-Closed */
/* Features Section */
.edu-features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 30px;
  grid-template-areas: "item-1 item-1 item-2 item-2" "item-3 item-4 item-5 item-5";
}
@media (max-width: 1199px) {
  .edu-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item-1 item-2" "item-3 item-3" "item-4 item-5";
  }
}
@media (max-width: 575px) {
  .edu-features .features-grid {
    grid-auto-rows: 140px;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "item-1" "item-2" "item-3" "item-4" "item-5";
  }
}
.edu-features .card-1 {
  grid-area: item-1;
}
.edu-features .card-2 {
  grid-area: item-2;
}
.edu-features .card-3 {
  grid-area: item-3;
}
.edu-features .card-4 {
  grid-area: item-4;
}
.edu-features .card-5 {
  grid-area: item-5;
}
.edu-features .card-1,
.edu-features .card-2,
.edu-features .card-3,
.edu-features .card-4,
.edu-features .card-5 {
  position: relative;
  overflow: hidden;
}
.edu-features .card-1 .title,
.edu-features .card-1 .number,
.edu-features .card-2 .title,
.edu-features .card-2 .number,
.edu-features .card-3 .title,
.edu-features .card-3 .number,
.edu-features .card-4 .title,
.edu-features .card-4 .number,
.edu-features .card-5 .title,
.edu-features .card-5 .number {
  position: relative;
  z-index: 2;
}
.edu-features .card-1 .img,
.edu-features .card-2 .img,
.edu-features .card-3 .img,
.edu-features .card-4 .img,
.edu-features .card-5 .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .edu-features .card-1 .img,
  .edu-features .card-2 .img,
  .edu-features .card-3 .img,
  .edu-features .card-4 .img,
  .edu-features .card-5 .img {
    height: 70%;
  }
}
@media (max-width: 991px) {
  .edu-features .card-1 .img,
  .edu-features .card-2 .img,
  .edu-features .card-3 .img,
  .edu-features .card-4 .img,
  .edu-features .card-5 .img {
    height: 50%;
  }
}
@media (max-width: 575px) {
  .edu-features .card-1 .img,
  .edu-features .card-2 .img,
  .edu-features .card-3 .img,
  .edu-features .card-4 .img,
  .edu-features .card-5 .img {
    display: none;
  }
}
.edu-features .card-body-mini .title {
  font-size: 30px;
}
@media (max-width: 575px) {
  .edu-features .card-body-mini .title {
    font-size: 25px;
  }
}
.edu-features .card-body-mini .title .title-big {
  font-size: 40px;
}
@media (max-width: 575px) {
  .edu-features .card-body-mini .title .title-big {
    font-size: 35px;
  }
}

/* ---  */
/* Statistics Section */
.statistics .statistics-card {
  padding: 50px;
}
.statistics .statistics-card .img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 80%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .statistics .statistics-card .img {
    height: 65%;
  }
}
@media (max-width: 991px) {
  .statistics .statistics-card .img {
    display: none;
  }
}
.statistics .statistics-card .title {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 575px) {
  .statistics .statistics-card .title {
    font-size: 30px;
  }
}
.statistics .statistics-card .text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  width: 50%;
}
@media (max-width: 991px) {
  .statistics .statistics-card .text {
    width: 100%;
  }
}
.statistics .statistics-card .tagline {
  padding-bottom: 7px;
  color: #484848;
  font-size: 20px;
}
.statistics .statistics-card .btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 16px 8px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .statistics .statistics-card .btn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.statistics .statistics-card .btn {
  font-size: 20px;
  line-height: 1;
  padding: 8px 40px;
  background-color: #333333;
  text-decoration: none;
}
.statistics .statistics-card .btn:hover {
  background-color: #252525;
}
@media (max-width: 991px) {
  .statistics .statistics-card .btn {
    font-size: 16px;
    padding: 8px 35px;
  }
}

/* ---  */
/* Pricing Section */
.pricing .pricing-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991px) {
  .pricing .pricing-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pricing .pricing-item-1,
.pricing .pricing-item-2,
.pricing .pricing-item-3 {
  max-width: 370px;
  width: 100%;
}
.pricing .pricing-item-1 .card-body,
.pricing .pricing-item-2 .card-body,
.pricing .pricing-item-3 .card-body {
  height: 300px;
}
@media (max-width: 991px) {
  .pricing .pricing-item-1 .card-body,
  .pricing .pricing-item-2 .card-body,
  .pricing .pricing-item-3 .card-body {
    height: 230px;
  }
}
.pricing .pricing-item-1 .title,
.pricing .pricing-item-2 .title,
.pricing .pricing-item-3 .title {
  padding: 7px 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.48px;
}
.pricing .pricing-item-1 .pricing,
.pricing .pricing-item-2 .pricing,
.pricing .pricing-item-3 .pricing {
  font-size: 55px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .pricing .pricing-item-1 .pricing,
  .pricing .pricing-item-2 .pricing,
  .pricing .pricing-item-3 .pricing {
    font-size: 50px;
  }
}
.pricing .pricing-item-1 .month,
.pricing .pricing-item-2 .month,
.pricing .pricing-item-3 .month {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .pricing .pricing-item-1 .month,
  .pricing .pricing-item-2 .month,
  .pricing .pricing-item-3 .month {
    display: block;
  }
}
@media (max-width: 991px) {
  .pricing .pricing-item-1 .month,
  .pricing .pricing-item-2 .month,
  .pricing .pricing-item-3 .month {
    display: inline-block;
  }
}
.pricing .pricing-item-2 {
  border: 2px solid #000;
}
@media (max-width: 991px) {
  .pricing .pricing-item-2 {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (max-width: 991px) {
  .pricing .pricing-item-3 {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
.pricing .btn-pricing {
  font-size: 24px;
  font-weight: 500;
  padding: 8px 50px;
  background-color: #fff;
  border: 2px solid #101010;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.pricing .btn-pricing:hover {
  background-color: #101010;
  color: #fff;
}
@media (max-width: 575px) {
  .pricing .btn-pricing {
    padding: 2px 50px;
  }
}

/* ---  */
/* Results Section */
.results .results-flex {
  gap: 40px;
}
@media (max-width: 991px) {
  .results .results-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.results .results-card {
  max-width: 550px;
  width: 100%;
}
.results .title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .results .title {
    font-size: 24px;
  }
}
.results .results-closed {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -70px;
  width: 55px;
  height: 55px;
}
@media (max-width: 575px) {
  .results .results-closed {
    display: none;
  }
}

/* ---  */
/* Target Audience Section */
.group-for .group-for-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1199px) {
  .group-for .group-for-grid {
    grid-template-columns: 1fr;
  }
}
.group-for .group-for-grid .card-1,
.group-for .group-for-grid .card-2,
.group-for .group-for-grid .card-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 1199px) {
  .group-for .group-for-grid .card-1,
  .group-for .group-for-grid .card-2,
  .group-for .group-for-grid .card-3 {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .group-for .group-for-grid .card-1,
  .group-for .group-for-grid .card-2,
  .group-for .group-for-grid .card-3 {
    grid-template-columns: 1fr;
  }
}
.group-for .group-for-grid .card-1 .img-wrap,
.group-for .group-for-grid .card-2 .img-wrap,
.group-for .group-for-grid .card-3 .img-wrap {
  padding: 20px;
  height: 220px;
}
@media (max-width: 575px) {
  .group-for .group-for-grid .card-1 .img-wrap,
  .group-for .group-for-grid .card-2 .img-wrap,
  .group-for .group-for-grid .card-3 .img-wrap {
    height: 180px;
  }
}
.group-for .group-for-grid .card-1 .img-wrap img,
.group-for .group-for-grid .card-2 .img-wrap img,
.group-for .group-for-grid .card-3 .img-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---  */
.dept-about-us .section-title {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .dept-about-us .section-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .dept-about-us .section-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.dept-about-us .section-text {
  font-weight: 500;
}
@media (max-width: 1199px) {
  .dept-about-us .section-text {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .dept-about-us .section-text {
    font-size: 18px;
  }
}
.dept-about-us.animation-t div {
  display: inline;
  white-space: nowrap;
}

/* Page Dept-exchange  */
.offer .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .offer .offer-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.offer .offer-card {
  display: grid;
  grid-template-rows: 200px 1fr;
  height: 344px;
}
@media (max-width: 1199px) {
  .offer .offer-card {
    grid-template-rows: 160px 1fr;
    height: 325px;
  }
}
@media (max-width: 991px) {
  .offer .offer-card {
    height: auto;
  }
}
.offer .offer-img-1 img {
  height: 100%;
}
.offer .offer-img-2 {
  height: 150px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .offer .offer-img-2 {
    height: 130px;
  }
}
.offer .offer-img-2 video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer .offer-img-2-2 {
  height: 80px;
}
.offer .offer-img-2-2 img {
  width: 100%;
}
.offer .offer-img-3 video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .offer .offer-img-3 video {
    scale: 1.4;
  }
}

/* ---  */
/* Integration Section  */
.integration .integration-grid {
  display: grid;
  grid-auto-rows: 370px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1199px) {
  .integration .integration-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .integration .integration-grid .card-2 {
    display: none;
  }
}
.integration .integration-grid .card-title {
  line-height: 1;
  letter-spacing: -0.48px;
}
.integration .integration-grid .btn {
  margin-top: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.integration .telegram {
  margin: 0 5px;
  fill: #a9a9a9;
  width: 60px;
  height: 60px;
}
@media (max-width: 575px) {
  .integration .telegram {
    width: 30px;
    height: 30px;
  }
}

/* ---  */
.animation-b {
  opacity: 0;
  -webkit-transform: translateY(80px);
      -ms-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.animation-b-light {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.animation-r {
  opacity: 0;
  -webkit-transform: translateX(80px);
      -ms-transform: translateX(80px);
          transform: translateX(80px);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
@media (max-width: 575px) {
  .animation-r {
    -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
            transform: translateX(20px);
  }
}

.el-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.word span {
  display: inline-block;
  -webkit-animation: letter 0.2s forwards;
          animation: letter 0.2s forwards;
}

@-webkit-keyframes letter {
  0% {
    color: #989898;
  }
  100% {
    color: black;
  }
}

@keyframes letter {
  0% {
    color: #989898;
  }
  100% {
    color: black;
  }
}/*# sourceMappingURL=styles.css.map */