@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display&swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: poppins,sans-serif;
}
body{
    background-color: #111;
    color: #ededed;
}
nav{
    background: #111;
    height: 80px;
    width: 100%;
}
label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 10px;
    font-weight: bold;
    margin-left: 10px;
}
nav ul{
    float: right;
    margin-right: 50px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
a.active,a:hover{
    background: #00abf0;
    transition: 0.3s;
    color: #081b29;
}
.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

@media (max-width: 952px){
    label.logo{
        font-size: 30px;
        padding-left: 50px;
        padding: 10px;
    }
    nav ul li a{
        font-size: 16px;
    }
}
@media (max-width: 858px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #111;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    a:hover,a.active{
        background: none;
        color: #00abf0;
    }
    #check:checked ~ ul{
        left: 0;
    }
}

.info{
    margin-left: 2%;
    margin-top: 10%;
}

.info h1{
    left: 50px;
    font-size: 50px;
    color:#ededed;
    margin-bottom: 20px;
}
.info h4{
    color: #00abf0;
    font-size: 32px;
    font-weight: 700;
}
.info p{
    font-size: 16px;
    line-height: 30px;
}
    
.info a{
    position: relative;
    background: #00abf0;
    padding: 10px 18px;
    width: 172px;
    height: 50px;
    text-decoration: none;
    color:#081b29;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    z-index: 1;
    overflow: hidden;
}
.info a:hover{
    color: #00abf0;
}
.info a:nth-child(2)
{
    background-color: transparent;
    color: #00abf0;
    transition: 0.5s;
}
.info a:nth-child(2):hover
{
    color: #081b29;
}
.info a:nth-child(2)::before
{
    background-color: #00abf0;
}
.info a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #081b29;
    z-index: -1;
    transition: 0.5s;
}
.info a:hover::before{
    width: 100%;
    color: #00abf0;
}
.social{
    /*display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    align-items: center;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 2%;
    bottom: 100px;
    
}
.social a{
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    color:#00abf0;
    margin-right:20px;
    margin: 0 15px;
}
.social a:hover{
    color:#ff0000;
    transition: 0.3s;
}

@media only screen and (max-width: 1300px){
    .info{
        flex-direction: column-reverse;
        margin: 50px 0;
        font-size: 25px;
        margin-top: 80px;
        margin-bottom: 50px 0;
        margin-left: 20px;
    }
    .info p{
        flex-direction: column-reverse;
        margin: 50px 0;
        font-size: 14px;
    }
    .info a{
        background: #00abf0;
        padding: 10px 18px;
        text-decoration: none;
        color: #081b29;
        display: inline-block;
        margin: 15px 0;
        text-align: center;
        border-radius: 5px;
        font-size: 15px;
    }
    .social-links{
        text-align: center;
        margin-left: 5%;
        margin-top: 100px;
        margin-bottom: 10%;
    }
    .social-links a{
        font-size: 30px;
        color: #00abf0;
       
    }
}
