@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inika&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Hide the default play button */
video::-webkit-media-controls-start-playback-button {
display: none !important;
}

/* For some browsers, additional styles might be needed */
video::-webkit-media-controls-play-button {
display: none !important;
}

video::-webkit-media-controls-play-button-container {
display: none !important;
}
  
video::-webkit-media-controls {
display: none !important;
}

/* Hide play button for other browsers */
video::-webkit-media-controls-overlay-play-button {
display: none !important;
}

video::-webkit-media-controls-enclosure {
display: none !important;
}

/* For Firefox */
video::-moz-media-controls-play-button {
display: none !important;
}

/* For Microsoft Edge */
video::-ms-media-controls {
display: none !important;
}
/*rgb(255,237,187)*/
body {
    height: 100vh;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
  }
  :root {
    --primary-color: #f9532d;
    --primary-dark: black;
  }
  ::-webkit-scrollbar {
    width: 10px; 
  }
  ::-webkit-scrollbar-track {
    background: white; 
  }
  ::-webkit-scrollbar-thumb {
    background: rgb(241,147,2); 
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(234,106,9); 
  }
  .container {
    margin: 0 auto;
    max-width: 100%;
  }
header {
    background: var(--primary-dark);
    position: fixed;
    box-shadow: 0 4px 17px #f9532d;
    top: 0;
    width: 100%;
    z-index: 3000;
    height: 80px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
    position: relative;
    top: 5px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0;
    animation: leftSideAni 1s ease forwards;
    position: relative;
    left: 100px;
    bottom: 15px;
}

.logo a {
    position: relative;
    bottom: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
}

ul {
    display: flex;
    gap: .6rem;
    list-style-type: none;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    right: 10vh;
}

.page-header li a {
    display: inline-block;
    padding: .3rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    border-radius: 36px;
    line-height: 2;
    transition: .3s;
    opacity: 0;
    animation: navani .3s ease forwards;
    animation-delay: calc(.15s * var(--navAni));
}


li a:hover {
    color: var(--primary-color);
}
.drop { 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drop img {
  height: 25px; 
  width: 35px;
  
}
.drop a i{
  padding: 10px;
  font-size: 16.8px;
}
select a {
  
  padding: 4.8px 16px 4.8px 16px;
  color: white;
  font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    

}
.drop img{
  height: 20px; 
  width: 30px;
}

.drop select { 
  cursor: pointer;
  width: fit-content;
  border: none;
  background-color: transparent;
  width: 120px;
  height: 100%;
  display: inline-block;
  padding: .1rem .7rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .7px;
  border-radius: 36px;
  line-height: 2;
  transition: .3s;
  opacity: 0;
  animation: navani .3s ease forwards;
  animation-delay: calc(.15s * var(--navAni));
  
}
.drop option{
background-color: var(--black);
box-shadow: 0 4px 17px #f9532d;
display: inline-block;
    padding: .3rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    border-radius: 10px;
    line-height: 2;
    transition: .3s;
    opacity: 0;
    animation: navani .3s ease forwards;
    animation-delay: calc(.15s * var(--navAni));

}
.drop option:hover {
background-color: var(--primary-color);
}
/* Initially hide the option with value "fr" */

/* Animation */
@keyframes leftSideAni {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes navani {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes topSideAni {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
} 

.section1{
    background-image: url('pictures/Back1.jpg');
    background-size: cover;
    min-height: 120vh; /* Adjusted to full viewport height */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the last value (0.5) to control opacity */
}

.gath {
    height: auto; /* Adjusted for responsiveness */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Changed to center for better responsiveness */
    width: 90%;
    flex-wrap: wrap; /* Allow items to wrap when screen size decreases */
    margin-top: 20px; 
    flex: 1;/* Adjusted for better spacing */
}

.section1 .content {
  
    width: 100%; /* Adjusted to full width for mobile devices */
    max-width: 600px; /* Added for better responsiveness */
    animation: leftSideAni 1s ease forwards;
    padding: 0 20px; 
    border-radius: 20px;    
}

.section1 .content p {
  color: white;
  font-weight: lighter;
  line-height: 1.5;
  font-size: 28px; /* Adjusted for better readability */
  text-align: start;
}

.section1 .content p .kk {
  font-size: 32px; /* Adjusted for better readability */
  color: rgb(234, 106, 9);
  margin-left: 45px;
}

.section1 .content a {
  text-decoration: none;
  border: 1px solid rgb(85, 85, 85);
  color: rgb(85, 85, 85);
  padding: 10px 20px; /* Adjusted for better spacing */
  font-size: 1rem; /* Adjusted for better readability */
  border-radius: 6px;
  display: inline-block; /* Added for better spacing */
  margin-top: 10px; /* Adjusted for better spacing */
}

.section1 .content a:hover {
  background-color: rgb(241, 147, 2);
  color: rgb(255, 237, 187);
  border: none;
}

.high {
  color: #000;
}

.big-circle {
  height: 500px; 
  width: 500px; 
  border: 3px solid transparent;
  border-radius: 50%;
  animation: Rotate 20s linear infinite;
  position: relative; /* Added for absolute positioning of icon-blocks */
}

.icon-block {
  width: 68px; 
  height: 68px; 
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 10px #fff;
}

.icon-block a {
  color: #1F252E;
  animation: Rotate-reverse 20s linear infinite;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .fb i {
    color: #316FF6;
  }
  
  .ig i {
    color: #d62976;
  }
  
  .tel i {
    color: #229ED9;
  }
  
  .con i {
    color: #BFCE4C;
  }
  
  .section1 .content {
    padding: 0; /* Reset padding for mobile devices */
    order: 2;
    margin-bottom: 20px;
  }
  
  .section1 {
    margin-top: 60px;
    position:relative;
    min-height:fit-content;
  }
  
  .section1 .content p {
    text-align: center;
  }
  
  .section1 .content p .kk {
    margin-left: 0;
  }
  
  .gath {
    height: 100%;
    align-items: center;
    padding: 0;
    justify-content: flex-start;
    max-width: 80%;
    flex-direction: column;
  }
  
  .big-circle {
    margin-top: 80px;
    margin-bottom: 60px;
    order: 1;
    display: block; 
  }
  
  select {
    padding: .4rem;
    width: 110px;
  }
}

.fb i:hover {
  color: #316FF6;
}

.ig i:hover {
  color: #d62976;
}

.tel i:hover {
  color: #229ED9;
}

footer .fb i {
  color: #316FF6;
}

footer .ig i {
  color: #d62976;
}

footer .tel i {
  color: #229ED9;
}

.con i:hover {
  color: #BFCE4C;
}

.rounding-sec {
  max-width: 100%;
  margin-top: 20px;
}

.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.icon-block:nth-child(5) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.zoom-center i {
  animation: zoom-in-out 2s infinite;
}

@keyframes zoom-in-out {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

  @keyframes Rotate-reverse {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
  }

  @-webkit-keyframes Rotate-reverse {
    from {
      -webkit-transform: rotate(360deg);
    }
    to {
      -webkit-transform: rotate(0deg);
    }
  }
.arrow i {
    font-size: 45px;
    position: relative;
    top: -20vh;
    color: var(--primary-color);
    animation: beat 0.3s infinite alternate;
}
@keyframes beat {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.2);
    }
  }
  
.sectionf {
  height: 100vh;
  background-color: var(--black);
}

.sectionf .title {
  background-color: black;
  height: 150px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 12px 4px 17px #f9532d;
  
}

.title .video-section {
  width: 100%;
  height: 100%;
}

.title video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

.title .content-inside-video {
  position: relative;
  z-index: 1; /* Ensure content is above the video */
  /* Add any additional styling for the content */
}


.section2 .title .video-section {
  width: 100%;
  max-height: 100%;
}
.void .video-section {
  width: 100%;
  height: 100%;
}

.section2 .title video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
.section3 .video-section{
  width: 100%;
  height: 100%;
}
.section3 .title video {
  position: absolute;
  top: 0;
  left: 0;
  
  min-width: 100%;
  min-height: 100%;
}

.void video {
  position: absolute;
  top: 0;
  left: 0;
  
  max-width: 340vh;
  min-height: 100%;
}

.section2.title .content-inside-video {
  position: relative;
  z-index: 1; /* Ensure content is above the video */
  /* Add any additional styling for the content */
}

.section3 .title .content-inside-video {
  position: relative;
  z-index: 1; /* Ensure content is above the video */
  /* Add any additional styling for the content */
}
@keyframes animate {
  0% {
    transform: translateY(10vh) scale(0);
  }
  100% {
    transform: translateY(-8vh) scale(1);
  }
}
.title h1 {
  position: relative;
  top: 45px;
  color: white;
  z-index: 1;
  height: 100%;
  background-color: transparent;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
  .section2 {
    height: fit-content;
    position: relative;
    background-size: cover;
    width: 100%;
    z-index: 0;
    background-image: url('pictures/copp.jpg');
  }
  .section2 .title {
    background-color: black;
  height: 150px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 12px 4px 17px #f9532d;
  }

.section2 .timeline {
    
    height: 80%;
    
}
.section2 .timeline .cont{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    opacity: 1;
    z-index: 2;
}
.textbox {
    padding: 20px 30px;
    background-color: white;
    box-shadow: 0 25px 25px rgb(63, 63, 63) ;
    width: 100%;
    border-radius: 10px;
    display: grid;
    
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.textbox p {
  text-align: start;
  font-size: 20px;
}
.left-cont {
    left: 0;
}
.right-cont {
    left: 50%;
}
.textbox p span {
   color: #f9532d; 
  
}
.timeline::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 80%;
    background: white;
    top: 10px;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
    animation : moveline 6s linear forwards;
}
@keyframes moveline{
    0%{
        height: 0;
    }
    100%{
        height: 104%;
    }

}
.section3 {
    height: 140vh;
    overflow: hidden;
    background-size: cover;
    background-image: url('pictures/values.jpg');
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.spann {
  color: black; font-size: x-large;

}

.section3 .title {
  background-color: black;
  height: 150px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 12px 4px 17px #f9532d;
}
.inside {
  height: calc(100% - 150px);
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
}
/*
.section3 .timeline {
    position: relative;
    top: 60px;
    height: 60%;  
}*/
.wrapper {
  overflow-y: hidden;
  max-height: 800px;
  display: flex;
  animation: scroll 10s linear infinite;
  width: fit-content;
    
}
.wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.wrapper .item {
  margin: 20px;
  min-width: 380px;
  height: 470px;
  width: 100px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 3px 1px 6px #f9532d;;
  letter-spacing: 1px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: white;
  text-align: start;
  background-color: var(--primary-dark);
}
.wrapper .item .img img{
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    height: 35vh;
}
.wrapper .item h3 {
    color: #fff;
    letter-spacing: 2px;
    font-size: 25px;
    display: flex;
    margin-top: 15px;
    justify-content: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.wrapper .item .text {
    width: 90%;
    margin-left: 5%;
    position: relative;
    top: 10px;
    height: 300px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    text-align: center;
}

@media screen and (max-width: 600px) {
.inside {
  align-items: start;
}

.section1 .content p {
font-size: 20px;
}

  .navbar{
    height: 80px;
  }
  .section2 {
    height: fit-content;
    z-index: 1000;
  }
  .section2 .timeline {
    display: flex;
    max-width: 100%;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
  }
  .section2 .cont.left-cont p{
    font-size: 12px;
    
  }
  .wrapper h3 {
    margin-top: 0;
  }
  .item {
    height: fit-content;
  }
.timeline::after{
  content: '';
  position: absolute;
  width: 6px;
  max-height: 100%;
  background: white;
  left: 50%;
  top: -20px;
  margin-left: -3px;
  z-index: 1;
  animation : moveline 6s linear forwards;
}

.page-header {
position: absolute;
top: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
bottom: 0;
height: 100%;
padding: 0;
}
.logo {
position: relative;
left: 0;
bottom: 0;
margin-right: 20px;
}
.drop {
justify-content: center;
margin-top: 13px;
}

.textbox p {
  text-align: start;
  font-size: 20px;
  
}
  .section2 .cont.right-cont p{
    font-size: 12px;
    
  }
::-webkit-scrollbar {
  width: 10px; 
}
::-webkit-scrollbar-track {
  background: white; 
}
::-webkit-scrollbar-thumb {
  background: rgb(241,147,2); 
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(234,106,9); 
}
html , body {
  overflow-x: hidden;
}
  body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .big-circle {
    width: 30vh;
    height: 30vh;
    order: 1;
  }
  
  .icon-block {
    width: 70px;
    height: 70px;
  }
  .logo a {
    font-size: 20px;
    
  }
  .page-header ul {
    background: var(--primary-dark);
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    top: 5rem;
    left: -100%;
    z-index: 111111;
    transition: left 0.3s ease; /* Consolidate transition property */
  }
  
  .wrapper {
  overflow-y: hidden;
  max-height: 800px;
  display: flex;
  overflow-x: auto;
  position: relative;
  top: 45vh;
  width: calc(250px * 12);
  animation: scrollI 20s linear infinite;
    
  }
.page-header  .menu {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    right: 40px;
    top: 3px;
  }

 .page-header .menu i {
    font-size: 2rem; /* Adjust as needed */
  }

.page-header  #click:checked ~ ul {
    left: 0;
  }

  .main {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); /* Adjust as needed */
    margin-top: 2rem;
    overflow-x: hidden;
  }

  .icon-block {
    width: 5rem; /* Adjust as needed */
    height: 5rem; /* Adjust as needed */
  }

  .page-header  #click {
    display: inline-block;
  }

  .page-header   #click + label{
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
  }

  .page-header   #click + .menu {
    width: 30px;
    height: 30px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .page-header   #click:checked + label .menu {
    background-color: #f9532d; /* Change to your desired color */
    animation: glowing 1.5s infinite; 
    border-radius: 5px;/* Glowing animation */
  }

.page-header  #click + label .menu i {
    color: #fff;
  }
.section2 .textbox {
  width: 100%;
}
.left-cont {
  left: 0;
}

.right-cont {
  left: 0%;
}
.section2 .timeline .cont{
  padding: 10px 25px;
  
  width: 80%;
  opacity: 1;
  z-index: 2;
}
.section3 {
  height: 120vh;
}
.section3 .wrapper{
  position: relative;
  top: 20vh;
  
}
.video-section3 {
  height: 100vh;
}
.section3 .wrapper .item {
  height: 60vh;
}

}
.copyright { 
  display: flex;
  justify-content: center;
}
/* Media query for screens larger than 600px (desktop) */
@media screen and (min-width: 601px) {
  /* Hide the checkbox on desktop */
  #click {
    display: none;
  }
}

.flinks {
display: flex;
align-items: start;

}
.flinks a {
margin: 10px;
}

/* Glowing animation */
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #f9532d, 0 0 20px #f9532d, 0 0 30px #f9532d;
  }
  50% {
    box-shadow: 0 0 10px #f9532d, 0 0 30px #f9532d, 0 0 40px #f9532d;
  }
  100% {
    box-shadow: 0 0 5px #f9532d, 0 0 20px #f9532d, 0 0 30px #f9532d;
  }
}
@keyframes scroll {
  0%{
    transform: translateX(0px);
  }
  100%{
    transform: translateX(calc(-150px * 6));
  }
}
@keyframes scrollI {
  0%{
    transform: translateX(0px);
  }
  100%{
    transform: translateX(calc(-355px * 6));
  }
}
:root {
  --rotate-speed: 40;
  --count: 6;
  --easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
  --easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
}


@-webkit-keyframes pulseGlow {
  from {
    background-size: 60%;
  }
  to {
    background-size: 100%;
  }
}
@keyframes pulseGlow {
  from {
    background-size: 60%;
  }
  to {
    background-size: 100%;
  }
}


@keyframes animate1 {
  0% {
    transform: translateY(230vh) scale(0);
  }
  100% {
    transform: translateY(10vh) scale(1);
  }
}

/* Hadchi dyal l footer */
:root{
  --white:#f9532dFc;
  --black:#000;
  --dark:#1E1E1E;
  --gray:rgba(1,1,1,0.6);
  --lite:rgba(255,255,255,0.6);
  --primary:#1F252E;
  --secondary: #da9100;
}
a{
    text-decoration:none !important;
    min-width: fit-content;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

a, button{
    transition:0.5s;
}

a, p{
    font-size:14px;
}

h1, h2, h3, h4, h5, h6{
    color:var(--primary);
    font-weight:600;
}

a, button, input, textarea, select{
    outline:none !important;
}

fieldset{
    border:0;
}

.title{
    color:var(--primary);
}

.flex, .fixed_flex{
    display:flex;
}

.flex-content{
    width:100%;
    position:relative;
}

.padding_1x{
    padding:1rem;
}

.padding_2x{
    padding:2rem;
}

.padding_3x{
    padding:3rem;
}

.padding_4x{
    /* padding:4rem; */
    width: 100%;
    height: 100%;
}

.btn{
    padding:0.8rem 2rem;
    border-radius:5px;
    text-align:center;
    font-weight:500;
    text-transform:uppercase;
}

.btn_1{
    border:1px solid var(--primary);
    background-color:var(--primary);
    color:var(--secondary);
}

.btn_1:hover{
    background-color:transparent;
    color:var(--primary);
}

.btn_2{
    border:1px solid var(--secondary);
    background-color:var(--secondary);
    color:var(--primary);
}

.btn_2:hover{
    border:1px solid var(--primary);
    background-color:var(--primary);
    color:var(--secondary);
}

@media (max-width:920px){
    .flex{
        flex-wrap:wrap;
    }
    
    .padding_1x, .padding_2x, .padding_3x, .padding_4x{
        padding:1rem;
    }
  
    .btn{
        padding:0.5rem 1rem;
    }
    
    a, p{
        font-size:12px;
    }
    
}



/***************************
              FOOTER
****************************/
footer{
    background-color: transparent;
    color:var(--lite);
}

footer h3{
    color:var(--white);
    margin-bottom:1.5rem;
}

footer a{
    color:var(--lite);
    display:block;
    margin:15px 0;
}

footer a:hover{
    color:var(--white);
}

footer fieldset{
    padding:0;
}

footer fieldset input{
    background-color:#334f6c;
    border:0;
    color:var(--lite);
    padding:1rem;
}

footer fieldset .btn{
    border-radius:0;
    border:0;
}

footer fieldset .btn_2:hover{
    background-color:var(--secondary);
    border:0;
    color:var(--primary);
}

footer .flex:last-child{
    align-items:center;
}

footer .flex:last-child .flex-content:last-child{
    text-align:center;
}

footer .flex:last-child p{
    color:var(--white);
}

footer .flex:last-child a{
    width:40px;
    display:inline-block;
    background-color:#334f6c;
    color:var(--white);
    padding:0.5rem;
    margin-right:3px;
    text-align:center;
}

footer .flex:last-child a:hover{
    background-color:var(--secondary);
    color:var(--gray);
}

@media (max-width:1100px){
    footer .flex:first-child{
        flex-wrap:wrap;
    }
    
    footer .flex:first-child .flex-content{
        flex: 1 1 40%;
    }
}

@media (max-width:920px){
    footer .flex:last-child .flex-content:last-child{
        text-align:left;
    }
}

@media (max-width:320px){
    footer .flex:first-child .flex-content{
        flex:1 1 100%;
    }
}

.video-section {
  position: relative;
  overflow: hidden;
  background-image: none; 
}

#footer-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  object-fit: cover;
  z-index: -1;
}
#title-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Your existing styles */
.lfix {
height: calc(668px - 150px);
display: flex;
align-items: center;
justify-content: center;
}

.conta h4 {
color: var(--primary-color);
}.conta {
height: 300px;
display: flex;
flex-wrap: nowrap;

}

.card {
width: 80px;
border-radius: .75rem;
background-size: cover;
height: 100%;
cursor: pointer;
overflow: hidden;
border-radius: 2rem;
margin: 0 10px;
display: flex;
align-items: center;
transition: .6s cubic-bezier(.28,-0.03,0,.99);
box-shadow: 0px 10px 30px -9px rgba(206, 205, 205, 0.8);
}

.card > .row {
color: white;
display: flex;
flex-wrap: nowrap;
}

.card > .row > .icon {
background: var(--primary-color);
color: rgba(206, 205, 205, 0.8);
border-radius: 50%;
width: 50px;
display: flex;
font-weight: 700;
justify-content: center;
align-items: center;
margin: 15px;
}

.card > .row > .description {
display: flex;
justify-content: center;
flex-direction: column;
overflow: hidden;
height: 80px;
width: 520px;
opacity: 0;
transform: translateY(30px);
transition-delay: .3s;
transition: all .3s ease;
text-align: start;
padding-right: 30px;
}

.description p {
color: #b0b0ba;
padding-top: 5px;
}

.description h4 {
text-transform: uppercase;
}

input {
display: none;
}

input:checked + label {
width: 600px;
}

input:checked + label .description {
opacity: 1 !important;
transform: translateY(0) !important;
}

@media screen and (max-width: 600px) {
.conta {
flex-direction: column;
align-items: center;
justify-content: center;
column-gap: 180px;
max-width: 95%;
margin-left: 2.5%;
height: 600px;

} 
.sectionf {
height: fit-content;

}
.lfix {
height: fit-content;
}

input:checked + label {
width: 100%;
height: 260px;
}
.card {
height: 140px;
display:flex;
align-items: center;
}
.description {
max-width: 300px;
 min-height: 100%;

}
.icon {
height: 50px;
margin: 20px;
}
.row {
display: flex;
align-items: center;
height: 150px;
}
@keyframes scroll {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(calc(-70%));
}
}


/* Media query for screens larger than 600px (desktop) */
@media screen and (max-width: 376px) {
  
    .section1{
       height: fit-content;
       margin: 0;
    }
    .section1::before {
     height: 100%;
    }
    .description p{
      
      width: 60%;
    }
    .gath {
      max-width: 80%;
      height: 100%;
      
      align-items: center;
      margin-top: 40px;
       /* Center align items for better responsiveness */
  padding: 0;
  justify-content: flex-start;
    max-width: 80%;
    flex-direction: column; /* Change flex-direction for better stacking on smaller screens */
  }
    .section1 .content {
      padding: 0; /* Reset padding for mobile devices */
      margin-bottom: 40px;
      justify-items: stretch;
  }
  .description p,h4 {
    margin-right: 20px;
  }
.copyright {
min-width: 300px;
}

.item {
  height: fit-content;
}

.big-circle {
  
    display: block; 
    margin-bottom: 40px;
    /* Hide big-circle for smaller screens */
}
  /* Hide the checkbox on desktop */
  .sectionf {
    height: fit-content;
    
  }
  .lfix {
    height: fit-content;
  }
  .section2 {
    height: fit-content;
  }
  .section2 .timeline {
    position: relative;
    top: 0;
  }
  .textbox p {
    text-align: left;
  }
  .page-header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    height: 100%;
    padding: 0;
  }
  .logo {
    position: relative;
    left: 0;
    bottom: 0;
    margin-right: 20px;
  }
}


}




