﻿/*footer*/
.footer
{
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top-right-radius: 5px ;
    border-top-left-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    background-color:#F5F7F8;
}

.footer .colum{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer .logo-set{
    margin-bottom: 30px;
}

.colum .logo-set img{
    width: 300px;
	height: 120px;
}

.footer .colum h4{
    font-size: 20px;
    padding-bottom: 20px;
    font-weight:bold;
}

.footer p{
    font-size: 15px;
    margin: 0 0 8px 0;
}

.footer .link{
    font-size: 17px;
    font-weight:600;
    margin-bottom: 10px;
    color: #000;
    transition: 0.3s;
}

.footer iframe
{
    border-radius: 5px;
}

/* Footer Icons */
.footer .icon {
    display: flex; /* Align icons horizontally */
    justify-content: center; /* Center the icons */
    align-items: center; /* Align icons vertically */
    gap: 20px; /* Space between each icon */
}

.footer .icon-item {
    text-align: center; /* Center the label below the icon */
}

.footer .icon-item img {
    width: 30px; /* Icon size */
    height: 30px;
    transition: transform 0.3s ease; /* Add hover effect */
    cursor: pointer;
}

.footer .icon-item img:hover {
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
}

.footer .icon-item label {
    display: block; /* Ensure the label is below the icon */
    margin-top: 5px; /* Space between icon and label */
    font-size: 14px; /* Label font size */
    color: #333; /* Label color */
    font-weight: 500; /* Make labels slightly bold */
}


.icon img
{
    cursor:pointer;
    margin: 5px 5px;
   
}

.icon .fbook
{
    width: 20px;
    height: 20px;
}

.icon .fbook:hover
{
    filter: drop-shadow(3px 3px 10px #1877F2);
    transform: translateY(-5px);
    font-weight: 500;
}

.icon .insta
{
    width: 20px;
    height: 20px;
}

.icon .insta:hover
{
    filter: drop-shadow(3px 3px 10px #F56040);
    transform: translateY(-5px);
    font-weight: 500;
}

.icon .yout{
    width: 25px;
    height: 18px;
}
.footer .follow
{
    margin-top:10px;   
}

.footer .follow img
{
    transition: 0.3s;
}

.footer .follow .icon .yout:hover
{
    filter: drop-shadow(3px 3px 10px #FF0000);
    transform: translateY(-5px);
    font-weight: 500;
}

.footer .link:hover
{
    text-decoration: none;
    transform: translateY(-5px);
    font-weight: 500;
}

.footer .copyright{
    width: 100%;
    text-align: center;
}
