/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
}


/* ===== Colours ===== */
:root{
    --body-color: #E4E9F7;
    --nav-color: #022425;
    --side-nav: #010718;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --footer-col-p:rgb(170 178 166);
    --footer-col-a:rgb(170 178 166);
    --footer-copy-a:rgb(170 178 166);
}
a{
  text-decoration: none;
  color: inherit;
}
a:hover{
      color: inherit;
}
body{
    height: 100vh;
    min-width: 320px;
    background-color: var(--body-color);
    overflow-x: hidden;
}

body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --footer-col-p:#fff;
    --footer-col-a:#fff;
    --footer-copy-a:#fff;
}
ul{
  list-style: none;
  padding: 0;
}
.sec-box{
    max-width: 1200px;
    margin: auto;
}
.section-bg
{
    background-image: url(../../assets/images/back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.section-padding{
    padding: 50px 20px;
}
ul{
    margin: 0;
}
.justify-center{
    justify-content: center;
}
.bg-w .title-div span {
     color: #022425;
}
.swiper-button-next, .swiper-button-prev{
    color: #fff !important;
}
.gold-color{
  color: #E1A949;
}
.mt-30{
  margin-top: 30px;
}
::-webkit-scrollbar {
  width: 5px;
}


/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/* ========== floating ============  */
.floating{
  position: fixed;
  width: 50px;
  z-index: 100;
  transition: all 0.3s linear;
  /* box-shadow: 2px 2px 8px 0px rgba(0,0,0,.4); */
  top: 50%;
  transform: translateY(-50%);
}

.floating li{
  height: 60px;
  position:relative;

}

.floating li a{
  color: white;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 60px;
  padding-left:25%;
  border-bottom: 1px solid rgba(0,0,0,.4);
  transition: all .3s linear;
}
  .floating li:nth-child(1) a{
  background: #E1A949;
}
  .floating li:nth-child(2) a{
  background: #c39341;
}
  .floating li:nth-child(3) a{
  background: #E1A949;
}
  .floating li:nth-child(4) a{
  background: #c39341;
}

  .floating li a i{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 27px;
}
.floating ul li a span{
  display: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.floating a:hover {
  z-index:1;
  width: 200px;
}

.floating ul li:hover a span{
  padding-left: 30%;
  display: block;
}
/* ========== floating ============  */

/* --- section title ----  */
.title-div{
    text-align: center;
    width: 100%;
    padding: 40px 10px;
    width: fit-content;
    margin: auto;
    position: relative;
    z-index: 0;
}
.title-div span{
    background: none;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 86px;
    letter-spacing: 10px;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: -13px;
    opacity: 0.1;
 
}
.section-title{
    width: fit-content;
    margin:10px auto 10px auto;
    font-weight: 700;
    font-size: 38px;
    text-transform: uppercase;
    color: #E1A949;
    z-index: 20;
    -webkit-animation: breathing 5s ease-out infinite normal;
    animation: breathing 5s ease-out infinite normal;
}




@-webkit-keyframes breathing {
    0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  
    25% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    60% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  
    100% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  
  @keyframes breathing {
    0% {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      transform: scale(0.9);
    }
  
    25% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
  
    60% {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      transform: scale(0.9);
    }
  
    100% {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  
/* --- section title ----  */
nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
}

body.dark nav{
    border: 1px solid #393838;
}

nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1200px;
    width: 100%;
    background-color: var(--nav-color);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}
nav .nav-bar .logo {
width: 260px;
}
nav .nav-bar .logo img{
  width: 100%;
  height: auto;
  transform: translateY(-4px);
}
.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}
.dropdown-menu{
  padding: 0;
}
.dropdown-menu li{
  margin: 5px 0 !important;
  border-bottom: 1px solid #d4cdcd6e;
  padding: 5px 10px;
}
.dropdown-menu li:last-child{
  border-bottom: none;
}
.dropdown-item:focus, .dropdown-item:hover{
  color: #103019 !important;
  background-color: transparent;
  font-weight: 600;
}
.dropdown-menu li a{
padding: 0;
margin-top: 0 !important;
color: #333 !important;
}

.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: auto
    ;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

.searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}

.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}

.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}

.searchBox{
    position: relative;
}

.searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
}

.search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}

body.dark .search-field input{
    color: var(--text-color);
}

.search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

body.dark .search-field i{
    color: var(--text-color);
}
.whatsapp-div{
  height: auto;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.whatsapp-div a{
  display: flex;
  text-decoration: none;
}
.whatsapp-div i{
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}


/* --- header end   ---  */


.showcase
{
  position: relative;

  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content:center;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #04552f36;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
  text-align: center;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px auto;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}




/* ----ceo card ---  */
.card-ceo {
    max-width: 991px;
    min-height: 230px;
    background: #f5f5f5;
    padding: 2rem 1.5rem;
    transition: box-shadow .3s ease, transform .2s ease;
    margin: auto;
    border-radius: 5px;
}
 .cardimg{
    width: 50%;
 }  
   .card-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    transition: transform .2s ease, opacity .2s ease;
   }
   
   /*Image*/
   .card-avatar {
   width: 90%;
   height: auto;
   overflow: hidden;
    background: linear-gradient(to top, #f1e1c1 0%, #fcbc97 100%);
    transition: transform .2s ease;
    margin-bottom: 1rem;
   }   .card-avatar img{
width: 100%;
height: 100%;
object-fit: cover;
   }
.card-message{
    font-size: 13px;
    text-align: left;
    margin-top: 10px;
}
   .card-content{
    width: 50%;
   }
   
   /*Card footer*/
   .card-social {
    transform: translateY(100%);
    display: flex;
    gap: 20px;
    padding: 0;
    justify-content: left;
    width: 100%;
    transition: transform .2s ease, opacity .2s ease;
   }
   
   .card-social__item {
    list-style: none;
   }
   
   .card-social__item svg, .card-social__item i {
    display: block;
    font-size: 22px;
    height: 18px;
    width: 18px;
    fill: #515F65;
  color: #515F65;
    cursor: pointer;
    transition: fill 0.2s ease ,transform 0.2s ease;
   }
   
   /*Text*/
   .card-title {
    color: #333;
    font-size: 2.2em;
    font-weight: 600;
    line-height: 3.5rem;
   }
   
   .card-subtitle {
    color: #859ba8;
    font-size: 0.8em;
   }
   
   /*Hover*/
   .card-ceo:hover {
    box-shadow: 0 8px 50px #23232333;
   }

   
   /* .card-ceo:hover .card-info {
    transform: translateY(-5%);
   } */
   
   /* .card-ceo:hover .card-social {
    transform: translateY(100%);
    opacity: 1;
   }
    */
   .card-social__item svg:hover {
    fill: #232323;
    transform: scale(1.1);
   }
/*    
   .card-avatar:hover {
    transform: scale(1.1);
   } */
/* ----ceo card ---  */

/* ------- commercial projects ------  */
.housing-section .project-box{
  background: transparent;
  width: 100%;
box-shadow: none;
color: #fff;
}
.housing-section .project-name{
  font-size: 54px;
}
.housing-section .projectsslider{
  padding: 0;
}
.housing-section  .swiper-button-next.swiper-button-disabled,.housing-section  .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}
.housing-section .swiper-button-lock{
  display: block;
}
.housing-btns{
  display: flex;
  align-items: center;
  gap: 16px;
}

.housing-btns a{
background: #fff;
color: #333;
padding: 8px 24px;
margin: 16px 0;
border: 1px solid #fff;
transition: .2s 
}
.housing-btns a:hover{
  background: transparent;
  color: #fff;
}
.housing-btns a.read{
  background: transparent;
  color: #fff;
}
.housing-btns a.read:hover{
  background: #fff;
  color: #333;
}
.projectimageslider{
  position: relative;
  overflow: hidden;
}
.commercial-projects{
    padding: 0 10px 40px 0;
}

.projectsslider{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
    overflow: hidden;
}
.project-box{
    display: flex;
    width: 90%;
    background: #fff;
    height: 100%;
    margin: auto;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 2px 6px 2px;
    border-radius: 10px;
    overflow: hidden;
    background-image: url(../../assets/images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.project-image{
    width: 100%;
    height: 400px;
    width: 50%;
    padding: 25px 15px;
}
.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.project-content{
    padding: 25px 15px; 
    width: 50%;
}
.project-name{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase
}
.project-slogan{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 10px 0;
}
.project-desc{
    font-size: 14px ;
    text-transform: capitalize;
    font-weight: 400;
    margin: 10px 0;
}
.starting-value{
    font-size: 22px;
    font-weight: 600;
}
.starting-value strong{
    color: var(--yellow-color);
}
.projectsslider .swiper-.read-more-next,  .projectsslider .swiper-.read-more-prev{
    color: #fff !important;
   
    padding: 5px !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: var(--yellow-color) !important;

    padding: 10px !important;
    /* transform: translateY(-50%); */
  }

  .projectsslider  .swiper-.read-more-next:after,  .projectsslider .swiper-.read-more-prev:after{
    font-size: 24px !important;
}

.see-btn {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge #022425;
    outline: none;
    background-color: transparent;
    color: #022425;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
        display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .see-btn::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #f7f7f9;
    transition: 0.5s;
    transform-origin: center;
  }
  
  .see-btn::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #f7f7f9;
    transition: 0.5s;
  }
  
  .see-btn:hover::before, .see-btn:hover::after {
    transform: scale(0)
  }
  
  .see-btn:hover {
    box-shadow: inset 0px 0px 25px #E1A949;
  }
/* ---- project slider ---  */
/* ----- societies    */
.societies-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.society{
    max-width: 340px;
    border-radius: 5px;
    margin: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.society-content{
    padding: 15px 10px;
}
.society-image{
    width: 100%;
    height: 220px;
}
.society-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.society-desc{
    margin: 15px 0;
    font-size: 14px;    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 63px;
}
.society-name{
    font-size: 26px;
    font-weight: 800;
}


/* --readmore  */

.read-more {
    cursor: pointer;
    font-weight: 700;
    font-family: Helvetica,"sans-serif";
    transition: all .2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #022425;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
  width: fit-content;
  }
  
  .read-more:hover {
    background: #022425d4;
    color:#fff;
  }
  
  .read-more > svg {
    fill: #fff;
    width: 34px;
    margin-left: 10px;
    transition: transform .3s ease-in-out;
  }
  
  .read-more:hover svg {
    transform: translateX(5px);
  }
  
  .read-more:active {
    transform: scale(0.95);
  }
  
  
/* ----- societies    */

/* ----------- gallery-------------  */
.gallery{
    background: #fff;
    padding:0 10px 40px 10px;
}
.galleryslider, .awardslider{
    width: 100%;
    height: 400px;
    position: relative;
    padding: 20px;
}
.gallery-div{
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 2px 6px 2px;
    border-radius: 4px;
    overflow: hidden;
    width: 90%;
    margin: auto;
    background: #fff;
}
.galllery-section .gallery-div{
    background: #022425;
}
.gallery-image{
    width: 100%;
    height: 220px;
}
.gallery-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content{
    padding: 15px 10px;
}
.gallery-content h3{
font-size: 22px;
color: var(--yellow-color);
font-weight: 600;
}
.galllery-section h3{
        font-size: 22px;
        color: #E1A949;
}
.galllery-section .gallery-content p{
    color: #fff;
}
.gallery-content p{
font-size: 16px;
margin: 5px 0;
}
/* ----------- gallery-------------  */

/* ----- blog -----  */
.card {
    background: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    max-width: 400px;
    display: flex;
    flex-direction: row;
margin: 20px auto;
    border-radius: 25px;
    position: relative;
  }
  .card h2 {
    margin: 0;
    padding: 0 1rem;
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 53px;
  }
  .card .title {
    padding: 1rem;
    text-align: left;
    color: green;
    font-weight: bold;
    font-size: 12px;
  }
  .card .desc {
    padding: 0.5rem 1rem;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 65px;
  }
  .card .actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 0.5rem 1rem;
  }

  
  .img-avatar {
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    border: 6px solid white;
    background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
    top: 15px;
    left: 85px;
  }
  
  .card-text {
display: flex;
flex-direction: column;
  }
  
  .title-total {
    padding: 10px 5px;
  }
.title-total .read-more svg{
width: 30px;
}
.title-total .read-more{
  margin-left: 10px;
  padding: 4px 10px;
} 

  .img-portada {
    width: 100%;
  }
  
  .portada {
    width: 100%;
    height: 180px;
    /* background-image: url("https://m.media-amazon.com/images/S/aplus-media/vc/cab6b08a-dd8f-4534-b845-e33489e91240._CR75,0,300,300_PT0_SX300__.jpg"); */
    background-position: bottom center;
    background-size: cover;
  }



  .blogfeatureimg{
      width:100%;
   height: 450px;
   overflow:hidden;
  }
    .blogfeatureimg img{
              width:100%;
              height:100%;
              object-fit:cover;
    }
     .blogfeatureimg img:hover{
         transform:scale(1.1);
     }
     .blogassets{
      display:flex;
      gap:20px;
      justify-content:flex-start;
      align-items:center;
      margin:15px 0;
     }
     .blogassets i{
         color: var(--yellow-color);
     }
     .blogtitle{
         font-size: 32px;
    text-transform: capitalize;
    font-weight: 900;

     }
     .blogcontent h1,   .blogcontent h2,   .blogcontent h3,   .blogcontent h4,   .blogcontent h5,   .blogcontent h6,   .blogcontent p,    .blogcontent img{
         margin:10px 0;
     }
     
#comments {
margin-top: 50px;
    border-top: 1px solid #d1d0d0;
    padding-top: 60px;
}

#comments h2 {
font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#comments p {
    font-size: 14px;
    margin-bottom: 26px;
}

#comment-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

#comment-form textarea,
#comment-form input[type="text"],
#comment-form input[type="email"],
#comment-form input[type="url"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
}

#comment-form .form-row {
  margin-bottom: 20px;
}

#comment-form .form-row:after {
  content: "";
  display: table;
  clear: both;
}
#comment-form textarea{
        min-height: 240px;
}
#comment-form .form-column {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
}

#comment-form #save-info {
  margin-top: 7px;
  margin-right: 7px;
  vertical-align: middle;
}

#comment-form #save-info + label {
  font-size: 14px;
  vertical-align: middle;
}

#comment-form button[type="submit"] {
     background: #025A63;
    color: #fff;
    padding: 8px 24px;
    margin: 16px 0;
    border: 1px solid #025A63;
    transition: .2s;
}

.comments-list {
  margin-top: 30px;
}

.comments-list h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header strong {
  font-size: 18px;
}

.comment-header span {
  font-size: 14px;
  color: #666;
}

.comments-list p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0px;
}
.comments-list li {
        border-bottom: 1px solid #d7d5d5;
    margin-bottom: 24px;
}
.reply-button {
  background-color: #fff;
  color: #0066cc;
  border: 1px solid #0066cc;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}

.reply-button:hover {
  background-color: #0066cc;
  color: #fff;
}

     .image-with-text{
    display: flex;
    gap: 20px;
    margin: 15px 0;
}
.image-with-text .img-side{
    width: 100px;
    height: 60px;
}
.image-with-text .img-side img{
    width: auto;
    height: 100%;
    object-fit: cover;
}
.a-title{
    color: #020202;
    text-decoration: none;
}
.learn-more{
    color: #020202;
    text-decoration: none;
}
.calend{
        overflow: hidden;
    max-width: 104px;
        white-space: nowrap;
}
/* ----- blog -----  */


/* --------- Footer  --------  */
footer{
    background-color: var(--nav-color);
}
.footerDiv{
  padding: 50px 0;
max-width: 1200px;
margin: auto;
}
.footerCol h6{
    font-size: 22px;
    margin: 5px 0;
    text-transform: uppercase;
    font-weight: 400;
}
.footerSocialIcon{
    display: flex;
    gap: 20px;
    
    margin: 10px 0;
}

.footerSocialIcon i:hover{
    transform: scale(1.2);
}
.footerCol{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 10px 0px;
}
.footerCol a{
    color:var(--footer-col-a);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    margin: 4px 0;
}
.footerCol p{
    color: var(--footer-col-p);
    font-size: 15px;
    font-weight: 400;
    margin: 4px 0;
}
.footerCol a:hover{
    color: var(--yellow-color);
}
.footer-Copyright{
    padding: 10px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-top: 1px solid white;
    word-spacing: 1px;
}
.footer-Copyright h3{
margin: 0;
color: white;
font-size: 16px;
font-weight: 400;
}
.footer-Copyright a{
    text-decoration: none;
    color: var(--footer-copy-a);
    font-weight: 500;
   
}
.footer-Copyright a:hover{
    color: white;
}
/* ========== footer---------  */