/* Container style */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* @media (max-width: 576px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
} */

@media (min-width: 576px) {
  .container {
    max-width: 566px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 758px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 982px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}

/* Section Padding */
.padding {
  padding: 100px 0;
}

@media screen and (max-width: 962px) {
  .padding {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .padding {
    padding: 60px 0;
  }
}

/* Utilities */
.text-pry {
  color: var(--primary-color);
}

.btn {
  padding: 15px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  text-transform: capitalize;
}

.btn iconify-icon {
  margin-top: -3px;
}

.btn:hover iconify-icon {
  margin-left: 10px;
}

.btn-pry {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-pry:hover {
  background: transparent;
  border: 2px solid var(--white);
}

.btn-sec {
  background: transparent;
  border: 2px solid var(--white);
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  position: relative;
  padding-bottom: 5px;
  font-size: 32px;
  text-transform: uppercase;
}

.section-header.black {
  color: var(--bg-black);
}
.section-header h2:before {
  content: "";
  width: 200px;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0;
  bottom: 0;
}

.section-header.black h2:before {
  background: var(--bg-black);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@keyframes fade-down {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    /* box-shadow: 0 0 30px rgba(246, 173, 85, 0.5); */
    filter: drop-shadow(0 0 30px rgba(246, 173, 85, 0.5));
  }
  50% {
    transform: scale(1.05);
    /* box-shadow: 0 0 40px rgba(246, 173, 85, 0.8); */
    filter: drop-shadow(0 0 40px rgba(246, 173, 85, 0.8));
  }
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes counterRotate {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(255, 255, 255, 0.3);
  }
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
