/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 490;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 44%, 22%);
  --first-color-alt: hsl(var(--hue-color), 34%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 5.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

a.button{
	text-decoration: none;
}

a.button:hover {
  color: #fff;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
  text-align: justify;
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
}

.discover__data {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
}

.discover__title, 
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.dark-theme p.discover__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  padding: 0 8rem;
  color: var(--text-color);
}
p.discover__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  padding: 0 2rem;
  color: var(--title-color-alt)
}

.discover__time{
	color: white;
    background: rgba(0,0,0,0.50);
    padding: 7px;
    position: absolute;
    display: block;
    margin: 10px;
	right: 0px;
	border-radius: 7px;
}

.discover__infos{
	color: white;
    background: rgba(0,0,0,0.50);
    padding: 5px;
    position: absolute;
    display: block;
    margin: 53px 10px 0px 0px; 
	right: 0px;
	border-radius: 7px;
}

/* .discover__time.long-title{ */
    /* display: inline-block; */
    /* margin: 0px 0px 164px 60px; */
/* } */

/* .discover__time-car{ */
	/* color: white; */
    /* background: rgba(0,0,0,0.50); */
    /* border-radius: 10px; */
    /* padding: 7px; */
    /* display: block; */
    /* margin: 0px 0px 197px 40px; */
/* } */

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  /* transform: var(--img-scale); */
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

p.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  padding: 0 2rem;
  color: var(--title-color-alt)
}

/*=============== PLACES ===============*/
section.services {
  background: #f1f1f1;
  padding: 0px 0px 30px 0px;
  margin-top: 70px;
}

section.discover{
  background: #f1f1f1;
  padding: 5.5rem 0 2.5rem;
  margin-top: 70px;
}

section.sponsor{
  background: #f1f1f1;
  padding: 50px 0px 50px 0px;
  margin-top: 70px;
}

.dark-theme section.services, 
.dark-theme section.sponsor, 
.dark-theme section.discover{
	background: var(--first-color-alt);
}


.place__card, .place__img {
  height: 330px;
}

.place__container {
  grid-template-columns: repeat(1, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content, .place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating.icons{
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: space-evenly;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle, .place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0;
}

.subscribe__title, 
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--input-color);
  padding: .5rem;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  width: 70%;
  padding-right: .5rem;
  background-color: var(--input-color);
  color: var(--text-color);
}

.subscribe__input::placeholder {
  color: var(--text-color);
}

/*=============== FAQ ===============*/

.wrapper {
  margin: 0 auto;
  border: 5px solid var(--first-color);
  background: white;
  border-radius: 30px;
  height: 600px;
  width: 920px;
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-gap: 6rem;
  background-image: url(../images/faq/bg-pattern-desktop.svg);
  background-repeat: no-repeat;
  background-position: 1260% 65%;
}

.question-answer__accordion > .answer {
  display: none;
}

.active_faq > .answer {
  display: block;
  padding-bottom: 1.3rem;
  color: var(--darkGrayBlue);
}

.active_faq img {
  filter: invert(11%) sepia(53%) saturate(937%) hue-rotate(83deg) brightness(93%) contrast(91%);
  transform: rotate(180deg);
  transition: all 0.3s ease-in;
}

.accordion__wrapper {
  margin-top: 50px;

  display: flex;
  flex-direction: column;
}

.questions__accordions {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.question-answer__accordion {
  width: 50vw;
  border-bottom: 1px solid #e8e8ea;
}
.title__accordion {
  font-size: 3rem;
  margin-top: 0px;
}

.title__question {
  font-weight: 400;
  font-size: 1.2rem;
  color: (var(--veryDarkGrayBlue));
  margin: 1.4rem 0rem;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.4s;
}

.active_faq h3 {
  font-weight: 700;
}

.question img {
  align-self: center;
}

.image__wrapper {
  position: relative;
}

.image__wrapper_inner {
  background: url(../images/faq/illustration-woman-online-desktop.svg);
  height: 100%;
  background-repeat: no-repeat;
  background-position: 120% center;
}

.box {
  position: absolute;
  top: 42%;
  left: -25%;
}

@media (max-width: 700px) {
  .wrapper {
    width: 350px;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
    grid-gap: 0.5rem;
    position: relative;
    padding: 1rem;
    height: 530px;
  }
  .image__wrapper {
	display: none;
  }

  .image__wrapper_inner {
    position: absolute;
    width: 100%;
    height: 200px;
    background-size: 72%;
    background-position: center;
    top: -129%;
  }
  .box {
    width: 55px;
    left: 19%;
    top: -30%;
  }
  .accordion__wrapper {
    margin-top: 0px;
  }
  .question-answer__accordion {
    width: 70vw;
  }
  .title__accordion {
    text-align: center;
  }
}

/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.5);
  transition: var(--img-transition);
}

/*=============== SERVICES ===============*/
.row{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
}

.service{
	text-align: center;
	padding: 25px 10px;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	background: #fff;
	transition: transform 0.5s, background 0.5s;
}

.dark-theme .service{
  background-color:	var(--first-color-second);
}

.dark-theme .service:hover{
  background-color:	var(--first-color);
}


.service:hover .btn-service{
  background-color: #fff;
  color : var(--first-color);
}

.service h2{
	font-weight: 600;
	margin-bottom: 8px;
	font-size: var(--h2-font-size);
}

.service i{
	font-size: 49px;
	margin-bottom: 10px;
}

.service:hover {
	background: var(--first-color-second);
	color: #fff;
}

.dark-theme .service:hover {
	color: #fff;
}

.service:hover i {
	color: #fff;
}

.service:hover h2 {
	color: #fff;
}

/*=============== FOOTER ===============*/

.footer.section {
  background-color: var(--first-color);
  margin-bottom: -40px;
}

h3.footer__title,
h3.footer__subtitle,
a.footer__social{
	color: #fff;
}
a.footer__link, p.footer__description{
	color: #BAC3C4;
	text-decoration: none;
}

a.footer__terms{
	color: var(--text-color-light);
}

.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

a.footer__link:hover {
  color: #fff;
}

.footer__rights {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: white;
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 6rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container,
  .service__container  {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 1rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description, discover__description  {
    padding: 0 8rem;
  }
  .place__container, .service__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 330px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}

header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: inherit;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: #111;*/
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: #03a9f4;*/
  mix-blend-mode: overlay;
}

.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1.2em;
  font-family: Kaushan Script;
  letter-spacing: 1.5px;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}
.social
{
  position: absolute;
  z-index: 9;
  bottom: 20px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social li a
{
  display: inline-block;
  margin-right: 30px;
  filter: invert(1);
  transform: scale(1.5);
  transition: 0.5s;
  color: black;
}

.social li a:hover
{
  transform: scale(2) translateY(-3px);
  outline: none;
  text-decoration: none;
}
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 2.5em;
  }
  .text h3
  {
    font-size: 1em;
  }
}


/* Animation de la fleche sur le menu d'accueil */
.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 20;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, 25%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}

@media (max-width: 850px) { /* pour que ce soit parfaitement centrer sur smartphone */
  .demo a {
    left: 47%;
  }
}

#section07 a {
  padding-top: 80px;
  cursor: pointer;
}
#section07 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#section07 a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#section07 a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#section07 a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* Titre principal */
h1#main_title{
  font-size: 50px;
}
/* Sous titre principal */
h1#main_subtitle{
  font-size: 25px;
}

@media (max-width: 400px) {
  h1#main_title{
    font-size: 40px;
  }
  h3#main_subtitle{
    font-size: 20px;
  }
}
.text-center {
  text-align: center !important;
}
.d-flex {
  display: flex !important;
}
.align-items-center {
  align-items: center !important;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .divider.about{
    margin: inherit;
	margin-bottom: 20px;
  }
}

@media (max-width: 768px) {

  .divider.about{
    margin: auto;
	margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

#hero {
  position: relative;
}

#hero video{
  height: 100vh;
  width: 100%;
  background-position: absolute;
  z-index: 10;
  object-fit: cover;
}

#hero .content{
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
}

#hero .content h1{
  color: #fff;
  font-weight: 600;
}

#hero .content h3{
  color: #fff;
  font-weight: 300;
}
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Ubuntu",sans-serif;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

::selection{
  background-color: #48dbfb60;
}

::-webkit-scrollbar{
  width: 10px;
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb{
  background-color: #353b48;
}

.nav-bar{
  position: fixed;
  background-color: transparent;
  width: 100%;
  padding: 30px 0;
  top: 0;
  z-index: 999;
  transition: .3s linear;
}

.inner-width{
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
}

.nav-bar .inner-width{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  width: 137px;
  height: 43px;
  background-image: url(../images/white-logo.png);
  background-size: contain;
}

.menu-toggler{
  background: none;
  width: 30px;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
  z-index: 999;
  display: none;
}

button.menu-toggler.active span{
	background-color: #111111;
}

.dark-theme button.menu-toggler.active span{
	background-color: #fff;
}


button.menu-toggler span{
  display: block;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  position: relative;
  transition: .3s linear;
}

.nav-bar-menu a{
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  margin-left: 30px;
  transition: .2s linear;
  text-decoration: none;
}

.nav-bar-menu a:hover{
  color: var(--first-color) !important;
}

.sticky{
  background-color: #fff;
  padding: 18px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


.dark-theme > .sticky{
  background-color: var(--first-color-alt);
}

.sticky .logo{
  background-image: url(../images/black-logo.png);
}

.dark-theme > .sticky .logo{
  background-image: url(../images/white-logo.png);
}

.sticky .nav-bar-menu a, .sticky .nav-bar-menu .select-button{
  color: #111;
}

.dark-theme > .sticky #theme-button{
  color: #fff;
}

.dark-theme > .sticky .nav-bar-menu a{
  color: #fff;
}

.dark-theme > .sticky .menu-toggler span{
  background-color: #fff;
}

.sticky .menu-toggler span{
  background-color: #111;
}

.dark-theme > .sticky .active span{
	background-color: #fff;
}



.sticky #theme-button{
    color: #000000;
}

.goTop{
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: #48dbfb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  outline: none;
  display: none;
}


@media screen and (min-width: 980px){
  .nav-bar-menu a, .select-button{
  color: #fff;
  }
}


@media screen and (max-width: 980px){
	
  .service{
	  margin: auto;
	  width: 85%;
  }

  .service__container .row{
	  margin: 30px 0px 0px 0px;
  }
  
  .menu-toggler{
    display: block;
  }

  .nav-bar-menu{
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #f1f1f1;
    top: 0;
    right: -100%;
    max-width: 400px;
    padding: 80px 50px;
    transition: .3s linear;
  }

  
    .dark-theme .nav-bar-menu{
    background-color: var(--body-color)
  }

  .nav-bar-menu a{
    display: block;
    font-size: 30px;
    margin: 30px 0;
  }

  .sticky .nav-bar-menu{
    background-color: #f1f1f1;
  }
  
   .dark-theme .sticky .nav-bar-menu{
    background-color: var(--body-color);
  }
  
  .dark-theme .sticky .nav-bar-menu a,
  .dark-theme .nav-bar-menu a
  {
	color: #fff;
  }
  
  .dark-theme .sticky #theme-button,
  .dark-theme #theme-button
  {
	color: #fff;
  }
  

  

  

  
  #theme-button{
    color: #111111;
  }
  
  .nav-bar-menu.active{
    right: 0;
  }

  .menu-toggler.active span:nth-child(1){
    transform: rotate(-45deg);
    top: 4px;
  }

  .menu-toggler.active span:nth-child(2){
    opacity: 0;
  }

  .menu-toggler.active span:nth-child(3){
    transform: rotate(45deg);
    bottom: 14px;
  }

  .inner-width{
    max-width: 800px;
  }

}

section{
	overflow: hidden;
}


@media screen and (min-width: 2000px){
  .container{
	max-width: 1400px;
  }
  .inner-width{
	max-width: 2000px;
  }
  .text, .social{
	margin-left: 5%;
  }
  .video__button{
	right: 6rem;
  }
  
  
  .place__card, .place__img {
    height: 400px;
	}
	.place__rating-icon {
    font-size: 1.25rem;
	}
	.place__rating-number {
    font-size: var(--normal-font-size);
	}

}

@media screen and (max-width: 1999px){
	.discover__title {
    font-size: var(--h3-font-size);
}
	/* .discover__time.long-title{ */
    /* display: inline-block; */
    /* margin: 0px 0px 107px 20px; */
	/* } */
	/* .discover__time{ */
	/* margin: 0px 0px 137px 20px; */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 137px 0px; */
	/* } */
	/* .discover__title{ */
	/* font-size: 1.5rem; */
	/* } */
}

/* @media screen and (max-width: 1024px){ */
	/* .discover__time.long-title{ */
    /* display: inline-block; */
    /* margin: 0px 0px 117px 26px; */
	/* } */
	/* .discover__time{ */
	/* margin: 0px 0px 146px 30px; */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 146px 8px; */
	/* } */
/* } */

/* @media screen and (max-width: 992px){ */
	/* .discover__time.long-title{ */
    /* display: inline-block; */
    /* margin: 0px 0px 91px 20px; */
	/* } */
	/* .discover__time{ */
	/* margin: 0px 0px 120px 20px; */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 120px 0px; */
	/* } */
/* } */

/* @media screen and (max-width: 425px){ */
	/* .discover__time.long-title{ */
    /* display: inline-block; */
    /* margin: 0px 0px 110px 20px; */
	/* } */
	/* .discover__time{ */
	/* margin: 0px 0px 160px 40px */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 160px 20px */
	/* } */
/* } */

/* @media screen and (max-width: 400px){ */

	/* .discover__time{ */
	/* margin: 0px 0px 140px 10px */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 140px 0px */
	/* } */
/* } */

/* @media screen and (max-width: 375px){ */

	/* .discover__time{ */
	/* margin: 0px 0px 130px 20px */
	/* } */
	/* .discover__time-car{ */
	/* margin: 0px 0px 130px 0px */
	/* } */
/* } */





/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 180px;
}

.about__img-two {
  width: 230px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

hr.divider {
	margin: auto;
    margin-top: -15px;
    margin-bottom: 20px;
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: var(--title-color);
}	

/* Contact */
.contact.section{
	padding: 6rem 0 7rem;
}

.container-contact{
	position: relative;
	min-width: 1100px;
	min-height: 550px;
	display: flex;
	z-index: 9;
	margin-left: 250px;
	margin-right: 250px;
}

.container-contact .contactInfo{
	position: absolute;
	top: 40px;
	width: 350px;
	height: calc(100% - 80px);
	background: var(--first-color);
	z-index: 1;
	padding: 40px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 20px 25px rgba(0,0,0,0.15) 
}

.container-contact .contactInfo h2{
	color: #fff;
	font-size: 24px;
	font-weight: 500;
}

.container-contact .contactInfo ul.info{
	position: relative;
	margin: 20px 0;
}

.container-contact .contactInfo ul.info li{
	position: relative;
	list-style: none;
	display: flex;
	margin: 20px 0;
	cursor: pointer;
	align-items: flex-start;
}

.container-contact .contactInfo ul.info li span:nth-child(1){
	color: #fff;
	font-size: 30px;
}

.container-contact .contactInfo ul.info li span:nth-child(2){
	color: #fff;
	margin-left: 10px;
	font-weight: 300;
}

.container-contact .contactForm{
	position: absolute;
	padding: 70px 50px;
	padding-left: 250px;
	margin-left: 150px;
	width: calc(100% - 150px);
	height: 100%;
	background: #fff;
	box-shadow: 0 50px 50px rgba(0,0,0,0.25)
}

.container-contact .contactForm h2{
	color: #212529;
	font-size: 24px;
	font-weight: 500;
}

.container-contact .contactForm .formBox{
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}

.container-contact .contactForm .inputBox{
	position: relative;
	margin-bottom: 35px;
}

.container-contact .contactForm .inputBox.w50{
	width: 47%;
}

.container-contact .contactForm .inputBox.w100{
	width: 100%;
}

.container-contact .contactForm .inputBox input,
.container-contact .contactForm .inputBox textarea{
	width: 100%;
	resize: none;
	padding: 5px 0;
	font-size: 18px;
	font-weight: 300;
	color: #333;
	border: none;
	outline: none;
	border-bottom: 1px solid #777;
}

.container-contact .contactForm .inputBox textarea{
	height: 120px;
}

.container-contact .contactForm .inputBox span{
	position: absolute;
	left: 0;
	padding: 5px 0;
	pointer-events: none;
	font-size: 18px;
	font-weight: 300;
	transition: 0.3s;
}

.container-contact .contactForm .inputBox input:focus ~ span,
.container-contact .contactForm .inputBox input:valid ~ span,
.container-contact .contactForm .inputBox textarea:focus ~ span,
.container-contact .contactForm .inputBox textarea:valid ~ span{
	transform: translateY(-20px);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--first-color);
}



.container-contact .contactForm .formBox .inputBox input[type="submit"]{
	position: relative;
	cursor: pointer;
	background: var(--first-color);
	color: #fff;
	border: none;
	max-width: 150px;
	padding: 12px;
	transition: 0.3s;
}

.container-contact .contactForm .formBox .inputBox input[type="submit"]:hover{
	background: var(--first-color-second);
}


.dark-theme .container-contact .contactForm{
	background: var(--first-color-second);
}
.dark-theme .container-contact .contactInfo{
	background: var(--first-color-alt);
}

.dark-theme .container-contact .contactForm .inputBox input{
	background-color: var(--first-color-second);
	color: var(--text-color);
}

.dark-theme .container-contact .contactForm .inputBox textarea{
	background-color: var(--first-color-second);
	color: var(--text-color);
}

.dark-theme .container-contact .contactForm .inputBox input:focus ~ span, .container-contact .contactForm .inputBox input:valid ~ span, .container-contact .contactForm .inputBox textarea:focus ~ span, .container-contact .contactForm .inputBox textarea:valid ~ span{
	color: var(--text-color)
}

.dark-theme .container-contact .contactForm h2{
	color: #fff;
}

.text-link{
	position: absolute;
	bottom:0;
	padding: 15px 0;
	border-radius: 10px 10px 0 0;
	background: var(--first-color);
	border:1px solid #eee;
	box-shadow: 0 10px 15px rgba(0,0,0,0.03);
	left: 50%;
	width: 200px;
	margin-left: -100px;
	display: flex;
    justify-content: center;
}

.social-media-t{
	margin-left: 15px;
	margin-right: 15px;
	background: none;
}

.social-media-t i, .fa-caret-right, .fa-caret-left{
	color: var(--first-color);
	transition: 0.2s;
}
.social-media-t i:hover{
	color: #212529;
}

/* responsive contact */

@media (max-width : 1550px){
	.container-contact{
		/* width: 90%; */
		min-width: auto;
		margin: 20px;
		box-shadow: 0 20px 50px rgba(0,0,0,0.2);
	}
	.container-contact .contactInfo{
		top: 0;
		height: 550px;
		position: relative;
		box-shadow: none;
	}
	.container-contact .contactForm{
		position: inherit;
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		padding: 40px;
		height: 550px;
		box-shadow: none;
	}
}

@media (max-width : 991px){
	.container-contact{
		display: flex; 
		flex-direction: column-reverse;
		text-align: center;
	}
	.container-contact .contactForm{
		width: 100%;
		height: auto;
	}
	.container-contact .contactInfo{
		width: 100%;
		height: auto;
	}
	.container-contact .contactInfo ul.info{
		display: inline-grid; 
		flex-direction: column;
		justify-content: center;
		align-items: center;
		
	}
	.container-contact .contactInfo ul.text-link{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width : 600px){
	.container-contact .contactForm{
		padding: 25px;
	}
	.container-contact .contactInfo{
		padding: 25px;
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 60px;
	}
	.container-contact .contactInfo ul.info{
	align-items: flex-start;
	}
	.container-contact .contactInfo ul.text-link{
		margin-top: 40px;
	}
	.container-contact .contactForm .formBox .inputBox.w50{
		width: 100%;
	}
}


/* footer */
.container-footer{
	max-width: 1170px;
	margin:auto;
}
.row-footer{
	display: flex;
	flex-wrap: wrap;
}


#row-copyright{
	background: #161419;
	margin-bottom: -16px;
}

#row-copyright p, #row-copyright a {
	text-align: center;
	color: white;
	font-size: 15px;
	white-space:normal;
	padding: 10px;
}
.footer{
	background-color: var(--first-color-second);
    padding: 70px 0 55px 0;
	z-index: 9999999;
}

.footer-col{
   width: 25%;
   padding: 0 15px;
   z-index: 0;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	/* text-transform: capitalize; */
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: white;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}

.footer-col.company{
	color: #bbbbbb;
	text-align: left;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #fff;
	background-color: var(--first-color-alt);
}

.rotate{
	display: none;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
	}
	
  .accordian_content{
    display:none;
  }
  .accordian_title{
    cursor:pointer;
  }
  .rotate{
	margin-top: -57px;
	color: #fff;
    float:right;
    font-size: 20px;
    line-height: 28px;
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: 600;
    font-variant: normal;
    text-transform: none;
	font-size: 20px;
  }

 
  .rotate.down{
	-moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
  }
  
}

/* MENU STICKY INFO */
 .action{
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: #fff;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.1);
	z-index: 998;
}

.action span{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	color: var(--first-color);
	font-size: 2em;
	transition: 0.3s ease-in-out;
}

.action.active span{
	transform: rotate(135deg);
}

.action ul{
	position: absolute;
	bottom: 55px;
	background: #fff;
	min-width: 305px;
	padding: 20px;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.1);
	transition: 0.3s;
}

.action.active ul{
	bottom: 65px;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}

.action.active ul li{
	list-style: none;
	color: black;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
	transition: 0.3s;
}

.action ul li:hover{
	font-weight: 600;
}

.action ul li:not(:last-child){
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.action.active li i{
	color: var(--first-color);
}

/* LANGUAGE SELECTOR */
	    /* Style du conteneur du sélecteur de langue */
      .language-selector {
        position: relative;
        display: inline-block;
      }
  
      /* Style du bouton principal avec le drapeau et la langue active */
      .select-button {
      background: none;
        padding: 10px 20px;
        color: #1111 1;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
      }
  
    .select-button:focus{
      outline: none;
    }
  
      /* Style de l’icône de flèche */
      .select-button::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
      }
  
      /* Image du drapeau */
      .flag-icon {
        width: 20px;
        height: 14px;
      }
  
      /* Style de la liste déroulante */
      .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }
  
      /* Style des liens dans la liste déroulante */
      .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
      }
  
      /* Afficher la liste déroulante au survol */
      .language-selector:hover .dropdown-content {
        display: block;
      }
  
      /* Changer le fond des liens au survol */
      .dropdown-content a:hover {
        background-color: #f2f2f2;
      }
  
    @media screen and (max-width: 980px){
      .select-button, .dropdown-content a{
        font-size: 20px;
      }
      .language-selector:hover .dropdown-content {
        display: block;
        position: relative;
        margin-top: -30px;
      }
    }