@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;500;600;700;800;900&display=swap");
/* CSS Codes */
*{
	margin: 0 auto;
    text-align: center;
    font-family: 'Cairo', sans-serif ;
    position: relative;
    transition: all 0.3s ease-in-out;  
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

/* Scroll Style */
::-webkit-scrollbar{
  width: 10px;
  background-color: #006837;
}

::-webkit-scrollbar-thumb {
  background-color: #c69c6d;
  border-radius: 15px;
}



/* First Page Style */
.firstPage{
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;

}

/* Header Style */
.headerLinear{
  width: 100%;
  background-color: #006837;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Menu Codes */
a{
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}

.nav_links{
  list-style: none;
}

.nav_links li{
  display: inline-block;
  padding: 0px 20px;
  width: max-content;
  background-color: transparent;
  margin: 0px 5px;
  border-radius: 10px;
  border: #fff solid 1px;
  color: #fff;
}

.nav_links li:hover{
  background-color: #fff;
  color: #006837;
}

.nav_links li:hover a{
  color: #006837;
}

#turnON{
  background-color: #fff;
  color: #006837;
}

.threeLinesLinear{
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fff;
}

@media only screen and (max-width: 1329px){
  .threeLinesLinear{
    display: flex;
    cursor: pointer;
  }

  .threeLinesLinear .navLine{
    width: 25px;
    height: 2.5px;
    background-color: #006837;
    margin: 2.5px 0;
    border-radius: 50px;
  }
  .nav_links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 10vh;
    width: 100px;
    background-color: #006837;
    height: 0;
    width: 100%;
    z-index: 10;
    overflow: hidden;
  }

  .nav_links.active{
    height: 50vh;
  }

  .nav_links.active a{
    color: #006837;
  }

  .nav_links ul{
    display: block;
    width: fit-content;
    text-align: center;
  }
  .nav_links li{
    margin: 5px 10px;
    width: 200px;
    max-width: 50%;
  }

  .nav_links li:hover{
    margin: 5px 0px 5px 20px;
    color: #006837;
  }
}

/* NativeBar End Codes */

.headerTextLinear{
  width: fit-content;
  height: 10vh;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.headerLinear #domineName{
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 5px;
  margin: 0px 15px;
}

.domineMeaning {
  height: fit-content;
  padding: 0px;
  margin: 0px;
  width: -webkit-fill-available;
}

.domineMeaning h1{
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  margin: 0px 0px -5px 0px;
  width: max-content;
}

.domineMeaning h2{
  color: #fff;
  font-size: 10px;
  text-align: left;
  margin: -10px 0px 0px 0px;
  width: max-content;
}

/* Logo linear Style */
.logoLinear{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
  width: 100%;
}

.logoLinear img{
  background-color: #ffffffa9;
  padding: 25px;
  border-radius: 20px;
  width: 100px;
  height: auto;
  margin: 10px 5px 5px 5px;
}

.logoLinear img:hover{
  margin: 0px 5px 15px 5px;
}

.logoLinear h1{
  background-color: #c69c6d;
  padding: 0px 10px;
  border-radius: 20px;
  margin: 1.5px 1px;
  width: 300px;
  font-size: 15px;
  color: #fff;
}

.logoLinear h1:hover{
  margin: 1.5px 0px 1.5px 25px;
}

.logoLinear h2{
  background-color: #000;
  padding: 0px 15px;
  border-radius: 10px;
  margin: 50px 5px 5px 5px;
  font-size: 22.5px;
  color: #fff;
  line-height: 1.5;
}


/* first Page Buttons */
.firstPageButtons{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  max-width: 90%;
}

#secoundLanguage{
  margin: 2.5px;
  background-color: #000;
  border: #000 1px solid;
  color: #fff;
  border-radius: 5px;
  padding: 0px 7px;
  font-size: 12px;
  font-weight: 700;
}

#secoundLanguage:hover{
  background-color: #fff;
  color: #000;
  border: #fff 1px solid;
}

#mainLanguage{
  margin: 2.5px;
  background-color: #006837;
  border: #006837 1px solid;
  color: #fff;
  border-radius: 5px;
  padding: 0px 17px;
  font-size: 12px;
  font-weight: 700;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100vh;
}


video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}

/* Secound Page */
.titleLinear{
  width: 90%;
  display: flex;
}

.titleLinear #title{
  text-align: right;
  padding: 0px 25px;
  background-color: #000;
  color: #fff;
  width: fit-content;
  font-size: 25px;
  border-radius: 25px;
  border: #fff 5px solid;
}

.titleLinear::before{
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 25px;
  z-index: 0;
}

.secoundPage{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  height: fit-content;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  padding: 10px 0px 20px 0px;
  margin: 0;
}


.cardLinearSpace{
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cardLinear{
  margin: 10px 5px 0px 5px;
  width: fit-content;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.cardBackground{
  background-position: right;
  background-size: cover;
  height: 250px;
  width: 480px;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mainCardDesign{
  background-color: transparent;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mainCardDesign p::before{
  content: '';
  height: 200%;
  width: 480px;
  top: -30px;
  left: -0px;
  z-index: -1;
  position: absolute;
  background: linear-gradient(to bottom, transparent 0%,rgba(0,0,0,1) 100%);
}

.mainCardDesign p{
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  width: 100%;
  font-weight: 500;
  padding: 0px 0px 10px 0px;
}

.mainCardDesign p::after{
  content: '';
  height: 5%;
  width: 10%;
  top: 37.5px;
  left: 45%;
  border-radius: 50px;
  z-index: -1;
  position: absolute;
  background-color: #c69c6d;
  transition: all 0.75s ease-in-out ;
}

.cardBackground:hover p::after{
  width: 80%;
  left: 40px;
}

.cardBackground:hover .mainCardDesign{
  background-color: #c69c6d54;
}


/* Third Page Codes */
.thirdPage{
  width: 100%;
  min-height: 100vh;
  max-height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  background-color: #c69c6d;
}

.thirdPagePartOne{
  width: 600px;
  max-width: 100%;
  height: fit-content;
  padding: 10px 0px 25px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thirdPage .titleLinear{
  width: 90%;
  display: flex;
  padding: 10px 0px;
}

.thirdPage .titleLinear #title{
  text-align: right;
  padding: 0px 25px;
  background-color: #fff;
  color: #c69c6d;
  width: fit-content;
  font-size: 25px;
  border-radius: 25px;
  border: #c69c6d 5px solid;
}

.thirdPage .titleLinear::before{
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 35px;
  z-index: 0;
}

.textFlix{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  height: fit-content;
  align-content: flex-start;
}

.thirdPage p{
  width: 500px;
  max-width: 90%;
  color: #fff;
  margin: 10px 15px;
  border: #fff 2px solid;
  padding: 15px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.thirdPage p:hover{
  background-color: #fff;
  color: #c69c6d;
}

.thirdPage #bold{
  font-weight: 800;
  font-size: 16px;
  color: rgb(235, 235, 235);
}

.thirdPage p:hover #bold{
  color: rgb(116, 116, 116);
}

.thirdPagePartTwo{
  width: 879.2px;
  height: fit-content;
  padding: 25px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.thirdPageCard{
  width: 90%;
  height: fit-content;
  margin: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thirdPageCard .thirdPageTitle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse
}

.thirdPageTitle .fa-solid{
  font-size: 30px;
  color: #fff;
  padding: 15px;
}


.iconLinear{
  position: relative;
  border: #fff solid 1px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0;
  z-index: 3;
}

.thirdPageTitle .iconLinear::before{
  position: absolute;
  content: '';
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #c69c6d;
  rotate: 45deg;
  transition: all 0.5s ease-in-out;
}

.thirdPageCard:hover .iconLinear::before{
  background-color: transparent;
  rotate: 0deg;
}

.thirdPageCard:hover .fa-solid{
  text-shadow: #fff 0px 0px 50px;
}

.thirdPageTitle h1{
  color: #fff;
  text-align: right;
  margin: 0px 10px;
  z-index: 3;
}

.thirdPageCard:hover h1{
  margin: 0px 0px 0px 20px;
}

.thirdPageCard .thirdPageTitle{
  margin: 0px;
  width: 80%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}

.thirdPageCard h2{
  font-size: 15px;
  color: #fff;
  text-align: left;
  z-index: 4;
}

.thirdPageCard .h2LinearThirdPage{
  position: relative;
  width: 90%;
  height: fit-content;
  border: #fff 1px solid;
  padding: 10px 15px;
  z-index: 1;
  border-radius: 15px;
  margin-top: -10px;
}

.thirdPageCard .h2LinearThirdPage::before{
  position: absolute;
  content: '';
  width: 200px;
  top: -20%;
  left: 3%;
  height: 50px;
  background-color: #c69c6d;
  z-index: 2;
}

/* Forth Page Style Codes */
.forthPage{
  width: 100%;
  min-height: 100vh;
  max-height: fit-content;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  background-image: url(https://raic-ltd.netlify.app/imgs/Forth\ Page\ Background.jpg);
  background-position: center;
  background-size: cover;
}

.forthPage .mainLinearForthItem{
  background-color: #0068378d;
  min-height: 100vh;
  max-height: fit-content;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0px;
}

.mainLinearForthItem .forthTextLinear{
  position: relative;
  margin: 10px 0px 30px 0px;
}

.mainLinearForthItem .forthTextLinear::after{
  position: absolute;
  content: '';
  width: 20%;
  height: 5%;
  right: 40%;
  background-color: #fff;
  border-radius: 20px;
}

.mainLinearForthItem .forthTextLinear h1{
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.mainLinearForthItem h2{
  font-size: 30px;
  font-weight: 900;
}

.mainLinearForthItem h3{
  width: 700px;
  max-width: 85%;
  max-height: fit-content;
  font-size: 15px;
  font-weight: 500;
  padding: 0px 30px;
}

.mainLinearForthItem h3 #bold{
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

/* Fifth Page Style */
.fifthPage{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.fifthPage .titleLinear{
  margin: 10px 0px 5px 0px;
  z-index: 2;
}

.fifthPage .fifthCardDesign{
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px 0px 10px 0px;
}

.imgLinearDesign{
  position: relative;
  width: 125px;
  height: 125px;
  border: #000 1px solid;
  margin: 10px;
  padding: 5px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imgLinearDesign::after{
  position: absolute;
  content: '';
  width: 10%;
  height: 1%;
  background-color: #000;
  z-index: 3;
  top: 90%;
  bottom: 0;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.imgLinearDesign:hover::after{
  width: 50%;
}

#cardImg{
  height: 100px;
  width: 100px;
  z-index: 2;
}

.imgLinearDesign:hover{
  margin: 0px 10px 20px 10px;
  box-shadow: rgba(0, 0, 0, 0.201) 10px 25px 15px 5px;
}


/* Bottom Style */
.bottomLinear{
  background-color: #006837;
  width: 100%;
  height: fit-content;
  margin: 0px;
  display: flex;
  align-items: center;
  align-content: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0px;
  flex-direction: row-reverse;
}


.infolinear{
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  width: 400px;
  max-width: 80%;
  padding: 5px;
  flex-direction: row;
}

.infolinear .fa-solid{
  background-color: #fff;
  color: #006837;
  width: 25px;
  height: 25px;
  font-size: 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infolinear p{
  color: #fff;
  width: 375px;
  text-align: left;
  margin-left: 10px;
}



/* CopyRightLinear Style */
.CopyRightLinear{
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 0px;
  background-color: #000;
}

.CopyRightLinear a{
  width: 250px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CopyRightLinear #copy{
  margin: 5px 0px;
  width: 700px;
  max-width: 90%;
  transition: all 0.3s ease-in-out;
}

.CopyRightLinear #copy:hover{
  color: #c69c6d;
  text-decoration: underline rgb(156, 156, 156);
}

.theProgrammer{
  width: fit-content;
  max-width: 80%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 5px;
  border-radius: 100px;
  overflow: hidden;
}

.programmerLogo{
  width: 35px;
  height: 35px;
  background-color: #060116;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  z-index: 10;
}

.programmerLogo img{
  width: 30px;
  height: auto;
}

.textLinear{
  width: 0px;
  height: fit-content;
  padding: 0px;
  margin: 0;
  transition: all 0.5s ease-in-out;
  color: #060116;
}

.textLinear p{
  font-size: 10px;
  margin: 0px 5px -5px 5px;
  color: #060116;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.textLinear h1{
  font-size: 15px;
  margin: -5px 5px 0px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.theProgrammer:hover .textLinear{
  width: 125px;
}

.CopyRightLinear #copy{
  color: #fff;
}


/* Language Linear Style */

.languageLinear{
  height: fit-content;
  width: fit-content;
  position: fixed;
  top: 90%;
  bottom: 0;
  left: 0;
  right: 75%;
  z-index: 100;
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  box-shadow: #00000033 0px 0px 10px;
}

.languageLinear img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: #fff 5px solid;
  transition: all 0.3s ease-in-out;
}

.languageLinear a{
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
}

title{
  background-color: #006837;
}

/* Map Linear Style */
.maplinear{
  width: 100%;
  height: 20vh;
}


/*Social Media Linear*/
.socialMediaLinear{
  width: 100%;
  height: 10vh;
  max-height: fit-content;
  background-color: #006837;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialLinear{
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 5px;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  color: #006837;
}

.socialMediaLinear a{
  margin: 0;
}

.socialLinear:hover{
  margin: 0px 5px 10px 5px;
  box-shadow: #ffffff5b 5px 5px 10px;
}
