/* General */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');

body {
    background-color: #0D0D0D;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
}

ul {
    list-style-type: none;
    margin: 0;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

/* Header */

header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 120px 50px;
    position: relative;
}

.logo-img {
    height: 60px;
}

.logo-link {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    padding: 0px;

}

.nav-list li {
    color: white;
    font-weight: bold;
    font-size: 14px;
    /* padding: 0 30px; */
}

.nav-list li a {
    padding: 10px 30px;
    border-radius: 10px;
}

.nav-list li a:hover {
    background-color: #3F3F3F;
}

.nav-button-list {
    padding: 0px;
}

.nav-button {
    transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button a {
    background-color: #fff;
    height: 40px;
    width: 140px;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.nav-button-link {
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

/* Screenshots */

article {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
    padding: 0;
}

.screens-img {
    width: 402px;
    height: 352.24px;
    margin-right: 120px;
}

/* Title */

.title-first {
    font-size: 40px;
}

.others {
    margin-left: 10px;
}

/* Buttons */

.others-button {
    color: #4B4B4B;
    font-weight: medium;
    cursor: not-allowed;
}

.arrow {
    margin-left: 5px;
}

.buttons {
    padding: 0px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.button-title {
    /* height: 45px; */
    /* width: 200px; */
    /* border-radius: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-style: solid; */
    /* border-color: #3F3F3F; */
    /* flex: 0 0 200px; */

    /* padding: 10px 20px;
    box-sizing: border-box; */
    margin-right: 12px;
}

.download-button:hover {
    background-color: #3F3F3F;
}

.download-button {
    color: white;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    border-color: #3F3F3F;
    border-style: solid;
    position: relative;
}

.chrome {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Mobile menu */

.more-mobile-nav {
    height: 36px;
    width: 36px;
    display: none;
    align-items: center;
    cursor: pointer;
}

.mobile-nav {
    height: 4px;
    width: 36px;
    background-color: white;
    border-radius: 5px;
    display: block;
    position: relative;
}

.mobile-nav:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    height: 4px;
    width: 36px;
    background-color: white;
}

.mobile-nav:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 10px;
    height: 4px;
    width: 36px;
    background-color: white;
}

.wrapper-mobile-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0D0D0D;
    padding: 50px 0 25px;
    box-sizing: border-box;
    display: none;
}

.show-mobile-nav {
    display: block;
    transition: 3s;
    z-index: 1;
}

.logo-header-mobile {
    display: flex;
    justify-content: space-between;
}

.more-mobile-nav-close {
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
    margin-right: 40px;
    margin-top: 20px;
}

.header-mobile-nav-close {
    display: flex;
    transition: 2s;
}

.mobile-nav-close {
    height: 4px;
    width: 36px;
    background-color: #050C19;
    border-radius: 5px;
    position: relative;
}

.mobile-nav-close:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 4px;
    width: 36px;
    background-color: white;
    transform: rotate(45deg);
}

.mobile-nav-close:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 4px;
    width: 36px;
    background-color: white;
    transform: rotate(-45deg);
}

.list-navigation {
    padding-top: 90px;
}

.list-navigation li {
    margin-bottom: 32px;
}

.list-navigation li a {
    color: #ffffff;
    font-size: 42px;
    font-weight: bold;
    text-decoration: none;
    font-family: Raleway, sans-serif;
}

.buttons .download-button.beta:after {
    content: 'beta';
    background-color: #2F2F2F;
    width: 50px;
    height: 20px;
    position: absolute;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    /* margin-bottom: 45px; */
    /* margin-left: 200px; */

    top: -10px;
    right: -10px;
}

/* Responsive */

@media screen and (max-width: 960px) {
    header {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px;
        position: relative;
    }

    .nav-list,
    .nav-button-list {
        display: flex;
        flex-direction: column;
        display: none;
    }

    .nav-link a {
        font-weight: 400;
    }

    .buttons {
        /* padding: 0px; */
        margin-top: 30px;
        display: flex;
        align-items: start;
        flex-direction: column;

        position: relative;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .buttons li {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 20px;

    }

    .buttons li a {
        width: 100%;
        align-items: center;
    }

    .nav-button-list {
        font-weight: 400;
        display: none;
    }

    .nav-button-link {
        font-weight: 400;
    }

    .screens {
        margin-bottom: 50px;
    }

    .screens-img {
        width: 297px;
        height: 260.24px;
        margin-right: 0;
        margin-top: -40px;
    }

    .title-first {
        font-size: 24px;
        margin: 10px;
        font-weight: 400;
        ;
    }

    .title-second {
        font-size: 14px;
        margin: 10px;
        font-weight: 400;
    }

    .title-button {
        margin: 10px;
        margin-top: 20px;
        display: flex;
    }

    .download-button {
        font-weight: 400;
    }

    .button-title {
        margin-left: 10px;
    }

    .others {
        margin-left: 30px;
    }

    .others-button {
        font-size: 14px;
        font-weight: 400;
    }

    .arrow {
        display: none;
    }

    .more-mobile-nav {
        display: flex;
    }
}

@media screen and (max-width: 1833px) {}

@media screen and (min-width: 1712px) {
    .screens-img {
        width: 626.56px;
        height: 549px;
        margin-top: -40px;
        margin-right: 120px;
    }

    article {
        margin-top: 150px;
    }

    .nav-list li {
        font-size: 24px;
    }

    .logo-img {
        height: 60px;
    }

    .nav-button {
        background-color: #fff;
        height: 60px;
        width: 180px;
        border-radius: 10px;
        transition: 1s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-button-link {
        color: black;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 24px;
    }

}

@media screen and (max-width: 1500px) {}