/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  :root {
    --af-color:#f54591;
    --main-color: #2196f3;
    --main-color-alt: #1787e0;
    --main-transition: 0.3s;
    --main-padding-top: 50px;
    --main-padding-bottom: 50px;
    --section-background: #ececec;
    --primary: #1787e0;
    --light: #F6F7F8;
    --dark: #1A2A36;
    --degrade:linear-gradient(to right, #00eeff, #19a3ff);
    --degrade-mem:linear-gradient(to right, #ff00dd, #ab1153);
    --degrade-vertical:linear-gradient(to top, #00eeff, #19a3ff);
    --degrade-vertical-mem:linear-gradient(to top, #ff00dd, #ab1153);
    --degrade-moder:linear-gradient(to right, #02d417, #19a3ff);
    --degrade-vertical-moder:linear-gradient(to top,#19a3ff, #02d417);
    --degrade-vertical-admin:linear-gradient(to top,#b300ff, #ab1153);
    
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Cairo", sans-serif;
  }
  a {
    text-decoration: none;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .con {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .afrah-logo{
    width: 70px;
    height: 70px;
    
  }
  /* Small */
  @media (min-width: 768px) {
    .con {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .con {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .con {
      width: 1170px;
    }
  }
  /* Start headerr */
.headerr {
    background-color: white;
    position: relative;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
  }
  .headerr .con {
    display: flex;
    width: 95%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
  .headerr .log{
    display: flex;
    justify-content: center;
    
  }
  .headerr .logo {
    color: var(--main-color);
    font-size: 26px;
    font-weight: bold;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .headerr .login {
    color: var(--main-color);
    font-size: 17px;
    font-weight: bold;
    height: 72px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }
  .headerr .login i{
   margin-left: 4px;
   font-size: 20px;
  }
  .headerr .login:hover {
  font-size: 19px;
  color: var(--af-color);
  }
  .activee {
    color: var(--af-color);
    background-color: #ffd3ed;
  }

  .dropdown-toggle::after{
    display: none !important;
  }
  
  @media (max-width: 767px) {
    .headerr .logo {
      width: 100%;
      height: 50px;
    }
}
  .headerr .main-nave {
    display: flex;
    
  }
  @media (max-width: 767px) {
    .headerr .main-nave {
      margin: auto;
      text-align: center;
      border-bottom: 1px #ddd solid;
    }
    .headerr .con .log {
      margin: auto;
    }

    .res-bar .con .log {
      margin: auto 20px auto 0;
  }

  .res-bar .login {
    width: 80px !important;
  }

    .headerr .login {
    font-size: 17px;
    height: 50px;
    width: 70px;
    justify-content: space-between;
  }
  .roww .top-inf li,.roww .top-sociale li a {
    font-size: 13px;
  }
}
  .headerr .main-nave > li:hover .mega-menu {
    opacity: 1;
    z-index: 100;
    top: calc(100% + 1px);
  }
  .headerr .main-nave > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    position: relative;
    color: black;
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
    transition: var(--main-transition);
  }
  @media (max-width: 767px) {
    .headerr .main-nave > li > a {
      padding: 10px;
      font-size: 14px;
      height: 40px;
    }
  }
  .headerr .main-nave > li > .activ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: 0;
    
  }
  .headerr .main-nave > li > .activ {
    color: black;
    background-color: #fafafa;
  }
  .headerr .main-nave > li > a:hover::before {
    left: 0;
  }

  .headerr .main-nave > li > a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--af-color);
    top: 0;
    left: -100%;
    transition: var(--main-transition);
  }
  .headerr .main-nave > li > a:hover {
    color: var(--main-color);
    background-color: #fafafa;
  }
  .headerr .main-nave > li > a:hover::before {
    left: 0;
  }
  .headerr .mega-menu {
    position: absolute;
    width: 60%;
    right: -5%;
    padding: 30px;
    background-color: white;
    border-bottom: 3px solid var(--main-color);
    z-index: -1;
    display: flex;
    justify-content: center;
    overflow: hidden;
    gap: 40px;
    top: calc(100% + 50px);
    opacity: 0;
    transition: top var(--main-transition), opacity var(--main-transition);
  }
  @media (max-width: 767px) {
    .headerr .mega-menu {
      flex-direction: column;
      gap: 0;
      padding: 5px;
    }
  }
  .headerr .mega-menu .links {
    min-width: 250px;
    flex: 1;
  }
  .headerr .mega-menu .links li {
    position: relative;
  }
  .headerr .mega-menu .links li:not(:last-child) {
    border-bottom: 1px solid #e9e6e6;
  }
  @media (max-width: 767px) {
    .headerr .mega-menu .links:first-of-type li:last-child {
      border-bottom: 1px solid #e9e6e6;
    }
  }
  .headerr .mega-menu .links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fafafa;
    z-index: -1;
    transition: var(--main-transition);
  }
  .headerr .mega-menu .links li:hover::before {
    width: 100%;
  }
  .headerr .mega-menu .links li a {
    color: var(--main-color);
    padding: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
  }
  .headerr .mega-menu .links li a i {
    margin-right: 10px;
  }
  /* End headerr */
  /* Start Landing */
.landing {
    position: relative;
  }
  .landing::before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: -1;
    transform: skewY(-6deg);
    transform-origin: top left;
  }
  .landing .con {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-bottom: 120px;
  }
  .landing .text {
    flex: 1;
  }
  @media (max-width: 991px) {
    .landing .text {
      text-align: center;
    }
  }
  .landing .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
  }
  @media (max-width: 767px) {
    .landing .text h1 {
      font-size: 28px;
    }
  }
  .landing .text p {
    font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
  }
  @media (max-width: 991px) {
    .landing .text p {
      margin: 10px auto;
    }
  }
  @media (max-width: 767px) {
    .landing .text p {
      font-size: 18px;
    }
  }
  .landing .image img {
    position: relative;
    width: 600px;
    animation: up-and-down 5s linear infinite;
  }
  @media (max-width: 991px) {
    .landing .image {
      display: none;
    }
  }
  .go-down {
    color: var(--main-color);
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
  }
  .go-down:hover {
    color: var(--main-color-alt);
  }
  .go-down i {
    animation: bouncing 1.5s infinite;
  }
  /* End Landing */
  /* start Login */
  
  /* End Login */
  /* Start Animation */
@keyframes up-and-down {
    0%,
    100% {
      top: 0;
    }
    50% {
      top: -50px;
    }
  }
  @keyframes bouncing {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40%,
    60% {
      transform: translateY(-15px);
    }
  }
  @keyframes left-move {
    50% {
      left: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      left: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  @keyframes right-move {
    50% {
      right: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      right: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  @keyframes moving-arrow {
    100% {
      transform: translateX(10px);
    }
  }
  @keyframes flashing {
    0%,
    40% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      width: 200%;
      height: 200%;
    }
  }
  @keyframes change-background {
    0%,
    100% {
      background-image: url("../imgs/discount-background1.jpg");
    }
    50% {
      background-image: url("../imgs/discount-background2.jpg");
    }
  }
  /* End Animation */
  /*start search*/
    .nav-searche{
      position: relative;
    }
    .nav-searche input{
    padding: 4px;
    border: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    caret-color: var(--af-color);
    outline-offset: 0px;
    }
    
  /*end search*/

  /* Top Bar
================================================== */
.roww {
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  margin-right:-15px;
  margin-left:-15px;
  justify-content:space-between;
  align-items: center;
}
.bar {
  padding: 8px 0;
  background: #ebebeb;
  position: relative;
}

/* Top info */
ul.top-inf {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

ul.top-inf li {
  position: relative;
  line-height: 10px;
  display: inline-block;
  margin-left: 0;
  padding-right: 15px;
}

ul.top-inf li i {
  font-size: 18px;
  color: #979494;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.accueil{
  margin-right: 6px;
}

ul.top-inf li p.info-tex {
  margin: 0;
  line-height: normal;
  display: inline-block;
  flex-direction: column;
}
.top-annonces i {
  font-size: 14px;
  color: gold;
  padding-bottom: 20px;
}
/* Top social */
.top-sociale ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: -12px;
  text-align: right;
}
@media (max-width: 767px) {
  .roww{
    justify-content: center;
  }
  ul.top-sociale {
    margin-top:5px;
  }
  .afrah-logo, .go-down{
    display: none;
  }
 }
 ul.top-sociale li {
  display: inline-block;
  padding: 0;
}
ul.top-sociale li a {
  color: #2c2c2c;
  font-size: 14px;
  transition: 400ms;
  padding: 9px 12px;
}
ul.top-sociale li a:hover {
  color: #333;
}

/* Top bar border */
.bar-border {
  padding: 8px 20px 8px;
  border-bottom: 1px solid #ddd;
}

.bar-border ul.top-inf {
  color: #707070;
  font-weight: 400;
}

.bar-border .top-sociale li a {
  color: #7c7c7c;
}

.bar-border ul.top-inf li i {
  color: var(--af-color);
}
  
  /* start slide */
  .banner-carousel .banner-carousel-item {
    height: 700px;
    color: #fff;
    background-position: 50% 50%;
    background-size: cover;
  }
  @media (max-width: 991px) {
    .banner-carousel .banner-carousel-item {
      height: 550px;
    }
  }
  @media (max-width: 575px) {
    .banner-carousel .banner-carousel-item {
      height: 450px;
    }
  }
  
  .slider-content {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .slide-title-box {
    font-size: 16px;
    line-height: 39px;
    background: var(--af-color);
    color: #fff;
    display: inline-block;
    padding: 0 15px;
    margin: 0 0 10px;
  }
  
  .slide-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    color: #fff;
    margin: 20px 0 10px;
  }
  @media (max-width: 991px) {
    .slide-title {
      font-size: 22px;
    }
  }
  @media (max-width: 575px) {
    .slide-title {
      font-size: 16px;
    }
  }
  
  .slide-sub-title {
    font-style: normal;
    font-size: 60px;
    line-height: 58px;
    margin: 20px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
  }
  @media (max-width: 991px) {
    .slide-sub-title {
      font-size: 46px;
    }
  }
  @media (max-width: 575px) {
    .slide-sub-title {
      font-size: 30px;
      line-height: 30px;
    }
  }
  
  .slider-text {
    display: table;
    vertical-align: bottom;
    color: #fff;
    padding-left: 40%;
    width: 100%;
    padding-bottom: 0;
    padding-top: 20px;
  }
  
  .slider-text .slide-head {
    font-size: 36px;
    color: #0052a5;
    position: relative;
  }
  
  .slider-img {
    display: block;
    position: absolute;
    top: -80px;
    left: 20%;
    width: 314px;
    max-height: 100%;
  }
  
  .slider-img img {
    display: block;
    position: relative;
    max-height: 100%;
    width: auto;
  }
  
  .slider.btn {
    margin: 15px 5px 0;
    border: 2px solid transparent;
  }
  @media (max-width: 575px) {
    .slider.btn {
      font-size: 12px;
    }
  }
  
  .slider.border {
    background: none;
    border: 2px solid var(--af-color) !important;
  }
  
  .slider.border:hover {
    background: var(--af-color);
    border: 2px solid transparent;
  }
  
  /* Carousel control */
  .banner-carousel .carousel-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    transform: translateY(-50%);
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    text-shadow: none;
    transition: all 0.25s ease;
    padding: 0;
    outline: 0;
    border: 0;
  }
  @media (max-width: 575px) {
    .banner-carousel .carousel-control {
      display: none !important;
    }
  }
  
  .banner-carousel .slick-dots {
    opacity: 0;
    filter: alpha(opacity=0);
    bottom: 60px;
  }
  
  .slick-dots li button::before {
    font-size: 12px;
  }
  .slick-dots li button:hover:before, .slick-dots .slick-dots li button:focus:before,
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--af-color);
  }
  
  .slick-slide {
    outline: 0;
  }
  
  .banner-carousel:hover .carousel-control,
  .banner-carousel:hover .carousel-control,
  .banner-carousel:hover .slick-dots {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  
  .banner-carousel .carousel-control.left {
    left: 20px;
  }
  
  .banner-carousel .carousel-control.right {
    right: 20px;
  }
  
  .banner-carousel .carousel-control i {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 58px;
    width: 60px;
    height: 60px;
    font-size: 22px;
    border-radius: 0;
    transition: all 500ms ease;
  }
  
  .banner-carousel .carousel-control i:hover {
    background: var(--af-color);
    color: #fff;
  }
  /* Start categorie */
.categorie {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.categorie .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.categorie .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition), box-shadow var(--main-transition);
}
.categorie .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.categorie .box img {
  width: 100%;
  max-width: 100%;
}
.categorie .box .content {
  padding: 20px;
}
.categorie .box .content h3 {
  margin: 0;
}
.categorie .box .content p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #777;
}
.categorie .box .info {
  padding: 20px;
  border-top: 1px solid #e6e6e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categorie .box .info a {
  color: var(--main-color);
  font-weight: bold;
}
.categorie .box .info i {
  color: var(--main-color);
}
.categorie .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}
/* End categorie */

/* Start titre section */
.special-heading {
  color: #ddd;
  font-family: "Work Sans", sans-serif;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}
.special-heading + p {
  margin: -30px 0 40px;
  font-size: 20px;
  text-align: center;
  color: #797979;
  letter-spacing: 1px;
}
.top-annonces-txt{
  font-size: 80px;
}
@media (max-width: 767px) {
  .special-heading {
    font-size: 60px;
  }
  .special-heading + p {
    margin-top: -20px;
    font-size: 15px;
    letter-spacing: 0px;
  }
}
/* End titre section */
  /*-- Animation */
  .banner-carousel [data-animation-in] {
    opacity: 0;
  }
  
  /* slick Box slider */
  .box-slider-content {
    top: 50%;
    padding: 0;
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
  }
  @media (max-width: 767px) {
    .box-slider-content {
      top: auto;
      transform: translateY(0);
      left: 20px;
      bottom: 20px;
      width: calc(100% - 40px);
    }
  }
  
  .box-slider-text {
    background: #111;
    background: rgba(0, 0, 0, 0.65);
    display: inline-block;
    padding: 20px 30px;
    max-width: 650px;
  }
  
  .box-slide-title {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    color: #fff;
  }
  @media (max-width: 767px) {
    .box-slide-title {
      font-size: 16px;
    }
  }
  
  .box-slide-sub-title {
    font-size: 36px;
    margin: 8px 0 10px;
    color: #fff;
  }
  @media (max-width: 767px) {
    .box-slide-sub-title {
      font-size: 26px;
    }
  }
  
  .box-slide-description {
    color: #fff;
  }
  @media (max-width: 767px) {
    .box-slide-description {
      font-size: 15px;
    }
  }
  
  .box-slider-text .btn {
    padding: 10px 20px;
  }
  
  .box-slide.owl-theme .owl-controls {
    margin: -20px;
  }
/* end slide */
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
/*- Footer common 
.footer {
  background-color: #0d0d0d;
  color: #999;
}
.copyright {
  background: #303030;
  color: #ffffff;
  padding: 25px 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 17px;
}
.copyright-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.copyright-info a {
  color: white;
  }
.copyright-info a:hover {
color: var(--main-color-alt);
}
@media (max-width: 767px) {
  .copyright-info {
    font-weight: 400;
    font-size: 13px;
  }
}*/
/*** About ***/
.about-text .text-primary{
  font-size: 35px;
}
.about-text .text-primary h1{
  font-size: 30px;
}
@media (min-width: 992px) {
  .container.about {
      max-width: 100% !important;
  }

  .about-text  {
      padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .about-text  {
      padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .about-text  {
      padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}
/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  color: #9B9B9B;
  border: 1px solid #9B9B9B;
  border-radius: 38px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #9B9B9B;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #FFFFFF;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright .row{
  align-items: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}
/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #FFFFFF;
  background-color: var(--main-color);
  outline: none;
  border: 1px solid white;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
      max-width: 100% !important;
  }

  .contact-text  {
      padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text  {
      padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text  {
      padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, .1),
   rgba(0, 0, 0, .1)), 
   url(../imgs/cameraman.webp) center center no-repeat;
  background-size: cover;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}
/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
      max-width: 100% !important;
  }

  .feature-text  {
      padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text  {
      padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text  {
      padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}
/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
  font-size: 20px;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-img {
  position: relative;
}

.portfolio-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #1a2a367e;;
  transition: .5s;
}

.portfolio-item:hover .portfolio-img::before {
  height: 100%;
  
}

.portfolio-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition-delay: .3s;
}
.compteur{
  background-color: aliceblue;
}

/* start login page*/
.logi{
  background:url(../imgs/ttt.jpg) no-repeat , url(../imgs/ttt2.png) right bottom no-repeat;
}
.login-wrap{
	width:100%;
	margin:auto;
	max-width:525px;
	min-height:970px;
	position:relative;
	background: url(../imgs/mariage.jpg) no-repeat center;
	box-shadow:0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19);
}
.login-html{
	width:100%;
	height:100%;
	position:absolute;
	padding:90px 70px 50px 70px;
	background:rgba(40,57,101,.9);
}

.login-html .sign-up-htm{
	top:0px;
	left:0;
	right:0;
	bottom:0;
	position:absolute;
	transform:rotateY(180deg);
	backface-visibility:hidden;
	transition:all .4s linear;
}
.login-html .sign-in-htm{
	top:30px;
	left:0;
	right:0;
	bottom:0;
	position:absolute;
	transform:rotateY(180deg);
	backface-visibility:hidden;
	transition:all .4s linear;
}
.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check{
	display:none;
}
.login-html .tab,
.login-form .group .label,
.login-form .group .button{
	text-transform:uppercase;
}
.login-html .tab{
	font-size:22px;
	margin-right:15px;
	padding-bottom:5px;
	margin:0 15px 10px 0;
	display:inline-block;
	border-bottom:2px solid transparent;
  cursor: pointer;
}
.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab{
	color:#fff;
	border-color:#1161ee;
}
.login-form{
	min-height:345px;
	position:relative;
	perspective:1000px;
	transform-style:preserve-3d;
}
.login-form .group{
	margin-bottom:15px;
}
.login-form .group .label,
.login-form .group .input,
.login-form .group .button{
	width:100%;
	color:#fff;
	display:block;
}
.login-form .group .input,
.login-form .group .button{
	border:none;
	padding:15px 20px;
	border-radius:25px;
	background:rgba(255,255,255,.1);
}
.login-form .group input[data-type="password"]{
	-webkit-text-security:circle;
}
.login-form .group .label{
	color:#aaa;
	font-size:12px;
}
.login-form .group .button{
	background:#1161ee;
}
.login-form .group label .icon{
	width:15px;
	height:15px;
	border-radius:2px;
	position:relative;
	display:inline-block;
	background:rgba(255,255,255,.1);
}
.login-form .group label .icon:before,
.login-form .group label .icon:after{
	content:'';
	width:10px;
	height:2px;
	background:#fff;
	position:absolute;
	transition:all .2s ease-in-out 0s;
}
.login-form .group label .icon:before{
	left:3px;
	width:5px;
	bottom:6px;
	transform:scale(0) rotate(0);
}
.login-form .group label .icon:after{
	top:6px;
	right:0;
	transform:scale(0) rotate(0);
}
.login-form .group .check:checked + label{
	color:#fff;
}
.login-form .group .check:checked + label .icon{
	background:#1161ee;
}
.login-form .group .check:checked + label .icon:before{
	transform:scale(1) rotate(45deg);
}
.login-form .group .check:checked + label .icon:after{
	transform:scale(1) rotate(-45deg);
}
.login-html .sign-in:checked + .tab + .sign-up + .tab + .login-form .sign-in-htm{
	transform:rotate(0);
}
.login-html .sign-up:checked + .tab + .login-form .sign-up-htm{
	transform:rotate(0);
}

.hr{
	height:2px;
	margin:25px 0 25px 0;
	background:rgba(255,255,255,.2);
}
.foot-lnk{
	text-align:center;
}
.foot-lnk label:hover{
  cursor: pointer;
  color: white;
}
.membre{
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  top: 5%;
  right: 7%;
  color: white;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.membre i{
margin-left: 4px;
}
.lien-active{
font-size: 20px;
}
.recherche{
  position: relative;
    display: flex;
    width: 100%;
    color: #5f5f5f;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}
.recherche i {
  position: absolute;
    right: 50px;
    top: 5px;
    color: black;
    font-size: 24px;
    border-radius: 50%;
    background-color: #e1a91b;
    padding: 8px;
    border: 2px solid black;
}
@media (max-width: 767px) {
  .recherche {
    font-size: 22px;
  }
  .recherche i {
    font-size: 20px;
    right: 24px;
  }
}
.icons{
  display: flex;
  align-items: center;
}
.icons .notification{
  position: relative;
}
.icons .notification i{
color: #111;
}

.badge-notification {
  position: relative;
  top: -8px;
  right: 4px;
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
}
.badge-notificatio {
  position: relative;
  top: -8px;
  right: 6px;
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}
.icons img {
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background-color: transparent;
  border: 2.3px solid #19a3ff;
  border-radius: 50%;
}
.headerr .con .fil {
  color: black;
  font-size: 20px;
  border-radius: 50%;
  background-color: #e1a91b;
  padding: 7px;
  border: 1px solid black;
}
@media (max-width: 767px) {
  .headerr .con .fil {
    font-size: 20px;
    right: 24px;
  }
}

/*start menu navbar*/
.na .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 20px;
  font-weight: 600;
  outline: none;
}

.na .nav-link:hover,
.na .nav-link.active {
  color: var(--main-color-alt);
}

@media (max-width: 991.98px) {
  .na .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .na {
      border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      right: 1px;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}
.untree_co-section {
  padding: 70px 0; 
}
.media-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px; }
  .media-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(26, 55, 77, 0.8);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .media-thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease; }
  .media-thumb .media-text {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    margin-top: 20px; }
    .media-thumb .media-text h3 {
      font-size: 1rem;
      font-weight: 900;
      color: #1A374D;
      margin: 0;
      padding: 0; }
    .media-thumb .media-text .location {
      font-size: .8rem;
      color: rgba(26, 55, 77, 0.5); }
    .media-thumb .media-text h3, .media-thumb .media-text .location {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
  .media-thumb:hover {
    z-index: 3; }
    .media-thumb:hover h3 {
      color: #ffffff; }
    .media-thumb:hover .location {
      color: rgba(255, 255, 255, 0.5); }
    .media-thumb:hover img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .media-thumb:hover:after {
      opacity: 1;
      visibility: visible; }
    .media-thumb:hover .media-text {
      -webkit-transition-delay: .2s;
      -o-transition-delay: .2s;
      transition-delay: .2s;
      opacity: 1;
      visibility: visible; }
  .section-title {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}
.section-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1A374D;
}
.section-title.text-center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media-1 {
  text-align: left; }
  .media-1 img {
    border-radius: 20px; }
  .media-1 .loc .icon-room {
    position: relative; }
    .media-1 .loc .icon-room:after {
      content: "";
      width: 24px;
      height: 24px;
      background: rgba(26, 55, 77, 0.1);
      position: absolute;
      left: 50%;
      top: 50%;
      border-radius: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .media-1 .deal {
    font-size: 16px;
    margin-bottom: 20px;
    display: block; }
  .media-1 h3 {
    font-size: 20px; }
    .media-1 h3 a {
      color: #000000; }
  .media-1 .price {
    font-size: 15px;
    color: #1A374D;
    font-weight: 700;
    position: relative;
    top: -2px; }
    .media-1 .price sup {
      font-weight: 400;
      font-size: 16px;
      top: -7px; }

.owl-3-slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .owl-3-slider .owl-nav .owl-prev, .owl-3-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    @media (max-width: 767.98px) {
      .owl-3-slider .owl-nav .owl-prev, .owl-3-slider .owl-nav .owl-next {
        display: none; } }
  .owl-3-slider .owl-nav .owl-prev {
    left: -50px; }
    .owl-3-slider .owl-nav .owl-prev:hover {
      left: -65px;
      color: #1A374D; }
  .owl-3-slider .owl-nav .owl-next {
    right: -50px; }
    .owl-3-slider .owl-nav .owl-next:hover {
      color: #1A374D;
      right: -65px; }
    .owl-3-slider .owl-nav .owl-next span {
      display: inline-block;
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg); }

.owl-3-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible; }
.owl-single.dots-absolute .owl-dots, .owl-carousel.dots-absolute .owl-dots {
  bottom: 40px; }
  .owl-single.dots-absolute .owl-dots .owl-dot span, .owl-carousel.dots-absolute .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5); }

.owl-single .owl-dots, .owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .owl-single .owl-dots .owl-dot, .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 5px; }
    .owl-single .owl-dots .owl-dot span, .owl-carousel .owl-dots .owl-dot span {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2); }
    .owl-single .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot.active span {
      background: #1A374D; }

.owl-single.no-dots .owl-dots, .owl-carousel.no-dots .owl-dots {
  display: none; }

.owl-single.no-nav .owl-nav, .owl-carousel.no-nav .owl-nav {
  display: none; }
.owl-3-slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.item a {
  color: #1A374D;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}


/* Start Content */
.content {
  overflow: hidden;
  width: 800px;
}
.head .search::before {
  font-family: var(--fa-style-family-classic);
  content: "\f002";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--grey-color);
}
.head .search input {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-left: 5px;
  padding-left: 30px;
  width: 160px;
  transition: width 0.3s;
}
.head .search input:focus {
  width: 200px;
}
.head .search input:focus::placeholder {
  opacity: 0;
}

.head .icons img {
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background-color: #eee;
  border: 2.3px solid #00d307;
  border-radius: 50%;
}
.page{
  justify-content: center;
  align-items: center;
}
.page h1 {
  margin: 20px 20px 40px;
}
.page h1::before,
.page h1::after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page h1::before {
  background-color: white;
  width: 120px;
}
.page h1::after {
  background-color: black;
  width: 40px;
}
.wrapper {
  
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
  .content {
    width: 100%;
}
.untree_co-section {
  padding: 26px 0; 
}
.untree_co-section .container .row {
  margin-bottom: 10px !important;
}
}
/* End Content */

/* Start Latest News */
.latest-news .news-row:not(:last-of-type) {
  margin-bottom: 25px;
  padding-bottom: 2px;
  border-bottom: 3px solid #9b9b9b8c;
}
.latest-news .news-row img {
  width: 200px;
  border-radius: 6px;
  margin-right: 15px;
}
.latest-news .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.latest-news .info .des{
  display: flex;
  align-items: baseline;
}
.latest-news .info .des p{
  margin-left: 5px;
}
.latest-news .info .des i{
  margin-left: 15px;
    font-size: 26px;
}
.latest-news .info .des button{
  position: relative;
  left: 100%;
  background-color: #9b9b9b;
  color: white;
  padding: 3px 8px;
}
.latest-news .info .des button.ann{
  left: -100% !important;
}
.latest-news .info .des button:hover{
  background-color: #565e64;
}
.latest-news .info .des .fa-trash-can{
  position: relative;
  left: -3px;
  color: #9b9b9b;
  font-size: 18px;
  display: none;
}
.latest-news .info .des i.fa-check{
  color: #01f101;
}
.latest-news .info .des i.fa-xmark{
  color: red;
}
.latest-news .info .des i.fa-hourglass-half{
  color: gold;
}
.latest-news .info h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
/*.latest-news .info a {
  color: var(--main-color);
  font-weight: bold;
  position: relative;
    
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .latest-news .info a i.fas {
    font-size: 17px;
    margin-left: 7px;
  }
  .latest-news .info a i {
    animation: moving-arrow 0.6s linear infinite;
    
  }*/
.latest-news h2 {
margin-bottom: 30px;
text-align: center;
}
/*@media (min-width: 1101px) {
  .info .voir {
    position: relative;
    left: 100%;
  }
}
@media (max-width: 1100px) {
  .info .voir {
    position: relative;
    left: 50%;
  }
}*/
@media (max-width: 767px) {
  .latest-news .news-row {
    display: block;
  }
  .latest-news .news-row .label {
    margin: 10px auto;
    width: fit-content;
  }
  .latest-news .info .des button{
    display: none;
  }
  .latest-news .info .des .fa-trash-can{
    display: block;
    }
}
/* End Latest News */
