@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue.eot');
    src: url('fonts/HelveticaNeue.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue.woff') format('woff'),
        url('fonts/HelveticaNeue.ttf') format('truetype'),
        url('fonts/HelveticaNeue.svg#HelveticaNeue') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.eot');
    src: url('fonts/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Medium.woff') format('woff'),
        url('fonts/HelveticaNeue-Medium.ttf') format('truetype'),
        url('fonts/HelveticaNeue-Medium.svg#HelveticaNeue-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Italic.eot');
    src: url('fonts/PlayfairDisplay-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/PlayfairDisplay-Italic.woff') format('woff'),
        url('fonts/PlayfairDisplay-Italic.ttf') format('truetype'),
        url('fonts/PlayfairDisplay-Italic.svg#PlayfairDisplay-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.eot');
    src: url('fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Light.woff') format('woff'),
        url('fonts/HelveticaNeue-Light.ttf') format('truetype'),
        url('fonts/HelveticaNeue-Light.svg#HelveticaNeue-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
body{
    box-sizing: border-box;
    font-family: 'Helvetica Neue';
    background-color: #F8F8EE;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 300 !important;
}
p{
    font-weight: normal;
}

.h1 .hd-fly{
    font-family: 'Playfair Display';
}

img{
    width: 100%;
    height: auto;
}
.navbar{
    border-bottom: 1px solid #dfdfdf;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 13px 0px;
}
.navbar.scrolled{
    background-color: #F8F8EE;
    transition: background-color 0.3s ease-in-out;
}

.navbar.about-nav.scrolled {
    background-color: #660000;
    transition: background-color 0.3s ease-in-out;
}

.navbar .nav-item-hover{
   margin: 0px 25px;
    display: inline-flex
;
    align-items: center;
}
.navbar .nav-item .nav-link{
    font-size: 14px;
    color: #660000;
    padding: 0;
    font-weight: normal;
}
.nav-link-hover::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #660000;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.nav-link-hover:hover::after{
    transform: scaleX(1);
}
.nav-link-hover.text-white::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.nav-link-hover.text-white:hover::after{
    transform: scaleX(1);
}


.nav-item-hover-phone{
    padding-left: 25px;
    position: relative;
     display: inline-flex;
    align-items: center;
}
.nav-item-hover-phone::after{
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background-color: #dfdfdf;
   top: -30px;
   left: 0;
   position: absolute;
}
.navbar-brand img{
    width: 210px;
    }
.nav-phone{
    width: 39px;
    height: 32px;
    display: inline-block;
    margin-right: 17px;
}
.nav-phone svg{
    width: 100%;
    height: 100%;
}

.h1{
    font-size: 60px;
    color: #660000;
    line-height: 70px;
    margin-bottom: 53px;
    position: relative;
}

p{
    font-size: 14px;
    color: #7C7765;
    line-height: 24px;
}

a{
    text-decoration: none;
}
.hero-section{
    position:relative;
}
.hero-section-innerpage::after{
    content:"";
    position:absolute;
    width:100%;
    height: 100%;
    top:0;
    left:0;
        background: #0000006b;
}
.hero-section .container{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    margin: auto;
    display: flex
;
    align-items: center;
    z-index:1;
}
.hero-section .h1{
    margin-bottom: 20px;
}
.btn40{
    margin-top: 40px;
}
.vas-btn{
    display: inline-flex;
    overflow: hidden;
    padding: 0;
    border: 1px solid #660000;
    color: #660000;
    border-radius: 30px;
   text-transform: uppercase;
    position: relative;
    
    font-weight: 500;
}
.vas-btn span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    position: relative;
    font-size: 14px;
    line-height: 14px;
    z-index: 1;
     transition: all 0.3s ease-in-out;
}
.vas-btn::after{
    content: "";
    display: block;
    width: 101%;
    height: 101%;
    background-color: #660000;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    z-index: 0;
}
.vas-btn:hover::after{
    transform: scaleX(1);
}
.vas-btn:hover span{
    color: #fff;
}

/* hero section */

/* about section  */

.btm-line::after{
    content: "";
    display: inline-block;
    width: 33px;
    height: 4.5px;
    background-color: #660000;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    margin: auto;
}
.btm-line-white::after{
   
    background-color: #ffffff;
   
}
.pad90{
    padding: 90px 0px;
}
.about-section .about-content-wrap{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    margin: auto;
    display: flex;
    align-items: center;
}

/* .about-section-1::before{
   content: "";
    display: block;
    width: 100%;
    height: 61px;
    background-color: #F8F8EE;
    position: absolute;
    bottom: 0;
    left: 0;
        z-index: 1;
    box-shadow: unset;
    border: 0;
} */
/* about section  */
/* services section   */
.services-icon{
    object-fit: cover;
}
.services-item-hover{
    padding: 12px;
    border: 0.8px solid #660000;
    border-radius: 18px;
}

.services-item-hover .services-item{
    border: 0.8px solid #66000068;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 0px;
}

.services-item-content{
    background-color: #660000;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 100%;
    width: 100%;
    padding-bottom: 30px;
}


.services-icon{
    width: 175px;
height: 175px;
border-radius: 50%;
}

.services-icon2{
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.services-title {
    margin-top: 22px;
    
}

.services-title .h3{
   color: #660000;
    line-height: 29px;
    margin: 0;
    font-size: 20px;
    font-weight: normal !important;
}

.services-title p{
       font-weight: 300;
    line-height: 18px;
    margin: 8px 0px 21px;
    font-size: 13px;
}
.vas-btn-white{
        display: inline-flex
;
    overflow: hidden;
    padding: 0;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    line-height: 16px;
    background-color: #660000;
    font-weight: normal;
}
.vas-btn-white span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 34px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    /* background-color: transparent; */

}
.vas-btn-white::after{
    content: "";
    display: block;
    width: 105%;
    height: 105%;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}
.vas-btn-white:hover::after{
    transform: scaleX(1);
}
.vas-btn-white:hover span{
    color: #660000;
}

/* === 3D FLIP EFFECT === */
.services-item-wrap {
  position: relative;
  perspective: 1000px; /* enables 3D depth */
  transform-style: preserve-3d;
}

/* FRONT CARD */
.services-item-hover1 {
  position: relative;
  transform: rotateY(0deg);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  z-index: 2;
}

/* BACK CARD */
.services-item-hover2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  z-index: 1;
}

/* HOVER ACTION */
.services-item-wrap:hover .services-item-hover1 {
  transform: rotateY(-180deg);
}

.services-item-wrap:hover .services-item-hover2 {
  transform: rotateY(0deg);
  z-index: 3;
}

/* Small scale-up for smooth hover feel */
/* .services-item-wrap:hover {
  transition: transform 0.3s ease;
} */

.services-item-hover1::before{
   content: "";
    display: block;
    width: 24px;
    height: 21px;
    background: #edece0 url(../images/art.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    margin: auto;
}

.services-item-hover1::after{
   content: "";
    display: block;
    width: 24px;
    height: 21px;
    background: #edece0 url(../images/art.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    margin: auto;
}

.topspace{
    margin-top: 42px;
}

.abouthonor-img{
    padding: 73px 55px;
}

.abouthonor-img .img-wrap{
    width: 100%;
    height: 100%;
    transform: rotate(358deg);
    overflow: hidden;
    padding: 15px 10px;
}
.abouthonor-img::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/vaastu-boder.svg) no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
}
.abouthonor-img::before{
    content: "";
    display: block;
    width: 83px;
    height: 85px;
    background: url(../images/vastu-sun.svg) no-repeat center center;
    position: absolute;
    top: -10px;
    left: 0;
    right:0;
    margin: auto;
    background-size: contain;
    animation: rotateSun 8s linear infinite;
}
@keyframes rotateSun {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 
.abouthonor-img::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/rectangle.svg) no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(358deg);
    z-index: -1;
    background-size: contain;
} */

/* === WHY CHOOSE === */

.why-choose-item{
    text-align: center;
}
.why-choose-icon{
    width: 140px;
    height: 130px;
    margin: auto;
}
.why-choose-title{
    margin: 30px 0 20px;

}
.why-choose-title h3{
    color: #660000;
    font-size: 20px;
    font-weight: normal !important;
    margin-bottom: 16px;
}
.why-choose-title p{
    color: #000000;
}
.why-choose-title p .textprimary{
    color: #660000;
}

/* === WHY CHOOSE === */

/* form */
.form-group .form-control{
    background-color: transparent;
}
.form-group .col-md-6{
    margin-bottom: 22px;
}
.form-control{
    padding: 10px 15px;
    border-radius: 0px;
    border: 1.5px solid #D8D8D8;
    font-size: 14px;
    border-radius: 4px;
    font-weight: normal !important;
}
.form-control::placeholder{
    color: #000000;
    font-size: 14px;
    font-weight: normal !important;
}
.agree{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.agree input{
    margin-right: 10px;
}
.agree label{
    font-size: 12px;
    font-weight: normal !important;
}
.submitbtn{
    background-color: transparent;
}
.submitbtn span{
    padding: 11px 70px;
    background-color: transparent;
    font-weight: normal;
}

.form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: #D8D8D8;   
    box-shadow: unset;
}

.bganime{
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    right: 0;
    margin: auto;
    height: auto;
    z-index: -1;
}
.bganime::after{
    content: "";
    display: block;
    width: 100%;
    height: 103%;
    background-image: linear-gradient(to bottom, #f8f8ed 50%, transparent 87%);
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: rotate(358deg); */
    background-size: contain;
    z-index: 1;
}

.z-index-1{
    z-index: 1;
}

/* footer */
footer{
    padding-top: 56px;
}

.footerlogo{
    width: 380px;
    margin: auto;
}
.footerlogo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-menu{
    margin: 56px 0px 36px;
}
.footer-menu ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    border-top: 1px solid #781F1D;
    padding: 16px 0px;
    border-bottom: 1px solid #781F1D;
}
.footer-menu ul li{
    margin: 0px 35px;
}
.footer-menu ul li a{
    color: #F8F8EE;
    font-size: 14px;
    font-weight: normal !important;
    position: relative;
}
.footer-menu ul li a::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F8F8EE;
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.footer-menu ul li a:hover::after{
    transform: scaleX(1);
}

.contact-details {
    justify-content: space-between;
}
.contact-item{
   width: 225px;
}

.ftr-title{
    color: #F8F8EE;
    font-size: 14px;
    font-weight: normal !important;
    margin-bottom: 33px;
    letter-spacing: 0.14px;
    position: relative;
}
.ftr-title::after{
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #F8F8EE;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: auto;
}

.ftr-text{
    color: #F8F8EE;
    opacity: 0.77;
    font-size: 14px;
    font-weight: normal !important;
    margin-bottom: 0px;
}
.ft-item-email{
    margin-top: 36px;
}

.ftr-text a{
    color: #F8F8EE;
    opacity: 0.77;
    font-size: 14px;
    font-weight: normal !important;
    display: inline-block;
    position: relative;
}
.ftr-text a::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F8F8EE;
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.ftr-text a:hover::after{
    transform: scaleX(1);
}

.ft-item-quicklinks{
margin-bottom: 6px;
}
.vatuniti-marquee{
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: -16px;
}
.vatuniti-marquee .container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    height: 100%;
}
.marquee{
    width: 100%;
    height: 95px;
}
.marquee img {
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 100%;*/
  /*animation: slideLeft 10s linear infinite;*/
}

/*@keyframes slideLeft {*/
/*  0% {*/
/*    left: 100%;*/
/*  }*/
/*  100% {*/
/*    left: -100%;*/
/*  }*/
/*}*/
.vatuniti-marquee-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.vatuniti-social{
    display: flex;
    justify-content: center;
    align-items: center;
}
.vatuniti-social a{
    color: #660000;
    font-size: 14px;
    font-weight: normal !important;
    margin: 0px 4px;
    width: 27px;
    height: 27px;
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.vatuniti-social a:hover{
    color: #fff;
    background-color: #660000;
}
.Copyright{
    color: #F8F8EE;
    font-size: 12px;
    font-weight: 300;
    margin-top: 36px;
    opacity: 0.77;
    margin: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* aboutus  */
.personal-philosophy-content{
    width: 662px;
border-radius: 27px;
opacity: 1;
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
left: 0;
right: 0;
padding: 56px;
height: max-content;
}
.philosophy-logo{
    width: 85px;
height: 84px;

margin: auto;
margin-bottom: 16px;
}
/* services */

.service-box{
    background-color: #F3F2E5;
    border-radius: 11px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.service-icon{
    width: 186px;
height: 194px;
border-radius: 11px;
overflow: hidden;
}
.service-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-content{
    width: calc(100% - 186px);
    padding: 20px 30px;
}

.service-content h3{
    color: #660000;
    font-size: 24px;
    font-weight: normal !important;
    margin-bottom: 16px;
}

.mt30{
    margin-top: 30px;
}

.service-content .vas-btn{
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
}
.service-content .vas-btn span{
    padding: 8px 20px;
}
.why-choose-item-0{
    border-radius:  21px;
    overflow: hidden;
}

.why-choose-item-0 .why-choose-item-upper{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
   text-align: start;
    background-image: linear-gradient(to top, #F8F8EE 0%, #FFFFFF00 100%);
    padding: 28px;
}
.why-choose-item-number{
    color: #660000;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 25px;
}
.why-choose-item-title{
    color: #373737;
    font-size: 14px;
    font-weight: 500 !important;
    margin-bottom: 10px;
}
.why-choose-item-desc{
    color: #333230;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0px;
    letter-spacing: 0.14px;
}
.why-choose-item-1{
    margin-top: 20px;
    background-color: #F3F2E5;
    padding: 18px;
    border-radius: 21px;
}
.mt20{
    margin-top: 20px;
}

.why-choose-use-icon{
    width: 120px;
height: 120px;
margin-bottom: 60px;
}
.why-choose-use-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose-item-icon-title{
    color: #660000;
    font-size: 20px;
    font-weight: normal !important;
    margin-bottom: 14px;
}

/* articles */
.article-content{
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.servicebox .aticles-box{
    border-radius: 18px;
    overflow: hidden;
}

.servicebox .h1{
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 44px;
}

.servicebox .aticles-box .vas-btn{
    margin-top: 28px;
}
.sub-title{
   padding: 6px 32px;
    font-size: 14px;
    color: #fff;
    background: #660000;
    margin-bottom: 12px;
    border-radius: 58px;
    letter-spacing: 0.4px;
}
.aticles-box-2{
    margin-top: 53px;
}
.article-img-3{
    border-radius: 18px;
    overflow: hidden;
    height: 262px;
}
.articles-3{
    padding-top: 19px;
    justify-content: space-between;
}
.articles-3 .article-title-3 {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.18px;
color: #373737;
font-weight: 500 !important;
}
.articles-3 .vas-btn{
    justify-content: center;
    font-weight: normal;
    width: 113px;
    height: 26px;
}
.articles-3 .vas-btn span{
    font-size: 10px;
    white-space: pre;
}

.accordion-item{
    border: 1px solid #707070 !important;
    border-radius: 7px !important;
    padding: 12px;
    margin-bottom: 16px;
    background-color: transparent;
}
.accordion-item .accordion-button {
    justify-content: space-between;
    
}
.accordion-item .accordion-button span{
    width: 23px;
    height: 23px;
    border-radius: 100%;
     
}
.accordion-item .accordion-button span img{
    transition: all 0.3s ease;
}
.accordion-button::after{
    content: unset;
}
.accordion{
    max-width: 696px;
    margin: auto;
}
.accordion-button{
    background-color: transparent;
    color: #373737;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-weight: 500 !important;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.16px;
}
.accordion-button:not(.collapsed) {
    color: #373737;
    background-color: transparent;
    box-shadow:unset;
}
.accordion-button:focus {
    
    box-shadow: unset;
}
.accordion-body{
    color: #7C7765;
    font-size: 14px;
    letter-spacing: 0.14px;
    font-weight: normal;
    padding: 0;
    line-height: 25px;
    padding-top: 12px;
}

.accordion-button[aria-expanded="false"] span img{
  transform: rotate(180deg);
}

/* Expanded state */
.accordion-button[aria-expanded="true"] span img{
  transform: rotate(0deg);
}
.error{
    font-size: 12px;
}
.blog-date {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
}
.blog-date span {
    letter-spacing: .5px;
    font-size: 12px;
    line-height: 1.8;
}
.blog-social p {
    letter-spacing: .5px;
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.8;
}
.blog-social-icon {
    background: #fff;
    padding: 15px;
}
.blog-social-icon .social_icon {
    text-align: left;
}
.social_icon a {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: solid 1px #660000;
      transition: all 
ease-in-out 0.5s;
background: #660000;
margin: 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blog-social-icon .social_icon svg {
        
    color: #fff;
    transition: all 
ease-in-out 0.5s;
        font-size: 12px;
        
    }
    .social_icon a:hover {
    background: transparent;
   
}
.social_icon a:hover svg{
    
    color: #000;
}

.blog-content h2, .blog-content h3, .blog-content h4{
    margin: 20px 0px 15px;
    font-weight: 500 !important;
}
.blog-content h2{
    font-size: 30px;
}

.subscribe-hd {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}


.subscribe-blog {
  position: relative;
}

.subscribe-blog .form-control {
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 30px;
  padding: 0 140px 0 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.subscribe-blog .form-control:focus {
  border-color: #660000; /* Vaastu Niti theme color */
  box-shadow: 0 0 8px rgba(102, 0, 0, 0.2);
  outline: none;
}

.btn_submit {
  right: 8px;
  top: 5px;
  bottom: 5px;
  background-color: #660000;
  border: none;
  border-radius: 30px;
  color: #fff;
  padding: 0 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn_submit:hover {
  background-color: #8b0000;
  transform: translateY(-1px);
}

.vastuniti-video-testimonial-text{
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    padding: 8px 0px 12px;
    border-bottom: 1px solid #660000;
    color:#660000;
}
.tetimonial-img{
   width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 24px;
}

.testimonial-text{
    background-color: #F3F2E5;
    padding: 24px;
    border-radius: 21px;
}
 /* the slides */
.testimoniaSliderleft  .slick-slide {
      margin: 0 8px;
  }

  /* the parent */
.testimoniaSliderleft  .slick-list {
      margin: 0 -8px;
  }
  
 /*.navbar.about-nav {*/
 /*   background-color: #660000;*/
 /*}*/
 
 .agree input {
 appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #D8D8D8;
    border-radius: 0px;
    background: transparent;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.agree input:checked {
  background-color: #e6e3cc;
}

.agree input:checked::after {
  content: "✓";
    position: absolute;
    left: 3px;
    top: -2px;
    font-size: 12px;
    color: #333;
}
.Vaastuniti-video-testimonial-text{
    font-size: 16px;
    margin:0;
    padding: 12px 0px;
    border-bottom: 1px solid #660000;
}

.agree a {color:#660000;}
