@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {

    .dnone_320{
        display: none !important;
    }

    .book_btn{
        display: none;
    }
    .book_btn .book-now {
        padding: 14px 30px;
        border: 1px solid #dddddd;
        border-radius: 24px;
        text-decoration: none;
        color: #0d0a87;
        /* background-image: linear-gradient(45deg, #0d0a87, #090766); */
        background-color: #ffffff;
        font-weight: normal;
        transition: background 0.3s;
        box-shadow: 2px 2px 6px 0px #cfcfcf;
    }
    
    .book_btn .book-now:hover{
        text-decoration: none;
        color: #ffffff;
        background-color: #8282be;
        border: 1px solid #8282be;
    }


    .healingSec{
        position: relative;
    }
    
    .healingSec .healingbox{ 
        position: relative;
        padding: 20px;
        width: 100%;
        max-width: 1000px;
        margin: auto;
        top: -30px;
        background-color: #ffffff;
        box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
        z-index: 999;
    }
    .healingSec .healingbox h2{
        margin: 0;
        font-size: 22px;
        font-family: 'simple-line-icons';
        text-align: center;
        line-height: 32px;
        letter-spacing: 1px;
    }


    .welHead {
        font-size: 24px;
        font-weight: 700;
        line-height: 36px;
        text-align: center;
        text-transform: capitalize;
        font-family: "EB Garamond", serif;
    }

    .culSec {
        padding: 0;
    }
    
    .culImg {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9; /* Keeps height proportional on all devices */
        overflow: hidden;
      }
  
      .culImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
      }
  
      .culBox {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: end;
        justify-content: center;
        color: white;
        padding: 20px;
        background-image: linear-gradient(2deg, #000000b2, #00000070, transparent);
      }
  
      .culturalInner {
        width: 100%;
        max-width: 800px;
        text-align: center;
      }
  
      .culturalInner h3 {
        font-size: 30px;
        font-weight: 600;
        font-family: "EB Garamond", serif;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 15px;
      }
  
      .culturalInner p {
        color: #ffffff;
        line-height: 30px;
        font-size: 15px;
        letter-spacing: 0.1px;
        margin: 0;
      }
    

      
  /* Blog Area Start */
  .titleArea{
    max-width: 700px;
    text-align: center;
    margin: auto;
  }
  .titleArea h2{
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
    font-family: "EB Garamond", serif;
    text-transform: capitalize;
  }
  /* Blog Area End */


  .joinusSec{
    padding: 70px 0 70px 0;    
}

.joinusSec .joinusImg{
    margin-right: 0px;
    /* z-index: -1; */
    position: relative;
    opacity: 1;
}

.joinusSec .joinusImg img{
    width: 100%;
    object-fit: cover;
}

.joinusSec .joinusCon{
    position: relative;
    padding: 40px;
    z-index: 1;
    box-shadow: 0 0px 20px rgb(0 0 0 / 10%);
    background-color: #ffffff;
}

.joinusSec .joinusCon::before,
.joinusSec .joinusCon::after{
    content: '';
    position: absolute;
    /* left: 90%; */
    transform: translateX(-50%);
    width: 30px;   /* Adjust based on arrow size */
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
}

.joinusSec .joinusCon::before{
    left: 90%;
    top: 20px; /* Adjust based on arrow size and spacing */
    background-image: url('../visconnect/icons/arrow1.png');
}

.joinusSec .joinusCon::after{
    left: 10%;
    bottom: 20px; /* Adjust based on arrow size and spacing */
    background-image: url('../visconnect/icons/arrow2.png');
}


.joinusCon h3{
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 15px 0;
}

.joinusCon h3 img{
    width: 30px;
    margin: 0 10px 0 0;
}

.joinusCon .joinBtn{
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    background-color: #2C2287;
    padding: 15px 20px;
}

.joinusCon .joinBtn:hover{
    text-decoration: none;
    background-color: #1f176b;
}


.sliDetails {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}

.sliDetails h3{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  padding: 12px 0 12px 0;
}

.sliDetails .sliList{
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

.sliDetails .sliList li{
  color: #ffffff;
  padding: 0 15px;
}

.sliDetails .sliList li a{
  color: #ffffff;
}


/* Blog Inner Page CSS Start */
.blogSec{
    
}
.blogSec .blogInner{

}
.blogSec .blogInner h2{
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 15px;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.blogSec .blogInner h3{
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 12px;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.blogSec .blogInner h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 6px;
    /* font-family: "EB Garamond", serif; */
    text-transform: capitalize;
    letter-spacing: 0.1px;
}
.blogSec .blogInner .bloghalfList{
    display: block;
}
.blogSec .blogInner .bloghalfList ul{
    width: 100%;
    list-style-type: square;
}
.blogSec .blogInner .bloghalfList ul li{
    color: #222222;
    font-size: 14px;
    line-height: 27px;
    padding: 0 0 8px 0;
}
.blogSec .blogInner .blognumList{
    display: flex;
}
.blogSec .blogInner .blognumList ul{
    width: 50%;
    list-style-type: decimal;
}
.blogSec .blogInner .blognumList ul li{
    color: #222222;
    font-size: 14px;
    line-height: 27px;
    padding: 0 0 8px 0;
}
.blogsocial{
    border-top: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
    display: flex;
}
.blogsocial h3{
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    padding: 10px 0;
    /* font-family: "EB Garamond", serif; */
    text-transform: capitalize;
    letter-spacing: 0.1px;
}
.blogsocial .blogsocialList{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.blogsocial .blogsocialList li{
    /* width: 36px;
    height: 36px;
    line-height: 38px;
    border-radius: 50%; */
    margin: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blogsocial .blogsocialList li a{
    width: 36px;
    height: 36px;
    line-height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blogsocial .blogsocialList li a:hover{
    color: #ffffff;
    background-color: #0d0a87;
    text-decoration: none;
}
.blogsocial .blogsocialList li a{
 
}
.blogsocial .blogsocialList li a .fa{
 
}
.latestArtical{
    /* background-color: #f5f5f5;
    padding: 20px; */
}
.latestArtical h3{
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    padding: 8px 0 20px 0;
    font-family: "EB Garamond", serif;
    text-transform: capitalize;
    letter-spacing: 0.1px;
}
.latestArtical .latestartiBox{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 1px solid #bdbdbd;
}
.latestArtical .latestartiBox .artimg{
    width: 30%;
}
.latestArtical .latestartiBox .artimg img{
    width: 100%;
}
.latestArtical .latestartiBox .artCon{
    width: 70%;
    padding: 5px 6px;
}
.latestArtical .latestartiBox .artCon .date{
    display: flex;
    justify-content: space-between;
}
.latestArtical .latestartiBox .artCon .date span{
    color: #0d0a87;
}
.latestArtical .latestartiBox .artCon h4{
    font-size: 14px;
    line-height: 25px;
    margin: 0;
}
/* Blog Inner Page CSS End */

/* Service Inner Section CSS Start */
.serInnerSec{
  padding: 70px 0 60px 0;
}
.serInnerSec .serInnerBox h2{
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 15px;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.serInnerSec .serInnerBox h3{
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}
.serInnerSec .serInnerBox .serInnerList{
  list-style-type: disc;
  padding-left: 20px;
}
.serInnerSec .serInnerBox .serInnerList li{
  color: #222222;
  font-size: 14px;
  line-height: 27px;
  padding: 0 0 8px 0;
}
/* Service Inner Section CSS End */


/* Policy List CSS Start */
.policyList{
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.policyList li{
  color: #222222;
  padding: 0 10px;
}
.policyList li a{
  font-size: 14px;
  color: #222222;
}
.policyList li:hover a{
  color: #0d0a87 !important;
}
/* Policy List CSS End */
  }