.footer {
    padding: 80px 0;
    background-color: #333;
    display: flex;
    justify-content: center;

}

.footer .container-md .title {
    color: white;
    font-family: 'Public Sans';
    font-size: 18px;
}

.footer .container-md ul {
    padding: 0;
}

.footer .container-md ul li {
    margin-bottom: 10px;
}

.footer .container-md ul li a {
    color: #a8a8a8;
    font-size: 14px;
    transition: 0.3s;
}
.footer .container-md ul li a:hover{
    color: #fff;
}
.footer .container-md .tel h6 {
    color: white;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Public Sans';
}
.footer .container-md .link img{
    height: 60px;
    margin-bottom: 20px;
}
.footer .container-md .link p {
    color: #a8a8a8;
    max-width: 95%;
    margin-bottom: 0;
    margin-top: 10px;
}
.footer .container-md .link p span{
    font-weight: bold;
    font-size: 17px;
    color: #c2c2c2;
    margin-right: 5px;
}
.footer .container-md .link p a {
    color: #a8a8a8;
}

.footer .container-md .link ul {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top:20px;
}

.footer .container-md .link ul a {
    color: #fff;
    font-size: 18px;
    padding: 10px;
    border-radius: 999px;
    margin-right: 10px;
} 

.footer .container-md .ewm {
    display: flex;
    justify-content: left;
    align-items: top;

}

.footer .container-md .ewm .footlogo {
    height: 175px;
    width: 45%;
    background-color: #fff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .container-md .ewm .footlogo:nth-child(2) {
    margin-left: 5%;
}

.footer a{
    transition: 0.3s;
}
.footer a:hover{
    color: #ffffff;
}

.container-md .link p a:hover{
    color: #fff;
}

.footer  .link ul li:nth-child(1) a {
    background-color: #25D366;
} 
.footer .container-md .link ul li:nth-child(2) a {
    background-color: #3B5998;
} 
.footer .container-md .link ul li:nth-child(3) a {
    background-color: #BE2222;
} 
.footer .container-md .link ul li:nth-child(4) a {
    background-color: #0077B5;
}

.footer .link ul li:nth-child(1) a:hover {
    color: #25D366; 
    background-color: white;
} 
.footer .container-md .link ul li:nth-child(2) a:hover {
    color: #3B5998;
    background-color: white;
}

.footer .container-md .link ul li:nth-child(3) a:hover {
    color: #BE2222;
    background-color: white;
}

.footer .container-md .link ul li:nth-child(4) a:hover {
    color: #0077B5;
    background-color: white;
}
 

@media screen and (max-width:768px) {
    .footer{
        padding: 40px 0;
    }
}


.CeSelect {
    position: fixed;
    right: 0;
    bottom: 15%;
    z-index: 99;
}

.CeSelect .box { 
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    position: relative; 
}

.CeSelect .box span{
    z-index: 4;
    background-color: #000000;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    border-radius: 5px;
}
.CeSelect .box:hover span{
    background-color: #fff;
}
.CeSelect .box i {
    display: block;
    font-size: 22px;
    padding: 9px 17px;
    color: white;
}
.CeSelect .box .email {
    position: absolute; 
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    height: 100%;
    border-radius: 5px;
    transition: 0.5s;
    z-index: 2;
    opacity: 0;
    visibility: hidden; 
}
.CeSelect .box:hover .email{
    right: 103%;
    opacity: 1;
    visibility: visible;
}
.CeSelect .box:hover span{
    background-color: #fff; 
}
.CeSelect .box:hover span i{
    color: #000 ;
}



.CeSelect .box .email a{
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #333;
    transition: 0.3s;
}

.CeSelect .box .email:hover a{
    color: #235B9E;
}

@media screen and (max-width:768px) {
    .CeSelect .box i{
        font-size: 16px;
        padding: 8px 12px;
    }
}
@media screen and (max-width:576px) {
    .CeSelect .box i{
        font-size: 14px;
    }
}
.CeSelect .box:not(:last-child) {
    border-bottom: 1px solid #fff;
}

.CeSelect .box:nth-child(1) {
    background-color: #4CC44C;
}

.CeSelect .box:nth-child(2) {
    background-color: #235B9E;
}

.CeSelect .box:nth-child(3) {
    background-color: #000000;
}

.CeSelect .box:nth-child(4) {
    background-color: #858585;
}

.CeSelect .box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color: white;
}

.CeSelect .box:nth-child(1):hover i {
    color: #4CC44C !important;
}

.CeSelect .box:nth-child(2):hover i {
    color: #235B9E !important;
}

.CeSelect .box:nth-child(3):hover i {
    color: #000000 !important;
}

.CeSelect .box:nth-child(4):hover i {
    color: #858585 !important;
}