.footer {
    display: grid;
    row-gap: 30px;
    background-color: #000000;
    padding: 160px 380px;
}

.footer-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #000000;
}

.footer-1-item {
    display: grid;
    row-gap: 16px;
    grid-template-rows: repeat(auto-fit, minmax(0, max-content));
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #BABABA;
    transition: transform .35s, color .2s;
    cursor: pointer;
    text-decoration: none;
}

.footer-link:hover {
    transform: translateX(3px);
    color: #FFFFFF;
}

.footer-2 {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    justify-content: space-between;
}

.footer-2-logo {
    width: 177px;
}

.code-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
}

.code-item {
    display: grid;
    grid-template-rows: max-content max-content;
    row-gap: 8px;
    align-items: center;
    justify-content: center;
}

.code-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}


.footer-3 {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: space-between;
}

.footer-3-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.footer-3-item {
    color: #333;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(15, max-content);
    column-gap: 8px;
}

.logo-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}

.logo-body {
    display: flex;
}

.logo-body:hover .logo-content {
    animation-play-state: paused;
}

.logo-content {
    display: flex;
    flex-shrink: 0;
    animation: logo--move 60s linear infinite;
}

@keyframes logo--move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.custom-select {
    position: relative;
    width: 100%;
    height: auto;
}

.select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-header-box {
    position: relative;
}

.select-header-box img {
    position: absolute;
    top: 33%;
    right: 10px;
    z-index: 999;
}

.focus {
    outline: none;
}

.select-options {
    display: none;
    position: absolute;
    top: 110%;
    width: 100%;
    min-height: 184px;
    padding: 12px;
    overflow-y: auto;
    background-color: #f2f3f3;
    border: 1px solid #e2e5e9;
    border-radius: 4px;
    z-index: 999;
}

.select-options.active {
    display: block;
}

.select-options label {
    height: 40px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.form-code {
    display: none;
}

.form-item-content {
    display: flex;
    gap: 24px;
}

.form-item-content-img {
    width: 160px;
    height: 40px;
    cursor: pointer;
}