footer * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --theme-col: #2d4bf0;
}

/*.space-y-2 > :not([hidden]) ~ :not([hidden]) {*/
/*    --tw-space-y-reverse: 0;*/
/*    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));*/
/*    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));*/
/*}*/

footer {
    background-color: #ffffff;
    border-top: black solid 2px;
    padding-top: 20px;
}

.footer-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.f-item-con {
    padding: 1.5rem 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
    /*grid-gap: 2rem;*/
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
}

.c2 {
    display: flex;
    flex-direction: column;
}

footer .app-name {
    color: black;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

footer .app-info p {
    color: black;
    padding-left: 1.65rem;
    max-width: 200px;
}

footer .footer-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: black;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    height: fit-content;
}

.app-initial {
    color: var(--theme-col);
}

footer ul {
    padding-left: 1.75rem;
    color: black;
    font-size: 0.875rem /* 14px */;
    line-height: 1.25rem;
    margin-top: .5rem;
}

footer ul li {
    margin: .25rem 0;
    cursor: pointer;
    color: black;
    width: fit-content;
}

footer ul li a {
    margin: .25rem 0;
    cursor: pointer;
    color: black;
    width: fit-content;
}

footer ul li:hover {
    color: #545454;
}
footer ul li a:hover {
    color: #545454;
}

footer .help-sec {
    /*grid-column-start: 2;*/
}

footer .cr-con {
    background-color: #232127;
    color: white;
    padding: 1rem 4rem;
    text-align: center;
}

.g-i-t {
    display: flex;
    flex-direction: column;
}

.g-i-t form {
    display: flex;
    flex-direction: column;
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

form .g-inp {
    padding: .25rem .5rem;
    font-size: 16px;
}

.g-inp textarea {
    height: 150px;
}

.f-btn {
    padding: .25rem 1rem;
    background-color: var(--theme-col);
    border-radius: .25rem;
    font-size: 16px;
    color: black;
    font-weight: 500;
}

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

.social-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 100%;
    background: gray;
    text-align: center;
}

.social-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.3s;
}

.social-button:focus, .social-button:hover {
    color: #fff;
    cursor: pointer;
}

.social-button:focus::after, .social-button:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    overflow: hidden;
    margin-left: calc(-50% - 1px);
    background: linear-gradient(0deg, rgba(253, 45, 45, 1) 0%, rgb(255, 252, 0) 100%)
}

.social-button i, .social-button svg {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.social-button i, .social-button svg {
    color: white;
}

.social-button i {
    font-size: 25.6px;
}


@media screen and (max-width: 480px) {
    .f-item {
        margin-top: 20px;
    }
}