.section {
  padding: 62px 0;
}

* {
  font-family: "Poppins", sans-serif;
}

.dropdown-menu {
  top: 60%;
}

.dropdown-menu li {
  margin-left: unset !important;
}

.loader {
  --background: linear-gradient(135deg, #23C4F8, #275EFE);
  --shadow: rgba(39, 94, 254, 0.28);
  --text: #6C7486;
  --page: rgba(255, 255, 255, 0.36);
  --page-fold: rgba(255, 255, 255, 0.52);
  --duration: 3s;
  width: 200px;
  height: 140px;
  position: relative;
}

.loader:before,
.loader:after {
  --r: -6deg;
  content: "";
  position: absolute;
  bottom: 8px;
  width: 120px;
  top: 80%;
  -webkit-box-shadow: 0 16px 12px var(--shadow);
          box-shadow: 0 16px 12px var(--shadow);
  -webkit-transform: rotate(var(--r));
          transform: rotate(var(--r));
}

.loader:before {
  left: 4px;
}

.loader:after {
  --r: 6deg;
  right: 4px;
}

.loader div {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  position: relative;
  z-index: 1;
  -webkit-perspective: 600px;
          perspective: 600px;
  -webkit-box-shadow: 0 4px 6px var(--shadow);
          box-shadow: 0 4px 6px var(--shadow);
  background-image: var(--background);
}

.loader div ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.loader div ul li {
  --r: 180deg;
  --o: 0;
  --c: var(--page);
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  color: var(--c);
  opacity: var(--o);
  -webkit-transform: rotateY(var(--r));
          transform: rotateY(var(--r));
  -webkit-animation: var(--duration) ease infinite;
  animation: var(--duration) ease infinite;
}

.loader div ul li:nth-child(2) {
  --c: var(--page-fold);
  -webkit-animation-name: page-2;
  animation-name: page-2;
}

.loader div ul li:nth-child(3) {
  --c: var(--page-fold);
  -webkit-animation-name: page-3;
  animation-name: page-3;
}

.loader div ul li:nth-child(4) {
  --c: var(--page-fold);
  -webkit-animation-name: page-4;
  animation-name: page-4;
}

.loader div ul li:nth-child(5) {
  --c: var(--page-fold);
  -webkit-animation-name: page-5;
  animation-name: page-5;
}

.loader div ul li svg {
  width: 90px;
  height: 120px;
  display: block;
}

.loader div ul li:first-child {
  --r: 0deg;
  --o: 1;
}

.loader div ul li:last-child {
  --o: 1;
}

.loader span {
  display: block;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 20px;
  text-align: center;
  color: var(--text);
}

@-webkit-keyframes page-2 {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  35%,
  100% {
    opacity: 0;
  }
  50%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes page-2 {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  35%,
  100% {
    opacity: 0;
  }
  50%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@-webkit-keyframes page-3 {
  15% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
  65%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes page-3 {
  15% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
  65%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@-webkit-keyframes page-4 {
  30% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65%,
  100% {
    opacity: 0;
  }
  80%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes page-4 {
  30% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65%,
  100% {
    opacity: 0;
  }
  80%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@-webkit-keyframes page-5 {
  45% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
  95%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes page-5 {
  45% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
  95%,
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.loading {
  min-height: 100vh;
  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;
  font-family: "Roboto", Arial;
}

.after-load {
  display: none;
}

.header-desc-section {
  background-color: #931407;
  padding: 10px 0;
  color: black;
}

.header-desc-section .row {
  font-family: "Poppins", sans-serif;
}

.header-desc-section .phone {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header-desc-section .email {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffab1f;
}

.navbar {
  padding: 10px 0;
}

.navbar img {
  height: 80px;
}

.navbar .navbar-collapse {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}

.navbar .appointmentBtn {
  background-color: #c2162c;
  color: white;
  font-family: "Poppins", sans-serif;
  margin-left: 20px;
  border-radius: 4px;
  border: unset;
}

.navbar .collapse ul li {
  margin-left: 20px;
}

.navbar .collapse ul li a {
  font-family: "Poppins", sans-serif;
  color: #666;
}

.carousel img {
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel .carousel-inner {
  position: relative;
}

.carousel .slider-desc {
  width: 100%;
  position: absolute;
  top: 15%;
  left: 0%;
}

.carousel p {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.carousel .big-txt {
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: #2c3f69;
}

.carousel .desc-txt {
  line-height: 1.35;
  font-weight: bold;
  letter-spacing: -0.5px;
  padding-right: 5%;
  margin-bottom: 0;
  width: 50%;
  font-size: 1.875rem;
  font-family: "Poppins", sans-serif;
}

.slider-feature-section {
  margin-top: -120px;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  padding: 50px 15px;
  -webkit-filter: drop-shadow(9.205px 3.907px 25px rgba(0, 1, 1, 0.12));
          filter: drop-shadow(9.205px 3.907px 25px rgba(0, 1, 1, 0.12));
  border-radius: 4px;
}

.slider-feature-section .slider-feature-width {
  padding: 0px 40px;
}

.slider-feature-section .title {
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
}

.slider-feature-section .desc {
  color: #757575;
  margin-bottom: 0;
  font-size: 1.05rem;
  margin-top: 0px;
}

.slider-feature-section i {
  color: #c2162c;
  font-size: 65px;
}

.about-section .image-section {
  text-align: center;
}

.about-section .sub-title {
  color: #aaa;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.about-section .header {
  line-height: 1.1;
  margin-bottom: 20px;
  font-size: 2.75rem;
  color: #2c3f69;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-family: "Poppins", sans-serif;
}

.about-section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333;
  font-weight: 300;
}

.service-section {
  background-color: #f8f9fb;
}

.service-section .title {
  font-size: 3.25rem;
  line-height: 1;
  margin-bottom: 0;
  color: #2c3f69;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.service-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.service-section .content {
  margin-top: 30px;
}

.service-section .content .card {
  width: 33%;
  border: 1px solid #ddd;
  padding: 35px 30px 45px;
}

.service-section .content .card .card-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.service-section .content .card .card-desc {
  font-size: 0.95rem;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
}

.service-section .content .card .card-btn {
  color: #aaa;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.service-section .content .card:hover {
  background-color: #2c3f69;
  color: white;
}

.oversea-section {
  background-image: url(../images/immagration.jpg);
  background-attachment: fixed;
}

.oversea-section .image-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.oversea-section img {
  width: 60%;
}

.oversea-section .sub-header {
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: #2c3f69;
}

.oversea-section .header {
  color: "Poppins", sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  font-size: 3.25rem;
  font-family: "Poppins", sans-serif;
}

.oversea-section p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #2c3f69;
  font-family: "Poppins", sans-serif;
  width: 75%;
}

.oversea-section .country p {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-family: "Poppins", sans-serif;
  color: #2c3f69;
}

.oversea-section .country .flags {
  padding-bottom: 62px;
}

.oversea-section .country .flags img {
  width: 61px;
  height: 40px;
  margin-right: 20px;
}

.partner-section {
  background-color: #f8f9fb;
}

.partner-section .title {
  font-size: 3.25rem;
  line-height: 1;
  margin-bottom: 0;
  color: #2c3f69;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.partner-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.partner-section .partners {
  margin-top: 50px;
  text-align: center;
}

.partner-section .partners img {
  width: 200px;
  margin-right: 20px;
}

.testimonials-section {
  background-image: url(../images/testomonial.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  width: 100%;
}

.testimonials-section .title {
  line-height: 1;
  margin-bottom: 0;
  font-size: 3.25rem;
  color: #2c3f69;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-top: 62px;
}

.testimonials-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.testimonials-section .testimonials {
  padding: 100px 0;
}

.testimonials-section .testimonials .card-text {
  font-family: "Poppins", sans-serif;
}

.testimonials-section .testimonials h3 {
  margin-bottom: 20px;
}

.testimonials-section .testimonials .card {
  border-bottom: 3px #fbb232 solid !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 60px;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  -webkit-filter: drop-shadow(9.205px 3.907px 25px rgba(0, 1, 1, 0.12));
          filter: drop-shadow(9.205px 3.907px 25px rgba(0, 1, 1, 0.12));
}

.testimonials-section .testimonials .card i {
  background-color: #fbb232;
  color: #ffffff;
  width: 75px;
  height: 75px;
  line-height: 75px;
  margin: -40px auto 0 auto;
  font-size: 40px;
}

.speciality-section .gov {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  color: #ccc;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.speciality-section .cost {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  color: #ccc;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.speciality-section .secure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  color: #ccc;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.speciality-section .active {
  color: #c2162c;
  border-bottom: 2px solid #c2162c;
}

.speciality-section .sub-title {
  color: #aaa;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.speciality-section .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #2c3f69;
  font-size: 2.75rem;
}

.speciality-section p {
  font-size: 1.05rem;
  font-weight: 300;
}

.footer-section {
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-section .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}

.footer-section .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.footer-section .item i {
  color: #c2162c;
  margin-right: 5px;
}

.footer-section .item .info {
  color: white;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .row {
    --bs-gutter-x: 0rem;
  }
  .navbar .collapse ul li {
    margin-left: unset;
  }
  .navbar .collapse ul .appointmentBtn {
    margin-left: unset;
  }
  .header-desc-section .feature {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .carousel .slider-desc p {
    font-size: 3rem;
  }
  .carousel .slider-desc .big-txt {
    font-size: 4rem;
  }
  .carousel .slider-desc .desc-txt {
    width: 90%;
    font-size: 2rem;
  }
  .slider-feature-section {
    margin-top: unset;
  }
  .slider-feature-section .row .col-md-4 {
    padding-bottom: 35px;
  }
  .about-section .sub-title {
    padding-top: 20px;
  }
  .service-section .content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service-section .content .card {
    width: 100%;
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .oversea-section P {
    width: 100%;
  }
  .oversea-section .sub-header {
    padding-top: 20px;
  }
  .speciality-section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .speciality-section .row .sub-title {
    padding-top: 20px;
  }
  .footer-section img {
    width: 350px;
    margin-bottom: 30px;
  }
  .footer-section .section {
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-top: 62px;
    padding-bottom: 62px;
  }
}

.classes-section {
  text-align: center;
}

.classes-section .title {
  line-height: 1;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 3.25rem;
}

.classes-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.classes-section .row {
  padding: 50px 70px;
}

.classes-section .cards {
  width: 33%;
  padding-right: 15px;
  padding-left: 15px;
}

.classes-section .cards .class-box {
  text-align: center;
  margin-bottom: 40px;
}

.classes-section .cards .class-box img {
  border-radius: 6px 6px 0 0;
  height: 25vh;
}

.classes-section .cards .class-box .class-box-text {
  background-color: #f7941d;
  text-align: left;
  padding: 30px 25px 35px;
  border-radius: 0 0 6px 6px;
}

.classes-section .cards .class-box .class-box-text h5 {
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: white;
  font-family: "Poppins", sans-serif;
}

.classes-section .cards .class-box .class-box-text p {
  font-size: 0.95rem;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.classes-section .cards .class-box .class-box-text .btn {
  margin-top: 10px;
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  padding: 10px 20px;
}

.classes-section .cards .class-box .class-box-text .btn:hover {
  background-color: #c2162c;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.faq-section {
  text-align: center;
}

.faq-section .title {
  line-height: 1;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 3.25rem;
}

.faq-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.faq-section .faq-data {
  padding: 50px 70px;
}

.faq-section .faq-data .accordion .accordion-item {
  border-radius: 6px;
  margin-bottom: 20px;
  background-color: #f6f7f9;
  border: 1px solid #f5f5f5;
}

.faq-section .faq-data .accordion .accordion-item .accordion-header button {
  padding: 22px 20px;
  background-color: #f6f7f9;
  color: #333;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: -0.5px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.faq-section .faq-data .accordion .accordion-collapse {
  background-color: white;
}

.faq-section .faq-data .accordion .accordion-collapse .accordion-body {
  color: #666;
  overflow: hidden;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
}

.faq-section .faq-data .still-question {
  margin-top: 45px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.faq-section .faq-data .still-question a {
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: -1px;
  margin-left: 3px;
  color: #2c3f69;
}

@media (min-width: 768px) and (max-width: 1025px) {
  .classes-section .cards {
    width: 49%;
  }
}

@media (max-width: 767px) {
  .classes-section .row {
    padding: 50px 0px;
  }
  .classes-section .cards {
    width: 100%;
  }
  .faq-section .faq-data {
    padding: 50px 0px;
  }
}

.blog-list .single-blog {
  margin-bottom: 40px;
  margin-top: 40px;
}

.blog-list .single-blog img {
  margin-bottom: 30px;
}

.blog-list .single-blog .blog-related {
  color: #757575;
  font-size: 0.975rem;
  margin: 10px 0px;
  font-weight: 700;
}

.blog-list .single-blog .blog-title {
  font-size: 1.625rem;
  color: #2c3f69;
}

.blog-list .single-blog .blog-desc {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 300;
  display: block;
  /* or inline-block */
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 3.6em;
  line-height: 1.8em;
}

.blog-list .single-blog .blog-date {
  color: #757575;
  font-size: 0.975rem;
}

.blog-list .single-blog .blog-date span {
  font-weight: 700;
}

.blog-search {
  position: relative;
}

.blog-search #search {
  background-color: #f0f0f0;
  font-size: 1.05rem;
  height: 54px;
  padding-left: 20px;
  border: none;
  border-radius: 6px 0 0 6px;
}

.blog-search i {
  position: absolute;
  top: 3%;
  right: 5%;
  font-size: 22px;
}

.blog-search .blog-categories {
  margin-top: 30px;
}

.blog-search .blog-categories p {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  font-size: 1.375rem;
  color: #222;
}

.blog-search .blog-categories .categories {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dashed #c0c0c0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-search .blog-categories .categories span {
  color: #c2162c;
  margin-right: 10px;
  font-size: 18px;
}

.blog-search .blog-categories .categories div {
  color: #555;
  font-weight: 400;
}

.article-blog img {
  margin-bottom: 25px;
}

.article-blog .blog-date {
  color: #757575;
  font-size: 0.975rem;
  margin-bottom: 10px;
}

.article-blog .blog-date span {
  font-weight: 700;
}

.article-blog .blog-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.article-blog p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}

.article-blog .sub-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.article-blog ul {
  padding-left: 17px;
}

.article-blog ul li {
  font-size: 1.05rem;
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
  color: #333;
  font-weight: 300;
}

.appointment-form {
  background-color: #f8f9fb;
  background-image: url(../images/appointmentBg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: bottom;
}

.appointment-form .app-title {
  font-size: 3.25rem;
  line-height: 1;
  color: #2c3f69;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-align: center;
  padding-top: 50px;
}

.appointment-form .app-sub-title {
  padding: 0 25%;
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

.appointment-form .form {
  margin-top: 30px;
}

.appointment-form .form label {
  color: #444;
  margin-left: 4px;
  font-weight: 300;
}

.appointment-form .form-control {
  height: 58px;
  background-color: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
  color: #444;
  font-size: 18px;
  font-weight: 300;
  padding: 0 15px;
  margin-bottom: 22px;
}

.appointment-form .submit-app {
  color: #fff;
  background-color: #c2162c;
  border-color: #c2162c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
  padding: 10px 20px;
}

.appointment-form .form-controls {
  height: 200px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
  color: #444;
  font-size: 18px;
  font-weight: 300;
  padding: 0 15px;
  margin-bottom: 22px;
}

@media (max-width: 757px) {
  .appointment-form .app-sub-title {
    padding: unset;
  }
}

.course-detail .course-title {
  line-height: 1.15;
  margin-bottom: 30px;
  font-size: 2.625rem;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.course-detail .short-details {
  padding: 35px 25px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #f8f9fb;
}

.course-detail .short-details i {
  font-size: 55px;
  color: #757575;
  margin-right: 20px;
}

.course-detail .short-details .short-title {
  line-height: 1.3;
  margin-bottom: 0;
  color: #757575;
  font-weight: 400;
  font-size: 1.05rem;
}

.course-detail .short-details .short-desc {
  line-height: 1.3;
  margin-bottom: 0;
  color: #0072bc;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
}

.course-detail p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #333;
  font-weight: 300;
}

.course-detail .sub-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.course-detail ul {
  padding-left: 17px;
}

.course-detail ul li {
  font-size: 1.05rem;
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
  color: #333;
  font-weight: 300;
}

.course-detail img {
  margin: 40px 0;
}

.course-detail .how-to {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.625rem;
  margin-top: 30px;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.course-detail .course-pattern .pattern-title {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #222;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.category-search .categories p {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  font-size: 1.375rem;
  color: #222;
}

.category-search .categories .categories {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dashed #c0c0c0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-search .categories .categories span {
  color: #c2162c;
  margin-right: 10px;
  font-size: 18px;
}

.category-search .categories .categories div {
  color: #555;
  font-weight: 400;
}

.contact-box {
  background-color: #fff;
  border: 1px solid #eef2f5;
  border-radius: 6px;
  margin-right: 45px;
  padding: 45px 35px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-box .boxes {
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-box .boxes i {
  width: 75px;
  height: 75px;
  margin: -5px 20px 0 0;
  display: inline-block;
  background-color: #fbb232;
  border: 16px solid #fcd89c;
  text-align: center;
  border-radius: 100%;
  font-size: 25px;
  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;
}

.contact-box .boxes .main {
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

.contact-box .boxes .sub {
  color: #aaa;
  margin-top: 0;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0;
}

.contact-box .boxes:last-child {
  margin-bottom: unset;
  padding-bottom: unset;
  border-bottom: unset;
}

@media (max-width: 767px) {
  .contact-box {
    margin-right: unset;
  }
}

.counter-content {
  background-image: url(lib/images/counter.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  color: white;
  background-size: cover;
}

.counter-content .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.counter-content .container .col-md-3 {
  text-align: center;
}

.counter-content .container .col-md-3 i {
  font-size: 60px;
  margin-bottom: 30px;
}

.counter-content .container .col-md-3 .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.75rem;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.counter-content .container .col-md-3 p {
  font-size: 1.25rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 300;
}

.objective-section .content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.objective-section .content .card {
  width: 100%;
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

.objective-section {
  background-color: #f8f9fb;
}

.objective-section .title {
  font-size: 3.25rem;
  line-height: 1;
  margin-bottom: 0;
  color: #2c3f69;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.objective-section .sub-title {
  color: #888;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.objective-section .content {
  margin-top: 30px;
}

.objective-section .content .card {
  width: 33%;
  border: 1px solid #ddd;
  padding: 35px 30px 45px;
}

.objective-section .content .card .card-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.objective-section .content .card .card-desc {
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */