

/* footer */ 

.footer {
    width: 100%;
    height: 160px;
    background: #353D48;
    color:white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* position: relative;
    bottom:0; */
}
.footer-item{
    width:calc(100%/3 - 1rem);
    height: 100%;
    display:flex;
    justify-content:center;
    align-items: center;
}
.footer-item a{
    text-decoration: none;
    color:white;
    display:flex;
    justify-content:center;
    align-items: center;}
.footer-item p{
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    display:flex;
    margin-bottom: 0;
}
.footer-item i{
    font-size: clamp(1.8rem, 4vw, 3rem);
    padding:15px;
}
.sn{
    display:flex;
    width:calc(100%/3 - 9rem) ;
    justify-content: space-around;
}
.icon{
    font-size: clamp(1.3rem, 5vw, 4rem);
}


/* MEDIA QUERIES */

@media screen and (max-width: 1090px) {
     /* contact media queries */

     .contact {
        height: auto;
        flex-direction: column;
     }
     .contact h2 {
        width: 100%;
        /* font-size: 40px; */
        margin-bottom: 80px;
     } 
     .contact form {
        width: 60%;
     }
     .form-group input {
        width: 100%;
     }
     .submit {
        width: 100%;
     }
}

@media screen and (max-width: 980px) {
    .blog-container .blog-item {
        width: 70%;
        height: auto;
        justify-content: center;
    }
    .blog-item .button-box{
        justify-content: flex-start;
    }
    .renting {
        height: auto;
        position: relative;
    }
    .about{
        flex-direction: column;
    }
    .about-item{
        width:100%;
        height:calc(100vh/2);
    } 
    .who{
        justify-content: center;
    }
    .who-container{
        position:relative;
        height:100%;
        width:100vw;
    }

    .who-text, .who .thirty{
        height: 50%;
        justify-content: center;
        position:relative;
    }
    .who-text>p{
        padding:0;
        margin:0;
        font-size: 1.2rem;
    }
    .logo-epel{
        height:130px;
    }

    
    .card{
    
        transform-style:flat;
   
    }
    .front, .back{
        height:50%;
        position:relative;
        backface-visibility:visible;
        transform:rotateY(0deg);
    }
    .front .thirty{
        height:100%;
        width:100%;
        position:absolute;
        top:0;
        left:0;
        color:white;
        z-index: 1;
    }
    .thirty h2{
        padding:10px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .media{
        height: 100%;
    }

    .contact h2{
        text-align: center;
    }


}

@media screen and (max-width: 818px) {

    .footer{
        flex-direction: column;
        /* height: auto; */
    }
    .footer-item{
        width:100%;
    }
    .footer-item p{
        /* display:none; */
    }

    
}

@media screen and (max-width:560px){

    /* footer queries */
    .footer{
        padding:30px 10px;
        height:250px;
    }
    .footer-item{
        justify-content: flex-start;
    }
}

