@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

@keyframes bg {
    0% {
        width: 600px;
        height: 800px;
        right: -50%;
        bottom: -25%;
        transform: rotate(60deg);
    }
    50% {
        width: 1200px;
        height: 1600px;
        right: 0;
        bottom: -15%;
        transform: rotate(-60deg);
    }
    100% {
        width: 600px;
        height: 800px;
        right: -50%;
        bottom: -25%;
        transform: rotate(60deg);
    }
}

@keyframes product {
    0% {
        box-shadow: 0 0 150px rgba(158, 158, 158, 0.5);
    }
    50% {
        box-shadow: 0 0 50px rgba(158, 158, 158, 0.5);
    }
    100% {
        box-shadow: 0 0 150px rgba(158, 158, 158, 0.5);
    }
}

.shape {
    position: fixed;
    width: 600px;
    height: 800px;
    right: -25%;
    bottom: -25%;
    z-index: 0;

    background: linear-gradient(90deg, #FFFFFF 0%, #e7ffff 50%, #FFFFFF 100%);

    filter: blur(75px);

    animation: bg 5s linear 0s infinite;
}

.container {
    position: relative;
    z-index: 9;

    width: 80%;
    margin: 64px auto;

    font-family: "Inter", sans-serif;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.info-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px;
}

.info-detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;

    text-decoration: none;
    color: #000;

    padding: 36px;

    border-radius: 24px;

    box-shadow: 0 0 150px rgba(158, 158, 158, 0.5);

}

.info-detail img {
    height: 36px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-numbers a {
    color: #000;
    text-decoration: none;
}

.logo {
    width: 128px;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;

    margin: 48px 0;
}

.underconstruction {
    font-size: 16px;
    font-weight: 400;
    color: #646464;

    text-align: center;

    margin-top: 48px;
}

.product {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;

    padding: 36px;

    border-radius: 24px;

    box-shadow: 0 0 150px rgba(158, 158, 158, 0.5);

    transition: all .4s;
}

.product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product img {
    width: 60%;
}

.product-title {
    font-size: 20px;
    font-weight: 400;
    color: #646464;
    text-align: center;
}

@media (max-width: 1028px) {
    .products {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .info-details {
        grid-gap: 12px;
    }

    .info-details, .products {
        grid-template-columns: 1fr;
    }
}