* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
  }
  
  @font-face {
    font-family: 'ridley_groteskblack';
    src: url('fonts/ridley_grotesk_black-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'ridley_groteskbold';
    src: url('fonts/ridley_grotesk_bold-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'ridley_groteskextrabold';
    src: url('fonts/ridley_grotesk_extrabold-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'ridley_grotesklight';
    src: url('fonts/ridley_grotesk_light-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'ridley_groteskmedium';
    src: url('fonts/ridley_grotesk_medium-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'ridley_groteskregular';
    src: url('fonts/ridley_grotesk_regular-webfont.woff2') format('woff2'),
      url('fonts/ridley_grotesk_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  #smallmenu {
    background-color: #2c2c2c;
    position: absolute;
    z-index: 10000;
    width: 100%;
    display: none;
    left: 100%;
  }
  
  #smallmenuheader {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0vw 3vw;
    border-bottom: 3px solid white;
  }
  
  #smallmenuheader img:nth-child(1) {
    width: 10vh;
    height: 8vh;
  }
  
  #smallcontent {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #smallcontent h4 {
    text-transform: uppercase;
    font-family: 'ridley_groteskbold';
    color: white;
    font-size: 5vw;
    line-height: 5vh;
    cursor: pointer;
  }
  
  #main {
    min-height: 100%;
    width: 100vw;
    padding-top: 0.01px;
    position: relative;
    overflow: hidden;
  }
  
  [dir="rtl"] #main {
    min-height: 100%;
    width: 100vw;
    padding-top: 0.01px;
    position: relative !important;
    overflow: hidden;
  }
  
  #menu {
    height: auto;
    width: 100%;
    position: fixed !important;
    z-index: 99999999 !important;
    display: flex;
    top: 3vh;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1vw;
    padding-left: 0vw;
  }
  
  [dir="rtl"] #menu {
    height: auto;
    width: 100%;
    position: fixed !important;
    z-index: 99999999 !important;
    display: flex;
    top: 3vh;
    justify-content: flex-end;
    align-items: center;
    padding-left: 1vw;
    padding-right: 0vw;
  
  }
  
  #mode {
    /* height: 10vh; */
    height: 3vw;
    width: 100%;
    position: fixed;
    z-index: 99999998 !important;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
    padding-left: 0vw;
    padding-right: 1vw;
  }
  [dir="rtl"] #mode {
    /* height: 10vh; */
    height: 3vw;
    width: 100%;
    position: fixed;
    z-index: 99999998 !important;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
    padding-left: 1vw;
    padding-right: 0vw;
  }
  #modeouter {
    width: 6vw;
    /* width: 10%; */
    height: 100%;
    border: 3px solid white;
    background-color: white;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
  }
  
  #modeinner {
    width: 50%;
    height: 100%;
    border-radius: 60%;
    background-color: #2c2c2c;
    transition: all 0.2s linear;
  }
  
  .btnstyle {
    padding: 15px 15px;
    font-size: 0.8vw;
    line-height: 11px;
    color: #fff;
    background-color: #2c2c2c;
    border: 2px solid #fff;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    text-transform: uppercase;
  }
  
  .btnstyle2 {
    padding: 15px 15px;
    font-size: 0.8vw;
    line-height: 11px;
    color: #2c2c2c !important;
    background-color: #fff;
    border: 2px solid #2c2c2c;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    text-transform: uppercase;
  }
  
  .btnstyle2rtl {
    padding: 15px 15px;
    font-size: 1vw !important;
    line-height: 11px;
    color: #2c2c2c;
    background-color: #fff;
    border: 2px solid #2c2c2c;
    font-family: "Cairo", sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1vw;
  }
  
  .btnstylertl {
    padding: 15px 15px;
    font-size: 1vw !important;
    line-height: 11px;
    color: #fff;
    background-color: #2c2c2c;
    border: 2px solid #fff;
    font-family: "Cairo", sans-serif !important;
    font-weight: 700;
    letter-spacing: .1vw;
  }
  
  .btn:focus,
  .btn:active,
  .dropdown-toggle:active,
  .dropdown-toggle:focus {
    outline: none;
    /* Remove focus outline */
    box-shadow: none;
    /* Remove Bootstrap focus box shadow */
    /* Remove the border during focus/active */
  }
  
  .btn:hover,.dropdown-toggle:hover {
    background-color: #2ad8ff;
    color: #2c2c2c;
  }
  .dropdown-menu 
  {
    background-color: #2c2c2c;
    border: 2px solid white;
    font-family: 'ridley_groteskbold';
    text-transform: uppercase;
    text-align: justify;
  }
  .dropdown-item 
  {
    color: white;
  }
  .dropdown-item:hover 
  {
    background-color: #2ad8ff;
    color: #2c2c2c;
  }
  .custom-dropdown::after {
    margin-left: 5px; 
    margin-right: 0px;/* Adjust this to control space between text and icon */
  }
  [dir="rtl"] .custom-dropdown::after {
    margin-left: 0px; 
    margin-right: 5px;/* Adjust this to control space between text and icon */
  }
  
  #hamburg {
    display: none;
  }
  
  #hamburg #hamicon {
    cursor: pointer;
  }
  
  #collheader {
    width: 100vw;
    height: 30vh;
    overflow: hidden;
    background-color: #2c2c2c;
    border-bottom: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  [dir="rtl"] #collheader {
    width: 100vw;
    height: 30vh;
    background-color: #2c2c2c;
    border-bottom: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  #collheader h1 {
    color: white;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 7vw;
  }
  
  [dir="rtl"] #collheader h1 {
    color: white;
    font-family: "Cairo", serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10vw;
  }
  
  
  #content {
    height: auto;
    width: 100vw;
    background-color: #2c2c2c;
  }
  
  #fastrackcontainer {
    height: auto;
    width: 100vw;
  }
  
  #fastrackmarque {
    height: 30vh;
    width: 100vw;
    border-bottom: 3px solid white;
    overflow: hidden;
    white-space: nowrap;
  }
  
  [dir="rtl"] #fastrackmarque {
    height: 30vh;
    width: 100vw;
    border-bottom: 3px solid white;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .fastrackmarquecontainer {
    height: 100%;
    width: 100vw;
    display: inline-block;
    animation-name: fastrackmove;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  [dir="rtl"] .fastrackmarquecontainer {
    height: 100%;
    width: 100vw;
    display: inline-block;
    animation-name: fastrackmove2;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes fastrackmove {
    0% {
      transform: translateX(0%);
    }
  
    100% {
      transform: translateX(calc(-100% - 24px));
    }
  }
  
  @keyframes fastrackmove2 {
    0% {
      transform: translateX(0%);
    }
  
    100% {
      transform: translateX(calc(100% + 24px));
    }
  }
  
  .fastrackmarquecontentleft {
    width: 50%;
    height: 100%;
    float: left;
  }
  
  [dir="rtl"] .fastrackmarquecontentleft {
    width: 50%;
    height: 100%;
    float: right;
  }
  
  .fastrackmarquecontentleft h5 {
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 2px white;
    color: transparent;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    font-size: 13.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
  letter-spacing: 0.5vw;
  }
  
  .fastrackmarquecontentright {
    width: 50%;
    height: 100%;
    float: left;
  }
  
  [dir="rtl"] .fastrackmarquecontentright {
    width: 50%;
    height: 100%;
    float: right;
  
  }
  
  .fastrackmarquecontentright h5 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-text-stroke: 2px white;
    color: transparent;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    font-size: 13.5vw;
    letter-spacing: 0.5vw;
  }
  
  #clear {
    clear: both;
  }
  
  #searchbar {
    height: 15vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #searchbar .input-group {
    width: 30vw;
    border: 2px solid white;
  }
  
  #searchbar .form-control {
    background-color: transparent;
    color: white;
    border-left: 2px solid white;
    border-top: none;
    border-right: none;
    border-bottom: none;
    font-family: 'ridley_groteskextrabold';
  }
  
  [dir="rtl"] #searchbar .form-control {
    background-color: transparent;
    color: white;
    border-right: 2px solid white;
    border-top: none;
    border-left: none;
    border-bottom: none;
    font-family: 'ridley_groteskextrabold';
  }
  
  #searchbar .form-control:focus {
    outline: none;
    box-shadow: none;
  }
  
  #searchbar .form-control::placeholder {
    color: #888888;
    /* Replace with your desired color */
    opacity: 1;
    /* Ensures the placeholder uses the full color opacity */
  }
  
  #searchbar .input-group-text {
    display: flex;
    justify-content: center;
    background-color: transparent;
    border: none;
  }
  
  #cardconatiner {
    height: auto;
    width: 100%;
  }
  
  #cardconatiner .row {
    height: auto;
    width: 100%;
  }
  
  #cardconatiner .card {
    height: auto;
    width: 100%;
    border: 2px solid white;
    background-color: #2c2c2c;
  
  }
  
  [dir="rtl"] #cardconatiner .card {
    height: auto;
    width: 100%;
    border: 2px solid white;
    background-color: #2c2c2c;
  
  }
  
  #cardconatiner .card .card-img-top {
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    /* Align images horizontally */
  }
  
  #cardconatiner .card .card-img-top img {
    width: 100%;
    height: 100%;
  
  }
  
  #cardconatiner .card .card-body {
    height: auto;
    width: 100%;
    padding: 0;
    border-top: 2px solid white;
  }
  
  #cardconatiner .card .card-title {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 2.5vw;
    text-transform: uppercase;
  }
  
  [dir="rtl"] #cardconatiner .card .card-title {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 2.5vw;
    text-transform: uppercase;
  }
  
  #cardconatiner .card .card-text {
    height: 20vh;
    width: 100%;
    margin: 0%;
    padding: 0% 2%;
    font-family: 'ridley_groteskregular';
    color: white;
  }
  
  [dir='rtl'] #cardconatiner .card .card-text {
    height: 20vh;
    width: 100%;
    margin: 0%;
    padding: 0% 2%;
    font-family: "Cairo", serif;
    color: white;
  }
  
  #cardconatiner .card .card-text ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
    margin: 0;
    gap: 2vh;
    padding-left: 1rem;
    padding-right: 0rem;
    list-style-position: inside;
  }
  
  [dir="rtl"] #cardconatiner .card .card-text ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
    margin: 0;
    gap: 2vh;
    padding-left: 0rem;
    padding-right: 1rem;
    list-style-position: inside;
  }
  
  #cardconatiner .card .card-text ul li {
    font-family: 'ridley_groteskregular';
    font-size: 0.8vw;
    text-transform: capitalize;
  }
  
  [dir="rtl"] #cardconatiner .card .card-text ul li {
    font-family: "Cairo", serif;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    word-spacing: 0.1vw;
    font-weight: 500;
    text-transform: capitalize;
  }
  
  .cardprice {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
  }
  
  [dir="rtl"] .cardprice {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
  }
  
  .cardprice h5 {
    color: white;
    font-size: 1.5vw;
    font-family: 'ridley_groteskextrabold';
    text-transform: uppercase;
  }
  
  [dir="rtl"] .cardprice h5 {
    color: white;
    font-size: 2vw;
    word-spacing: 0.1vw;
    font-family: "Cairo", serif;
    text-transform: none;
    font-weight: 900;
  }
  
  .cardprice p {
    color: white;
    font-size: 2vw;
    padding-bottom: 0.5vh;
    padding-top: 0vh;
  }
  
  [dir="rtl"] .cardprice p {
    color: white;
    font-size: 2vw;
    padding-bottom: 0vh;
    padding-top: 1vh;
  }
  
  .cardprice span {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 1vw;
    padding-bottom: 1vh;
    padding-top: 0vh;
    text-transform: uppercase;
  }
  
  [dir="rtl"] .cardprice span {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 1vw;
    padding-bottom: 0vh;
    padding-top: 1vh;
    text-transform: uppercase;
  }
  
  .cardprice span:nth-child(4) {
    text-decoration: line-through;
    text-decoration-thickness: 0.2vh;
  }
  
  #cardconatiner .card #cardbtn {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
    /* justify-content: center; */
  }
  
  #cardconatiner .card #cardbtn .btn {
    font-family: 'ridley_groteskregular';
    text-transform: uppercase;
    font-size: 1vw;
  }
  
  [dir="rtl"] #cardconatiner .card #cardbtn .btn {
    font-family: "Cairo", serif;
    text-transform: uppercase;
    font-size: 1vw;
    font-weight: 700;
  }
  
  /* .cardhscol 
  {
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cardhsbtn 
  {
    font-size: 1vw;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    font-family: 'ridley_groteskbold';
    font-weight: bolder;
    padding: 1vw 4vw;
    text-transform: uppercase;
  }
  [dir="rtl"] .cardhsbtn 
  {
    font-size: 1.5vw;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    font-family: "Cairo", serif;
    font-weight: 700;
    padding: 1vw 4vw;
    text-transform: uppercase;
  }
  .cardhsbtn:hover 
  {
    color: #2c2c2c;
  } */
  
  #footers {
    height: 100vh;
    width: 100vw;
    border-bottom: 3px solid white;
    border-top: 3px solid white;
    background-color: #2c2c2c;
    display: flex;
    overflow: hidden;
  }
  
  [dir="rtl"] #footers {
    height: 100vh;
    width: 100vw;
    border-bottom: 3px solid white;
    background-color: #2c2c2c;
    display: flex;
    overflow: hidden;
  }
  
  #footerleft {
    height: 100%;
    flex-basis: 50vw;
    border-right: 3px solid white;
    border-left: none;
  }
  
  [dir="rtl"] #footerleft {
    height: 100%;
    flex-basis: 50vw;
    border-left: 3px solid white;
    border-right: none;
  }
  
  #footerleft iframe {
    width: 100%;
    height: 100%;
  }
  
  [dir="rtl"] #footerleft iframe {
    width: 100%;
    height: 100%;
  }
  
  #footerright {
    flex-basis: 50vw;
    height: 100%;
  }
  
  #footerrightlogo {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  #footerrightlogo img {
    width: 60%;
    height: 60%;
  }
  
  #footerrighthead {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #footerrighthead h5 {
    color: white;
    text-transform: uppercase;
    font-family: 'ridley_groteskbold';
    font-size: 5vw;
  }
  
  [dir="rtl"] #footerrighthead h5 {
    color: white;
    text-transform: uppercase;
    font-family: "Cairo", serif;
    font-weight: 900;
    font-size: 6vw;
  }
  
  #footerbtn {
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #footerbtn .btn {
    padding: 1vw 3vw;
  }
  
  #socialmediabtn {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1vw;
  }
  
  #socialmediabtn img {
    cursor: pointer;
    width: 2vw;
  }
  
  #copyrightcontent {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #copyrightcontent p {
    color: #6e6c6c;
    text-transform: capitalize;
    font-family: 'ridley_grotesklight';
    font-weight: lighter;
    font-size: 80%;
  }
  
  /* laptop */
  @media only screen and (min-width: 1101px) and (max-width: 1600px) {
    #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-left: 0vw;
      padding-right: 1vw;
    }
    [dir="rtl"] #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-right: 0vw;
      padding-left: 1vw;
    }
    #mode {
      height: 8vh;
      width: 100%;
      position: fixed;
      z-index: 888;
      top: 40vh;
      display: flex;
      justify-content: flex-end;
      padding-right: 1vw;
      padding-left: 0vw;
    }
  [dir="rtl"]   #mode {
    height: 8vh;
    width: 100%;
    position: fixed;
    z-index: 888;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
    padding-right: 0vw;
    padding-left: 1vw;
  }
    #modeouter {
      width: 7%;
      height: 100%;
      border: 3px solid white;
      background-color: white;
      border-radius: 50px;
      cursor: pointer;
      overflow: hidden;
    }
  
    #modeinner {
      width: 50%;
      height: 100%;
      border-radius: 60%;
      background-color: #2c2c2c;
    }
    .btnstyle {
      padding: 15px 15px;
      font-size: 1vw;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
    
    .btnstyle2 {
      padding: 15px 15px;
      font-size: 1vw;
      line-height: auto;
      color: #2c2c2c !important;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
     .btnstyle2rtl {
      padding: 15px 15px;
      font-size: 1.2vw !important;
      line-height: auto;
      color: #2c2c2c;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1vw;
    }
    .btnstylertl {
      padding: 15px 15px;
      font-size: 1.2vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      letter-spacing: .1vw;
    }
    .btn:focus,
    .btn:active,
    .dropdown-toggle:active,
    .dropdown-toggle:focus {
      outline: none;
      /* Remove focus outline */
      box-shadow: none;
      /* Remove Bootstrap focus box shadow */
      /* Remove the border during focus/active */
    }
    
    .btn:hover,.dropdown-toggle:hover {
      background-color: #2ad8ff;
      color: #2c2c2c;
    }
    .dropdown-menu 
    {
      background-color: #2c2c2c;
      border: 2px solid white;
      font-family: 'ridley_groteskbold';
      text-transform: uppercase;
      text-align: justify;
    }
    .dropdown-item 
    {
      color: white;
      font-size: 1vw;
    }
    .dropdown-item:hover 
    {
      background-color: #2ad8ff;
      color: #2c2c2c;
    }
    .custom-dropdown::after {
      margin-left: 5px; 
      margin-right: 0px;/* Adjust this to control space between text and icon */
    }
    [dir="rtl"] .custom-dropdown::after {
      margin-left: 0px; 
      margin-right: 5px;/* Adjust this to control space between text and icon */
    }
    #hamburg {
      display: none;
    }
  
    #hamburg #menuimg {
      cursor: pointer;
    }
  
    #collheader {
      width: 100vw;
      height: 30vh;
      overflow: hidden;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    [dir="rtl"] #collheader {
      width: 100vw;
      height: 30vh;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #collheader h1 {
      color: white;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
      font-size: 6vw;
    }
    
    [dir="rtl"] #collheader h1 {
      color: white;
      font-family: "Cairo", serif;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 8vw;
    }
    
    
    #content {
      height: auto;
      width: 100vw;
      background-color: #2c2c2c;
    }
    
    #fastrackcontainer {
      height: auto;
      width: 100vw;
    }
    
    #fastrackmarque {
      height: 30vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    [dir="rtl"] #fastrackmarque {
      height: 30vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    [dir="rtl"] .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove2;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    @keyframes fastrackmove {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(-100% - 24px));
      }
    }
    
    @keyframes fastrackmove2 {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(100% + 24px));
      }
    }
    
    .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: right;
    }
    
    .fastrackmarquecontentleft h5 {
      width: 100%;
      height: 100%;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 12vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: right;
    
    }
    
    .fastrackmarquecontentright h5 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 12vw;
    }
    
    #clear {
      clear: both;
    }
    
    #searchbar {
      height: 20vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #searchbar .input-group {
      width: 40vw;
      height: 7vh;
      border: 2px solid white;
    }
    
    #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-left: 2px solid white;
      border-top: none;
      border-right: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
      height: 100%;
    }
    
    [dir="rtl"] #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-right: 2px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    #searchbar .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    #searchbar .form-control::placeholder {
      color: #888888;
      /* Replace with your desired color */
      opacity: 1;
      /* Ensures the placeholder uses the full color opacity */
    }
    
    #searchbar .input-group-text {
      display: flex;
      justify-content: center;
      background-color: transparent;
      border: none;
    }
    #searchbar .input-group-text img 
    {
      width: 40%;
    }
    #cardconatiner {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .row {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    [dir="rtl"] #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    #cardconatiner .card .card-img-top {
      height: 50vh;
      position: relative;
      overflow: hidden;
      display: flex;
      /* Align images horizontally */
    }
    
    #cardconatiner .card .card-img-top img {
      width: 100%;
      height: 100%;
    
    }
    
    #cardconatiner .card .card-body {
      height: auto;
      width: 100%;
      padding: 0;
      border-top: 2px solid white;
    }
    
    #cardconatiner .card .card-title {
      height: 15vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      text-transform: uppercase;
    }
    
    [dir="rtl"] #cardconatiner .card .card-title {
      height: 15vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      text-transform: uppercase;
    }
    
    #cardconatiner .card .card-text {
      height: 25vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: 'ridley_groteskregular';
      color: white;
    }
    
    [dir='rtl'] #cardconatiner .card .card-text {
      height: 25vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: "Cairo", serif;
      color: white;
    }
    
    #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 1rem;
      padding-right: 0rem;
      list-style-position: inside;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 0rem;
      padding-right: 1rem;
      list-style-position: inside;
    }
    
    #cardconatiner .card .card-text ul li {
      font-family: 'ridley_groteskregular';
      font-size: 1vw;
      text-transform: capitalize;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul li {
      font-family: "Cairo", serif;
      font-size: 1.2vw;
      letter-spacing: 0.1vw;
      word-spacing: 0.1vw;
      font-weight: 500;
      text-transform: capitalize;
    }
    
    .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    [dir="rtl"] .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    .cardprice h5 {
      color: white;
      font-size: 1.5vw;
      font-family: 'ridley_groteskextrabold';
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice h5 {
      color: white;
      font-size: 2vw;
      word-spacing: 0.1vw;
      font-family: "Cairo", serif;
      text-transform: none;
      font-weight: 900;
    }
    
    .cardprice p {
      color: white;
      font-size: 1.5vw;
      padding-bottom: 0vh;
      padding-top: 0.5vh;
    }
    
    [dir="rtl"] .cardprice p {
      color: white;
      font-size: 1.5vw;
      padding-bottom: 0vh;
      padding-top: 2vh;
    }
    
    .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 1.2vw;
      padding-bottom: 1.5vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 1.2vw;
      padding-bottom: 0vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    .cardprice span:nth-child(4) {
      text-decoration: line-through;
      text-decoration-thickness: 0.2vh;
    }
    
    #cardconatiner .card #cardbtn {
      height: 15vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      /* justify-content: center; */
    }
    
    #cardconatiner .card #cardbtn .btn {
      font-family: 'ridley_groteskregular';
      text-transform: uppercase;
      font-size: 1vw;
    }
    
    [dir="rtl"] #cardconatiner .card #cardbtn .btn {
      font-family: "Cairo", serif;
      text-transform: uppercase;
      font-size: 1.2vw;
      font-weight: 700;
    }
    
    /* .cardhscol 
    {
      height: 15vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cardhsbtn 
    {
      font-size: 1vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    [dir="rtl"] .cardhsbtn 
    {
      font-size: 1.5vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: "Cairo", serif;
      font-weight: 700;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    .cardhsbtn:hover 
    {
      color: #2c2c2c;
    } */
  
    #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: flex;
      overflow: hidden;
    }
  
    #footerleft {
      height: 100%;
      flex-basis: 50vw;
      border-right: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 100%;
      flex-basis: 50vw;
      border-left: 3px solid white;
      border-right: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      flex-basis: 50vw;
      height: 100%;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 60%;
      height: 60%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
  
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 2vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 80%;
    }
  }
  
  /* ipad pro */
  @media only screen and (min-width: 1024px) and (max-width: 1100px) {
    #hamburg {
      display: none;
    }
    #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-left: 0vw;
      padding-right: 2vw;
    }
    [dir="rtl"] #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-right: 0vw;
      padding-left: 2vw;
    }
    #mode {
      height: 5.5vh;
      width: 100%;
      position: fixed;
      z-index: 888;
      top: 40vh;
      display: flex;
      justify-content: flex-end;
      padding-right: 2vw;
      padding-left: 0vw;
    }
  [dir="rtl"]   #mode {
    height: 5.5vh;
    width: 100%;
    position: fixed;
    z-index: 888;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
    padding-right: 0vw;
    padding-left: 2vw;
  }
    #modeouter {
      width: 15%;
      height: 100%;
      border: 3px solid white;
      background-color: white;
      border-radius: 50px;
      cursor: pointer;
      overflow: hidden;
    }
  
    #modeinner {
      width: 50%;
      height: 100%;
      border-radius: 60%;
      background-color: #2c2c2c;
    }
    .btnstyle {
      padding: 20px 20px;
      font-size: 2vw;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
    
    .btnstyle2 {
      padding: 20px 20px;
      font-size: 2vw;
      line-height: auto;
      color: #2c2c2c !important;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
     .btnstyle2rtl {
      padding: 20px 20px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #2c2c2c;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1vw;
    }
    .btnstylertl {
      padding: 20px 20px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      letter-spacing: .1vw;
    }
    .btn:focus,
.btn:active,
.dropdown-toggle:active,
.dropdown-toggle:focus {
  outline: none;
  /* Remove focus outline */
  box-shadow: none;
  /* Remove Bootstrap focus box shadow */
  /* Remove the border during focus/active */
}

.btn:hover,.dropdown-toggle:hover {
  background-color: #2ad8ff;
  color: #2c2c2c;
}
.dropdown-menu 
{
  background-color: #2c2c2c;
  border: 2px solid white;
  font-family: 'ridley_groteskbold';
  text-transform: uppercase;
  text-align: justify;
}
.dropdown-item 
{
  color: white;
  font-size: 2vw;
}
.dropdown-item:hover 
{
  background-color: #2ad8ff;
  color: #2c2c2c;
}
.custom-dropdown::after {
  margin-left: 6px; 
  margin-right: 0px;/* Adjust this to control space between text and icon */
}
[dir="rtl"] .custom-dropdown::after {
  margin-left: 0px; 
  margin-right: 6px;/* Adjust this to control space between text and icon */
}
    #collheader {
      width: 100vw;
      height: 18vh;
      overflow: hidden;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    [dir="rtl"] #collheader {
      width: 100vw;
      height: 18vh;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #collheader h1 {
      color: white;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
      font-size: 10vw;
    }
    
    [dir="rtl"] #collheader h1 {
      color: white;
      font-family: "Cairo", serif;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 12vw;
    }
    
    
    #content {
      height: auto;
      width: 100vw;
      background-color: #2c2c2c;
    }
    
    #fastrackcontainer {
      height: auto;
      width: 100vw;
    }
    
    #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    [dir="rtl"] #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    [dir="rtl"] .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove2;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    @keyframes fastrackmove {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(-100% - 24px));
      }
    }
    
    @keyframes fastrackmove2 {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(100% + 24px));
      }
    }
    
    .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: right;
    }
    
    .fastrackmarquecontentleft h5 {
      width: 100%;
      height: 100%;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 14vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: right;
    
    }
    
    .fastrackmarquecontentright h5 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 14vw;
    }
    
    #clear {
      clear: both;
    }
    
    #searchbar {
      height: 15vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #searchbar .input-group {
      width: 70vw;
      height: 5vh;
      border: 2px solid white;
    }
    
    #searchbar .form-control {
      height: 100%;
      background-color: transparent;
      color: white;
      border-left: 2px solid white;
      border-top: none;
      border-right: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
      font-size: 2.5vw;
    }
    
    [dir="rtl"] #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-right: 2px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
      font-size: 2.5vw;
    }
    
    #searchbar .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    #searchbar .form-control::placeholder {
      color: #888888;
      /* Replace with your desired color */
      opacity: 1;
      font-size: 2.2vw;
      /* Ensures the placeholder uses the full color opacity */
    }
    
    #searchbar .input-group-text {
      display: flex;
      justify-content: center;
      background-color: transparent;
      border: none;
    }
    #searchbar .input-group-text img 
    {
      width: 70%;
    }
    #cardconatiner {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .row {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    [dir="rtl"] #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    #cardconatiner .card .card-img-top {
      height: 40vh;
      position: relative;
      overflow: hidden;
      display: flex;
      /* Align images horizontally */
    }
    
    #cardconatiner .card .card-img-top img {
      width: 100%;
      height: 100%;
    
    }
    
    #cardconatiner .card .card-body {
      height: auto;
      width: 100%;
      padding: 0;
      border-top: 2px solid white;
    }
    
    #cardconatiner .card .card-title {
      height: 7vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 4.5vw;
      text-transform: uppercase;
    }
    
    [dir="rtl"] #cardconatiner .card .card-title {
      height: 7vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 4.5vw;
      text-transform: uppercase;
    }
    
    #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: 'ridley_groteskregular';
      color: white;
    }
    
    [dir='rtl'] #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: "Cairo", serif;
      color: white;
    }
    
    #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 1rem;
      padding-right: 0rem;
      list-style-position: inside;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 0rem;
      padding-right: 1rem;
      list-style-position: inside;
    }
    
    #cardconatiner .card .card-text ul li {
      font-family: 'ridley_groteskregular';
      font-size: 2.2vw;
      text-transform: capitalize;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul li {
      font-family: "Cairo", serif;
      font-size: 2.5vw;
      letter-spacing: 0.1vw;
      word-spacing: 0.1vw;
      font-weight: 500;
      text-transform: capitalize;
    }
    
    .cardprice {
      height: 7vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    [dir="rtl"] .cardprice {
      height: 7vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    .cardprice h5 {
      color: white;
      font-size: 3vw;
      font-family: 'ridley_groteskextrabold';
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice h5 {
      color: white;
      font-size: 3vw;
      word-spacing: 0.1vw;
      font-family: "Cairo", serif;
      text-transform: none;
      font-weight: 900;
    }
    
    .cardprice p {
      color: white;
      font-size: 2vw;
      padding-bottom: 0vh;
      padding-top: 0vh;
    }
    
    [dir="rtl"] .cardprice p {
      color: white;
      font-size: 2vw;
      padding-bottom: 0vh;
      padding-top: 1vh;
    }
    
    .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      padding-bottom: 0.7vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      padding-bottom: 0vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    .cardprice span:nth-child(4) {
      text-decoration: line-through;
      text-decoration-thickness: 0.2vh;
    }
    
    #cardconatiner .card #cardbtn {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      /* justify-content: center; */
    }
    
    #cardconatiner .card #cardbtn .btn {
      font-family: 'ridley_groteskregular';
      text-transform: uppercase;
      font-size: 1.5vw;
    }
    
    [dir="rtl"] #cardconatiner .card #cardbtn .btn {
      font-family: "Cairo", serif;
      text-transform: uppercase;
      font-size: 2vw;
      font-weight: 700;
    }
    
    /* .cardhscol 
    {
      height: 15vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cardhsbtn 
    {
      font-size: 1vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    [dir="rtl"] .cardhsbtn 
    {
      font-size: 1.5vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: "Cairo", serif;
      font-weight: 700;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    .cardhsbtn:hover 
    {
      color: #2c2c2c;
    } */
    /* #footers {
      height: 50vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: flex;
      overflow: hidden;
    }
  
    #footerleft {
      height: 100%;
      flex-basis: 50vw;
      border-right: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 100%;
      flex-basis: 50vw;
      border-left: 3px solid white;
      border-right: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      flex-basis: 50vw;
      height: 100%;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 70%;
      height: 63%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
  
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerbtn .btn {
      padding: 1vw 3vw;
      font-size: 1.2vw;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 25%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 2.5vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 90%;
    } */
    #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    [dir="rtl"] #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      height: 50%;
      width: 100vw;
    }
  
    [dir="rtl"] #footerright {
      height: 50%;
      width: 100vw;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 70%;
      height: 80%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 6vw;
    }
    [dir="rtl"]  #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: "Cairo", sans-serif !important;
      font-size: 7vw;
    }
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerbtn .btn {
      padding: 1vw 3vw;
      font-size: 2vw;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 4vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 70%;
    }
  }
  
  /* iPads (tablets, typically between 768px and 1024px) */
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    #hamburg {
      display: block;
    }
   
    #homepage 
    {
     display: none;
    }
    #collection
    {
     display: none;
    }
    #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-left: 0vw;
      padding-right: 2vw;
    }
    [dir="rtl"]  #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-left: 2vw;
      padding-right: 0vw;
    }
    .btnstyle {
      padding: 15px 15px;
      font-size: 2vw;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
    
    .btnstyle2 {
      padding: 15px 15px;
      font-size: 2vw;
      line-height: auto;
      color: #2c2c2c !important;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
     .btnstyle2rtl {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #2c2c2c;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1vw;
    }
    .btnstylertl {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      letter-spacing: .1vw;
    }
    /* #menu .btn-group {
      display: none;
    } */
  
    #mode {
      height: 5.5vh;
      width: 100%;
      position: fixed;
      z-index: 888;
      top: 40vh;
      display: flex;
      justify-content: flex-end;
      padding-right: 2.5vw;
      padding-left: 0vw;
    }
  [dir="rtl"]  #mode {
    height: 5.5vh;
    width: 100%;
    position: fixed;
    z-index: 888;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
    padding-right: 0vw;
    padding-left: 2.5vw;
  }
    #modeouter {
      width: 15%;
      height: 100%;
      border: 3px solid white;
      background-color: white;
      border-radius: 50px;
      cursor: pointer;
      overflow: hidden;
    }
  
    #modeinner {
      width: 50%;
      height: 100%;
      border-radius: 60%;
      background-color: #2c2c2c;
    }
    #collheader {
      width: 100vw;
      height: 15vh;
      overflow: hidden;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    [dir="rtl"] #collheader {
      width: 100vw;
      height: 15vh;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #collheader h1 {
      color: white;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
      font-size: 10vw;
    }
    
    [dir="rtl"] #collheader h1 {
      color: white;
      font-family: "Cairo", serif;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 12vw;
    }
    
    
    #content {
      height: auto;
      width: 100vw;
      background-color: #2c2c2c;
    }
    
    #fastrackcontainer {
      height: auto;
      width: 100vw;
    }
    
    #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    [dir="rtl"] #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
    
    .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    [dir="rtl"] .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove2;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
    
    @keyframes fastrackmove {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(-100% - 24px));
      }
    }
    
    @keyframes fastrackmove2 {
      0% {
        transform: translateX(0%);
      }
    
      100% {
        transform: translateX(calc(100% + 24px));
      }
    }
    
    .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: right;
    }
    
    .fastrackmarquecontentleft h5 {
      width: 100%;
      height: 100%;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 14vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: left;
    }
    
    [dir="rtl"] .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: right;
    
    }
    
    .fastrackmarquecontentright h5 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 14vw;
    }
    
    #clear {
      clear: both;
    }
    
    #searchbar {
      height: 15vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #searchbar .input-group {
      width: 70vw;
      border: 2px solid white;
    }
    
    #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-left: 2px solid white;
      border-top: none;
      border-right: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    [dir="rtl"] #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-right: 2px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    #searchbar .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    #searchbar .form-control::placeholder {
      color: #888888;
      /* Replace with your desired color */
      opacity: 1;
      /* Ensures the placeholder uses the full color opacity */
    }
    
    #searchbar .input-group-text {
      display: flex;
      justify-content: center;
      background-color: transparent;
      border: none;
    }
    
    #cardconatiner {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .row {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    [dir="rtl"] #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    #cardconatiner .card .card-img-top {
      height: 40vh;
      position: relative;
      overflow: hidden;
      display: flex;
      /* Align images horizontally */
    }
    
    #cardconatiner .card .card-img-top img {
      width: 100%;
      height: 100%;
    
    }
    
    #cardconatiner .card .card-body {
      height: auto;
      width: 100%;
      padding: 0;
      border-top: 2px solid white;
    }
    
    #cardconatiner .card .card-title {
      height: 7vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 4.5vw;
      text-transform: uppercase;
    }
    
    [dir="rtl"] #cardconatiner .card .card-title {
      height: 7vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 4.5vw;
      text-transform: uppercase;
    }
    
    #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: 'ridley_groteskregular';
      color: white;
    }
    
    [dir='rtl'] #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: "Cairo", serif;
      color: white;
    }
    
    #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 1rem;
      padding-right: 0rem;
      list-style-position: inside;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 0rem;
      padding-right: 1rem;
      list-style-position: inside;
    }
    
    #cardconatiner .card .card-text ul li {
      font-family: 'ridley_groteskregular';
      font-size: 2vw;
      text-transform: capitalize;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul li {
      font-family: "Cairo", serif;
      font-size: 2.3vw;
      letter-spacing: 0.1vw;
      word-spacing: 0.1vw;
      font-weight: 500;
      text-transform: capitalize;
    }
    
    .cardprice {
      height: 7vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    [dir="rtl"] .cardprice {
      height: 7vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5vw;
    }
    
    .cardprice h5 {
      color: white;
      font-size: 3vw;
      font-family: 'ridley_groteskextrabold';
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice h5 {
      color: white;
      font-size: 3vw;
      word-spacing: 0.1vw;
      font-family: "Cairo", serif;
      text-transform: none;
      font-weight: 900;
    }
    
    .cardprice p {
      color: white;
      font-size: 2vw;
      padding-bottom: 0vh;
      padding-top: 0vh;
    }
    
    [dir="rtl"] .cardprice p {
      color: white;
      font-size: 2vw;
      padding-bottom: 0vh;
      padding-top: 1vh;
    }
    
    .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      padding-bottom: 0.7vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice span {
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 2.5vw;
      padding-bottom: 0vh;
      padding-top: 0vh;
      text-transform: uppercase;
    }
    
    .cardprice span:nth-child(4) {
      text-decoration: line-through;
      text-decoration-thickness: 0.2vh;
    }
    
    #cardconatiner .card #cardbtn {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      /* justify-content: center; */
    }
    
    #cardconatiner .card #cardbtn .btn {
      font-family: 'ridley_groteskregular';
      text-transform: uppercase;
      font-size: 1.5vw;
    }
    
    [dir="rtl"] #cardconatiner .card #cardbtn .btn {
      font-family: "Cairo", serif;
      text-transform: uppercase;
      font-size: 2vw;
      font-weight: 700;
    }
    
    /* .cardhscol 
    {
      height: 15vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cardhsbtn 
    {
      font-size: 1vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    [dir="rtl"] .cardhsbtn 
    {
      font-size: 1.5vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: "Cairo", serif;
      font-weight: 700;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    .cardhsbtn:hover 
    {
      color: #2c2c2c;
    } */
    
    /* #footers 
    {
      height: 50vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: flex;
      overflow: hidden;
    }
    [dir="rtl"]  #footers 
    {
      height: 50vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: flex;
      overflow: hidden;
    }
    #footerleft 
    {
      height: 100%;
      flex-basis: 50vw;
      border-right: 3px solid white;
      border-left: none;
    }
    [dir="rtl"] #footerleft 
    {
      height: 100%;
      flex-basis: 50vw;
      border-left: 3px solid white;
      border-right: none;
    }
    #footerleft iframe 
    {
      width: 100%;
      height: 100%;
    }
    #footerright 
    {
      flex-basis: 50vw;
      height: 100%;
    }
    #footerrightlogo 
    {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
    #footerrightlogo img 
    {
      width: 70%;
      height: 63%;
    }
    #footerrighthead 
    {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #footerrighthead h5 
    {
      color: white;
      text-transform:uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
    #footerbtn 
    {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #footerbtn .btn 
    {
      padding: 1vw 3vw;
      font-size: 1.5vw;
    }
    #socialmediabtn 
    {
      width: 100%;
      height: 25%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
    #socialmediabtn img 
    {
      cursor: pointer;
      width: 2.5vw;
    }
    #copyrightcontent 
    {
      width: 100%;
      height: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #copyrightcontent p 
    {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 80%;
    } */
    #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    [dir="rtl"] #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      height: 50%;
      width: 100vw;
    }
  
    [dir="rtl"] #footerright {
      height: 50%;
      width: 100vw;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 70%;
      height: 63%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
  
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerbtn .btn {
      padding: 1vw 3vw;
      font-size: 2vw;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 4vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 70%;
    }
  }
  
  /* Mobile devices (phones, typically less than 768px) */
  @media only screen and (max-width: 767px) {
    #hamburg {
      display: block;
    }
  
    #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999999 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-right: 1vw;
    }
  
    /* #menu .btn-group {
        display: none;
      } */
    #homepage {
      display: none;
    }
  
    #collection {
      display: none;
    }
  
    .btnstyle {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
  
    .btnstyle2 {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #2c2c2c !important;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
  
    .btnstyle2rtl {
      padding: 15px 15px;
      font-size: 3.5vw !important;
      line-height: auto;
      color: #2c2c2c;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1vw;
    }
  
    .btnstylertl {
      padding: 15px 15px;
      font-size: 3.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      letter-spacing: .1vw;
    }
  
    .btn:focus,
    .btn:active {
      outline: none;
      /* Remove focus outline */
      box-shadow: none;
      /* Remove Bootstrap focus box shadow */
      /* Remove the border during focus/active */
    }
  
    .btn:hover {
      background-color: #2ad8ff;
      color: #2c2c2c;
    }
  
    #mode {
      height: 6vh;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      top: 40vh;
      display: flex;
      justify-content: flex-end;
    }
  [dir="rtl"]  #mode {
    height: 6vh;
    width: 100%;
    position: fixed;
    z-index: 99999998 !important;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
  }
    #modeouter {
      width: 20%;
      height: 100%;
      border: 3px solid white;
      background-color: white;
      border-radius: 50px;
      cursor: pointer;
      overflow: hidden;
    }
  
    #modeinner {
      width: 50%;
      height: 100%;
      border-radius: 60%;
      background-color: #2c2c2c;
    }
  
    #collheader {
      width: 100vw;
      height: 20vh;
      overflow: hidden;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    [dir="rtl"] #collheader {
      width: 100vw;
      height: 20vh;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #collheader h1 {
      color: white;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
      font-size: 10vw;
    }
  
    [dir="rtl"] #collheader h1 {
      color: white;
      font-family: "Cairo", serif;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 15vw;
    }
  
  
  
    #content {
      height: auto;
      width: 100vw;
      background-color: #2c2c2c;
    }
  
    #fastrackcontainer {
      height: auto;
      width: 100vw;
    }
  
    #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
  
    [dir="rtl"] #fastrackmarque {
      height: 15vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
  
    .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
  
    [dir="rtl"] .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove2;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
  
    @keyframes fastrackmove {
      0% {
        transform: translateX(0%);
      }
  
      100% {
        transform: translateX(calc(-100% - 24px));
      }
    }
  
    @keyframes fastrackmove2 {
      0% {
        transform: translateX(0%);
      }
  
      100% {
        transform: translateX(calc(100% + 24px));
      }
    }
  
    .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: left;
    }
  
    [dir="rtl"] .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: right;
    }
  
    .fastrackmarquecontentleft h5 {
      width: 100%;
      height: 100%;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 12vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: left;
    }
  
    [dir="rtl"] .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: right;
  
    }
  
    .fastrackmarquecontentright h5 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 12vw;
    }
  
    #clear {
      clear: both;
    }
    #searchbar {
      height: 15vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #searchbar .input-group {
      width: 95vw;
      border: 2px solid white;
    }
    
    #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-left: 2px solid white;
      border-top: none;
      border-right: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    [dir="rtl"] #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-right: 2px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    #searchbar .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    #searchbar .form-control::placeholder {
      color: #888888;
      /* Replace with your desired color */
      opacity: 1;
      font-size: 3.5vw;
      /* Ensures the placeholder uses the full color opacity */
    }
   
    #searchbar .input-group-text {
      display: flex;
      justify-content: center;
      background-color: transparent;
      border: none;
    }
    #searchbar .input-group-text img 
    {
      width: 40%;
      
    }
    #cardconatiner {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .row {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    [dir="rtl"] #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    #cardconatiner .card .card-img-top {
      height: 50vh;
      position: relative;
      overflow: hidden;
      display: flex;
      /* Align images horizontally */
    }
    
    #cardconatiner .card .card-img-top img {
      width: 100%;
      height: 100%;
    
    }
    
    #cardconatiner .card .card-body {
      height: auto;
      width: 100%;
      padding: 0;
      border-top: 2px solid white;
    }
    
    #cardconatiner .card .card-title {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 6vw;
      text-transform: uppercase;
    }
    
    [dir="rtl"] #cardconatiner .card .card-title {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 6vw;
      text-transform: uppercase;
    }
    
    #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: 'ridley_groteskregular';
      color: white;
    }
    
    [dir='rtl'] #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: "Cairo", serif;
      color: white;
    }
    
    #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 1rem;
      padding-right: 0rem;
      list-style-position: inside;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 0rem;
      padding-right: 1rem;
      list-style-position: inside;
    }
    
    #cardconatiner .card .card-text ul li {
      font-family: 'ridley_groteskmedium';
    font-size: 3.5vw;
    text-transform: capitalize;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul li {
      font-family: "Cairo", serif;
    font-size: 3.5vw;
    letter-spacing: 0.5vw;
    word-spacing: 0.5vw;
    font-weight: 500;
    text-transform: capitalize;
    }
    
    .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1vw;
    }
    
    [dir="rtl"] .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1vw;
    }
    
    .cardprice h5 {
      color: white;
    font-size: 4vw;
    font-family: 'ridley_groteskextrabold';
    text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice h5 {
      color: white;
      font-size: 4vw;
      word-spacing: 0.1vw;
      font-family: "Cairo", serif;
      text-transform: none;
      font-weight: 900;
    }
    
    .cardprice p
  {
    color: white;
    font-size: 3vw;
    padding-bottom: 0vh;
    padding-top: 0.5vh;
  }
  [dir="rtl"] .cardprice p
  {
    color: white;
    font-size: 3vw;
    padding-bottom: 0vh;
    padding-top: 1.3vh;
  }
    
  .cardprice span 
  {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 3.5vw;
    padding-bottom: 1.5vh;
    padding-top: 0vh;
    text-transform: uppercase;
  }
  [dir="rtl"] .cardprice span 
  {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 3.5vw;
    padding-bottom: 1vh;
    padding-top: 0vh;
    text-transform: uppercase;
  }
    
  .cardprice span:nth-child(4)
  {
    text-decoration: line-through;
    text-decoration-thickness: 0.2vh;
  }
  #cardconatiner .card #cardbtn {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
    /* justify-content: center; */
  }
    
  #cardconatiner .card #cardbtn .btn {
    font-family: 'ridley_groteskregular';
    text-transform: uppercase;
    font-size: 2vw;
  }
  [dir="rtl"] #cardconatiner .card #cardbtn .btn {
    font-family: "Cairo", serif;
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 700;
  }
    
    /* .cardhscol 
    {
      height: 15vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cardhsbtn 
    {
      font-size: 1vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    [dir="rtl"] .cardhsbtn 
    {
      font-size: 1.5vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: "Cairo", serif;
      font-weight: 700;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    .cardhsbtn:hover 
    {
      color: #2c2c2c;
    } */
  
  
    #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    [dir="rtl"] #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      height: 50%;
      width: 100vw;
    }
  
    [dir="rtl"] #footerright {
      height: 50%;
      width: 100vw;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 70%;
      height: 63%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
  
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerbtn .btn {
      padding: 1vw 3vw;
      font-size: 1.5vw;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 4vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 70%;
    }
  }
  
  @media only screen and (min-width:377px) and (max-width:767px) {
    #hamburg {
      display: block;
    }
  
    #menu {
      height: auto;
      width: 100%;
      position: fixed;
      z-index: 99999999 !important;
      display: flex;
      top: 3vh;
      justify-content: flex-end;
      align-items: center;
      padding-right: 1vw;
    }
  
    /* #menu .btn-group {
        display: none;
      } */
    #homepage {
      display: none;
    }
  
    #collection {
      display: none;
    }
  
    .btnstyle {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
  
    .btnstyle2 {
      padding: 15px 15px;
      font-size: 2.5vw !important;
      line-height: auto;
      color: #2c2c2c !important;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
    }
  
    .btnstyle2rtl {
      padding: 15px 15px;
      font-size: 3.5vw !important;
      line-height: auto;
      color: #2c2c2c;
      background-color: #fff;
      border: 2px solid #2c2c2c;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1vw;
    }
  
    .btnstylertl {
      padding: 15px 15px;
      font-size: 3.5vw !important;
      line-height: auto;
      color: #fff;
      background-color: #2c2c2c;
      border: 2px solid #fff;
      font-family: "Cairo", sans-serif !important;
      font-weight: 700;
      letter-spacing: .1vw;
    }
  
    .btn:focus,
    .btn:active {
      outline: none;
      /* Remove focus outline */
      box-shadow: none;
      /* Remove Bootstrap focus box shadow */
      /* Remove the border during focus/active */
    }
  
    .btn:hover {
      background-color: #2ad8ff;
      color: #2c2c2c;
    }
  
    #mode {
      height: 5vh;
      width: 100%;
      position: fixed;
      z-index: 99999998 !important;
      top: 40vh;
      display: flex;
      justify-content: flex-end;
    }
  [dir="rtl"]  #mode {
    height: 5vh;
    width: 100%;
    position: fixed;
    z-index: 99999998 !important;
    top: 40vh;
    display: flex;
    justify-content: flex-end;
  }
    #modeouter {
      width: 20%;
      height: 100%;
      border: 3px solid white;
      background-color: white;
      border-radius: 50px;
      cursor: pointer;
      overflow: hidden;
    }
  
    #modeinner {
      width: 50%;
      height: 100%;
      border-radius: 60%;
      background-color: #2c2c2c;
    }
    #collheader {
      width: 100vw;
      height: 15vh;
      overflow: hidden;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    [dir="rtl"] #collheader {
      width: 100vw;
      height: 15vh;
      background-color: #2c2c2c;
      border-bottom: 3px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #collheader h1 {
      color: white;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      text-transform: uppercase;
      font-size: 11vw;
    }
  
    [dir="rtl"] #collheader h1 {
      color: white;
      font-family: "Cairo", serif;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 16vw;
    }
  
  
  
    #content {
      height: auto;
      width: 100vw;
      background-color: #2c2c2c;
    }
  
    #fastrackcontainer {
      height: auto;
      width: 100vw;
    }
  
    #fastrackmarque {
      height: 10vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
  
    [dir="rtl"] #fastrackmarque {
      height: 10vh;
      width: 100vw;
      border-bottom: 3px solid white;
      overflow: hidden;
      white-space: nowrap;
    }
  
    .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
  
    [dir="rtl"] .fastrackmarquecontainer {
      height: 100%;
      width: 100vw;
      display: inline-block;
      animation-name: fastrackmove2;
      animation-duration: 10s;
      animation-delay: 0ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }
  
    @keyframes fastrackmove {
      0% {
        transform: translateX(0%);
      }
  
      100% {
        transform: translateX(calc(-100% - 24px));
      }
    }
  
    @keyframes fastrackmove2 {
      0% {
        transform: translateX(0%);
      }
  
      100% {
        transform: translateX(calc(100% + 24px));
      }
    }
  
    .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: left;
    }
  
    [dir="rtl"] .fastrackmarquecontentleft {
      width: 50%;
      height: 100%;
      float: right;
    }
  
    .fastrackmarquecontentleft h5 {
      width: 100%;
      height: 100%;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 13vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: left;
    }
  
    [dir="rtl"] .fastrackmarquecontentright {
      width: 50%;
      height: 100%;
      float: right;
  
    }
  
    .fastrackmarquecontentright h5 {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      -webkit-text-stroke: 2px white;
      color: transparent;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      font-size: 13vw;
    }
  
    #clear {
      clear: both;
    }
    #searchbar {
      height: 15vh;
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #searchbar .input-group {
      width: 95vw;
      border: 2px solid white;
    }
    
    #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-left: 2px solid white;
      border-top: none;
      border-right: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    [dir="rtl"] #searchbar .form-control {
      background-color: transparent;
      color: white;
      border-right: 2px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none;
      font-family: 'ridley_groteskextrabold';
    }
    
    #searchbar .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    #searchbar .form-control::placeholder {
      color: #888888;
      /* Replace with your desired color */
      opacity: 1;
      font-size: 3.5vw;
      /* Ensures the placeholder uses the full color opacity */
    }
   
    #searchbar .input-group-text {
      display: flex;
      justify-content: center;
      background-color: transparent;
      border: none;
    }
    #searchbar .input-group-text img 
    {
      width: 40%;
      
    }
    #cardconatiner {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .row {
      height: auto;
      width: 100%;
    }
    
    #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    [dir="rtl"] #cardconatiner .card {
      height: auto;
      width: 100%;
      border: 2px solid white;
      background-color: #2c2c2c;
    
    }
    
    #cardconatiner .card .card-img-top {
      height: 40vh;
      position: relative;
      overflow: hidden;
      display: flex;
      /* Align images horizontally */
    }
    
    #cardconatiner .card .card-img-top img {
      width: 100%;
      height: 100%;
    
    }
    
    #cardconatiner .card .card-body {
      height: auto;
      width: 100%;
      padding: 0;
      border-top: 2px solid white;
    }
    
    #cardconatiner .card .card-title {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 6vw;
      text-transform: uppercase;
    }
    
    [dir="rtl"] #cardconatiner .card .card-title {
      height: 10vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0%;
      font-family: 'ridley_groteskextrabold';
      color: white;
      font-size: 6vw;
      text-transform: uppercase;
    }
    
    #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: 'ridley_groteskregular';
      color: white;
    }
    
    [dir='rtl'] #cardconatiner .card .card-text {
      height: 20vh;
      width: 100%;
      margin: 0%;
      padding: 0% 2%;
      font-family: "Cairo", serif;
      color: white;
    }
    
    #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 1rem;
      padding-right: 0rem;
      list-style-position: inside;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul {
      display: flex;
      height: 100%;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: justify;
      margin: 0;
      gap: 2vh;
      padding-left: 0rem;
      padding-right: 1rem;
      list-style-position: inside;
    }
    
    #cardconatiner .card .card-text ul li {
      font-family: 'ridley_groteskmedium';
    font-size: 3.5vw;
    text-transform: capitalize;
    }
    
    [dir="rtl"] #cardconatiner .card .card-text ul li {
      font-family: "Cairo", serif;
    font-size: 3.5vw;
    letter-spacing: 0.5vw;
    word-spacing: 0.5vw;
    font-weight: 500;
    text-transform: capitalize;
    }
    
    .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1vw;
    }
    
    [dir="rtl"] .cardprice {
      height: 10vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1vw;
    }
    
    .cardprice h5 {
      color: white;
    font-size: 4vw;
    font-family: 'ridley_groteskextrabold';
    text-transform: uppercase;
    }
    
    [dir="rtl"] .cardprice h5 {
      color: white;
      font-size: 4vw;
      word-spacing: 0.1vw;
      font-family: "Cairo", serif;
      text-transform: none;
      font-weight: 900;
    }
    
    .cardprice p
  {
    color: white;
    font-size: 3vw;
    padding-bottom: 0vh;
    padding-top: 0vh;
  }
  [dir="rtl"] .cardprice p
  {
    color: white;
    font-size: 3vw;
    padding-bottom: 0vh;
    padding-top: 1vh;
  }
    
  .cardprice span 
  {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 3.5vw;
    padding-bottom: 1vh;
    padding-top: 0vh;
    text-transform: uppercase;
  }
  [dir="rtl"] .cardprice span 
  {
    font-family: 'ridley_groteskextrabold';
    color: white;
    font-size: 3.5vw;
    padding-bottom: 0vh;
    padding-top: 0vh;
    text-transform: uppercase;
  }
    
  .cardprice span:nth-child(4)
  {
    text-decoration: line-through;
    text-decoration-thickness: 0.2vh;
  }
  #cardconatiner .card #cardbtn {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
    /* justify-content: center; */
  }
    
  #cardconatiner .card #cardbtn .btn {
    font-family: 'ridley_groteskregular';
    text-transform: uppercase;
    font-size: 2vw;
  }
  [dir="rtl"] #cardconatiner .card #cardbtn .btn {
    font-family: "Cairo", serif;
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 700;
  }
    
    /* .cardhscol 
    {
      height: 15vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cardhsbtn 
    {
      font-size: 1vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: 'ridley_groteskbold';
      font-weight: bolder;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    [dir="rtl"] .cardhsbtn 
    {
      font-size: 1.5vw;
      color: #fff;
      background-color: transparent;
      border: 2px solid #fff;
      font-family: "Cairo", serif;
      font-weight: 700;
      padding: 1vw 4vw;
      text-transform: uppercase;
    }
    .cardhsbtn:hover 
    {
      color: #2c2c2c;
    } */
  
    #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    [dir="rtl"] #footers {
      height: 100vh;
      width: 100vw;
      border-top: 3px solid white;
      border-bottom: 3px solid white;
      background-color: #2c2c2c;
      display: block;
      flex-direction: column;
      overflow: hidden;
    }
  
    #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    [dir="rtl"] #footerleft {
      height: 50%;
      width: 100vw;
      border-right: none;
      border-bottom: 3px solid white;
      border-left: none;
    }
  
    #footerleft iframe {
      width: 100%;
      height: 100%;
    }
  
    #footerright {
      height: 50%;
      width: 100vw;
    }
  
    [dir="rtl"] #footerright {
      height: 50%;
      width: 100vw;
    }
  
    #footerrightlogo {
      width: 100%;
      height: 40%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
  
    #footerrightlogo img {
      width: 70%;
      height: 63%;
    }
  
    #footerrighthead {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerrighthead h5 {
      color: white;
      text-transform: uppercase;
      font-family: 'ridley_groteskbold';
      font-size: 5vw;
    }
  
    #footerbtn {
      height: 10%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #footerbtn .btn {
      padding: 1vw 3vw;
      font-size: 1.5vw;
    }
  
    #socialmediabtn {
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1vw;
    }
  
    #socialmediabtn img {
      cursor: pointer;
      width: 4vw;
    }
  
    #copyrightcontent {
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #copyrightcontent p {
      color: #6e6c6c;
      text-transform: capitalize;
      font-family: 'ridley_grotesklight';
      font-weight: lighter;
      font-size: 70%;
    }
  }