/* preloader */
.preloader-div{
    display:none;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 99999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes preloader {
    0% {
      opacity: 1;
    }
    99% {
      opacity: 0;
    }
    100%{
      display: none;
    }
  }
  .preloader-div.hide {
    animation: preloader 1s linear both;
  }
  .loader {
    width: 40px;
    aspect-ratio: 1;
    --c: linear-gradient(#f6931c 0 0);
    --r1: radial-gradient(farthest-side at bottom,#f6931c 93%,#f6931c);
    --r2: radial-gradient(farthest-side at top   ,#f6931c 93%,#f6931c);
    background: 
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2);
    background-repeat: no-repeat;
    animation: l2 1s infinite alternate;
  }
  @keyframes l2 {
    0%,25% {
      background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   50% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   75% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   95%,100% {
      background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
   }
  }
  

  
  
/* preloader */
:root{
  --white:#FFF;
  --black:#000;
  --dark:#1E1E1E;
  --gray:rgba(1,1,1,0.6);
  --lite:rgba(255,255,255,0.6);
  --primary:#002347;
  --secondary:#fdc632;
  --prime-color: #2e226d;
  --hover-color: #b6c6be;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
h1,h2,h3,h4,h5,h6{
  font-family: "Nunito Sans", sans-serif;
  text-transform: capitalize;
  font-weight: 700;
}
/* p{
  font-family: "DM Sans", sans-serif;
} */

img{
  width: 100%;
}
a{
  text-decoration: none
}
section{
  overflow: hidden;
  /* padding-bottom: 100px; */
 
}
@media (max-width:765px){
  .sm_hide{
    display: none !important;
  }
}
@media (min-width:765px){
  .lg_hide{
    display: none !important;
  }
}





/* Media queries specific to iPhones */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-device-pixel-ratio: 3) { /* Pixel ratio for Retina displays */

  /* Your iPhone-specific CSS rules go here */
  /* For example, adjust font sizes, margins, paddings, etc. */
  .navlogo {
    height: 40px; /* Adjust height of the logo */
  }
  
  
  .navbar-toggler {
    position: absolute;
    top: 30px; /* Adjust vertical position of the toggle button */
    right: 10px; /* Adjust horizontal position of the toggle button */
  }
  
  .navbar-expand-lg .navbar-collapse {
    flex-direction: column;
    align-items: center;
  }
}




/* header */

/* ====================mobilenav================== */
.mobile_menu {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: white;
  transition: 1s;
  transform: translateX(100px);
  opacity: 0;
  overflow-y: scroll;
  z-index: -1;
 
}


.mobile_menu.view {
 
  opacity: 1;
  z-index: 10001;
  transform: translateX(0);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1rem !important;
  height: 1rem !important;
  margin-left: auto;
  content: "";
  /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e); */
  background-repeat: no-repeat;
  background-size: auto;
  transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #fff !important;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-item {
  background-color: #fff;
  border:none !important;
}
.mobile_header{
  padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 5px rgb(60 72 82 / 35%);
    margin-bottom: 15px;
}
.mobile_header h3{
  color: #2e226d;
}
.mobile_header img{
  width: 25px;
}
/* .mobile_menu {
  display: none;
} */

/* CSS for header animation */
.hero-slider {
  opacity: 0; /* Initially hide the header */
  transition:2s;
  transform: scale(0);
 
}

.hero-slider.visible {
  opacity: 1;
  transform:scale(1);
  /* Show the header with opacity animation */
}

/* header */
/* navbar */
.nav-item{
  position: relative;
  margin: 0 10px;
}

@media (min-width:992px){
  .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: 1s;
  }
  .nav-item:hover::before{
    width: 100%;
  }
}

.navlogo{
  height: 80px;
  position: relative;
}
.navbar{
  position: relative;
}
.navbar::before{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background: white;
    border-radius: 0 0 50px;
}
.navbar.scrolled .nav-item::before{
  background: var(--prime-color);
}
.navbar{
  /* position: fixed; */
  z-index: 1000;
  width: 100%;
  background: white;
  transition: 1s;
}

.navbar-toggler i{
  color: #2e226d;
    font-size: 26px;
}
.navbar-toggler{
  border: none !important;
}
.navbar.scrolled{
  transition: 1s;
  box-shadow: 0 4px 5px rgba(60,72,82,.25);
    width: 100%;
    background: white;
    position: fixed;
    top: 0;
}
.navbar.scrolled .nav-link{
  color: var(--prime-color) !important;
}
@media (min-width: 992px){
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: center;
}
.nav-link {
  
  /* color: white !important; */

  font-weight: 600;
}
.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  /* background: #200e83; */
  padding: 10px;
  border: 10px 0 0 10;
  border-radius: 10px 0 0 10px;
}


}
@media (max-width:765px){
  .nav-link.scrolled{
   color: #2e226d !important;
  }
  .navbar{
      padding-top:0px !important;
      padding-bottom:0px !important;
  }
  
 }
 @media (max-width:992px){
 
 }
 .nav-link {
  color: var(--prime-color) !important;
  /* font-weight: 600; */
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px;
  text-transform: capitalize !important;
}

/* dropdown */
.dropdown-menu{/*dropdown menu */
  font-family: 'Noto Sans Arabic', sans-serif;
}
.dropdown-menu .col-md-6{
  border: 0.5px solid rgb(0 0 0 / 22%);
  padding: 0;
}
.dropdown-menu .col-md-6 a{
  color: rgba(0, 0, 0, 0.685);
}
.dropdown-menu .col-md-6 a:hover{
  color: white;
  background: #3b3d8e;
}
.dropdown-menu .row{
  width: 350px;
  transform: translateX(10px);
}
.dropdown-item{
  text-transform: capitalize;
  color: #2e226d !important;
}
@media screen and (min-width:992px) {
  .dropdown-menu{
    transform: translateX(-118px);
  }
}
@media all and (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
    transition: 0.3s;
  }
  .dropdown-menu li:hover{
    padding-left: 10px;
  }
  .navbar-nav li:hover .dropdown-menu {
    display: block;
  } 
  .nav-item .submenu {
    display: none ;
    position: absolute;
    left:150%;
    top: -7px;
  }

  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }

  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }

  .dropdown li:hover > .submenu{
    display: block !important;
  }
  
  
}

/* @media (min-width:992px){
  .dropdown-submenu .dropdown-menu {
    position: absolute;
    left: 100%;
  }

}
.dropdown-menu{
  border: none !important;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #2e226d !important;
  background-color: transparent !important;
} */
/* dropdown */
/* carousel */
@keyframes hero-slider {/* hero slider animation poup */
    0% {
              transform: scale(0.2);
      opacity: 0;
    }
    70%{
      transform: scale(1.1);
    }
    100% {
              transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes puff-in-center {
    0% {
              background-position: bottom;
    }
    100% {
              background-position: center;
    }
  }
  
  /* animation for insta follow btn hover */
  @keyframes insta {
    0%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(90deg);
    }
  }





  /*==================================================================
                        banner slider
==================================================================*/
.swiper-container{
  position: relative;
}
.sw_overlay{
 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

h2 {
    line-height:1.1;
}
.hero-slider{
font-family: 'Rajdhani', sans-serif;
width: 100%;
height: 700px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
z-index: 0;
}
.hero-slider.show{
animation: hero-slider 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-delay: 0.5s;
}
@media screen and (min-width:992px) {
  .hero-slider .theme-btn-s2,.hero-style .slide-title h2,.hero-slider p{
    margin-left: 50px !important;
  }

}
@media (max-width: 991px) {
.hero-slider {
  height: 600px;
}
}

@media (max-width: 767px) {
.hero-slider {
  height: 500px;
}
}

.hero-slider .swiper-slide {
overflow: hidden;
color: #fff;
}

.hero-slider .swiper-container {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}

.hero-slider .slide-inner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 1;
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
text-align: left;
}
.hero-slider .swiper-slide.swiper-slide-active .slide-inner{
animation: puff-in-center 1s ease-out both;
animation-delay: 0.2s;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
background: transparent;
width: 55px;
height: 55px;
line-height: 53px;
margin-top: -30px;
text-align: center;
border: 2px solid #d4d3d3;
border-radius: 55px;
opacity:0;
visibility:hidden;
transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
transform:translateX(0);
opacity:1;
visibility:visible;
}

@media (max-width: 767px) {
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  display: none;
}
}

.hero-slider .swiper-button-prev {
left: 25px;
transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
font-family: "Font Awesome 5 Free";
content: "\f060";
font-size: 15px;
color: #d4d3d3;
font-style: normal;
display: inline-block;
vertical-align: middle;
font-weight: 900;
}

.hero-slider .swiper-button-next {
right: 25px;
transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
font-family: "Font Awesome 5 Free";
content: "\f061";
font-size: 15px;
color: #d4d3d3;
font-style: normal;
display: inline-block;
vertical-align: middle;
font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
width: 12px;
height: 12px;
text-align: left;
line-height: 12px;
font-size: 12px;
color: #000;
opacity: 0.3;
background:#fff;
transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
bottom: 30px;
}

@media screen and (min-width: 992px) {
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
/*     display: none; */
}
}
.swiper-pagination {
text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
bottom:50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 767px) {
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
bottom:30px;

}
}
/*--------------------------------------------------------------
  #hero-style
--------------------------------------------------------------*/
.hero-style {
height: 100vh;
transition:all .4s ease;
/* border-radius: 15px; */
overflow: hidden;
position: relative;
}


@media (max-width: 991px) {
.hero-style {
  height: 600px;
}
}

@media (max-width: 767px) {
.hero-style{
  height: 560px;
}
}

@media screen and (min-width: 992px) {
.hero-style .container {
  padding-top: 95px;
}
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all .4s ease;
  /* background: linear-gradient(45deg, #f6941c, #0d6efd); */
  padding: 12px;
  width: max-content;
}

@media (max-width: 1199px) {
.hero-style .slide-title h2 {
  font-size: 60px;
}
}

@media (max-width: 991px) {
.hero-style .slide-title h2 {
  font-size: 50px;
  margin: 0 0 35px;
}
}

@media (max-width: 767px) {
.hero-style .slide-title h2 {
  font-size: 30px;
  margin: 0 0 30px;
}
}

.hero-style .slide-text p {

font-size: 18px;
font-weight: 500;
line-height: 1.25;
letter-spacing: normal;
color: #ffffff;
margin: 0 0 40px;
transition:all .4s ease;
}

@media (max-width: 767px) {
.hero-style .slide-text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 30px;
}
}

.hero-style .slide-btns > a:first-child {
margin-right: 10px;
}
/* about */
/* .section_1 ul{
  list-style: none;
    display: flex;
    justify-content: space-around;
    background: #200e83;
    padding: 19px 2px;
    border-radius: 50px;
  
   
    white-space: nowrap;

  
}
@media (max-width:765px) {
  .section_1 ul{
    overflow-x: scroll;
  }
  
}
.section_1 ul li{
  margin: 3px;
}
.section_1 ul li a{
padding: 18px 40px;
border-radius: 50px;
} */
/* .section_1 .menu{
  display: flex;
  justify-content: center;
} */

.ab_pg_img{
  border-radius: 10px;
}
.content_sec {
  display: none;
  margin-top: 50px;
}
.heading{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.heading h2{
  text-align: center;
  position: relative;
 
 
  background: linear-gradient(112deg, #2e226d, #f7931d);
  background-clip: text;
  color: transparent;
  width: max-content;
  transform: skewX(348deg);
  padding-bottom: 20px;
}
.heading h2::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  /* background: aliceblue; */
  background: linear-gradient(112deg, #2e226d, #f7931d);
}
.section_1{
  padding-top: 100px;
}

.section_1 .card{
  border: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: auto;
  box-shadow: unset;
}
.section_1 .card h3{

  font-weight: 700;

  color: white;
}
.section_1 .card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
 
}

.section_1 .card p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background: #f6931d;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: block;
  position: relative;
  /* max-width: 100%; */
  background: #2e226d;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
 background: #f6931d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover:before {
  transform: scale(21);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.card2 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card2:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  border: 1px solid #ccc;
  background-color: white;
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #f6931d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}

.card2:hover:before {
  transform: scale(2.15);
}

.card3 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card3 .go-corner {
  opacity: 0.7;
}

.card3:hover {
  border: 1px solid #00838d;
  box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
  z-index: 500;
}

.card3:hover p {
  color: #00838d;
}

.card3:hover .go-corner {
  transition: opactiy 0.3s linear;
  opacity: 1;
}

.card4 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #ccc;
}

.card4 .go-corner {
  background-color: #00838d;
  height: 100%;
  width: 16px;
  padding-right: 9px;
  border-radius: 0;
  transform: skew(6deg);
  margin-right: -36px;
  align-items: start;
  background-image: linear-gradient(-45deg, #8f479a 1%, #dc2a74 100%);
}

.card4 .go-arrow {
  transform: skew(-6deg);
  margin-left: -2px;
  margin-top: 9px;
  opacity: 0;
}

.card4:hover {
  border: 1px solid #cd3d73;
}

.card4 h3 {
  margin-top: 8px;
}

.card4:hover .go-corner {
  margin-right: -12px;
}

.card4:hover .go-arrow {
  opacity: 1;
}
.content_sec h3,.content_sec_sm h3{
  font-weight: 800;
  color: #2e226d;
  text-align: center;
  margin: 10px 0;

}
.content_sec h4,.content_sec_sm h4{
  font-weight: 800;
    color: #f29426;
}
/* about-section */
.about_section h4,.about_section h3{
  text-align: center;
}
.card_ab h5{
  color: var(--prime-color);
}
.card_icon img{
  filter: invert(11%) sepia(26%) saturate(7263%) hue-rotate(242deg) brightness(94%) contrast(94%);
}
.card_icon {
  /* border: 1px solid #c0a6d5; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  /* border-radius: 50%; */
  width: 55px;
  margin-bottom: 11px;
}
.lordIcon{
  color: #2e226d;
}
.card_ab {
  /* background: #e1dcff; */
  padding: 10px;
  height: 100%;
  border-radius: 10px;
  transition: 1s;
  border: 1px solid gainsboro;
}
.card_ab:hover{
  transform: translateY(-25px);
}
.aboutrow{
  margin-top: 50px;
}
@media (max-width:765px){
  .aboutrow{
    gap: 10px;
  }

}
.about_footer{
  width: 1000px;
    margin: auto;
    text-align: center;
}
.panel{
  max-height: 0;
  overflow: hidden;
  transition: 1s;
}
.accordion.active .panel{
  max-height: 100%;
}
/* vision */
.vision {
  display: flex;
  justify-content: center;
}
.vision img{
  width: 100px;
}

/* vision */
/* goals */
.g_icn{
  width: 60px;
  margin-bottom: 20px;
}
.g_icn img{
  filter: invert(100%) sepia(0%) saturate(7445%) hue-rotate(44deg) brightness(116%) contrast(90%);
}
.section_goals .card{
  border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 250px; */
    width: 100%;
    padding: 10px 0;
}
.section_goals h3{
  
    font-weight: 800;
    color: white;

}
.section_goals span{
  font-size: 24px;
 
    font-weight: 800;
    color: white;

}
.section_goals .col-md-3{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:765px){
  .section_goals .col-6{
    padding: 5px !important;
  }
}
@media (min-width:992px){
  .section_goals .card{
    height: 250px;
  }
  .section_goals .row{
    margin-bottom: 25px;
  }
} 
.section_goals p{
  text-align: center;
}
.vision_card{
  text-align: justify;
    width: 1000px;
    margin: auto;
}

/* social mediaicons */
.card {
  width: fit-content;
  border: none;
  height: fit-content;
  /* background-color: rgb(238, 238, 238); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: .3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128C7E;
  transition-duration: .3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* social mediaicons */

/* why choose us */

.section_2 .card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #3b2e7e;
  color: white;
  height: 100%;
  border-radius: 15px;

}
.section_2 .card_head{
  width: 50px;
  padding: 10px;
  background: white;
  border-radius: 50%;
}
.section_2 .col-md-4{
  margin-bottom: 20px;
}


/* why choose us */

/* footer */
a{
  text-decoration:none !important;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

a, button{
  transition:0.5s;
}

a, p{
  font-size:14px;
}

/* h1, h2, h3, h4, h5, h6{
  color:var(--primary);
  font-weight:600;
} */

a, button, input, textarea, select{
  outline:none !important;
}

fieldset{
  border:0;
}

.title{
  color:var(--primary);
}

.flex, .fixed_flex{
  display:flex;
}

.flex-content{
  width:100%;
  position:relative;
}
.social_media{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.padding_1x{
  padding:1rem;
}

.padding_2x{
  padding:2rem;
}

.padding_3x{
  padding:3rem;
}

.padding_4x{
  padding:4rem;
}

.btn{
  padding:0.8rem 2rem;
  border-radius:5px;
  text-align:center;
  font-weight:500;
  text-transform:uppercase;
}

.btn_1{
  border:1px solid var(--primary);
  background-color:var(--primary);
  color:var(--secondary);
}

.btn_1:hover{
  background-color:transparent;
  color:var(--primary);
}

.btn_2{
  border:1px solid var(--secondary);
  background-color:var(--secondary);
  color:var(--primary);
}

.btn_2:hover{
  border:1px solid var(--primary);
  background-color:var(--primary);
  color:var(--secondary);
}

@media (max-width:920px){
  .flex{
      flex-wrap:wrap;
  }
  
  .padding_1x, .padding_2x, .padding_3x, .padding_4x{
      padding:1rem;
  }

  .btn{
      padding:0.5rem 1rem;
  }
  
  a, p{
      font-size:12px;
  }
}




footer{
  background-color:var(--primary);
  color:var(--lite);
  margin-top: 100px;
}

footer h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

footer a{
  color:white;
  display:block;
  margin:15px 0;
  text-transform: capitalize;
}

footer a:hover{
  color:white;
}

footer fieldset{
  padding:0;
}

footer fieldset input{
  background-color:#334f6c;
  border:0;
  color:var(--lite);
  padding:1rem;
}

footer fieldset .btn{
  border-radius:0;
  border:0;
}

footer fieldset .btn_2:hover{
  background-color:var(--secondary);
  border:0;
  color:var(--primary);
}

footer .flex:last-child{
  align-items:center;
}

footer .flex:last-child .flex-content:last-child{
  text-align:right;
}

footer .flex:last-child p{
  color:var(--white);
}
.footer_bottom{
  display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer_bottom a{
  margin-left: 10px;
}

/* ========================socil media==================== */
.social_menu{
  display: flex;
    justify-content: center;
    align-items: center;
}
.social_menu a{
  font-size: 22px;
    color: white;
}
.social_menu div {
  margin: 0 10px;
  height: 40px;
  width: 40px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 2px 1px 5px rgb(15 14 15 / 85%);
}
/* ========================socil media==================== */
/* footer .flex:last-child a:hover{
  background-color:var(--secondary);
  color:var(--gray);
} */

@media (max-width:1100px){
  footer .flex:first-child{
      flex-wrap:wrap;
  }
  
  footer .flex:first-child .flex-content{
      flex: 1 1 40%;
  }
}

@media (max-width:920px){
  footer .flex:last-child .flex-content:last-child{
      text-align:left;
  }
}

@media (max-width:320px){
  footer .flex:first-child .flex-content{
      flex:1 1 100%;
  }
}
@media (min-width:765px){
  .suscribe{
    display: flex;
    flex-direction: column;
  }
}
/* footer */


/* ================================about ==================================================*/
.header{
 
  position: relative;
  height:75vh;
 
}
.header img{
  object-fit: cover;
    height: 100%;
    object-position: right;
}
.header_overlay{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.header_overlay h1{
  color: white;
}
@media (max-width:765px){
  .header{
    height: 500px;
  }
}
.about1{
  padding-top: 100px;
}
.ab1_img img{
  border-radius: 25px;
    overflow: hidden;
  
}
.ab1_img{
  position: relative;
}
/* .ab_img_overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
} */

.about1 h3{
  background: linear-gradient(112deg, #2e226d, #f7931d);
    background-clip: text;
    color: transparent;
    width: max-content;
    transform: skewX(348deg);

}
.about1 .col-md-6{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about1 p{
  line-height: 28px;
    text-align: justify;
}

/* abt */
:root{
  --header-height: 3rem;

 
  --first-color: #2e226d;
  --first-color-dark: #2F0A0D;
  --text-color: #524748;
  --first-color-light: #7B6F71;
  --first-color-lighten: #FBF9F9;

  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*===== Margins =====*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*===== z index =====*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}
  
@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
 
  /* font-family: var(--body-font); */
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
 
  /* color: var(--text-color); */
  line-height: 1.6;
}

h1,h2,h3,ul,p{
  margin: 0;
}

h2,h3{
  font-weight: var(--font-semi-bold);
}

ul{
  padding: 0;
  list-style: none;
}

a{
  text-decoration: none;
}

/* img{
  max-width: 100%;
  height: auto;
  display: block;
} */

/*===== CLASS CSS =====*/
.section {
  padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);

  /* margin-bottom: var(--mb-3); */
  background: linear-gradient(112deg, #2e226d, #f7931d);
  background-clip: text;
  color: transparent;
  width: max-content;
  transform: skewX(348deg);
}

.section-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

/*===== LAYOUT =====*/
.bd-container {
  max-width: 1024px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #000;
}

/*===== ABOUT =====*/
.about__data {
  text-align: center;
}

.about__description span {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}

.about__number {
  font-size: var(--h1-font-size);
  color: var(--first-color);
  display: block;
}

.about__img {
  justify-self: center;
  width: 220px;
  border-radius: .5rem;
  box-shadow: -6px 14px 13px 0px rgba(0,0,0,0.2);
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 576px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  section {
    padding-top: 6rem;
  }

  /* .section-title {
    margin-bottom: var(--mb-5);
  } */

  .about__description {
    text-align: initial;
    margin-bottom: 2rem;
}

  .about__img {
    width: 300px;
  }
}
@media (max-width:765px){
section{
  padding-top: 3rem;
}
}

@media screen and (min-width: 1024px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img img {
    width: 740px;
  }
}

/* home services */
.home_service{
  display: flex;
  justify-content: center;
  margin: 20px 0;

}
.home_service a {
  background: linear-gradient(112deg, #70689d, #2e226d);
  padding: 11px 40px;
  border-radius: 6px;
  color: #ffffff;
  width: 200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.sec-icon {
position: relative;
display: inline-block;
padding: 0;
margin: 0 auto;
}







.advertisers-service-sec span {
color: rgb(255, 23, 131);
}

.advertisers-service-sec .col-md-3 {
padding: 0 1em 1em 1em;
text-align: center;
}

.advertisers-service-sec .service-card {
width: 100%;
height: 100%;
padding: 2em 1.5em;
border-radius: 5px;
box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
cursor: pointer;
transition: 0.5s;
position: relative;
z-index: 2;
overflow: hidden;
background: #fff;
}

.advertisers-service-sec .service-card::after {
content: "";
width: 100%;
height: 100%;
background: linear-gradient(#644af1, rgb(46 34 109));
position: absolute;
left: 0%;
top: -98%;
z-index: -2;
transition: all .6s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
font-size: 20px;
text-transform: capitalize;
font-weight: 600;
color: #1f194c;
margin: 1em 0;
z-index: 3;
}

.advertisers-service-sec p {
color: #575a7b;
font-size: 15px;
line-height: 1.6;
letter-spacing: 0.03em;
z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
background-color: #2c7bfe;
position: relative;
margin: auto;
font-size: 30px;
height: 2.5em;
width: 2.5em;
color: #ffffff;
border-radius: 50%;
display: grid;
place-items: center;
transition: 0.5s;
z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
top: 0;
}
.advertisers-service-sec .service-card:hover .service_btn a{
  color: white;
  border: 1px solid white;
  
}

.service-card .icon-wrapper {
background-color: #ffffff;
color: rgb(46 34 109);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
color: #f7941d;
}

.advertisers-service-sec .service-card:hover h3 {
color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
color: #f0f0f0;
}
.service-card img{
  padding: 10px;
    filter: invert(11%) sepia(26%) saturate(7263%) hue-rotate(242deg) brightness(94%) contrast(94%);
}
.service-card h3{
  color: var(--prime-color);
}
/* service  button */
.service_btn a {
  color: #2e226d;
  border: 2px solid;
  padding: 5px 38px;
  border-radius: 5px;
}
/* home services */

/* privalt limited company */

  @media (max-width:765px){
   
  }
.service_section h2{
  color: #2e226d;
  margin: 15px 0;
}
.button--calypso span {
	display: block;
	position: relative;
	
	z-index: 10;
}
.content__item{
  width: 110px;
    padding: 10px;
    background: #2e226d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 6px;
}
.content__item a{
  color: white;
}
.button--calypso:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0,-105%,0) scale3d(1,2,1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0,100%,0) scale3d(1,2,1);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}
.s_img{
  border-radius: 10px;
    overflow: hidden;
}
.service_section p{
  text-align: justify;
    line-height: 24px;
}
.service_section .col-md-6 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (min-width:765px){
  .service_section .col-md-12{
    margin-top: 20px;
  }
  .s1 .card{
    padding: 25px;
  }
  .s1 .card img{
    width: 45px;
  }
}
@media (max-width:765px){
  .s1_footer{
    font-size: 12px;
  }
  .s1_footer{
    padding-top: 1rem;
  }
  .s1 .card{
    padding: 20px 10px;
  }
  .s1 .card img{
    width: 30px;
  }
  
}
.s1_footer{
  color: #4c5052;
}
.s1 h6{
  margin: 10px 0;
}

/* privalt limited company */
/* one person company */
.s1 .card img {
 
  margin-right: 10px;
  filter: invert(14%) sepia(39%) saturate(3736%) hue-rotate(237deg) brightness(89%) contrast(98%);
}
.s1 .card{
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
   
}
.s1 .card_head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.s1 h5{
  color: #2e226d;
}
.s1 .card_body{
  font-size: 14px;
    color: #4c5052;
}
@media (max-width:765px){
  .s1 .card_body{
    font-size: 12px;
      
  }
}
.s1 .col-md-3,.s1 .col-md-4,.s1 .col-md-12,.s1 .col-md-6{
  margin-bottom: 20px;
}
/* one person company */
/* gst foreigners */
.s1 b{
  color: #2e226d;
   
}
/* gst foreigners */




/* auditing */

.audit_card{
  position: relative;
  padding: 10px;
}
.service_card .card_body{
  margin: 20px 0;
}
.service_group .col-md-4{
  margin-bottom: 20px;

}
.s1 h4{
 padding-bottom: 10px;
 margin-bottom: 10px;
 color: var(--prime-color);
 position: relative;  
  
}
@media (min-width:765px){
  .s1 h4{
    width: max-content;    

  }
  
}
.s1 h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--prime-color);
}
/* auditing */
/* servicse_group */
.wrapper {
  display: flex;
 
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* min-height: 100vh; */
}
.wrapper .card{
  box-shadow: unset;
}
.wrapper .card a{
    position: relative;
}
.wrapper .card a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000087;
    border-radius: 15px;
}
.region_text {
    position: absolute;
    bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.region_text h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.region_text p{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    margin-bottom: 10px;
    color: white;
}
/* .region_text h5:before {
  content: 'Экскурсии';
  position: absolute;
  margin-top: -25px;
} */
.region_buttons {
    color: #ffffff;
    width: fit-content;
    padding: 7px 35px;
    border-radius: 8px;
    background-color: transparent;
    border: 2px solid white;
}
.wrapper img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}
/* .service_group h2{
  text-align: center;
  color: var(--prime-color);
  margin-bottom: 20px;
} */
/* service_group */

/* quick call */
.quick_contact i{
  margin-right: 18px;
}
.quick_contact div {
  width: 125px;
 
  margin: 10px 0;
  border-radius: 10px 0 0 10px;
  transition: 1s;
  transform: translateX(80px);
}
.quick_contact {
  position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
   

}
.quick_contact a{
  color: white;
  padding: 12px 15px;
}
.quick_contact div:hover{
  transform: translateX(0)
}

/* quick contact */
/* modal */
.modal i{
  font-size: 25px;
    color: #a79898;
}
.modal-body{
  display: flex;
    justify-content: center;
    align-items: center;
}
.modal-body span{
  margin: 0 15px;
}

/* =============texstimonial============== */

 /* heading part*/
    .title-row .h2{
      padding: 0;
    }

    .title-row .img-div{
      display: flex;
      justify-content: center;
    }
    .title-row .google{
      width: 50px;
    }
    .title-row .gole-img{
      width: 100%;
    }

    .img-star{
      width: 25px;
    }
  


  /* slider part */

    .swiper-slide{
      display: flex;
      justify-content: center;
    }

    .section-5 .card .f-prt{
      padding: 1rem 1rem 0;
      display: flex;
      gap: 5px;
    }
   .section-5 .card .img-div{
      width: 35px;
      height: 35px;
      overflow: hidden;
      border-radius: 50%;
    }
    .section-5 .card .card-title{
      margin: 0;
    }
.section-5 .card{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid gainsboro;
}
    .stars{
      padding: 0;
      display: flex;
    }
    .img-star{
      width: 15px;
    }

  
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    opacity: 0;
  }
  .r1 img{
    width: 200px;
  }
  .r1 h2{
    color: var(--prime-color);
  }
  .r2 i{
    color: #ffbc25;
  }
  .r2 h2{
    font-size: 5rem;
    font-weight: bolder;
  }
  .r2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .rvw{
    display: flex;
    justify-content: center;
    align-items: center;
  }@media (max-width:765px){
    .rvw{
      flex-direction: column;
    }
  }
  @media (min-width:765px){
    .r2{
      margin-left: 20px;
    }
  }

/* ==============testimonial======================== */
.swiper-button-next, .swiper-button-prev {
  display: none !important;
}



/* blog */
.blog_1 .tax-content p{
  
  text-align: justify;
  font-size: 16px;
  line-height: 2rem;
}
.blog_1 small{
  font-weight: 600;
}
.blog_1{
    padding-top:0px !important;
}
.blog_1 img{
    width:100%;
    height:350px !important;
}

.blog_1 .tax-content{
  padding-top: 20px;
  padding-left: 20px;
 
}
.blog_1 small{
    display:flex;
    justify-content:space-between;
}



.news-section {
	position: relative;
	padding: 120px 0 70px;
	overflow: hidden;
  }
  
  .news-block {
	position: relative;
	margin-bottom: 50px;
	margin-top: 30px;
  }
  .news-block .inner-box {
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
  }
  .news-block .inner-box:hover .image-box .image a:after {
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 400ms linear;
	transition: all 400ms linear;
  }
  .news-block .inner-box:hover .image img {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
  }
  .news-block .image-box {
	position: relative;
  }
  .news-block .image-box .image {
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
  }
  .news-block .image-box .image img {
	display: block;
	width: 400px;
	height:250px;
	border-radius: 15px;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
  }
  .news-block .image-box .image a:after {
	background: rgba(255, 255, 255, 0.3);
	bottom: 0;
	content: "";
	left: 50%;
	position: absolute;
	right: 51%;
	top: 0;
	opacity: 1;
	pointer-events: none;
	-webkit-transition: all 400ms linear;
	transition: all 400ms linear;
  }
  .news-block .image-box .date {
	position: absolute;
	right: 30px;
	top: 0px;
	background: #000000;
	color: #fff;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	height: 60px;
	width: 50px;

	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-transform: uppercase;
	border-radius: 0 0 50px 50px;
	letter-spacing: 1px;
  }
  .news-block .image-box .date b {
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 16px;
	color: #fff;
  }
  .news-block .content-box {
	position: relative;
	margin-top: -100px;
	padding: 0 20px;
  }
  .news-block .content-box .content {
	position: relative;
	padding: 20px 30px 1px;
	background-color: #fff;
	border-radius: 15px 15px;
	-webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
			box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  }
  .news-block .content-box .post-info {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	/* margin-bottom: 10px;
	padding-bottom: 25px;
	padding-left: 0; */
  }
  .news-block .content-box .post-info li {
	position: relative;
	font-size: 14px;
	line-height: 20px;
	color: #7d8185;
	font-weight: 400;
	margin-right: 14px;
  }
  .news-block .content-box .post-info li i {
	margin-right: 2px;
	color: black;
	font-size: 14px;
  }
  .news-block .content-box .title {
	margin-bottom: 25px;
  }
  .news-block .content-box .title:hover {
	color: #b51201;
  }
  .news-block .read-more {
	font-size: 14px;
	line-height: 30px;
	color: #7d8185;
	padding: 10px 30px;
	font-weight: 400;
	margin-left: -30px;
	margin-right: -30px;
	border-top: 1px solid #dae6e6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
  }
  .news-block .read-more i {
	margin-left: 10px;
	color: var(--theme-color1);
	font-size: 16px;
	-webkit-transition: all 100ms linear;
	transition: all 100ms linear;
  }
  .news-block .read-more:hover {
	color: #901111;
  }
  .news-block .read-more:hover i {
	color: #901111;
  }

  .pb-70{
	margin-top: 20px;
  }


  .recent-post {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}
.recent-post .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px; /* Add border radius for rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add box shadow */
 
} 



/* .recent-post .card-body p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.recent-post .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
} */

.recent-post h3{
  font-size: 15px;
  color: #181515bb;
  
}

.recent-post a{
    color:black;
}

.tax-content a{
    font-size:20px;
}
.blog_1 .tax-content ul{
    list-style:disc;
}

@media (max-width:765px){
  .blog_1 .tax-content p{
    padding: 10px 0;
    text-align: left;
  }
    .blog_1 .tax-content{
        padding-right:20px;
    }
  .blog_1 .post-meta{
        padding-right:20px !important;
    }
    
  .blog_1{
      padding-top:0 !important;
  }
  .quick_contact div {
  width: 125px;
 
}
}


/*heading*/

/*.blog_1 .new-contents{*/
/*  width: 100%;*/
/*  padding-top: 30px;*/
/*  display:flex;*/
/*  justify-content:flex-start;*/
/*}*/
/*.blog_1 .new-contents .cards{*/
/*  display: flex !important;*/
/*  flex-direction: column !important;*/
/*  align-items: flex-start !important;*/
/*  justify-content: flex-start !important;*/
/*  width: 100% !important;*/
/*  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.9)!important;*/
/*}*/
/*.new-contents #headings-list p > a{*/
/*  text-decoration: none !important;*/
/*  color: #59595e !important;*/
/*  font-weight: 500 !important;*/
/*  font-size: 16px !important;*/
/*}*/

/*.blog_1 .new-contents .cards h6{*/
/*  font: 16px !important;*/
/*  color: black !important;*/
/*  font-weight: 400 !important;*/
/*}*/



.heading {
  width: 100%;
  padding: 30px 0;
}

.heading .card {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.heading .card h6 {
    margin-top: 0;
    font-size: 16px;
    font-weight: bold;
}

.heading .card #headings-list p {
    margin: 5px 0;
}

.heading .card #headings-list a {
    color:rgb(61, 60, 60);
    text-decoration: none;
}

.heading .card #headings-list a:hover {
    text-decoration: underline;
}


