@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-style: "Poppins"; */
}

body {
    user-select: none;
}

ul li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f1a8cf;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: transLoader 1s linear infinite forwards;
  }
  @keyframes transLoader {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  .loader-overlay img {
    width: 200px;
  }
  

.blogs-wrapper {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #793385, #4b2157);
}

header {
    /* overflow: hidden; */
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 100;
}

header .left {
    width: 30%;
}

header .right {
    width: 60%;
}

header .right ul {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #ffffffb8;
}

#blogs-head {
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 10px #fff;
}

header .right ul li:hover {
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 10px #fff;
    transition: 0.5s all;
}

li.sub-menu-pricing{
    position: relative;
  }
  li.sub-menu-pricing:hover ul{
    display: flex;
  }
  li.sub-menu-pricing ul{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    display: none;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.5s all;
  
    width: fit-content;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /* margin-top: 5px; */
  }
  li.sub-menu-pricing li{
    color:#4b2157;
    white-space: nowrap;
    padding:15px 10px;
    /* margin-left:80px; */
    width: fit-content;
    font-family: "Poppins";
    font-weight: 400 !important;
    
    border-bottom: 2px solid transparent !important;
  }
  li.sub-menu-pricing li:hover{
    background-color: rgb(223, 219, 219);
    width: 100%;
  }
  li.sub-menu-pricing li:hover{
    color: #4b2157 !important;
      cursor: pointer;
      text-shadow: 1px 1px 10px #4b2157 !important;
      transition: 0.5s all;
  }
  .sub-menu-pricing-mobile li a{
    color: #c820ba;
    text-align: left;
      font-size: 12px;
      margin-left: 40px;
  }
  ul.sub-menu-pricing-mobile li{
      text-align: left;
  }
  
.header-mob {
    display: none;
}


/* [START] */
footer {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    /* background-color: #fff; */
  }
  .footer-wrapper {
    width: 90%;
    display: flex;
    margin-left: 30px;
  }
  .foot {
    width: 25%;
    color: #fff;
    /* color: #7E4798; */
    font-family: "Open Sans";
    font-size: 12px;
  }
  .foot div {
    margin-bottom: 20px;
    font-weight: bold !important;
  }
  .foot-4 {
    padding-left: 20px;
  }
  /* [END] */
  


.blogs-fir{
    width:100%;
    height: 100%;
    position: relative;
}
.blogs-fir img{
    width:100%;
    height: auto;
    z-index: 20;
}
.blogs-fir .blogs-fir-overlay{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.348);
    z-index: 21;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blogs-fir .blogs-fir-overlay h3{
    font-family: "Forum";
    font-weight: 100 !important;
    font-size: 12vw;
}
.blogs-sec-wrapper{
    background-color: #fff;
    width:100%;
    overflow: hidden;
}
.blogs-sec{
    width: 80%;
    margin:auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 100px;
}
.blogs-sec-card{
    width:calc(50% - 20px);
    opacity: 0;
    transform: translateY(30%);
    transition: 1s all;
}
.blogs-sec-card.slide-up-common{
    opacity: 1;
    transform: translateY(0%);
}
.blogs-sec-card img{
    margin-top: 100px;
    width:100%;
    height: auto;
    /* height: 400px; */
    object-fit: fill;
    transition: 0.5s all;
    box-shadow: 1px 1px 10px grey;
    border-radius: 10px;
}
.blogs-sec-card img:hover{
    box-shadow: 1px 1px 10px black;
    transform: scale(1.05);
}
.blogs-sec-card h6.date{
    margin: 10px 0px;
    font-family: "Cinzel";
    font-size:17px;
    color: grey;
    letter-spacing: 7px;
}
.blogs-sec-card h1{
    color: #562665;
    font-family: "Forum";
    font-size: 34px;
}
.blogs-sec-card h6.desc{
    font-family: "Poppins";
    font-size: 13px;
    color: grey;
    margin-top: 10px;
    margin-bottom: 20px;
}
.blogs-sec-card button{
    float: right;
    cursor: pointer;
  border: none;
  padding: 5px 8px;
  font-size: 15px;
  /* font-weight: 100; */
  color: white;
  background: #7e4798;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.5s all;
  /* margin-right: 20px; */

}
.blogs-sec-card button:hover {
    box-shadow: 0px 0px 10px #301e39;
  }
















@media(max-width:600px){
    .blogs-sec{
        width:90%;
    }
    .blogs-sec-card{
        width:100%;
        border-bottom: 1px solid lightgray;
        padding-bottom: 20px;
        /* margin-bottom: 50px; */
    }
    .blogs-sec-card img{
        margin-top: 50px;
    }
    .blogs-sec-card h6.date{
        font-size:15px;
        letter-spacing: 5px;
    }
    .blogs-sec-card h1{
        font-size: 24px;
    }
    .blogs-sec-card h6.desc{
        font-size: 11px;
    }
    

    .loader-overlay img {
        width: 100px;
      }
    header {
        display: none;
    }

    .header-mob {
        display: block;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 10px;
        background-color: transparent;
        color: #fff;
    }

    .menu-container {
        position: relative;
        width: 100%;
        display: flex;
    }

    .menu-container div {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .menu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        color: #562665;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        z-index: 1000;
    }

    .side-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .side-menu li {
        margin: 20px 0;
    }

    .side-menu a {
        color: #562665;
        text-decoration: none;
        font-size: 18px;
        font-family: "Poppins", sans-serif;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #562665;
        font-size: 36px;
        cursor: pointer;
    }

    .side-menu.menu-open {
        transform: translateX(100%);
    }

    .footer-wrapper {
        flex-wrap: wrap;
        margin: 0 30px;
      }
      .foot {
        width: 50%;
        margin-bottom: 30px;
      }

}
