
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li{
  list-style: none;
  line-height: inherit;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #5A5A5A;
}

p {
  margin: 0;
  color: #5A5A5A;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #156099;
}

a:hover {
  color: #156099;
}

h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

body {
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  color: #5A5A5A;
  overflow: hidden;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.form-control {
  height: 54px;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  border-radius: 0px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #156099 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
}

.bg-primary {
  background-color: #156099 !important;
}

.text-primary {
  color: #156099 !important;
}

.text-primary-2 {
  color: #16AA96;
}

.bg-primary-2 {
  background-color: #16AA96;
}

.text-primary-3 {
  color: #FAA51B;
}

.bg-primary-3 {
  background-color: #FAA51B;
}

.border-primary {
  border-color: #156099 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.btn {
  padding: 18px 26px;
  font-size: 15px;
  border-radius: 24px;
}

.btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #115284;
  border-color: #115284;
}
.btn-primary:hover, .btn-primary:focus {
  box-shadow: none !important;
}

.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-secondary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #e2961a;
}

.btn-secondary:hover::before, .btn-secondary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-white {
  color: #000;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #156099;
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: #156099;
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #156099;
  background: transparent;
  border-color: #156099;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #156099;
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #156099;
  background-color: #FFF !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

@media (max-width: 992px) {
  .bottom-header {
    position: sticky;
    z-index: 3;
    width: 100%;
    top: 0;
    right: 0;
    background-color: #156099;
    padding: 10px 0;
  }
  .bottom-header .menu-nav {
    margin-bottom: 10px;
  }
  .bottom-header .logo img {
    max-height: 30px;
  }
  .bottom-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }
  .header-mobile__toolbar {
    color: #fff;
  }
  .active-body {
    overflow: hidden;
  }
  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }
  .mobile-menu-overlay-active {
    visibility: visible;
  }
  .menu--mobile {
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  .menu--mobile > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }
  .menu--mobile .list-main-menu {
    width: 100%;
  }
  .menu--mobile .logo img {
    filter: brightness(0.5);
  }
  .menu--mobile .main-menu .menu-item {
    flex: auto;
  }
  .menu--mobile .main-menu .menu-item .menu-link {
    color: #707070 !important;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
  }
  .menu--mobile .main-menu .menu-item .menu-link.active {
    color: #DECFB2 !important;
  }
  .menu--mobile .main-menu .menu-item .btn {
    padding: 12px 1px;
    width: 100%;
    border-radius: 0 !important;
    text-align: left;
  }
  .btn-close-header-mobile {
    color: #000;
    cursor: pointer;
  }
  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
  }
}
.pagination {
  margin-top: 40px;
}
.pagination .page-item {
  margin: 0px 7px;
}
.pagination .page-item .page-link {
  color: #000000;
  border-radius: 6px;
  background-color: #FFF;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 19px;
  height: 42px;
  border: 1px solid #000000;
  min-width: 58px;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #156099 !important;
  border-color: #156099;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #156099 !important;
  border-color: #156099;
}
@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }
  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 24px 0;
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.3s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: 0%;
  }
}
.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: block;
  padding: 9px 16px;
  text-transform: uppercase;
  font-size: 15px;
  color: #5a5a5a;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active {
  color: #faa51b;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #faa51b;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .main-header .navbar .navbar-collapse .nav-submenu {
    min-width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.168627451);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse .nav-submenu {
    padding: 0px 15px 10px;
    display: none;
  }
  .main-header .navbar .navbar-collapse .nav-submenu.open {
    display: block;
  }
}
.main-header .navbar .navbar-collapse .nav-submenu {
  top: 100%;
  background-color: #fff;
  z-index: 1;
}
.main-header .navbar .navbar-collapse .nav-submenu li a {
  display: block;
  padding: 10px 20px;
}
.main-header .navbar .navbar-collapse .nav-submenu li a:hover {
  color: #faa51b;
}
.main-header .navbar .navbar-collapse .nav-submenu li:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

/* .navbar-toggler {
  position: relative;
  z-index: 99999;
} */
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
.dropdown-lang .dropdown-menu {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}
.dropdown-lang .dropdown-menu li a {
  background-color: #fff;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}
main {
  overflow-x: hidden;
}

.section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.section-home {
  position: relative;
}
.section-home .home-title {
  color: #156099;
}
.section-home .home-text {
  color: #16AA96;
}
@media (min-width: 992px) {
  .section-home {
    padding: 60px 0;
  }
  .section-home .home-title {
    font-size: 4.7rem;
    line-height: 90px;
  }
}
@media (max-width: 991px) {
  .section-home .home-title {
    font-size: 2.4rem;
  }
}

.widget_item-conducive .widget_item-text {
  font-size: 12px;
}
.widget_item-conducive .widget_item-icon {
  height: 60px;
}
.widget_item-conducive .widget_item-icon img {
  max-height: 60px;
}

.widgets_items_category {
  gap: 18px;
}
.widgets_items_category .widget_item_category {
  border: 1px solid #156099;
  background-color: #FFF;
  border-radius: 30px;
  color: #156099;
  display: inline-block;
  padding: 18px 26px;
}
.widgets_items_category .widget_item_category.active {
  background-color: #16AA96;
  border-color: #16AA96;
  color: #FFF;
}
@media (max-width: 991px) {
  .widgets_items_category {
    gap: 9px;
  }
  .widgets_items_category .widget_item_category {
    padding: 8px 9px;
  }
}

.section-courses {
  background-color: #EAF7F5;
}

.widget_item-course {
  height: 100%;
}
.widget_item-course .widget_item-image {
  position: relative;
  padding-top: 81%;
  height: 0;
}
.widget_item-course .widget_item-image img {
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-course .widget_item-content {
  border-radius: 0 0 24px 24px;
}

.section-title {
  font-size: 3.75rem;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2.75rem;
  }
}
.section-conducive{
  position: relative;
}
.section-conducive>*{
  position: relative;
  z-index: 2;
}
.section-conducive::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0px;
  background-color: #EAF7F5;
  z-index: 1;
  left: 0;
  right: 0;
}
.section-conducive .section-content {
  padding: 34px;
  border-radius: 24px;
  /* margin-inline: 7.5%; */
}

.widget_item-partnership {
  height: 100%;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  padding: 30px;
}
.widget_item-partnership .avatar img {
  width: 45px;
  height: 45px;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  transition: width 0.2s ease-in-out;
  background-color: #D9D9D9;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 60px;
  background-color: #D9D9D9;
}

.widget_item-faq {
  padding: 15px 0;
  position: relative;
}
.widget_item-faq:not(:last-of-type)::before {
  border-bottom: 1px solid #156099;
  position: absolute;
  content: "";
  inset-inline-start: 31px;
  width: 100%;
  height: 1px;
  bottom: 0;
}
.widget_item-faq .widget_item-head {
  cursor: pointer;
}
.widget_item-faq .widget_item-head i {
  font-size: 12px;
}
.widget_item-faq .widget_item-head:not(.collapsed) .fa-plus::before {
  content: "\f068";
}
.widget_item-faq .widget_item-description {
  padding-inline-start: 27px;
  margin-top: 8px;
}

.section-faq {
  background-color: #FEF2DD;
}

.bg-header-about {
  background: url(../images/background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
}
.bg-header-about .title {
  font-size: 3.75rem;
  font-weight: 800;
}
@media (max-width: 991px) {
  .bg-header-about {
    padding: 50px 0;
  }
  .bg-header-about .title {
    font-size: 2rem;
  }
}

.widget_item-accreditation .widget_item-icon {
  height: 45px;
}
.widget_item-accreditation .widget_item-icon img {
  max-height: 45px;
}

.widget_item-about {
  padding: 30px 60px;
  border-radius: 30px;
}
.widget_item-about .widget_item-text {
  font-size: 15px;
  line-height: 18px;
}
@media (max-width: 991px) {
  .widget_item-about {
    padding: 20px;
  }
}

.widget_item-mission {
  background-color: #EAF1F6;
}

.widget_item-vision {
  background-color: #EAF7F5;
}

.widget_item-objective {
  background-color: #FEF2DD;
}

.bg-primary-light {
  background-color: #EAF7F5;
}

.widget_item-learning {
  padding: 30px 10px;
  border-radius: 30px;
}

.content-accreditation {
  background: #FFFFFF;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
}

.main-footer {
  background-color: #eaf1f6;
}
.main-footer .footer-top {
  padding: 60px 0 45px;
  border-bottom: 1px solid #16AA96;
}
.main-footer .footer-bottom {
  padding: 15px 0 60px;
}
.main-footer .link-footer a {
  color: #156099;
  display: inline-block;
  font-size: 15px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #156099 !important;
}

.checkout li {
  background-color: #fff;
  height: 27px;
  width: 55px;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout li:not(:last-of-type) {
  margin-inline-end: 12px;
}
.checkout li img {
  max-height: 22px;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 30px;
}
.social-media li a {
  border-radius: 6px;
  width: 21px;
  height: 21px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.3s ease-in-out;
  background-color: #156099;
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: #156099;
}

@media (max-width: 991px) {
  html {
    font-size: 12px;
  }
}/*# sourceMappingURL=main.css.map */

:root[dir="rtl"] :is(.fa-arrow-right, .fa-arrow-left){
  transform: rotate(180deg);
}

.swiper-button-next, .swiper-button-prev{
  --swiper-navigation-size: 16px;
  --swiper-theme-color: #777;
  width: 60px !important;
  height: 60px !important;
  margin-top: unset !important;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 8px;
}

@media (max-width: 991px) {
  .am-loginbtns{
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 16px;
  }
}
.splide__arrow{
  --arrow-width: 60px;
  width: var(--arrow-width);
  height: var(--arrow-width);
  box-shadow: 0px 15px 30px 0px #00000026;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
.splide__arrow--prev,
.splide__arrows--rtl .splide__arrow--next{
  left: calc(-1 * var(--arrow-width) / 2);
}
.splide__arrow--next,
.splide__arrows--rtl .splide__arrow--prev{
  right: calc(-1 * var(--arrow-width) / 2);
}
.am-header_user_menu > a{
  width: 60px;
  height: 60px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EAF1F6;
}

.widget_item-partnership .rating-count{
  font-size: 13px;
  font-weight: 300;
  color: #5A5A5A;
}

.widget_item-partnership :is(.course-name, .instructor-name){
  font-size: 0.75rem;
}

[dir="rtl"] .splide__arrows {
  direction: rtl; /* Reverse arrow positions */
}

[dir="rtl"] .splide__slide {
  float: right; /* Adjust slide alignment */
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.select2+svg{
  display: none;
}
.cr-search-courses-area .accordion{
  --bs-accordion-bg: #EAF7F5;
}

.cr-filter-sidebar{
  background-color: #EAF7F5;
}

.cr-sorting-options .at-form-group .select2-selection__rendered,
.cr-sorting-options .at-form-group + .at-form-group .am-select2, .cr-sorting-options .at-form-group + .at-form-group .select2-selection__rendered{
  padding: 9px;
}

.cr-sorting-options .at-form-group{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cr-sorting-options .at-form-group .cr-option-select{
  inset: unset;
  transform: unset;
  position: static;
}

:root[dir="rtl"] .am-notifywrap .am-allnotifications{
  left: 0;
  right: unset;
}

.cr-course-sidebar{
  z-index: 1;
}

.am-select:before, .am-calendar:before{
  display: none;
}
.am-header_user_notify, .am-header_user_chat{
  box-shadow: unset;
}
.am-header_user_notify i, .am-header_user_chat i{
  font-size: 22px;
}
.row{
  margin: 0;
}
.marquee-slider-wrapper{
  display: flex;
  position: relative;
}
.marquee-slider-slides-wrapper{
  display: flex;
  position: relative;
}
.marquee-slider-slide{
  width: fit-content;
}
.marquee-slider-slide .widget_item-image{
  width: 80px;
  height: 80px;
}
.marquee-slider-slide .widget_item-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .container {
      width: calc(100% - 200px);
  }
}
@media (min-width: 992px) {
  .service-card-row > div:nth-child(odd) {
      padding-inline-start: 0;
  }
}

#main-loader{
  z-index: 999999999999;
  top: 0;
  left: 0;
  width:100vw;
  height: 100vh;
  position: fixed;
  background: linear-gradient(45deg,#156099, #16AA96, #FAA51B);
  background-size: 600% 100%;
  animation: gradient 5s linear infinite;
  animation-direction: alternate;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes gradient {
  0% {background-position: 0%}
  100% {background-position: 100%}
}


.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: #fff;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.desktop-view{
  display: none;
}
@media (min-width: 768px) {
  .mobile-view{
    display: none;
  }
  .desktop-view{
    display: block;
  }
}