/**
 * Theme Name:     Infinity Web Experts
 * Author:         The Infinity Web Experts Team
 * Template:       twentytwentyfour
 * Text Domain:	   infinity-web-experts
 * Description:    Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
 */
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
body,h1,h2,h3,h4,h5,h6,p,a,li,ul {font-family: system-ui !important;line-height:1.2em !important;}

a {text-decoration:none !important;}

h1 {font-size:34px !important;font-weight:800 !important;}
h2 {font-size:28px !important;font-weight:800 !important;}
h3 {font-size:22px !important;font-weight:800 !important;}
h4 {font-size:20px !important;font-weight:800 !important;}
h5 {font-size:17px !important;font-weight:800 !important;}
p {font-size:17px !important;font-weight:400 !important; line-height: 1.4em !important;}

.has-global-padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
}





/*
 * Animated CSS button
 * Copyright Alexander Bodin 2019-09-07
 *
 * Useage: .class {@import button($button-size, $hue, $sat);}
 */
 
 i.fa-solid.fa-phone {
    font-family: 'fontawesome';
}
 
.animated-button {
  background: linear-gradient(-30deg, #24C0A5 50%, #0B2235 50%);
  padding: 10px 0px;
  margin: 0px;
  display: inline-block;
  border-radius: 5px;
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #fff;
    font-weight: 800;
    font-size: 17px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 21%);
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
 transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #FFFFDC);
  animation: 2s animateTop linear infinite;
  border-radius:15px;
}

@keyframes animateTop {
  0% {
    transform: translateX(100%);
  }
  100% {
   transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #FFFFDC);
  animation: 2s animateRight linear -1s infinite;
  border-radius:15px;
}

@keyframes animateRight {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
 background: linear-gradient(to right, rgba(43, 8, 8, 0), #FFFFDC);
 animation: 2s animateBottom linear infinite;
  border-radius:15px;
}

@keyframes animateBottom {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #FFFFDC);
  animation: 2s animateLeft linear -1s infinite;
  border-radius:15px;
}

@keyframes animateLeft {
  0% {
   transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}



.custom-list ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.custom-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
	color:white;
}

.custom-list i {
    margin-right: 8px;
    color: #295f2d; / Customize the color as needed /
}

/ Mobile View /
@media screen and (max-width: 768px) {
    .custom-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
