@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: auto;
}

.navbar {
    background: #131313;
    z-index: 1000;
}

.navbar .navbar-brand {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Potta One', cursive;
}

#navbarSupportedContent>ul>li:nth-child(n)>a {
    color: #fff;
    font-size: 18px;
    padding: 0px 14px;
}

#navbarSupportedContent>ul>li:nth-child(n)>a:hover,
#navbarSupportedContent>ul>li:nth-child(n)>a.active {
    color: #00BF85;
}

#navbarSupportedContent>button {
    background-color: #00BF85;
    color: #000;
    font-weight: 600;
    border-radius: 40px;
    margin: 6px;
    font-size: 18px;
}

.mid {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.cuy {
    position: relative;
}

.mid .cuy h2 {
    font-size: 45px;
    z-index: 1;
    text-align: left;
    margin-left: 8%;
    max-width: 1500px;
}

.mid .cuy p {
    width: 55%;
    font-size: 15px;
    z-index: 1;
    letter-spacing: 0.2px;
    margin-left: 8%;
    padding-bottom: 16px;
}

.mid .cuy a {
    background-color: #00BF85;
    padding: 9px 22px;
    margin-left: 8%;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
}

.mid .cuy a:hover {
    background: #fff;
}

.about {
    background-color: #000;
}

.about .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: auto;
}

.about .text h6 {
    color: #00BF85;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
}

.about .text h2 {
    color: #F7F5F4;
    font-weight: 700;
    font-size: 35px;
}

.about .text p {
    color: #F7F5F4;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.about .text a {
    background: #00BF85;
    color: #111;
    padding: 9px 22px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
}

.about .text a:hover {
    background: #fff;
}

.about i {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 35px;
    background: #00BF85;
    color: #111;
    padding: 7px 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out;
}

.about i:hover {
    background: #fff;
    transition: .5s;
}

.product {
    background-color: #fff;
}

.product .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: auto;
}

.product .text h6 {
    color: #00BF85;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
}

.product .text h2 {
    color: #111;
    font-weight: 700;
    font-size: 35px;
}

.product .text p {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.product .text a {
    background: #111;
    color: #fff;
    padding: 9px 22px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
}

.product .text a:hover {
    background: #00BF85;
}

.service {
    background: #000;
}

.service .one {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 25px;
    border-radius: 7px;
}

.sign {
    background-color: #fff;
}

.sign .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: auto;
}

.sign .text h6 {
    color: #00BF85;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
}

.sign .text h2 {
    color: #111;
    font-weight: 900;
    font-size: 35px;
}

.sign .text p {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.sign .text a {
    background-color: #111;
    color: #fff;
    padding: 9px 22px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
}

body>footer {
    background: #111;
}