/*========================
        fonts
  ========================*/
  @font-face {
    font-family: 'Rubik bold';
    src: url(../fonts/Rubik-Bold.ttf);
}

@font-face {
    font-family: 'Rubik semibold';
    src: url(../fonts/Rubik-SemiBold.ttf);
}

@font-face {
    font-family: 'Rubik medium';
    src: url(../fonts/Rubik-Medium.ttf);
}

@font-face {
    font-family: 'Rubik regular';
    src: url(../fonts/Rubik-Regular.ttf);
}

@font-face {
    font-family: 'Rubik light';
    src: url(../fonts/Rubik-Light.ttf);
}



/*========================
        global
  ========================*/
:root {
    --font-bold: 'Rubik bold';
    --font-semibold: 'Rubik semibold';
    --font-medium: 'Rubik medium';
    --font-regular: 'Rubik regular';
    --font-light: 'Rubik light';
    --primary-color: #888099;
    --secondary-color: #d9d9da;
   --sub-color:#91a8a4;
    --font-60: 60px;
    --font-48: 48px;
    --font-36: 36px;
    --font-30: 30px;
    --font-25: 25px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;
    --font-12: 12px;
}

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden !important;
    font-family: var(--font-regular);
    direction: rtl;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 0;
    padding: 0;
}

svg:hover {
    cursor: pointer;
}

input:focus {
    box-shadow: none !important;
    outline: none;
}

.fs-60 {
    font-size: var(--font-60);
}
.fs-48 {
    font-size: var(--font-48);
}
.fs-36 {
    font-size: var(--font-36);
}
.fs-30 {
    font-size: var(--font-30);
}
.fs-25 {
    font-size: var(--font-25);
}
.fs-20 {
    font-size: var(--font-20);
}
.fs-18 {
    font-size: var(--font-18);
}
.fs-16 {
    font-size: var(--font-46);
}
.fs-14 {
    font-size: var(--font-14);
}
.fs-12 {
    font-size: var(--font-12);
}
.form-control:focus,
.form-select:focus{
    outline: none;
}
.img-height {
    height: 200px;
    object-fit: cover;
}
/*========================
        navbar
  ========================*/
  nav .nav-link {
    margin-inline-end: 20px;
  }
  /*========================
        life
  ========================*/
  .background-life {
    background-image: url('../img/background/background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .card-rounded {
    border-radius: 100px;
  }
  .card-rounded img {
    max-width: 100px;
    height: 70px;
  }
/*========================
        mission
  ========================*/
  .background-mession {
    background-image: url('../img/background/mission.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
  }
  /*========================
       digital-platforms
  ========================*/
  #platform-slider img {
    height: 240px;
    /* object-fit: cover; */
  }
  #platform-slider .owl-dots {
    display: block;
    margin-top: 25px;
}

#platform-slider .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #fff;
    margin-inline: 10px;
}

#platform-slider .owl-dots .owl-dot.active span {
    background: var(--primary-color);
}

.btn-play {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 /*========================
       partner
  ========================*/
  #partner-slider a {
    display: block;
  }
#partner-slider img {
    max-width: 200px;
    width: 100%;
    object-fit: contain;
    height: 200px;
   margin-inline: auto;
}
 /*========================
       section-discover
  ========================*/
  .light-img {
    margin-inline-start: -20px;
    position: relative;
    z-index: 1;
  }
/*========================
        experiments
  ========================*/
  .experiments img{
    width: 150px;
  }
  /*========================
       Experiments
  ========================*/
  .experiment .images img{
    width: 90px;
    height: 90px;
  }
  /*========================
       sana-circle
  ========================*/
  .switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #90a4a4;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider svg {
    width: 16px;
    height: 16px;
    stroke: #444;
    stroke-width: 3;
    fill: none;
  }

  .switch.active {
    background-color: #90a4a4;
  }

  .switch.active .slider {
    transform: translateX(30px);
  }
  .icon-img {
    width: 20px !important;
    height: 20px !important;
  }
  /*========================
       sidebar
  ========================*/
  .sidebar .nav-item.active a {
    color: var(--primary-color) !important ;
    font-weight: bold;
  }
  /*========================
       responsive
  ========================*/

@media(max-width:1500px) {
    :root {
        --font-60: 50px;
        --font-48: 38px;
        --font-36: 30px;
        --font-30: 25px;
        --font-25:20px;
        --font-20: 18px;
        --font-18: 16px;
        --font-16: 14px;
        --font-14: 12px;
    }
}
@media (max-width: 567px) {
  .community p{
    width: 100% !important;
  }
  .circle img{
    width: 100% !important;
  }
  .free{
    width: 100% !important;
  }
}


.free {
  position: absolute;
  bottom: 0px;
 
}
