*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color:hsl(240, 75%, 98%);
    color:hsl(243, 87%, 12%);
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav{
    height: 80px;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

nav .logo{
    width: 80px;
}

nav ul{
    display: flex;
    margin-left: 20px;
    cursor: pointer;
}

nav ul:hover{
    color: blue;
}

nav ul li{
    text-decoration: none;
    list-style: none;
    margin-right: 20px;
}

nav .open, .close{
    display: none;
    position: absolute;
    right: 99999px;
}

.menu{
    display: none;
    position: absolute;
    right: 99999px;
}

#features{
    height: max-content;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
}

/* #features div{
    display: flex;
    flex-direction: column;
    align-items: start;
} */

#features img{
    width: 500px;
}

#features div h2{
    max-width: 500px;
    margin-bottom: 20px;
}

#features div p{
    max-width: 500px;
    margin-bottom: 20px;
}

#features div input:first-of-type{
   height: 35px;
   width: 270px;
   background-color: #fff;
   padding-left: 15px;
   display: inline;
   margin-right: 5px;
}

#features div input:last-of-type{
    height: 35px;
    width: 200px;
    background-color: hsl(224, 93%, 58%);
    border: none;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

#features div input:last-of-type:hover{
    filter: opacity(70%) drop-shadow(1px 1px 3px #555);
}

#team{
    height: max-content;
    background: url(./images/bg-curve-desktop.svg);
    background-repeat: no-repeat;
    background-position: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
}

#team a{
    color: hsl(170, 45%, 43%);
    display: inline;
}

#team .p3{
    margin-bottom: 25px;
}

#team .may .arrow{
    width: 17px;
    display: inline;
    margin-left: 7px;
    margin-top: 5px;
}

#team .quote{
    width: 20px;
    margin-bottom: 12px;
}

#team .workers{
    width: 550px;
}

#team .may h2{
    margin-bottom: 23px;
}

#team .may p{
    margin-bottom: 10px;
    max-width: 500px;
}

#team .card{
    height: max-content;
    width: max-content;
    padding: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

#team .card p{
    max-width: 360px;
}

#team .card .kylediv .kyle{
    width: 32px;
    border-radius: 50%;
    float: left;
    margin-top: 5px;
    margin-right: 10px;
}

#signin{
    height: 40vh;
    width: 100%;
    background-color: hsl(238, 22%, 44%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 60px;
    color: hsl(240, 75%, 98%);
}

#signin .part1 p{
    max-width: 500px;
    margin-top: 20px;
}

#signin .part2 input:first-of-type{
    height: 35px;
    width: 350px;
    background-color: #fff;
    padding-left: 15px;
    display: block;
    margin-bottom: 18px;
 }
 
 #signin .part2 input:last-of-type{
     height: 35px;
     width: 200px;
     background-color: hsl(224, 93%, 58%);
     border: none;
     color: #fff;
     text-align: center;
     cursor: pointer;
 }

 footer{
    height: 50vh;
    background-color: hsl(243, 87%, 12%);
    display: flex;
    flex-direction: column;
    padding: 70px 60px;
    color: hsl(240, 75%, 98%)
 }

 footer .logo{
    width: 100px;
    margin-bottom: 20px;
}
 
footer .container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

footer .container .one img{
    float: left;
    width: 13px;
    margin-right: 11px;
    margin-top: 8px;
}

footer .container .one p{
    cursor: pointer;
}

footer .container .two{
    display: flex;
    justify-content: space-between;
}

footer .container .two ul{
    list-style: none;
    margin-bottom: 4px;
}

footer .container .two ul li{
    cursor: pointer;
    margin-top: 4px;
}


footer .container .two .two2{
    margin-right: 60px;
}

footer .container .three{
    cursor: pointer;
    margin-left: 110px;
}

footer .container .three img:nth-of-type(2){
    margin-left: 6px;
}

footer .container .three img:nth-of-type(3){
    margin-left: 6px;
}
