h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
strong,
ul,
li,
ol,
br,
i,
u,
a:hover,
a:focus,
a:visited{ 
    font: inherit; 
    color: inherit;
    margin: 0; 
    padding: 0;
    text-decoration: none; 
    outline: 0;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
.home{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 9%;
} 
@media (max-width: 767px){
    .home{
        height: 95%;
    }
}
.home__content{
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    align-items: center;   
}
.home__footer{
    border-top: 2px solid #000;
    width: 100%;  
    padding-top: 25px;
    padding-bottom: 50px;
    flex: 0 0 auto;  
}
@media (max-width: 767px){
    .home__footer{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.title{
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 500;
    line-height: 120px;
    letter-spacing: 3px;
    padding: 10px 0;
}
@media (max-width: 767px){
    .title{
        font-size: 50px;
        line-height: 50px;
    }
}
.policy a{
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.45px;
}
.policy a:hover{
    text-decoration: underline;
}
.policy a:before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 26px;
    background-image: url(../images/icon1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: top;
    margin-right: 5px;
}