@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..700;1,300..700&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
    transition: all 0.4s linear;
}

*::selection {
    background-color: aqua;
    color:aliceblue;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 1rem;
}
html::-webkit-scrollbar-track {
    background: #222;
}
html::-webkit-scrollbar-thumb {
    background-color: darkkhaki;
}

body {
    line-height: 1.5;
    font-size: 1.6rem;
    /* background-color: #ccc; */
    /* background-color: red; */
}

section {
    padding: 2rem 3%;
    min-height: 100vh;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1rem;
    background: lemonchiffon;
    color: #000;
    font-size: 1.9rem;
    font-weight: 600;
    border-radius: 0.8rem;
    border: 0.01rem solid purple;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2rem);
    cursor: pointer;
}
.sign-in {
    background-color: darkkhaki;
    color: #222;
}
.log-in {
    background: khaki;
    color: #fff;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: darkkhaki;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3%;
}


header .logo-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo-brand img {
    width: 100%;
    height: 100%;
}

header .logo-brand a {
    font-size: 2.5rem;
    color: purple;
    font-weight: bolder;
    padding-left: 0.4rem;
}

header .navbar a {
    font-size: 1.6rem;
    font-weight: 600;
    color: purple;
    margin-right: 1rem;
}

#menubar {
    font-size: 2.5rem;
    color: #222;
    background: khaki;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    position: fixed;
    top: 2rem;
    right: 2.5rem;
    display: none;
    z-index: 20000;
}
.logo-brands {
    position: fixed;
    top: 2rem;
    left: 2.5rem;
    display: none;
    z-index: 20000;
}
.logo-brands a {
    font-size: 2.5rem;
    color: purple;
    font-weight: bolder;
    padding-left: 0.4rem;
}


.home {
    background: darkkhaki;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}
.home .content {
    flex: 1 1 30rem;

}
.home .content h3 {
    font-size: 6rem;
    color: #fff;
    font-weight: 100;
    line-height: 1.2;
}
.home .content span {
    font-size: 6rem;
    color: #fff;
    font-weight: 100;
    line-height: 1.2;
}
.home .content p {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 300;
}
.home .content .click-links {
     margin-top: 2rem;
}
.click-links .free-demo {
    background: darkkhaki;
    color: white;
    margin-left: .5rem;
}
.click-links .logg-in {
    background: khaki;
    color: purple;
}

.home .image {
    flex: 1 1 30rem;
}
.home .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.7rem;
}

.about {
    background: rgb(175, 173, 151);
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    gap: 3rem;
    min-height: 80vh;
}
.row .image {
    flex: 1 1 30rem;

}
.row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.7rem;
}
.row .content {
    flex: 1 1 30rem;
}
.row .content span {
    font-size: 1.7rem;
    color: #222;
}
.row .content h3 {
    font-size: 2.5rem;
    color: #222;
}
.row .content p {
    font-size: 1.6rem;
    color: #555;
    padding: 1rem 0;
}
.row .content .link-btn {
    display: inline-block;
    padding: 0.7rem 1rem;
    background: darkkhaki;
    color: #000;
    font-size: 1.9rem;
    border-radius: 0.8rem;
    border: 0.01rem solid #ccc;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2rem);
    cursor: pointer;
}

.signin .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 19rem auto;
    min-height: 100vh;
}
.signin .container .form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}

.form-container .sign-in-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-450%, -50%);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    height: 50rem;
    width: 40rem;
    margin: 0 auto;
    z-index: 30000;
}
.sign-in-box span {
    /* position: fixed; */
    top: .75rem;
    right: 1.75rem;
    font-size: 4.5rem;
    color: #333;
    cursor: pointer;
}
.form-container .log-in-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-450%, -50%);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    height: 50rem;
    width: 40rem;
    margin: 0 auto;
    z-index: 30000;    
}
.log-in-box a, .sign-in-box a {
    font-size: 1.3rem;
    color: darkkhaki
}
.log-in-box span {
    /* position: fixed; */
    top: .75rem;
    right: 1.75rem;
    font-size: 4.5rem;
    color: #333;
    cursor: pointer;
}
.form-container .sign-in-box.active {
    transform: translate(-50%, -50%);
}
.form-container .log-in-box.active {
    transform: translate(-50%, -50%);
}
.container .form-container form {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 1rem;
    background: #f1f1f9;
}
form i {
    font-size: 3rem;
    color: khaki;
    margin-top: 4rem;
    background-color: #fff;
    height: 6rem;
    width: 6rem;
    text-align: center;
    border: 1rem solid #fff;
}
form h3 {
    font-size: 2.5rem;
    color: #333;
}
form .box {
    height: 4rem;
    width: 90%;
    padding: 0 2rem;
    background-color: rgba(190,205,215,0.2);
    font-size: 1.7rem;
    color: #333;
    border-radius: 5rem;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
form input[type="submit"] {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: darkkhaki;
    font-size: 1.7rem;
    color: #fff;
    border-radius:3.5rem;
    cursor: pointer;
}
form input[type="submit"]:hover {
    background: khaki;
}
form a {
    font-size: 1.6rem;
    color: #333;
    max-lines: -1rem;
}


.footer {
    text-align: center;
    background: #000;
    padding: 3rem 0;
}
.footer p{
    font-size: 1.6rem;
    color: #fff;
}
.follow {
    margin: 2rem 0;
}
.follow a {
    font-size: 2.8rem;
    color: darkkhaki;
    margin: 0 1rem;
}
.follow a:hover {
    background: darkkhaki;
    color: #fff;
}


/* Mobile version with media queries */
@media(max-width: 991px) {
    html {
        font-size: 55%;
    }
    header {
        left: -120%;
    }
    header.active {
        left: 0;
    }

    header .navbar {
        position: absolute;
        top: 170%;
        left: 0;
        /* height: 100vh; */
        width: 100vw;
        background: #fff;
        /* transform:translate(-50%, -50%) */
    }
    header .navbar a {
        display: block;
        width: 100%;
        margin: 1rem 0;
        padding: 1rem 2rem;
        background: #222;
        color: darkkhaki;
        border-radius: 0.9rem;
    }
    header .logo-brand {
        display: none
    }

    #menubar {
        display: initial;
    }
    .logo-brands {
        display: initial;
    }

    .home {
        flex-flow: column;
        margin-top: 3rem;
        padding-left: 3rem;
        padding-top: 17rem;
        margin: auto ;
        display: block;
        justify-content: left;
        background: darkkhaki;
        min-height: 100vh;
    }
    .home .content h3 {
        font-size: 6rem;
        font-weight: 200;
    }
    .home .content span {
        font-size: 6rem;
        font-weight: 100;
    }
    .home .content p {
        font-size: 1.6rem;
        font-weight: 200;
        margin: 3rem 0;
    }

    .home .content .click-links {
        width: 100%;
    }

    .click-links .free-demo {
        background: none;
        color: white;
        width: 100%;
        padding-left: 1.2rem;
        margin-left: 0;
    }
    .click-links .logg-in {
        background: khaki;
        color: purple;
        width: 100%;
        margin-bottom: 2rem;
    }

    .home .image {
        display: none;
    }

    .about {
        min-height: 100vh;
        padding-top: 2rem;
    }
    .services {
        min-height: 100vh;
        padding-top: 16rem;
    }
    .row {
        flex-flow: column;
    }

    .row .content span {
        font-size: 1.7rem;
        color: #222;
    }
    .row .content h3 {
        font-size: 2.5rem;
        color: #222;
    }
    .row .content p {
        font-size: 1.7rem;
        color: #555;
        padding: 1rem 0;
    }
}

@media(max-width: 768px) {
    html {
        font-size: 55%;
    }  

    .small-screen-logo {
        background: darkkhaki;
        padding: 2rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top:0;
        left: 0;
        right: 100%;
        z-index: 2000;
    }
}

@media(max-width: 450px) {
    html {
        font-size: 50%;
    }
}

