@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: "Public Sans", sans-serif;
}
*{
    box-sizing: border-box;
}
/* Navbar */
nav{
    width: 100%;
    height: auto;
    padding: 10px 0px;
    background-color: #fff;
    border: 1px solid #fff;
}
nav img{
    max-width: 100%;
}
nav ul{
    padding: 0px;
}
nav ul li{
    padding: 0;
    margin-left: 10px;
}
nav ul li:hover a.nav-link{
    color:  hsl(136, 64%, 51%);
    transition: all 0.3s ease;
}
nav ul li a{
    color: #212121;
    font-size: 16px;
    font-family: "Public Sans", sans-serif;
}
nav button.btn-last,
.wrap-header button,
.footer button{
    background-color: hsl(136, 64%, 51%);
    background-image: linear-gradient(to right, hsl(136, 64%, 51%),hsl(192, 69%, 51%));
    width: 140px;
    color: #fff;
    height: 40px;
    border: 1px solid  hsl(136, 64%, 51%);
    border-radius: 20px;
    
}
@media only screen and (max-width: 992px){
    nav ul li a{
        color: #212121;
        font-size: 0;
    }
}
/* Wrap Header */
.wrap-header {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    padding: 30px 0px;
    margin-top: 0px;
    
}

.wrap-header .header-text{
    margin-top: 60px;
}
.wrap-header h4 {
    color: #212121;
    font-size: 30px;
    text-align: left;
    margin-top: 20px;
}

.wrap-header p {
    font-size: 16px;
    line-height: 30px;
    color: #777;
    margin-top: 20px;
}

.wrap-header .col-lg-8{
    text-align: center;
}
.wrap-header img {
    max-width: 100%;
    width: 350px;
    text-align: center;
}

.wrap-header button:hover{
    background-color: hsl(136, 64%, 51%);
    background-image: linear-gradient(to right,hsl(192, 69%, 51%) , hsl(136, 64%, 51%));
    transition: all 1s ease;
}
/*choose section*/
.choose,
.blog{
    width: 100%;
    height: auto;
    padding: 25px 0;
    overflow: hidden;
    margin-top: 50px;
}
.choose h3,
.blog h3{
    color: #212121;
    font-size: 30px;
    margin-top: 15px;
}
.choose p{
    color: #777;
    font-size: 16px;
    line-height: 28px;
}
.choose .box{
    margin-top: 15px;
}
.choose .box img{
    margin-top: 10px;
}
.choose .box h4{
    color: #333;
    font-size: 28px;
    margin: 18px 8px;
}
.choose .box p{
    font-size: 15px;
}
.choose .box:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
    border-bottom: 2px solid hsl(136, 64%, 51%);
}
/*start blog*/
.blog .test{
    margin-top: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.blog .test img{
    width: 100%;
    object-fit: cover; 
}
.blog .text{
    padding: 10px;
    box-sizing: border-box;
}
.blog .text span{
    color: #ccc;
    font-size: 14px;
    display: block;
}
.blog .text h5{
    font-size: 17px;
    color: #333;
    text-transform: uppercase;
}
.blog .text p{
    color: #777;
    font-size: 14px;
}
/*footer*/
.footer{
    background-color:  hsl(221, 50%, 20%);
    padding: 30px 0;
}
.footer .social{
    margin-top: 30px;
    display: flex;
    list-style: none;
}
.footer .social li a{
    margin-right: 10px;
}
.footer .social li a img{
    width: 15px;
}
.footer ul{
    list-style: none;
}
.footer ul li{
    margin-bottom: 20px;
}
.footer ul li a{
    color: #ffffffa4;
    text-decoration: none;
    font-size: 12px;
}
.footer p{
    color: #ffffffa4;
    font-size: 12px;
    margin-top: 20px;
    margin-left: 60px;
}
.footer button{
    margin-left: 100px;
}

