.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}
.title::before {
  content: "";
  position: absolute;
  background-color: #eb011b;
  width: 100px;
  height: 3px;
  bottom: 0;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 40px;
  color: #1c075e;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:10px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:100px;
  height:3px;
  background-color:#eb011b;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #eb011b;
  border-radius: 10px;
}

.btn-style-one:hover{
  background-color: #1c075e;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #4a4a4a;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  border-radius: 20px;
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff;
}
.line-height30{
  line-height: 30px;
  padding-left: 20px;
}
/* li {
    list-style: disc !important;
} */
/* serif;
  background-color: #ffffff;
  color: rgb(39, 43, 51);
  display: flex;
  place-content: center;
  place-items: center;
  height: 100vh;
} */

.accordion-container {
  /* max-width: 600px; */
  width: 100%;
}

details {
  font-size: var(--title);
  margin: 0 auto;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;
  padding: 15px;
  background-color: #f6f3ff;
  margin: 5px;
  border-radius: 7px;

  &:hover {
    opacity: 1;
  }
}

summary {
  user-select: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  padding: var(--header-padding);

  &:hover {
    text-decoration: underline;

    & .title {
      opacity: 1;
    }

    & .accordion-icon {
      opacity: 1;
    }
  }
}

.accordion-title {
  color: #151518;
  width: 90%;
  font-weight: 500;
  transition: all 250ms ease-in-out;
}

.accordion-icon {
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transition: all 150ms ease-out;

  svg {
    width: var(--icon-size);
    height: var(--icon-size);
    transition: transform 0.3s ease-in-out;
  }
}

.accordion-content {
  color: #3c3e47;
  padding: var(--content-padding);
  font-size: var(--content);
  font-weight: 400;
  line-height: 1.65;
}

/** Remove Marker */
summary::-webkit-details-marker {
  display: none;
}

/** Rotate Icon */
details[open] .accordion-icon svg {
  transform: rotate(180deg);
}
.elementor-element {
  /* background-color: #FDE325; */
}
#shiva
{
width: 230px;
  height: 140px;
  border-radius: 10px;
float:left;
margin:5px;
}
.count
{
line-height: 100px;
color:white;
margin-left:30px;
font-size:25px;
}
.pluss{
  color: #1C1C1C;
  font-family: 'Barlow Semi Condensed';
  font-size: 2.4em;
  font-weight: 600;
  text-transform: none;
  font-style: normal;
  text-shadow: 2px 4px 2px rgb(0 0 0 / 18%);
}
.plusso{
  color: #ffffff;
  font-family: 'Barlow Semi Condensed';
  font-size: 2.4em;
  font-weight: 600;
  text-transform: none;
  font-style: normal;
  text-shadow: 2px 4px 2px rgb(0 0 0 / 18%);
}
.amclass{
  margin-left: 40px;
}
.projectclass{
  margin-left: 50px;
  color: #FFFFFF;
  font-family: 'Oswald';
  font-size: 1.0em;
  font-weight: 500;
  text-transform: none;
}
.projectclass1{
  margin-left: 70px;
  color: #000000;
  font-family: 'Oswald';
  font-size: 1em;
  font-weight: 400;
  text-transform: none;
}
.sub{
  color: #FFFFFF;
  font-size: 16px;
  font-family: 'Barlow Semi Condensed';
  font-weight:100;
}
.inputtext{
  font-family: 'Barlow Semi Condensed';
  font-size: 0.8em;
  font-weight: 400;
  color:#414141;
}
.buttom2{
  padding: 3px 10px 3px 10px;
  font-family: Sans-serif;
  font-size: 15px;
  color: white;
  background-color: #00b9f2;
  border-radius: 5px;
  width: 80%;
}
.imgbg{
  background-color: #0088CC;
  background-image: url(https://fabbeat.in/alphabet/wp-content/uploads/2022/05/coupon.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 60px 0px 60px 0px;
  box-sizing: border-box;
}
.btndet{
background-color: black ; /* blue */
border: none;
color: white;
height: 40px;
}
.btndet:hover {
background-color: #00b9f2;
color: white;
}
.proservises{
  background-color: #FDE325;
  padding: 20px 0;
}
.copystyle{
  padding: 0;
}
.copystyle h4{
  font-family: 'Oswald';
}
.copystyle span{
  font-family: 'Barlow Semi Condensed';
}
.single-slider.bg-img {
     background-size: cover; 
	 background-position: center;
	 width: 100%; 
	 height: 90vh;
  }
  
  
@media (max-width: 575px) {
  .imgbg{
  background-color: #0088CC;
  background-image: url(https://fabbeat.in/alphabet/wp-content/uploads/2022/05/coupon.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 50px 0px 160px 0px;
  box-sizing: border-box;
  }
  .single-slider.bg-img {
      height: 165px;
  }
}
.category-box{
  text-align: center;
  /* background-color: #fff; */
  height: 100px;
  align-content: center;
  border-radius: 15px;
  border: 1px solid #1c075e;
  transition: transform .3s;
  margin-bottom: 100px;
}
/* .category-box:hover{
  transform: scale(1.1);
  border: 1px solid #d2d2d2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
} */

.icons{
  padding: 15px !important;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  color: #000;
  margin-bottom: 20px;
}


@media only screen and (max-width: 600px) {
   section{
      padding: 0rem !important;
      padding-top:20px !important;
      background: #e4e4e4;
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
   } 
}
/* ===================== */
.desp {
  color: #8f8f8f;
  font-family: 'Lato';
}
.card-title {
  margin-bottom: .75rem;
  font-family: sans-serif;
}
.price{
  font-size:24px;
  margin-right: 25px;
}

.del-price{
  font-size:15px;
  margin-right: 25px;
}
a.btn.btn-primary {
  float: right;
}
.btn-primary {
  color: #fff !important;
  background-color: #1c075e;
  border-color: #1c075e;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500;
  text-align: left;
}
/* ====================== */

.inputtext{
  height: 39px;
  background-color: #ffffff;
  border-color: #ECECEC;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  border-radius: 7px;
  font-family: 'Barlow Semi Condensed' !important;
}
.categoreis-img{
  width: 80px;
  height: auto;
  position: absolute;
  right: 30%;
  top: -45px;
  border-radius: 50px;
  background-color: white;
  padding: 5px;
  border: 1px solid #1c075e;
  transition: top ease 0.5s;
}
.category-box .categoreis-img:hover{
  top: -55px;
}

.wishlist-icon {
  color: black; /* This will show as the border for the outlined heart */
  cursor: pointer;
  margin-top: 10px;
  font-size: 20px;
  margin-left: 10px;
}

/* Filled red heart when active */
.wishlist-icon.active {
  color: red;
}


.product-box {
  width: 100%; /* Make it responsive */
  max-width: 250px; /* Set a maximum width for the card */
  height:100%; /* Fixed height */
  overflow: hidden; /* Prevent overflow */
  margin: auto; /* Center the box */
  position: relative; /* For positioning the wishlist icon */
  border: 1px solid #ddd; /* Optional: border for better visibility */
  border-radius: 20px; /* Optional: rounded corners */
  background-color: #fff; /* Background color */
  display: flex; /* Use flexbox */
  flex-direction: column; /* Arrange children in a column */
  /*align-items: center;  Center horizontally */
  justify-content: center; /* Center vertically */
}

.card-img {
  width: 100%; /* Full width */
  height: 230px; /* Fixed height */
  object-fit: cover; /* Maintain aspect ratio */
  display: block; /* Ensure no extra space */
}

.card-body {
  padding: 10px; /* Adjust padding for content */
  /* text-align: center;  */
 
}

.wishlist-icon {
  position: absolute; 
  top: 10px;
  /* right: 10px; */
  left: 10px;
  font-size: 20px; 
  /* color: #f00;  */
}

/* @media (max-width: 768px) {
  .product-box {
      max-width: 100%; 
      height: auto; 
  }

  .card-img {
      height: 150px; 
  }
} */

.card {
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    margin-bottom: 30px;
    
}




}
@media screen and (min-device-width: 481px) and (max-device-width: 768px) { 
  .old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #777;
    margin-left: 2px; !important;
  }

}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #777;
  text-align: center;
}



.new-price {
  color: #777;
  font-weight: 500;
  font-size: 20px;
  /* margin-left:75px; */
}

.ec-pro-rat-price {
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ec-pro-title {
  padding: 0 15px;
  font-size: 18px;
 
  color: #333;
  line-height: 27px;
}
@media (max-width: 600px) {
.ec-price {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: contents;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  letter-spacing: 0.4px;
  }

}
@media (max-width: 768px) {
.about-section .image-column .inner-column {
    position: relative;
    padding-left: 5px;
    padding-bottom: 125px;
}
.about-section .content-column {
    position: relative;
    margin-bottom: 57px;
    margin-top: 80px;
}


.round-black-btn {
    border-radius: 4px;
    background: #1c075e;
    color: #fff;
    padding: 7px 12px !important;
    display: inline-block;
    /* margin-top: 20px; */
    border: solid 2px #1c075e;
    transition: all 0.5s ease-in-out 0s;
}
}
.ec-pro-content {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* padding: 15px 0 0; */
    text-align: left;
    background-color: #fff;
}

.ec-product-inner {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 1px 2px 14px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 14px rgba(0, 0, 0, 0.1);
}

.ec-pro-image-outer {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 11;
  position: relative;
  padding: 15px 15px 0 15px;
}

.ec-spe-pro-btn {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ec-price {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  letter-spacing: 0.4px;
}

.ec-pro-rating {
  opacity: 0.7;
  position: relative;
  margin-left: auto;
}

@media (max-width: 991px){
	.ec-pro-title{
	
	font-size: 15px !important;
	}
}