@font-face {
    font-family: 'Tenstars';
    src: url("../fonts/Tenstars.ttf") format("truetype");
}
@font-face {
    font-family: 'OpenSans-Regular';
    src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'OpenSans-Regular';
}
.container{
    width: 70%;
    margin: 0 auto;
}
header,footer{
    background: #9f21e3;
}
.logo a{
    font-family: 'Tenstars';
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 3rem;
    padding: 12px 0;
    display: inline-block;
}
.hero_section{
    display: flex;
    background: #f7f7f7;
    height: 30vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
h1{
    text-transform: capitalize;
    letter-spacing: 1px;
}
h2{
    letter-spacing: 1px;
    text-align: center;
}
.location_wrap{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}
.locations{
    column-count: 6;
    list-style-type: none;
    /* margin-left: 50px; */
}
.locations li{
    margin-bottom: 40px;
    box-shadow: 0 0 4px rgb(0 0 0 / 10%);
    padding: 8px 12px;
}
.locations li a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1rem;
    color: #9f21e3;
}
.locations li a:hover{
    text-decoration: underline;
}
.icon_mr{    
    margin-right: 12px;
}
main{
    min-height: 50vh;
}
.footer_wrap{
    text-align: center;
    padding: 12px 0;
    color: #fff;
}

@media screen and (max-width:320px) {
    .tc{
        text-align: center;
    }
    .hero_section{
        text-align: center;
    }
    .locations{
        column-count: 1;
    }
    .footer_wrap{
        font-size: 12px;
        line-height: 20px;
    }
}
@media screen and (min-width:321px) and (max-width:480px) {
    .tc{
        text-align: center;
    }
    .hero_section{
        text-align: center;
    }
    .locations{
        column-count: 1;
    }
    .footer_wrap{
        font-size: 12px;
        line-height: 20px;
    }
}
@media screen and (min-width:481px) and (max-width:768px) {
    .tc{
        text-align: center;
    }
    .hero_section{
        text-align: center;
    }
    .locations{
        column-count: 2;
    }
    .footer_wrap{
        font-size: 12px;
        line-height: 20px;
    }
}
@media screen and (min-width:769px) and (max-width:1024px) {
    .tc{
        text-align: center;
    }
    .hero_section{
        text-align: center;
    }
    .locations{
        column-count: 3;
    }
    .footer_wrap{
        font-size: 12px;
        line-height: 20px;
    }
}