:root {
	--bgcolor: #111A28;
	--1bgcolor: #0C121D;
    --bheader: #5B63B7;
    --textcolor: #fefefe;
    --formbgcolor: #eeeeee; 
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');

body{
    padding: 0px;
    margin: 0px;
    background-color: var(--bgcolor);
    box-sizing: border-box;
    color: var(--textcolor);
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
}
/* universal */

a {
    text-decoration: none;
    color: var(--textcolor);
}

.section1 {
    padding: 5vw 5vw;
    display: flex;
    flex-direction: row;
    /* gap: 3vw; */
}

.section3, .section4, .section5, .section6, .section7 {
    padding: 2vw 5vw;
}



.title {
    color: var(--bheader);
    font-size: 2vw;
    font-weight: 700;
    padding: 4vw 0vw;
}

.btns {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    padding-top: 4vw;
    align-items: center;
}

/* end of universal */

.header {
    background-color: var(--1bgcolor);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 5.9vw;
    align-items: center;
    padding: 0px 20px;
}

.normal_text {
    line-height: 1.7;
}




.menu {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    font-size: 1.6vw;
    align-items: center;
    padding-right: 1vw;

}


.menu_item1:hover, .menu_item2:hover, .menu_item3:hover, .menu_item4:hover, .menu_item5:hover {
    cursor: pointer;
    font-size: 1.7vw;
    color: var(--bheader);
    transition: 800ms;
}

.menu_item6 {
    background-color: var(--bgcolor);
    padding: 10px 12px;
    border-radius: 7px;
    cursor: pointer;
    
    
}

.menu_item6:hover {
    background-color: var(--bheader);
    color: var(--1bgcolor);
    font-size: 1.7vw;
    transition: 500ms;
}

.logo {
    font-size: 5vw;
    font-weight: 900;
    align-items: center;
    padding-bottom: 1vw;
    padding-left: 3vw;
}

.logo:hover {
    color: var(--bheader);
    cursor: pointer;
    transition: 500ms;
}
.logo > span {
    font-size: 6.1vw;
    align-items: center;
}

/* end of menu */


.left {
    padding-top: 5vw;
}

.hello {
    color: var(--bheader);
    font-weight: 600;
    font-size: 1.6vw;
    padding-bottom: 5px;
}

.name {
    font-size: 6vw;
    font-weight: 800;
}

.work {
    color: var(--bheader);
    font-size: 2.3vw;
    font-weight: 800;
    padding-bottom: 6px;
    padding-top: 20px;
}



.tasks {
    font-weight: 500;
}

.tasks > span {
    color: var(--bheader);
    font-size: 25px;
    padding-left: 20px;
}



.button {
        background-color: var(--1bgcolor);
        padding: 15px 15px;
        border-radius: 7px;
        cursor: pointer;
        font-weight: 600;
}

.button:hover {
    background-color: var(--bheader);
    color: var(--1bgcolor);
    font-size: 1.4vw;
    transition: 500ms;
}

/* .right {

} */
.right > img {
    height: 45vw;
    margin-left: 10vw;
    margin-top: 3vw;
}

.logincon {
    height: 35px;
    border-radius: 20px;
}

.logincon:hover {
    background-color: #eeeeee;
    transition: 500ms;
    height: 33px;
}

@media (max-width: 480px), (min-width: 320px ), (max-width: 768px)  {
    body {
        text-align: center;
    }
    .menu {
        display: none;
    }
    .logo {
        font-size: 40px;
        font-weight: 900;
        align-items: center;
        padding-bottom: 1vw;
        padding-left: 3vw;
    }
    
    .logo:hover {
        color: var(--bheader);
        cursor: pointer;
        transition: 500ms;
    }
    .logo > span {
        font-size: 50px;
        align-items: center;
    }
    .header {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 45px;
    }
    .section1 {
        padding: 5vw 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* gap: 3vw; */
    }
    .right > img {
        padding: 0px;
        margin: 0px;
        height: 600px;
        margin-top: 3vw;
    }
    .hello {
        color: var(--bheader);
        font-weight: 600;
        font-size: 10px;
        text-align: center;
        padding-bottom: 5px;
    }
    .name {
        font-size: 6vw;
        text-align: center;
        font-weight: 800;
    }
    .work {
        color: var(--bheader);
        font-size: 7px;
        font-weight: 800;
        text-align: center;
        padding-bottom: 6px;
        padding-top: 20px;
    }
    .tasks {
        font-weight: 500;
        font-size: 9px;
    }

    .button {
        font-size: 10px;
    }
    
    .tasks > span {
        color: var(--bheader);
        font-size: 14px;
        padding-left: 20px;
    }
    .title {
        color: var(--bheader);
        font-size: 15px;
        font-weight: 700;
        /* padding: 4vw 0vw; */
        text-align: center;
    }
}