*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
}

#siteseal {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 10%;
}

#sub-title{
    font-size: 45px;
    font-family: cursive;
}

ul,nav{
    list-style: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 35px 100px 0;
}

header h2{
    text-transform: uppercase;
}

header nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

header nav li{
    margin: 0 15px;
    text-decoration: underline;
}

header nav li:first-child{
    margin-left: 0;
}

header nav li:last-child{
    margin-right: 0;
}

@media(max-width:1000px){
    header{
        padding:  20px 50px;
    }
}

@media(max-width:800px){
    header{
        flex-direction: column;
    }
    header h2{
        margin-bottom: 15px;
    }
    header nav li{
        margin: 0 7px;
    }
}

.section-title{
    text-transform: uppercase;
    font-size: 50px;
    text-align: center;
    color: crimson;
    margin-bottom: 5%;
}

/*banner area*/

section{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 100px;
}

@media(max-width:1000px){
    section{
        padding: 100px 50px;;
    }
}

@media(max-width:700px){
    section{
        padding: 125px 30px;;
    }
}

section p{
    max-width: 800px;
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 2;
}

.banner-area{
    position: relative;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.banner-area .banner-img{
    background-image: url(images/pexels-pixabay-531880.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
}

.banner-area .banner-img:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .8;
}

.banner-area h1{
    margin-bottom: 15px;
    font-size:  55px;
    text-size-adjust: 55px;
    font-family: cursive;
}

.banner-area h3{
    margin-bottom: 40px;
    font-size: 30px;
}

.banner-area .banner-btn{
    padding: 15px 35px;
    background: crimson;
    border-radius: 40px;
    text-transform: uppercase;
}

@media(max-width:800px){
    .banner-area{
        min-height: 750px;
    }

    .banner-area h1{
        font-size: 32px;
    }

    .banner-area h3{
        font-size: 23px;
    }

    .banner-area a.banner-btn{
        padding: 15px 40px;
    }
}

/*about area*/

ul.about-content{
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    padding-bottom: 35px;
}

.about-content li{
    padding: 20px;
    height: 280px;
    background-clip: content-box;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

.about-left{
    flex-basis: 40%;
    border: 1px dashed gray;
    background-image: url(images/pexels-margaret-weir-620530.jpg);
}

.about-right{
    flex-basis: 60%;
}

.about-area p{
    max-width: 800px;
    margin-bottom: 35px;
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
}

.about-right h2{
    margin-bottom: 3%;
}

.about-btn{
    padding: 15px 35px;
    background-color: crimson;
    border-radius: 40px;
    text-transform: uppercase;
    color: #fff;
}

@media(max-width: 1000px){
    ul.about-content{
        margin-bottom: 90px;
    }
    .about-left,
    .about-right{
        flex-basis: 100%;
    }
    .about-content li{
        padding: 8px;
    }
}

@media(max-width: 700px){
    ul.about-content{
        margin-bottom: 100px;
    }
}

/*service area*/

#services{
    background: #ddd;
    margin-top: 20px;
}

ul.services-content{
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-content li{
    padding: 0 30px;
    flex-basis: 33%;
    align-items: center;
}

.services-content li h4{
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.services-content li p{
    margin: 0;
}

@media(max-width:1000px){

    #services{
        margin-top: 50px;
    }
    
    .services-content li{
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .services-contentli:last-child{
        margin-bottom: 0;
    }
    .services-content li p{
        padding: 0;
    }
}

@media(max-width:700px){

    #services{
        margin-top: 75px;
    }
}

/*contacts area*/

.contact-content{
    text-align: center;
}

.contact-content li h4{
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

#app{
    font-style: italic;
    color: crimson;
    text-decoration: underline;
}

/*footer area*/

footer{
    bottom: 0;
    background: #222;
    height: auto;
    width: 100%;
    padding: 10px;
    font-family: "Open Sans";
    color: darkred;

}

.footer-title{
    margin: 15px;
    text-align: center;
    font-size: 30px;
    color: #000;
}

.footer-content{
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-content li{
    padding: 0 20px;
    flex-basis: 20%;
    max-lines: 1;
    align-items: center;
    text-align: center;
    font-size: 18px;
    size-adjust: 18px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.footer-area .footer-title .footer-img{
    background-image: url(/images/logo.jpg);
    min-height: 50px;
    min-width: 50px;
}

/*main paragraph*/

.about-page header{
    background-color: gray;
    padding-bottom: 20px;
    height: auto;

}

.main-paragraph{
    width: 100%;
}

#main-title{
    font-size: 60px;
    margin-bottom: 50px;
    margin-top: 45px;
    text-align: center;
    color: crimson;
}

.main-content{
    font-size: 25px;
}

@media(max-width:1000px){

    #main-title{
        margin-top: 50px;
    }

    .main-content{
        font-size: 20px;
        text-size-adjust: 20px;
    }
}
@media(max-width:600px){

    #main-title{
        margin-top: 55px;
    }
}

.main-content h4{
    font-size: 40px;
}

.main-content h4 p{
    text-align: left;
}

#sub-title-about{
    font-size: 45px;
    font-family: cursive;
    color: #000;
}

#home-about{
    padding: 15px 35px;
    text-transform: uppercase;
    text-decoration: underline;
}

#img-1{
    background-image: url(/images/PlaceHolder.jpg);
    width: 200px;
    height: 200px;

}

/*pricacy*/

.privacy{
    font-size: 22px;
    padding: 10px 25px;
}

.privacy h1{
    margin: 10px 0;
    text-decoration: underline;
}

.privacy h2{
    margin: 10px 0;
}