*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'brushscript';
    src: url('../fonts/BrushScriptStd.otf');
}

@font-face {
    font-family: 'printclear';
    src: url('../fonts/PrintClearly.woff');
    font-weight: 400;
}

@font-face {
    font-family: 'printclear';
    src: url('../fonts/PrintBold.woff');
    font-weight: 700;
}

.banner{
    width: 100%;
    height: 100vh;
}

.banner img{
    width: 100%;
    height: 100%;
}

.about{
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.about .about-header{
    position: relative;
    text-align: center;
}

.about .about-header img{
    width: 326px;
    margin-left: 8px;
}

.about .about-header h2{
    font-family: 'printclear';
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    transform: translateY(-68px);
}

.about p{
    font-family: Arial, Helvetica, sans-serif;
    color: #4f4f4f;
    width: 50%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 30px;
}

.about p span{
    font-weight: 600;
}

.contact{
    padding: 70px 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #4f4f4f;
}

.contact h2{
    text-align: center;
    font-weight: 400;
    color: #FFF;
    font-size: 30px;
}

.contact form{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.contact form input[type="text"],.contact form input[type="email"]{
    width: 48%;
    padding: 15px;
    background: transparent;
    outline: none;
    border: 1px solid #a8a9aa;
    border-radius: 1px;
    color: #a8a9aa;
}

.contact form textarea{
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background: transparent;
    outline: none;
    border: 1px solid #a8a9aa;
    border-radius: 1px;
    font-family: Arial, Helvetica, sans-serif;
    color: #a8a9aa;
}

.contact form input[type="text"]::placeholder,.contact form input[type="email"]::placeholder, .contact form textarea::placeholder{
    color: #a8a9aa;
}

.contact .submit{
    text-align: center;
    margin-top: 30px;
}

.contact .submit button{
    width: 188px;
    padding: 9px;
    background: #fff;
    outline: none;
    border: none;
    font-size: 18px;
    border-radius: 10px;
    color: #231f20;
    cursor: pointer;
}

footer{
    text-align: center;
    padding: 20px 0;
    background: #333333;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

footer h3{
    font-weight: 400 !important;
    font-size: 17px;
}

@media (max-width:991px) {
    .banner{ 
        height: 60vh;
    }
}

@media (max-width:576px) {
    .banner{ 
        height: 35vh;
    }
    .about p{
        width: 80%;
        font-size: 16px;
    }
    .contact form{
        width: 85%;
    }
    .contact form input[type="text"], .contact form input[type="email"]{
        width: 100%;
    }
    .contact form input[type="text"]{
        margin-bottom: 20px;
    }
}

@media (max-width:420px){
    .about .about-header h2{
        font-size: 22px;
        transform: translateY(-54px);
    }
    .about .about-header img{
        width: 280px;
    }
    footer h3{
        font-size: 15px;
    }
}