* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}



.login{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #444;
}

 .container-login{
  position: relative;
  width: 70vw;
  height: 80vh;
  background: #ffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.container-login::before{
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #df4adf, #520852);
  z-index: 6;
  transform: translateX(100%);
  transition: 1s ease-in-out;
}

.signin-signup{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 5;

}

 form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40%;
  min-width: 238px;
  padding: 0 10px;
}

form.sign-in-form{
  opacity: 1;
  transition: 0.5s ease-in-out;
  transition-delay: 1s;
}

form.sign-up-form{
  opacity: 0;
  transition: 0.5s ease-in-out;
  transition-delay: 1s;
}

.tittle{
  font-size: 35px;
  color: #df4adf;
  margin-bottom: 10px;
}

.input-field{
  width: 100%;
  height: 50px;
  background: #f0f0f0;
  margin: 10px 0;
  border: 2px solid #df4adf;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.input-field i{
  flex: 1;
  text-align: center;
  color: #666;
  font-size: 18px;
}

.input-field input{
  flex: 5;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

    

.btn{
  width: 150px;
  height: 50px;
  border: none;
  border-radius: 50px;
  background: #df4adf;
  color: #fff;
  font-weight: 600;
  margin: 10px 0 ;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover{
  background: #c03cc0;
}

.social-text{
  margin:10px 0;
  font-size: 16px;
}

.social-media{
  display: flex;
  justify-content: center;
}

.social-icon{
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  border: 1px solid #444;
  border-radius: 50px;
  margin: 0 5px;
}

.login a{
  text-decoration: 0;
}

.social-icon:hover{
  color: #df4adf;
  border-color: #df4adf;
}

.panels-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.panel{
  z-index: 6;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 35%;
  min-width: 238px;
  padding: 0 10px;
  text-align: center;
}

.left-panel{
  pointer-events: none;
}

.content{
  color: #fff;
  transition: 1.1s ease-in-out;
  transition-delay: 0.4s;
}

.panel h3{
  font-size: 24px;
  font-weight: 600;
}

.panel p{
  font-size: 15px;
  padding: 10px 0;

}

.image{
  width: 100%;
  transition: 1.1s ease-in-out;
  transition-delay: 04.s;
}

.left-panel .image,
.left-panel .content{
    transform: translateX(-200%);
}

.right-panel .image,
.right-panel .content{
    transform: translateX(0);
}

.account-text{
  display: none;
}

/* Animation */

.container-login.sign-up-mode::before{
  transform: translateX(0);
}

.container-login.sign-up-mode .right-panel .image,
.container-login.sign-up-mode .right-panel .content{
  transform: translateX(200%);
}

.container-login.sign-up-mode .left-panel .image,
.container-login.sign-up-mode .left-panel .content{
  transform: translateX(0);
}

.container-login.sign-up-mode form.sign-in-form{
  opacity: 0;
} 

.container-login.sign-up-mode form.sign-up-form{
  opacity: 1;
} 

.container-login.sign-up-mode .right-panel{
  pointer-events: none;
}

.container-login.sign-up-mode .left-panel{
  pointer-events: all;
}

/* Responsive */
@media (max-width:779px){
  .container-login{
    width: 100vw;
    height: 100vh;
  }
}

@media (max-width:635px){
  .container-login::before{
    display: none;
  }

  form{
    width: 80%;
  }

  form.sign-up-form{
    display: none;
  }

  .container-login.sign-up-mode2 form.sign-up-form{
    display: flex;
    opacity: 1;
  }

  .container-login.sign-up-mode2 form.sign-in-form{
    display: none;
  }

  .panels-container{
    display: none ;
  }

  .account-text{
    display: initial;
    margin-top: 30px  ;
  }

}

@media (max-width:320px){
  form{
    width: 90%;
  }
}


/* Gallery Style */

.card:hover .img-title {
  opacity: 1;
  position: absolute;
}

.card .img-title > * {
  transform: translateY(50px);
  transition: transform 0.9s;
}

.card:hover .img-title > * {
  transform: translateY(0);
}

.card {
  position: relative;
  display: flex;
  /* overflow: hidden; */
}

.img-title {  
  position: absolute;
  color: white;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.6);
  opacity: 0;
  transition: opacity 0.9s;
}

.img-title p {
  padding-left: 15px;
  color: white;
  line-height: 30px;
  position: relative;
  top: 50px;
  text-shadow: 1px 1px rgba(5, 5, 5, 0.5);
}

.container-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.container-gallery .heading {
  width: 50%;
  padding-bottom: 50px;
}

.container-gallery .heading h3 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 3em;
  font-weight: bolder;
  border-bottom: 3px solid #222;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #222;
}

.gallery {
  padding: 10px;
  max-width: 1100px;
  margin: 0 auto;
  background: #f2f2f2;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

/* stretch vertical */
.v-stretch {
  grid-row: span 2;
}

/* stretch horizontally */
.h-stretch {
  grid-column: span 2;
}

/* vertical & horizontally */
.big-stretch {
  grid-row: span 2;
  grid-column: span 2;
}
.gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* responvie */
@media (max-width: 560px) {
  .v-stretch {
    grid-row: span 1;
  }
  .h-stretch {
    grid-column: span 1;
  }
  .big-stretch {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* End Gallery Style */

header {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Img/header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



.navigation {
  width: 100%;
  padding: 10px 0 10px 0;
  position: fixed ;
  
}

.aca {
  position: fixed;
  background-color: #444141 ;
  z-index: 1;
}


.navigation .box-navigation {
 
  display: flex;
  flex-direction: row;  
  justify-content: space-between;
  align-items: center;
  
}

.navigation .box-navigation .box:nth-child(1) {
  font-size: 30px;
  color: white;
}

.navigation .box-navigation .box:nth-child(2) ul {
  display: flex;
  flex-direction: row;
}

.navigation .box-navigation .box:nth-child(2) ul li {
  list-style-type: none;
  margin-left: 40px;
}

.navigation .box-navigation .box:nth-child(2) ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.navigation .box-navigation .box:nth-child(2) ul li a:hover {
  color: darkgray;
}

.navigation .box-navigation .box:nth-child(3) {
  display: none;
}

.navigation .box-navigation .box:nth-child(2) ul li i {
  display: none;
}

/* Hero Style */
header .hero {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

header .hero h1 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 40px;
}

header .hero h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 19px;
  text-align: center;
  font-family: 'Roboto Slab', serif;
}
/* Hero Style */

/* About Style */

.container {
  width: 90%;
  margin-inline: auto;
}

.about {
  width: 100%;
  height: 100vh;
  align-items: center;
  display: flex;
  background-image: url('/Img/aca\ bejir.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: #f1faee; */
}

.about .box-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.about .box-about .box:nth-child(1) {
  padding: 30px;
}

.about .box-about .box:nth-child(1) h1 {
  font-size: 35px;
  margin-bottom: 15px;
}

.about .box-about .box:nth-child(1) p {
  line-height: 2;
  font-size: 15px;
}

.about .box-about :nth-child(2) img {
  border-radius: 15px;
  width: 600px;
  box-shadow: 10px 12px 10px rgba(0, 0, 0, 0.7);
}
/* About Style */

/* Famous Style */
.famous {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('/Img/aca\ famous.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.famous .box-famous {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.famous .box-famous .box {
  text-align: center;
  margin-inline: 20px;
  text-shadow: 5px 5px 10px #222;
}

.famous .box-famous img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 10px 12px 10px rgba(0, 0, 0, 0.5);
}

.famous .box-famous .box:nth-child(1) img {
  margin-top: 30px;
}

.famous .box-famous .box:nth-child(2) img {
  width: 360px;
}

.famous .box-famous .box:nth-child(3) img {
  width: 380px;
}

.famous {
  color: white;
}
/* Famous Style */

/* Contact Style */
.contact {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #24262b;
}

.contact .box-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.contact .box-contact h1 {
  font-size: 50px;
  font-weight: bold;
  color: white;
}

.contact .box-contact form table tr {
  display: flex;
  flex-direction: column;
}

.contact .box-contact form table tr td label {
  font-size: 20px;
  color: white;
}

.contact .box-contact form table tr td input {
  padding: 15px 60px 15px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact .box-contact form table tr td textarea {
  margin-top: 10px;
  padding: 15px 200px 200px 20px;
}

/* Footer */
.container-footer {
  max-width: 1170px;
  margin: auto;
  line-height: 1.5;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.footer ul {
  list-style: none;
}

footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffff;
}

.footer-col .footer-bejir {
  padding-top: 10px;
}

.footer-col .social-links .footer-bejir i {
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
}

.footer-col .social-links i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-col .social-links i.fa-whatsapp {
  font-size: 26px;
  line-height: 37px;
}

.footer-col .social-links p {
  display: inline-block;
  color: #ffff;
}

.footer-col .social-links {
  width: 300px;
}

.footer-col .social-links .footer-bejir {
  margin-left: -11.5px;
}

.footer-col .social-links .footer-bejir p {
  margin-left: -5px;
  margin-bottom: 5px;
}

/* Responsive Footer */
@media screen and (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* Contact Style */
@media screen and (max-width: 1065px) {
  .gallery {
    height: 100%;
    padding: 30px 0 30px 0;
  }
}

@media screen and (max-width: 1000px) {
  .about .box-about .box:nth-child(2) img {
    width: 350px;
  }

  .contact {
    height: 100%;
    padding: 100px 0 100px 0;
  }

  .contact .box-contact {
    flex-direction: column;
  }

  .contact .box-contact h1 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 990px) {
  .navigation .box-navigation .box:nth-child(2) {
    display: flex;
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: white;
    width: 250px;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.6s ease;
  }

  .navigation .box-navigation .menu-navigation.menu-active {
    opacity: 1;
    top: 100px;
  }

  .navigation .box-navigation .box:nth-child(2) ul {
    flex-direction: column;
  }

  .navigation .box-navigation .box:nth-child(2) ul li {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    margin-left: 0;
  }

  .navigation .box-navigation .box:nth-child(2) ul li i {
    margin-inline: 10px;
    font-size: 22px;
    display: inline-block;
  }

  .navigation .box-navigation .box:nth-child(2) ul li a {
    color: black;
  }

  .navigation .box-navigation .box:nth-child(3) {
    display: flex;
    align-items: center;
  }

  .navigation .box-navigation .box:nth-child(3) i {
    font-size: 35px;
  }

  header .hero h1 {
    font-size: 34px;
  }

  .about .box-about {
    flex-direction: column-reverse;
  }

  .about .box-about .box:nth-child(1) {
    text-align: center;
    margin-top: 30px;
  }

  .about .box-about .box:nth-child(2) img {
    width: 400px;
  }

  .famous {
    height: 100%;
    padding-top: 50px;
  }

  .famous .box-famous {
    flex-direction: column;
  }

  .famous .box-famous .box {
    margin-bottom: 30px;
  }

  .famous .box-famous .box img {
    width: 300px;
  }

  .famous .box-famous .box:nth-child(1) img {
    width: 350px;
  }
}

@media screen and (max-width: 768px) {
  header .hero h1 {
    font-size: 22px;
  }

  .about .box-about .box:nth-child(1) {
    text-align: center;
  }

  .about .box-about .box:nth-child(2) img {
    width: 330px;
  }

  .contact {
    height: 100%;
    padding: 100px 0 100px 0;
  }

  .contact .box-contact {
    flex-direction: column;
  }

  .contact .box-contact h1 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .contact .box-contact form table tr td input {
    padding: 10px 50px 15px 20px;
  }

  .contact .box-contact form table tr td textarea {
    padding: 15px 150px 150px 20px;
  }
}

@media screen and (max-width: 542px) {
  .about .box-about .box:nth-child(2) img {
    width: 300px;
  }

  .about .box-about .box:nth-child(1) p {
    font-size: 15px;
  }

  .about .box-about .box:nth-child(1) h1 {
    font-size: 25px;
  }

  .contact .box-contact form table tr td input {
    padding: 10px 50px 15px 20px;
  }

  .contact .box-contact form table tr td textarea {
    padding: 15px 20px 20px 20px;
  }

  .contact .box-contact form table tr td textarea {
    padding: 15px 100px 100px 20px;
  }
}

@media screen and (max-width: 409px) {
  header .hero h1 {
    font-size: 21px;
  }

  .famous .box-famous .box:nth-child(1) img {
    width: 350px;
  }
}

@media screen and (max-width: 405px) {
  .navigation .box-navigation .box:nth-child(2) {
    right: 30px;
  }

  .about .box-about .box:nth-child(2) img {
    width: 260px;
  }

  .about .box-about .box:nth-child(1) h1 {
    font-size: 23px;
  }

  .about .box-about .box:nth-child(1) p {
    font-size: 13px;
  }

  .famous .box-famous .box img {
    width: 200px;
  }

  .famous .box-famous .box h1 {
    font-size: 16px;
  }

  .famous .box-famous .box p {
    font-size: 12px;
  }

  .contact .box-contact form table tr td input {
    padding: 10px 40px 15px 20px;
  }

  .contact .box-contact form table tr td textarea {
    padding: 15px 100px 100px 15px;
  }
}
