*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Calibri;
    src: url(./fonts/calibril.woff)  format("woff");
}
body{
    position: relative;
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
}
h1{
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 100px;
}
p{
    font-size: 46px;
    font-weight: lighter;
    font-family: "Calibri";
    margin-bottom: 20px;
}
a{
    text-decoration: none;
}
.expi-main{
    width: 100%;
    height: 100vh;
    background: url(./images/getexpibg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 15px;
}
.expi-orange{
    color: #d4653f;
}
.expi-italic{
    font-style: italic;
}
.logo-wrap{
    margin-bottom: 45px;
}
.expi-btn{
    width: auto;
    height: auto;
    background: #d4653f;
    border-radius: 15px;
    border: 0;
    color: #fff;
    appearance: none;
    font-size: 37px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    line-height: 0;
    transition: .2s all linear;
    padding: 40px 60px;
}
.expi-btn:hover{
    box-shadow: 0px 2px 5px 0px rgba(225, 225, 225, .2);
}
.expi-btn:active{
    transform: scale(.98);
    box-shadow: none;
}

@media (max-width:1400px) {
    h1{
        font-size: 54px;
        margin-bottom: 80px;
    }
    p{
        font-size: 36px;
        margin-bottom: 18px;
    }
}
@media (max-width:991px) {
    .logo-wrap{
        margin-bottom: 25px;
    }
    p {
        font-size: 26px;
        margin-bottom: 15px;
      }
      h1 {
        font-size: 40px;
        margin-bottom: 60px;
      }
      .expi-btn {
        padding: 30px 50px;
        font-size: 24px;
      }
}
@media (max-width:767px) {
    p {
        font-size: 19px;
        margin-bottom: 5px;
      }
      h1 {
        font-size: 26px;
        margin-bottom: 40px;
      }
      .expi-btn {
        padding: 20px 40px;
        font-size: 15px;
        letter-spacing: .6px;
        border-radius: 7px;
      }
}