/*
 Theme Name:  Divi Child Theme
 Theme URI:     
 Description:  Child Theme for Divi
 Author:       Divi
 Author URI:    
 Template:     Divi
 Version:      1.0.0
*/


/* ─── SECTION TITLE + UNDERLINE ──────────────────── */

   .top-section {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      padding: 40px 20px;
    }

    .top-text {
      max-width: 500px;
      width: 100%;
      text-align: center;
    }

    .top-text h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .top-text p {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 30px;
    }

    .top-text button {
      background-color: #A46548;
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 10px;
    }

    .top-image {
      width: 100%;
      max-width: 700px;
    }

      .top-image img {
      width: 100%;
      height: auto;
      border-radius: 30px;
      display: block;
    }

    @media (min-width: 768px) {
      .top-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }

    .top-text {
        text-align: left;
      }

      .top-image {
        margin-left: 40px;
      }
    }

/* ─── REVIEW CARD ───────────────────────────────── */
.container-flex .review {

  padding: 16px;
 }

/* ─── TITLE AS H3 ───────────────────────────────── */
.container-flex .review h3,
.container-flex .review b {
      color: #ae441e; line-height : 1.6em;
}

/* ─── REVIEW TEXT ───────────────────────────────── */
.container-flex .review p {
  margin: 10px 0 12px;
  line-height: 1.6;
  color: #000; font-size: 16px;
    font-weight: normal;
}

/* ─── STAR RATING (2nd paragraph) ───────────────── */
.container-flex .review p:nth-of-type(2) {
  font-size: 20px;
  color: #D4A017;
  margin-bottom: 8px;
}

/* ─── AUTHOR NAME (3rd paragraph) ───────────────── */
.container-flex .review p:nth-of-type(3) {
  font-size: 14px;
  font-style: italic;
  color: #555;
  margin-bottom: 0;
}

/* ─── REMOVE EXTRA MARGIN ──────────────────────── */
.container-flex .review p:last-child {
  margin-bottom: 0;
}

.container-flex .review span {
  display: inline-block;
  position: relative;
  padding-left: 100px;   /* 5★ × 20px + ~10px gap */
 
    font-size: 13px;
    color: black;
}
 

.container-flex .review span::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ffa800;
}

/* ─── ACCORDION ITEM WRAPPER ───────────────────────── */
.faq-item {
  margin-bottom: 10px;border-bottom: 1px dashed rgba(174, 68, 30, 0.2);
}

/* ─── QUESTION (H3) ───────────────────────────────── */
.faq-item h3 {
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 550;
  color: #000;
  /*border-bottom: 1px dashed rgba(174, 68, 30, 0.2);*/
}

/* Remove bottom border on last question  
.faq-item:last-child h3 {
  border-bottom: none;
}*/


/* ─── PLUS / MINUS ICON ───────────────────────────── */
.faq-item h3::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #ae441e;
  transition: transform 0.2s, color 0.2s;
}

/* Swap to minus when open */
.faq-item.open h3::before {
  content: "–";
}

/* Hover effects on question */
.faq-item h3:hover {
  color: #ae441e;
}
.faq-item h3:hover::before {
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

/* ─── ANSWER (Paragraph) ──────────────────────────── */
.faq-item p {
  display: none;
  margin: 12px 0 16px 14px;
  color: #333;
  line-height: 1.6;
}

/* Show answer when open */
.faq-item.open p {
  display: block;
}

@media screen and (max-width: 767px) {
    .faq-item {
        padding: 0 16px;
    }
    .accordion h3 {
        font-size: 22px;
    }
}

/*** Responsive Styles Large Desktop And Above ***/

   /* Container styling */
 ul.toc {
   display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 24px;
  margin: 0;
  list-style: none;
}

ul.toc li a {
  position: relative;
  color: #f1e6d1;              /* off-white text */
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;       /* remove native underline */
  padding: 4px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* default “underline” */
ul.toc li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;                /* tweak gap under letters */
  width: 0;
  height: 3px;
  background-color: #f78f1e;   /* default underline (burnt-orange) */
  transition: width 0.25s ease, background-color 0.3s ease;
}

/* hover + active state */
ul.toc li a:hover,
ul.toc li a.active {
  color: #ffb142;              /* golden-orange text on hover */
  transform: scale(1.1);       /* slight “pop” effect */
}

ul.toc li a:hover::after,
ul.toc li a.active::after {
  width: 100%;                 
  background-color: #ffb142;   /* match hover text color */
}
.rev-summary {
  display: flex;
}
.no-star {
  width: auto;

  margin: 1px 1px 1px 2px;
}
.full-star {
  width: 17px;
  height: 17px;
  background-image: url("https://www.marrakesh-desert-tours.com/wp-content/themes/marrakechtours/images/star-full.svg");
  background-size: cover;
  margin: 6px 1px 1px 2px;}

.half-star {
  width: 17px;
  height: 17px;
  background-image: url("https://www.marrakesh-desert-tours.com/wp-content/themes/marrakechtours/images/star-half.svg");
  background-size: cover;
  margin: 6px 1px 1px 2px;}

ul.activity-program {
    list-style-type: none !important; padding: 1em;
}
 
ul.activity-program li{
    margin-bottom: min(max(0.56rem,calc(0.56rem + ((1vw - 0.32rem) * 0.3))),0.8rem);
    padding-left: 24px;
    background: no-repeat;
    background-size: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTcnIGhlaWdodD0nMjgnIHZpZXdCb3g9JzAgMCAxMjQgMTI0JyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxjaXJjbGUgY3g9JzYxLjUnIGN5PSc2Mi41JyByPSczMi41JyBmaWxsPScjQjE0RTNFJy8+PC9zdmc+Cg==);
}


@media all and (min-width: 1405px) {
  h1 {
    font-size: 27px
    
   
  }
	
	h2 {
    font-size: 26px
    
   
  }
	
	h3 {
    font-size: 24px
    
   
  }
	h4 {
    font-size: 22px
  
 
  }
}
 
/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) and (max-width: 1405px) {
  h1 {
    font-size: 28px
   
  }
	
	h2 {
    font-size: 26px
  
  }
	
	h3 {
    font-size: 24px
   
  }
	h4 {
    font-size: 22px
 
  }
}
 
/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
 h1 {
    font-size: 26px
   
  }
	
	h2 {
    font-size: 24px
  
  }
	
	h3 {
    font-size: 22px
   
  }
	h4 {
    font-size: 20px
 
  }
	
}
 
/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {
 h1 {
    font-size: 26px!important
   
  }
	
	h2 {
    font-size: 26px
  
  }
	
	h3 {
    font-size: 24px
   
  }
	h4 {
    font-size: 22px
 
  }
}
 
/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
 	h1 {
    font-size: 24px !important
   
  }
	
	h2 {
    font-size: 24px
  
  }
	
	h3 {
    font-size: 22px
   
  }
	h4 {
    font-size: 20px
 
  }
}
 
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
 
}



#top-menu-nav>ul>li>a:hover {
    opacity: 1 !important;
  
}

.divi-cta-menu a:before {
    position: absolute;
       margin-top: -17px;
    left: 7px;
    content: "";
    width: 44px;
    height: 44px;
 
	
	  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='44px' height='44px'%3E%3Cg fill='none' fill-rule='none' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(5.33333,5.33333)'%3E%3Cpath d='M4.868,43.303l2.694,-9.835c-1.662,-2.878 -2.536,-6.144 -2.535,-9.489c0.005,-10.465 8.521,-18.979 18.987,-18.979c5.079,0.002 9.845,1.979 13.43,5.566c3.584,3.588 5.558,8.356 5.556,13.428c-0.004,10.465 -8.522,18.98 -18.986,18.98c-0.001,0 0,0 0,0h-0.008c-3.177,-0.001 -6.3,-0.798 -9.073,-2.311z' fill='%23ffffff' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M4.868,43.803c-0.132,0 -0.26,-0.052 -0.355,-0.148c-0.125,-0.127 -0.174,-0.312 -0.127,-0.483l2.639,-9.636c-1.636,-2.906 -2.499,-6.206 -2.497,-9.556c0.004,-10.742 8.745,-19.48 19.486,-19.48c5.21,0.002 10.105,2.031 13.784,5.713c3.679,3.683 5.704,8.577 5.702,13.781c-0.004,10.741 -8.746,19.48 -19.486,19.48c-3.189,-0.001 -6.344,-0.788 -9.144,-2.277l-9.875,2.589c-0.042,0.012 -0.084,0.017 -0.127,0.017z' fill='%23ffffff' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M24.014,5c5.079,0.002 9.845,1.979 13.43,5.566c3.584,3.588 5.558,8.356 5.556,13.428c-0.004,10.465 -8.522,18.98 -18.986,18.98h-0.008c-3.177,-0.001 -6.3,-0.798 -9.073,-2.311l-10.065,2.64l2.694,-9.835c-1.662,-2.878 -2.536,-6.144 -2.535,-9.489c0.005,-10.465 8.521,-18.979 18.987,-18.979M24.014,42.974v0v0M24.014,42.974v0v0M24.014,4v0c-11.016,0 -19.982,8.962 -19.987,19.979c-0.001,3.367 0.849,6.685 2.461,9.622l-2.585,9.439c-0.094,0.345 0.002,0.713 0.254,0.967c0.19,0.192 0.447,0.297 0.711,0.297c0.085,0 0.17,-0.011 0.254,-0.033l9.687,-2.54c2.828,1.468 5.998,2.243 9.197,2.244c11.024,0 19.99,-8.963 19.995,-19.98c0.002,-5.339 -2.075,-10.359 -5.848,-14.135c-3.775,-3.777 -8.796,-5.858 -14.139,-5.86z' fill='%23ffffff' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M35.176,12.832c-2.98,-2.982 -6.941,-4.625 -11.157,-4.626c-8.704,0 -15.783,7.076 -15.787,15.774c-0.001,2.981 0.833,5.883 2.413,8.396l0.376,0.597l-1.595,5.821l5.973,-1.566l0.577,0.342c2.422,1.438 5.2,2.198 8.032,2.199h0.006c8.698,0 15.777,-7.077 15.78,-15.776c0.001,-4.215 -1.638,-8.179 -4.618,-11.161z' fill='%2350ba6f' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M19.268,16.045c-0.355,-0.79 -0.729,-0.806 -1.068,-0.82c-0.277,-0.012 -0.593,-0.011 -0.909,-0.011c-0.316,0 -0.83,0.119 -1.265,0.594c-0.435,0.475 -1.661,1.622 -1.661,3.956c0,2.334 1.7,4.59 1.937,4.906c0.237,0.316 3.282,5.259 8.104,7.161c4.007,1.58 4.823,1.266 5.693,1.187c0.87,-0.079 2.807,-1.147 3.202,-2.255c0.395,-1.108 0.395,-2.057 0.277,-2.255c-0.119,-0.198 -0.435,-0.316 -0.909,-0.554c-0.474,-0.238 -2.807,-1.385 -3.242,-1.543c-0.435,-0.158 -0.751,-0.237 -1.068,0.238c-0.316,0.474 -1.225,1.543 -1.502,1.859c-0.277,0.317 -0.554,0.357 -1.028,0.119c-0.474,-0.238 -2.002,-0.738 -3.815,-2.354c-1.41,-1.257 -2.362,-2.81 -2.639,-3.285c-0.277,-0.474 -0.03,-0.731 0.208,-0.968c0.213,-0.213 0.474,-0.554 0.712,-0.831c0.237,-0.277 0.316,-0.475 0.474,-0.791c0.158,-0.317 0.079,-0.594 -0.04,-0.831c-0.117,-0.238 -1.039,-2.584 -1.461,-3.522z' fill='%23ffffff' fill-rule='evenodd'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center center no-repeat;
	
	
}


.divi-cta-menu a {
  background-color: #50ba6f ;
 padding: 15px 15px 15px 55px !important;
  border-radius: 25px;
  text-transform: uppercase;
  color: #fff !important;
  text-align: center;
}
.divi-wiggle {
	box-shadow: 0 0 1px transparent;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    animation-name: wiggle;
    -o-animation-name: wiggle;
    -ms-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -webkit-animation-name: wiggle;
    animation-duration: 5s;
    -o-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-play-state: running;
    -o-animation-play-state: running;
    -ms-animation-play-state: running;
    -moz-animation-play-state: running;
    -webkit-animation-play-state: running;
}

.divi-breathing {
	-webkit-animation:divi-bar-breathing 7s ease-out infinite normal;
	animation:divi-bar-breathing 7s ease-out infinite normal
}


@keyframes wiggle{2%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}4%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}6%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}8%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}10%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}12%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}14%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}16%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}18%{-webkit-transform:translateX(1px) rotate(0);transform:translateX(1px) rotate(0)}20%{-webkit-transform:translateX(-1px) rotate(0);transform:translateX(-1px) rotate(0)}}.divi-bar-breathing{-webkit-animation:divi-bar-breathing 7s ease-out infinite normal;animation:divi-bar-breathing 7s ease-out infinite normal}@-webkit-keyframes divi-bar-breathing{0%{-webkit-transform:scale(0.9);transform:scale(0.9)}25%{-webkit-transform:scale(1);transform:scale(1)}60%{-webkit-transform:scale(0.9);transform:scale(0.9)}100%{-webkit-transform:scale(0.9);transform:scale(0.9)}}@keyframes divi-bar-breathing{0%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}25%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}60%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}100%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}}

   .con-price {
        padding: 20px;
      
       margin: 20px;
     
        overflow: hidden; /* Ensures the container encompasses the floated elements */
    }

    .action-area {
        display: flex; /* Use flexbox for layout */
        justify-content: center; /* Center flex items horizontally */
        align-items: center; /* Align flex items vertically */
    }

    .tour-price {
        color: #189ddc !important;
    font-size: 20px !important;
    line-height: 39px !important;
    font-weight: bold;
        margin-right: 15px; /* Space between the price and button */
    }

    .book-button {
        background-color: #ff8800;
    border: none;
    line-height: 38px;
    color: white;
    padding: 2px;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    margin: 5px auto;
    cursor: pointer;
    font-weight: bold;
    }
.book-button:hover {
    background-color: #FF7700;
    border-color: #FF7700;
transition: transform .2s ease-out;
    transform: scale(1.05);
}
    /* Style for mobile devices */
    @media (max-width: 767px) {
        .con-price {
            font-size: 14px;
        }
        .price-07, .book-button {
            margin: 5px; /* Adjust margin for mobile */
        }
    }

    /* Style for desktop devices */
    @media (min-width: 766px) {
        .action-area {
            float: right; /* Float the container to the left */
        }
        .con-price {
            font-size: 16px;
        }
        .book-button {
           /* padding: 3px 1px;*/
            font-size: 18px;
        }
        .price-07 {
            line-height: 35px; /* Align text vertically with button */
        }
    }

span.mobile_menu_bar:before{
  color:#ae441e;
}
.et_mobile_menu {
  
    border-top: 3px solid #f9f4f1;
  
}
	.new {
     width: 98% !important;  
  
}

 @media only screen and (max-width: 600px) {
	.et_pb_row-new {
    /* width: 100% !important; */
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
	 
   .slide5 {
display: block !important;   
    } 
	 .slide05 {display:none !important}
	 .slide02 {display:none !important}
	 .slide03 {display:none !important}
	 .slide04 {display:none !important}
 .slide01 {
  
    height: 250px !important; border-radius:   0px !important;
  
}
.et_pb_row_0 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;

}
}

.et_pb_row-new {    width: 100% !important;  padding-top: 10px !important; padding-bottom: 10px !important;}
.slide5 {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 4px;
grid-row-gap: 4px;
}

.slide01 { grid-area: 1 / 1 / 3 / 3; height: 392px;
      border-radius: 15px 0px 0px 15px; background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
.slide02 { grid-area: 1 / 3 / 2 / 4; background-color: beige;}
.slide03 { grid-area: 1 / 4 / 2 / 5; background-color: #d1d15c; border-radius: 0px 15px 0px 0px; }
.slide04 { grid-area: 2 / 3 / 3 / 4; background-color: #ffff91;}
.slide05 { grid-area: 2 / 4 / 3 / 5; background-color: #e4e489; border-radius: 0px 0px 15px 0px;}
 .titdiv {
    
    right: 0;
    bottom: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 70px;
    display: block;
    z-index: 99 !important;
}

.one1t {
    width: 50%;
    height: 49px;
    float: left; 
}

.one1t h1  {
font-size: 22px;
    margin: 10px 1px 10px 20px;
}
.two2t {
    width: 50%;
    height: 49px;
    overflow: hidden; 
}
.flr{ float: right; }


.price-text {
flex: 5;
  padding: 10px;
  box-sizing: border-box;
}
.book-text p{
 
  color: #189ddc !important;
   
    font-size: 20px !important;
    line-height: 30px !important;
   padding: 5px;
}
.book-text {
  flex: 5;
  
  padding: 10px;
  box-sizing: border-box;
}

 
	.bookcontainer {
  display: flex;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  justify-content: flex-end; /* Add this line */

}


.sideform { background-color:#fff;
    -webkit-box-shadow: 0 3px 5px rgb(70 70 70/.1);
    -ms-box-shadow: 0 3px 5px rgba(70,70,70,.1);
    box-shadow: 0 3px 5px rgb(70 70 70/.1);
    border-radius: 12px;
    padding: 15px;
 margin-left: 20px; margin-bottom: 26px; margin-top:20px
 
}
.moctar0 {
    display: none;
}
@media all and (max-width: 980px) {
  .moctar0 {
    position: fixed;
    right: 0;
    bottom: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 40px;
    display: block;
    z-index: 99 !important;
}

.oone1 {
    width: 50%;
    height: 49px;
    float: left;
}
.ttwo2 {
    width: 50%;
    height: 49px;
    overflow: hidden;
}

.org5 {
    display: inline-block;
    height: 40px;
    padding-top: 2px;
    border: 1px solid #ff9e00;
    background: #f80;
    width: 100%;
    margin-right: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 -1px 0 #da5c00;
    text-transform: uppercase;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
}
.org6 {
    display: inline-block;
    height: 40px;
    padding-top: 2px;
    border: 1px solid #793319;
    background: #793319;
    width: 100%;
    margin-right: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    text-shadow: 0 -1px 0 #da5c00;
    text-transform: uppercase;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
}
}

.oneprice{
 
/*  width:300px;
  height:100px;*/  
  float:left; padding:12px 10px 1px 1px
}
.oneprice p{
 
  color: #189ddc !important;
   
    font-size: 20px !important;
    line-height: 39px !important; font-weight: bold;
   
}

.twoprice{
/*  width:300px;
  height:100px;*/

  overflow:hidden;  padding:5px;  
}


 .box1p, .boxpr {
    float: left; 
    margin-right: 10px; /* Optional, adds space between the divs */
}
.cleart {
    clear: both;
}
.price {
    float: right;
    padding: 0 20px 0 0;
    font-weight: 700; margin: 5px;
}
.tourimgb {
     border-radius: 10px;margin-bottom: 10px;
}

   
.price span {
    padding: 0 5px;
    color: #ff8400;
    font: 800 2.123em HK Grotesk, sans-serif;
}
.price span.currency {
    position: relative;
    top: -15px;
    padding: 0;
    font-size: 1.538em;
    font-weight: 300;
}
body {
  font-size: 16px !important;
  line-height: 1.75;
  font-weight: 400;
  font-family: HK Grotesk, sans-serif;
  color: #666666;
   
 background-color: #f8fcfe;
}
h1, h2, h3, h4, h5, h6 {
  font-family: HK Grotesk, sans-serif;
  color: #2f2a55;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 0;
}
.button3 {
    background-color: #008768;
    border: none;
    line-height: 38px;
    color: white;
    padding: 1px;
    width: 170px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 5px auto; cursor: pointer
}
	.button3:hover {
    background-color: #00614b;
    border-color: #005441;
}

h1 {
  font-size: 30px;
}



h2 {
  font-size: 26px;
}

	

h3 {
  font-size: 22px;
}



h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 0;
}


.all {  
		
		margin-bottom: 12px;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 100%;
		margin: 0 auto; background-color: #F9F4F1!important;
	}
	
	.tripcontainer {
		display: flex;
		 
		margin:20px 3px 10px 3px; border-radius: 10px;  
    background-color: #fff;
		   position: relative; box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;

	}
    
	.trips-pic {
		width: 25%;
		height: 216px;
	}
    
	.trips-pic2 {
		width: 25%; 
	}
	.trips-pic2s {
		width: 20%; 
	}
	.trips-txt {
		width: 75%;
	}
	.trips-txt-s {
		width: 80%;
	}
	.bk-image {
		background-position: 50%;
		background-repeat: no-repeat;
		height: 100%;
		width: 100%;
		background-size: cover;
	}
	
	.bckimage {
		height: 216px !important;
		background-position: 50%;
		background-repeat: no-repeat;
 		width: 100%;
		background-size: cover;  margin: 10px; border-radius: 10px; filter: saturate(1.35);
	}
	.bckimage-mini {
		height: 160px !important;
		background-position: 50%;
		background-repeat: no-repeat;
 		width: 100%;
		background-size: cover;  margin: 10px; border-radius: 10px
	}
	.trips-txt h2 {
		font-size: 18px;
		line-height: 24px;
		margin: 0;
		width: 100%;
		font-weight: 700;
		color: #1b1e26;
		font-family: HK Grotesk, sans-serif;
	}
	.trips-txt-s h2 {
		font-size: 18px;
		line-height: 24px;
		margin: 0;
		width: 100%;
		font-weight: 700;
		color: #1b1e26;
		font-family: HK Grotesk, sans-serif;
	} 
	.trips-txt  p {
		font-size: 15px;
    line-height: 25px;
    font-family: HK Grotesk, sans-serif;
    color: #6e6f7b;
    max-height: 10rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: normal;
	}
	.trips-txt-s p {
		font-size: 15px;
    line-height: 25px;
    font-family: HK Grotesk, sans-serif;
    color: #6e6f7b;
    max-height: 10rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: normal;
	}
	.tourdetails {
		padding: 12px 20px 1px 24px;
	}
	
	.button2 {
    background-color: #ff8800;
    border: none;
    line-height: 38px;
    color: white;
    padding: 2px;
    width: 170px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    margin: 5px auto; cursor: pointer; font-weight: bold;
}
	.button2:hover {
    background-color: #FF7700;
    border-color: #FF7700;
transition: transform .2s ease-out;
    transform: scale(1.05);
}
	.reserver {
  position: absolute;
  bottom: 12px;
  right: 12px;
     /*  float: right;Adjust the text color as per your needs */
}
	.priceposi {
  position: absolute;
top: 15px;
    right: 15px;
    font-size: 18px;
     /*  float: right;Adjust the text color as per your needs */
} 

    .star-div {
     display: flex;
    align-items: center;
     width: 91px;
    height: 17px;
    margin: -5px 2px 2px 0px;
    }
    
    .star-div::before {
      content: '★★★★★'; /* Full stars */
      font-size: 20px; /* Adjust the star size as per your requirement */
      color: #ffa800; /* Adjust the star color as per your requirement */
    }
    
    .star-div.half::before {
      content: '★★★★☆'; /* Half star */
    }	
/* ////////////////////////////////////////////////////mobile */
	
	
	/*** Responsive Styles Large Desktop And Above ***/
@media all and (min-width: 1405px) {
  
}
 
/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) and (max-width: 1405px) {
 
}
 
/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
 .reserver {

    bottom: 5px !important;
    right: 12px;
}
	.trips-txt   p {
	
		
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
	}
	
 .trips-txt-s p {
	
		
    display: -webkit-box;
    -webkit-line-clamp: 2;
	 /* -webkit-line-clamp: 1;*/
    -webkit-box-orient: vertical;
    white-space: normal;
	}
	
}
 
/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 767px) and (max-width: 980px) {
	
	 .bckimage {
    height: 190px !important 

}
	 .bckimage-mini {
    /*height: 128px !important */
  height: 150px !important 
}
	.trips-txt   h2 {
		font-size: 16px;
		
	}
  .trips-txt-s h2 {
		font-size: 16px;
		
	}
.trips-pic2 {
  width: 30%; 
	 
}
	.trips-pic2s {
  width: 30%; 
		 
}
 .trips-txt {
    width: 70%; 
	   
}

 .trips-txt-s {
   width: 70%; 
	   
}
}

	
/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
	.flr {
    float: none; margin-left:100px
}
	.tripcontainer {
    display: block;
		 }
	.bckimage-mini {
    height: 200px!important;
	}
 .one-text  {
    flex: 100%!important;
		padding: 5px 0px 0px 0px!important; margin: 10px 2px 0px 5px;
  }
	
	.two-text {
    flex: 100%!important;
		padding: -5px 0px 0px 0px!important; margin: 0px 2px 0px 5px;
  }
	

 .trips-pic2 {
   width: 96%;
        padding-top: 1px;
}
	.trips-pic2s {
   width: 96%;
    padding-top: 3px;
}
 .trips-txt {
    width: 100%;
}
 .trips-txt-s {
    width: 100%;
}
.bckimage {
    height: 200px !important 

}
	
.trips-txt   h2 {
		font-size: 19px;
		
	}
 .trips-txt-s h2 {
		font-size: 19px;
		
	}
 /* .trips-txt-s p { display: none
		
		 
	
}
.trips-txt  p { display: none
		
		 
	
}*/
}
  /*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 600px) {
	.flr {
    float: none; margin-left:80px
	}

.oneprice {
 
    padding: 13px 10px 1px 1px;
}

}
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 500px) {

	.oneprice {
 
    padding: 7px 7px 1px 1px;
}
	.flr {
    float: none; margin-left:50px
}
	.button3 {
   
    line-height: 40px;
  
    padding: 1px;
    width: 180px;
  
    border-radius: 5px;
   
    font-size: 14px;
    margin: 5px auto;
 
}	
	
  .bckimage {
    height: 220px !important 

}

 .bckimage-mini {
    height: 220px !important 

}
.button2 {
   
    line-height: 32px;
  
    padding: 1px;
    width: 135px;
  
    border-radius: 5px;
   
    font-size: 16px; font-weight:bold;
    margin: 5px auto;
 
}	
	.star-div::before {
     
      font-size: 16px !important; /* Adjust the star size as per your requirement */
  
    }
}
 /*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 400px) {
	.flr {
    float: none; margin-left:25px
}
	
	.button3 {
   
    line-height: 40px;
  
    padding: 1px;
    width: 180px;
  
    border-radius: 5px;
   
    font-size: 14px;
    margin: 5px auto;
 
}	 
	.tourdetails {
   padding: 5px 1px 5px 13px;
}
	
	.bckimage {
   
    margin: 5px;
   
}
	
	.bckimage-mini {
   
    margin: 5px;
   
}
	
	.reserver {

    bottom: 1px;
    right: 5px;

}
  .bckimage {
    height: 220px !important 

}
.button2 {
   
    line-height: 30px;
  
    padding: 1px;
    width: 135px;
  
    border-radius: 5px;
   
    font-size: 16px;
    margin: 5px auto;
 
}	 
	
	.trips-txt   h2 {
    font-size: 16px;
    line-height: 20px;
    
}
  .trips-txt-s h2 {
    font-size: 16px;
    line-height: 20px;
    
}

} 
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 300px) {
	.flr {
    float: none; margin-left:4px
}}
.container-banner {
  display: flex;
  flex-wrap: wrap;
}

.box {
  flex: 1;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff; filter: saturate(1.35);
}



@media (max-width: 680px) {
  .box {
    flex-basis: 100%;
    border: none;
	   height: 300px
  }
	.box2   { display: none
}
	 .box3   { display: none
}
	  .box4 { display: none
}
}

@media (min-width: 680px) and (max-width: 1024px) {
  .box {
    flex-basis: 25%;
	  height: 250px
		  
  }
	.box4 { display: none
}
}


#flexcontainer {
  display: flex;
  flex-wrap: wrap;    max-width: 1024px;
    margin: 0 auto;
}

.one {
  flex: 7;
  
  padding: 10px;
  box-sizing: border-box;
}

.two {
  flex: 3;
 
  padding: 10px;
  box-sizing: border-box;     position: relative;
}



@media (max-width: 768px) {
  .one, .two {
    flex: 100%;
  }
}
		
.one-text h1 {
  color:#fff
}
#flexcontainer-text {
	/*
  display: flex;
  flex-wrap: wrap;    max-width: 1024px;
    margin: 0 auto;*/
	/*position: sticky;
  top: 0;*/
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  
  /*z-index: 999;*/
}
#flexcontainer-text2 {
	/*
  display: flex;
  flex-wrap: wrap;    max-width: 1024px;
    margin: 0 auto;
	position: sticky;
  top: 0;*/
  display: flex;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;

  z-index: 9;
}
.one-text {

flex: 7;
  padding: 10px;
  box-sizing: border-box;     
}
.one-text p {
color: #F4E8CE;
    font-size: 17px;
    line-height: 26px;
  
    font-weight: 600;
}
.one-text a {
color: #F4E8CE;
	 font-size: 17px;
    line-height: 26px;
  
    font-weight: 600;

}
.two-text {
  flex: 3;
  
  padding: 10px;
  box-sizing: border-box;
}

 
	#flexcontainer {
  display: flex;
  flex-wrap: wrap;    max-width: 1024px;
    margin: 0 auto;   position: relative;

}


#sticky {
  position: sticky;
  top: 130px;
}

@media (max-width: 768px) {
  .one, .two {
    flex: 100%;
  }
}
	a.gop {
    position: fixed;
    right: 10px;
    border-radius: 50px;
    bottom: 50px;
    display: block;
    overflow: hidden;
    width: 60px;
    height: 60px;
    background: url(https://www.marrakesh-desert-tours.com/wp-content/themes/marrakechtours/images/wat.png) 50% 50% no-repeat #50ba6f;
    text-indent: -50em;
    z-index: 99;
}	

 

.et_fixed_nav #main-header {
    position: absolute;
}

.crescendo { animation: 1.3s infinite crescendo;	}
		
 		
		
	@keyframes crescendo {
  0% {
    transform: scale(1);
  }
14% {
    transform: scale(1.05);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.05);
  }
		 70% {
    transform: scale(1);
  }
}		

  .more-text {
      display: none;
    }
		
		   .read-more {
      display: inline;
      padding: 0;
      border: none;
      background: none;
      color: #ae441e;
      text-decoration: underline;
      cursor: pointer;
    }

    .read-more:focus {
      outline: none;
    }
  .ul-trip {
      display: grid;
	  gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    
      list-style-type: none;
      width: 100%;
     
      padding: 1px;
     
    }

    .ul-trip h3 {
      margin: 10px 2px 10px 2px;
      color: #bf431f;
       text-align: center;
      text-transform: capitalize; line-height: 22px;
    }

    .ul-trip li {
      position: relative;
      padding: 5px;
      overflow: auto;
      background-color: #fff; border-radius: 5px; box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    }

    .ul-trip li .offer {
      position: absolute;
      top: 11px;
      left: 2px;
      background-color: #d91216;
      color: #fff;
      padding: 5px 10px;
    }
  .ul-trip li .offer:before {
      position: absolute;
      left: 0;
      top: 34px;
      width: 0;
      height: 0;
      border-right: 3px solid #a60a0a;
      border-top: 3px solid #a60a0a;
      border-left: 3px solid #f4e8ce;
      border-bottom: 3px solid #f4e8ce;
      content: " ";
    }
    .ul-trip li:hover {
      background: #fff;
      cursor: pointer;
    }

    .ul-trip li img {
      width: 100%;
      
      border-radius: 5px;
    }

    .ul-trip li span {
      position: absolute;
      left: 0px;
      top: 29px;
      z-index: 5;
      padding: 0 10px;
      border: none;
      box-shadow: 0 0 2px rgba(0, 0, 0, .2);
      background: #d91216;
      color: #fff;
  
      line-height: 40px;
    }

    .ul-trip li span:before {
      position: absolute;
      left: 0;
      top: 40px;
      width: 0;
      height: 0;
      border-right: 3px solid #a60a0a;
      border-top: 3px solid #a60a0a;
      border-left: 3px solid #f4e8ce;
      border-bottom: 3px solid #f4e8ce;
      content: " ";
    }

    .ul-trip li p {
      font: 200 12px/1.5 Aeonik,Helvetica,Arial,sans-serif;
    }

    .ul-trip li button {
      margin-top: 10px;
    }

    @media only screen and (max-width: 600px) {
      .tripli {
        margin: 10px;
      }
      .ul-trip {
        grid-template-columns: repeat(1, 1fr) !important;
      }
    }

    @media only screen and (max-width: 800px) {
      .ul-trip {
        grid-template-columns: repeat(2, 1fr);
      }
    }
ul.ul-trip {
    padding: 0 0 23px 2px;
}

    .container-flex {
      display: flex;       flex-wrap: wrap;

    }
.review {
      flex-basis: 33.33%;
      padding: 10px;
       box-sizing: border-box;
    }

 .review:not(:last-child) {
      border-right: 1px dashed #ccc;
    }


    @media (max-width: 768px) {
      .review {
        flex-basis: 100%; 
		  
      }
		 .review:not(:last-child) {
      border-bottom: 1px dashed #ccc;
    }
 .review:not(:last-child) {
      border-right: none;
    }

		
    }

.hidf   {display:none}

 /* 
** Contact Form 7 Styles 
*/

.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form input[type="url"], 
.wpcf7-form input[type="password"], 
.wpcf7-form input[type="search"], 
.wpcf7-form input[type="number"], 
.wpcf7-form input[type="tel"], 
.wpcf7-form textarea {
    color: #1f252b;
    width: 100%;
    padding: 12px 16px;
    border-radius: 0;
border:1px solid #ccc
}

.wpcf7-form p {
    margin: 0 0 2px;
}

.wpcf7-text:focus, 
.wpcf7-textarea:focus {
    outline: 1px solid rgba(84, 222, 197, 0.9);
    outline-offset: 0;
}

div.wpcf7-mail-sent-ok {
    border: 0;
    background: #5471de;
    color: #fff;
    padding: 18px;
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
    border: 0;
    background: #f9443b;
    color: #fff;
    padding: 18px;
}

span.wpcf7-not-valid-tip {
    color: #f9443b;
}

/* 
** Button Styles 
*/

.wpcf7-form .button {
    background-color: #ff6b00;
    border: 0;
    color: #fff;
    border-radius: 1px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: auto;
    padding: 12px 60px;
    letter-spacing: 2px;
    font-size: 14px;
}
input.wpcf7-form-control.wpcf7-submit {
   display: block;
   margin: 0 auto;
}
.wpcf7-form .button:hover {
    cursor: pointer;
    box-shadow: 0px 7px 16px -7px rgba(0, 0, 0, 0.4);
    border: 0;
}
.includ p {
margin-left: 2.5rem;
    padding-bottom: 0; 
	 padding-top: 10px; 
	/* display: list-item;*/
}
.includ p:before {
position: absolute;
       margin-top: 4px;
    left: 17px;
    content: "";
    width: 15px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%2343a32d%27 viewBox=%270 0 448 512%27%3E%3Cpath d=%27M413.505 91.951L133.49 371.966l-98.995-98.995c-4.686-4.686-12.284-4.686-16.971 0L6.211 284.284c-4.686 4.686-4.686 12.284 0 16.971l118.794 118.794c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.686-4.686-12.284-4.686-16.97 0z%27/%3E%3C/svg%3E") center center no-repeat;
	
 
}
    


.xclud strong {
   color: #ae441e;
    font-size: 17px;
    line-height: 26px;
      font-weight: 700;
    font-weight: 600;
    display: flex;
    padding: 10px;
}

.includ  strong {
   color: #ae441e;
    font-size: 17px;
    line-height: 26px;
      font-weight: 700;
    font-weight: 600;
    display: flex;
    padding: 10px;
}
.xclud p {
margin-left: 2.5rem;
    padding-bottom: 0; 
	 padding-top: 10px; 
	/* display: list-item;*/
}
.xclud p:before {
position: absolute;
       margin-top: 4px;
    left: 17px;
    content: "";
    width: 15px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23d80808%27 viewBox=%270 0 320 512%27%3E%3Cpath d=%27M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z%27/%3E%3C/svg%3E") center center no-repeat;
	
	/*
	 * url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%2343a32d%27 viewBox=%270 0 448 512%27%3E%3Cpath d=%27M413.505 91.951L133.49 371.966l-98.995-98.995c-4.686-4.686-12.284-4.686-16.971 0L6.211 284.284c-4.686 4.686-4.686 12.284 0 16.971l118.794 118.794c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.686-4.686-12.284-4.686-16.97 0z%27/%3E%3C/svg%3E") center center no-repeat
	 * */
}
    


 

.accordion {
    display: flex;
    flex-direction: column;
  
    max-width: 991px;
    min-width: 310px;
   *margin: 10px auto;
    padding: 0 10px;
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
   /* margin-top: 16px;*/
    border-bottom: 1px dashed #ae441e26;
  /*  border-radius: 6px;
     background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;*/
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    /*font-size: 15px;*/
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 6px 20px 6px 5px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    /*font-size: 15px;*/
    line-height: 22px;
    font-weight: 400;

    border-top: 1px dashed #ae441e26;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px; color: #ae441e;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px; color: #ae441e;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}
.accordion h3 {
  font-size: 16px;       /* make the text smaller */
  color: #000;        /* a nice medium blue */
   /*font-weight: normal;   remove bold */
       /* reset default margins, add a bit of bottom space */
	padding: 6px 19px 6px 0px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}
/* For desktop screens */
@media (min-width: 768px) {
  .box1 img {
     height: 100%; /* Adjust the height as needed */
	      width: 100%;

	    object-fit: cover;

  }
}

/* For mobile phones */
@media (max-width: 767px) {
  .box1 .box2 .box3 .box4 img {
      height: 100%; /* Adjust the height as needed */
	      width: 100%;

	    object-fit: cover;

  }
}
.box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.box2  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.box3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 .box4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }