:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}
.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible;
}
.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
  opacity: 0;
}
.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}
.Toastify__toast--stacked[data-pos=top] {
  top: 0;
}
.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0;
}
.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top;
}
.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom;
}
.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
  z-index: 1;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.Header_header_main__Qj9Ry{width:100%;position:sticky;top:0;z-index:9999999999999}.Header_nav_head___iOjP{padding:15px 0;height:6.4rem;background-color:hsla(0,0%,100%,.1882352941);width:100% !important;display:flex;align-items:center;justify-content:center;margin-right:0}@media(max-width: 768px){.Header_nav_head___iOjP{display:flex;width:100% !important;position:fixed;top:0;left:0;box-shadow:0rem .5rem .8rem rgba(189,189,189,.185);z-index:999}}.Header_nav_head___iOjP .Header_row__Ul49P{display:flex;justify-content:space-between;align-items:center;width:100%}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P{display:flex;align-items:center;justify-content:space-between;gap:3rem;padding:0 1rem}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD{width:100%;display:flex;align-items:center;justify-content:space-between;gap:2rem}@media(max-width: 1024px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD{gap:0}}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD{display:flex;align-items:center;justify-content:space-between;width:100%}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_logo__6jo63 img{width:100px;mix-blend-mode:multiply}@media(max-width: 1024px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_logo__6jo63 img{height:60px;width:60px}}@media(max-width: 576px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_logo__6jo63 img{height:50px;width:60px}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd{display:flex;width:70%;align-items:center;justify-content:space-between}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd{display:none;position:relative}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa{transition:all .5s ease;display:block;align-items:center !important;justify-content:start !important;flex-direction:column;gap:.5rem !important;height:100vh !important;border-radius:10px !important;width:70% !important;right:0 !important;border:none !important;position:absolute;top:5.2rem;background:#fff;animation:Header_slideDown__s2qLJ .5s ease-in-out forwards;padding-top:2rem !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5{display:flex;align-items:center !important;justify-content:center !important;flex-direction:column;width:60%;gap:0rem !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 a{width:100%;display:flex;align-items:center !important;justify-content:center !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_course_drop__vZ6Wr{width:100%;display:flex;align-items:center;justify-content:center;margin:0}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_course_drop__vZ6Wr .Header_courses_dropdown__Yo7uu{width:100% !important;display:flex;align-items:center;justify-content:center}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_course_drop__vZ6Wr .Header_courses_dropdown__Yo7uu .Header_dropdown__juoXn{margin-top:0 !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_course_drop__vZ6Wr .Header_courses_dropdown__Yo7uu .Header_dropdown__juoXn a{display:flex;align-items:center;justify-content:center;gap:.2rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_course_drop__vZ6Wr .Header_courses_dropdown__Yo7uu .Header_dropdown__juoXn .Header_dropdown_btn__KaXer{margin-right:6rem !important;border:1px solid !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_dropdown1__XP9Gs{margin-top:1rem !important;display:flex;align-items:center;width:60%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_dropdown1__XP9Gs .Header_login_btn__UtkGo{text-decoration:none;width:100%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_dropdown1__XP9Gs .Header_login_btn__UtkGo button{width:100%;height:40px;display:flex;align-items:center;justify-content:center;margin:0}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_search_clg__qbO9y{display:none}@keyframes Header_slideDown__s2qLJ{0%{transform:translateX(100%);opacity:0}100%{transform:translateX(0);opacity:1}}}@media(max-width: 1024px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd{width:90%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_showNav__8z2wa{display:none}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa{transition:all .5s ease;display:flex;align-items:center;justify-content:center;flex-direction:column;height:100vh;border-radius:20px;width:60%;margin-left:40%;border-right:1px solid;position:absolute;background:#fff;box-shadow:.5rem .5rem .8rem rgba(129,129,129,.315);animation:Header_slideDown__s2qLJ .5s ease-in-out forwards}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5{display:flex;align-items:start;justify-content:center;flex-direction:column;max-width:100%;max-height:auto;margin-right:1rem;gap:.5rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn{margin-top:1rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn .Header_dropdown_content__R1dZn{right:-100%;margin-right:100%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn .Header_dropdown_content__R1dZn .Header_dropdown_section__IGiM4{width:100%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn .Header_dropdown_content__R1dZn .Header_dropdown_section__IGiM4 .Header_course_list__OWMOY{width:100%}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn .Header_dropdown_btn__KaXer{margin-right:6rem !important}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_dropdown1__XP9Gs{margin-top:5rem;display:flex;align-items:start;margin-right:1rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd.Header_showNav__8z2wa .Header_search_clg__qbO9y{display:none}@keyframes Header_slideDown__s2qLJ{0%{transform:translateX(100%);opacity:0}100%{transform:translateX(0);opacity:1}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5{display:flex;align-items:center;justify-content:center;gap:1rem}@media(max-width: 1024px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5{gap:.6rem;margin-left:1rem}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 a{cursor:pointer;text-decoration:none;color:#000;font-size:.9rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 a:hover{color:#232222}@media(max-width: 1024px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 a{font-size:.9rem}}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn{position:relative}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn a{display:flex;align-items:center;justify-content:center;gap:.2rem}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown__juoXn:hover .Header_dropdown_content__R1dZn{display:flex}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_content__R1dZn{display:none;position:absolute;background-color:#fff;flex-direction:column;z-index:1;width:280px;height:350px;justify-content:space-between;padding:20px;flex-wrap:nowrap;box-shadow:rgba(60,64,67,.3) 0px 1px 2px 0px,rgba(60,64,67,.15) 0px 1px 3px 1px;border-radius:10px;overflow:hidden;overflow-y:scroll;scroll-behavior:smooth}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4{padding:10px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 h3{margin-top:0;font-size:14px;cursor:pointer;color:#000;user-select:none}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 .Header_course_list__OWMOY{list-style-type:none;padding:0;margin:0rem 1rem;color:#272626;display:flex;align-items:start;flex-direction:column;gap:.6rem;width:13vw;user-select:none;margin-top:1.5rem;padding:10px;max-height:150px;overflow:hidden;overflow-y:scroll;scroll-behavior:smooth;box-shadow:0 0 3px #ffa857;border-radius:5px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 .Header_course_list__OWMOY li{margin-bottom:5px;font-size:12px;color:#2b2b2b;text-align:start;user-select:none;box-shadow:0 0 1px rgba(51,51,51,.658);border-radius:4px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 ::-webkit-scrollbar{display:block;width:8px;background:#e9e1db}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 button{background-color:#004080;color:#fff;border:none;padding:10px 20px;cursor:pointer}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_nav_links_menu__45HU5 .Header_dropdown_section__IGiM4 button:hover{background-color:#003060}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_search_clg__qbO9y{display:flex;align-items:center;justify-content:space-evenly;gap:1rem;padding:.6rem 1rem;background:#f3f4f6;border-radius:30px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_search_clg__qbO9y img{width:20px;height:20px;cursor:pointer}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_search_clg__qbO9y input{background:rgba(0,0,0,0);border:none;outline:none;font-size:.9rem;width:220px;font-weight:400;color:gray}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_dropdown1__XP9Gs{position:relative;transition:all .5s ease;border-radius:20px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_dropdown1__XP9Gs .Header_login_btn__UtkGo{text-decoration:none}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_nav_links__oOOvd .Header_dropdown1__XP9Gs .Header_login_btn__UtkGo button{text-align:center;display:flex;padding:7px 25px;flex-wrap:wrap;border-radius:50px;color:#fff;background:#fe9731;outline:none;transition:all .5s ease}.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y{display:none}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y{display:block;display:flex;align-items:center;justify-content:space-between;width:60%;gap:.2rem;padding-left:.8rem;border-radius:20px;background:#f3f4f6;margin-left:8rem}}@media(max-width: 768px)and (max-width: 576px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y{margin-left:1rem}}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y input{width:100%;height:100%;padding:.4rem;background:rgba(0,0,0,0);font-size:13px;outline:none;border:none;border-radius:0 20px 20px 0px}}@media(max-width: 768px)and (max-width: 576px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y input::placeholder{font-size:10px}}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_row1__MMWMD .Header_search_clg__qbO9y img{width:15px;height:15px}}.Header_nav_head___iOjP .Header_row__Ul49P ::-webkit-scrollbar{display:block;width:4px;background:#a9a8a8;border-radius:50px}.Header_nav_head___iOjP .Header_row__Ul49P .Header_hamburger__8VJT4{display:none;align-items:center;justify-content:center}.Header_nav_head___iOjP .Header_row__Ul49P .Header_hamburger__8VJT4 img{width:30px;height:30px}@media(max-width: 768px){.Header_nav_head___iOjP .Header_row__Ul49P .Header_hamburger__8VJT4{display:block;cursor:pointer;align-items:center;justify-content:center}}.Header_search_container__cVNsV{position:relative}.Header_search_result__F_VAR{position:absolute;top:6rem;right:14%;min-width:20rem;padding:1.5rem 2rem;background:#fff;box-shadow:-0.4rem .4rem 1rem .4rem rgba(160,160,160,.137);border-radius:1.5rem;z-index:9999999999;display:flex;flex-direction:column;gap:.5rem;max-height:60vh;overflow-y:auto;overflow-x:hidden}@media(max-width: 576px){.Header_search_result__F_VAR{right:6.5%;top:5rem;width:80%;overflow-y:auto;height:500px;overflow-x:hidden;padding:1rem 1.5rem;border-radius:unset}}@media(max-width: 320px){.Header_search_result__F_VAR{right:0%;top:5rem}}@media(min-width: 1441px){.Header_search_result__F_VAR{right:23%}}@media(min-width: 2000px){.Header_search_result__F_VAR{right:30%}}.Header_search_result__F_VAR p{font-size:13px;font-weight:600;margin-bottom:-0.8rem;margin-top:.6rem}.Header_search_result__F_VAR a{padding:.4rem 0;border-bottom:1.5px solid #f4f4f4;color:#000;text-decoration:none;font-size:14px;color:#ababab;font-weight:300;text-wrap:nowrap}@media(max-width: 576px){.Header_search_result__F_VAR a{font-size:12px}}.Header_search_result__F_VAR a:last-child{border-bottom:none}.Header_course_drop__vZ6Wr{position:relative}@media(max-width: 768px){.Header_course_drop__vZ6Wr{padding:0px 10px}}.Header_courses_dropdown__Yo7uu{display:flex;align-items:center;font-family:"Poppins";cursor:pointer;gap:.4rem;color:#000;font-size:.9rem}.Header_dropdown_icon__KV_Fh{font-size:13px}.Header_dropdown_course__Lpe_4{transition:max-height .2s ease-in-out;position:absolute;top:2.5rem;left:50%;transform:translateX(-50%);max-height:0;z-index:9999999999}.Header_shrink_dropdown__Zk6Fv{max-height:0;transform-origin:bottom}.Header_grow_dropdown__OpLXq{max-height:50rem;padding:.6rem 1rem;transform-origin:top;box-shadow:-0.2rem .3rem .7rem rgba(107,107,107,.185);border-radius:.8rem;background:#fff;color:#000;margin-top:1.5rem}@media(max-width: 768px){.Header_grow_dropdown__OpLXq{left:1rem;margin-top:0}}.Header_list__ms4Mp{display:flex;flex-direction:column;justify-content:center;width:12rem;height:100%;padding-left:0 !important;margin-bottom:0 !important}.Header_list__ms4Mp .Header_list_item__pVtux{text-transform:capitalize;padding:.4rem .6rem;font-family:400;position:relative;font-size:.9rem;cursor:pointer}.Header_list__ms4Mp .Header_list_item__pVtux .Header_program_ul__KYe_P{z-index:9999999999;display:flex;flex-direction:column;gap:.2rem;position:absolute;right:-20rem;top:0;width:18rem;background:#fff;color:#000;box-shadow:-0.2rem .3rem .7rem rgba(107,107,107,.185);border-radius:.8rem;padding:.6rem .8rem !important}@media(max-width: 768px){.Header_list__ms4Mp .Header_list_item__pVtux .Header_program_ul__KYe_P{position:unset !important;right:unset !important;top:unset !important;box-shadow:unset;padding:.4rem 0 !important;overflow:hidden;overflow-y:scroll;height:15rem;max-width:200px}}.Header_list__ms4Mp .Header_list_item__pVtux .Header_program_ul__KYe_P .Header_program_li__AcxaG{padding:.4rem .6rem;width:100% !important}@media(max-width: 768px){.Header_list__ms4Mp .Header_list_item__pVtux .Header_program_ul__KYe_P .Header_program_li__AcxaG{padding:.2rem .4rem}}.Header_list__ms4Mp .Header_list_item__pVtux .Header_program_ul__KYe_P .Header_program_li__AcxaG a{font-size:.9rem !important;text-wrap:nowrap}.Header_lists__p_hym{display:flex;align-items:center;justify-content:space-between}
.Footer_container__ylDVK{width:100%;margin-top:2rem}.Footer_container__ylDVK .Footer_space__eCrOS{background:#fff;width:100%;height:200px}.Footer_container__ylDVK .Footer_footer__Xw5gz{display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative;width:100%;background:#0e1d41}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_top__Mmg0F{display:flex;align-items:center;justify-content:center;flex-direction:column;position:absolute;top:-44%;left:50%;transform:translate(-50%, 50%);background:#fff;padding:2rem;gap:2rem;border-radius:10px;border:1px solid #fe9731;transition:all .3s;box-shadow:0px 0px 6px #fe9731;width:750px}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_top__Mmg0F:hover{box-shadow:0px 0px 20px #fe9731}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_top__Mmg0F .Footer_footer_top_text__zQz94{font-family:Poppins;font-size:50.12px;font-weight:600;line-height:64.53px;letter-spacing:-2.0814940929px;text-align:center;color:#000}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_top__Mmg0F button{background:#000;padding:10px 15px;color:#fff;border-radius:10px;transition:.3s}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_top__Mmg0F button:hover{background:#fe9731}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW{display:flex;align-items:start;justify-content:space-between;gap:2.5rem;padding-left:1rem;padding-right:1rem;padding-top:10rem;width:100%}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo{display:flex;align-items:start;flex-direction:column;justify-content:center;gap:1rem;grid-column:1/3;width:400px}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_footer_logo__x7DdR{width:80px;top:-10.32px;left:2.29px;gap:0px}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_text1__t08qJ{font-family:Poppins;font-weight:400;text-align:left;color:#cacaca}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_view__Afboo{padding:10px 30px;background:#fe9731;border-radius:15px;transition:.3s;margin-bottom:3rem;color:#000}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_view__Afboo:hover{background:#ff8913;letter-spacing:1.2px}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV{display:flex;align-items:center;justify-content:center;gap:1rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_follow__GeZtQ{font-family:Plus Jakarta Sans;text-align:left;color:#7b7b7b;margin-bottom:.5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_icons__EwuEP{display:flex;align-items:center;justify-content:space-between;gap:.7rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_icons__EwuEP img{width:22px;height:22px;top:2.6px;left:7.09px;gap:0px;opacity:0px;cursor:pointer}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr{display:flex;align-items:start;justify-content:start;gap:5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs{display:flex;align-items:start;flex-direction:column;justify-content:start;gap:.5rem;margin-top:5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs h3{font-family:Poppins;font-size:20px;font-weight:600;line-height:37.06px;letter-spacing:-.2647182643px;text-align:left;text-wrap:nowrap;color:#fff}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9{display:flex;align-items:start;flex-direction:column;gap:.5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 p{font-family:Plus Jakarta Sans;font-size:17px;font-weight:400;color:#8e8e8e;cursor:pointer;margin-bottom:.6rem;text-decoration:none;transition:all .4s ease-in-out}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 p:hover{border-bottom:1px solid #000}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_phone__EREpl{display:flex;align-items:start;gap:1.3rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_phone__EREpl img{padding-top:.5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_phone__EREpl .Footer_call_section___9UpK{display:flex;align-items:start;flex-direction:column}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_phone__EREpl .Footer_call_section___9UpK h4{font-family:Poppins;font-size:15px;font-weight:600;line-height:37.06px;letter-spacing:-.2647182643px;text-align:left;color:#d7d7d7}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_phone__EREpl .Footer_call_section___9UpK a{font-family:Plus Jakarta Sans;font-size:14px;font-weight:500;line-height:25.73px;text-align:left;text-decoration:none;color:#b9b9b9}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv{display:flex;align-items:start;gap:1.3rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv img{padding-top:.5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv .Footer_email_section__L0qTr{display:flex;align-items:start;flex-direction:column}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv .Footer_email_section__L0qTr a{font-size:14px;text-decoration:none;color:#d7d7d7}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv .Footer_email_section__L0qTr p{font-size:14px;text-decoration:none;color:#b9b9b9;cursor:default}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 .Footer_email__gHwzv .Footer_email_section__L0qTr h4{font-family:Poppins;font-size:15px;font-weight:600;line-height:37.06px;letter-spacing:-.2647182643px;text-align:left;color:#d7d7d7;text-wrap:nowrap}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_line__3W7_X{height:2px;background:#aca9a9;border-radius:10px;margin-top:3rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_copyright_section__MXxcU{display:flex;align-items:center;justify-content:center;padding-top:1.5rem;padding-bottom:1.5rem}.Footer_container__ylDVK .Footer_footer__Xw5gz .Footer_copyright_section__MXxcU p{font-family:Poppins;font-size:16px;font-weight:400;line-height:27.8px;text-align:left;color:#242424}@media(max-width: 1024px){.Footer_container__ylDVK{width:100%}.Footer_container__ylDVK .Footer_space__eCrOS{width:100%;position:relative}.Footer_container__ylDVK .Footer_footer_top__Mmg0F{padding:1.5rem !important;gap:.4rem !important;position:absolute;top:-20% !important;background:#000;height:200px;width:70% !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F h3{font-size:40px !important;line-height:48px !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F button{padding:6px 10px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW{gap:1rem !important;padding-top:6rem;flex-direction:column;justify-content:center;align-items:center;width:100% !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo{display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;gap:1.5rem !important;width:100% !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_text1__t08qJ{text-align:center !important;font-family:Poppins !important;width:80%}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_follow__GeZtQ{font-size:25px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV img{height:30px !important;width:30px !important;padding:.2rem !important;cursor:pointer !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr{display:flex;align-items:center;justify-content:center;gap:.2rem !important;width:100%;margin-top:1rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs{margin-top:0 !important;width:80%}.Footer_container__ylDVK .Footer_line__3W7_X{height:1px !important;background:#000 !important;margin-bottom:2rem !important}.Footer_container__ylDVK .Footer_copyright_section__MXxcU p{font-size:20px !important;margin-bottom:2rem !important;font-family:poppins}}@media(max-width: 768px){.Footer_container__ylDVK{width:100%}.Footer_container__ylDVK .Footer_space__eCrOS{width:100%;position:relative}.Footer_container__ylDVK .Footer_footer_top__Mmg0F{padding:1.5rem !important;gap:.4rem !important;position:absolute;top:-20% !important;background:#000;height:200px;width:70% !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F h3{font-size:40px !important;line-height:48px !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F button{padding:6px 10px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW{gap:1rem !important;padding-top:6rem;flex-direction:column;justify-content:center;align-items:center;width:100% !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo{display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;gap:1.5rem !important;width:100% !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_text1__t08qJ{text-align:center !important;font-family:Poppins !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_follow__GeZtQ{font-size:25px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV img{height:30px !important;width:30px !important;padding:.2rem !important;cursor:pointer !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr{display:flex;align-items:center;justify-content:center}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs{margin-top:2rem;width:100%}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs h3{font-size:18px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 p{font-size:15px !important}.Footer_container__ylDVK .Footer_line__3W7_X{height:1px !important;background:#000 !important;margin-bottom:2rem !important}.Footer_container__ylDVK .Footer_copyright_section__MXxcU p{font-size:20px !important;margin-bottom:2rem !important;font-family:poppins}}@media(max-width: 576px){.Footer_container__ylDVK{width:100% !important}.Footer_container__ylDVK .Footer_space__eCrOS{width:100% !important;position:relative;height:150px !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F{padding:1rem !important;top:-12% !important;width:90% !important;gap:1rem !important;height:140px !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F h3{font-size:18px !important;line-height:24px !important;letter-spacing:.02rem !important}.Footer_container__ylDVK .Footer_footer_top__Mmg0F button{padding:6px 10px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW{width:100% !important;display:flex !important;align-items:center !important;justify-content:center !important;flex-wrap:wrap;margin-top:8rem !important;gap:.5rem !important;padding-top:0rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo{display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;gap:2rem !important;padding-top:0rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo img{height:120px !important;width:120px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_text1__t08qJ{text-align:center !important;font-family:Poppins !important;width:90% !important;font-size:12px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_view__Afboo{font-size:12px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV{display:flex !important;align-items:center;justify-content:center;flex-direction:column}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV .Footer_follow__GeZtQ{font-size:20px !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_footer_section__OhSlo .Footer_social_icons__ITjGV img{height:25px !important;width:25px !important;padding:.2rem !important;cursor:pointer !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr{display:grid !important;grid-template-columns:repeat(2, 2fr) !important;gap:.5rem !important;margin-top:2rem !important;padding-left:1.5rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs{margin-top:0 !important;max-width:130px !important;margin-top:.5rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs h3{font-size:1rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9{gap:.4rem !important}.Footer_container__ylDVK .Footer_footer_bottom__9ehHW .Footer_section_bottom_child__nkFJr .Footer_footer_section1__qYRJs .Footer_footer_sectionbar__IqHY9 p{font-size:12px !important}.Footer_container__ylDVK .Footer_line__3W7_X{height:1px !important;background:#000 !important;margin-bottom:.5rem !important}.Footer_container__ylDVK .Footer_copyright_section__MXxcU{margin:1rem 1rem !important;height:100px !important;padding-top:.5rem;padding-bottom:.5rem}.Footer_container__ylDVK .Footer_copyright_section__MXxcU p{margin:0 !important;font-size:12px !important;text-align:center !important}}
