@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* font-family: 'Topaz', sans-serif; */
  font-family: "Poppins", serif !important;
  font-weight: 200;
  font-style: normal;
      
}.splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0); /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 3s ease-in-out;
}

.splash.hide {
  opacity: 0;
  pointer-events: none;
}

.page {
  display: none;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


h1{
    font-size: 20px !important;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: large;
  overflow-x: hidden;
}

nav {
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 65px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #97c73d 0%, #502051 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.menubar:last-of-type {
  display: none;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
[dir="rtl"] .hamburger-active {
  left: 95%;
  position: relative;
}
.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}




/* login button */
.gradient-text {
    background: linear-gradient(to right, #000000, #90588c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.5s ease-in-out;
  }
  
  .gradient-text:hover {
    animation: gradientMove 1.5s backwards infinite;
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  


  /* right arrow */
  .arrow-move {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
  }
  
  .arrow-move:hover {
    color: #000;
    transform: translateX(10px); /* Moves 5px to the right */
  }
  


  /* Contact */

.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5%;
}
.map-container img {
width:100% !important;
  height: auto;

}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 10px 10px 54px -4px rgba(0,0,0,0.75);
}

 /* all in one */

        .text-container {
          width: 100vw;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        
        .text-container h1{
          margin: 0;
          font-size: 100pt !important;
          color: rgb(0, 0, 0);
          /* background-image: url("./assets/iv.jpg"); */
          /* background-repeat: repeat; */
          /* -webkit-background-clip:text; */
          /* animation: animate 15s ease-in-out infinite; */
          text-align: center;
          text-transform: lowercase;
          font-weight: 700;
        }
        
          /* @keyframes animate {
            0%, 100% {
              background-position: left top;
            }
            25%{
              background-position: right bottom;
             }
            50% {
              background-position: left bottom;
            }
            75% {
              background-position: right top;
            }   
        }
 */


.internetvista-headline{
  font-size: 10vw !important;
  font-weight: bold;
}
.card-container{
  background-color: #97c73d;
  position: relative;
  --mask:
  radial-gradient(48.02px at 50% 67.5px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 51% repeat-x,
  radial-gradient(48.02px at 50% -37.5px,#0000 99%,#000 101%) 50% 30px/120px calc(51% - 30px) repeat-x,
  radial-gradient(48.02px at 50% calc(100% - 67.5px),#000 99%,#0000 101%) calc(50% - 60px) 100%/120px 51% repeat-x,
  radial-gradient(48.02px at 50% calc(100% + 37.5px),#0000 99%,#000 101%) 50% calc(100% - 30px)/120px calc(51% - 30px) repeat-x;
-webkit-mask: var(--mask);
        mask: var(--mask);
        padding: 2%;
  }



/* From Uiverse.io by FWDJc */ 
.eye-lid {
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 9px 0 2px rgba(0, 0, 0, 0.2);
  width: 150px;
  height: 150px;
}

.eye {
  background-color: #fffcf4;
  border-radius: 50%;
  transform: translate3d(0, 0, 0) rotate(90deg);
  width: 120px;
  height: 120px;
  animation: eye 5s infinite;
}

@keyframes eye {
  12%,
  25% {
    width: 100px;
    height: 110px;
  }

  37%, 
  50% {
    width: 60px;
    height: 130px;
  }

  63%, 
  75% {
    width: 100px;
    height: 103px;
  }

  87% {
    width: 100px;
    height: 100px;
  }
}

.cornea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: eye-color 3s infinite;
}

@keyframes eye-color {
  63%, 75% {
    background-color: rgb(137, 1, 1);
  }
}

.white-pupil {
  position: absolute;
  top: 70%;
  left: 10%;
  border-radius: 50%;
  background-color: #fffcf4;
  width: 20px;
  height: 20px;
}




/* mobile */
.card-phone {
left: 50%;
perspective: 100vh;
transform-style: preserve-3d;
position: relative;
cursor: pointer;

}

.phone {
position: relative;
perspective: 1000px;
width: 150px;
height: 254px;
transform-style: preserve-3d;
transform: rotateX(60deg) rotateZ(30deg);
transition: all 1s;
}

.phone:hover {
transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.5);
}

.front {
width: 100%;
height: 100%;
border: solid 5px rgb(0, 0, 0);
border-radius: 10px;
border-top: 15px solid;
border-bottom: 15px solid;
background: radial-gradient(circle, rgb(170, 162, 162), rgb(44, 8, 102) 30%);
padding: 0.5rem;
text-align: center;
transform: translateY(20px);
position: absolute;
top: 0;
left: 0;
}

.front-camera {
width: 10px;
height: 10px;
background-color: rgb(59, 59, 59);
border-radius: 50%;
position: absolute;
top: -11px;
left: 50%;
transform: translateX(-50%);
}

.front-camera::after {
content: "";
position: absolute;
border-radius: 50%;
top: 50%;
left: 50%;
width: 50%;
height: 50%;
transform: translate(-50%, -50%);
background: radial-gradient(circle at 6px 2px, rgba(255, 255, 255, 0.726), black);
}

.front-camera::before {
content: "";
position: absolute;
border-radius: 50%;
top: 50%;
left: 50%;
width: 25%;
height: 25%;
transform: translate(-50%, -50%);
background-color: #212121;
}

.bottom .elements {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
height: 100%;
}

.bottom .elements .headphone,
.bottom .elements .microphone {
display: inline-block;
border-radius: 50%;
background-color: #333;
}

.bottom .elements .headphone {
width: 8px;
height: 8px;
}

.bottom .elements .microphone {
width: 3px;
height: 3px;
}

.bottom .elements .charge {
display: inline-block;
width: 20px;
height: 6px;
position: relative;
border-radius: 3px 3px 10px 10px;
background-color: #333;
}

.charge::before {
content: "";
display: inline-block;
width: 10px;
height: 2px;
position: absolute;
border-radius: 3px 3px 10px 10px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgb(26, 25, 25);
}

.bottom .elements .speaker {
display: inline-block;
width: 30px;
height: 0;
border-top: #333 dotted 5px;
}

.front {
transform: translate(-50%, -50%) translateZ(5px);
}
.back {
transform: translate(-50%, -50%) rotateY(180deg) translateZ(5px);
}
.left {
transform: translate(-50%, -50%) rotateY(-90deg) translateZ(75px);
}
.right {
transform: translate(-50%, -50%) rotateY(90deg) translateZ(75px);
}
.top {
transform: translate(-50%, -50%) rotateX(90deg) translateZ(127px);
}
.bottom {
transform: translate(-50%, -50%) rotateX(-90deg) translateZ(127px);
}
.front {
background: url("../assets/mobile.png") center/cover no-repeat;
padding: 0.5rem;
background-position: center;
background-position: unset;
background-size: cover;

}




/* Social */

.card-icons {
  position: relative;
  cursor: pointer;
  width: 90%;
  height: 500px;
  background: lightgrey;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 1s ease-in-out;
  border: 2px solid rgb(255, 255, 255);
}

.background {
  position: absolute;
  inset: 0;
  background-color: #4158D0;
  background-image: linear-gradient(to right, #944D68, #502051);
}

.logo-icons {
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  transition: all 0.6s ease-in-out;
  font-size: 1.3em;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 3px;
}

.logo .logo-svg {
  fill: white;
  width: 30px;
  height: 30px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.icon .svg {
  fill: rgba(255, 255, 255, 0.797);
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.box {
  position: absolute;
  padding: 10px;
  text-align: right;
  background: rgba(255, 255, 255, 0.389);
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 1px solid white;
  border-radius: 10% 13% 42% 0%/10% 12% 75% 0%;
  box-shadow: rgba(100, 100, 111, 0.364) -7px 7px 29px 0px;
  transform-origin: bottom left;
  transition: all 1s ease-in-out;
}

.box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.box:hover .svg {
  fill: white;
}

.box1 {
  width: 70%;
  height: 70%;
  bottom: -70%;
  left: -70%;
}

.box1::before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ff53d4 60%, #62c2fe 90%);
}

.box1:hover::before {
  opacity: 1;
}

.box1:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box2 {
  width: 50%;
  height: 50%;
  bottom: -50%;
  left: -50%;
  transition-delay: 0.2s;
}

.box2::before {
  background: radial-gradient(circle at 30% 107%, #91e9ff 0%, #00ACEE 90%);
}

.box2:hover::before {
  opacity: 1;
}

.box2:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box3 {
  width: 30%;
  height: 30%;
  bottom: -30%;
  left: -30%;
  transition-delay: 0.4s;
}

.box3::before {
  background: radial-gradient(circle at 30% 107%, #969fff 0%, #b349ff 90%);
}

.box3:hover::before {
  opacity: 1;
}

.box3:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.box4 {
  width: 10%;
  height: 10%;
  bottom: -10%;
  left: -10%;
  transition-delay: 0.6s;
}

.card-icons:hover {
  transform: scale(1.1);
}

.card-icons:hover .box {
  bottom: -1px;
  left: -1px;
}

.card-icons:hover .logo-icons {
  transform: translate(70px, -52px);
  letter-spacing: 0px;
}
.card-icons:hover .logo-icons {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

.btn-succuss{
  background-color: #502051 !important;
}


.counter{
  font-weight: bold;
}


/* testi */
section.testimonials{
    /* background-color: #ECF2F7; */
    background-color: #d1bcd1;
    margin: 0;
    padding: 0;
    right: 0;
    left: 0;
    padding-bottom: 5%;
    margin-bottom: 1%;
}
section.heading{
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    margin: 5rem 3rem 3rem 3rem;
    font-size: 1rem;
    font-weight: 500;
}
section.container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    width: 85%;
    gap: 1.5rem;
    max-width: 1280px;

    margin: auto;
    grid-template-areas:
    "item1 item1 item2 item3"
    "item4 item5 item5 item3"
    "item4 item5 item5 item3";
}

.item{
    padding: 1rem;
    display: grid;
    grid-template-areas:
    "img name"
    "title title"
    "description description";
    grid-template-columns: 50px 1fr;
    align-content: start;
    max-height: 300px;
}


img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    grid-area: img;
}

.name{
    font-size: 1.6rem;
    font-weight: 100;
    grid-area: name;
    display: grid;
    align-content: center;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.title-test{
    font-weight: 200;
    font-size: 15px;
    grid-area: title;
}
.description{
    font-size: 15px;
    grid-area: description;
}
[dir="rtl"] {
  --bg-position: left;
}
.item1{
    background-color: #210428;
    /* background-image: url(https://i.ibb.co/wNRBz1D/quotation.png); */
    background-position: top 10% right 5%;
    background-size: 50px;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 60vh;
    grid-area: item1;
    row-gap: 5%;
}
.item2{
    background-color: #49556C;
    color: #ffffff;
    grid-area: item2;
    min-height: 60vh;
}
.item3{
    background-color: #FEFEFE;
    color: #000000;
    grid-area: item3;
    min-height: 99.4vh;
}
.item4{
    background-color: #FEFEFE;
    color: #000000;
    grid-area: item4;
    max-height: 36vh;
}
.item5{
    background-color: #181F2C;
    color: white;
    grid-area: item5;
    max-height: 36vh;
}


@media (max-width: 991px){
    section.container{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
        "item1 item1 item2"
        "item4 item5 item5"
        "item3 item3 item3";
        gap: 1.5rem;
    }

}
@media (max-width: 768px){
    section.container{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        grid-template-areas: 
        "item1"
        "item2"
        "item3"
        "item4"
        "item5";
        gap: 1.5rem;
    }
}



/* Map */

.map-container {
  left: 0;
  position: relative;
  display: inline-block;
  width: 50%;
}
.map-container img {
  width: 60vw !important;
  height: 53vh;
  max-width:500px;

}
.marker {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #97c73d;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.marker:hover {
  transform: scale(1.2);
}
.popup {
  position: absolute;
  background: rgb(27, 27, 27);
  color: white;
  padding: 5px;
  font-size: 14px;
  display: none;
  z-index: 10;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
.disabled {
  opacity: 0.3;
  background-color: #000;
  pointer-events: none;
}




/* banner */

.bannernotfi{
  background: #502051;
  /* border-radius: 26% 45% 25% 25% / 0% 54% 0% 0%; */
  color: whitesmoke;
  text-align: center;
  margin-bottom: 0;
  overflow: hidden;
  
}
.banner{
  background: #502051;
  /* border-radius: 26% 45% 25% 25% / 0% 54% 0% 0%; */
  color: whitesmoke;
  text-align: center;
  margin-bottom: 0;
  overflow: hidden;
}
.banner-fet span{
    display: flex;
    justify-content: center;
    background-color: #97c73d;

    padding: 2%;
    border-radius: 21px;
    height: 26px;
    margin: 0 3%;
    align-items: center;

}
.banner-btns{
  padding-right: 50px !important;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.banner-description{
  font-size: 100%;
}

.bannernotfi img{
  width: 48%;
  height: 115px;
 
}

/* screen shot */
.full-height {
  width: 100%;
  height: 80vh;
  object-fit:contain;
  margin-top: -5%;
}

.screen-infos {
  padding: 5%;
}
.screen-infos p{
  font-weight:350;
}
.screen-shoot img{
  border-radius:10px !important;
  width: 100%;
  height: 70vh;
  object-fit: contain;
}
.bottom-screenshot {
  margin-top: 2%;
  color: black;
  background: #d1bcd1;
  border-radius: 10px;
}

.btn-success{
  background-color: #97c73d !important;
  border: none !important;
}
.btn-success:hover , .btn-success:active{
  border: none !important;
}

.btn-floating{
  border-radius: 50%;
}










body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

body[dir="rtl"] nav ul {
  padding-right: 0;
  padding-left: 20px;
}

body[dir="rtl"] .gradient-text {
  text-align: right;
  display: block;
}




/* Apply RTL styles when Arabic is active */
.rtl-footer {
  text-align: center !important;
}

.rtl-footer .row {
  flex-direction: row-reverse !important; /* Reverse row layout */
}

.rtl-footer .text-lg-start {
  text-align: center !important;
}

.rtl-footer .text-uppercase {
  text-align: center !important; /* Center uppercase titles */
}

.rtl-footer p, 
.rtl-footer a {
  text-align: center !important;
  display: block;
}

section .container .row{
  align-items: baseline !important;
}


.head-section {
  display: flex;
  flex-direction: column;
  padding: 5%;
  background: linear-gradient(to right, #944D68, #502051);
  background-size: 200% auto;
  animation: backgroundMove 2s ease infinite alternate;
  text-align: center;
}

.content {
  text-align: left;
}

.rtl {
  direction: rtl;
  text-align: right;
}

.buttons-head-section {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.row {
  display: flex;
  align-items: center;
}

/* End Head Section */




/* Logos */
.logos img {
  height: auto;
  width: 100vw;
  border-radius: 0%;
}

/* Features */
.Features {
  background-color: #502051;
  text-align: center;
}

.features-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Feature Cards */
.outer {
  width: 300px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
}

.card2 {
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 9px;
  background-color: rgb(255, 255, 255);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}

/* Dot Animation */
.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #000000;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%, 100% { top: 10%; right: 10%; }
  25% { top: 10%; right: calc(100% - 35px); }
  50% { top: calc(100% - 35px); right: calc(100% - 35px); }
  75% { top: calc(100% - 35px); right: 10%; }
}

/* Light Effect */
.ray {
  width: 300px;
  height: auto;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

/* RTL Support */
body[dir="rtl"] {
  text-align: right;
}

body[dir="ltr"] {
  text-align: left;
}




/* cards */



.cards-parent{
        
  margin-top: 0% !important;
  width: 100vw;
  gap: 5%;
}
.cards-parent .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Ensures even spacing */
}
.flip-card {
  margin: 3%;
  background-color: transparent;
  width: 25vw;
  height: 254px;
  perspective: 1000px;
  font-family: "Poppins", serif;
  font-size: 15px !important;
  cursor: pointer;
  
}


.flip-card {
  flex: 1 1 300px; /* Allow flexible resizing */
}


.title {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 5%;
}

.flip-card-inner {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgb(3, 3, 3);
  font-weight: 100 !important;
  border-radius: 1rem;
  background: linear-gradient(120deg, rgb(253, 253, 253) 60%, rgb(240, 240, 240) 88%, #502051 40%, rgba(0, 0, 0, 0.6));
  color: rgb(59, 17, 2);
}


.flip-card-back {

  transform: rotateY(180deg);
}

.item1,.item2,.item3,.item4,.item5{
  padding: 2%;
}



.fab  {
  font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}
.fa-regular, .far {
  font-family: "Font Awesome 6 Free" !important; 
}



/* switch */
.switch {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.switch > span {
  position: absolute;
  top: 10px;
  pointer-events: none;
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
  color: #97c73d;
}

input.check-toggle-round-flat:checked ~ .on {
  color: #fff;
}

.switch > span.on {
  left: 0;
  padding-left: 2px;
  color: #97c73d;
}

.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: #fff;
}

.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 97px;
  height: 35px;
  background-color:#502051 ;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #502051;
  -webkit-
  
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 48px;
  background-color: #fff;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}

input.check-toggle-round-flat:checked + label {
}

input.check-toggle-round-flat:checked + label:after {
  margin-left: 44px;
}

.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;}



  