/* Instrument Sans - Regular */
@font-face {
    font-family: "Instrument Sans";
    src: url("/fonts/InstrumentSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Instrument Sans - Medium */
  @font-face {
    font-family: "Instrument Sans";
    src: url("/fonts/InstrumentSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  /* Instrument Sans - Bold */
  @font-face {
    font-family: "Instrument Sans";
    src: url("/fonts/InstrumentSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Instrument Serif - Regular */
  @font-face {
    font-family: "Instrument Serif";
    src: url("/fonts/InstrumentSerif-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Instrument Serif - Italic */
  @font-face {
    font-family: "Instrument Serif";
    src: url("/fonts/InstrumentSerif-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; 
  text-size-adjust: 100%;       
  font-family: sans-serif;
  scroll-behavior: smooth;
}
:root {
    --big-heading:4rem;
    --links-font: .75rem;
    --paragraph-font:1rem;
    --first-parag:1rem;
    --ff-sans:"Instrument Sans";
    --ff-serif:"Instrument Serif";
    --btn-size:.75rem;
    --btn-bg:#DFE0DF;
    --btn-color:#402E32;
    --raduis: 1.2rem 1.2rem 0 0;
    --main-width:95%;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
p {
  line-height: 1.5;
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--first-parag);
  font-weight: 400;
}
input,
button,
textarea,
select {
  font: inherit;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  color: #081C2B;
  line-height: 1.5;
}
h1, .main-big-heading {
    font-family: var(--ff-serif);
    font-size: var(--big-heading);
    line-height: 92%;
    letter-spacing: -2px;
    font-weight: 400;
    margin-bottom: 1.75rem;
}
.first-paragraph {
    font-size:var(--first-parag);
    letter-spacing: -0.4px;
    font-family: var(--ff-sans);
    font-weight:400;
}
header {
    background: #081C2B;
    color: white;
    text-align: center;
    top: 0;
}
.notification {
    padding: .625rem;
}
.list-container {
    display: none;
}
.menu-btn button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    border: none;
}
.menu-list {
    position: absolute;
    top: 0;
    width: 100%;
    right:0;
    height: 0;
    overflow: hidden;
    background: rgba(8, 28, 43, .64);
    display: none;
    justify-content: center;
    align-items:end;
    transition: 600ms height ease-in-out;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
.book-btn {
    background: white;
    color: var(--btn-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .625rem;
    font-family: var(--ff-sans);
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 1rem;
    border: none;
}
.header-container {
    border-radius: 1.2rem 1.2rem 0 0;
    background-image: url(/images/main-img.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    min-height: 100svh; 
    height: auto;   
    position: relative;
    padding-bottom: 8px;
}
nav {
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--main-width);
    position: relative;
}
nav .booking-btn-container, nav .menu-btn, nav .logo {
    z-index: 100;
}
.logo {
  width: 5.625rem;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  top: 8px;
}
.logo a:hover {
  background: none;
}
.book-btn-two {
  display: none;
}
.book-btn-two:hover {
  background: #b89433;
  color: white;
  border: 2px solid #b89433;
}
.booking-btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.menu-list ul {
    padding-bottom: 1rem;
}
.menu-list li {
    font-size: 2rem;
    font-family: var(--ff-serif);
    font-weight: 400;
    visibility:hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.menu-list .visible {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}
.header-main-content {
    width: var(--main-width);
    margin: 8rem auto 0 auto;
}
.btn {
  font-size: var(--btn-size);
  font-family: var(--ff-sans);
  font-weight: 700;
  color: var(--btn-color);
  background: var(--btn-bg);
  letter-spacing: 2px;
  border: none;
  border-radius: 1rem;
  padding: .8rem 1.5rem;
  width: fit-content;
  display: block;
}
a:hover {
  color: #b89433;
}
a.hover-btn:hover {
  background: #b89433;
  color: #ffffff;
}
.booking {
  margin: 1.75rem auto;
  width: var(--main-width);
  display: flex;
  justify-content: center;
  padding-bottom: .2rem;
}
main {
  background: white;
}
.main-container {
  margin: 3.5rem auto;
  text-align: center;
  width: 100%; 
} 
.small-text {
  font-family: var(--ff-sans);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: .75rem;
  text-transform: capitalize;
}
.main-paragraph {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 2rem;
  color: #081C2B;
}
.main-paragraph span {
  color: #697178;
  transition: all 300ms ease-in-out; 
}
.first-section {
  border-radius: 0 0 1.2rem 1.2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.first-section-icons {
  width: var(--main-width);
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.first-section-icons svg {
  width: 32px;
}
.first-section-title {
  width: var(--main-width);
}
.slider-container { 
  margin: 6.5rem auto 4.5rem auto;
  position: relative;
  height:  44.75rem;
  overflow: hidden;
  width: var(--main-width);
}
.slider-container article {
  width: 75%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  display: none; 
  transition: all 500ms ease;
}
figure {
  width: 44%;
  margin-top: 1rem;
}
figcaption {
  font-family: var(--ff-sans);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: .75rem;
}
.big-heading {
  font-size: var(--big-heading);
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 3.681rem;
  margin:2rem 0 2.5rem 0;
  filter: blur(4px);
  opacity: 0;
  transition: all 700ms ease-in-out;
}
.slide-img {
  height: 360px;
  border-radius: 400px 400px 12px 12px;
  position: relative; 
}
.slide-img-one {
  background: url(/images/casablanca_550.webp); 
  background-size:cover;
  background-position: bottom;
  /* casablanca */
}
.slide-img-two {
  background: url(/images/marrakech_550.webp); 
  background-size:cover;
  background-position: bottom;
  /* marrakech */
}
.slide-img-three {
  background: url(/images/essaouira_550.webp); 
  background-size:cover;
  background-position: bottom;
  /* essaouira */
} 
.slide-img-four {
  background: url(/images/agadir_550.webp); 
  background-size:cover;
  background-position: bottom;
  /* Agadir */
}
.slide-img-five {
  background: url(/images/fes_550.webp); 
  background-size:cover;
  background-position: bottom;
  /* Fes */
}
.slide-img-six {
  background: url(/images/ouarzazate_550.webp); 
  background-size:cover;
  background-position:bottom;
  /* Ouarzazate */
}
.slider-img-icons {
  width: var(--main-width);
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: center;
  height: 100%;
  color: white;
  margin: 0 auto;
  padding-bottom: 1rem;
  z-index: 100;
  position: relative;
}
.slider-img-icons figure {
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-img-icons figcaption {
  font-size:.5rem;
  line-height: .625rem;
  letter-spacing: 2px;
  font-family: var(--ff-sans);
  font-weight: 700;
}
.slider-img-icons svg {
  height: 1.25rem;
  width: 1.25rem;
}
.linear-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%; 
  z-index: 2;
  background:linear-gradient(rgba(8, 28, 43,0) 0%,rgba(8, 28, 43, 0.64) 100%);
}

.slider-content-category {
  background: none;
  border: 1px solid rgba(8, 28, 43, .16);
  font-size: var(--btn-size);
  font-family: var(--ff-sans);
  font-weight: 700;
  color: var(--btn-color);
  letter-spacing: 2px;
  border-radius: 1rem;
  padding: .8rem .9rem;
  width: fit-content;
}
.slider-content {
  margin: 1.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-content h3 {
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.paragraph-btn {
  font-family: var(--ff-sans);
  font-size: .875rem;
  line-height: 1.24rem;
  letter-spacing: -0.2px;
  margin-top: 1rem;
}
.slider-content a {
  font-size: var(--btn-size);
  font-family: var(--ff-sans);
  font-weight: 700;
  margin-top: 1rem;
}
.slider-content-text {
  margin : 1.5rem 0 1rem 0;
}
.left-button, .right-button{
  position: absolute;
  bottom: 30%;
  background: none;
}
.left-button {
  left: 0.2rem;
}
.right-button {
  right: 0.2rem;
}
.slider-container .active-article {
  display: block;
  transform: translate(0,0);
  opacity: 1;
} 
.slider-container .prev-article {
  display: block;
  transform: translate(-115%, 2.5rem);
  opacity: .8;
}
.slider-container .next-article {
  display: block;
  transform: translate(115%,2.5rem);
  opacity: .8;
}
.about-section {
  background: black;
  color: white;
  width: 100%;
  border-radius:var(--raduis);
}
.about-section-container, .tours-section-container {
  width: var(--main-width);
  padding: 2.5rem 1rem;
  margin: 0 auto;
  text-align: left;
}
.about-section-container p {
  text-align: justify;
} 
.tours-section-container h3{
  margin:2rem 0 1.5rem 0;
}
.about-section-container span, .tours-section-container span {
  font-style: italic;
}
.last-paragraph {
  margin: 1.5rem 0 2rem 0;
}
.about-section-img {
  margin: 2.5rem 0;
  border-radius:var(--raduis);
  background-image: url(/images/chefchaoune_550.webp);
  height: 350px;
  background-size: cover;
}
.tours-section-container {
  text-align: left;
}
.tours {
  margin-top:1.5rem;
  border-radius: var(--raduis);
  background: linear-gradient(to bottom, #b89433, #FDFCFB);
  text-align: center;
}
.tour-informations {
  margin: 3rem 0;
  border-radius: 1.2rem;
  background: white;
  padding: 1.5rem;
}
.tour-img {
  height: 260px;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.6s ease;
}
.tours-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 300ms linear;
  text-align: center;
  width: 180px;
}
.tour-img:hover .tours-btn {
  opacity: 1;
}
.section {
  width: 100%;
}
.dashed {
  width: var(--main-width);
  transform: scaleX(0); 
  transform-origin: left; 
  border:1px dashed #081C2B;
  margin: 0 auto;
  transition: all 1.5s ease;
}
.added-btn {
  font-size: .625rem;
  letter-spacing: 2px;
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: .75rem;
  border: 1px solid rgba(8, 28, 43, .16);
  width: fit-content;
  padding: .8rem .9rem;
  border-radius: 1rem;
  text-align: center;

}
.added-btn:first-child{
  margin-right: .3rem;
}
.added-infos {
  display: flex;
  justify-content: flex-start; 
}
.tour-title {
  margin: 1.5rem 0;
}
.tour-title h4 {
  font-family: var(--ff-sans);
  font-weight: 500;
  line-height: 1.5rem;
  font-size: 1.25rem;
  margin-bottom: .625rem;
}
svg path {
  transition: all 600ms linear;
}
.btn.explore {
  background: white;
  margin: 0 auto 4rem auto;
}
.testimonial {
  margin: 0rem auto 0 auto;
  padding :4rem 0;
  background: linear-gradient(to bottom, #FDFCFB, #ffeeca);
  border-radius: 0 0 1rem 1rem ;
}
.testimonial-container {
  width: var(--main-width);
  margin: 0 auto;
}
.testimonial-cards-container {
  margin: 2.5rem auto;
  display: flex; 
  width: 100%;
  overflow: hidden;
}
.testimonial-card {
  background: white;
  padding: 1.5rem;
  width: var(--main-width);
  height: 390px;
  margin-right: 1rem;
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
  flex-shrink: 0;
  animation: testimonial-cards-container 20s linear infinite;
  text-align: left;
  border-radius: 1rem;
}
.testimonial-text p{
  margin-top: 2rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
}
.author-name {  
  font-size: .75rem;
  letter-spacing: 3px;
}
.author-country{
  font-size: .625rem;
  color: #697178;
}
.author-name , .author-country{
  font-family: var(--ff-sans);
  font-weight: 700;
}
path.active-stars  {
  fill: #b89433;
  stroke: #b89433;
  transition: all 600ms linear;
} 
.faqs{ 
  display: flex;
  justify-content: center;
  border-radius: var(--raduis);
}
.faqs-container {
  width: var(--main-width);
  text-align: left; 
  margin: 3.5rem auto;  
}
.faqs-title {
  margin-bottom: 1.5rem; 
} 
.faqs-content-container details { 
  background: #F5F0EA;  
  padding: 1.5rem 1.25rem;
  margin-top: .5rem; 
}

.faqs-content-container summary {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .625rem;
  line-height: .75rem;
  letter-spacing: 3px;
  cursor: pointer;
  font-weight: bold;
  list-style: none; 
  display: flex;
  justify-content: space-between;
}
.faqs-content-container p {
  font-family: var(--ff-sans); 
  font-weight: 400;
  font-size: .875rem;
  line-height: 1.2rem;
  letter-spacing: 3px; 
  margin-top: 1rem;
} 
.faqs-content-container summary span{
  font-size: 1.3em;
}
details summary .icon {
  transition: transform 0.3s ease;
}
details[open] summary .icon {
  transform: rotate(45deg);
}
.call-to-action-section {  
  margin: 2.5rem auto;
  display: grid;
  place-items: center;
  background: url(/images/main-img.webp);
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  color: white;
  height: 450px; 
  border-radius: var(--raduis);
}
.call-to-action-container {
  width: var(--main-width); 
  height: fit-content;
  display: grid;
  place-items: center;
}
.footer-links-container {
  display: flex;
  width: var(--main-width); 
  margin: 0 auto;
}
.footer-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--main-width);
  margin: 0 auto;
}
.footer-section {
  background: linear-gradient(to bottom, #fff, #ffeeca);
}
.footer-heading {
  font-size: .625rem;
  font-weight: 700;
  font-family: var(--ff-sans);
  letter-spacing: 3px;
  color: rgba(8, 28, 43, .48);
  margin-bottom: .75rem;
  font-style: normal;
}
.footer-nav {
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav li {
  margin-top: -5px;
}
.footer-nav li a {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
}
footer address{
  width: var(--main-width);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 2.5rem 0;
  grid-gap: 1.2rem 1.5rem;
}
footer address dd {
  font-family:var(--ff-sans);
  font-size: .875rem;
  font-style: normal;
}
.wrap-logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem auto;
  width: var(--main-width);
}
.logo-line {
  border: 1px solid rgba(8, 28, 43, .16);
  height: 1px;
  width: 45%;
}
.privacy {
  width: var(--main-width);
  margin: 0 auto;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.booking-form-container h3 {
  font-family: var(--ff-serif); 
}

@media screen and (min-width: 410px) {
  .book-btn {
    font-size: .75rem;
    padding: .4rem .75rem;
    width: 72px;
  }
  .menu-btn button {
    width: 40px;
    height: 40px;
  }
  .slider-container { 
    height:  43.75rem; 
  }
  .first-section-icons figure {
    width: 180px;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.2rem;
  }
  .notification {
    font-size: .8rem; 
  }
  .slider-container { 
    height:  42rem; 
  }
  .book-btn {
    width: 84px;
  }
  .slide-img {
    height: 400px;
  }
  .slider-container article{
    width: 70%;
  }
  .tour-img {
    height: 280px;
  }
  .first-section-icons figure {
    width: 200px;
  }
  .slide-img-one {
    background: url(/images/casablanca_650.webp); 
    background-size:cover;
    /* casablanca */
  }
  .slide-img-two {
    background: url(/images/marrakech_650.webp); 
    background-size:cover;
    /* marrakech */
  }
  .slide-img-three {
    background: url(/images/essaouira_650.webp); 
    background-size:cover;
    /* essaouira */
  } 
  .slide-img-four {
    background: url(/images/agadir_650.webp); 
    background-size:cover;
    /* Agadir */
  }
  .slide-img-five {
    background: url(/images/fes_650.webp); 
    background-size:cover;
    /* Fes */
  }
  .slide-img-six {
    background: url(/images/ouarzazate_650.webp); 
    background-size:cover;
    /* Ouarzazate */
  }
  .about-section-img {
    height: 420px;
    background-image: url(/images/chefchaoune_650.webp);
  }
  .tours-btn {
    width: 200px;
  }
}
@media screen and (min-width: 750px) {
  :root {
    --main-width:90%;
  }
  .slider-container article{
    width: 60%;
  }
  .about-section-img {
    height: 420px;
    background-image: url(/images/chefchaoune_851.webp);
  }
  .tour-img {
    height: 320px;
  }
  .faqs-content-container details { 
    margin-top: .725rem;
  }
  .slide-img-one {
    background: url(/images/casablanca_850.webp); 
    background-size:cover;
    /* casablanca */
  }
  .slide-img-two {
    background: url(/images/marrakech_850.webp); 
    background-size:cover;
    /* marrakech */
  }
  .slide-img-three {
    background: url(/images/essaouira.webp); 
    background-size:cover;
    /* essaouira */
  } 
  .slide-img-four {
    background: url(/images/agadir_850.webp); 
    background-size:cover;
    /* Agadir */
  }
  .slide-img-five {
    background: url(/images/fes_850.webp); 
    background-size:cover;
    /* Fes */
  }
  .slide-img-six {
    background: url(/images/ouarzazate_850.webp); 
    background-size:cover;
    /* Ouarzazate */
  }
}
@keyframes testimonial-cards-container {
  from { transform: translateX(0); }
  to { transform: translateX(-300%); }
}
