.landing{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.title{
    font-size: 22px;
    margin: 0px;
    text-align: center;
}
.title h1{
    margin: 10px 5px 10px 5px;
}
.landing div{
    background-color: #212121;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 5px 10px 5px;
    padding: 10px;
    border-radius: 20px;
    border-bottom: #ff6f00 3px solid;
    border-right: #ff6f00 3px solid;
}
.landing div:hover{
    cursor: pointer;
}
.landing div h2{
    font-size: 28px;
    margin: 0px;
    color: #fff0de;
}
.landing div img{
    height: 60px;
    margin: 10px;
}
.landing div p{
    font-size: 26px;
    margin: 0px;
    color: #fff0de;
}
.quote{
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255,147,64,1) 0%, rgba(250,88,0,1) 15%, rgba(250,88,0,1) 85%, rgba(255,147,64,1) 100%);
    width: 100%;
    margin: 30px 0px 30px;
}
.quote p{
    font-size: 22px;
    text-align: center;
    margin: 30px;
}
#business,#residential{
    margin: 50px 0px 50px 0px;
}
.benefits{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 50px;
    font-size: 20px;
}
.benefits div img{
    width: 450px;
    border-bottom: solid 3px #ff6f00;
}
.wifi{
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.wifi div p{
    color: black;
    font-size: 26px;
    font-weight: 500;
}
.wifi div p b{
    color: #ff6f00;
    font-size: 28px;
    font-weight: 800;
}
.wifi div img{
    height: 80px;
    margin: 20px;
    background-color: #fff0de;
    border-radius: 100%;
    padding: 10px;
}
.plan{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    background-color: #fff0de;
    margin: 20px 0px 20px 0px;
}
.plan h2{
    font-size: 28px;
}
.plan p{
    font-size: 22px;
}
.plan p b{
    color: #ff6f00;
    font-size: 32px;
    margin: 10px;
}
.plan hr{
    width: 50%;
}
@media only screen and (max-width: 1200px){
    .landing div{
        width: 40%;
    }
    .landing div h2{
        font-size: 36px;
    }
    .landing div img{
        height: 80px;
    }

    .plan{
        width: 80%;
    }
}
