* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --w-desctop: 1280px;
  --red-color: #db0032;
}

body {
  background-color: #f2f2f2;
  font-family: Oswald, sans-serif;
}

/* HEADER */


a {
  text-decoration: none;
}

ul {
  list-style: none;
}

h3 {
  font-size: 29px;
  line-height: 33px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

p,
span {
  font-size: 15px;
  color: #5d5f60;
  line-height: 22px;
  margin-bottom: 15px;
  font-weight: 800;
}

header {

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HEADER TOP */
.header--top {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.header--top .logo {
  align-self: self-start;
}

.header--top .header--top_info {
  display: flex;
  flex-direction: column;
}

.header--top .header--top_info span {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 4px;
  color: var(--red-color);
  text-align: right;
  font-weight: 600;
}

.header--top .header--top_info a {
  text-decoration: none;
  text-align: right;
}

.header--top .header--top_info a span {
  font-size: 18px;
  line-height: 20px;

  color: #000;
}


/* HEADER NAV */

header nav {
  background: #000;

}

header nav ul {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul li.active {
  border-bottom: 2px solid var(--red-color);
}

header nav ul li.border--white {
  outline: 1px solid #FFF;
  padding: 0 10px;
}



header nav ul li a {
  display: block;
  color: #FFF;
  font-size: 15px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  padding: 7px 0 8px;
  transition: all .3s ease;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  position: relative;
  margin: 0 14px;
}

/* MAIN */

main {}

/* intro */
section.intro {}

section.intro .sliders {}

section.intro .sliders .slide {}

/* welcome */
section.welcome {
  display: flex;
  flex-direction: column;

}

.welcome--top {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}

.welcome--top .welcome--title {
  position: relative;
  align-self: flex-start;
  padding: 5px 0;
}

.welcome--top .welcome--title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red-color);
  width: 35px;
  height: 4px;
}

.welcome--top .welcome--title h3 {}

.welcome--top .welcome--info {
  max-width: 660px;
  width: 100%;
}

.welcome--cards-wrapper {
  width: 100%;
  padding: 50px 0;
  background-image: url(./assets/img/bg-welcome.jpg);

  background-position: center;
  margin: 0 auto;
}

.welcome--cards {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome--cards .welcome--card a {
  width: 300px;
  height: 200px;
  background-color: #fff;
  outline: 1px solid var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.welcome--cards .welcome--card a:hover {
  outline: 1px solid #000;
}

.welcome--cards .welcome--card .icon {}

.welcome--cards .welcome--card h3 {
  text-align: center;
}

/* all_online */

section.all_online {
  max-width: var(--w-desctop);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.all_online--services {
  width: 100%;
  background-image: url('./assets/img/bg-online.jpg');
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 30px;
  padding: 50px 30px;
}

.all_online--services .title {
  display: flex;
  align-items: center;
  gap: 30px;
}

.all_online--services .title .logo {}

.all_online .all_online--services .title .title--text {}

.all_online .all_online--services .title .title--text h3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
}

.all_online .all_online--services .title .title--text span {
  line-height: 22px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}

.all_online .all_online--services .links--list {}

.all_online .all_online--services .links--list ul {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 2fr);
  grid-template-rows: repeat(2, 2fr);
}

.all_online .all_online--services .links--list ul li {
  padding: 10px 0;
  outline: 1px solid #fff;
  text-align: center;
}

.all_online .all_online--services .links--list ul li:hover {
  background-color: #fff;
}

.all_online .all_online--services .links--list ul li:hover a {
  color: #000;
}

.all_online .all_online--services .links--list ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 33px;
  text-transform: uppercase;
}

.all_online--info {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  width: 100%;
  height: 304px;
  background-color: var(--red-color);
}

.all_online--info h4 {
  color: #fff;
  margin: 10px 0;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  font-weight: 300;
}

.all_online--info p {
  font-size: 15px;
  color: #fff;
  line-height: 22px;
  text-align: center;
  font-weight: 300;
}

.all_online--info p span.note {
  font-size: 9px;
  font-style: italic;
  color: #fff;
  text-align: center;
  font-weight: 300;
}


/* our_services */

section.our_services {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 30px;
}

.our_services .title {
  width: 100%;
  /* margin-bottom: 30px; */
}

.our_services .title h3 {
  position: relative;
  padding-top: 5px;
}

.our_services .title h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red-color);
  width: 35px;
  height: 4px;
}

.our_services .cards-services {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.our_services .cards-services .card-sevices {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;


  cursor: pointer;
}

.our_services .cards-services .card-sevices:hover figure img {
  outline: 4px solid #db0032;
}
.card-sevices figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.card-sevices img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-sevices img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.our_services .cards-services .card-sevices h4 {
  color: #db0032;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.our_services .cards-services .card-sevices p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #5d5f60;
  line-height: 22px;
  margin-bottom: 15px;
  font-weight: 300;
}

/* foleys */

section.foleys {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0;

  background-color: #000;
}

.foleys .foleys--content {
  width: 100%;
  max-width: var(--w-desctop);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.foleys .foleys--content .foleys--content-info {

  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.foleys .foleys--content .foleys--content-info .foleys--title {}

.foleys .foleys--content .foleys--content-info .foleys--title h3 {
  color: #fff;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  position: relative;
  padding-top: 5px;
}

.foleys .foleys--content .foleys--content-info .foleys--title h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red-color);
  width: 35px;
  height: 4px;
}

.foleys .foleys--content .foleys--content-info .foleys--info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.foleys .foleys--content .foleys--content-info .foleys--info p {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.foleys .foleys--content .foleys--content-info .foleys--info ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: square;

}

.foleys .foleys--content .foleys--content-info .foleys--info ul li {
  margin-left: 30px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.foleys .foleys--content .foleys--content-info .foleys--info ul li::marker {
  color: #db0032;
}



/* helpful */

section.helpful {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.helpful .helpful--title {
  position: relative;
  padding-top: 5px;
}

.helpful .helpful--title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--red-color);
  width: 35px;
  height: 4px;
}

.helpful .helpful--cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.helpful .helpful--cards .helpful--card {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.helpful .helpful--cards .helpful--card img {
  width: 100%;
}

.helpful .helpful--cards .helpful--card .date {
  font-size: 14px;
  color: #db0632;
  font-weight: 700;
  text-transform: uppercase;
}

.helpful .helpful--cards .helpful--card h4 {
  color: #000;
  line-height: 1.2;
  text-transform: uppercase;
}

.helpful .helpful--cards .helpful--card p.decsription {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  color: #5d5f60;
  line-height: 22px;
  font-weight: 300;

}

.helpful .helpful--cards .helpful--card a {
  width: 100%;
  outline: 2px solid #000;
  color: #000;
  padding: 10px 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.helpful .helpful--cards .helpful--card a:hover {
  background-color: #000;
  color: #fff
}

/* Slider Container */
.sliders {
  position: relative;
  width: 100%;
  height: 500px;
  /* Adjust height as needed */
  overflow: hidden;
}

/* Slide */
.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.slide-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.slide--info {
  max-width: var(--w-desctop);
  width: 100%;
  height: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-book {
  background-color: var(--red-color, #e74c3c);
  color: white;
}

.btn-join {
  outline: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0) !important;
  color: white;
}

.btn-services {
  background-color: #2ecc71 !important;
  color: white;
}

.btn-location {
  outline: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0) !important;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.222);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background-color: white;
  transform: scale(1.2);
}


footer {
  width: 100%;
  /* height: 100px; */
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer--content {
  max-width: var(--w-desctop);
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer--content ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer--content ul li {
  list-style: square;
}

.footer--content ul li:hover {
  border-bottom: 1px solid var(--red-color);
}

.footer--content ul li::marker {
  color: var(--red-color);
}

.footer--content ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
}

.terms {
  width: 100%;
  padding: 20px 0;
  background-color: #db0032;

}

.terms--info {
  max-width: var(--w-desctop);
  margin: 0 auto;
}
.terms--info span{
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

/* ABOUT */
section.about,
section.location {
  width: 100%;
  max-width: var(--w-desctop);
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;

  color: #5d5f60;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.about--content {}

.about--content p,
.location--content p {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  color: #5d5f60;
  line-height: 22px;
  font-weight: 300;
}

.about--content p a,
.location--content p a {
  color: var(--red-color);
  text-decoration: none;
}

.about--video,
.location--video {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* CONTACT */
section.contact {
  width: 100%;
  max-width: var(--w-desctop);
  margin: 0 auto;
  padding: 50px 0;
}

.contact--title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.contact--text,
.contact--subtitle {
  font-size: 15px;
  color: #5d5f60;
  line-height: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;

}

section.contact form {}

section.contact form .form--wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

section.contact form .form--wrapper .contact--form-left {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.contact form .form--wrapper .contact--form-left input {

  border: 1px solid #767879;
  color: #767879;
  font-family: 'Roboto', sans-serif;
  border-radius: 0;

  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
}

section.contact form .form--wrapper .contact--form-left select {

  border: 1px solid #767879;
  color: #767879;
  font-family: 'Roboto', sans-serif;
  border-radius: 0;

  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
}

section.contact form .form--wrapper .contact--form-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.contact form .form--wrapper .contact--form-right textarea {
  border: 1px solid #767879;
  color: #767879;
  font-family: 'Roboto', sans-serif;
  border-radius: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
}

section.contact form button {
  margin-top: 20px;
  background-color: #000;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid #000;
  padding: 10px 25px;
  font-family: Oswald, sans-serif;
  cursor: pointer;
}

section.contact form button:hover {
  background-color: #fff;
  color: #000;
}

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cookie-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-essential,
.btn-all {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-essential {
  background: #f0f0f0;
  border: 1px solid #ddd;
}

.btn {
  background: #FFA726;
  color: white;
  border: none;
}

.btn-learn-more {
  align-self: center;
  color: #0066cc;
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.success-icon {
  color: green;
  font-size: 50px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .slider-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/* Responsive Styles */

/* Large devices (desktops, less than 1280px) */
@media (max-width: 1280px) {
  :root {
    --w-desctop: 960px;
  }
}

/* Medium devices (tablets, less than 1024px) */
@media (max-width: 1024px) {
  :root {
    --w-desctop: 900px;
  }

  /* Header adjustments */
  .header--top {
    padding: 0 15px;
  }

  header nav ul {
    padding: 12px 15px;
  }

  header nav ul li a {
    margin: 0 8px;
    font-size: 14px;
  }

  .slide--info {
    align-items: center;
  }

  /* Welcome section */
  .welcome--top {
    padding: 40px 15px;
  }

  .welcome--cards {
    padding: 0 15px;
  }

  .welcome--cards .welcome--card a {
    width: 280px;
    height: 180px;
  }

  /* All online section */
  section.all_online {
    padding: 40px 15px;
  }

  .all_online--services {
    padding: 40px 20px;
  }

  .all_online--info {
    max-width: 300px;
  }

  /* Our services section */
  section.our_services {
    padding: 40px 15px;
  }

  .our_services .cards-services .card-sevices {
    max-width: 290px;
  }

  /* Foleys section */
  .foleys .foleys--content {
    padding: 0 15px;
  }

  /* Helpful section */
  section.helpful {
    padding: 40px 15px;
  }

  .helpful .helpful--cards .helpful--card {
    max-width: 290px;
  }

  /* About, Location, Contact sections */
  section.about,
  section.location,
  section.contact {
    padding: 40px 15px;
  }
}

/* Small devices (landscape tablets, less than 768px) */
@media (max-width: 768px) {
  :root {
    --w-desctop: 720px;
  }

  /* Header adjustments */
  .header--top {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .header--top .logo {
    align-self: center;
  }

  .header--top .header--top_info {
    align-items: center;
  }

  .header--top .header--top_info span,
  .header--top .header--top_info a {
    text-align: center;
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  header nav ul li {
    margin-bottom: 5px;
  }

  /* Welcome section */
  .welcome--top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .welcome--top .welcome--title {
    align-self: center;
  }

  .welcome--top .welcome--title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .welcome--cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* All online section */
  section.all_online {
    flex-direction: column;
    gap: 30px;
  }

  .all_online--services .links--list ul {
    grid-template-columns: 1fr;
  }

  .all_online--info {
    max-width: 100%;
  }

  /* Our services section */
  .our_services .cards-services {
    justify-content: center;
  }

  .our_services .cards-services .card-sevices {
    max-width: 340px;
  }

  /* Foleys section */
  .foleys .foleys--content {
    flex-direction: column;
  }

  /* Helpful section */
  .helpful .helpful--cards {
    justify-content: center;
    gap: 30px;
  }

  /* Contact form */
  section.contact form .form--wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Slider */
  .sliders {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .foleys .foleys--content .foleys--content-video iframe {
    width: 100%;
  }

  .footer--content {
    flex-direction: column;
    gap: 30px;
  }

}

/* Extra small devices (phones, less than 478px) */
@media (max-width: 478px) {
  :root {
    --w-desctop: 450px;
  }

  h3 {
    font-size: 16px;
    line-height: 28px;
  }

  /* Header */
  .header--top .header--top_info span {
    font-size: 20px;
  }

  .header--top .header--top_info a span {
    font-size: 16px;
  }

  header nav ul li a {
    font-size: 13px;
    padding: 5px 0;
    margin: 0 5px;
  }

  /* Welcome section */
  .welcome--cards .welcome--card a {
    width: 100%;
    min-width: 250px;
  }

  /* All online section */
  .all_online--services .title {
    flex-direction: column;
    text-align: center;
  }

  /* Our services section */
  .our_services .title h3 {
    text-align: center;

  }

  .our_services .title h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .our_services .cards-services .card-sevices {
    align-items: center;
    text-align: center;
  }

  /* Helpful section */
  .helpful .helpful--title {
    text-align: center;
  }

  .helpful .helpful--title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .helpful .helpful--cards .helpful--card {
    align-items: center;
    text-align: center;
  }

  /* Slider */
  .sliders {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Very small devices (small phones, less than 340px) */
@media (max-width: 340px) {
  :root {
    --w-desctop: 300px;
  }

  /* Header */
  .header--top .logo img {
    max-width: 100%;
  }

  .header--top .header--top_info span {
    font-size: 18px;
  }

  header nav ul {
    padding: 10px 5px;
  }

  header nav ul li a {
    font-size: 12px;
    margin: 0 3px;
  }

  /* Welcome section */
  .welcome--top .welcome--title h3 {
    font-size: 22px;
  }

  .welcome--cards .welcome--card a {
    height: 160px;
  }

  .welcome--cards .welcome--card h3 {
    font-size: 20px;
  }

  /* All online section */
  .all_online--services {
    padding: 30px 15px;
  }

  .all_online .all_online--services .title .title--text h3 {
    font-size: 20px;
  }

  /* Our services section */
  .our_services .cards-services .card-sevices h4 {
    font-size: 16px;
  }

  /* Foleys section */
  .foleys .foleys--content .foleys--content-info .foleys--title h3 {
    font-size: 20px;
  }

  /* Helpful section */
  .helpful .helpful--cards .helpful--card h4 {
    font-size: 16px;
  }

  /* Slider */
  .sliders {
    height: 300px;
  }

  .slide-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .slider-nav {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .indicator-dot {
    width: 8px;
    height: 8px;
  }

  /* Contact form */
  section.contact .contact--title {
    font-size: 18px;
  }

  section.contact form button {
    width: 100%;
  }
  
}