@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}
section{
    position: relative;
    width: 100%;
    min-height:100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: url('./a-flat-nature-background-vector.jpg')no-repeat;
    background-size: cover; 
    background-position: center;
    

}

header{
    position: relative;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;


}

header .logo{
    position: relative;
    color: #fff;
    font-size: 30px;
    text-decoration: none ;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

header .navigation a{
    color: #000;
    /* background: #fff ; */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px 15px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: background;

}
header .navigation a:not(:last-child){
    margin-right: 30px;

}


header .navigation a:hover{
    background: #f5f5f5;
}

.content{
    max-width: 650px;
    margin: 60px 100px;
}

.content .info h2{
    color: #226A80;
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 20px;
}
.content .info h2 span{
    color: #fff;
    font-size: 50px;
    font-weight: 600;

}
.content .info p{
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 40px;
    color:#000;
}
.content .info-btn{
    color:#fff;
    background: #226A80;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 30px;
    text-transform: uppercase;
    transition: 0.3s;
    transition-property: background;
}
.content .info-btn:hover{
    background: #0C4F60;
}
.media-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

}
.media-icons a{
    position: relative;
    color: #111;
    font-size: 25px;
    margin: 0 10px;
    transition: 0.3s;
    transition-property: transform;
}
.media-icons a:hover{
    transform:scale(1.5);
}

label{
    display: none;
}
#check{
    z-index: 3;
    display: none;
}

@media (max-width:960px){
    header .navigation{
        display: none;
    }

    label{
        display: block;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        transition-property: color;
    }
    label:hover{
        color:#fff;
    }

    label #close{
        display: none;
    }

    #check:checked ~header .navigation{
        z-index: 2;
        position: fixed;
        background: rgba(114,223,255);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #check:checked ~ header .navigation a{
        font-weight: 700;
        margin-right: 0;
        margin-bottom: 0;
        letter-spacing: 2px;

    }
    #check:checked ~ header label #btn{
        display: none;
    }
    #check:checked ~ header label #close{
        z-index: 2;
        display: block;
        position: fixed;
    }
    label #btn{
        position: absolute;
    }
    header .logo{
        position: absolute;
        bottom: -6px;
        left:13px;
    }
    .content .info h2{
        font-size: 45px;
        line-height: 50px;
    }
    .content .info h2 span{
        font-size: 40px;
        font-weight: 600;
    }
    .content .info p{
        font-size: 14px;
    }
}

@media (max-width:560px){
   .content .info h2{
        font-size: 25px;
        line-height: 40px;
    }
    .content .info h2 span{
        font-size: 23px;
        font-weight: 600;
    }
    .content .info p{
        font-size: 14px;
    }
    header .logo{
        position: absolute;
        bottom: -6px;
        left:13px;
    }

}
