@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
header{
    background-image: url(./1.png);
}
ul{
    float: right;
    list-style-type: none;
    margin-top: 25px;
}

ul li{
    display: inline-block;
}
ul li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.6s ease;

}

ul li a:hover{
    background-color: #9c1910;
    color: #fff;
}
.logo img{
    float: left;
    width: 150px;
    height: auto;
}
.main {
    max-width: 1200px;
    margin: auto;
}
.title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.title h1{
    color: #fff;
    font-size: 60px;
}
.title h5{
    color: #fff;
    font-size: 20px;
    font-family: 'monospace';
}
.footer-container{
    background-color: #363232;
    padding-bottom: 4rem 0 4rem 0;
}

.footer {
    width: 70%;
    height: 20vh;
    background-color: #363232;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}
.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}
.footer-heading h2 {
    margin-bottom: 2rem;
}

.footer-heading a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.footer-heading a:hover {
    color: red;
    transition: 0.3s ease-out;
}
.container {
    position: relative;
    top: 50%;
    left: 5%;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px 
    1fr));
    grid-template-rows: auto;
    grid-gap: 0 40px;
}
.container .box {
    position: relative;
    font-size: 13px;
    height: 400px;
    color: #fff;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.webacttion {
    color: white;
    background: rgb(0, 0, 0);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.6s ease;
}
.webacttion:hover{
    background-color: white;
    color: black;
}




@media screen and (max-width: 1150px) {
    .footer {
        height: 50vh;
    }
}

