body {
  margin: 0;
  font-family: 'Noto Naskh Arabic', serif;
    position: relative;
}

.nav-logo {
  height: 100px;
  margin-bottom: -15px;
  margin-left: 5px;
  margin-top: -15px;
}

@media (max-width: 576px) {
  .nav-logo {
    height: 60px; /* Adjust the height for mobile devices */
    margin-bottom: -5px;
    margin-left: 2px;
    margin-top: -5px;
  }
}

/* Responsive Styling for Tablets */
@media (max-width: 768px) {
  .nav-logo {
    height: 90px;
    margin-bottom: -7px;
    margin-left: 3px;
    margin-top: -9px;
  }
}



.mobile-number{
  color: rgb(242 91 33);
  cursor: pointer;
  font-weight: bold;
  margin: 10px;
}

.mobile-number:hover{
  color: black;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  background-color: white;
  color: black;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2; /* Ensure navbar is above overlay */
}


.navbar-logo {
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px; /* Add right margin to the logo */
}

.navbar-menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.navbar-menu-item {
  margin: 0 15px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out,
    font-weight 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.navbar-menu-item:hover {
  color: #41b2c5;
}

.navbar-menu-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #41b2c5;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

.navbar-menu-item:hover::after {
  width: 100%;
}

@media (max-width: 576px) {
  .navbar-menu-item {
    margin: 0 15px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out,
      font-weight 0.3s ease-in-out, font-size 0.3s ease-in-out;
  }

  .navbar-menu-item:hover {
    color: #41b2c5;
  }

  .navbar-menu-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #41b2c5;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
  }

  .navbar-menu-item:hover::after {
    width: 100%;
  }
  .navbar-menu-item {
    padding: 10px 10px; /* Adjust padding for increased clickable area */
    position: relative;
    margin: 5px 0; /* Adjust margin as needed */
  }

  .navbar-menu-item::before {
    height: 0.5px; /* Adjust the height as needed */
    margin: 6px 0; /* Adjust the margin as needed */
  }

  
  
  /* Responsive Styling for Mobile Devices */
 
  
  .navbar {
    padding: 0px 10px;
    align-items: center;
  }
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 3; /* Ensure hamburger is above overlay */
}

.hamburger-bar {
  width: 25px;
  height: 3px;
  background-color: #41b2c5;
  margin: 4px 0;
  transition: background-color 0.3s ease-in-out;
}

.navbar-phone {
  display: flex;
  background: #079ab4;
  align-items: center;
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  color: #fff;
  padding: 8px;
  border-radius: 50px;
  margin-left: 20px; /* Add left margin to the phone number */
  margin-right: 20px; /* Add right margin to the phone number */
  z-index: 2; /* Ensure phone is above overlay */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Add this line for the black shadow */
  border: 1px solid black;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
}

.navbar-phone:hover {
  background: #079ab4;
  /* border: 1px solid black; */
}

.phone-icon {
  margin-right: 8px;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: white;
}
/* 
.content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1; /* Ensure content is above overlay */
/* padding: 80px 20px 20px; /* Adjusted padding to account for the fixed navbar */
/* margin-top: 65px; Add top margin to prevent overlap with the navbar */
/* } */
*/ */ h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

h4 {
  font-size: 1.5em;
  /* margin-bottom: 30px; */
}

/* Update this style in your existing CSS */
.navbar-menu-item.active {
  color: #41b2c5;
  position: relative;
}

.navbar-menu-item.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #41b2c5;
  bottom: 0px;
  left: 50%; /* Updated to start from the left of the navbar item */
  transition: width 0.3s ease-in-out;
}

.navbar-menu-item.active:hover::after {
  width: 0; /* To prevent the underline from extending on hover */
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 65px;
    left: 0;
    background-color: white;
    z-index: 4; /* Ensure menu is above overlay */
  }

  .navbar-menu.show {
    display: flex;
  }

  .navbar-menu-item {
    margin: 15px 0;
  }

  .navbar-hamburger {
    display: flex;
    z-index: 5; /* Ensure hamburger is above overlay */
    margin-right: 5px;
  }

  .logo {
    margin-left: 5px;
    height: 45px;
  }

  .content {
    padding: 20px 0;
  }

  .about-image,
  .about-text {
    max-width: 100%; /* Adjust width for responsiveness */
    margin: 0;
  }

  .navbar-phone {
    display: flex;
    background: #079ab4;
    align-items: center;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
      box-shadow 0.3s ease-in-out;
    color: #fff;
    padding: 5px;
    border-radius: 50px;
    margin-left: 20px; /* Add left margin to the phone number */
    margin-right: 20px; /* Add right margin to the phone number */
    z-index: 2; /* Ensure phone is above overlay */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Add this line for the black shadow */
  }
}

.home-section {
  margin-top: 60px;
  /* background: url("../images/hiring-a-painter.jpeg") center/cover no-repeat;
  background-size: cover; */
  /* padding: 80px 20px 20px; */
  background-color: rgb(238, 240, 132);
  /* margin-top: 0px; */
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



@media (max-width: 768px) {
  .home-section {
    margin-top: 60px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .home-section {
    margin-top: 60px;
    height: 600px;
    /* padding: 20px 10px; Adjust padding for smaller screens */
  }
  
}

.home-content {
  padding: 20px;
  display: flex;
    flex-direction: column;
    align-items: center;
}

.home-paragragh{
/* background-color: rgba(0, 0, 0, 0.5);; */
/* padding: 20px; */
color: black;
/* opacity: 50%; */
/* border: 2px solid #41b2c5; */
border-radius: 20px;
margin-bottom: 20px;
}

.hamburger-bar-close {
  background-color: rgb(6, 32, 61); /* Change color for close icon */
  transition: background-color 0.3s ease-in-out;
}

.hamburger-bar-1-close {
  transform: rotate(-45deg) translate(-6px, 9px);
}

.hamburger-bar-2-close {
  opacity: 0;
}

.hamburger-bar-3-close {
  transform: rotate(45deg) translate(-6px, -9px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: white; /* Adjust opacity as needed */
  z-index: 0; /* Set a base z-index */
}

@keyframes luminous {
  0% {
    box-shadow: 0 0 10px #ff8c00, 0 0 20px #ff8c00, 0 0 30px #ff8c00;
  }
  50% {
    box-shadow: 0 0 20px #41b2c5, 0 0 30px #41b2c5, 0 0 40px #41b2c5;
  }
  100% {
    box-shadow: 0 0 10px #ff8c00, 0 0 20px #ff8c00, 0 0 30px #ff8c00;
  }
}

.btn-contact {
  font-size: 5em;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: 800px;
  /* background: linear-gradient(to right, #3399ff, #41b2c5); */
  background: #079ab4;
  /* background-color: wheat; */
  color: white;
  font-weight: 700;
  border: 1px solid black;
  transition: background 0.3s ease-in-out;
  /* animation: luminous 2s infinite; */
  font-family: 'Times New Roman', Times, serif;
}

/* Responsive font-size adjustments */
@media (max-width: 576px) {
  .btn-contact {
    font-size: 4em;
    padding: 8px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .btn-contact {
    font-size: 2em;
  }
}

/* Add more media queries for other screen sizes as needed */

.btn-contact:hover {
  background: #079ab4; /* Adjust gradient colors */
  /* animation:none; */
  color: white;
  /* border: 1px solid black; */
}

.call-now-button {
  background: #079ab4;
  color: #fff;
  padding: 15px 30px;
  font-size: 2em;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid white;
  transition: background 0.3s ease-in-out;
  animation: blink 2s infinite;
}

.call-now-button:hover {
  background: linear-gradient(to right, #41b2c5, #3399ff);
  animation: none;
  border: 1px solid black;
  color: black;
}

/* Responsive styles for tablets and larger screens */
/* Responsive Styling for Tablets */
@media (max-width: 768px) {
  .call-now-button {
    padding: 12px 24px; /* Adjust padding for tablets */
    font-size: 2.5em; /* Adjust font size for tablets */
  }
}

/* Responsive Styling for Mobile Devices */
@media (max-width: 576px) {
  .call-now-button {
    padding: 10px 20px; /* Adjust padding for mobile devices */
    font-size: 2em; /* Adjust font size for mobile devices */
  }
}

.about-content {
  display: flex;
  justify-content: space-between;
}

.about-image {
  max-width: 100%; /* Adjust the maximum width for responsiveness */
  height: auto;
  border-radius: 10px;
  border: 1px solid black;
}

/* .img {
  padding: 50px;
} */

.about-text {
  flex-grow: 1;
  max-width: 100%; /* Adjust the maximum width for responsiveness */
  text-align: center;
  font-size: 1.5em; /* Adjust font size as needed */
  color:black; /* Adjust text color as needed */
}

.contact-text{
  flex-grow: 1;
  max-width: 100%; /* Adjust the maximum width for responsiveness */
  text-align: center;
  font-size: 1.4em; /* Adjust font size as needed */
  color:black; 
  max-width: 100%;
}


@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Responsive styles for mobile phones */
@media (max-width: 576px) {
  .call-now-button {
    font-size: 1.5em;
    padding: 8px 16px;
  }
}

.about-section {
  background-color: #fff; /* Adjust background color as needed */
  position: relative;
  z-index: 1;
  /*height: 1050px;*/
}
.about-heading{
  font-size: 4em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .about-section{
    height: auto;
  }
  .about-heading{
font-size: 3em;
  }

}

@media (max-width: 576px) {
  .about-section {
    height: 1050px;
  }
  .about-heading{
    font-size: 3em;
    border: 1px solid #f2692d;
    border-radius: 10px;
    padding: 10px;
  }
}




.gallery {
  padding: 10px;
  position: relative;
  z-index: 1;
  background-color: aquamarine;
}

.additional-images {
  margin-top: 20px;
}

.additional-images img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 100%;
  /* height: auto; */
  max-height: 280px;
  min-height: 280px;
  /* min-width: 300px; */
  border: 1px solid black;
}


.gallery-heading{
  font-size: 4em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .gallery-heading{
font-size: 3em;
  }
}

@media (max-width: 576px) {
  .gallery-heading{
    font-size: 2em;
  }
}

/* Media queries for responsiveness */
@media (min-width: 576px) {
  .gallery {
    padding: 30px;
  }

  .additional-images img {
    min-width: 300px;
    max-height: 300px;
    min-height: 300px;
    margin-bottom: 15px;
  }
  figcaption {
    font-size: 16px; /* Adjust font size for medium screens */
    font-weight: bold;
  }
}


@media (min-width: 768px) {
  .additional-images img {
    min-width: 300px;
    min-height: 300px;
    max-height: 300px;
    margin-bottom: 20px;
  }
  
  figcaption {
    font-size: 18px; /* Adjust font size for large screens */
  }
}


@media (min-width: 992px) {
  /* .nav-logo {
    height: 90px;
    width: 90px;
    margin-top: -15px;
    margin-bottom: -15px;
  
    /* height: 60px; */
    /* width: 100px; */
  } */
  .additional-images img {
    min-width: 300px;
    min-height: 300px;
    margin-bottom: 25px;
  }

  figcaption {
    font-size: 20px; /* Adjust font size for extra-large screens */
  }
}



/* Optional: Add some margin between images */


.footer {
  background: rgb(238, 240, 132);
  color: #fff;
  text-align: center;
}
.footer-bottom{
  background: #079ab4;
  color: #fff;
  text-align: center;
}


.youtube-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 450px;
  text-align: center;
  padding: 20px;
  background-color:rgb(238, 240, 132);
}


.subscribe-button {
  background-color: #ff0000; /* Replace with your preferred color */
  color: #fff;
  padding: 10px 20px;
  font-size: 2em; /* Adjust the default font size for smaller screens */

  /* Add a max-width for larger screens */
  max-width: 200px;

  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Times New Roman', Times, serif;
              font-weight: 700;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .subscribe-button {
    font-size: 1.5em; /* Adjust font size for smaller screens */
  }
}

/* Media query for even smaller screens, if needed */
@media screen and (max-width: 480px) {
  .subscribe-button {
    font-size: 1.2em; /* Adjust font size for even smaller screens */
  }
}


.subscribe-button:hover {
  background-color: #cc0000; /* Change the color on hover */
  color:#fff;
  text-decoration: none;
}

.contact-section{
  height: 450px;
}


@media (max-width: 767px) {
  .contact-section {
    height: 700px; /* Adjust height for smaller screens */
    /* padding: 50px; */
    /* padding: 0px 0;  */
  }
  .contact-section h2{
    font-weight: 700px;
  }
}

@media (min-width: 768px) {
  .contact-section {
    height: 500px; /* Original height for larger screens */
  }
}


.contact-heading{
  font-size: 4em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .contact-heading{
font-size: 3em;
  }
}

@media (max-width: 576px) {
  .contact-heading{
    font-size: 2em;
  }
  .youtube-section{
    height: 650px;
  }
  .contact-text{
      font-size:1.5em;
  }
}

.navbar-menu-item a {
  text-decoration: none;
  color: inherit;
}


.footer-text:hover {
  color: #130202; /* Set the desired color for the links on hover */
  text-decoration: none; 
}

.footer-text{
  color: black;
  font-size: larger;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}


.figure-caption{
  font-size: larger;
  font-weight: 700;
  color: black;
}


/* Add padding-top to create space above each section */
#home,
#about,
#gallery,
#contact,
.youtube-section {
  /* min-height: calc(100vh - 70px); Adjust the value to match your navbar height */
  padding-top: 7px; /* Match the height of your navbar */
}


.codeless-add-purchase-button {
  position: fixed;
  bottom: 60px;
  right: 19px;
  height: 70px;
  background: rgba(137, 189, 73, .25);
  border: none;
  -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  padding: 0;
  padding-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99;
  font-size: 0;
  font-weight: bold;
  color: #fff !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.codeless-add-purchase-button i.icon {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #33CE33;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 10px 0 10px 10px;
  -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.codeless-add-purchase-button i.icon svg {
  height: 30px;
  position: relative;
  bottom: 1px;
}
.codeless-add-purchase-button i.icon:after {
  content: "";
  position: fixed;
  display: block;
  height: 70px;
  width: 70px;
  background: rgba(137, 189, 73, .3);
  z-index: -1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: 3s ease-in-out infinite pulse;
  animation: 3s ease-in-out infinite pulse;
}
.codeless-add-purchase-button i.icon svg path {
  fill: #fff;
}
@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
  25% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
      opacity: 1
  }
  55% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
}
@keyframes pulse {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
  25% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
      opacity: 1
  }
  55% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0
  }
}


.home-section .col-md-6 img {
  border-radius: 10px; /* Adjust the radius as needed */
  border: 1px solid black;
}

.social-img{
  height: 200px;
  width: 200px;
}

.footer .footer-top {
  background-color: rgb(238, 240, 132);
  padding: 0px 10px; /* Default padding */
  

  /* Responsive padding adjustments */
  @media (min-width: 576px) {
    /* Small devices (576px and up) */
    /* padding: 30px; */
  }

  @media (min-width: 768px) {
    /* Medium devices (768px and up) */
    /* padding: 40px; */
  }

  @media (min-width: 992px) {
    /* Large devices (992px and up) */
    /* padding: 50px; */
  }

  @media (min-width: 1200px) {
    /* Extra large devices (1200px and up) */
    /* padding: 60px; */
  }
}


.footer .footer-top .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer-logo img {
  height: 150px;
}

.footer .links {
  display: flex;
  align-items: center;
}

.footer .links a {
  font-size: 16px;
  line-height: 23px;
  margin: 0px 10px;
  display: block;
  transition: all ease 0.3s;
  padding: 0px;
  color: #243662;
}

.footer .links a:hover {
  color: #2EB2E7;
}

.footer .contact p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.footer .contact p a {
  margin-top: 15px;
  display: block;
  color: #fff;
}

.footer .social-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social-links ul a {
  padding: 0 5px;
  color: #000;
  font-size: 22px;
}

.footer .social-links ul a svg {
  height: 12px;
  /* fill: #000; */
}

/* .footer .social-links ul a svg path {
  fill: black;
} */

.footer .footer-bottom {
  padding: 15px 0;
}

.footer .footer-bottom ul li {
  float: left;
  text-decoration: none;
  margin-right: 10px;
}

.footer .footer-bottom ul li a {
  color: #fff;
  transition: all ease 0.3s;
  text-decoration: underline;
}



.footer .footer-bottom .text-right {
  color: #fff;
  text-align: right;
}

.footer .links,
.footer .social-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer .links a,
.footer .social-links ul a {
    font-size: 16px;
    line-height: 23px;
    margin: 0px 10px;
    display: block;
    transition: all ease 0.3s;
    padding: 0px;
    color: #243662;
}

.footer .links a:hover,
.footer .social-links ul a:hover {
    color: #2EB2E7;
}

.youtube-video{
  padding: 20px;
  margin-top: 10px;
}

.youtube-row{
  width: 100%;
}

.youtube-logo{
  width: 60%;
}

.subscribe-button{
  border: 1px solid black;
}

.codeless-add-purchase-button {
  position: fixed;
  bottom: 60px;
  right: 19px;
  height: 70px;
  background: rgba(137, 189, 73, 0.25);
  border: none;
  -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  padding: 0;
  padding-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99;
  font-size: 0;
  font-weight: bold;
  color: #fff !important;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.codeless-add-purchase-button i.icon {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #33ce33;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 10px 0 10px 10px;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.codeless-add-purchase-button i.icon svg {
  height: 30px;
  position: relative;
  bottom: 1px;
}
.codeless-add-purchase-button i.icon:after {
  content: "";
  position: fixed;
  display: block;
  height: 70px;
  width: 70px;
  background: rgba(137, 189, 73, 0.3);
  z-index: -1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: 3s ease-in-out infinite pulse;
  animation: 3s ease-in-out infinite pulse;
}
.codeless-add-purchase-button i.icon svg path {
  fill: #fff;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

