:root {
    --primary: #1a1a1a;
    --secondary: #fff;
}

html,
body {
    background-color: var(--primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    cursor: none;
    cursor: url('/images/meCursor24.png'), auto;

}
*{ 
   font-family: 'Raleway', sans-serif;
    margin: 0;
}

h1,h2,h3,h4,h5,h6,p,label, a{
    color: var(--secondary);
}

a {
    cursor: url('/images/mePointer24.png'), auto;
}

#scroll_down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: scroll-down 3s infinite;
}

@keyframes scroll-down {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    95% {
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 30px);
        opacity: 0;
    }
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.column-20 {
    width: 20%;
}

.column-50 {
    width: 60%;
}

.column-60 {
    width: 60%;
}

.h-400 {
    height: 400px;
}

nav {
    position: fixed;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: 0.5s;
}

.nav-box {
    margin: auto;
    height: 70%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1900px;
}

.nav-box-column {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-box-column-logo {
    max-height: 90px;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
}

.nbc-logo {
    justify-content: left;
}

.nav-box-column-button {
    font-size: 16px;
    font-weight: 600;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(54deg, rgba(92, 70, 138, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(214, 115, 110, 1) 100%);
    color: var(--secondary);
    cursor: url('/images/mePointer24.png'), auto;
}

.nbc-button {
    justify-content: right;
}

.nav-menu {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-menu a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
}

/*START - FOOTER CODE*/


footer {
    width: calc(100% - 260px);
    background: rgb(214, 115, 110);
    background: linear-gradient(-90deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 130px;
    padding-right: 130px;
    z-index: 1;
    position: relative;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: normal;
}

.footer-column25 {
    width: 25%;
    height: 100%;
}

.footer-column-box img {
    margin-bottom: 50px;
}

.footer-column-box a {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    text-decoration: none;
    margin-right: 30px;
}

.footer-column-box-middle {
    width: 230px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: auto;
}

.footer-column-box-middle a {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    text-decoration: none;
    margin-right: 30px;
    margin-bottom: 15px;
    width: 100%;

}

.footer-column-box-middle h4 {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
    width: 100%;
}

.footer-column-box-middle img {
    height: 21px;
    width: 21px;
    object-fit: contain;
    margin-right: 5px;
}

.footer-column-box-end {
    width: 280px;
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    margin-left: auto;
}

.footer-column-box-end h4 {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
    width: 100%;
}

.footer-column-box-end a {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    text-decoration: none;
    margin-right: 30px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
}

.footer-column-box-end img {
    height: 21px;
    width: 21px;
    object-fit: contain;
    margin-right: 5px;
}

.copy-right {
    text-align: center;
    padding: 20px;
}

.copy-right label {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    font-weight: 800;
}

/*END - FOOTER CODE*/

.controls-video {
    position: absolute;
    top: 95%;
    left: 15%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    outline: none;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    gap: 0;
}

.buttonSound {
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 20px;
    cursor: url('/images/mePointer24.png'), auto;
    transition: 0.5s;
}


/*
.buttonSound {
    position: absolute;
    top: 95%;
    left: 5%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: none;
    border: none;
    outline: none;
    transition: 0.5s;
}

.buttonSound:hover {
    font-size: 25px;
    cursor: url('/images/mePointer24.png'), auto;

}
*/
.video-content {
    height: 100vh;
    width: 100%;
    position: relative;
    top: 0px;
    z-index: 0;
}

.video-content video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.video-content-filter {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #00000071;
}

.video-content-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary);
    cursor: url('/images/meCursor24.png'), auto;
}


.video-content-info h1 {
    font-size: 89px;
    font-weight: 900;
    background: rgb(226, 119, 107);
    background: linear-gradient(54deg, rgba(214, 115, 110, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(92, 70, 138, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.video-content-info h2 {
    font-size: 60px;
    font-weight: 900;
}

.video-content-info p {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.vci {
    position: relative;
}

#vci1 {
    opacity: 1;
    transition: 0.3s;
}

#vci2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: 0.3s;
}

.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
}

.scroll-down label {
    font-size: 12px;
}

.container {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;

    max-width: 1900px;
    margin: auto;
}

.container-v2 {
    padding-top: 25vh;
    height: auto;
    margin: auto;
    max-width: 1900px;

}

.container-v3 {
    padding-top: 0vh;
    padding-bottom: 0vh;
    height: auto;
    min-height: auto;
    max-width: 1900px;
    margin: auto;

}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    gap: 5%;
}

.container-box {
    height: auto;
    width: 100%;
    z-index: 1;
}

.container-header-w100 {
    width: 100%;
    margin-bottom: 50px;
}

.container-w50 {
    width: 44%;
    position: relative;
}

.container-w40 {
    width: 40%;
    position: relative;
}

.container-w55 {
    width: 55%;
    position: relative;
}

.container-title-sec {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
}

.container-title {
    font-size: 60px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 80px;
}

.container-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-bottom: 50px;
}

.preocupacao-ambiental-txt {
    width: 88%;
}

.default-button {
    font-size: 16px;
    font-weight: 600;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(54deg, rgba(92, 70, 138, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(214, 115, 110, 1) 100%);
    color: var(--secondary);
    cursor: url('/images/mePointer24.png'), auto;
    transition: 0.5s;
}

.default-button:hover {
    -webkit-box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);

}

.sc-img1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-39%, -50%);
    z-index: 1;
    width: 600px;
}

.sc-img2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-89%, -20%);
    z-index: 2;
    width: 360px;
}


.container-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.onc-column {
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(214, 115, 110);
    background: linear-gradient(0deg, rgba(214, 115, 110, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(92, 70, 138, 1) 100%);
    border-radius: 35px;

    -webkit-box-shadow: 0px 0px 5px -5px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 5px -5px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px -5px rgba(255, 255, 255, 1);

    position: relative;
}

.onc-column-95 {
    width: 95%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 35px;
}

.onc-column-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    height: max-content;
}

.onc-column label {
    width: 100%;
    font-size: 30px;
    font-weight: 500;
}

.onc-column-info {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 35px;

    background: rgb(214, 115, 110);
    background: linear-gradient(0deg, rgba(214, 115, 110, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(92, 70, 138, 1) 100%);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.5s;
}

.onc-column-info:hover {
    opacity: 1;
}

.onc-column-info-box {
    width: 70%;
    text-align: center;
}

.onc-column-info-box label {
    font-family: 'Work Sans', sans-serif;
    font-size: 25px;
    font-weight: 200;
}

.ams-img1 {
    width: 85%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pa-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1%;
}

.pa-gallery img {
    width: 49%;
}

.s-box {
    background: rgb(214, 115, 110);
    background: linear-gradient(0deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    width: 100%;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 50px;
}

.s-box-content {
    border-radius: 50px;
    background-color: #242424;
    height: 100%;
    width: calc(100% - 150px);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 75px;
    padding-right: 75px;
    transition: 0.5s;
}

.s-box-content:hover {
    background-color: rgb(52, 52, 52);
}

.sbc-info {
    width: 60%;
}

.sbc-info-middle {
    text-align: right;
}

.sbc-info h2 {
    font-size: 60px;
    font-weight: 800;
}

.sbc-info p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: lighter;
    margin-top: 20px;
}

.sm {
    background-color: #2c2c2c;
    height: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    position: relative;
}

.sm h2 {
    font-size: 60px;
}

.sm>.default-button {
    width: 230px;
    height: 80px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    transition: 0.5s;
    font-size: 20px;
}

.sm>.default-button:hover {
    -webkit-box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 9px -3px rgba(255, 255, 255, 1);

    width: 250px;
    height: 100px;
}

.columnB2B {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.columnB2B h2 {
    font-family: 'Lato', sans-serif;
    font-size: 37px;
    font-weight: 900;
    line-height: 1.7;
}

.columnB2B b {
    background: rgb(214, 115, 110);
    background: linear-gradient(90deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.columnB2B p {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 100;
    line-height: 1.7;
    margin-top: 20px;
}

.columnB2B img {
    width: 85%;
    object-fit: contain;
}

.form-b2b {
    background: rgb(214, 115, 110);
    background: linear-gradient(180deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    padding-top: 100px;
    padding-bottom: 100px;
}

.form-b2b-box {
    width: 80%;
    height: auto;
    margin: auto;
    max-width: 1100px;
}

.form-b2b-box-header {
    width: 100%;
    text-align: center;
}

.form-b2b-box-header h3 {
    font-size: 40px;
}

.form-b2b-box-header p {
    font-size: 30px;
    margin-top: 25px;
}

.form-b2b-box form {
    padding-top: 25px;
}

.form-b2b-box-options {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}

.fbbo-option {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fbbo-option input[type="checkbox" i] {
    background-color: initial;
    cursor: url('/images/meCursor24.png'), auto;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    height: 20px;
    width: 20px;
    accent-color: #7f5282;
    outline: 1px solid #EDEDED;
    border-radius: 3px;
    appearance: none;
    margin-right: 15px;

}

.fbbc-content {
    display: flex;
    justify-content: space-between;
    gap: 1.5%;
    flex-wrap: wrap;
}

.fbbc-content-input {
    background-color: #2c2c2c;
    color: white;
    width: 46.5%;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    padding: 1%;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.fbbc-content-input img {
    width: 20px;
    padding-left: 2%;
    padding-right: 2%;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.fbbc-content-input input {
    width: 90%;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background: none;
    border: none;
    color: white;
    outline: none;
}

.fbbc-c-i-file {
    justify-content: left !important;
    padding-top: 0;
    padding-bottom: 0;
}

.fbbc-c-i-file input[type="file"] {
    display: none;
}

.custom-file-upload {
    cursor: url('/images/mePointer24.png'), auto;
    margin-left: 2%;
    background: rgb(214, 115, 110);
    background: linear-gradient(270deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    color: white;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}

.custom-file-upload-phrase {
    margin-left: 1%;
    font-weight: 500;
}

.fbbc-c-i-textarea {
    width: 100%;
    justify-content: normal;
    align-items: start;
}

.fbbc-c-i-textarea textarea {
    width: 93%;
    background: none;
    border: none;
    outline: none;
}

.fbbc-content-input-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.fbbc-content-input-button-button {
    background: #2C2C2C;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.5s;
    cursor: url('/images/mePointer24.png'), auto;
}

.fbbc-content-input-button-button:hover {
    background: white;
    color: #2C2C2C;
}

.ung-img1 {
    width: 65%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ung-box {
    background: rgb(214, 115, 110);
    background: linear-gradient(0deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    width: 100%;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 50px;
}

.ung-box-content {
    border-radius: 50px;
    background-color: #242424;
    height: 100%;
    width: calc(100% - 150px);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 75px;
    padding-right: 75px;
    transition: 0.5s;
}

.ung-box-content:hover {
    background-color: rgb(52, 52, 52);
}

.ung-info {
    width: 75%;
    margin: auto;
    text-align: center;
    cursor: url('/images/meCursor24.png'), auto;
}

.ung-info-middle {
    text-align: right;
}

.ung-info h2 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 5px;
}

.ung-info p {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: normal;
    margin-top: 20px;
}

.ung-img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-39%, -50%);
    z-index: 1;
    width: 450px;
}

.ung-img2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-39%, -50%);
    z-index: 1;
    width: 450px;
}

.ung-img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-89%, -35%);
    z-index: 2;
    width: 360px;
}

.container-contactos1 {
    align-items: start;
}

.container-contactos2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.container-contactos2-map {
    width: 100%;
    max-height: 850px;
    position: relative;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.map-pin-esmoriz {
    position: absolute;
    top: 17%;
    left: 44%;
    transform: translate(-50%, -50%);
    width: 4%;
    cursor: url('/images/mePointer24.png'), auto;
    transition: 0.3s;
    animation: UpANDDown 2s linear infinite;

}

.map-pin-tv {
    position: absolute;
    top: 58%;
    left: 12%;
    transform: translate(-50%, -50%);
    width: 4%;
    cursor: url('/images/mePointer24.png'), auto;
    transition: 1s;
    animation: UpANDDown 2s linear infinite;

}

@keyframes UpANDDown {
    0% {
        width: 4%;

    }

    50% {
        width: 5%;

    }

    100% {
        width: 4%;

    }

}

.map-pin-esmoriz:hover,
.map-pin-tv:hover {
    width: 5%;
}

.contact-boxes {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 5%;
}

.contact-box-container {
    height: 90px;
    width: 35%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background-color: #272727;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
}

.contact-box-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
}

.contact-box-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.contact-box-info {
    width: 65%;
}

.contact-box-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;

}

.contact-box-info a {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}

.contacto-formulario-container h2 {
    font-size: 30px;
    font-weight: 700;
}

.contacto-formulario-container h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 300;
}

.contacto-formulario-options {
    margin-top: 50px;
    display: flex;
    gap: 2%;
}

.contacto-formulario-option {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem;
    cursor: url('/images/mePointer24.png'), auto;

    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
        linear-gradient(to right, #7e5283, #9a5c7c, #d6736e) border-box;
    border-radius: 50em;
    border: 3px solid transparent;
    background-color: black;
    transition: 0.5s;
}


.contacto-formulario-option {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem;
    cursor: url('/images/mePointer24.png'), auto;

    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
        linear-gradient(to right, #7e5283, #9a5c7c, #d6736e) border-box;
    border-radius: 50em;
    border: 3px solid transparent;
    background-color: black;
    transition: 0.5s;
}

.contacto-formulario-option:hover {
    padding: 0.5rem 2rem;
}

.contacto-formulario-option-active {
    background:
        linear-gradient(270deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%),
        linear-gradient(270deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    border: 0px
}

.contacto-formulario-option-active:hover {
    padding: 0.5rem 1rem;
}

.contacto-formulario-input {
    background-color: #2c2c2c;
    color: white;
    width: 98%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    padding: 1%;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.contacto-formulario-input img {
    width: 20px;
    padding-left: 2%;
    padding-right: 2%;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.contacto-formulario-input input {
    width: 95%;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background: none;
    border: none;
    color: white;
    outline: none;
}


.contacto-formulario-textarea {
    width: 98%;
    justify-content: normal;
    align-items: start;
}

.contacto-formulario-textarea textarea {
    width: 95%;
    background: none;
    border: none;
    outline: none;
}

.contacto-form-submit-content {
    width: 100%;
    display: flex;
    justify-content: right;
}

.contacto-form-submit-content-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    color: white;
    padding: 0.5rem 1rem;
    cursor: url('/images/mePointer24.png'), auto;
    background:
        linear-gradient(270deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%),
        linear-gradient(270deg, rgba(214, 115, 110, 1) 0%, rgba(154, 92, 124, 1) 50%, rgba(126, 82, 131, 1) 100%);
    border: 0px;
    border-radius: 50em;
    width: 125px;
    font-weight: 600;
    transition: 0.5s;
}

.contacto-form-submit-content-button:hover {
    font-weight: 800;
    filter: brightness(1.2);
}


.contact-boxes2 {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 5%;
    width: 80%;
}

.contact-box2-container {
    height: 90px;
    width: 90%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background-color: #272727;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
    margin: auto;
}

.contact-box2-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
}

.contact-box2-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.contact-box2-info {
    width: 70%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.contact-box2-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;

}

.contact-box2-info a {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}

.container-map {
    max-height: 850px;
    width: 65%;
    position: relative;
}

.question-box {
    width: 100%;
    border: 2px solid red;
    padding: 40px;
    border-radius: 50rem;

    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
        linear-gradient(180deg, #87557f, #965b7c, #a66279) border-box;
    border-radius: 5em;
    border: 10px solid transparent;

    margin-bottom: 40px;
    transition: 1s;
}

.question-box-question {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    transition: 1s;

}

.question-box-question label {
    font-size: 30px;
    font-weight: 600;
    width: 75%;
    transition: 1s;

}

.question-box-question img {
    cursor: url('/images/mePointer24.png'), auto;
    transition: 1s;
}

.question-box-awnser {
    display: none;
    padding: 0;
    width: 95%;
    margin: auto;
    transition: 1s;
    opacity: 1;
}

.question-box-awnser label {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 300;
    width: 75%;
    line-height: 0;
    transition: 1s;
    opacity: 0;
}

#loc {
    cursor: url('/images/mePointer24.png'), auto;
}


.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 20;
    background: #8e8e8e54;
    display: none;
    opacity: 0;
    transition: 0.5s;
}

/* Loader 6 */
.loader-6 {
    height: 64px;
    width: 64px;
}

.loader-6 span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 64px;
    width: 64px;
}

.loader-6 span::before,
.loader-6 span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 64px;
    width: 64px;
    border: 4px solid #d4726e;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: loader-6-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
    animation: loader-6-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
}

@-webkit-keyframes loader-6-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.5);
        opacity: 0;
    }
}

@keyframes loader-6-1 {
    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1.5);
        opacity: 0;
    }
}

.loader-6 span::after {
    -webkit-animation: loader-6-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
    animation: loader-6-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
}

@-webkit-keyframes loader-6-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
}

@keyframes loader-6-2 {
    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
}

.alert {
    position: fixed;
    top: 150px;
    z-index: 11;
    background: #bf6a73;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: 0.5s;
    opacity: 0;
}

.alert h2 {
    font-size: 15px;
}




.welcome-circle-1 {
    position: absolute;
    top: 30%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.welcome-circle-2 {
    position: absolute;
    top: 52%;
    left: 0%;
    transform: translate(-50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.welcome-circle-3 {
    position: absolute;
    top: 65%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 500px;
    width: 500px;
    object-fit: contain;
}

.welcome-circle-4 {
    position: absolute;
    top: 85%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 250px;
    width: 250px;
    object-fit: contain;
}

.welcome-circle-5 {
    position: absolute;
    top: 86%;
    left: 40%;
    transform: translate(-50%, -50%);
    height: 250px;
    width: 250px;
    object-fit: contain;
}

.sobre-circle-1 {
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translate(-50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.sobre-circle-2 {
    position: absolute;
    top: 47%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.b2b-circle-1 {
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.b2b-circle-2 {
    position: absolute;
    top: 25%;
    left: 0%;
    transform: translate(-50%, -50%);
    height: 500px;
    width: 500px;
    object-fit: contain;
}

.b2b-circle-3 {
    position: absolute;
    top: 42%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 450px;
    width: 450px;
    object-fit: contain;
}

.geracao-circle-1 {
    position: absolute;
    top: 23%;
    right: 10%;
    transform: translate(50%, -50%);
    height: 500px;
    width: 500px;
    object-fit: contain;
}

.geracao-circle-2 {
    position: absolute;
    top: 44%;
    left: 0%;
    transform: translate(-50%, -50%);
    height: 550px;
    width: 550px;
    object-fit: contain;
}

.geracao-circle-3 {
    position: absolute;
    top: 66%;
    right: 5%;
    transform: translate(50%, -50%);
    height: 500px;
    width: 500px;
    object-fit: contain;
}

.faqs-circle-1 {
    position: absolute;
    top: 35%;
    left: 0%;
    transform: translate(-50%, -50%);
    height: 400px;
    width: 400px;
    object-fit: contain;
}


.faqs-circle-2 {
    position: absolute;
    top: 55%;
    right: 0%;
    transform: translate(50%, -50%);
    height: 350px;
    width: 350px;
    object-fit: contain;
}

.contactos-circle-1 {
    position: absolute;
    top: 35%;
    right: 5%;
    transform: translate(50%, -50%);
    height: 600px;
    width: 600px;
    object-fit: contain;
}

.pp-box{
    margin-top: 50px;
}

.pp-box-header{
    margin-bottom: 25px;
}

.pp-box p{
    margin-bottom: 15px;
}

@media (min-width: 1400px) {
    .od {
        display: inherit;
    }

    .ad {
        display: none;
    }
}

@media (max-width: 1399.98px) {
    .welcome-circle-1 {
        top: 35%;
        height: 500px;
        width: 500px;
    }

    .welcome-circle-2 {
        height: 500px;
        width: 500px;
    }

    .sobre-circle-1 {
        height: 500px;
        width: 500px;
    }

    .sobre-circle-2 {
        height: 500px;
        width: 500px;
    }

    .b2b-circle-1 {
        height: 500px;
        width: 500px;
    }

    .b2b-circle-2 {
        top: 29%;
        height: 400px;
        width: 400px;
    }

    .geracao-circle-1 {
        top: 20%;
        height: 450px;
        width: 450px;
    }

    .geracao-circle-2 {
        top: 40%;
        height: 500px;
        width: 500px;
    }

    .od {
        display: none;
    }

    .ad {
        display: inherit;
    }

    .container {
        padding-bottom: 10px;
        width: 90%;
        padding-left: 2.5%;
        padding-right: 2.5%;
    }

    .container-title {
        font-size: 3.5vw;
        line-height: 60px;
    }

    .container-text {
        font-size: 1.2vw;
    }

    .sc-img1 {
        transform: translate(-39%, -75%);
        width: 80%;
    }

    .sc-img2 {
        transform: translate(-89%, -40%);
        width: 50%;
    }

    .column-20 {
        width: 23%;
    }

    .onc-column label {
        font-size: 2vw;
    }

    .onc-column-box img {
        width: 50%;
    }

    .onc-column-info-box label {
        font-size: 1.5vw;
    }

    footer {
        width: calc(100% - 120px);
        padding-top: 45px;
        padding-bottom: 45px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .footer-column-box a {
        font-size: 1vw;
    }

    .footer-column-box-middle a {
        font-size: 1vw;
    }

    .footer-column-box-end a {
        font-size: 1vw;
    }

    .footer-column-box-end img {
        height: 15px;
        width: 15px;
    }

    .footer-column-box-end h4 {
        font-size: 1.5vw;
    }

    .copy-right label {
        font-size: 1.5vw;
    }

    .video-content-info p {
        font-size: 2vw;
    }

    .video-content-info h1 {
        font-size: 5vw;
    }

    .video-content-info h2 {
        font-size: 3vw;
    }

    .nav-menu a {
        font-size: 1.5vw;
    }

    .nav-box-column-logo {
        max-height: 65px;
    }

    .nav-box-column-button {
        font-size: 1vw;
    }

    .h-400 {
        height: 300px;
    }

    .ung-info p {
        font-size: 2.5vw;
    }

    .ung-img2 {
        width: 350px;
        transform: translate(-39%, -62%);
    }

    .ung-img3 {
        width: 260px;
        transform: translate(-90%, -51%);
    }

    .question-box {
        border: 5px solid transparent;
    }

    .question-box-question label {
        font-size: 2vw;
    }

    .question-box-awnser label {
        font-size: 1.5vw;
        width: 90%;
    }

    .contact-box-container {
        height: 90px;
        width: 45%;

    }
}

@media (max-width: 1199.98px) {
    .container-title {
        line-height: 40px;
    }

    .container-text {
        font-size: 1.4vw;
    }

    .container-title-sec {
        font-size: 1.3vw;
    }

    .default-button {
        font-size: 13px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .no-desktop {
        display: none;
    }

    .no-mobile {
        display: inherit;
    }

}

@media (max-width: 991.98px) {
    .no-desktop {
        display: inherit;
    }

    .no-mobile {
        display: none;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-navbar {
        height: 75px;
        width: 100%;
        background-color: #242424;
        box-shadow: rgb(146, 89, 125) 0px 2px 4px 1px;
        display: flex;
        justify-content: space-between;
    }

    .alert {
        top: 75px;
    }

    .mobile-navbar-box {
        width: 90%;
        height: 90%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-navbar-box-logo {
        height: 100%;
    }

    .menu-button {
        display: inline-block;
        cursor: url('/images/mePointer24.png'), auto;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 25px;
        height: 3px;
        background: linear-gradient(54deg, rgba(92, 70, 138, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(214, 115, 110, 1) 100%);
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        transform: translate(0, -8px) rotate(45deg);
    }


    .mobile-menu {
        height: 0%;
        width: 0%;
        position: fixed;
        z-index: 10;
        background: #000000a6;

    }

    .mobile-menu-container {
        height: 0%;
        width: 0%;
        background-color: rgba(255, 255, 255, 0.642);
        position: fixed;
        z-index: 10;
        border-radius: 0% 0% 100%;
        transition: 0.5s;
        -webkit-box-shadow: 1px 1px 31px 0px rgba(145, 88, 124, 1);
        -moz-box-shadow: 1px 1px 31px 0px rgba(145, 88, 124, 1);
        box-shadow: 1px 1px 31px 0px rgba(145, 88, 124, 1);
    }

    .mobile-menu-container-f1 {
        width: 0%;
        height: 0%;
        background: linear-gradient(180deg, rgba(92, 70, 138, 1) 0%, rgba(149, 91, 125, 1) 50%, rgba(214, 115, 110, 1) 100%);
        border-radius: 0% 0% 100%;
        transition: 0.5s;
    }

    .mobile-menu-container-f2 {
        width: 100%;
        height: 95%;
        background-color: #2c2c2c;
        border-radius: 0% 0% 100%;
    }

    .btn-menu-close {
        opacity: 0;
        position: absolute;
        left: 90%;
        top: 95%;
        transform: translate(-50%, -50%);
        transition: 0.5s;
        height: 50px;
        width: 50px;
        font-size: 26px;
        font-weight: 700;
        background: linear-gradient(#2c2c2c, #2c2c2c) padding-box,
            linear-gradient(to right, #7e5283, #9a5c7c, #d6736e) border-box;
        border-radius: 60%;
        border: 3px solid transparent;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-menu-close i {
        font-size: 30px;
        object-position: center;
        object-fit: contain;
    }

    .mobile-menu-box {
        height: 50%;
        width: 80%;
        transition: 0.5s;
        opacity: 0;
        display: none;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .mobile-menu-box-content {
        width: 100%;
        height: max-content;
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
        padding: 10%;
    }

    .mobile-menu-box-content a {
        width: 100%;
        font-size: 25px;
        text-decoration: none;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: left;
    }

    .mobile-menu-box-content button {
        font-size: 15px !important;
        margin-top: 35px;
    }

    .sbc-info h2 {
        font-size: 5vw;
    }

    .sbc-image {
        width: 20%;
    }

    .sbc-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .sbc-info {
        width: 70%;
    }

    .sbc-info p {
        font-size: 1.6vw;
    }

    .s-box-content {
        width: calc(100% - 60px);
        padding: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .sm {
        height: 200px;
    }

    .sm h2 {
        font-size: 5vw;
    }

    .default-button {
        width: auto;
        height: 60px !important;
        font-size: 1.5vw !important;
    }

    .columnB2B h2 {
        font-size: 2vw;
    }

    .columnB2B p {
        font-size: 1.5vw;
    }

    .form-b2b-box {
        width: 95%;
    }

    .form-b2b-box-header h3 {
        font-size: 3vw;
    }

    .form-b2b-box-header p {
        font-size: 2.5vw;
    }

    .h-400 {
        height: 240px;
    }

    .ung-info h2 {
        font-size: 2vw;
    }

    .ung-info p {
        font-size: 2.5vw;
    }

    .ung-box-content {
        padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
        transition: 0.5s;
        width: calc(100% - 40px);
    }

    .mobile-navbar-box a {
        height: 100%;
    }

    .ung-img2 {
        width: 75%;
    }

    .ung-img3 {
        width: 60%;
    }

    .container-map {
        width: 100%;
    }

    .contact-box2-info h3 {
        font-size: 2vw;
    }

    .contact-box2-info a {
        font-size: 1.5vw;
    }

    .contact-boxes {
        margin-top: 25px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .contact-box-container {
        height: 60px;
        width: 75%;
        margin-bottom: 25px;
    }

    .contacto-formulario-option {
        font-size: 1.2vw;
    }

    .video-content-info h2 {
        font-size: 50px;
    }

    .video-content-info h1 {
        font-size: 80px;
    }

    .video-content-info p {
        font-size: 2vw;
    }

    .footer-column-box img {
        margin-bottom: 0px;
    }

    .footer-column-box a {
        font-size: 1vw;
        margin-right: 15px;
        margin-left: 15px;
    }

    .footer-column25 {
        width: 100%;
        height: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-flex {
        flex-wrap: wrap;
    }

    .footer-column-box-middle a {
        margin-right: 15px;
        margin-left: 15px;
    }

    .footer-column-box-end {
        margin: auto;
        text-align: center;
    }

    .footer-column-box-end h4 {
        font-size: 25px;
    }

    .footer-column-box-end a {
        font-size: 1vw;
        justify-content: center;
        margin-left: 15px;
        margin-right: 15px;
    }

    .geracao-circle-3 {
        top: 55%;
        height: 250px;
        width: 250px;
    }

    .geracao-circle-2 {
        top: 35%;
        height: 300px;
        width: 300px;
    }

    .geracao-circle-1 {
        top: 15%;
        height: 250px;
        width: 250px;
    }

}

@media (max-width: 575.98px) {

    .video-content-info h2 {
        font-size: 10vw;
    }

    .video-content-info h1 {
        font-size: 15vw;
    }

    .video-content-info p {
        font-size: 4vw;
    }

    .container-w55 {
        width: 100%;
        text-align: left;
        padding-bottom: 50px;
    }

    .container-title-sec {
        font-size: 5vw;
    }

    .container-title {
        font-size: 7vw;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .container-text {
        font-size: 4vw;
        padding-bottom: 31px;
    }

    .default-button {
        width: auto;
        height: auto !important;
        font-size: 3.5vw !important;
    }

    .container-w40-photos {
        height: 410px;
        width: 100%;
    }

    .sc-img2 {
        width: 50%;
    }

    .sc-img1 {
        width: 80%;
    }

    .container {
        padding-top: 50px;
    }

    .column-20 {
        width: 48%;
        margin-bottom: 3%;
    }

    .onc-column-box img {
        width: 80%;
    }

    .onc-column label {
        font-size: 3vw;
    }

    .onc-column-info-box label {
        font-size: 3.5vw;
    }

    .container-w40 {
        width: 100%;
        position: relative;
    }

    .copy-right label {
        font-size: 2.5vw;
    }

    .container-v2 {
        padding-top: 150px;
    }

    .sbc-info {
        width: 100%;
        text-align: center;
    }

    .sbc-image {
        width: 40%;
        margin: auto;
        margin-bottom: 25px;
    }

    .sbc-info p {
        font-size: 3.6vw;
    }

    .s-box-content {
        flex-wrap: wrap-reverse;
    }

    .sm>.default-button {
        width: auto;
        font-size: 20px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .row {
        flex-wrap: wrap;
    }

    .columnB2B {
        width: 100%;
        display: flex;
        text-align: center;
    }

    .columnB2B h2 {
        font-size: 4vw;
    }

    .columnB2B p {
        font-size: 3vw;
    }

    .ung-info {
        width: 100%;
    }

    .ung-info h2 {
        font-size: 3vw;
    }

    .ung-info p {
        font-size: 3.5vw;
    }

    .remove-padding {
        padding: 0;
    }

    .fbbc-content-input {
        background-color: #2c2c2c;
        color: white;
        width: 100%;
        padding: 3%;
    }

    .form-b2b-box-options {
        width: 100%;
        flex-wrap: wrap;
    }

    .fbbo-option {
        width: 50%;
    }

    .form-b2b-box-header h3 {
        font-size: 6vw;
    }

    .form-b2b-box-header p {
        font-size: 3.5vw;
    }

    .form-b2b-box-content {
        margin-top: 25px;
    }

    .custom-file-upload-phrase {
        font-size: 3vw;
        margin-left: 5%;
    }

    .contact-box-container {
        margin: auto;
        margin-bottom: 25px;
    }

    .contacto-formulario-option {
        font-size: 2.2vw;
        margin: auto;
    }

    .contacto-formulario-input {
        width: 96%;
        padding: 2%;
    }

    .contact-box2-info h3 {
        font-size: 5vw;
    }

    .contact-box2-info a {
        font-size: 3.5vw;
    }

    .question-box-awnser label {
        font-size: 3vw;
        width: 90%;
    }

    .question-box-question label {
        font-size: 3vw;
    }

    .nav-box-column-button {
        font-size: 3vw;
    }

    .mobile-menu-box-content a {
        font-size: 6vw;
    }


    .footer-column-box img {
        margin-bottom: 15px;
    }

    .footer-column-box a {
        font-size: 3vw;
    }

    .footer-column-box-middle a {
        font-size: 3vw;
    }

    .footer-column-box-end a {
        font-size: 3vw;
    }

    .welcome-circle-1 {
        top: 28%;
        height: 250px;
        width: 250px;
    }

    .welcome-circle-2 {
        top: 48%;
        height: 250px;
        width: 250px;
    }

    .welcome-circle-3 {
        top: 65%;
        height: 250px;
        width: 250px;
    }

    .welcome-circle-4 {
        top: 82%;
        height: 100px;
        width: 100px;
    }

    .welcome-circle-5 {
        top: 81%;
        left: 25%;
        height: 150px;
        width: 150px;
    }

    .sobre-circle-1 {
        display: none;
    }

    .sobre-circle-2 {
        display: none;
    }

    .b2b-circle-1 {
        height: 200px;
        width: 200px;
    }

    .b2b-circle-2 {
        top: 22%;
        height: 150px;
        width: 150px;
    }

    .b2b-circle-3 {
        top: 37%;
        height: 200px;
        width: 200px;
    }

    .contactos-circle-1 {
        top: 55%;
        height: 400px;
        width: 400px;
    }
}