main .timer {
    margin-top: 120px;
    max-width: 1280px;
    width: 100%;
    height: 500px;
    max-height: 329px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

main .timer .timer-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

main .timer .timer-info {
    width: 50%;
    max-height: 233px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 40px;

    h2 {
        margin: 0;
    }

    p {
        margin: 0;
        width: 500px;
    }

    button {
        width: 280px;
        align-content: flex-end;
    }
}

.clock-timer {
    position: relative;
    width: 158px;
    height: 158px;
    flex-grow: 0;
    flex-shrink: 0;
}

.clock-timer svg {
    transform: scaleX(-1);
}

.clock-timer svg g {
    fill: none;
    stroke: none;
}

.clock-timer svg g circle {
    stroke-width: 8px;
    stroke: rgba(45, 51, 60, 1);
}

.clock-timer svg path {
    stroke-width: 8px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: rgba(0, 218, 169, 1);
}

.clock-timer p {
    position: absolute;
    width: 158px;
    height: 158px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.clock-timer p span {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
}

@media (max-width: 360px) {
    main .timer {
        margin-top: 72px;
        padding-left: 16px;
        padding-right: 16px;
        max-width: 328px;
        flex-direction: column-reverse;
    }

    main .timer .timer-container {
        width: 100%;
        height: 139px;
    }

    main .timer .timer-info {
        text-align: center;
        align-items: center;
        width: 100%;
        height: 279px;
        gap: 32px;

        p {
            width: 100%;
        }
    }
}
