@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,400;0,500;0,600;0,700;1,500;1,600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Fira Sans", sans-serif;
    color: #000;
    background: url(../img/smartbg.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1289px; 
    max-width: 80%; 
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
    @media (min-width: 768px) and (max-width: 1024px) {
       max-width: 95%;  
    }
    @media (max-width: 767px) {
       max-width: 100%;  
    }
}
.main-header{
    background: rgba(255, 255, 255, 0.7);
    padding: 17px 0px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    .logo img{
        width: 259px;
    }
    .header-links {
        display: flex;
        list-style-type: none;
        gap:75px;
        @media (min-width: 768px) and (max-width: 1024px) {
            gap:30px;
        }
        @media (max-width: 767px) {
            display: none;
        }
        li {
            a {
                font-size: 20px;
                color: #410367;
                font-weight: 400;
                text-decoration: none;
                font-family: "Fira Sans", sans-serif;
                &:hover{
                    color: #5e0297;
                }
            }
        }
        li.active a{
            font-weight: 700;
        }
    }
}
.content-section {
    background: rgba(255, 255, 255, 0.7);
    max-width: 1289px;
    max-width: 80%;
    margin: auto;
    border-radius: 0 0 25px 25px;
    height: 82vh;
    height: 80%;
    padding: 30px;
    display: flex;
    @media (min-width: 768px) and (max-width: 1024px) {
       max-width: 95%;  
       height: 76%;
    }
    @media (max-width: 767px) {
       max-width: 97%;
       height: 76%;
       padding: 20px;
    }
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 50px;
        p {
            text-align: center;
            font-size: 37px;
            color: #410367;
            font-weight: 300;
            line-height: 47px;
            @media (max-width: 767px) {
                font-size: 26px;
                line-height: 36px;
            }
        }
        .smartimg{
            img{
                @media (max-width: 767px) {
                    width: 260px;
                }
            }
        }
        .download-button {
            margin: 35px 0px;
            @media (max-width: 767px) {
                margin: 10px 0px;
            }
            img{
                @media (max-width: 767px) {
                    width: 300px;
                }
            }
        }
    }
}
footer {
    padding: 15px 0px;
    margin: 30px auto 0px;
    border-top: 1px solid #fff;
    max-width: 1289px;
    max-width: 80%;
    margin-top: 75px;
    @media (max-width: 767px) {
       max-width: 97%;
        margin-top: 20px;
    }
    ul.footer-links {
        display: flex;
        justify-content: center;
        list-style: none;
        gap:150px;
        @media (max-width: 767px) {
            gap:30px;
        }
        li {
            a {
                font-size: 19px;
                color: #fff;
                font-weight: 400;
                text-decoration: none;
                &:hover {
                    color: #410367;
                }
            }
        }
    }
}
.about-section{
    height: 95%;
    overflow-x: scroll;
    padding-right: 20px;
    h1{
        font-size: 45px;
        color: #410367;
        font-weight: 600;
        margin-bottom: 20px;
        @media (max-width: 767px) {
            font-size: 38px;
        }
    }
    h2{
        margin-bottom: 10px;
    }
    p{
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 24px;
    }
}
.about-section.contactus{
    p{
        margin-bottom: 5px;
        a{
            color: #000;
            text-decoration: none;
        }
    }
}
ul.cookie-browsers {
    padding-left: 20px;
    margin-bottom: 20px;
    li {
        margin-bottom: 20px;
        font-weight: 600;
        font-family: "Fira Sans", sans-serif;
        font-size: 15px;
        line-height: 24px;
        ol {
            padding-left: 20px;
            li {
                margin-bottom: 0;
                font-weight: 400;
            }
        }
    }
}
.hamburger{
    display: none;
    flex-direction: column;
    cursor: pointer;
    span{
        height: 3px;
        width: 25px;
        background: #410367;
        margin-bottom: 4px;
        border-radius: 5px;
    }
    @media (max-width: 767px) {
        display: flex;
    }
}
.mobile-menu {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0x;
    left: 0;
    background: #e0b7f9;
    padding: 20px 20px;
    z-index: 99;
    top: 0px;
    display: none;
    ul {
        width: 100%;
        list-style-type: none;
        margin-top: 50px;
        li {
            a {
                font-size: 20px;
                color: #050935;
                font-weight: 400;
                margin-bottom: 10px;
                text-decoration: none;
                display: block;
                &:hover{
                    font-weight: 500;
                }
            }
        }
    }
}
.hamburgerclose{
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 13px;
    top: 38px;
    span{
        height: 3px;
        width: 25px;
        background: #410367;
        margin-bottom: 4px;
        border-radius: 5px;
        &:nth-child(1){
            transform:rotate(45deg) translate(1px, 0px);
        }
        &:nth-child(2){
            transform: rotate(130deg) translate(-5px, 4px)
        }
    }
}
