

/*---------------------------------------
login and signup form styles              
-----------------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .main {
    font-family: 'DM Sans', sans-serif;
    background-color: #fefaf4;
    background-image: url('../images/login_bg.gif');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
  }

  .form-container {
    width: 100%;
    max-width: 450px;
    padding: 25px 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 12px #dab881 ;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
  }

  .logo{
    display: block;
    margin: 0 auto 10px auto;
    max-width: 150px;
    height: auto;
    
  }

  .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    margin-bottom: 6px;
    font-weight: bold;
    color: #444;
    font-size: 0.95rem;
  }

  .form-group input {
    width: 100%;
    padding: 12px 10px;
    border: 2px solid #F2CC8F;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .form-group input:focus {
    border-color: #d9a25c;
    box-shadow: 0 0 5px rgba(242, 204, 143, 0.8);
  }

  .btn-primary {
    width: 100%;
    background-color: #F2CC8F;
    border: none;
    padding: 14px;
    border-radius: 8px;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
  }

  .btn-primary:hover {
    background-color: #d9a25c;
  }

  .login-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .signup-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .login-link:hover {
    color: #d9a25c;
    text-decoration: underline;
  }

  .error-message {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Responsive for small ecran  */
  @media (max-width: 500px) {
    .form-container {
      padding: 20px 15px;
    }

    .form-container h2 {
      font-size: 1.5rem;
    }

    .form-group input {
      padding: 10px;
      font-size: 0.9rem;
    }

    .btn-primary {
      padding: 12px;
      font-size: 0.95rem;
    }
  }

  .input-error {
    border: 2px solid #ff3860 !important;
    background-color: #fff5f5 !important;
}

.input-success {
    border: 2px solid #23d160 !important;
    background-color: #f5fff7 !important;
}

.error-message {
    color: #ff3860;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}
  /*---------------------------------------
  End login and signup form styles  

/*--------------------------------------------------------------
# Recents Blog Posts
--------------------------------------------------------------*/
.recents-blog-posts{
  background-image: url('../img/section-z.webp');
}
.recents-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recents-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recents-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recents-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recents-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recents-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recents-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recents-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
  /* width: auto; */
}

.recents-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recents-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recents-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recents-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}


/* scrool */
	/* HORIZONTAL SCROLL */
  .scroll-container{
    overflow: auto;
    white-space: nowrap;
    padding: 5px 70px 5px 20px;
    background: transparent;
    /* height: 100%; */
    /* border-radius:15px; */
    
    /* height: 60%; */
    }
    
    .gridscroll{
    display:inline-block;
    }
    
   
    .item {
    display: inline-block;
    width: 73.3333%;
    position: relative;
    vertical-align: top;
    overflow: hidden;
    /* height: 100%; */
    white-space: normal;
    /* padding: 0 10px; */
    }
    

    @media (min-width: 991px) {
      .recents-blog-posts {
        display: none;
      }
       
    }

    @media (max-width: 991px) {
      .recent-blog-posts {
        display: none;
      }
       
    }

    @media (max-width: 992px) {
      .cta .container {
        padding: 60px;
      }
    }

    .cta .container {
      padding: 80px;
      background: rgba(var(--color-secondary-rgb), 0.1);
      border-radius: 15px;
    }

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts{
  background-image: url('../img/section-z.webp');
}
.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
  /* width: auto; */
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}





/*--------------------------------------------------------------
# On Focuse Section
--------------------------------------------------------------*/
.onfocuse {
  padding: 0;
}

.onfocuse .video-play {
  min-height: 400px;
  background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../img/photo6.jpg") center center;
  background-size: cover;
}

.onfocuse .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocuse .content {
    padding: 80px;
  }
}

.onfocuse .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

.onfocuse .content ul {
  list-style: none;
  padding: 0;
}

.onfocuse .content ul li {
  padding-bottom: 10px;
}

.onfocuse .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocuse .content p:last-child {
  margin-bottom: 0;
}

.onfocuse .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocuse .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocuse .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocuse .content .read-more:hover i {
  margin-left: 10px;
}

.onfocuse .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocuse .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocuse .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocuse .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.onfocuse .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}
    
/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/

.img-fl{
  /* object-fit: cover; */
  width: 50%;
  height: 50%;
}

.dauph{
  width: 100%;
  height: 100%;;
}

.img-flui{
  object-fit: cover;
  width: 100%;
}
.img-flu{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  /* background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../images/section-c.webp") center center;
  background-size: cover; */
}

.onfocus .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../images/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

.onfocus .content ul {
  list-style: none;
  padding: 0;
}

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


.img-contain{
  /* padding: 10px 0; */
  display: inline-block;
  overflow: auto;
  white-space: nowrap;

  width: 100%;
  /* height: fit-content; */
  overflow-x: scroll;
}

.itemz{
  position: relative;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  /* width: 50%;
  height: 200px; */
  box-shadow: 0px 5px 17px -7px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 100ms ease-in;



}

.itemz img{
  max-width: 100%;
  /* max-height: 100%; */
  height : 500px;
}
