/***** Reset *****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/***** Reusable *****/

.row {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.heading-main h2 {
    text-align: center;
    margin: 50px 0;
    margin-top: 120px;
    font-size: 50px;
    color: #c958169d;
}

.heading-main h2:after {
    content: "";
    display: block;
    width: 250px;
    height: 3px;
    border-bottom: 2px solid #c958169d;
    margin: 10px auto;
    border-radius: 100%;
}

.btn-full {
    display: inline-block;
    color: #ffffff;
    background-color: #c958169d;
    border: 3px solid #b66638a0;
    text-decoration: none;
    font-size: 25px;
    padding: 10px 30px;
    margin-right: 80px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-full:hover {
    background-color: transparent;
    color: #c958169d;
    border-color: #c958169d;
}

.btn-full:active {
    color: #de8532;
}

.btn-empty {
    display: inline-block;
    color: #ffffff;
    background-color: transparent;
    border: 3px solid #b66638a0;
    text-decoration: none;
    font-size: 25px;
    padding: 10px 30px;
    margin-right: 80px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-empty:hover {
    background-color: #c958169d;
    color: #ffffff;
    border-color: #c154159d;
}

.btn-empty:active {
    color: #de8532;
}

.stop-float {
    clear: both;
}

/***** Footer *****/

.footer {
    background-color: #c958169d;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 18px;
    margin-top: 60px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-media img:hover {
    color: #ffffff;
    transform: scale(1.15);
    transition: transform 0.5s ease, opacity 0.8s ease;
}


@media only screen and (max-width: 1025px) {

    .footer {
        font-size: 10px;
        padding: 0;
        padding-bottom: 5px;
        margin-top: 20px;
    }

    .social-media {
        gap: 0;
    }

    .social-media img {
        width: 40%;
    }
}