.footer {
    color:var(--main-color); 
}
.footer h3 {
    color:var(--main-color);
}
.footer_main p {
    margin-bottom: 10px;  
}
.footer_wrapper {
    background-color: var(--second-color);
}

.footer__main {
    display: grid;
    gap:30px;
    grid-template-columns: auto 30% 26%;
    grid-template-rows: 5fr;
    padding-top: 40px;
    padding-bottom: 35px;
}
.footer__logo {
    grid-row: 2/4;
    grid-column: 1/2;
    align-self: center;
    justify-self: center;
}
.footer__slogan {
    grid-row: 4/5;
    grid-column: 1/2;
    justify-self: center;
}
.footer_contacts-header {
    grid-row: 1/2;
    grid-column: 2/3;
    letter-spacing: 1px;
}
.footer_contacts {
    grid-row: 2/3;
    grid-column: 2/3;
    display: flex;
    flex-direction: row; 
    gap:25px;      
}
.footer_contacts p, .footer_emails p, .footer_location p{
    line-height: 1.4;
}
.footer_emails {
    grid-row: 3/4;
    grid-column: 2/3;
    display: flex;
    flex-direction: row;
    gap:25px;      
}
.footer_location {
    grid-row: 4/5;
    grid-column: 2/3;
    display: flex;
    flex-direction: row;
    gap:25px;      
}
.footer_time-header {
    grid-row: 1/2;
    grid-column: 3/4;
    letter-spacing: 1px;
}
.footer_time {
    grid-row: 2/3;
    grid-column: 3/4;
    display: flex;
    flex-direction: row;
    gap:25px;  
}
.footer_button {
    grid-row: 5/6;
    grid-column: 3/4;
    justify-self: right;
}

.footer__bottom {
    background-color: #162F42;
    text-align: center;
    color: var(--main-color);
    padding: 18px;
}

.studio__link {
    color:var(--red-color);
}

@media (max-width:1000px) {
    .footer {
    font-size: 16px;
    }
    .footer__main {    
        gap:20px; 
        padding-bottom: 25px;
        padding-top: 30px;   
        grid-template-columns: auto 34% 26%;  
    }
    .footer_contacts, .footer_emails, .footer_location, .footer_time{
        gap:15px;      
    } 
    .footer-icon {
        width: 30px;
        height: 30px;
    }       
}
@media (max-width:760px) {
    .footer_time-header {
        display:none;
    }
    .footer_time {
        display:none;
    }
    .footer__main {    
        grid-template-columns: 45% 10% auto;
        padding-bottom:10px;
    }
    .footer__logo {
        grid-row: 1/3;
        grid-column: 3/4;
        align-self: center;
        justify-self: center;
    }
    .footer__slogan {
        grid-row: 3/4;
        grid-column: 3/4;
        justify-self: center;
    }
    .footer_contacts-header {
        grid-row: 1/2;
        grid-column: 1/2;
    }
    .footer_contacts {
        grid-row: 2/3;
        grid-column: 1/2;          
    }
    .footer_emails {
        grid-row: 3/4;
        grid-column: 1/2;         
    }
    .footer_location {
        grid-row: 4/5;
        grid-column: 1/2;
    }
    .footer__bottom {    
        padding: 15px;
    }
}

@media (max-width:580px) {
    .footer {
        font-size: 14px;
    }
    .footer__main {    
        gap:12px;
        padding-top: 20px;  
    }
    .footer__bottom {    
        padding: 5px;
    }
}
@media (max-width:500px) {
    .footer__slogan, .footer__logo {
        display: none;
    }
    .footer_contacts {
        grid-row: 2/3;
        grid-column: 1/4;          
    }
    .footer_emails {
        grid-row: 3/4;
        grid-column: 1/4;         
    }
    .footer_location {
        grid-row: 4/5;
        grid-column: 1/4;
    }
}