/*------------------------------------------------------------------
[Table of contents]

1. h1
2. h2
3. h4
4. h6
5. p
6. contact btn
7. generic

-------------------------------------------------------------------*/
:root {
    --primary-color:#000000;
    --secondary-color:#fff;
    --accent:#05c3dd;
    --text-color: #a09cbb;
    --off-white-color: #f0f4ff;
    --light-purple-color:#05c3dd;
    --white-color:#fff;
    --light-grey-color:#14213d;
    --blue-color: #05c3dd;
  }
h1{
    font-size: 85px;
    line-height: 88px;
}
h2{
    font-size: 52px;
    line-height: 54px;
}
h4{
    font-size: 26px;
    line-height: 28px;
}
h6{
    font-size: 22px;
    line-height: 24px;
    color: var(--accent);
}
p{
    font-size: 22px;
    line-height: 33px;
}
.contact a{
    background: var(--accent);
    color: var(--white-color);
   padding: 10px 43px 11px;
    font-size: 20px;
    
    font-weight: 600;
    display: inline-block;
    border-radius: 35px;
    line-height: 18px;
    text-decoration: none;
    box-shadow: 0 0 85px 0 #14213d;
    border: 1px solid transparent;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.contact a:hover,
.generic-btn a:hover
{
    border-color: var(--light-purple-color);
    background: var(--light-purple-color);
    transform: translateY(-8px);
}
/* .generic-btn a:hover{
    background-color: #fff;
} */
.generic-btn a{
    background: var(--accent);
    color: var(--white-color);
    padding: 15px 40px 15px;
    font-size: 20px;
    display: inline-block;
    border-radius: 35px;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 0 85px 0 rgba(20, 33, 61, 0.1);
    border: 1px solid transparent;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.padding-bottom {
    padding-bottom: 50px;
}

.padding-top {
    padding-top: 50px;
}