html {
    font-family: 'Heebo', sans-serif !important;
}
body {
    margin: 0;
}
.header {
    background:url('header.jpg') no-repeat center;
    position: relative;
    background-size: cover;
    height: 800px;
    width: 100%;
}
.header img {
    position: absolute;
    left: 50%;
    width: 120px;
    bottom: -60px;
    margin-left: -60px
}
.header p {
    line-height: 1em;
    font-weight: bold;
    position: absolute;
    color: #fff;
    font-size: 7em;
    top: 130px;
    left: 735px;
    width: 270px;
    height: 222px;
    margin: 0;
}
.main {
    width: 100%;
    text-align: left;
    padding: 100px 0;
    color: #1695FE;
    display: flex;
    justify-content: center;
}
.main p{
    margin: 5px 100px;
    border: 1px solid rgb(185, 185, 185);
    padding:0 10px;
    border-radius: 50px;
}
.btn {
    margin: 15px;
    width: 270px;
    height: 60px;
}
.footer-bg {
    background-color: #F3F3F3;
    padding: 50px;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
}

@media (max-width: 1550px) {
    .header p {
        top: 80px;
        left: 400px;
    }
}

@media (max-width: 1050px) {
    .header {
        height: 500px;
    }    
    .header p {
        top: 80px;
        left: 300px;
    }
}

@media (max-width: 800px) {
    .header {
        height: 330px;
    }    
    .header p {
        top: 30px;
        left: 30px;
        font-size: 4em;
    }
    .main p{
        margin: 5px 2px;
    }
    .footer {
      flex-direction: column;
    }
  }

  
@media (max-width: 500px) {
    .header p {
        left: 0;
        width: 220px;
        font-size: 3em;
    }
}