* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
}

.header {
    position: absolute;
    padding-top: 20px;
    width: 100%;
    z-index: 20;
}

.nav {
    height: 33px;
    max-width: 570px;
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
}

.logo {
    cursor: pointer;
}

.nav-menu {
    cursor: pointer;
}

.wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1260px;
    /* margin: 0 auto; */
    padding: 0 90px;
}

/* left side */

.left-side {

}

.left-side--text {
    max-width: 480px;
}

.left-side--text h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 74px;
    color: #111111;
}

.left-side--text p {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #656565;
}

.left-side--btn {
    position: absolute;
    margin-top: 40px;
    /* padding-bottom: 70px; */
}

.left-side--btn a {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    background-color: #111111;
    color: #fff;
    padding: 17px 50px;
}

.left-side--btn a:hover {
    background-color: transparent;
    border: 1px solid #111111;
    color: #111111;
    transition: .2s;
}

/* right side */

.right-side {

}

.right-side--img {
    
}

.right-side--img img {
    max-width: 100%;
    height: 670px;
}

/* sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.sidebar-container {
    height: 100vh;
    width: 100%;
    background: #111111;
    transform: translateX(-100%);
    transition: .4s;
}

.sidebar-container.active {
    transform: translateX(0);
    transition: .4s;
}

.left-side--text h1.active {
    color: #fff;
    transition: .4s;
}

.left-side--btn a.active {
    background-color: #fff;
    color: #111111;
    transition: .4s;
}

.left-side--btn a:hover.active {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: .2s;
}

.rect-one.active {
    fill: #fff;
    transition: .2s;
}