/*
Theme Name: safozi Child
Theme URI: http://underscores.me/
Template: safozi
Author: Lezarts Digital
Author URI: http://underscores.me/
Description: Description
Tags: custom-background,custom-logo,custom-menu,featured-images,threaded-comments,translation-ready
Version: 1.0.0.1729509892
Updated: 2024-10-21 11:24:52

*/

.glass-css{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.36);
    filter: drop-shadow(15px 15px 40px rgba(0, 0, 0, 0.16));
    /* Note: currently only Safari supports backdrop-filter */
    backdrop-filter: blur(24px);
    --webkit-backdrop-filter: blur(24px);
    background-color: rgba(255, 255, 255, 0.06);
    
}
.custom-background-header {
    /* background: url('/wp-content/uploads/2024/10/cover-header.jpg') no-repeat center center; */
    background-size: cover;
    height: 400px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -170px;
}

.custom-background-header .overlay {
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: 90px;
}

.custom-background-header .post-title {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 40px;
    line-height: 30px;
    text-align: center;
    color: #00ade6;
    text-transform: uppercase;   

}

.custom-background-header .post-description {
    font-family: 'Objectivity';
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
}

.rtmega-menu-area .desktop-menu-area ul.rtmega-megamenu .menu-item-has-children .sub-menu{
    background: transparent !important;
}
.carosl-carousel .carosl-item {
    padding: 20px;
  }
  .carosl-carousel .carosl-col-title {
    padding: 20px;
    border-radius: 10px;
  }
  .carosl-carousel .carosl-col-image img {
    border-radius: 10px;
    width: 100%;
  }
  .carosl-prev,
  .carosl-next {
    font-size: 1.5rem;
    color: #000;
  }
  .rtmega-menu-area ul.rtmega-megamenu > .menu-item {
    padding-left: 5px;
    padding-right: 5px;
}

    /* Custom CSS */
    .testo-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .testo-img {
      width: 50px !important;
      height: 50px !important;
      object-fit: cover;
    }

    .stars .star {
      color: #ffc107 !important; /* Gold color for stars */
      font-size: 1.2rem;
    }

    .testo-text {
      font-size: 0.95rem;
      color: #555;
    }

    .testo-author {
      font-weight: bold;
      color: #1d428a; /* Preferred active color */
    }

    .testo-role {
      font-size: 0.85rem;
      color: #707070; /* Secondary text color */
    }
/**************************************************************************/
        /* Custom Blog Styles */
        .blog-card {
          margin-bottom: 20px;
          border: 1px solid #ddd;
          border-radius: 8px;
          overflow: hidden;
          transition: transform 0.2s;
      }
      .blog-card:hover {
          transform: translateY(-5px);
      }
      .blog-card img {
          width: 100%;
          height: 200px;
          object-fit: cover;
      }
      .blog-card .blog-body {
          padding: 15px;
      }
      .blog-card .blog-title {
        font-family: "Nunito";
        font-size: 22px;
        color: #091932;
        font-weight: 600;
        text-transform: uppercase;
          }
      .blog-card .blog-text {
        font-family: "Objectivity", Sans-serif;
        font-size: 16px;
        color: #09193296;
      }
      .blog-card .blog-date {
        font-family: "Nunito";
        font-size: 16px;
          margin-bottom: 10px;
      }
      .btn-lezrt {
        background-color: #005DCF;
        font-family: "Nunito", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 8px 8px 8px 8px;
        box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.5);
        padding: 7px 25px 7px 25px;
        color: #ffff;
      }
      .btn-lezrt:hover {
          background-color: #fff; /* Darker green on hover */
          color: #005DCF !important;
          border: 1px solid #005DCF !important;
      }
      .btn-lezrt:visited {
        color: #fff;
    }
      /* Recent Articles Styles */
      .recent-articles {
          background-color: #f8f9fa;
          padding: 20px;
          border-radius: 8px;
      }
      .recent-articles h4 {
          margin-bottom: 15px;
          font-size: 1.5rem;
      }
      .recent-article-item {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
      }
      .recent-article-item img {
          width: 80px;
          height: 80px;
          object-fit: cover;
          border-radius: 8px;
          margin-right: 15px;
      }
      .recent-article-item .article-info {
          flex: 1;
      }
      .recent-article-item .article-title {
          font-size: 1rem;
          margin: 0;
          color: #333;
      }
      .recent-article-item .article-date {
          font-size: 0.875rem;
          color: #777;
          margin-top: 5px;
      }
      .recent-article-item a {
          text-decoration: none;
          color: inherit;
      }
      .recent-article-item a:hover .article-title {
          color: #007bff;
      }

      /* Dark Mode Styles */
      .dark-mode {
          background-color: #121212;
          color: #e0e0e0;
      }
      .dark-mode .blog-card {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
      }
      .dark-mode .blog-card .blog-title,
      .dark-mode .blog-card .blog-text,
      .dark-mode .blog-card .blog-date {
          color: #e0e0e0;
      }
      .dark-mode .recent-articles {
              /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
      }
      .dark-mode .recent-articles h4 {
          color: #e0e0e0;
      }
      .dark-mode .recent-article-item .article-title,
      .dark-mode .recent-article-item .article-date {
          color: #e0e0e0;
      }
      .dark-mode .btn-lezrt {
          background-color: #34a853;
      }
      .dark-mode .btn-lezrt:hover {
          background-color: #2d9147;
      }
      .pagination {
        text-align: center;
        margin-top: 20px;
        display: flex ;
            padding-left: 0;
            list-style: none;
            justify-content: center;
   
    }
    .pagination a, .pagination span {
        padding: 5px 10px;
        margin: 0 2px;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #333;
        border-radius: 10px;

    }
    .pagination .current {
        background-color: #005DCF;
        color: #fff;
        border-color: #005DCF;
    }
    .dark-mode     .pagination a, .pagination span {
      padding: 5px 10px;
      margin: 0 2px;
      border: 1px solid #ddd;
      text-decoration: none;
      color: #fff;
      border-radius: 10px;

  }

  /***************************/
          /* Custom Blog Styles */
          .sous-blog-lez .blog-card {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .sous-blog-lez  .blog-card:hover {
            transform: translateY(-5px);
        }
        .sous-blog-lez  .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .sous-blog-lez .blog-card .blog-body {
            padding: 15px;
        }
        .sous-blog-lez  .blog-card .blog-title {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #333;
        }
        .sous-blog-lez .blog-card .blog-text {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 10px;
        }
        .sous-blog-lez .blog-card .blog-date {
            font-size: 0.875rem;
            color: #777;
            margin-bottom: 10px;
        }
        .sous-blog-lez .btn-lezrt {
            background-color: #28a745; /* Green color */
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            transition: background-color 0.2s;
        }
        .sous-blog-lez  .btn-lezrt:hover {
            background-color: #218838; /* Darker green on hover */
        }

        /* Recent Articles Styles */
        .recent-articles {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }
        .recent-articles h4 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .recent-article-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .recent-article-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
        }
        .recent-article-item .article-info {
            flex: 1;
        }
        .recent-article-item .article-title {
            font-size: 1rem;
            margin: 0;
            color: #333;
        }
        .recent-article-item .article-date {
            font-size: 0.875rem;
            color: #777;
            margin-top: 5px;
        }
        .recent-article-item a {
            text-decoration: none;
            color: inherit;
        }
        .recent-article-item a:hover .article-title {
            color: #007bff;
        }

        /* Article Content Styles */

        .article-content img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .article-content h1 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #333;
        }
        .article-content .article-date {
            font-size: 0.875rem;
            color: #777;
            margin-bottom: 20px;
        }
        .article-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }
        .article-content .next-article {
            margin-top: 30px;
            font-size: 1rem;
        }
        .article-content .next-article a {
            color: #007bff;
            text-decoration: none;
        }
        .article-content .next-article a:hover {
            text-decoration: underline;
        }

        /* Suggested Articles with Owl Carousel */
        .digital-suggestions {
            margin-top: 40px;
            padding: 20px;
            border-radius: 8px;
        }
        .digital-suggestions h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
        }
        .article-owl-carousel .item {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            margin: 10px;
        }
        .article-owl-carousel .item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .article-owl-carousel .item h5 {
            font-size: 1rem;
            margin: 0;
            color: #333;
        }
        .article-owl-carousel .item .article-date {
            font-size: 0.875rem;
            color: #777;
            margin-top: 5px;
        }

        /* Dark Mode Styles */
        .dark-mode {
            background-color: #091932; /* Updated dark mode background */
            color: #e0e0e0;
        }

        .dark-mode .blog-card .blog-title,
        .dark-mode .blog-card .blog-text,
        .dark-mode .blog-card .blog-date {
            color: #e0e0e0;
        }

        .dark-mode .btn-lezrt {
            background-color: #34a853;
        }
        .dark-mode .btn-lezrt:hover {
            background-color: #2d9147;
        }
        .dark-mode .article-content h1,
        .dark-mode .article-content p,
        .dark-mode .article-content .article-date {
            color: #e0e0e0;
        }
        .dark-mode .article-content .next-article a {
            color: #4dabf7;
        }

        .dark-mode .digital-suggestions h4 {
            color: #ffff;
        }
.dark-mode .maps-css img {
	  filter: invert(100%) hue-rotate(180deg) !important;

}
        .dark-mode .article-owl-carousel .item {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: none;
        }
        .dark-mode .article-owl-carousel .item h5 {
            color: #e0e0e0;
        }
        .dark-mode .article-owl-carousel .item .article-date {
            color: #bbb;
        }

        /* Custom Container Styles */
        .sous-blog-lez {
            max-width: 1200px; /* Adjust the max-width as needed */
            margin: 0 auto; /* Center the container */
            padding: 20px; /* Add some padding */
            border-radius: 12px; /* Rounded corners */
        }

        /* Dark Mode Styles for .sous-blog-lez */
        .dark-mode .sous-blog-lez {
            border: 1px solid #333; /* Dark border */
        }
        /* Header Section Styles */
        .header-section {
            background-size: cover;
            background-position: center;
            height: 415px;
            display: flex
        ;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 20px;
            margin-top: -160px;
            padding-bottom: 100px;
        }
        

        .header-title {
            font-family: "Nunito";
            font-size: 50px;
            font-weight: 700;
            color: #00ADE6;

        }
        
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background-image: url('/wp-content/uploads/2024/10/back-color.png'); /* Replace with your image URL */
            background-position: top;
            position: relative;
        }

        /* Create the overlay */

.e-n-tabs-heading {

  background: #fff;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.16);
      width: fit-content;
    align-self: center;
    padding: 5px;
    border-radius: 50px;
}
.testo-card .card-body {
    padding: 0px !important;
}
.dark-mode  #splide01-list .domain-card h4 {
    color: #a2c617 !important;
}
.dark-mode .price-slide .btn-reserve{
color: #fff !important;
    border: 1px solid #FFf !important;
}