.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons2 {
    display: none;
}

.text-justify,
.text-justify2 {
    text-align: justify;
}

.btn-custom {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
    background-color: white;
    color: black;
}

.btn-custam2 {
    background-color: transparent;
    margin-bottom: 20px;
    border: 2px solid black;
    color: black;
    padding: 10px 20px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custam2:hover {
    background-color: black;
    color: white;
}

@media (max-width: 1020px) {
    .social-icons {
        display: none;
    }

    .text-justify {
        text-align: left;
    }

    .social-icons2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social-icons2 a {
        margin-right: 15px;
    }

    .social-icons2 a:last-child {
        margin-right: 0;
    }
}