/*==========================================================================
Author's custom styles
==========================================================================*/
body{
	font-family: 'Poppins', sans-serif;
}
html, body{
    width: 100%;
    height: 100%;
}
.no-padding{
	padding: 0px;
}
.flex-wraper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.wraper{
    background-image: url("../img/main-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.landing-title-container{
    position: relative;
}
.landing-title-container h5{
    font-size: 6vh;
    color: #333;
    line-height: 7vh;
    padding: 0;
    margin: 0;
}
.landing-title-container h6{
    font-size: 6vh;
    color: #333;
    line-height: 7vh;
    font-weight: 900;
    padding: 0;
    margin: 0;
}

.landing-details-container{
    margin: 25px 0px 25px;
}
.landing-button-container{
    min-height: 150px;
}
.landing-details-container p{
    font-size: 16px;
    color: #333;
    line-height: 26px;
    padding: 0;
    margin: 0;
}

.button-box{
    position: relative;
}
.button-box a img{
    width: 100%;
}
.button-box a{
    display: block;
    position: relative;
    transition: all linear 0.5s;
}
.button-box a::before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: #f70000;
    border-radius: 150px;
    display: none;
    transition: all linear 0.5s;
}
.button-box a:hover::before{
    width: 0%;
}
.button-box a:hover, .button-box a:focus{
    text-decoration: none;
}

.button-box a span{
    font-size: 6vh;
    line-height: 7vh;
    color: #fff;
    position: absolute;
    left: 0;
    top: 28%;
    font-weight: 900;
    transform: scale(1, 1);
    opacity: 1;
    transition: all linear 0.5s;
}

.button-box a h5{
    font-size: 6vh;
    line-height: 7vh;
    color: #fff;
    font-weight: 200;
    padding: 0;
    margin: 0;
}
.button-box a h6{
    font-size: 6vh;
    line-height: 7vh;
    color: #fff;
    font-weight: 900;
    padding: 0;
    margin: 0;
    z-index: 8;
    position: relative;
}

.flip-card{
    background-color: transparent;
    perspective: 1000px;
    min-height: 180px;
}

.flip-card-inner{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner{
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-card-back{
    transform: rotateY(180deg);
}
.lavender-logo-wraper{
    width: 160px;
    margin: 0 auto 25px;
}
.lavender-logo-wraper img{
    width: 100%;
}

@media only screen and (min-width: 769px) and (max-width: 1024px){
    .wraper{
        padding: 25px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
    .landing-button-container{
        min-height: 130px;
    }
    .flip-card{
        min-height: 130px;
    }
}
@media only screen and (min-width: 736px) and (max-width: 768px){
    .wraper{
        height: 100vh;
        width: 100%;
    }
    .button-box a span{
        font-size: 3vh;
        line-height: 4vh;
    }
    .button-box a h5{
        font-size: 3vh;
        line-height: 4vh;
    }
    .button-box a h6{
        font-size: 3vh;
        line-height: 4vh;
    }
}
@media only screen and (min-width: 701px) and (max-width: 735px){
    .wraper{
        height: auto;
        padding: 5px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
    .button-box a img{
        width: 50%;
    }
    .flip-card{
        min-height: 180px;
    }
}
@media only screen and (min-width: 668px) and (max-width: 700px){
    .wraper{
        height: auto;
        padding: 25px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (width : 667px) and (height : 375px) and (orientation : landscape) and (color : 8) and (device-aspect-ratio : 375/667) and (aspect-ratio : 667/375) and (device-pixel-ratio : 2) and (-webkit-min-device-pixel-ratio : 2){
    .flip-card{
        min-height: 180px;
    }
}
@media only screen and (min-width: 641px) and (max-width: 667px){
    .wraper{
        height: auto;
        padding: 25px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
    .button-box a img{
        width: 50%;
    }
    .flip-card{
        min-height: 180px;
    }
}
@media only screen and (min-width: 421px) and (max-width: 640px){
    .wraper{
        height: auto;
        padding: 25px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
    .button-box{
        margin-bottom: 15px;
    }
    .button-box a img{
        width: 50%;
    }
    .flip-card{
        min-height: 140px;
    }
}
@media only screen and (min-width: 281px) and (max-width: 420px){
    .wraper{
        height: auto;
        padding: 25px 0px;
    }
    .flip-card{
        min-height: 160px;
    }
}
@media only screen and (max-width: 280px){
    .wraper{
        height: auto;
        padding: 25px 0px;
    }
    .landing-details-container{
        margin: 25px 0px 25px;
    }
    .button-box{
        margin-bottom: 15px;
    }
    .button-box a span{
        font-size: 3vh;
        line-height: 4vh;
    }
    .button-box a h5{
        font-size: 3vh;
        line-height: 4vh;
    }
    .button-box a h6{
        font-size: 3vh;
        line-height: 4vh;
    }
    .flip-card{
        min-height: 100px;
    }
}