@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
header .top-bar {
  padding: 0.5rem 0;
  color: white;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
header .top-bar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;
  font-size: 0.9375em;
}
header .top-bar a:hover {
  color: #3498db;
}
header .main-header {
  padding: 1.6rem 0;
}
header .main-header .logo {
  width: 100%;
}
header .main-header .logo img {
  width: 80%;
}
header .main-header .search-container {
  background-color: white;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
header .main-header .form-select-custom {
  border: none;
  border-radius: 6px 0 0 6px;
  height: 50px;
  padding-left: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563eb' viewBox='0 0 16 16'%3E%3Cpath d='M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10z'/%3E%3Cpath d='M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px;
}
header .main-header .search-input-custom {
  border: none;
  height: 50px;
  padding: 10px 15px;
  width: 100%;
}
header .main-header .search-input-custom:focus {
  outline: none;
  box-shadow: none;
}
header .main-header .search-btn-custom {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 0 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
header .main-header .search-btn-custom:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

@media (max-width: 768px) {
  header .top-bar {
    padding: 0.2rem 0;
  }
  header .main-header {
    padding: 0.4rem 0;
  }
  header .main-header .logo {
    width: 100%;
    margin-bottom: 5px;
  }
  header .main-header .logo img {
    width: 50%;
  }
  header .main-header .search-title {
    font-size: 24px;
  }
  header .main-header .form-select-custom {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 6px 6px 0 0;
  }
  header .main-header .search-input-custom {
    border-radius: 0;
  }
  header .main-header .search-btn-custom {
    border-radius: 0 0 6px 6px;
    width: 100%;
  }
}
.footer {
  background-color: #2563eb;
  color: white;
  padding: 70px 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 20px;
  margin-right: 12px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: var(--transition);
}
.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-links a i {
  margin-right: 8px;
  font-size: 12px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
}

.footer-contact-text {
  font-size: 14px;
}

.footer-newsletter p {
  margin-bottom: 20px;
}

.footer-newsletter-form {
  position: relative;
}

.footer-newsletter-input {
  width: 100%;
  padding: 12px 15px;
  padding-right: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--border-radius);
  color: var(--light-text);
}
.footer-newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter-btn:hover {
  opacity: 0.9;
}

.footer-bottom {
  background-color: #124fd8;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

nav {
  width: 100%;
  box-shadow: 0 4px 10px rgba(145, 147, 147, 0.3);
}

.home-feature-main-container {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.feature-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  flex-shrink: 0;
}
.feature-card {
  padding: 1.5rem;
  transition: transform 0.3s ease;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-content {
  text-align: left;
}
.feature-content h5 {
  margin-bottom: 0.5rem;
  font-size: 13px;
  font-weight: bold;
}
.feature-content p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 12px;
}

.slider-container {
  background: red;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.slider-container .main-slider {
  position: relative;
  margin-bottom: 40px;
}

.slide-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  display: flex !important;
  align-items: center;
}
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    min-height: auto;
  }
}
.slide-content .slide-text {
  padding: 60px 50px;
  flex: 1;
}
.slide-content .slide-text .badge {
  background: #e9ecef;
  color: #6c757d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.slide-content .slide-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .slide-content .slide-text h2 {
    font-size: 2rem;
  }
}
.slide-content .slide-text p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-custom {
  background: #6c757d;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-custom:hover {
  background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-custom::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.btn-custom:hover::after {
  transform: translateX(5px);
}

.slide-media {
  flex: 1;
  position: relative;
  min-height: 400px;
}
@media (max-width: 768px) {
  .slide-media {
    min-height: 250px;
  }
}
.slide-media img,
.slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 768px) {
  .slide-media img,
  .slide-media video {
    border-radius: 0 0 20px 20px;
  }
}

.price-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.side-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.side-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.side-card .side-card-content {
  display: flex;
  align-items: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .side-card .side-card-content {
    flex-direction: column;
    text-align: center;
  }
}
.side-card .side-card-content .side-card-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .side-card .side-card-content .side-card-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.side-card .side-card-content .side-card-image img,
.side-card .side-card-content .side-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-card .side-card-content .side-card-text h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #212529;
}
.side-card .side-card-content .side-card-text .price {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 15px;
}
.side-card .side-card-content .side-card-text .btn-sm {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.side-card .discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  font-size: 2rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4e73df;
  border-radius: 2px;
}
.section-description {
  font-size: 1.1rem;
  max-width: 600px;
}

.category-card {
  padding: 10px;
  height: auto;
}
.category-icon {
  font-size: 2rem;
  color: #4e73df;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease-in-out;
}
.card:hover .category-icon {
  transform: scale(1.1);
}
.category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.category-count {
  color: #858796;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.category-slider .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  margin: 0 5px;
}
.category-slider .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 2rem 0 rgba(58, 59, 69, 0.3);
}
.category-slider .card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.category-slider .card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.card:hover .category-slider .card-img-top {
  transform: scale(1.05);
}

.slider-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background-color: #4e73df;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.nav-btn:hover {
  background-color: #4e73df;
  opacity: 0.9;
  transform: translateY(-2px);
}
.nav-btn i {
  font-size: 14px;
}

.category-slider {
  margin: 0 -10px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.category .slick-prev, .category .slick-next {
  display: none !important;
}
.category .slick-dots {
  bottom: -30px;
}
.category .slick-dots li button:before {
  font-size: 8px;
  color: #4e73df;
}
.category .slick-dots li.slick-active button:before {
  color: #4e73df;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.75rem;
  }
  .section-description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .section-header {
    flex-wrap: wrap;
    gap: 15px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .category-icon {
    font-size: 1.75rem;
  }
  .category-title {
    font-size: 1rem;
  }
  .card-img-wrapper {
    padding-top: 75%;
  }
  .nav-btn {
    width: 30px;
    height: 30px;
  }
  .nav-btn i {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .category-slider {
    margin: 0 -5px;
  }
  .category-card {
    padding: 5px;
  }
  .slick-dots {
    bottom: -25px;
  }
}
body {
  overflow-x: hidden;
}

.featured-jobs {
  padding: 80px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}
.featured-jobs .container {
  padding-bottom: 50px;
}
.featured-jobs .section-title {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .featured-jobs .section-title h2 {
    font-size: 1.8rem;
  }
}

.job-slider {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .job-slider {
    margin: 0 -10px;
  }
}

.job-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  height: auto;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .job-card {
    margin: 10px;
    padding: 20px;
  }
}
.job-card .company-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}
.job-card .job-title {
  color: #2d3436;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.job-card .company-name {
  color: #636e72;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.job-card .job-tags {
  margin: 15px 0;
}
.job-card .job-tags .job-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 5px;
}
.job-card .job-info {
  color: #636e72;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.job-card .featured-badge {
  background: #ffeaa7;
  color: #fdcb6e;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 10px;
}

.slick-prev,
.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}
.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: #2d3436;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

@media (max-width: 768px) {
  .slick-dots {
    bottom: -30px;
  }
  .slick-dots li button:before {
    font-size: 12px;
  }
}

.slick-list {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .featured-jobs {
    padding: 40px 0;
  }
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0d6efd;
}

.blog-card {
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
}
.blog-card:hover .card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}
.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #20c997;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  z-index: 1;
}

.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.4;
}
.card-text {
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-date {
  font-size: 0.85rem;
}

.btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
  padding: 6px 15px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .blog-image-wrapper {
    min-height: 200px;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  .blog-image-wrapper {
    min-height: 180px;
  }
  .card-body {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .blog-image-wrapper {
    min-height: 160px;
  }
}
.home-news {
  background: red;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-text: #777;
}

.testimonial-section {
  padding: 80px 0;
  background-color: red;
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }
}
.testimonial-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .testimonial-section .section-title {
    margin-bottom: 40px;
  }
}
.testimonial-section .section-title h2 {
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  padding-bottom: 15px;
}
.testimonial-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}
.testimonial-section .testimonial-slider .testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: all 0.3s ease;
}
.testimonial-section .testimonial-slider .testimonial-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-slider .testimonial-item {
    padding: 20px;
  }
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-content p {
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 0;
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-color);
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-info h4 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-info h4 {
    font-size: 16px;
  }
}
.testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-info p {
  color: var(--light-text);
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-slider .testimonial-item .testimonial-author .author-info p {
    font-size: 13px;
  }
}
.testimonial-section .slick-prev,
.testimonial-section .slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonial-section .slick-prev:hover,
.testimonial-section .slick-next:hover {
  background: #2980b9;
}
.testimonial-section .slick-prev::before,
.testimonial-section .slick-next::before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 1;
}
.testimonial-section .slick-prev {
  left: -50px;
}
@media (max-width: 768px) {
  .testimonial-section .slick-prev {
    left: -10px;
  }
}
.testimonial-section .slick-next {
  right: -50px;
}
@media (max-width: 768px) {
  .testimonial-section .slick-next {
    right: -10px;
  }
}
.testimonial-section .slick-dots li button::before {
  font-size: 12px;
  color: var(--primary-color);
}
.testimonial-section .slick-dots li.slick-active button::before {
  color: var(--primary-color);
}

/*# sourceMappingURL=frontend.css.map */
