<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*############################## Vacancies ##############################*/
.title-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-margin {
  margin-top: 60px;
}
.fixed-width {
  width: 200px; /* Fixed width for the description column */
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Show ellipsis for overflowed text */
  white-space: nowrap; /* Prevent text wrapping */
}

/*############################## Teachers ##############################*/

.blog-item {
  display: flex;
  flex-direction: column;
  height: 100%; /* Allow the item to take full height of its container */
}

.blog-item__content {
  flex-grow: 1; /* Allow the content area to expand */
}

/* Optional: Style for the whole card */
.grid-item {
  display: flex;
  flex-direction: column; /* Ensure vertical stacking */
}
.name-limit {
  display: -webkit-box; /* For older WebKit browsers */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Limit to 1 line */
  overflow: hidden; /* Hide overflowed content */
  text-overflow: ellipsis; /* Add ellipsis (...) for overflow */
}

/* Existing description styles */
.description-limit {
  display: -webkit-box; /* For older WebKit browsers */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Limit to 1 line */
  overflow: hidden; /* Hide overflowed content */
  text-overflow: ellipsis; /* Add ellipsis (...) for overflow */
}

/*##############################  Assign Teachers ##############################*/
.assign-teacher {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #dee2e6; /* Light gray border */
  border-radius: 5px; /* Rounded corners */
  background-color: #f8f9fa; /* Light background color */
}
.select-box-assign-teacher {
  width: 200px;
  height: 150px;
  margin: 0 10px; /* Added margin for spacing */
}
.buttons-assign-teacher {
  margin: 20px 0; /* Adjusted margin for the button container */
  text-align: center; /* Centered buttons */
}
.buttons-assign-teacher button {
  display: block; /* Stack buttons vertically */
  margin: 5px auto; /* Center buttons with margin */
}

.library-section {
  margin-top: 80px;
}



/* Adjusts height and padding of the select2 input */
.select2-container .select2-selection--multiple {
  min-height: 35px;
  max-height: 35px;
  padding: 2px 4px;
  overflow-y: hidden;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  padding: 2px 5px;
  font-size: 0.9em;
  margin-top: 2px;
}


/* Ensure FullCalendar fits the mobile screen */
@media (max-width: 768px) {
  #calendar {
    min-height: 100vh !important; /* Full screen height */
    max-height: none !important;  /* Remove height limits */
  }
      #stepCaption .caption-top  {
      font-size: 18px !important;
    }
  
    #stepCaption .caption-bottom {
      font-size: 18px !important;  
    
    }
}

/* Apply full width to the .iti container and input on mobile screens (max 767px) */
@media (max-width: 767px) {
  .iti {
    width: 100% !important;
  }

  .iti input {
    width: 100% !important;
  }


}

/* Apply full width to .iti and related classes on all screen sizes */
.iti,
.iti--allow-dropdown,
.iti--show-flags,
.iti--inline-dropdown {
  width: 100% !important;
}




/* Ensure the instructor card stays within its container */
.instructor-item-02 {
  max-width: 100%;
  overflow: visible; /* Keep borders visible */
}

/* Prevent text overflow inside the card */
.instructor-item-02__content {
  max-width: 100%;
  overflow: hidden;
}

/* Keep the name in one line with ellipsis if too long */
.instructor-item-02__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0;
  color: #002A68;
}

/* Align radio button and label properly */
.widget-filter__item {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

/* Prevent long names from breaking layout */
.widget-filter__item label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: calc(100% - 20px);
}




/*##############################  Hide  swiper-pagination on mobile ##############################*/

/* Ensure the arrows are visible by default */
.swiper-button-next, .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white; /* Arrow color */
  width: 40px; /* Size of the arrow */
  height: 40px; /* Size of the arrow */
  border-radius: 50%; /* Circular shape */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Position the next and prev buttons */
.swiper-button-next {
  right: 10px; /* Position the right arrow */
}

.swiper-button-prev {
  left: 10px; /* Position the left arrow */
}

/* Hide the pagination on mobile */
@media (max-width: 768px) {
  .swiper-pagination {
    display: none !important;
  }

  /* Optional: Adjust size of the arrows for mobile if needed */
  .swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}





/* Ensure the wrapper has proper scrolling enabled */
.scrollable-calendar-wrapper {
  height: 400px; /* or 100vh or whatever you need */
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Make sure the calendar itself does not overflow vertically or wrap */
#calendar {
  display: flex; /* Prevent wrapping */
  min-width: 100%; /* Ensure it takes up the minimum width */
  white-space: nowrap; /* Prevent wrapping */
}

/* Optional: Adjust calendar height for smaller screens */
@media (max-width: 768px) {
  #calendar-wrapper {
    height: 300px; /* Adjust height for mobile view */
  }
}
.fc-header-toolbar {
  margin-top: 20px; /* or whatever value you like */
}


/*##############################  free-assessment-btn ##############################*/

.free-assessment-btn {
  position: fixed;
  left: 50px;
  bottom: 60px;
  z-index: 999;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  display: block;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  overflow: hidden;
  background-color: #17A2B8;
  border-color: #17A2B8;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
}

.free-assessment-btn:hover {
  background-color: #17A2B8;
}
@media only screen and (max-width: 767px) {
  .free-assessment-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
  }
}
.free-assessment-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*##############################  Login Custom card  ##############################*/

/* Custom card styling */
.custom-card {
  min-height: 500px; /* Ensure enough height for content */
  background: #9EDEF91F; /* Clean white background */
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); */
  padding: 30px; /* Add space inside the card */
  border-radius: 15px; /* Smooth rounded corners */
  transition: all 0.4s ease-in-out; /* Smooth transition for interactive effects */
  overflow: hidden; /* Ensure content fits neatly */
}
.text-register{
  font-family: 'Roboto',sans-serif;
  font-size:30px ;
  font-weight: 700;
  line-height: 125%;
  color: #002A68;
}
.text-register-small{
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 100%;
  color: #808080;
}
.text-register-small a {
  color: #42ADD8 !important;
}
.label-register{
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 125%;
  color: #2D3748;
}

/* Hover effect on card */
/* .custom-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
} */

/* Input styling for a more refined look */
.custom-card .form-control {
  border-radius: 6px; /* Rounded edges for inputs */
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #808080;
  box-shadow: none; /* Remove input box shadow */
  transition: border 0.3s ease; /* Smooth transition when focused */
  margin-bottom: 20px; /* Space between inputs */
  border: #9EDEF9 1px solid;
  background-color: #FFFFFF;
}
.select2-container {border-radius: 6px;
  /* Rounded edges for inputs */
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #808080;
  box-shadow: none;
  /* Remove input box shadow */
  transition: border 0.3s ease;
  /* Smooth transition when focused */
  margin-bottom: 20px;
  /* Space between inputs */
  border: #9EDEF9 1px solid;
  background-color: #FFFFFF;
}
.select2-container--open{
  border:none;
}
.select2-container .select2-selection--single {
  height: auto !important;
}

/* Focused input effect */
.custom-card .form-control:focus {
  border-color:  #17A2B8;; /* Blue border on focus */
  box-shadow: 0 0 8px rgba(0, 102, 204, 0.5); /* Soft glow effect */
}

/* Submit button with modern hover effect */
.custom-card .btn-primary {
  background-color: #002A68; /* Primary blue background */
  border-radius: 7px; /* Rounded button */
  padding: 28px; /* Larger padding for comfort */
  font-weight: 700; /* Bold text */
  text-transform: uppercase; /* Uppercase text for emphasis */
  letter-spacing: 0%; /* Space between letters */
  transition: background-color 0.3s ease, transform 0.3s ease;
  line-height: 125%;
  font-family: 'Roboto',sans-serif;
  font-size: 25px;
}

/* Button hover effect */
.custom-card .btn-primary:hover {
  background-color:  #17A2B8;; /* Darker blue on hover */
  transform: scale(1.05); /* Slight grow effect on hover */
}

/* Error message styling */
.alert {
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 10px;
  padding: 15px;
  background-color: #f8d7da; /* Light red background for error */
  color: #721c24; /* Dark red text */
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .custom-card {
    padding: 20px; /* Reduce padding on smaller screens */
  }

  .custom-card .form-control {
    padding: 12px; /* Less padding for mobile */
  }

  .custom-card .btn-primary {
    padding: 12px;
    font-size: 14px; /* Adjust button size for mobile */
  }
}

/*!* Mobile-friendly: ensure the container has a minimum height on small screens *!*/
/*@media (max-width: 767px) {*/
/*  .container {*/
/*    min-height: 90vh; !* Ensure the card takes up most of the screen on mobile *!*/
/*  }*/
/*}*/


.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  position: relative;
}

.slider .list {
  display: flex;
  width: max-content; /* allow list to exceed slider width */
  animation: scrollList 60s linear infinite;
}

.slider .item {
  width: var(--width);
  height: var(--height);
  flex-shrink: 0;
}

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

@keyframes scrollList {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* Adjust as needed */
  }
}

/*############################## Swal Alert ##############################*/

#stepCaption .caption-top {
  color: #002b5c;
  font-family: 'Roboto',sans-serif;
  font-size: 25px;
  display: block;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 125%;
}

#stepCaption .caption-bottom {
  color: #42ADD8;
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  display: block;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 125%;
}

.swal-title-center {
  text-align: center; /* Centers the title */
}

/*Steps page banner - simplified*/
.banner-image-steps {
  /* display: block !important; */
  /* width: 100% !important; */
  /* height: auto !important; */
  /* object-fit: cover !important; */
}


/*!*Steps page banner*!*/
/*.banner-image-steps {*/
/*  display: none !important;*/
/*  width: 100% !important;*/
/*  height: auto !important;*/
/*  object-fit: cover !important;*/
/*}*/

/*.banner-image-steps.active-banner {*/
/*  display: block !important;*/
/*}*/


/*================================= Embedded Stripe payment form ================================*/
.StripeElement {
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  transition: box-shadow 150ms ease;
}
.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
  border-color: #80bdff;
}
.StripeElement--invalid {
  border-color: #dc3545;
}
.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}</pre></body></html>