* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
}
.landing{
max-width: 1100px;
width: 100%;
display: table;
margin: 0 auto;
position: relative;
}
h1{
font-size: 2em;
margin: 0.67em 0;
line-height: 1.3em;

}
.bkgr{
display: table;
height: 100vh;
background: #ffffff url(./img/back.webp) no-repeat center;
background-size: cover!important;
width: 100%;
position: relative;
background-repeat: no-repeat!important;
background-position: center!important;
background-attachment: inherit!important;
}
.subTitle{
display: table;
color: #000;
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
font: normal 170%/150% Arial, Helvetica, sans-serif;

}
.linethree{
color: #000;
font-style: italic;
font-size: 20px;
display: block;
font: normal 130%/150% Arial, Helvetica, sans-serif;
}


.landing section {
position:relative;
display: flex;
justify-content: space-between;
align-items: center;
min-height: 550px;
padding: 0 80px;
}
.landing section .contentBox {
position: relative;
max-width: 600px;
z-index: 1000;
}
.landing section .contentBox h1 {
color: #000;
text-transform: uppercase;
}
.landing section .contentBox p {
font: normal 120%/150% Georgia, "Times New Roman", Times, serif;
color: #fb8c00;
}
.landing section .contentBox .countdown {
display: flex;
margin: 20px 0;
}
.landing section .contentBox .countdown .time {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #fff;
margin-right: 20px;
font-size: 28px;
min-width: 110px;
font-weight: 700;
padding: 15px 5px 10px;
border-radius: 4px;
color: #385dab;
}
.landing section .contentBox .countdown .time span {
font-size: 15px;
font-weight: 600;
color: #312747;
}
.landing section .contentBox a{
position: relative;
margin-top: 10px;
display: inline-block;
background: #385dab;
color: #fff;
font-size: 20px;
letter-spacing: 2px;
padding: 15px 35px;
text-decoration: none;
border-radius: 40px;
}
.landing section .imgBox img {
position: relative;
max-width: 500px;
width: 100%;
margin-top: 20px;
z-index: 2;
animation: floatingbook 5s ease-in-out infinite;
}

@keyframes floatingbook {
0%,100%{
transform: skewY(-7deg) translate(0,-10px);
}
50%{
transform: skewY(-7deg) translate(0,10px);
}
}

@media only screen and ( max-width: 820px ){
.landing section{
padding: 30px 30px 0;
display: table;
}
.landing section .contentBox{
max-width: 100%;
}
}
@media only screen and ( max-width: 558px ){
.landing section .contentBox .countdown .time{
font-size: 18px;
min-width: 70px;
}
.landing section .contentBox a{
font-size: 15px;
}
}
@media only screen and ( max-width: 396px ){
.landing section .contentBox .countdown .time{
margin-right: 10px;
min-width: 60px;
}
.landing section .contentBox .countdown .time span{
font-size: 12px;
}
}
