/* HEADER SECTION */

header img, footer img {
    width: auto;
    height: 70px;
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-button {
    animation: pulseButton 2s infinite;
}

.pulse-button:hover {
    animation-play-state: paused;
}

.silver-foil {
    position: relative;
    overflow: hidden;
}

.silver-foil::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
}

.silver-foil:hover::after {
    animation: foilAnimation 0.8s forwards;
}

@keyframes foilAnimation {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.arrow {
    position: relative;
    left: 30%;
    transform: translate(-50%, -50%) rotate(270deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 1.5vw;
    height: 1.5vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(45deg);
    margin: -15px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* PARTNERS */

.partner-logo {
    width: auto;
    max-height: 50px;
    object-fit: contain;
    filter: invert(1);
}

/* PRICING SECTION */

input.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 4px;
}

input.slider:hover {
    opacity: 1;
}

input.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #1472FF;
    cursor: pointer;
    border-radius: 50%;
}

input.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #1472FF;
    cursor: pointer;
    border-radius: 50%;
}

.pricing-features-active {
    color: #ffffff;
}

.pricing-features-colored {
    color: #449FF1;
}

/* VIDEO EMBEDDING */

.blur-effect {
    filter: blur(8px) brightness(0.6);
    transition: filter 0.3s ease;
}

/* TESTIMONIAL SECTION */

.trusted-logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.trusted-logo {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

.trusted-logo-person {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* BLOG HEADER */

.blog-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 300px;
    object-fit: cover
}