.text-shadow,
.text-shadow1 {
  transition: 0.5s ease-in-out;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.circle,
.footer-nav,
.list,
.main-nav-list,
.social-links {
  list-style: none;
}
#section1,
#section2,
#section3,
.banner,
.cta,
.gallery-item,
.meal,
.section-hero {
  overflow: hidden;
}
.contact-wrapper h1,
.fancy-button,
.heading-featured-in,
.main-nav-link,
.tag {
  text-transform: uppercase;
}
.circle > li::before {
  content: "🌑";
  transform: scale(0.2);
  display: inline-block;
  animation: 0.9s infinite alternate pulse;
}
ul > li:first-child::before {
  animation-delay: -0.2s;
}
ul > li:nth-child(2)::before {
  animation-delay: -0.4s;
}
ul > li:nth-child(3)::before {
  animation-delay: -0.6s;
}
ul > li:nth-child(4)::before {
  animation-delay: -0.8s;
}
ul > li:nth-child(5)::before {
  animation-delay: -1s;
}
ul > li:nth-child(6)::before {
  animation-delay: -1.2s;
}
ul > li:nth-child(7)::before {
  animation-delay: -1.4s;
}
ul > li:nth-child(8)::before {
  animation-delay: -1.6s;
}
ul > li:nth-child(9)::before {
  animation-delay: -1.8s;
}
ul > li:nth-child(10)::before {
  animation-delay: -2s;
}
@keyframes pulse {
  to {
    transform: scale(0.69);
  }
}
.containerservices {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  padding: 5%;
}
#section1 {
  background-color: #fff;
}
#section2 {
  background-color: #555;
  padding: 5%;
}
#section3 {
  background-color: #fff;
  height: 100%;
  padding-top: 8%;
  padding-bottom: 8%;
}
.fancy {
  box-shadow: 1px 12px 6px -6px rgba(41, 41, 41, 0.25);
  --b: 6px;
  --w: 80px;
  --g: 15px;
  --c: #0b486b;
  width: fit-content;
  padding: 0.2rem 2em;
  line-height: 1.6em;
  color: #fff;
  background: conic-gradient(from 45deg at left, var(--c) 45%, #0000 0) 0,
    conic-gradient(from -135deg at right, var(--c) 45%, #0000 0) 100%;
  background-size: 51% 100%;
  background-origin: border-box;
  background-repeat: no-repeat;
  border-image: linear-gradient(
      #0000 calc(50% - var(--b) / 2),
      var(--c) 0 calc(50% + var(--b) / 2),
      #0000 0
    )
    1/0 var(--w) / calc(var(--w) + var(--g));
  margin-inline: auto;
}
.header-imgtext {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  height: 8rem;
  padding: 0 3.2rem;
  position: relative;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.logo {
  height: 6rem;
}
h1 {
  display: inline-block;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 3em;
  text-shadow: 0.03em 0.03em 0 #4c5db2;
}
.change.main-nav-link,
.fancy-button:active,
.fancy-button:focus,
.fancy-button:hover,
.text-shadow1:hover {
  color: #fff;
}
.text-shadow1 {
  text-shadow: 2px 2px 10px #fff;
  animation: 1s ease-in-out infinite alternate flicker;
}
@keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #fff;
  }
}
.icon-mobile-nav[name="close-outline"],
.main-nav-list .text-shadow,
nav .logo,
nav .social-links {
  display: none;
}
.main-nav-list {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
.main-nav-link {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin: 0 2rem;
  letter-spacing: 0.3rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  transition: 0.3s;
}
.main-nav-link:active,
.main-nav-link:hover {
  color: #32cd32;
}
.main-nav-link::before {
  content: "";
  width: 0;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  right: -15%;
  bottom: -0.3rem;
  transition: width 0.2s;
}
.change.main-nav-link::before,
.main-nav-link:hover::before {
  width: 130%;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #cf711f;
}
.main-nav-link.nav-cta:active,
.main-nav-link.nav-cta:hover {
  background-color: #e67e22;
}
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #cf711f;
  z-index: 9999;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .section-hero {
  margin-top: 9.6rem;
}
.banner {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.banner-img,
.banner-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.banner-text {
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 501;
}
.banner-img {
  background-image: no repeat 50% 50%;
  background-size: cover;
  background-position: bottom center;
  animation: 25s linear infinite animate;
  opacity: 1;
  transform: scale(1.2);
}
.banner-img:first-child {
  animation-name: animate-1;
  z-index: 3;
}
.banner-img:nth-child(2) {
  animation-name: animate-2;
  z-index: 2;
}
.banner-img:nth-child(3) {
  animation-name: animate-3;
  z-index: 1;
}
.banner-img:nth-child(4) {
  animation-name: animate-4;
  z-index: 0;
}
@keyframes animate-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5%,
  100%,
  23% {
    opacity: 1;
  }
  26% {
    opacity: 0;
    transform: scale(1);
  }
  100%,
  98% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes animate-2 {
  23% {
    opacity: 1;
    transform: scale(1.2);
  }
  26%,
  48% {
    opacity: 1;
  }
  51% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes animate-3 {
  48% {
    opacity: 1;
    transform: scale(1.2);
  }
  51%,
  73% {
    opacity: 1;
  }
  76% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes animate-4 {
  73% {
    opacity: 1;
    transform: scale(1.2);
  }
  76%,
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.section-hero {
  background-color: #f4f4f427;
  width: 100vw;
  height: 50vh;
  position: relative;
}
.hero {
  position: absolute;
  z-index: 4000;
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
  padding: 3rem;
}
.delivered-imgs,
.delivered-meals,
.logos {
  display: flex;
}
.hero-description {
  color: #f2f2f2;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
.delivered-meals {
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}
.delivered-imgs img {
  display: flex;
  height: 4.8rem;
  width: 4.8rem;
  border: 3px solid #fdf2e9;
  border-radius: 50%;
  margin-right: -1.6rem;
}
.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c5beb8;
}
.delivered-imgs img:last-child {
  margin-right: 0;
}
.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}
.section-featured {
  padding: 4.8rem 0 3.2rem;
}
.heading-featured-in {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-bottom: 2.4rem;
  text-align: center;
  color: #888;
}
.meal-title,
.step-number,
.tag {
  font-weight: 600;
}
.logos {
  justify-content: space-around;
}
.meal-attribute,
.step-img-box {
  display: flex;
  align-items: center;
}
.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}
.divider {
  margin: 0 40px;
}
.gallery-section,
.section-how,
.section-meals {
  padding: 9.6rem 0;
}
.step-number {
  font-size: 8.6rem;
  color: #ddd;
  margin-bottom: 1.2rem;
}
.feature-text,
.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}
.colortext {
  color: #666;
}
.step-img-box {
  justify-content: center;
  position: relative;
}
.step-img-box::after,
.step-img-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
  background-color: #fdf2e9;
  border-radius: 50%;
  z-index: -2;
}
.step-img-box::after {
  width: 50%;
  padding-bottom: 50%;
  background-color: #fae5d3;
  border-radius: 50%;
  z-index: -1;
}
.step-img {
  width: 35%;
}
.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
}
.meal-content {
  padding: 3.2rem 4.8rem 4.8rem;
}
.meal-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 3.2rem;
}
.meal-img {
  width: 100%;
}
.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.meal-attribute {
  font-size: 1.8rem;
  gap: 1.6rem;
}
.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #cf711f;
}
strong {
  font-weight: 500;
}
.all-recipes {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 4.8rem !important;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: 0.3s;
}
.meal-tag {
  margin-bottom: 1.2rem;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  background-color: #51cf66;
  border-radius: 100px;
  color: #333;
}
.section-testimonials,
.testimonial-container {
  background-color: #f2f2f2;
}
.section-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding: 4rem;
}
.composition {
  padding: 2.6rem;
}
.gallery-items {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.6rem;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 4.6rem;
}
.composition__photo {
  width: 80%;
  box-shadow: 0 1.5rem 4rem rgba(#000, 0.2);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: 0.2s;
  outline-offset: 2rem;
}
.composition__photo--p1 {
  top: -4rem;
  left: 0;
}
.composition__photo--p2 {
  top: -16rem;
  right: -6rem;
}
.composition__photo--p3 {
  top: 10rem;
  left: 20%;
}
.composition__photo:hover {
  border-radius: 3rem;
  outline: #ff8c00 solid 1rem;
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem #000000cc;
  z-index: 20;
}
.composition__photo:hover &__photo:not(:hover) {
  transform: scale(0.9);
}
.testimonial-container {
  padding: 5.6rem;
}
.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}
.story__pictures {
  background-color: #fae5d3;
  grid-column: full-start/col-end 4;
  background-image: linear-gradient(rgba(#fae5d3, 0.3), rgba(#fae5d3, 0.3)),
    url(../img/eating.jpg);
  display: grid;
  align-items: center;
}
.list,
.list-item,
.list-item1 {
  display: flex;
  gap: 1.6rem;
}
.story__img--1 {
  width: 100%;
  grid-row: 2/6;
  grid-column: 2/6;
  box-shadow: 0 2rem 5rem rgba(#000, 0.1);
}
.story__img--2 {
  width: 115%;
  grid-row: 4/6;
  grid-column: 4/7;
  z-index: 20;
  box-shadow: 0 2rem 5rem rgba(#000, 0.2);
}
@media only screen and (max-width: 1024px) {
  .section-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .composition__photo {
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    padding: 3rem;
  }
  .story__pictures {
    grid-column: 1/-1;
    background-size: cover;
  }
  .story__img--1,
  .story__img--2 {
    grid-column: 1/-1;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .gallery-items {
    margin: 2rem 0;
    grid-template-columns: 1fr;
  }
  .composition {
    padding: 1.5rem;
  }
  .composition__photo {
    width: 100%;
    position: relative;
  }
  .composition__photo--p1,
  .composition__photo--p2,
  .composition__photo--p3 {
    top: 0;
    left: 0;
    right: 0;
  }
  .story__pictures {
    grid-column: 1/-1;
    padding: 2rem;
  }
  .story__img--1,
  .story__img--2 {
    grid-column: 1/-1;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .section-container {
    padding: 1rem;
  }
  .composition__photo {
    width: 90%;
  }
}
.services-section {
  padding: 9.6rem 0;
  background-color: #333;
  color: #d3d3d3;
}
.list {
  flex-direction: column;
  padding: 5rem;
}
.line {
  border: 1px solid #f2f2f240;
}
.list-item {
  font-size: 1.8rem;
  font-weight: 500;
  align-items: center;
  line-height: 1.2;
}
.list-item1,
.logo-col {
  flex-direction: column;
}
.list-icon {
  height: 2.5rem;
  width: 3rem;
  color: #cf711f;
  background-color: #f2f2f2;
  border-radius: 50%;
}
.feature-icon {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fae5d3;
  align-items: center;
  padding: 1.6rem;
  border-radius: 50%;
  margin-bottom: 3.2rem;
}
.feature-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
  color: #333;
}
.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 9.6rem;
}
.section-cta {
  padding: 9.6rem 0 12.8rem;
  background-color: #333;
}
.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #e6984e, #e67e22);
}
.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem;
  color: #45260a;
}
.cta .heading-secondary {
  color: inherit;
  margin-bottom: 3.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(230, 150, 76, 0.35),
      rgba(231, 126, 35, 0.35)
    ),
    url("../img/gallery/ScrapMetals20.jpg");
  background-size: cover;
  background-position: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.cta-form button,
.cta-form input,
.cta-form textarea {
  font-size: 1.8rem;
  font-family: inherit;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-form input::placeholder {
  color: #aaa;
}
.cta-form textarea::placeholder {
  color: #aaa;
}
.btn--form:hover {
  background-color: #fff;
  color: #555;
}
.cta :focus {
  outline: 0;
  box-shadow: 0 0 0 0.5rem rgba(253, 242, 233, 0.5);
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  margin-top: 5rem;
}
.contact-details div {
  width: 25rem;
  text-align: center;
  margin: 2rem auto;
}
.contact-details i {
  font-size: 5rem;
  color: #cf711f;
}
.contact-details h3 {
  font-family: "MADE Soulmaze", sans-serif;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: #ccc;
}
.contact-details p {
  font-size: 1.6rem;
  color: #aaa;
}
.contact-wrapper h1 {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 3rem;
}
.footer {
  padding: 8rem 0;
  border: 1px solid #ddd;
}
.social-links {
  display: flex;
  gap: 1.8rem;
}
.footer-logo {
  display: block;
  height: 2.2rem;
  text-decoration: none;
  margin-bottom: 3.2rem;
}
.logo-col {
  display: flex;
  gap: 3.2rem;
}
.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
  margin-bottom: 2rem;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4rem;
}
.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}
.address {
  margin-bottom: 2.4rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: 0.3s;
}
.social-icon:hover {
  color: #32cd32;
  transform: scale(1.2);
}
.footer-link:active,
.footer-link:hover {
  color: #32cd32;
  transform: scale(1.2) contrast(130%);
}
.social-icon {
  color: #cf711f;
  transition: 0.3s;
  width: 2.4rem;
  height: 2.4rem;
  box-shadow: 0 12px 6px -6px rgba(41, 41, 41, 0.25);
}
.grid--footer {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
}
.btn-mobile-nav {
  border: none;
  background: 0 0;
  cursor: pointer;
  display: none;
}
.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}
.gallery-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
.section-4 {
  background-color: #333;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}
.img-gallery {
  padding: 5rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.img-gallery img {
  width: 100%;
  cursor: pointer;
  transition: 0.5s;
}
.img-gallery img:hover {
  transform: scale(0.75) rotate(-15deg);
  border-radius: 1.2rem;
  box-shadow: 0.1rem 2rem 4.6rem rgba(0, 0, 0, 0.3);
}
.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.full-img img {
  width: 80%;
  max-width: 100rem;
}
.full-img span {
  position: absolute;
  top: 15%;
  right: 15%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.about-img {
  max-width: 600px;
  width: 80%;
  height: auto;
  border-radius: 10px;
}
.divider {
  position: absolute;
  width: 2px;
  background-color: rgba(128, 128, 128, 0.235);
  height: 100%;
  margin-right: 8rem;
}
.right {
  flex: 1;
  padding-left: 20px;
}
.containertext {
  max-width: 120rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 3.2rem;
  position: relative;
}
.call-img {
  max-width: 300px;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
}
.call-img:hover {
  filter: contrast(130%);
  transform: scale(1.2);
}
.fancy-button span,
.fancy-button:before {
  display: inline-block;
  transform-style: preserve-3d;
  transition: 0.3s ease-out;
}
.sliderimg-frame {
  overflow: hidden;
  height: 300px;
  width: 400px;
}
@keyframes slide_animation {
  0%,
  10%,
  100%,
  80%,
  90% {
    left: 0;
  }
  20%,
  30%,
  60%,
  70% {
    left: 400px;
  }
  40%,
  50% {
    left: 800px;
  }
}
@-webkit-keyframes slide_animation {
  0%,
  10%,
  100%,
  80%,
  90% {
    left: 0;
  }
  20%,
  30%,
  60%,
  70% {
    left: 400px;
  }
  40%,
  50% {
    left: 800px;
  }
}
.slideimg-images {
  width: 1200px;
  height: 400px;
  margin: 0 0 0 -800px;
  position: relative;
  -webkit-animation-name: slide_animation;
  animation-name: slide_animation;
  -webkit-animation-duration: 33s;
  animation-duration: 33s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.ani,
.ani2 {
  font-weight: 700;
  cursor: poiner;
  -webkit-text-fill-color: transparent;
  animation: 15s linear infinite shine;
}
.img-containerimg {
  height: 400px;
  width: 400px;
  position: relative;
  float: left;
}
.ani {
  color: #cf711f;
  background: linear-gradient(to right, #cf711f 0, #fff 10%, #cf711f 20%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ani2 {
  color: #006400;
  background: linear-gradient(to right, #006400 0, #32cd32 10%, #006400 20%);
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes shine {
  0% {
    background-position: -400px;
  }
  100% {
    background-position: 600px;
  }
}
.bg-gradient2 span,
.bg-gradient2:before {
  background: #32cd32;
  background: linear-gradient(to right, #f88d30 0, #f88d30 80%, #f88d30 100%);
}
.fancy-button {
  display: inline-block;
  margin: 30px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  position: relative;
}
.fancy-button:before {
  content: "";
  height: 40px;
  position: absolute;
  bottom: -5px;
  left: 30px;
  right: 30px;
  z-index: -1;
  border-radius: 30em;
  filter: blur(20px) brightness(0.95);
}
.fancy-button i {
  margin-top: -0.5rem;
  margin-right: 1.2rem;
  font-size: 1.265em;
  vertical-align: middle;
}
.fancy-button span {
  padding: 1.8rem 6rem;
  border-radius: 50em;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
}
.fancy-button:hover span {
  filter: brightness(1.05) contrast(1.05);
  transform: scale(0.95);
}
.fancy-button:hover:before {
  bottom: 0;
  filter: blur(10px) brightness(0.95);
}
