﻿/* Footer.css */


#footer {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    background-image: url("/images/footer-bg.jpg");
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    margin: 0 auto; 
    gap: 30px;
    padding: 4vw 5vw;
}

.side {
    flex: 1 1 250px; 
    margin-bottom: 20px; 
}

.side-1 img {
    margin-bottom: 20px;
}

.side-1 p {
    font-size: 15px;
    line-height: 25px;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.side-1 button {
    padding: 25px 50px;
    background-color: #f76c31;
    color: white;
    border: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    cursor: pointer;
}


.btn-effect {
    position: relative;
}



    .btn-effect::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        background-color: #262626;
        top: 0;
        left: 0;
        z-index: 1;
        transition: all 0.4s;
    }

    .btn-effect span {
        z-index: 1;
        position: relative;
        font-weight: 600;
    }

    .btn-effect:hover::before {
        width: 100%;
    }


.side-2 a {
    color: #b3b3b3;
    transition: all 0.5s;
}

    .side-2 a:hover {
        color: #f76c31;
    }

    .side-2 a i {
        font-size: 12px;
    }


.side-3 span {
    font-size: 11px;
    color: #f76c31;
}

.side-3 p {
    font-size: 14px;
    margin-top: 20px;
}


.side h3 {
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.side img {
    max-width: 100%; 
    height: auto;
}

.side a {
    display: block; 
    margin-bottom: 20px;
}

.news {
    display: flex;
    margin-bottom: 10px;
}

    .news img {
        width: 80px;
        height: 80px;
        margin-right: 10px;
        border: 3px solid white;
        transition: all 0.5s;
    }

    .news:hover img {
        border-color: #f76c31;
    }

.news-dets {
    flex: 1;
}

.con-dets {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.374);
    padding-bottom: 20px;
    color: #b3b3b3;
}

    .con-dets i {
        margin-right: 15px;
        color: #f76c31;
    }

    .con-dets p {
        line-height: 20px;
    }



#footer .for-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.332);
    padding: 20px;
}

    #footer .for-links .icons {
        display: flex;
        /* justify-content: space-between; */
        gap: 20px;
        flex-wrap: wrap;
    }

        #footer .for-links .icons i {
            background-color: white;
            color: black;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

            #footer .for-links .icons i:hover {
                background-color: #f76c31;
                color: white;
            }

        #footer .for-links .icons .facebook {
            padding: 10px 13px;
        }


@media (max-width: 768px) {
    .side {
        flex: 1 1 300px;
    }
}

@media (max-width: 500px) {
    .side {
        flex: 1 1 100%;
    }
}
