@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root{
    --padding:100px;
    --heading-color:hsl(210, 10%, 33%);
    --text-color:hsl(201, 11%, 66%);
}
body{
    font-family: "Bai Jamjuree", serif;
    font-size: 18px;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small screen */
@media (min-width: 768px) {
.container {
    width: 750px;
}
}
/* Medium screen */
@media (min-width: 992px) {
.container {
    width: 970px;
}
}
/* Large screen*/
@media (min-width: 1200px) {
.container {
    width: 1170px;
}
}
/*components*/
button{
    width: fit-content;
    padding: 15px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 40px;
    color: white;
    margin-right: 15px;
}
button:first-of-type{
    background-color: hsl(171, 66%, 44%);
    box-shadow: 2px 2px 0 hsl(171, 66%, 30%) ;
}
button:last-of-type{
    background-color: hsl(233, 100%, 69%);
    box-shadow: 2px 2px 0 hsl(233, 100%, 50%) ;
}
button:hover{
    opacity: 0.7;
    color:white;
}
@media (max-width:767px){
    button{
        display: block;
        margin:0 auto 25px;
    }
}
h1,h2,h3{
    color:var(--heading-color) ;
    font-weight: 600;
}
p{
    color: var(--text-color);
    line-height: 1.5rem;
}
.head{
    text-align: center;
}
.head h2{
    font-size: 35px;
}
.head p{
    width: 50%;
    margin: auto;
}
@media (max-width:991px){
    .head p{
        width: 80%;
    }
}
@media (max-width:767px){
    .head p{
        width: 100%;
    }
}
.flex-column{
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* start header */
header{
    padding: var(--padding) 0;
    background-image: url(../images/bg-header-desktop.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
@media (max-width:767px){
    header{
        background-image: url(../images/bg-header-mobile.png);
    }
}
header .container{
    text-align: center;
}
header .container h1{
    font-size: 45px;
}
@media (max-width:767px){
    header .container h1{
        font-size: 30px;
    }
}
header .container p{
    width: 50%;
    margin:40px auto;
}
@media (max-width:767px){
    header .container p{
        width: 100%;
    }
}
/* end header */
/* start computer section */
.computer{
    padding-bottom:var(--padding) ;
}
.computer .container{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width:991px){
    .computer .container{
        flex-direction: column;
        gap: 40px;
    }
}
.computer .container img{
    position: relative;
    left: -200px;
}
@media (max-width:991px){
    .computer .container img{
        width: 100%;
        left: 0;
    }
}
.computer .container >div:first-child{
    width: 45%;
}
.computer .container >div:last-child{
    width: 40%;
}
@media (max-width:991px){
    .computer .container > div{
        width: 100% !important;
        text-align: center;
    }
}
.computer .container >div:last-child div{
    margin-bottom: 70px;
}
.computer .container >div:last-child h3{
    font-size: 28px;
    margin-bottom: 0;
}

@media (min-width:992px){
    .computer .container >div:last-child p{
    width: 75%;
    }
}
/* end computer section */
/* start devices */
.devices{
    padding-bottom: var(--padding);
}
.devices img{
    max-width: 100%;
    display: block;
    margin:var(--padding) auto 0;
}
/* end devices */
/* start tools */
.tools .container{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 40px;
}
.tools .container div{
    text-align: center;
}
/* end tools*/
/* start partners */
.partners{
    padding: var(--padding) 0;
}
.partners .container{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 50px;
}
.partners .container div{
    text-align: center;
}
/* end partners */
/* start download */
.download{
    padding:50px 0 var(--padding);
}
.download .container div:last-child{
    margin-top:50px ;
}
/* end download */
/* start footer */
footer{
    background-color:#eee ;
    padding: 40px 0;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
footer .container .logo{
    width: 20%;
}
footer .container .logo img{
    width: 50px;
    height:50px;
}
footer .container ul{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
}
footer .container ul li{
    width: calc(100% / 3);
    color: var(--heading-color);
    cursor: pointer;
    transition:0.2s ease;
}
footer .container ul li:hover{
    color:hsl(171, 66%, 44%) ;
}
footer .container .media{
    width: 30%;
    display: flex;
    justify-content: end;
    gap: 20px;
}
footer .media i{
    font-size: 27px;
    color: var(--heading-color);
    cursor: pointer;
    transition:0.2s ease;
}
footer .media i:hover{
    color:hsl(171, 66%, 44%)  ;
}
@media (max-width:767px){
    .logo,.media,ul{
        text-align: center ;
        width: 100% !important;
    }
    footer .container ul{
        margin: 40px 0;
        flex-direction: column;
    }
    footer .container ul li{
        width: 100%;
    }
    footer .container .media{
        justify-content: center;
        gap: 40px;
    }
}
/* end footer */