*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}
body{
    background-color: #1E202B;
}
header {
    background-color: #1E202B;
    width: 100%;
    padding: 50px 0;
}
header nav {
    margin: auto;
    max-width: 1140px;
    position: relative;
    padding: 0 20px;
}
header nav .header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}
header nav .header-nav .header-logo {
    display: flex;
    align-items: center;
}
header nav .header-nav .header-logo .header-text {
    margin-left: 10px;
}
header nav .header-nav .header-logo .header-text a {
    text-decoration: none;
    color: white;
}
header nav .header-nav .header-logo .header-text h1{
    font-size: 16px;
}
header nav .header-nav .header-logo .header-text small{
    font-size: 10px;
    color: #BFC1C8;
}
.burger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}
.burger span{
    width:25px;
    height:3px;
    background:white;
    display:block;
}
header nav .header-nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
header nav .header-nav ul a{
    height: 30px;
    border-radius: 20px;
    padding: 5px 25px;
    border: transparent solid 2px;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    color: white;
        transition: 0.4s;
}
header nav .header-nav ul a li {
    transition: 0.4s;
}
header nav .header-nav ul a:hover{
    border-color: #009AD8;
    color: #009AD8;
}
header nav .header-nav ul a.active{
    border: #009AD8 solid 2px;
}
header nav .header-nav ul a.active{
    color: #009AD8;
}
header nav .sec-ul{
    text-align: center;
    background-color: #262936;
    border-radius: 12px;
    margin-top: 35px;
    display: none;
}
.sec-ul.show{
    display: block;
}
header nav .sec-ul ul{
    list-style: none;
    margin: auto;
}
header nav .sec-ul ul a{
    text-decoration: none;
    color: white;
}
header nav .sec-ul ul a li{
    padding: 20px;
    border-bottom: #bfc1c825 solid 1px;
    font-size: 14px;
    outline: none;
    transition: 0.5s;
}
header nav .sec-ul ul a:last-of-type li{
    border-bottom: transparent;
}
header nav .sec-ul ul a:first-of-type{
    color: #009AD8;
}
header nav .sec-ul ul a:hover{
    color: #009AD8;
}
main{
    display: flex;
    justify-content: center;
    width: 100%;
}
main .hero{
    background-color: #1E202B;
    width: 100%;
    position: relative;
}
main .hero .back-img{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.5)) , url(../images/photo-1477959858617-67f85cf4f1df.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    height: 350px;
    inset: 0;
}
main .hero .search-box{
    max-width: 1140px;
    margin: auto;
    display: flex;
    padding: 90px 0;
    overflow: hidden;
    position: relative;
}
main .hero .search-box input{
    color: white;
    background-color: #1E202B;
    border-radius: 40px;
    border: none;
    outline: none;
    width: 100%;
    height: 56px;
    padding: 20px 50px 20px 20px;
    flex: 1;
}
main .hero .search-box button{
    height: 46px;
    background-color: #009AD8;
    padding: 0 40px;
    border: none;
    outline: none;
    border-radius: 40px;
    position: absolute;
    top: 95px;
    right: 4px;
    color: white;
    cursor: pointer;
}
main .hero .cards{
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
}
main .hero .cards .card{
    height: 415px;
    width: 380px;
    overflow: hidden;
}
main .hero .cards .card1{
    background-color: #323544;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
main .hero .cards .card1 .header-card{
    background-color: #2D303D;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-top-left-radius: 12px;
}
main .hero .cards .card1 .header-card h2{
    font-size: 14px;
    font-weight: 400;
    color: #BFC1C8;
}
main .hero .cards .card1 .body-card{
    padding: 30px 20px;
}
main .hero .cards .card1 .body-card .location{
    font-size: 18px;
    color: #BFC1C8;
    margin-bottom: 10px;
}
main .hero .cards .card1 .body-card .degree .num{
    font-size: 90px;
    color: white;
    font-weight: 600;
    height: 125px;
}
main .hero .cards .card1 .body-card .degree img{
    width: 90px;
    height: 90px;
}
main .hero .cards .card1 .body-card .custom{
    color: #009AD8;
    margin-bottom: 20px;
}
main .hero .cards .card1 .body-card span {
    margin-right: 20px;
    color: #BFC1C8;
}
main .hero .cards .card1 .body-card span img {
    margin-right: 5px;
}
main .hero .cards .card2{
    background-color: #262936;
}
main .hero .cards .card2 .header-card{
    background-color: #222530;
    text-align: center;
    padding: 12px;
}
main .hero .cards .card2 .header-card h2{
    font-size: 14px;
    font-weight: 400;
    color: #BFC1C8;
}
main .hero .cards .card2 .forecast{
    text-align: center;
}
main .hero .cards .card2 .forecast .forecast-content{
    padding: 50px 20px 10px;
}
main .hero .cards .card2 .forecast .forecast-content .forecast-icon{
    margin-bottom: 20px;
}
main .hero .cards .card2 .forecast .forecast-content .forecast-icon img{
    width: 48px;
    height: 48px;
}
main .hero .cards .card2 .forecast .forecast-content .degree{
    font-size: 24px;
    font-weight: 600;
}
main .hero .cards .card2 .forecast .forecast-content small{
    font-size: 16px;
    color: #BFC1C8;
}
main .hero .cards .card2 .forecast .forecast-content .custom{
    font-size: 14px;
    color: #009AD8;
    margin: 20px 0;
}

main .hero .cards .card3{
    background-color: #323544;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
main .hero .cards .card3 .header-card{
    background-color: #2D303D;
    text-align: center;
    padding: 12px;
    border-top-right-radius: 12px;
}
main .hero .cards .card3 .header-card h2{
    font-size: 14px;
    font-weight: 400;
    color: #BFC1C8;
}
main .hero .cards .card3 .forecast{
    text-align: center;
}
main .hero .cards .card3 .forecast .forecast-content{
    padding: 50px 20px 10px;
}
main .hero .cards .card3 .forecast .forecast-content .forecast-icon{
    margin-bottom: 20px;
}
main .hero .cards .card3 .forecast .forecast-content .forecast-icon img{
    width: 48px;
    height: 48px;
}
main .hero .cards .card3 .forecast .forecast-content .degree{
    font-size: 24px;
    font-weight: 600;
}
main .hero .cards .card3 .forecast .forecast-content small{
    font-size: 16px;
    color: #BFC1C8;
}
main .hero .cards .card3 .forecast .forecast-content .custom{
    font-size: 14px;
    color: #009AD8;
    margin: 20px 0;
}
footer{
    width: 100%;
    padding: 50px 0;
    margin-top: 90px;
    background-color: #2D303D;
}
footer .site{
    width: 100%;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
}
footer .site .search-box{
    width: 100%;
    max-width: 750px;
    overflow: hidden;
    position: relative;
}
footer .site .search-box input{
    color: white;
    background-color: #1E202B;
    border-radius: 40px;
    border: none;
    outline: none;
    width: 100%;
    height: 56px;
    padding: 20px 50px 20px 20px;
}
footer .site .search-box button{
    height: 46px;
    background-color: #009AD8;
    padding: 0 25px;
    border: none;
    outline: none;
    border-radius: 40px;
    position: absolute;
    top: 5px;
    right: 4px;
    color: white;
    cursor: pointer;
}
footer .site .social{
    margin-left: 100px;
}
footer .site .social a{
    color: #009AD8;
    font-size: 16px;
    background-color: #1E202B;
    padding: 10px;
    border-radius: 50%;
        transition: 0.5s;
}
footer .site .social a:hover{
    background-color: #009AD8;
    color: white;
}
footer p{
    color: #BFC1C8;
    font-size: 14px;
    margin: 30px 0 20px 0;
    text-align: center;
}

@media (max-width: 1199px){
    header nav{
        max-width: 950px;
    }
    header nav .header-nav ul{
        gap: 10px;
    }
    main .hero .search-box{
        max-width: 940px;
    }
    main .hero .cards .card{
        height: 415px;
        width: 320px;
    }
    footer .site .search-box{
        max-width: 615px;
    }
}
@media (max-width: 991px){
    header nav{
        max-width: 720px;
    }
    header nav .header-nav #navLinks ul{
        display: none;
    }
    .burger{
        display:flex;
    }
    main .hero .search-box{
        max-width: 720px;
    }
    main .hero .cards .card{
        width: 240px;
    }
    footer .site{
        flex-direction: column;
        max-width: 720px;
    }
    footer .site .search-box{
        margin: auto;
        max-width: 720px;
    }
    footer .site .social{
        margin: 30px 0 0 0;
    }
}
@media (max-width: 767px){
    header nav {
        max-width: 540px;
    }
    main .hero .search-box{
        max-width: 540px;
    }
    main .hero .cards{
        flex-direction: column;
        margin: 20px;
    }
    main .hero .cards .card{
        width: 100%
    }
    main .hero .cards .card1{
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0px;
    }
    main .hero .cards .card1 .header-card{
        border-top-right-radius: 12px;
    }
    main .hero .cards .card3{
        border-top-right-radius: 0px;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    main .hero .cards .card3 .header-card{
        border-top-right-radius: 0px;
    }
    footer .site{
        max-width: 540px;
    }
    footer .site .search-box{
        max-width: 540px;
    }
}