.footer {
    background-color: var(--bgModal);
    max-width: 100vw;
    overflow: hidden;
    padding: 50px 20px
}

@media(max-width:800px) {
    .footer .wrap .row {
        grid-gap: 20px
    }
}

@media(max-height:450px), (max-width:700px) {
    .footer {
        padding: 50px 10px 100px
    }

    .footer .wrap .row {
        grid-gap: 30px;
        grid-template-columns: 1fr
    }

    .footer .wrap .row .col {
        padding-left: 7%
    }

    .footer .wrap .last {
        grid-gap: 25px;
        grid-template-columns: 1fr
    }

    .footer .wrap .last .in-line {
        justify-content: center !important
    }

    .footer .wrap .last .in-line.top {
        grid-area: 1
    }
}

.footer .wrap {
    margin: 0 auto;
    max-width: 1280px
}

.footer .show-more {
    align-items: center;
    background-color: #1d293d;
    border: 2px solid #0000;
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    justify-content: center;
    transition: border-color .3s ease-in-out
}

.footer .show-more:hover {
    border-color: var(--blue)
}

.footer .row {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    padding-bottom: 30px;
    position: relative;
    width: 100%
}

.footer .row:after {
    background-color: var(--line);
    bottom: 0;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: calc(100% - 30px)
}

.footer .row .col {
    display: flex;
    flex-direction: column
}

.footer .row .col .logo {
    margin-bottom: 20px;
    width: 180px
}

.footer .row .col a,
.footer .row .col p {
    color: var(--textSecondary);
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    transition: .15s ease
}

.footer .row .col h2 {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px
}

.footer .row .col.list a,
.footer .row .col.list p {
    font-size: 14px;
    padding: 4px 0
}

.footer .row .col.list .sub-link {
    cursor: pointer;
    text-decoration: underline
}

.footer .row .col.list .sub-link,
.footer .row .col.list a {
    display: inline-block
}

.footer .row .col.list .sub-link:hover,
.footer .row .col.list a:hover {
    color: var(--text)
}

.footer .row.simple {
    grid-column-gap: 20px;
    grid-row-gap: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    padding: 30px 0;
    text-align: center;
    width: 100%
}

@media(max-width:700px) {
    .footer .row.simple {
        grid-gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))
    }

    .footer .row.simple a img {
        width: 100%
    }
}

.footer .row.simple img {
    max-height: 45px
}

.footer .row a {
    align-items: center;
    display: flex;
    justify-content: center;
    transition: opacity .3s ease
}

.footer .row a:hover {
    opacity: .7
}

.footer .row .icon {
    width: 108px
}

.footer .social-links {
    align-items: center;
    column-gap: 20px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0;
    row-gap: 20px !important
}

.footer .social-links .item {
    background-color: #1d293d;
    border: 2px solid #0000;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex: 1 1;
    gap: 10px;
    padding: 10px;
    transition: border-color .3s ease-in-out
}

.footer .social-links .item img {
    align-self: center;
    height: 30px;
    width: 30px
}

.footer .social-links .item .desc {
    flex: 1 1
}

.footer .social-links .item .desc .name {
    color: #3c4c6e;
    font-size: 12px;
    font-weight: 700
}

.footer .social-links .item .desc .at {
    font-weight: 900
}

.footer .social-links .item:hover {
    border-color: var(--blue)
}

.footer .last {
    grid-gap: 15px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 10px 0
}

.footer .last .in-line {
    grid-gap: 10px;
    align-items: center;
    display: flex;
    width: 100%
}

.footer .last .in-line svg {
    height: 50px;
    margin-right: 15px;
    width: 50px
}

.footer .last .in-line p {
    color: var(--textSecondary);
    font-size: 13px;
    font-weight: 300
}

.footer .last .in-line:last-child {
    justify-content: flex-end
}

.footer .last .in-line .rate {
    align-items: center;
    border-radius: 20px;
    color: var(--textSecondary);
    display: flex;
    font-size: 12px;
    justify-content: center;
    padding: 10px 15px
}

.footer .last .in-line iframe {
    background-color: var(--bgModal);
    height: 40px;
    width: 40px
}

.footer .last .in-line a {
    transition: opacity .3s ease
}

.footer .last .in-line a .licence {
    border-radius: 10px;
    width: 90px
}

.footer .last .in-line a:hover {
    opacity: .7
}

.footer .last .in-line a .ter {
    height: 32px;
    width: 40px
}