/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* variables css */

:root {
  --header-height: 3.5rem;

  /* colors */
  --first-color: hsl(18, 95%, 55%);
  --second-color: hsl(42, 98%, 52%);
  --first-gradient: linear-gradient(90deg,
      hsl(18, 95%, 55%),
      hsl(18, 98%, 64%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(255, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /* font and typografhy */
  /*  .5rem = 8px | 1rem = 16px... */
  --body-font: 'Montserrat', sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /* font weight */
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*  z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* responsive typography */
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/* base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* reusable css calsses */

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
  margin: 0 auto;
  padding: 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: 0.5rem;
}

.main {
  overflow: hidden;
}

/* === header and nav === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: background-color 0.4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__menu ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.nav__list {
  display: flex;
  flex-direction: row;
  row-gap: 4rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

.nav__logo span {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

.nav__logo i {
  color: var(--first-color);
  font-size: 1.5rem;
}

.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  transition: color 0.4s;
  /* display: none; */
}

.login-btn {
  cursor: pointer;
}

/* navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--black-color);
    list-style-type: none;
    padding: 7.5rem 3.5rem 0;
    border-left: 2px solid var(--black-border);
    transition: right 0.4s;
  }

  .nav__menu ul {
    align-items: start;
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
  }

  .nav__close,
  .nav__toggle {
    display: block;
  }
}

@media screen and (min-width: 341px) {
  .about__img-2 {
      width: 400px;
      margin-left: 19%;
    }
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* show menu */
.show-menu {
  right: 0;
}

/* change background header */

.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.1);
}

.bg-header .nav__logo span,
.bg-header .nav__toggle {
  color: var(--title-color);
}

/* tooltip */

/* active link */
.active-link {
  color: var(--first-color);
}

/* === home === */
.home {
  position: relative;
  background-color: var(--black-color);
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home__container {
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home__content {
  row-gap: 2.5rem;
}

.home__data {
  text-align: center;
}

.home__title {
  color: var(--white-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.home__description {
  margin-bottom: 2.5rem;
  color: var(--text-color-light);
}

.home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home__info {
  display: flex;
  justify-content: center;
  column-gap: 4.5rem;
}

.home__info-title {
  color: var(--second-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
}

.home__info-description {
  font-size: var(--small-font-size);
  color: var(--white-color);
}

.home__images {
  position: relative;
  justify-self: center;
}

.home__img-1 {
  width: 250px;
  margin-left: 3.5rem;
}

.home__img-2 {
  width: 150px;
  border: 5px solid var(--black-color);
  position: absolute;
  left: 0;
  bottom: -3.5rem;
}

/* .home__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
} */

/* === button === */

.button {
  display: inline-flex;
  background: var(--first-gradient);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: box-shadow 0.4s;
  border-radius: 0.2rem;
}

.button:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
  color: var(--white-color);
}

.button__link {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--first-color);
}

.button__link span {
  font-weight: var(--font-semi-bold);
}

.button__link i {
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.button__link:hover i {
  transform: translateX(0.25rem);
}

/* === about === */

.about__container {
  row-gap: 8rem;
}

.about__data {
  text-align: center;
}

.about__data ul li i {
  color: var(--first-color);
}

.about__description {
  margin-bottom: 2rem;
}

.about__list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about__list-item {
  display: flex;
  column-gap: 0.5rem;
  color: var(--title-color);
}

.about__images {
  position: relative;
  justify-self: center;
  margin-left: -20%;
}

.about__img-1 {
  width: 200px;
  border: 5px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}

.about__img-2 {
  width: 250px;
  margin-right: 2.5rem;
}

/* === features === */

.features {
  position: relative;
  background-color: var(--black-color);
}

.features__container {
  position: relative;
  row-gap: 3rem;
}

.features__data {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.features__card {
  width: 260px;
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 2rem 1rem 3.5rem;
  transition: border-color 0.4s;
}

.features__card:hover {
  border-color: var(--first-color);
}

.features__icon {
  width: 250px;
  height: 150px;
  background-color: var(--black-color);
  color: var(--black-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.features__title {
  color: var(--white-color);
}

#features {
  scroll-margin-top: 4rem;
}

/* === PROJECTS === */
.projects {
  background-color: var(--black-color);
}

.projects .section__title {
  color: var(--white-color);
}

.projects__container {
  padding-block: 1.5rem 3rem;
}

.projects__card {
  background-color: var(--container-color);
  border: 2px solid transparent;
  background-clip: content-box;
  transition: border-color 0.4s;
}

.projects__card:hover {
  border-color: var(--first-color);
}

.projects__data {
  padding: 1.5rem 1rem 3rem;
}

.projects__title {
  font-size: var(--h2-font-size);
  margin-block: 0.5rem;
}

.projects__date {
  display: block;
  font-weight: var(--font-medium);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

/* === CONTACT === */
.contact__container {
  row-gap: 3rem;
  padding-block: 1.5rem 3rem;
}

.contact__img {
  width: 320px;
  justify-self: center;
}

.contact__data {
  grid-template-columns: 230px;
  justify-content: center;
  row-gap: 1.5rem;
}

.contact__card {
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: border-color 0.4s;
}

.contact__card:hover {
  border-color: var(--first-color);
}

.contact__icon {
  width: 48px;
  height: 48px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.contact__info {
  font-style: normal;
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s;
}

.contact__social-link:hover {
  transform: translateY(-0.25rem);
}

/* === FOOTER === */
.footer {
  background-color: var(--black-color);
  color: var(--text-color-light);
  padding-block: 3.5rem 2rem;
}

.footer__container {
  row-gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--black-border);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}

.footer__logo span {
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
}

.footer__logo i {
  color: var(--first-color);
  font-size: 1.5rem;
}

.footer__description {
  margin-block: 1rem;
}

.footer__email,
.footer__info {
  font-style: normal;
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 4rem 3rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer__links,
.footer__list {
  display: grid;
  row-gap: 0.5rem;
}

.footer__link {
  color: var(--text-color-light);
  transition: color 0.4s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 4rem;
}

/* === SCROLL BAR  === */
::-webkit-scrollbar {
  width: 0.4rem;
  background-color: var(--black-color);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color);
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
}

/* === SCROLL UP  === */
.scrollup {
  position: fixed;
  bottom: -50%;
  right: 1rem;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
  background-color: var(--first-color);
  transition: all ease 0.4s;
  border-radius: 0.2rem;
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/* === BREAKPOINTS === */

/* Form Small Devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .home__title {
    font-size: 1.75rem;
  }

  .home__buttons {
    flex-direction: column;
  }

  .home__img-1 {
    width: 200px;
    margin-left: 1.5rem;
  }

  .about__list {
    grid-template-columns: repeat(1, 200px);
  }

  .about__img-2 {
    width: 200px;
    margin-left: 20%;
  }

  .feedback__title {
    font-size: var(--small-font-size);
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .feedback__subtitle {
    font-size: var(--small-font-size);
    margin-top: 25px;
  }

  .footer__content {
    grid-template-columns: repeat(1, max-content);
  }
}

/* Form Medium Devices */
@media screen and (min-width: 540px) {

  .home__container,
  .about__container,
  .features__container,
  .projects__container,
  .contact__container {
    grid-template-columns: 360px;
    justify-content: center;
  }

  .about__img-2 {
    width: 400px;
    margin-left: 15%;
  }

  .footer__container {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }

  .projects__container {
    grid-template-columns: repeat(2, 330px);
  }

  .feedback__container {
    justify-content: center;
    align-self: center;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 5rem;
  }

  .contact__data {
    grid-template-columns: repeat(2, 240px);
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  .features__container {
    grid-template-columns: initial;
    row-gap: 5rem;
    padding-bottom: 4.5rem;
  }
}

/* Form large Devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .home__container {
    grid-template-columns: 475px 550px;
    column-gap: 8rem;
    align-items: flex-start;
    padding-top: 5.5rem;
  }

  .home__content {
    row-gap: 2.5rem;
  }

  .home__data {
    text-align: initial;
  }

  .home__description {
    margin-bottom: 2rem;
  }

  .home__buttons {
    justify-content: initial;
    column-gap: 2rem;
  }

  .home__info {
    justify-content: initial;
    column-gap: 2.5rem;
  }

  .home__info-description {
    font-size: var(--normal-font-size);
  }

  .home__img-1 {
    width: 550px;
    margin-left: 0;
  }

  .home__img-2 {
    width: 350px;
    border-width: 10px;
    left: -7rem;
    bottom: -8rem;
  }

  .home__lines {
    object-position: center;
  }

  .about__container {
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    /* padding-block: 8rem 2rem; */
    margin-block: 8rem;
    padding-bottom: 4rem;
  }

  .about__images {
    order: -1;
  }

  .about__img-1 {
    width: 370px;
    border-width: 10px;
    top: -9rem;
    left: 11rem;
  }

  .about__img-2 {
    width: 470px;
  }

  .about__data,
  .about__data:is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  .about__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }

  .features__container {
    grid-template-columns: initial;
    row-gap: 5rem;
    padding-bottom: 4.5rem;
  }

  .features__data {
    display: grid;
    grid-template-columns: 415px 370px max-content;
    justify-content: space-between;
    align-items: center;
  }

  .features__data :is(.section__title, .section__subtitle),
  .features__description {
    text-align: initial;
  }

  .features__data .section__title {
    margin-bottom: 0;
  }

  .features__swiper {
    max-width: 1100px;
  }

  .features__card {
    width: 348px;
    border-width: 3px;
    padding: 3.5rem 2rem 6rem;
  }

  .features__shape {
    height: 330px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 3rem;
  }

  .projects__container {
    grid-template-columns: repeat(3, 350px);
    column-gap: 2rem;
    padding-block: 5rem 4rem;
  }

  .projects__card {
    border-width: 3px;
  }

  .projects__data {
    padding: 2rem 1.5rem 4rem;
  }

  .feedback__container {
    margin-left: -1.5rem;
  }

  .feedback_title {
    margin-bottom: .75rem;
    margin-left: 1rem;
  }

  .feedback__information__div {
    margin-left: 15rem;
    padding-left: 2rem;
  }

  .feedback__form {
    width: 500px;
  }

  .feedback__input {
    grid-template-columns: repeat(2, 1fr);

  }

  .contact :is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  .contact__container {
    grid-template-columns: 530px 515px;
    column-gap: 3.5rem;
    padding-block: 3.5rem 4rem;
  }

  .contact__img {
    width: 530px;
  }

  .contact__data {
    gap: 2rem;
  }

  .contact__card {
    border-width: 3px;
  }

  .contact__title {
    font-size: var(--h3-font-size);
  }

  .footer {
    padding-block: 4.5rem 3rem;
  }

  .footer__container {
    padding-bottom: 6rem;
  }

  .footer__description {
    margin-block: 1.5rem;
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links,
  .footer__list {
    row-gap: 1rem;
  }

  .scrollup {
    right: 3rem;
  }
}

/* SWIPER SLIDER */

.swiper-container .swiper-pagination-favorites {
  bottom: 0;
}

.slide-container {
  /* display: flex; */
  /* align-items: flex-start;
  justify-content: flex-start; */
  /* background: var(--white-color); */
  max-width: 1120px;
  width: 100%;
  padding-bottom: 40px;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--second-color);
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
  content: '';
  right: 0;
  bottom: -40px;
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: var(--second-color);
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: var(--black-color);

}

.card {
  border-radius: 25px;
  background: var(--black-color);
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--second-color);
}

.name {
  font-size: 18px;
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  margin-bottom: .75rem;
}

.description {
  font-size: 14px;
  color: #cecece;
  text-align: center;
  margin-bottom: .5rem;
}

.btn {
  border: none;
  font-size: 16px;
  color: #333;
  padding: 8px 16px;
  background-color: var(--second-color);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-navBtn {
  color: #6e93f7;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: black;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #6e93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--white-color);
  opacity: 1;
}

.alert_style {
  text-align: center;
  padding: 10px;
  font-size: var(--small-font-size);
  background-color: var(--first-color);
  color: #fff;
  border-radius: 0.5rem;
  display: none;
}

/*=============== FEEDBACK ===============*/

#feedback {
  scroll-margin-top: 5rem;
}

.feedback__container {
  row-gap: 3rem;
  margin-bottom: 5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--font-regular);
  margin-bottom: var(--mb-3);
  margin-top: var(--mb-2);
  text-align: center;
}

.feedback__information {
  display: flex;
  margin-bottom: var(--mb-1);
}

.feedback__icon {
  font-size: 2rem;
  color: var(--second-color);
  margin-right: var(--mb-0-75);
}

.feedback__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: var(--second-color);
  margin-left: 1rem;
  margin-top: 5px;
}

.feedback__content {
  background-color: var(--first-color);
  border-radius: .5rem;
  padding: .75rem 1rem .25rem;
}

.feedback__subtitle {
  color: var(--white-color);
  margin-left: 1rem;
  /* padding: 3rem 0; */
  margin-bottom: 35px;
}

.feedback__label {
  font-size: var(--small-font-size);
  color: var(--white-color);
}

.feedback__input {
  width: 100%;
  background-color: var(--input-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
  padding: .25rem .5rem .5rem 0;
}

.about__us {
  margin-bottom: 1rem;
}

/*=============== FAVORITES ===============*/
.features__container {
  row-gap: 3rem;
  grid-template-columns: 100%;
  padding-bottom: 3rem;
  background-color: var(--black-color);
}

.features__data {
  position: relative;
  text-align: center;
}

.features__cheese-1,
.features__cheese-2 {
  width: 40px;
  position: absolute;
  opacity: .5;
}

.features__cheese-1 {
  top: 2rem;
  right: -1rem;
  rotate: -15deg;
}

.features__cheese-2 {
  bottom: -2rem;
  left: -.75rem;
  transform: scaleX(-1) rotate(45deg);
}

.features__article {
  position: relative;
  width: 200px;
}

.features__img {
  width: 200px;
  scale: .8;
  transition: scale .4s filter .4s;
}

.features__leaf-1,
.features__leaf-2 {
  width: 70px;
  position: absolute;
  filter: var(--shadow-img);
  scale: 0;
  transition: scale .4s .1s;
}

.features__leaf-1 {
  top: -1rem;
  right: -.5rem;
}

.features__leaf-2 {
  bottom: -1rem;
  left: -.5rem;
}

.features__data,
.features__header {
  display: flex;
}

.features__header {
  justify-content: space-between;
  margin-bottom: var(--mb-1);
}

.features__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--mb-0-75);
}

.features__name {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.features__description {
  margin-bottom: var(--mb-2-5);
}

.swiper-container .swiper-pagination-features {
  bottom: 0;
}

.section__subtitle__feature {
  margin-top: -3rem;
  margin-bottom: -2rem;
  display: block;
  text-align: center;
}

.slide-container {
  /* display: flex; */
  /* align-items: flex-start;
  justify-content: flex-start; */
  /* background: var(--white-color); */
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--second-color);
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
  content: '';
  right: 0;
  bottom: -40px;
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: var(--second-color);
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: var(--white-color);

}

.card {
  border-radius: 25px;
  background: var(--white-color);
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--second-color);
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.btn {
  border: none;
  font-size: 16px;
  color: #333;
  padding: 8px 16px;
  background-color: var(--second-color);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-navBtn {
  color: #ffffff;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: black;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: var(--second-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--white-color);
  opacity: 1;
}

.alert_style {
  text-align: center;
  padding: 10px;
  font-size: var(--small-font-size);
  background-color: var(--first-color);
  color: #fff;
  border-radius: 0.5rem;
  display: none;
}