@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.simple-section {
  padding: 80px 0;
}
.simple-section.light-gray {
  background: rgba(241, 241, 241, 0.6980392157);
}
.simple-section.whitesmoke {
  background: #f3f3f3;
}
.simple-section.black-bg {
  background-color: #25272a;
}

.section-title h3 {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 0;
}
.section-title h3 span {
  color: #f83033;
}
.section-title h3.black {
  color: #25272a;
}
.section-title h3.white {
  color: #ffffff;
}
.section-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #4a5565;
}
.section-title p.text-center {
  max-width: 650px;
  margin: auto;
}
.section-title p.white {
  color: rgba(255, 255, 255, 0.8);
}
.section-title p.small-text {
  font-size: 16px;
}
.section-title h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 10px;
}
.section-title h6.green {
  color: #149741;
}
.section-title h6.primary {
  color: #f83033;
}

@media screen and (max-width: 768px) {
  .section-title h3 {
    font-size: 28px;
  }
  .section-title h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .simple-section {
    padding: 50px 10px;
  }
}
.hero-slider .slick-slide {
  padding: 0 !important;
}

.hero-section {
  position: relative;
  width: 100%;
  background-image: url("../images/banner.png");
  background-size: cover;
}
.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 100px 20px;
}
.hero-section .hero-content {
  text-align: center;
}
.hero-section .hero-content h1 {
  font-weight: 900;
  font-size: 70px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
  max-width: 850px;
  margin: auto;
}
.hero-section .hero-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 20px auto;
}
.hero-section .hero-content p.about {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.search-container {
  max-width: 550px;
  margin: 40px auto 50px auto;
}
.search-container .search-box {
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #ffffff;
}
.search-container .search-box input {
  border: none;
  box-shadow: none;
  flex: 1;
  padding: 15px;
  font-size: 16px;
}
.search-container .search-box input:focus {
  outline: none;
  box-shadow: none;
}
.search-container .search-box .search-btn {
  border: none;
  background: #25272a;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin-right: 3px;
}
.search-container .search-box .search-btn i {
  font-size: 20px;
}

.button-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 38px;
  }
}
.button {
  display: inline-block;
  padding: 12px 24px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.button.small-button {
  width: 100%;
  padding: 4px 10px;
  border-radius: 4px !important;
}
.button.button-primary {
  background: #f83033;
  color: #ffffff;
}
.button.button-primary:hover, .button.button-primary:focus {
  background-color: #b0101a;
  color: #ffffff;
}
.button.button-secondary {
  background: #149741;
  color: #ffffff;
}
.button.button-white {
  background-color: #ffffff;
  color: #f83033;
  border: 1px solid #ffffff;
}
.button.button-white:hover, .button.button-white:focus {
  background-color: rgba(255, 255, 255, 0.062745098);
  color: #ffffff;
  border-color: #ffffff;
}
.button.button-outline-primary {
  border-color: #f83033;
  color: #f83033;
}
.button.button-outline-primary:hover, .button.button-outline-primary:focus {
  background-color: #e0131f;
  color: #ffffff;
  border-color: transparent;
}
.button.button-outline-secondary {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.button.button-outline-secondary:hover, .button.button-outline-secondary:focus {
  background: #fff;
  color: #25272a;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.button.button-round {
  border-radius: 30px;
}
.button.button-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.button.button-icon svg {
  width: 20px;
}
.button.button-icon i {
  font-size: 20px;
}

.equipment-box {
  display: block;
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
  padding: 0 10px 25px 0;
  min-height: 187px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.equipment-box img {
  max-width: 100%;
  height: auto;
}
.equipment-box p {
  margin: 20px 0 0 0;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #25272a;
}
.equipment-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.05);
}

.aim-section {
  background-image: url("../images/aim-banner.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
}
.aim-section p {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  text-align: center;
  max-width: 725px;
  margin: auto;
  color: rgba(255, 255, 255, 0.6980392157);
}

.about p {
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}
.about .about-image img {
  width: 100%;
  border-radius: 12px;
}

.contact .map-image iframe {
  width: 100%;
  border-radius: 12px;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}
.equal-height > div {
  display: flex;
}
.equal-height > div .eq-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fixed-contact-icons {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 15px;
  background: #fff;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  box-shadow: -2px 0px 14px 3px rgba(0, 0, 0, 0.1019607843);
}
.fixed-contact-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.fixed-contact-icons a img {
  width: 36px;
}
.fixed-contact-icons a p {
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  color: #000;
  margin: 10px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fixed-contact-icons {
    bottom: 0;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    padding: 10px 0;
    border-radius: 12px 12px 0 0 !important;
    width: 100%;
    gap: 0;
  }
  .fixed-contact-icons a {
    flex: 1;
  }
  .fixed-contact-icons a img {
    width: 20px;
  }
  .fixed-contact-icons a p {
    font-size: 8px;
    margin: 5px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .aim-section p,
  .about p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
/* main card */
.theme-card {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
.theme-card a {
  text-decoration: none;
}
.theme-card .badge {
  position: absolute;
  top: 25px;
  left: 21px;
  background: rgba(0, 0, 0, 0.5019607843);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
}
.theme-card .pt-img {
  overflow: hidden;
  border-radius: 10px;
}
.theme-card .pt-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.theme-card .pt-img:hover img {
  transform: scale(1.1);
}
.theme-card .info {
  padding: 23px;
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
}
.theme-card .info .details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.theme-card .info .details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.theme-card .info .details-list li p {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: 0;
  color: #25272a;
}
.theme-card .info .details-list li:last-child {
  border-bottom: none;
}
.theme-card .info h4 {
  font-weight: 700;
  font-size: 18px;
  color: #25272a;
  min-height: 45px;
}
.theme-card .info h3 {
  font-weight: 800;
  font-size: 22px;
  color: #25272a;
  margin-bottom: 0;
}
.theme-card .info a {
  padding: 8px 24px;
}
.theme-card .info .full-width {
  width: 100%;
}
.theme-card .info .full-width a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-text i {
  color: rgba(0, 0, 0, 0.3019607843);
  font-size: 24px;
}
.icon-text span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(37, 39, 42, 0.6980392157);
}
.icon-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #25272a;
}
.icon-text.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.align-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Card */
.brand-card {
  text-align: center;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
}
.brand-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

/* review card */
.reviews-card {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 12px;
}
.reviews-card .head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.reviews-card .head .avatar {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: #25272a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-card .head .info h6 {
  font-weight: 700;
  font-size: 16px;
  color: #25272a;
  margin: 0;
}
.reviews-card .head .info p {
  font-weight: 400;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}
.reviews-card .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6980392157);
}
.reviews-card .rating-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews-card .rating-stars i {
  font-size: 16px;
  color: #efb30c;
}

.ct-card {
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  height: 100%;
}
.ct-card strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  color: #25272a;
}
.ct-card h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 29px;
  color: #f83033;
}
.ct-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin-bottom: 10px;
}
.ct-card p a {
  color: rgba(0, 0, 0, 0.6980392157);
  text-decoration: underline;
}
.ct-card .ct-detail {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ct-card .ct-detail li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-card .ct-detail li a i {
  color: #f83033;
  font-size: 24px;
}
.ct-card .ct-detail li a span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #25272a;
}
.ct-card .divider {
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}

@media screen and (max-width: 768px) {
  .align-between {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.slick-arrow {
  position: absolute;
  top: 50%;
  background: #f83033;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-arrow svg {
  fill: currentColor;
  color: white;
}

.slick-arrow:hover {
  background: #f83033;
  transform: translateY(-50%) scale(1.1);
}
.slick-arrow:hover svg {
  fill: currentColor;
  color: #ffffff;
}

.slick-next {
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: #f83033;
}
.slick-next svg {
  fill: currentColor;
  color: #ffffff;
}

.slick-prev {
  left: -20px;
  width: 40px;
  height: 40px;
  background-color: #f83033;
}
.slick-prev svg {
  fill: currentColor;
  color: #ffffff;
}

/* Dots */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-bottom: -30px !important;
}

.slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  margin: 0 6px;
  opacity: 0.7;
  padding: 0;
  transition: all 0.3s ease;
}

.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  position: relative;
  background-color: #f83033;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  border: none;
}

.slick-dots li.slick-active button:before {
  color: unset;
}

.slick-dots li button:before {
  color: unset;
}

/* remove default slick pseudo icons */
.slick-next:before,
.slick-prev:before {
  content: none;
}

.slick-next:focus,
.slick-prev:focus {
  background-color: #f83033;
}
.slick-next:focus svg,
.slick-prev:focus svg {
  fill: currentColor;
  color: #ffffff;
}

/* padding */
.slick-slide {
  padding: 0 10px;
}

/* Gallery slider (ligth-slider) */
.product-gallery .lightSlider li img {
  width: 100%;
}

.lSPager.lSGallery img {
  border: 2px solid transparent;
}
.lSPager.lSGallery img:hover {
  border-radius: 10px;
}

.filter-widget {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.filter-widget .count {
  background: #ddd;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #25272a;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-widget .filter-title {
  font-weight: 600;
  font-size: 20px;
  color: #f83033;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.filter-widget .filter-title i {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.filter-widget .filter-title.open {
  margin-bottom: 20px;
}
.filter-widget .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-widget .filter-list li {
  margin-bottom: 8px;
}
.filter-widget .filter-list li a {
  text-decoration: none;
  color: #25272a;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-widget .form-check {
  margin-bottom: 5px;
}
.filter-widget .form-check .form-check-label {
  font-size: 14px;
  color: #25272a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-widget .price-input {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.filter-widget .price-input input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 5px 8px;
}

.short-by {
  display: flex;
  align-items: center;
  gap: 20px;
}
.short-by label {
  text-wrap: nowrap;
  margin-bottom: 0;
}
.short-by select {
  border: 1px solid #ddd;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #25272a;
  cursor: pointer;
}
.short-by select:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: none;
}

.showing-product-number span {
  font-weight: 600;
  color: #001010;
  font-size: 16px;
}

.category-card {
  position: relative;
  text-align: center;
  padding: 10px;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}
.category-card:hover {
  border-color: #f83033;
  transform: scale(1.1);
}
.category-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: auto;
}
.category-card p {
  margin-top: 12px;
  font-weight: 600;
}
.category-card > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .short-by,
  .showing-product-number {
    text-align: center !important;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
}
.filter-button {
  border: none;
  background-color: transparent;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.filter-button i {
  font-size: 26px;
  color: #4a5565;
}
.filter-button strong {
  font-size: 20px;
  font-weight: 700;
  color: #25272a;
}

.sidebar {
  background: #ffffff;
}

@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    z-index: 1050;
    transition: left 0.3s ease;
    padding: 1rem;
  }
  .sidebar.active {
    left: 0;
  }
  .overlay.show {
    display: block;
  }
}
.pagination .page-link {
  color: #f83033;
}
.pagination .page-link:hover {
  color: #fff;
  background-color: #f83033;
  border-color: #f83033;
}
.pagination .active .page-link {
  background-color: #f83033;
  border-color: #f83033;
  color: #ffffff;
}

.product-detail-content h3 {
  font-size: 30px;
  color: #25272a;
  font-weight: 700;
}
.product-detail-content h3.primary {
  color: #f83033;
  font-weight: 400;
  font-size: 25px;
}
.product-detail-content .text {
  font-size: 14px;
  color: #000000;
  margin: 30px 0;
}
.product-detail-content .product-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-detail-content .product-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.product-detail-content .product-info li strong {
  font-size: 18px;
  font-weight: 700;
}
.product-detail-content .product-info li p {
  font-size: 18px;
  margin-bottom: 0;
}

.video iframe {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Public Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #f83033;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.031372549);
}
.sticky-header .top-bar {
  display: none;
}

.top-bar {
  background: #000000;
}
.top-bar .slim-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.top-bar .slim-bar .top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar .slim-bar .sb-email {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar .slim-bar .sb-email i {
  color: #f83033;
  font-size: 22px;
}
.top-bar .slim-bar .sb-email span {
  font-size: 16px;
  color: #ffffff;
}
.top-bar .slim-bar .sb-icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.top-bar .slim-bar .sb-icons li a {
  text-decoration: none;
}
.top-bar .slim-bar .sb-icons li a i {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
}

.main-header {
  background: #25272a;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.031372549);
}
.main-header .navbar-nav {
  display: flex;
  gap: 10px;
}
.main-header .navbar {
  background: #25272a;
  padding: 10px 0;
}
.main-header .navbar .navbar-brand img {
  width: 140px;
}
.main-header .nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  transition: color 0.3s ease;
  color: #ffffff;
}
.main-header .nav-link:hover {
  color: #f83033;
}
.main-header .navbar-toggler {
  border: none;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}

.line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
}

.line2 {
  stroke-dasharray: 60 60;
}

.line3 {
  stroke-dasharray: 60 207;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

@media screen and (max-width: 768px) {
  .top-bar .slim-bar {
    justify-content: center;
    padding: 6px 20px;
    flex-wrap: wrap;
  }
  .menu {
    display: block;
  }
  .right-side {
    margin-top: 20px;
  }
  .right-side a {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }
  .main-header .navbar {
    background: #25272a;
  }
  .main-header .navbar .navbar-brand img {
    width: 70px;
  }
  header .navbar-nav {
    margin: 20px 0 !important;
    text-align: center;
  }
  header .right-side {
    margin: 20px;
  }
}
.footer {
  background-color: #1d1f22;
  font-size: 14px;
}
.footer .ft-logo {
  text-align: center;
}
.footer .ft-logo img {
  width: 140px;
}
.footer .info-box {
  background-color: #000000;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .info-box .icon i {
  font-size: 36px;
  color: #ffffff;
}
.footer .info-box p {
  font-weight: 200;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6980392157);
  margin-bottom: 5px;
}
.footer .info-box a {
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
}
.footer .info-box a:hover {
  text-decoration: none;
}
.footer h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .list-unstyled {
  padding-left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .list-unstyled li .footer-link {
  color: rgba(255, 255, 255, 0.6980392157);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}
.footer .list-unstyled li .footer-link:hover {
  text-decoration: underline;
  color: #ffffff;
}
.footer .footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-social li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer .footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer .footer-social i {
  font-size: 22px;
}
.footer .copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 30px;
  color: #ffffff;
  font-size: 14px;
}
.footer .copyright-section p {
  margin: 0; /* mb-0 */
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 10px;
  }
}
.form-group label {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.form-group input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
}
.form-group input::placeholder {
  color: rgba(0, 0, 0, 0.3019607843);
}
.form-group input:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.form-group textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
}
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3019607843);
}
.form-group textarea:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

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