/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    height:100vh;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}
.logo-section{
    flex-shrink:0;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px 0;
}
.logo{
   
    width:14%;
    height:auto;
    display:block;
}
.construction{
    flex:1;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 10%;
    gap:60px;
}
.left{
    flex:1;
    max-width:450px;
}
.left h1{
    font-family:'Oswald',sans-serif;
    font-size:60px;
    line-height:75px;
    color:#111;
    font-weight:700;
}
.left h2 {
    font-size: 28px;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
}
.cta-card a {
    color: black;
    text-decoration: none;
    font-size:17px;
}

.cta-card p {
    font-size: 19px;
    margin: 0px !important;
}
.left p {
    font-size: 19px;
    line-height: 1.55;
    color: #1b1b1b;
    margin-bottom: 15px;
}
.notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 49px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .35s;
    margin-top: 10px;
}
.notify-btn:hover{
    background:#fff;
    color:#000;
}
.credit{
    display:block;
    margin-top:40px;
    color:#222;
    font-size:15px;
}
.credit a{
    color:#222;
}
.social{
    display:flex;
    gap:28px;
    margin-top:35px;
}
.social a{
    color:#111;
    font-size:22px;
    transition:.3s;
}
.social a:hover{
    transform:translateY(-4px);
}
.right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}
.right img{
    width:100%;
    max-width:400px;
    height:auto;
    display:block;
}
@media(max-width:991px){
.construction{
    padding:60px 40px;
    gap:40px;
}
.left h1{
    font-size:62px;
    line-height:62px;
}
.left h2{
    font-size:28px;
}
.left p{
    font-size:22px;
}
.right img{
    max-width:500px;
}

}

@media(max-width:768px){

.construction{
    flex:1;
    flex-direction:column-reverse;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    gap:25px;
}
.left{
    max-width:100%;
}
.right{
    width:100%;
}
.right img{
    max-width:360px;
}
.left h1{
    font-size:54px;
    line-height:54px;
}
.left h2{
    font-size:26px;
}
.left p{
    font-size:20px;
}
.notify-btn{
    width:200px;
    height:58px;
}
.social{
    justify-content:center;
}

}
@media(max-width:480px){
.construction{
    padding:40px 25px;
}
.left h1{
    font-size:44px;
}
.left h2{
    font-size:22px;
}
.left p{
    font-size:18px;
    line-height:1.6;
}
.right img{
    max-width:300px;
}
.notify-btn{
    width:180px;
    height:55px;
}
.social{
    gap:20px;
}

}