:root{
  --yellow: #ffe100;
}

body{

}

*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.main__content{
  display: flex;
  flex-direction: column;
}

.outlet__container{
  display: flex;
  flex-grow: 1;
}

.main__container{
  background-color: rgb(232, 232, 232);
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navigation__bar{
  width: 100%;
  background-color: black;
  height: 65px;
  display: flex;
  flex-direction: row;
  color: var(--yellow);
}

.navigation__bar .image__container{
  width: 60px;
  height: 60px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 35px;
}

.image__link{
  width: 60px;
  height: 60px;
  margin-top: 5px;
}

.navigation__bar .burger__menu__container{
  width: 60px;
  height: 60px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 35px;
}


.links__container{
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 25px;
  padding: 0px 35px;
  font-size: 20px;
}

.links__container .link__container{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.links__container a{
  color: var(--yellow);
  text-decoration: none;
  height: -moz-max-content;
  height: max-content;
  padding: 5px;
  transition: all 0.2s ease-in-out;
}

a:hover{
  scale: 1.05;
}

a.activeni{
  border-bottom: 2px solid var(--yellow);
}

.main__content{
  display: flex;
  flex-grow: 1;
}

footer{
  background-color: black;
  height: 55px;
  width: 100%;
  color: var(--yellow);
  font-size: 16px;
  text-align: center;
}

footer .rights__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 55px;
}

footer .rights__content .rights__content__text{
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}

.home__page{
  width: 100%;
}

.who__we__are__section{
  background-clip: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 75vh;
}

.who__we__are__content{
  background-color: rgba(255, 255, 255, 0.403);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.who__we__are__header{
  font-size: 48px;
  max-width: 50%;
  margin: 0px auto;
}

.who__we__are__description{
  font-size: 28px;
  max-width: 50%;
  margin: 0px auto;
}

.explore__more__button{
  width: -moz-max-content;
  width: max-content;
  margin: 0px auto;
  padding: 15px 35px;
  background-color: var(--yellow);
  border: none;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.what__we__do__section{
  width: 100%;
  padding: 35px;
}

.what__we__do__section h2{
  font-size: 36px;
  text-align: center;
}

.cards__container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 35px;
  width: 100%;
  max-width: 1200px;
  margin: 35px auto;
}

.business__field__card{
  width: 33%;
  background-color: rgb(213, 213, 213);
  border-radius: 15px;
  padding: 15px;
}

.business__field__card img{
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.business__field__card__title{
  text-align: center;
  margin: 10px;
  font-size: 22px;
}

.business__field__card__description{
  text-align: center;
  font-size: 18px;
}

.top__brands__section{
  width: 100%;
  padding: 35px;
}

.top__brands__section h2{
  font-size: 36px;
  text-align: center;
}

.brand__card{
  border: 1px solid #707070; 
  box-shadow: 0px 0px 15px 1px #707070;
  border-radius: 10px;
  padding: 20px;
}

.brand__card img{
  width: 300px;
  height: 255px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact__page__main{
  max-width: 1400px;
  min-width: 1400px;
  margin: 45px auto;
  border-radius: 15px;
  padding: 35px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  display: flex;
  flex-direction: row;
}

.contact__us__container{
  width: 100%;
  display: flex;
  flex-direction: row;
}

.contact__us__form__container{
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 25px;
  justify-content: center;
}

.contact__us__form__container h1{
  font-size: 2em;
}

.contact__us__form{
  margin: 35px 0px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__us__form__row{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact__us__form__row__label{
  font-size: 1.2em;
}

.contact__us__form__row__text__input{
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #aaa;
  font-size: 1em;
  width: 100%;
}

.contact__us__form__row__text__area{
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #aaa;
  font-size: 1em;
  width: 100%;
  min-height: 150px;
}

.contact__us__form__submit__button{
  border-radius: 10px;
  padding: 10px;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  /* background-color: #007BFF; */
  background-color: #117aea;
  border: none;
  max-width: 250px;
  cursor: pointer;
  letter-spacing: 0.1em;
}

.contact__us__form__error{
  color: #f00;
}

.contact__us__socials{
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.company__icon__container{
  width: 60%;
  text-align: center;
  margin: 0px auto;
}

.cls-1{fill:#ffe100;}
.cls-2{font-size:70px;font-family:BrandonGrotesque-Black, Brandon Grotesque;font-weight:800;letter-spacing:0.1em;}
.cls-2,.cls-4{fill:#000;}
.cls-3{font-size:50px;letter-spacing:0.1em;}

.social__icons__container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  margin: 25px 0px;
}

@media screen and (max-width: 750px) {
  .business__domains__container{
    flex-direction: column;
  }

  .contact__page__main{
    flex-direction: column-reverse;
  }

  .business__field__card{
    width: 100%;
  }
}

/* Invitations section */

.invitations__container{
  height: 100dvh;
  width: 100%;
  background-color: #000;
  box-sizing: border-box;
}

.invitation__main__content{
  box-sizing: border-box;
  height: 100dvh;
  width: 100vw;
  width: 100dvw;
  margin: 0px auto;
  /* TODO: Remove background */
  /* background-color: rgba(170, 170, 170, 0.41); */
  position: relative;
  /* border: 8px solid #ddd; */
}

.slider-container{
  height: 100%;
}

.swiper {
  width: 100vw;
  width: 100dvw;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100% !important;
}

.swiper-slide img {
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mySwiper .swiper-pagination {
  position: absolute;
  bottom: 10px;       /* adjust as needed */
  left: 0;
  width: 100%;
  text-align: center;
}

.horizontal-pagination{
  left: 50% !important;
  transform: translate3d(-50%, 0, 0) !important;
  display: flex;
  flex-direction: row !important;
  gap: 10px !important;
  bottom: 25px !important;
  top: auto !important;
  right: auto !important;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff9f !important;
}

.imageSlideshowOverlay, .slider-container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.imageSlideshowOverlay{
  opacity: 0.65;
 background-color: rgb(0, 0, 0);
 z-index: 1;
}

.birthdayOverlay{
  background-color: rgba(0, 0, 0, 0.735);

}

.invitations__slider{
  z-index: 2;
}

.swiper__slide{
  /* opacity: 0.5; */
}

.swipe_up{
  position: absolute;
  bottom: 30px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
}

@media (min-aspect-ratio: 1/1) {
  .invitation__main__content {
    width: 56.25vh; /* 16:9 width based on height */
  }
}

/* Audio element */

.audioContainer{
  position: absolute;
  z-index: 999999;
  bottom: 30px;
  left: 35px;

}

.audioButton{
  font-size: 150px !important;
  width: 50px !important;
  /* transform: rotate(35deg); */
  border: none;
  font-weight: normal !important;
  margin-bottom: 0px !important;
  padding: 0px !important;
 }

 .audioIconHeart{
  position: absolute;
  color: #fff;
  font-size: 38px;
  top: -5.5px;
  left: 13px;
  font-weight: normal !important;
 }

 .audioIcons{
  position: absolute;
  left: 22px;
  top: 2px;
  color: #fff;
  font-size: 20px;
  font-weight: normal !important;
 }

 /* Main slide */



.MainSlideContainer{
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  /* color: #fff !important; */
  font-size: 45px !important;
  text-align: center;
  margin: 0px !important;
  padding: 0px 15px !important;
}

.overlayed{
    background-color: rgba(0, 0, 0, 0.3);
    /* height: 100%;
    width: 100%; */
    z-index: 99 !important;
    margin-top: 0px !important;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.tapToStartButton{
    width: 150px;
    height: 150px;
    border-radius: 75px;
    border: 2px solid #fff;
    background-color: transparent;
    /* color: #fff; */
    font-size: 32px;
    cursor: pointer !important;
    padding: 0px !important;
    margin: 0px !important;
}

/* Location */


.locationLinkContainer{
  display: flex;
  flex-direction: column;
  padding: 0px !important;
  line-height: 1em;
  }

  .locationLink{
    text-decoration: none;
    border-radius: 10px;
    padding: 6px 20px 8px 20px !important;
    font-size: 16px;
    line-height: 1.4em;
  }
   

/* Fonts */

/* .PrestigeSignatureScript{
  font-family: 'PrestigeSignatureScript';
  line-height: 80px;
}
.GreatVibesFamily{
  font-family: 'GreatVibes';
  font-weight: 550;
 }

 .WhiteDream{
  font-family: 'WhiteDream';
  font-weight: 550;
 }

 .Ananda{
  font-family: 'Ananda';
  font-weight: 550;
 }

 .WeddingInStarlight{
  font-family: 'WeddingInStarlight';
  font-weight: 550;
 }

 .Baskervville_Italic{
  font-family: 'Baskervville_Italic';
  font-weight: 400;
 }

 .DayRoman{
  font-family: 'DayRoman';
  font-weight: 550;
 }

 .LatoRegular{
 font-family: 'Lato Regular';
 }
 .LatoLight{
 font-family: 'Lato-Light';
 }

 .NaskhRegular{
  font-family: 'NaskhRegular';
 }
 
 .PrestigeSignatureScript{
 font-family: 'PrestigeSignatureScript';
 line-height: 80px;
 }


 .GreatVibes{
  font-family: 'Great Vibes';
 }

 .ArslanWessamB{
  font-family: 'ArslanWessamB';
 }

 .ArslanWessamA{
  font-family: 'ArslanWessamA';
 }

 .HSNMoalla{
  font-family: 'HSNMoalla';
 }

 .DiwanyNormal{
  font-family: 'DiwanyNormal';
 }

 .TholothNormal{
  font-family: 'TholothNormal';
 } */

 /* Confirmation */

 .traditionalSection{
  box-sizing: border-box;
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  /* justify-content: flex-start !important; */
  /* color: #fff !important; */
  text-align: center;
  margin: 0px !important;
  padding: 0px 15px !important;
  padding-top: 10px !important;
}


.Loader{
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 999999;
}

.LoaderCont {
  position: fixed;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  /* margin-left: -25%; */
  height: -moz-max-content;
  height: max-content;
  top: 60vh;
  /* margin-top: -25vh; */
  z-index: 9999999999;
  border-radius: 5px;
  overflow: auto;
  transform: translate(-50%, -100%);
}


.confirmation__section__row{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  font-size: 14px;
  color: white;
  height: 45px;
  line-height: 30px;
}

.confirmation__section__row p{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  text-align: start;
  font-size: 16px;
}

.is__coming, .not__coming, .is__coming__active, .not__coming__active{
  border: none;
  border-radius: 8px;
  padding: 5px 15px;
  height: 35px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  background-color: #fff;
}

.not__coming__active{
  background-color: red;
  color: #fff;
}

.is__coming__active{
  background-color: green;
  color: #fff;
}

.attendanceForm{
  display: flex;
  flex-direction: column;
  width: 67%;
  margin: 15px auto;
 }



 .submitBtn{
  background-color: #000;
  border: none;
  border-radius: 3px;
  /* color: #fff; */
  min-height: 35px;
  box-shadow: 0px 0px 4px 3px rgba(255,255,255);
  cursor: pointer;

 }

 /* Last Slide */



.SlideContainer{
  box-sizing: border-box;
  width: 100%;
  height: calc(100% - 75px);
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  /* color: #fff !important; */
  font-size: 45px !important;
  text-align: center;
  margin: 0px !important;
  padding: 0px 15px !important;
  padding-top: 30px !important;
  overflow-y: auto !important;
}

.contentStart{
    justify-content: flex-start !important;
}


.example2 {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  width: 70vw;
  position: relative;
  margin: auto;
  /* overflow: hidden; */
 }

 .imageContainer{
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 70vw;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
 }

 .example2 .imageContainer {
  margin: 0;
  
  /* Apply animation to this element */	
  animation: example2 0.5s linear;
  transform: rotate(-20deg);
 }
 /* Move it (define the animation) */
 @keyframes example2 {
  0%   { 
  transform: scale(0) rotate(0);
  }
  100% { 
  transform: scale(1) rotate(-20deg); 
  }
 }

 .lastImage{
  border-radius: 10px;
  -o-object-fit:cover;
     object-fit:cover;
 }

 .marginaround2{
  margin-left: 2px;
  margin-right: 2px;
 }

 .simple__background__image{
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
 }

 .width-100{
  width: 100%;
 }

 .slider-container .swiper{
  width: 100% !important;
 }
.container_abf42d {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-size);
  width: var(--uib-size);
}

.inner_fed887 {
  position: relative;
  height: var(--uib-size);
  width: var(--uib-size);
}

.inner_fed887::before,
.inner_fed887::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--uib-color);
  animation: pulse_b83402 var(--uib-speed) linear infinite;
  transform: scale(0);
  opacity: 0;
  transition: background-color 0.3s ease;
}

.inner_fed887::after {
  animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse_b83402 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

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

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

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.relative {
  position: relative;
}
.z-20 {
  z-index: 20;
}
.m-auto {
  margin: auto;
}
.mb-\[0px\] {
  margin-bottom: 0px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[12px\] {
  margin-bottom: 12px;
}
.mb-\[14px\] {
  margin-bottom: 14px;
}
.mb-\[16px\] {
  margin-bottom: 16px;
}
.mb-\[18px\] {
  margin-bottom: 18px;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[22px\] {
  margin-bottom: 22px;
}
.mb-\[24px\] {
  margin-bottom: 24px;
}
.mb-\[26px\] {
  margin-bottom: 26px;
}
.mb-\[28px\] {
  margin-bottom: 28px;
}
.mb-\[2px\] {
  margin-bottom: 2px;
}
.mb-\[30px\] {
  margin-bottom: 30px;
}
.mb-\[32px\] {
  margin-bottom: 32px;
}
.mb-\[34px\] {
  margin-bottom: 34px;
}
.mb-\[36px\] {
  margin-bottom: 36px;
}
.mb-\[38px\] {
  margin-bottom: 38px;
}
.mb-\[40px\] {
  margin-bottom: 40px;
}
.mb-\[42px\] {
  margin-bottom: 42px;
}
.mb-\[44px\] {
  margin-bottom: 44px;
}
.mb-\[46px\] {
  margin-bottom: 46px;
}
.mb-\[48px\] {
  margin-bottom: 48px;
}
.mb-\[4px\] {
  margin-bottom: 4px;
}
.mb-\[50px\] {
  margin-bottom: 50px;
}
.mb-\[52px\] {
  margin-bottom: 52px;
}
.mb-\[54px\] {
  margin-bottom: 54px;
}
.mb-\[56px\] {
  margin-bottom: 56px;
}
.mb-\[58px\] {
  margin-bottom: 58px;
}
.mb-\[60px\] {
  margin-bottom: 60px;
}
.mb-\[62px\] {
  margin-bottom: 62px;
}
.mb-\[64px\] {
  margin-bottom: 64px;
}
.mb-\[66px\] {
  margin-bottom: 66px;
}
.mb-\[68px\] {
  margin-bottom: 68px;
}
.mb-\[6px\] {
  margin-bottom: 6px;
}
.mb-\[70px\] {
  margin-bottom: 70px;
}
.mb-\[72px\] {
  margin-bottom: 72px;
}
.mb-\[8px\] {
  margin-bottom: 8px;
}
.ml-\[0px\] {
  margin-left: 0px;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-\[12px\] {
  margin-left: 12px;
}
.ml-\[14px\] {
  margin-left: 14px;
}
.ml-\[16px\] {
  margin-left: 16px;
}
.ml-\[18px\] {
  margin-left: 18px;
}
.ml-\[20px\] {
  margin-left: 20px;
}
.ml-\[22px\] {
  margin-left: 22px;
}
.ml-\[24px\] {
  margin-left: 24px;
}
.ml-\[26px\] {
  margin-left: 26px;
}
.ml-\[28px\] {
  margin-left: 28px;
}
.ml-\[2px\] {
  margin-left: 2px;
}
.ml-\[30px\] {
  margin-left: 30px;
}
.ml-\[32px\] {
  margin-left: 32px;
}
.ml-\[34px\] {
  margin-left: 34px;
}
.ml-\[36px\] {
  margin-left: 36px;
}
.ml-\[38px\] {
  margin-left: 38px;
}
.ml-\[40px\] {
  margin-left: 40px;
}
.ml-\[42px\] {
  margin-left: 42px;
}
.ml-\[44px\] {
  margin-left: 44px;
}
.ml-\[46px\] {
  margin-left: 46px;
}
.ml-\[48px\] {
  margin-left: 48px;
}
.ml-\[4px\] {
  margin-left: 4px;
}
.ml-\[50px\] {
  margin-left: 50px;
}
.ml-\[52px\] {
  margin-left: 52px;
}
.ml-\[54px\] {
  margin-left: 54px;
}
.ml-\[56px\] {
  margin-left: 56px;
}
.ml-\[58px\] {
  margin-left: 58px;
}
.ml-\[60px\] {
  margin-left: 60px;
}
.ml-\[62px\] {
  margin-left: 62px;
}
.ml-\[64px\] {
  margin-left: 64px;
}
.ml-\[66px\] {
  margin-left: 66px;
}
.ml-\[68px\] {
  margin-left: 68px;
}
.ml-\[6px\] {
  margin-left: 6px;
}
.ml-\[70px\] {
  margin-left: 70px;
}
.ml-\[72px\] {
  margin-left: 72px;
}
.ml-\[8px\] {
  margin-left: 8px;
}
.mr-\[0px\] {
  margin-right: 0px;
}
.mr-\[10px\] {
  margin-right: 10px;
}
.mr-\[12px\] {
  margin-right: 12px;
}
.mr-\[14px\] {
  margin-right: 14px;
}
.mr-\[16px\] {
  margin-right: 16px;
}
.mr-\[18px\] {
  margin-right: 18px;
}
.mr-\[20px\] {
  margin-right: 20px;
}
.mr-\[22px\] {
  margin-right: 22px;
}
.mr-\[24px\] {
  margin-right: 24px;
}
.mr-\[26px\] {
  margin-right: 26px;
}
.mr-\[28px\] {
  margin-right: 28px;
}
.mr-\[2px\] {
  margin-right: 2px;
}
.mr-\[30px\] {
  margin-right: 30px;
}
.mr-\[32px\] {
  margin-right: 32px;
}
.mr-\[34px\] {
  margin-right: 34px;
}
.mr-\[36px\] {
  margin-right: 36px;
}
.mr-\[38px\] {
  margin-right: 38px;
}
.mr-\[40px\] {
  margin-right: 40px;
}
.mr-\[42px\] {
  margin-right: 42px;
}
.mr-\[44px\] {
  margin-right: 44px;
}
.mr-\[46px\] {
  margin-right: 46px;
}
.mr-\[48px\] {
  margin-right: 48px;
}
.mr-\[4px\] {
  margin-right: 4px;
}
.mr-\[50px\] {
  margin-right: 50px;
}
.mr-\[52px\] {
  margin-right: 52px;
}
.mr-\[54px\] {
  margin-right: 54px;
}
.mr-\[56px\] {
  margin-right: 56px;
}
.mr-\[58px\] {
  margin-right: 58px;
}
.mr-\[60px\] {
  margin-right: 60px;
}
.mr-\[62px\] {
  margin-right: 62px;
}
.mr-\[64px\] {
  margin-right: 64px;
}
.mr-\[66px\] {
  margin-right: 66px;
}
.mr-\[68px\] {
  margin-right: 68px;
}
.mr-\[6px\] {
  margin-right: 6px;
}
.mr-\[70px\] {
  margin-right: 70px;
}
.mr-\[72px\] {
  margin-right: 72px;
}
.mr-\[8px\] {
  margin-right: 8px;
}
.mt-\[0px\] {
  margin-top: 0px;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[10vh\] {
  margin-top: 10vh;
}
.mt-\[12px\] {
  margin-top: 12px;
}
.mt-\[14px\] {
  margin-top: 14px;
}
.mt-\[16px\] {
  margin-top: 16px;
}
.mt-\[18px\] {
  margin-top: 18px;
}
.mt-\[20px\] {
  margin-top: 20px;
}
.mt-\[22px\] {
  margin-top: 22px;
}
.mt-\[24px\] {
  margin-top: 24px;
}
.mt-\[26px\] {
  margin-top: 26px;
}
.mt-\[28px\] {
  margin-top: 28px;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.mt-\[30px\] {
  margin-top: 30px;
}
.mt-\[32px\] {
  margin-top: 32px;
}
.mt-\[34px\] {
  margin-top: 34px;
}
.mt-\[36px\] {
  margin-top: 36px;
}
.mt-\[38px\] {
  margin-top: 38px;
}
.mt-\[40px\] {
  margin-top: 40px;
}
.mt-\[42px\] {
  margin-top: 42px;
}
.mt-\[44px\] {
  margin-top: 44px;
}
.mt-\[45px\] {
  margin-top: 45px;
}
.mt-\[46px\] {
  margin-top: 46px;
}
.mt-\[48px\] {
  margin-top: 48px;
}
.mt-\[4px\] {
  margin-top: 4px;
}
.mt-\[50px\] {
  margin-top: 50px;
}
.mt-\[52px\] {
  margin-top: 52px;
}
.mt-\[54px\] {
  margin-top: 54px;
}
.mt-\[56px\] {
  margin-top: 56px;
}
.mt-\[58px\] {
  margin-top: 58px;
}
.mt-\[60px\] {
  margin-top: 60px;
}
.mt-\[62px\] {
  margin-top: 62px;
}
.mt-\[64px\] {
  margin-top: 64px;
}
.mt-\[66px\] {
  margin-top: 66px;
}
.mt-\[68px\] {
  margin-top: 68px;
}
.mt-\[6px\] {
  margin-top: 6px;
}
.mt-\[70px\] {
  margin-top: 70px;
}
.mt-\[72px\] {
  margin-top: 72px;
}
.mt-\[8px\] {
  margin-top: 8px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.h-1 {
  height: 0.25rem;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-0 {
  gap: 0px;
}
.gap-\[0px\] {
  gap: 0px;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[12px\] {
  gap: 12px;
}
.gap-\[14px\] {
  gap: 14px;
}
.gap-\[16px\] {
  gap: 16px;
}
.gap-\[18px\] {
  gap: 18px;
}
.gap-\[1px\] {
  gap: 1px;
}
.gap-\[20px\] {
  gap: 20px;
}
.gap-\[22px\] {
  gap: 22px;
}
.gap-\[24px\] {
  gap: 24px;
}
.gap-\[2px\] {
  gap: 2px;
}
.gap-\[3px\] {
  gap: 3px;
}
.gap-\[4px\] {
  gap: 4px;
}
.gap-\[5px\] {
  gap: 5px;
}
.gap-\[6px\] {
  gap: 6px;
}
.gap-\[8px\] {
  gap: 8px;
}
.rounded {
  border-radius: 0.25rem;
}
.border-\[2px\] {
  border-width: 2px;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.p-16 {
  padding: 4rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.pb-\[0px\] {
  padding-bottom: 0px;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pb-\[12px\] {
  padding-bottom: 12px;
}
.pb-\[14px\] {
  padding-bottom: 14px;
}
.pb-\[16px\] {
  padding-bottom: 16px;
}
.pb-\[18px\] {
  padding-bottom: 18px;
}
.pb-\[20px\] {
  padding-bottom: 20px;
}
.pb-\[22px\] {
  padding-bottom: 22px;
}
.pb-\[24px\] {
  padding-bottom: 24px;
}
.pb-\[26px\] {
  padding-bottom: 26px;
}
.pb-\[28px\] {
  padding-bottom: 28px;
}
.pb-\[2px\] {
  padding-bottom: 2px;
}
.pb-\[30px\] {
  padding-bottom: 30px;
}
.pb-\[32px\] {
  padding-bottom: 32px;
}
.pb-\[34px\] {
  padding-bottom: 34px;
}
.pb-\[36px\] {
  padding-bottom: 36px;
}
.pb-\[38px\] {
  padding-bottom: 38px;
}
.pb-\[40px\] {
  padding-bottom: 40px;
}
.pb-\[42px\] {
  padding-bottom: 42px;
}
.pb-\[44px\] {
  padding-bottom: 44px;
}
.pb-\[46px\] {
  padding-bottom: 46px;
}
.pb-\[48px\] {
  padding-bottom: 48px;
}
.pb-\[4px\] {
  padding-bottom: 4px;
}
.pb-\[50px\] {
  padding-bottom: 50px;
}
.pb-\[52px\] {
  padding-bottom: 52px;
}
.pb-\[54px\] {
  padding-bottom: 54px;
}
.pb-\[56px\] {
  padding-bottom: 56px;
}
.pb-\[58px\] {
  padding-bottom: 58px;
}
.pb-\[60px\] {
  padding-bottom: 60px;
}
.pb-\[62px\] {
  padding-bottom: 62px;
}
.pb-\[64px\] {
  padding-bottom: 64px;
}
.pb-\[66px\] {
  padding-bottom: 66px;
}
.pb-\[68px\] {
  padding-bottom: 68px;
}
.pb-\[6px\] {
  padding-bottom: 6px;
}
.pb-\[70px\] {
  padding-bottom: 70px;
}
.pb-\[72px\] {
  padding-bottom: 72px;
}
.pb-\[8px\] {
  padding-bottom: 8px;
}
.pl-\[0px\] {
  padding-left: 0px;
}
.pl-\[10px\] {
  padding-left: 10px;
}
.pl-\[12px\] {
  padding-left: 12px;
}
.pl-\[14px\] {
  padding-left: 14px;
}
.pl-\[16px\] {
  padding-left: 16px;
}
.pl-\[18px\] {
  padding-left: 18px;
}
.pl-\[20px\] {
  padding-left: 20px;
}
.pl-\[22px\] {
  padding-left: 22px;
}
.pl-\[24px\] {
  padding-left: 24px;
}
.pl-\[26px\] {
  padding-left: 26px;
}
.pl-\[28px\] {
  padding-left: 28px;
}
.pl-\[2px\] {
  padding-left: 2px;
}
.pl-\[30px\] {
  padding-left: 30px;
}
.pl-\[32px\] {
  padding-left: 32px;
}
.pl-\[34px\] {
  padding-left: 34px;
}
.pl-\[36px\] {
  padding-left: 36px;
}
.pl-\[38px\] {
  padding-left: 38px;
}
.pl-\[40px\] {
  padding-left: 40px;
}
.pl-\[42px\] {
  padding-left: 42px;
}
.pl-\[44px\] {
  padding-left: 44px;
}
.pl-\[46px\] {
  padding-left: 46px;
}
.pl-\[48px\] {
  padding-left: 48px;
}
.pl-\[4px\] {
  padding-left: 4px;
}
.pl-\[50px\] {
  padding-left: 50px;
}
.pl-\[52px\] {
  padding-left: 52px;
}
.pl-\[54px\] {
  padding-left: 54px;
}
.pl-\[56px\] {
  padding-left: 56px;
}
.pl-\[58px\] {
  padding-left: 58px;
}
.pl-\[60px\] {
  padding-left: 60px;
}
.pl-\[62px\] {
  padding-left: 62px;
}
.pl-\[64px\] {
  padding-left: 64px;
}
.pl-\[66px\] {
  padding-left: 66px;
}
.pl-\[68px\] {
  padding-left: 68px;
}
.pl-\[6px\] {
  padding-left: 6px;
}
.pl-\[70px\] {
  padding-left: 70px;
}
.pl-\[72px\] {
  padding-left: 72px;
}
.pl-\[8px\] {
  padding-left: 8px;
}
.pr-\[0px\] {
  padding-right: 0px;
}
.pr-\[10px\] {
  padding-right: 10px;
}
.pr-\[12px\] {
  padding-right: 12px;
}
.pr-\[14px\] {
  padding-right: 14px;
}
.pr-\[16px\] {
  padding-right: 16px;
}
.pr-\[18px\] {
  padding-right: 18px;
}
.pr-\[20px\] {
  padding-right: 20px;
}
.pr-\[22px\] {
  padding-right: 22px;
}
.pr-\[24px\] {
  padding-right: 24px;
}
.pr-\[26px\] {
  padding-right: 26px;
}
.pr-\[28px\] {
  padding-right: 28px;
}
.pr-\[2px\] {
  padding-right: 2px;
}
.pr-\[30px\] {
  padding-right: 30px;
}
.pr-\[32px\] {
  padding-right: 32px;
}
.pr-\[34px\] {
  padding-right: 34px;
}
.pr-\[36px\] {
  padding-right: 36px;
}
.pr-\[38px\] {
  padding-right: 38px;
}
.pr-\[40px\] {
  padding-right: 40px;
}
.pr-\[42px\] {
  padding-right: 42px;
}
.pr-\[44px\] {
  padding-right: 44px;
}
.pr-\[46px\] {
  padding-right: 46px;
}
.pr-\[48px\] {
  padding-right: 48px;
}
.pr-\[4px\] {
  padding-right: 4px;
}
.pr-\[50px\] {
  padding-right: 50px;
}
.pr-\[52px\] {
  padding-right: 52px;
}
.pr-\[54px\] {
  padding-right: 54px;
}
.pr-\[56px\] {
  padding-right: 56px;
}
.pr-\[58px\] {
  padding-right: 58px;
}
.pr-\[60px\] {
  padding-right: 60px;
}
.pr-\[62px\] {
  padding-right: 62px;
}
.pr-\[64px\] {
  padding-right: 64px;
}
.pr-\[66px\] {
  padding-right: 66px;
}
.pr-\[68px\] {
  padding-right: 68px;
}
.pr-\[6px\] {
  padding-right: 6px;
}
.pr-\[70px\] {
  padding-right: 70px;
}
.pr-\[72px\] {
  padding-right: 72px;
}
.pr-\[8px\] {
  padding-right: 8px;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-\[0px\] {
  padding-top: 0px;
}
.pt-\[10px\] {
  padding-top: 10px;
}
.pt-\[12px\] {
  padding-top: 12px;
}
.pt-\[14px\] {
  padding-top: 14px;
}
.pt-\[16px\] {
  padding-top: 16px;
}
.pt-\[18px\] {
  padding-top: 18px;
}
.pt-\[20px\] {
  padding-top: 20px;
}
.pt-\[22px\] {
  padding-top: 22px;
}
.pt-\[24px\] {
  padding-top: 24px;
}
.pt-\[26px\] {
  padding-top: 26px;
}
.pt-\[28px\] {
  padding-top: 28px;
}
.pt-\[2px\] {
  padding-top: 2px;
}
.pt-\[30px\] {
  padding-top: 30px;
}
.pt-\[32px\] {
  padding-top: 32px;
}
.pt-\[34px\] {
  padding-top: 34px;
}
.pt-\[36px\] {
  padding-top: 36px;
}
.pt-\[38px\] {
  padding-top: 38px;
}
.pt-\[40px\] {
  padding-top: 40px;
}
.pt-\[42px\] {
  padding-top: 42px;
}
.pt-\[44px\] {
  padding-top: 44px;
}
.pt-\[46px\] {
  padding-top: 46px;
}
.pt-\[48px\] {
  padding-top: 48px;
}
.pt-\[4px\] {
  padding-top: 4px;
}
.pt-\[50px\] {
  padding-top: 50px;
}
.pt-\[52px\] {
  padding-top: 52px;
}
.pt-\[54px\] {
  padding-top: 54px;
}
.pt-\[56px\] {
  padding-top: 56px;
}
.pt-\[58px\] {
  padding-top: 58px;
}
.pt-\[60px\] {
  padding-top: 60px;
}
.pt-\[62px\] {
  padding-top: 62px;
}
.pt-\[64px\] {
  padding-top: 64px;
}
.pt-\[66px\] {
  padding-top: 66px;
}
.pt-\[68px\] {
  padding-top: 68px;
}
.pt-\[6px\] {
  padding-top: 6px;
}
.pt-\[70px\] {
  padding-top: 70px;
}
.pt-\[72px\] {
  padding-top: 72px;
}
.pt-\[8px\] {
  padding-top: 8px;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.font-Ananda {
  font-family: Ananda;
}
.font-ArslanWessamA {
  font-family: ArslanWessamA;
}
.font-ArslanWessamB {
  font-family: ArslanWessamB;
}
.font-BaskervvilleItalic {
  font-family: BaskervvilleItalic;
}
.font-DayRoman {
  font-family: DayRoman;
}
.font-DiwanyNormal {
  font-family: DiwanyNormal;
}
.font-GreatVibes {
  font-family: GreatVibes;
}
.font-HSNMoalla {
  font-family: HSNMoalla;
}
.font-HighSpirited {
  font-family: HighSpirited;
}
.font-LatoLight {
  font-family: LatoLight;
}
.font-LatoLightItalic {
  font-family: LatoLightItalic;
}
.font-LatoRegular {
  font-family: LatoRegular;
}
.font-NaskhRegular {
  font-family: NaskhRegular;
}
.font-PrestigeSignatureScript {
  font-family: PrestigeSignatureScript;
}
.font-TholothNormal {
  font-family: TholothNormal;
}
.font-WeddingInStarlight {
  font-family: WeddingInStarlight;
}
.font-WhiteDream {
  font-family: WhiteDream;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-\[22px\] {
  font-size: 22px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[26px\] {
  font-size: 26px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-\[30px\] {
  font-size: 30px;
}
.text-\[32px\] {
  font-size: 32px;
}
.text-\[34px\] {
  font-size: 34px;
}
.text-\[36px\] {
  font-size: 36px;
}
.text-\[38px\] {
  font-size: 38px;
}
.text-\[40px\] {
  font-size: 40px;
}
.text-\[42px\] {
  font-size: 42px;
}
.text-\[44px\] {
  font-size: 44px;
}
.text-\[46px\] {
  font-size: 46px;
}
.text-\[48px\] {
  font-size: 48px;
}
.text-\[50px\] {
  font-size: 50px;
}
.text-\[52px\] {
  font-size: 52px;
}
.text-\[54px\] {
  font-size: 54px;
}
.text-\[56px\] {
  font-size: 56px;
}
.text-\[58px\] {
  font-size: 58px;
}
.text-\[60px\] {
  font-size: 60px;
}
.text-\[62px\] {
  font-size: 62px;
}
.text-\[64px\] {
  font-size: 64px;
}
.text-\[66px\] {
  font-size: 66px;
}
.text-\[68px\] {
  font-size: 68px;
}
.text-\[70px\] {
  font-size: 70px;
}
.text-\[72px\] {
  font-size: 72px;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.leading-\[52px\] {
  line-height: 52px;
}
.tracking-\[1\.5px\] {
  letter-spacing: 1.5px;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

@font-face {
  font-family: "GreatVibes";
  src: local("Great Vibes"),
    url(/assets/GreatVibes-Regular-CARlJC0i.ttf)
      format("truetype");
}

@font-face {
  font-family: "LatoRegular";
  src: local("Lato Regular"),
    url(/assets/Lato-Regular-BwLIet1C.ttf)
      format("truetype");
}

@font-face {
  font-family: "LatoLight";
  src: local("Lato-Light"),
    url(/assets/Lato-Light-hJCcuSzX.ttf)
      format("truetype");
}

@font-face {
  font-family: "LatoLightItalic";
  src: local("Lato-LightItalic"),
    url(/assets/Lato-LightItalic-DInKUxwu.ttf)
      format("truetype");
}

@font-face {
  font-family: "PrestigeSignatureScript";
  src: local("PrestigeSignatureScript"),
    url(/assets/PrestigeSignatureScript-gr-UeIKw.ttf)
      format("truetype");
}

@font-face {
  font-family: "ArslanWessamB";
  src: local("ArslanWessamB"),
    url(/assets/ArslanWessamB-BaRn4uRD.ttf)
      format("truetype");
}

@font-face {
  font-family: "ArslanWessamA";
  src: local("ArslanWessamA"),
    url(/assets/ArslanWessamA-DAf9pDjl.ttf)
      format("truetype");
}

@font-face {
  font-family: "HSNMoalla";
  src: local("HSNMoalla"),
    url(/assets/HSN_Moalla-CpJdDUtZ.ttf)
      format("truetype");
}

@font-face {
  font-family: "DiwanyNormal";
  src: local("DiwanyNormal"),
    url(/assets/Diwani-Letter-Dx8wW_h3.ttf)
      format("truetype");
}

@font-face {
  font-family: "TholothNormal";
  src: local("TholothNormal"),
    url(/assets/Tholoth_Normal_2000-QP_DY7ch.ttf)
      format("truetype");
}

@font-face {
  font-family: "NaskhRegular";
  src: local("NaskhRegular"),
    url("./Assets/Fonts/Arabic/DecoType\ Naskh\ regular.ttf")
      format("truetype");
}

@font-face {
  font-family: "WhiteDream";
  src: local("WhiteDream"),
    url(/assets/WhiteDream-LxmROTio.otf)
      format("truetype");
}

@font-face {
  font-family: "Ananda";
  src: local("Ananda"),
    url(/assets/Ananda-_PLhGiaG.ttf)
      format("truetype");
}

@font-face {
  font-family: "WeddingInStarlight";
  src: local("WeddingInStarlight"),
    url(/assets/WeddingInStarlight-CsZ-zTj8.ttf)
      format("truetype");
}

@font-face {
  font-family: "BaskervvilleItalic";
  src: local("Baskervville_Italic"),
    url(/assets/Baskervville_Italic-DZ1W_S0E.ttf)
      format("truetype");
}

@font-face {
  font-family: "DayRoman";
  src: local("DayRoman"),
    url(/assets/DayRoman-CtB5V2of.ttf)
      format("truetype");
}

@font-face {
  font-family: "HighSpirited";
  src: local("HighSpirited"),
    url(/assets/HighSpirited-xA59VHJw.ttf)
      format("truetype");
}

.times{
font-family: 'Times New Roman', Times, serif;
}