body{
  font-family: "Philosopher", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  overflow-x: hidden;
 
  background-color: #fde6ae;
  
}
body::before{
background: url('../images/bg.webp');
content: '';
width: 100%;
top: 0;
line-height: 0;
position: absolute;
background-size: cover;
opacity: 0.1;
}
html {
  scroll-behavior: smooth; scroll-padding: 40px;
}
.container{
  max-width: 1440px;
}
@media screen and (max-width: 1600px){
  .container {
  max-width: 1250px;
}
}
@media screen and (max-width: 1500px){
  .container{
  max-width: 1140px;
}
}
@media screen and (max-width: 1199px){
  .container{
  max-width: 960px;
}
}
h1,h2,h3,h4,h5,h6{
 font-family: "Philosopher", sans-serif;
}

.logo{
  height: 130px;
  margin-bottom: 30px;
}

.logosection{
  padding: 50px 0 70px;
}

.contact{
      background: #8b260f;
    border: 4px double #d78e2f;
    padding: 30px 0 20px;
    margin-top: 90px;
}
.contact ul li{
  display: inline-block;
  margin: 0 20px;
}
.contact ul li a{
  color:#fff !important;
  text-decoration: none !important;
}
p{
  text-align: justify;
}
/* about css start */
.as_about_wrapper{
    background-image: url('../images/bg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    padding-top: 80px;
}
.as_paragraph_wrapper {
    padding-left: 20px;
    border-left: 2px solid #db8f2f;
}
.as_paragraph_wrapper {
    padding-left: 20px;
    border-left: 2px solid #db8f2f;
    margin-top: 20px;
}
.as_contact_expert {
    display: flex;
    margin: 40px 0;
    align-items:center;
}
.as_contact_expert .as_icon{
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:25px;
    position: relative;
}
.as_year_ex {
    font-size: 60px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Philosopher', sans-serif;
    margin-right: 10px;
}
.as_contact_expert .as_icon:before{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #dcdcdc;
    content: '';
    border-radius: 100%;
    width: 100px;
    height: 100px;
}
.as_contact_expert:hover .as_icon:before{
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
}
.as_contact_expert h5{
    font-size:18px;
    margin: 0;
}
.as_contact_expert h1{
    font-size: 30px;
    font-weight:700;
    margin:0 0 0 0;
}
.as_aboutimg{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.as_aboutimg img{
    display: inline-block;
    
}
.as_aboutimg span.as_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@keyframes zoom{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}
.as_aboutimg span.as_play:after,.as_aboutimg span.as_play:before{
    content: '';
    position: absolute;
    left: -5px;
    top:-5px;
    bottom: -5px;
    right: -5px;
    background-color:  rgb(246 246 246 / 60%);
    animation: zoom 0.8s infinite alternate;
    border-radius: 100%;
    z-index: -1;
}
.as_aboutimg span.as_play:after{
    left:-12px;
    right:-12px;
    top: -12px;
    bottom: -12px;
}

/* about css end */


.btn--snakeBorder {
  background: #000;
  overflow: hidden;
}
.btn--snakeBorder::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
}
.btn--snakeBorder span {
  position: absolute;
}
.btn--snakeBorder span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0c002b, #db8f2f);
  animation: borderAnimation1 2s linear infinite;
}
@keyframes borderAnimation1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.btn--snakeBorder span:nth-child(2) {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #0c002b, #db8f2f);
  animation: borderAnimation2 2s linear infinite;
  animation-delay: 1s;
}
@keyframes borderAnimation2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.btn--snakeBorder span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #0c002b, #db8f2f);
  animation: borderAnimation3 2s linear infinite;
}
@keyframes borderAnimation3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.btn--snakeBorder span:nth-child(4) {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #0c002b, #db8f2f);
  animation: borderAnimation4 2s linear infinite;
  animation-delay: 1s;
}
@keyframes borderAnimation4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}.btn {
  position: relative;
  display: inline-block;
  padding: 12px 36px;
  margin: 10px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-sizing: border-box;
  box-shadow: none!important;
}
/* service css start */
.as_service_wrapper {
    padding: 70px 0px 115px;
}
.as_service_img {
    position: relative;
    text-align: center;
}

.as_service_img .as_service_img {
    position: absolute;
    left: -30px;
    right: 0;
    text-align: center;
    margin: 0 auto;
    top: 20px;
}

.as_service_single .as_service_img:after {
    display: none;
}
.as_service_img  .as_service_circle {
    animation: spin 40s infinite linear;
    -webkit-animation: spin 40s infinite linear;
    -moz-animation: spin 40s infinite linear;
    position: relative;
    top: 100px;
}
.as_service_box {
    margin-top: 30px;
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 4%);
    border: 1px solid rgb(139 38 15);
    position: relative;
    border-radius: 5px;
    z-index: 1;
    transition: all 0.5s linear;
    display: flex;
    align-items: center;
    padding: 20px 20px;
    justify-content: space-between;
    background-color: transparent;
}
.as_service_box:hover{
    background-color: #8b260f;
   border-color: #8b260f;
}
.as_service_box:hover p, .as_service_box:hover .as_subheading {
    color: #ffffff;
}
.as_service_box:hover{
   
}
.as_service_box .as_icon svg{
    fill: #fff;
    transition: none;
    width: 60px;
}
.as_service_box:hover .as_icon svg{
    fill: #fff;
} 
.as_service_box p {
    transition: none;
    margin: 0;
    transition: all 0.5s;
}
a{
  color: #fff;
}
.as_service_box .as_subheading {
    margin: 0px 0 10px;
    font-size: 20px;
    position: relative;
    font-weight: 600;
    transition: none;    transition: all 0.5s;
   
}
.why{
  padding: 80px 0;
}
.as_link{
    text-transform: capitalize;
    font-size: 15px;
    line-height:24px;
   
    letter-spacing: 0.6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    transition: none;
    cursor: pointer;
    /* display: inline-flex; */
}
.as_link span{
    margin: -1px 0 0 5px;
}
.as_service_box:hover .as_link span svg {
    fill: #fff;
}

.as_service_box .as_link span svg, .as_service_box .as_link span {
    transition: none !important;
    fill:var(--primary-color);
}
@-webkit-keyframes spin {
    0%  {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}   
}
/* horoscope new css */

.feature .card h3{
    color:#fff;
        padding-top: 20px;
}


.feature .card {
 background: #8b260f;
  padding: 20px 30px 15px;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 30px;
  box-shadow: 0px 0px 20px rgba(244, 160, 53, 0.75);
  border-radius: 40px 0 40px;
  border: 4px double #d78e2f;
}
.mbt-30s{
  margin-top: 40px;
}

.why .leftsidecard{
 margin-top: 30px;
}
.why .card img{
  height: 30px;
  width: auto;
  background: #d78e2f;
}
.why ul{
  padding-left: 0;
}
.why ul li{
    list-style: disclosure-closed;
    margin-bottom: 10px;
}
.as_service_wrapper .mbt-30s {
  margin-top: 120px;
}

@media screen and (max-width:1600px){
  .feature .card {
  background: #8b260f;
  padding: 20px 11px 15px;
}
.as_service_wrapper .mbt-30s {
  margin-top: 50px;
}
  .feature .card {
    background: #8b260f;
    padding: 20px 52px 15px;
  }
}

@media screen and (max-width:1199px){
  .as_aboutimg img{
    margin-bottom: 30px;
  }
  .as_service_img {
  margin-bottom: 175px;
}.why .leftsidecard {
  margin-top: 0;
  margin-left: 20px;
}
.why .col-lg-12{
  margin-bottom: 20px;
}
}
.fixedbtn2{
        position: fixed;
    bottom: 90px;
    right: 10px;
}
.fixedbtn2 img{
    height:60px;
}
#deskn{
    display:none;
}.box-cards{
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 15px;
  overflow: hidden;
 border-radius: 3px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.box-cards  ul {
  padding: 0;
  margin: 0;
}
.box-cards ul li {
  list-style: none;
  margin-bottom: 15px;
}
.box-cards ul li a {
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #212112;
}
.box-cards ul li i {
  padding-right: 10px;
  color: #ed2980 !important;
}
.form-control{
    margin-bottom:20px;
}textarea.form-control {
    height: 153px;
}
.form{
    margin-bottom:50px;
}
@media screen and (max-width:767px){.mbt-30s {
  margin-top: 20px;
}
  .logosection {
  padding: 25px 0 30px;
}  .as_aboutimg img {
    margin-bottom: 18px;
  }
  .as_heading{
    font-size: 30px;
    padding: 0;
    margin: 0;
  }
  .btn{
    padding: 12px 27px;font-size: 17px;
  }.as_service_wrapper {
  padding: 30px 0px 36px;
}  .as_service_wrapper .mbt-30s {
    margin-top: 24px;
  } .feature .card {
    background: #8b260f;
    padding: 13px 11px 9px;
    font-size: 20px;
  } .feature .card h3{
    font-size: 22px;
   }.why {
  padding: 30px 0 0;
}.contact{
  padding: 20px 0 40px;
}
section{
  overflow-x: hidden;
}    .contact {
        padding: 20px 0 0px;    margin-top: 25px;
    }
    #deskh{
    display:none;
}
#deskn{
    display:block;
}
.aboutus img{
    margin-top:30px;
}
}



.fixedbtn{
      position: fixed;
    bottom: 10px;
    left: 20px;
    background: #8b260f;
    padding: 5px 16px;
    border-radius: 10px;
    border: 4px double #d78e2f;
       color: #fff !important;
    text-decoration: none !important;
        z-index: 999999999999;color: #fff !important;
  text-decoration: none !important;
  z-index: 999999999999;
  width: 100%;
  left: 0;
  bottom: 0;
  border: none;
  border-radius: 10px 10px 0 0px;
}
.fixedbtn{
      position: fixed;
    bottom: 10px;
    left: 20px;
   background-image: linear-gradient(180deg, #8B260F 0%, #8B260F 100%);
    padding: 15px 16px;
    border-radius: 10px;
    border: 4px double #d78e2f;
       color: #fff !important;
    text-decoration: none !important;
        z-index: 999999999999;
  text-decoration: none !important;
  z-index: 999999999999;
  width: 100%;
  left: 0;
  bottom: 0;
  border: none;
  border-radius: 10px 10px 0 0px;
  font-size: 30px;
 
}

.fixedbtn  a{
  background: #fde6ae;
  padding: 6px 25px;
  border-radius: 10px;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  float: right;
}
.fixedbtn span{
  line-height: 43px;
}
.slider
{
  background: url('../images/slider.webp');
  background-size: cover;
  background-position: top right;
  padding: 90px 0 120px;
}
.myt0{
  margin-top: 30px;
}

@media screen and (max-width:1199px){
  .slider{
    padding: 16px 0 20px;
  }
  .slider h3 {
  font-size: 42px;
  margin-bottom: 26px;
  margin-top: 13px;
}

}

@media screen and (max-width:991px){
  .slider{background: url('../images/mobslider.webp');
    padding: 16px 0 20px;padding: 16px 0 1050px;
    background-position: bottom;
  }
  .slider h3 {
  font-size: 42px;
  margin-bottom: 26px;
  margin-top: 13px;
}

}
.abth{
  display: none;
}

.btn1, .btn2 {
  background: #c53b18;

  padding: 6px 45px;

  border-radius: 10px;

  font-size: 24px;

  color: #fff !important;

  text-decoration: none !important;

  margin-bottom: 20px;

}.fixedbtn3{
        position: fixed;
    bottom: 100px;
    left: 10px;
}
.fixedbtn3 img{
        height: 60px;
}
@media screen and (max-width:767px){
    .slider h3 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 3px;
  }
    .slider{background: url('../images/mobs.webp');
      padding: 16px 0 30px;
    }
    .as_about_wrapper{
        padding-top: 30px;
    }
.abth{
  display: block;
}
.fixedbtn{
  font-size: 24px;
}
.fixedbtn a{
  float: left;
}.fixedbtn2, .fixedbtn3 {
    bottom: 130px;
}
}
.as_service_box .as_subheading, .as_service_box p{
	color:#fff;
}