@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap");
:root {
  --brand: #ef4b23;
  --secondary: #fcb016;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #252422;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #6a6f7e;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-bg: #fbf6f1;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Sora", serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--body-bg);
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.ff-heading {
  font-family: Degular;
  line-height: 1 !important;
  letter-spacing: 1px;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

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

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-dark-grey {
  color: #3f444b;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

.link_dark {
  color: var(--dark);
}

.top__title {
  background-color: #fadfca;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  display: inline-block;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.25rem;
  border: 1px solid var(--brand);
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--brand);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .inner__icon {
  position: relative;
}
.navbar .inner__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23222' d='m13.292 12l-4.6-4.6l.708-.708L14.708 12L9.4 17.308l-.708-.708z'/%3E%3C/svg%3E") no-repeat center center/1.75rem;
  transition: all 0.3s ease;
}
.navbar .dropdown.hovered {
  -webkit-appearance: none;
}
.navbar .dropdown.hovered .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: min-content;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown.hovered .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown.hovered .dropdown-menu .dropdown-item:hover, .navbar .dropdown.hovered .dropdown-menu .dropdown-item:focus, .navbar .dropdown.hovered .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown.hovered .dropdown-menu .active > .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown.hovered .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown.hovered:hover > .nav-link {
  color: var(--yellow);
}
.navbar .dropdown.hovered:hover > .nav-link .caret {
  transform: rotate(-180deg);
}
.navbar .profile__btn {
  width: 3rem;
  height: 3rem;
}
.navbar .profile__menu {
  min-width: 16rem;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
  background-color: var(--yellow);
  color: #fff;
  margin-left: 1rem;
}
.navbar .navbar-toggler span {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--white);
  display: block;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler span:nth-child(2) {
  margin: 7px 0;
  width: 70%;
}
.navbar .navbar-toggler:hover span:nth-child(1) {
  width: 100%;
}
.navbar .navbar-toggler:hover span:nth-child(3) {
  width: 100%;
}
.navbar .navbar-toggler:hover span:nth-child(2) {
  width: 100%;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.sideNav ul.links__list li {
  border-bottom: 1px solid #eee;
}
.sideNav ul.links__list li a {
  display: flex;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--link-color);
  justify-content: space-between;
  align-self: center;
  font-size: 1rem;
}
.sideNav ul.links__list li a.btn__link::after {
  content: "+";
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--link-color);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed) {
  color: var(--brand);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed)::after {
  content: "−";
  color: var(--brand);
}
.sideNav ul.links__list li a.collapse__btn {
  border-left: 1px solid #eee;
}
.sideNav ul.links__list li a:hover, .sideNav ul.links__list li a:focus, .sideNav ul.links__list li a:active {
  color: var(--brand);
}
.sideNav ul.links__list li .collapse li:first-child {
  border-top: 1px solid #eee;
}
.sideNav .offcanvas__footer .language {
  height: 3rem;
  width: 10rem;
}
.sideNav .offcanvas__footer .social__links {
  justify-content: center !important;
}
.sideNav .offcanvas__footer .social__links li a {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand);
  border-color: var(--brand);
}
.sideNav .offcanvas__footer .social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 992px) {
  .navbar .dropdown.hovered .dropdown-menu {
    display: block;
  }
  .navbar .dropdown.hovered .dropdown-menu .dropdown .dropdown-menu {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    right: -100%;
    left: auto;
    top: 0%;
  }
  .navbar .dropdown.hovered .dropdown-menu .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown.hovered:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1399px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
  .navbar.fixed-top {
    padding: 0.625rem 0 !important;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
    width: auto;
  }
}
footer {
  background-color: #fadfca;
  padding: 3rem 0 0rem 0;
}
footer a {
  color: var(--dark);
  text-transform: capitalize;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
footer .info__list li .icon__box {
  width: 2rem;
  height: 2rem;
}
footer .info__list li .icon__box svg {
  width: 1rem;
  height: 1rem;
}
footer .border-top {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  .backTop {
    bottom: 2rem;
    right: 1rem;
  }
  .backTop svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.phone__btn {
  background-color: #81d654;
  z-index: 999;
  left: 2rem;
  bottom: 11rem;
  width: 4rem;
  height: 4rem;
}
.phone__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.phone__btn svg path {
  fill: var(--white);
}
.phone__btn:hover, .phone__btn:focus, .phone__btn:active {
  background-color: #65a742;
  color: var(--white);
}

.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  left: 2rem;
  bottom: 5rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@media (max-width: 576px) {
  .phone__btn {
    left: 1rem;
    bottom: 7rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .phone__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .whatsapp {
    left: 1rem;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background: var(--chevron-right) no-repeat center center/1.5rem !important;
  background-color: var(--white) !important;
  box-shadow: 0 2px 3px rgba(0, 110, 22, 0.2);
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper .carousel-item .bg__overlay {
  background-image: linear-gradient(65deg, #000000, rgba(0, 0, 0, 0));
  opacity: 0.64;
}
.header__wrapper .carousel-item .line::after {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  position: absolute;
  left: 0%;
  bottom: 0.5rem;
  background-color: var(--brand);
  z-index: -1;
  opacity: 0.87;
}

@media (max-width: 991px) {
  .header__wrapper .banner {
    min-height: calc(100vh - 4rem);
  }
}
.shortinfo__card .icon__box {
  width: 4rem;
  height: 4rem;
}

.service__card {
  display: flex;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
}
.service__card .icon__box {
  width: 5rem;
  height: 5rem;
  background-color: rgba(0, 0, 0, 0.05);
}
.service__card:hover {
  box-shadow: 6px 5px 0 0 var(--dark);
}

.play__btn {
  display: flex;
  justify-content: center;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: linear-gradient(30deg, rgb(255, 130, 0) 20%, rgb(255, 38, 0) 80%);
  transition: all 0.3s ease-in-out 0s;
  box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
  animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
  align-items: center;
  border: 0;
}

.play__btn:is(:hover, :focus) {
  transform: scale(1.2);
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
  }
}
.video__content {
  margin-top: -6rem;
}

.course__card .thumbnail:is(:hover, :focus) img {
  transform: scale(1.1);
}
.course__card .title {
  min-height: 3rem;
}
.course__card .btn-outline-primary {
  font-size: 13px;
  padding: 0.25rem 1rem;
}

.check__list li {
  position: relative;
  padding-left: 2rem;
}
.check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 10l-4 4l-2-2m4.246-8.541l1.221 1.04c.308.262.69.42 1.092.453l1.6.128a1.92 1.92 0 0 1 1.761 1.76l.127 1.6c.033.403.192.786.454 1.093l1.04 1.22a1.92 1.92 0 0 1 0 2.492l-1.04 1.221c-.262.308-.421.69-.453 1.093l-.128 1.6a1.92 1.92 0 0 1-1.76 1.761l-1.6.128a1.92 1.92 0 0 0-1.093.452l-1.221 1.04a1.92 1.92 0 0 1-2.492 0l-1.22-1.04a1.92 1.92 0 0 0-1.094-.452l-1.6-.128a1.92 1.92 0 0 1-1.76-1.762l-.128-1.599a1.92 1.92 0 0 0-.453-1.092l-1.04-1.222a1.92 1.92 0 0 1 0-2.49l1.04-1.222c.263-.308.42-.69.452-1.093l.128-1.599A1.92 1.92 0 0 1 6.842 5.08l1.598-.127A1.92 1.92 0 0 0 9.533 4.5l1.221-1.04a1.92 1.92 0 0 1 2.492 0'/%3E%3C/svg%3E");
}
.check__list.green li {
  padding-left: 1.75rem;
}
.check__list.green li::before {
  width: 20px;
  height: 20px;
  top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cmask id='ipSCheckOne0'%3E%3Cg fill='none' stroke-linejoin='round' stroke-width='4'%3E%3Cpath fill='%23fff' stroke='%23fff' d='M24 44a19.94 19.94 0 0 0 14.142-5.858A19.94 19.94 0 0 0 44 24a19.94 19.94 0 0 0-5.858-14.142A19.94 19.94 0 0 0 24 4A19.94 19.94 0 0 0 9.858 9.858A19.94 19.94 0 0 0 4 24a19.94 19.94 0 0 0 5.858 14.142A19.94 19.94 0 0 0 24 44Z'/%3E%3Cpath stroke='%23000' stroke-linecap='round' d='m16 24l6 6l12-12'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='%2361CE70' d='M0 0h48v48H0z' mask='url(%23ipSCheckOne0)'/%3E%3C/svg%3E");
}

.form__wrapper {
  background-color: #f2f8f1;
}
.form__wrapper .form-control, .form__wrapper .form-select {
  border-radius: 0%;
  height: 3rem;
  border: 0;
  border-bottom: 1px solid #e0e0e0;
  background-color: transparent;
}

.step__list li {
  background-color: #e1e3f6;
  box-shadow: 9px 5px 0 0 #c4c8ee;
}
.step__list li .icon__box {
  width: 4rem;
  height: 4rem;
}
.step__list li:nth-child(2) {
  background-color: #c4dac8;
  box-shadow: 9px 5px 0 0 #89b592;
}
.step__list li:nth-child(3) {
  background-color: #ffefb0;
  box-shadow: 9px 5px 0 0 #ffdf61;
}
.step__list li:hover {
  box-shadow: none;
  transform: translateX(-0.5rem);
}

.blog__card .thumbnail:is(:hover, :focus) img {
  transform: scale(1.1);
}
.blog__card .content__box {
  width: calc(100% - 3rem);
  margin-left: 1.5rem;
  margin-top: -4rem;
  position: relative;
  z-index: 11;
  box-shadow: 5px 5px 0 0 var(--dark);
}
.blog__card .content__box .btn-dark.category {
  font-size: 13px;
  padding: 0.25rem 1rem;
}
.blog__card:hover .thumbnail img {
  filter: none;
}

.map {
  margin-bottom: -10px;
}
.map iframe {
  width: 100%;
}

@media (max-width: 768px) {
  .map iframe {
    height: 300px;
  }
}
.clientCarousel .owl-item {
  padding: 1px;
}

.sub__header {
  background: linear-gradient(-90deg, var(--brand), var(--secondary));
}

.line__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.line__list li {
  padding-left: 1.5rem;
  position: relative;
}
.line__list li::before {
  background: var(--dark);
  width: 1rem;
  height: 1px;
  top: 0.875rem;
  content: "";
  position: absolute;
  left: 0%;
}

.detail__course__card {
  position: sticky;
  top: 7rem;
}

.course__info__table svg {
  width: 1.75rem;
  height: 1.75rem;
}
.course__info__table td {
  padding-left: 0;
  padding-right: 0;
}
.course__info__table td:nth-child(1) {
  color: #787878;
}
.course__info__table td:nth-child(2) {
  text-align: right;
  font-weight: 500;
}

.step__row .col__item:nth-child(1) .choose__card {
  background-color: #fce1da;
}
.step__row .col__item:nth-child(2) .choose__card {
  background-color: #fbd2c8;
}
.step__row .col__item:nth-child(3) .choose__card {
  background-color: #fac3b5;
}
.step__row .col__item:nth-child(4) .choose__card {
  background-color: #f8b4a3;
}

.choose__card .icon__box {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(90deg, var(--brand), var(--secondary));
}
.choose__card .icon__box img {
  width: 1.5rem;
}

.form-control, .form-select {
  height: 4rem;
  background-color: #f7f8f9;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.profile__page .thumbnail__box {
  width: 8rem;
  height: 8rem;
  background-color: #f7f8f9;
}
.profile__page .thumbnail__box img {
  aspect-ratio: 1;
}

.breadcrumb.type_white a {
  color: var(--white);
}
.breadcrumb.type_white .breadcrumb-item {
  font-weight: 500;
  color: var(--white);
}
.breadcrumb.type_white .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

.course__warning__box {
  border-top: 5px solid var(--brand) !important;
  background-color: rgba(255, 0, 0, 0.0823529412);
  color: var(--dark);
}

.contact__page__wrapper .info__list .icon__box {
  width: 2.25rem;
}
.contact__page__wrapper .info__list .icon__box svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact__page__wrapper .info__list .icon__box.sm svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact__page__wrapper .info__list a {
  color: var(--dark);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: underline;
}
.contact__page__wrapper .info__list a:is(:focus, :hover) {
  text-decoration: none;
  color: var(--brand);
}
.contact__page__wrapper .form-control, .contact__page__wrapper .form-select {
  background-color: #fff;
  height: 3rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.contact__page__wrapper .iti {
  width: 100%;
}/*# sourceMappingURL=style.css.map */