@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Roboto&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0%;
}

body {
    font-family: 'Roboto', sans-serif;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #A8FF35;
}

.landing {
    width: 100%;
    height: max-content;
    background-image: url('images/Bg-hero.svg');
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media only screen and (max-width:1150px) {
    .container {
        width: 800px
    }
}

@media only screen and (max-width:800px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }
}

nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    padding: 40px 0;
    background-color: transparent;
}

nav .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: bolder;
    color: #fff
}

nav .links {
    width: 100%;
    height: 100%;
}

nav .links ul,
nav .links-sm ul {
    width: 100%;
    height: 100%;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    font-size: 1.2rem;
    color: #fff;
}

nav .links ul li,
nav .links-sm ul li {
    cursor: pointer;
}

nav .sign {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
}

nav .login {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff
}

nav .register {
    padding: .5rem 1.5rem;
    border-radius: 40px;
    border: none;
    outline: none;
    background-color: #fff;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
}

nav .ham {
    display: none;
}

.landing .content {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem
}

.landing .head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
}

.landing .head h1 {
    font-size: 4rem;
    font-weight: bolder;
}

.landing .text p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .2rem;
}

.landing .text p span {
    font-size: 1.2rem;
    font-weight: 100;
}

.landing .start {
    position: relative;
    margin: 1.5rem 0;
}

.landing .start button {
    padding: 1rem 4rem;
    background-color: #A8FF35;
    border-radius: 40px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.landing .text-hero {
    position: absolute;
    left: 105%;
    top: -20px;
}

.landing .tabs {
    margin: 2rem 0;
    padding: 1rem;
}

.landing .tabs img {
    width: 100%
}

nav .links-sm {
    display: none;
}

@media only screen and (max-width:1150px) {
    nav {
        grid-template-columns: 1fr 1fr;
    }
    nav .links ul li {
        font-size: 1rem;
    }
    nav .logo {
        padding: 1rem;
    }
    nav .sign {
        display: none;
    }
    .landing .tabs {
        padding: 1rem;
    }
    .landing .tabs img {
        width: 100%
    }
}

@media only screen and (max-width:800px) {
    nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    .navg {
        z-index: 100;
        position: fixed;
        background-color: #000;
    }
    nav .logo span {
        display: none;
    }
    nav .ham {
        display: flex;
        justify-content: flex-end;
    }
    nav .links {
        display: none;
    }
    nav .links-sm ul {
        position: fixed;
        left: 0;
        top: 10vh;
        height: 100vh;
        width: 100vw;
        background-color: #000;
        width: 100;
        flex-direction: column;
        z-index: 80;
        display: flex;
    }
    nav .hide {
        display: block;
    }
    .container {
        width: 100%
    }
    .landing .tabs {
        padding: 1rem;
    }
    .landing .tabs img {
        width: 100%
    }
    .landing .head h1 {
        font-size: 2.2rem;
        font-weight: bolder;
    }
    .landing .text-hero {
        width: 60px;
    }
    .landing .text-hero img {
        width: 100%;
    }
    .landing .text p {
        padding: 1rem;
        text-align: center;
    }
    .landing .text p span {
        font-size: 1rem;
        font-weight: 100;
    }
    .landing .start button {
        padding: 1rem 2rem;
    }
}

.open-new-tab,
.open-new-tab .container {
    background-color: #A8FF35;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.open-new-tab .container {
    padding: 0 1rem;
}

.open-new-tab p {
    width: 100%;
}

.open-new-tab .content-container {
    display: flex;
    width: 70%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.open-new-tab h2 {
    font-size: 4rem;
    font-weight: bolder;
}

.open-new-tab .tab {
    width: 80%;
    height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 0;
    border-radius: 40px;
}

.open-new-tab .tab>img {
    width: 70%
}

.open-new-tab .tab .hero-right {
    position: absolute;
    top: 20%;
    left: 100%;
}

.open-new-tab .tab .hero-left {
    position: absolute;
    top: 20%;
    right: 100%;
}

@media only screen and (max-width:1150px) {
    .open-new-tab .content-container {
        width: 100%;
        padding: 1rem;
    }
    .open-new-tab h2 {
        width: 100%;
        font-size: 4rem;
    }
}

@media only screen and (max-width:800px) {
    .open-new-tab .content-container {
        width: 100%;
        padding: 1rem;
        padding: 2rem 0;
    }
    .open-new-tab h2 {
        width: 100%;
        font-size: 2rem;
    }
    .open-new-tab .tab {
        width: 60%;
        padding: 2rem 0;
    }
    .open-new-tab .tab .hero-left,
    .open-new-tab .tab .hero-right {
        width: 60px;
    }
    .open-new-tab .tab .hero-left img,
    .open-new-tab .tab .hero-right img {
        width: 100%;
    }
}

.long-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.long-text p {
    font-size: 4rem;
}

.long-text p span {
    color: #ADADAD
}

@media only screen and (max-width:800px) {
    .long-text p {
        font-size: 2rem;
    }
}

.brand-container {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 0;
}

.brand-container h2 {
    width: 100%;
    text-align: center;
    font-size: 4.5vw;
    padding: 1rem;
    margin: 1rem 0;
}

.brand-container .brands {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.brand {
    width: 100%;
    background-color: #F5F5F5;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    ;
}

.brand img {
    width: 6rem;
}

@media only screen and (max-width:1150px) {
    .brand-container .brands {
        grid-template-columns: 1fr 1fr;
    }
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem
}

.contact h2 {
    text-align: center;
    font-size: 4.5vw;
}

.contact .icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: auto;
    padding: 1rem 0;
}

.contact .icons img {
    width: 7rem;
}

.contact .tweets {
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact .tweets img {
    width: 80%;
}

.contact .more {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .more button {
    padding: 1rem 2rem;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    font-weight: bold;
}


/* Handle on hover */

.contact .icons::-webkit-scrollbar {
    height: 4px;
}


/* Track */

.contact .icons::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

.contact .icons::-webkit-scrollbar-thumb {
    background: #A8FF35
}


/* Handle on hover */

.contact .icons::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media only screen and (max-width:800px) {
    .contact .icons {
        justify-content: flex-start;
    }
    .contact .icons img {
        width: 4rem
    }
    .contact .tweets img {
        width: 100%;
    }
}

.deal {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deal .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 6rem 1rem;
    gap: 2rem;
}

.deal .container>h2 {
    width: 100%;
    font-size: 4.5vw;
    text-align: center;
}

.deal .container .type {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #A8FF35;
}

input:focus+.slider {
    box-shadow: 0 0 1px #A8FF35;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.deal .container .packages {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.deal .container .packages .package {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    background-color: #fff;
    color: #000;
    border-radius: 16px;
    gap: 1rem;
}

.deal .container .packages .package:nth-child(2) {
    background-color: #A8FF35;
}

.deal .container .packages .head {
    padding: 1rem 0;
}

.deal .container .packages .head h2,
.deal .container .packages .body h2 span {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.deal .container .packages hr {
    width: 100%;
    border: 1px solid #00000017
}

.deal .container .packages .body {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
}

.deal .container .packages .body h2 {
    font-size: 1rem;
}

.deal .container .packages .trail {
    width: 100%;
    text-align: center;
}

.deal .container .packages .trail button {
    padding: 1rem 2rem;
    border-radius: 40px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background-color: #A8FF35;
    color: #000
}

.deal .container .packages .package:nth-child(2) .trail button {
    background-color: #000;
    color: #fff
}

@media only screen and (max-width:800px) {
    .deal .container .packages {
        flex-direction: column;
        gap: 1rem;
    }
}

.join {
    padding: 6rem 0;
    width: 100%;
    background-color: #A8FF35;
}

.join .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem
}

.join .container h2 {
    font-size: 4.5vw;
}

.join .container .j-botton {
    width: 100%;
    text-align: center;
}

.join .container h2:nth-child(2) {
    color: #87D322
}

.join .container .j-botton button {
    padding: 1rem 3rem;
    background-color: #000;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    color: #fff
}

.footer {
    width: 100%;
    padding: 2rem 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .container .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem
}

.footer .container .links ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 1rem;
}

.footer .container .links ul li {
    cursor: pointer;
}

@media only screen and (max-width:800px) {
    .footer .container {
        flex-direction: column;
        gap: 2rem;
    }
    .footer .container .links ul {
        flex-direction: column;
    }
}