@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Lemon', sans-serif;
    font-weight: bold;
    font-size: 35px;
}

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

header {
    width: 100%;
    overflow: hidden;
}

#logo {
    width: 100px;
    height: 100px;
    margin-left: -150px;
}

.menu {
    background-color: #1B2D32;
    color: #fff;
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 200;
}

.menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: auto;
}

.menu_links {
    height: 100%;
    transition: transform .5s;
    display: flex;
    z-index: 10;
    border-bottom: 2px solid #fff;
}

.menu_item {
    list-style: none;
    position: relative;
    height: 100%;
}

.menu_link {
    height: 100%;
    display: flex;
    padding: 0 40px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Lato';
    transition: all .5s;
}

.menu_link:hover {
    border-bottom: 4px solid #fff;
    margin-top: -10px;
}

.title-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -200px;
    border-bottom: 4px solid #A7A164;
}

.title-icon h6 {
    margin-left: 5px;
}

.menu_hamburger {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.fa-bars {
    display: block;
    font-size: 30px;
}

/* ------------------------------------------------------------ */
/* ---------------------- MENU RESPONSIVE --------------------- */
/* ------------------------------------------------------------ */

@media (max-width: 1300px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    #logo {
        width: 70px;
        height: 70px;
        margin-left: -50px;
    }

    .title-icon {
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -220px;
        border-bottom: 4px solid #A7A164;
    }

    .title-icon h5 {
        font-size: 16px;
    }

    .title-icon h6 {
        font-size: 14px;
        margin-left: 4px;
    }
}

@media (max-width: 1024px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    #logo {
        width: 70px;
        height: 70px;
        margin-left: -50px;
    }

    .title-icon {
        width: 100px;
        display: grid;
        justify-content: center;
        align-items: center;
        margin-left: -50px;
        border-bottom: none;
    }

    .title-icon h5 {
        font-size: 16px;
    }

    .title-icon h6 {
        font-size: 14px;
        margin-left: 4px;
    }
}

@media (max-width: 1000px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    #logo {
        width: 70px;
        height: 70px;
        margin-left: -50px;
    }

    .title-icon {
        width: 100px;
        display: grid;
        justify-content: center;
        align-items: center;
        margin-left: -10px;
        border-bottom: none;
    }

    .title-icon h5 {
        font-size: 16px;
    }

    .title-icon h6 {
        font-size: 14px;
        margin-left: 4px;
    }
}

@media (max-width: 800px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    .menu_hamburger {
        display: flex;
    }

    #logo {
        width: 70px;
        height: 70px;
        margin-left: -20px;
    }

    .title-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -500px;
        border-bottom: 4px solid #A7A164;
    }

    .title-icon h5 {
        font-size: 16px;
    }

    .title-icon h6 {
        font-size: 14px;
        margin-left: 4px;
    }

    .menu_item {
        --clip: 0;
        overflow: hidden;
    }

    .menu_item--active {
        --transform: rotate(0);
        --background: #5e7094;
    }

    /* .menu_item--show {
        background-color: var(--background);
    } */

    .menu_links {
        position: fixed;
        /* max-width: 400px; */
        width: 100%;
        top: 100px;
        bottom: 0;
        right: 0;
        background-color: #fff;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
    }

    .menu_links--show {
        transform: unset;
        width: 100%;
    }

    .menu_link {
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
        color: #1B2D32;
    }
}

@media (max-width: 600px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    .title-icon {
        margin-left: -180px;
    }
}

@media (width: 540px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    .title-icon {
        margin-left: -300px;
    }
}

@media (max-width: 400px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    .title-icon {
        margin-left: -150px;
    }
}

@media (width: 344px) {
    header {
        width: 100%;
        overflow: hidden;
    }

    .title-icon {
        margin-left: -120px;
    }
}

/* ------------------------------------------------------------ */
/* ------------------------ HERO BANNER ----------------------- */
/* ------------------------------------------------------------ */

.header {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.content_hero {
    width: 100%;
    background-color: #1B2D32;
}

.header-content {
    width: 1000px;
    z-index: 2;
}

.header-content .conteiner-hero {
    width: 100%;
    display: flex;
}

.img-hero {
    width: 50%;
    margin-top: 100px;
    margin-left: 100px;
}

.img-hero img {
    width: 500px;
    object-fit: cover;
    display: inline-block;
    animation: float 5s ease-in-out infinite;
}

.img-hero .image {
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.header-content .conteiner-hero .border-right {
    width: 5px;
    height: 250px;
    background-color: #fff;
    margin-left: 500px;
    margin-top: 80px;
}

.box_hero {
    width: 50%;
    margin-top: 100px;
    transform: translateX(50%);
}

.box_hero .title {
    display: block;
    font-family: 'Montserrat';
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: -150px;
    margin-left: 10px;
    white-space: nowrap;
    border-right: 4px solid;
    width: 495px;
    animation: typing 2s steps(20), blink .5s infinite step-end alternate;
    overflow: hidden;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.off {
    float: right;
    margin-right: 20px;
    margin-top: -150px;
}

.off .item-1 {
    width: 520px;
    margin-left: 100px;
    padding: 10px 0;
}

.off .item-2 {
    font-size: 20px;
    text-align: right;
    margin-left: 24px;
    padding: 10px 0;
}

.off .item-3 {
    text-align: right;
    margin-left: -28px;
    padding: 10px 0;
}

.header-content .conteiner-hero .border__bottom {
    width: 400px;
    height: 4px;
    background-color: #fff;
    margin-top: 50px;
    margin-left: 100px;
}

.button {
    width: 500px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 16px;
    background-color: #A7A164;
    color: #1B2D32;
    font-family: 'Lemon';
    font-weight: bold;
    transition: all .5s;
    cursor: pointer;
}

.line {
    width: 5px;
    height: 40px;
    background-color: #1B2D32;
    margin: 20px;
}

.fa-right-long {
    font-size: 28px;
    transition: all .5s;
}

.button:hover {
    width: 505px;
    height: 65px;
    background-color: #c5bf78;
}

.button:hover .fa-right-long {
    margin-left: 50px;
}

/* ------------------------------------------------------------ */
/* ---------------------- HERO RESPONSIVE --------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    .header {
        display: flex;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: flex;
    }

    .img-hero {
        width: 50%;
        margin-top: 150px;
        margin-left: 100px;
    }

    .img-hero img {
        width: 500px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 300px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(60%);
    }

    .box_hero .title {
        margin-top: 120px;
        transform: translateX(-40%);
    }

    .off {
        float: right;
        transform: translateX(-70%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(82%);
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(42%);
        margin-left: 0;
        padding: 10px 0;
    }

    .off .item-3 {
        width: 450px;
        transform: translateX(26%);
        margin-left: 0px;
        padding: 10px 0;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 500px;
        margin-top: 150px;
        margin-left: -200px;
    }

    .button {
        width: 400px;
        margin-left: -100px;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        display: flex;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: flex;
    }

    .img-hero {
        width: 50%;
        margin-top: 150px;
        margin-left: 20px;
    }

    .img-hero img {
        width: 400px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 300px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(50%);
    }

    .box_hero .title {
        margin-top: 120px;
        transform: translateX(-40%);
    }

    .off {
        float: right;
        transform: translateX(-70%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(82%);
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(42%);
        margin-left: 0;
        padding: 10px 0;
    }

    .off .item-3 {
        width: 450px;
        transform: translateX(26%);
        margin-left: 0px;
        padding: 10px 0;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 500px;
        margin-top: 150px;
        margin-left: -200px;
    }

    .button {
        width: 400px;
        margin-left: -100px;
    }
}

@media screen and (max-width: 1000px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 100%;
        margin-top: 150px;
        margin-left: 200px;
    }

    .img-hero img {
        width: 400px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 500px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(50%);
    }

    .box_hero .title {
        margin-top: 0px;
    }

    .off {
        float: right;
        margin-right: 100px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(82%);
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(45%);
        margin-left: 0;
        padding: 10px 0;
    }

    .off .item-3 {
        width: 450px;
        transform: translateX(32%);
        margin-left: 0px;
        padding: 10px 0;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 500px;
        margin-top: 150px;
        margin-left: -10px;
    }

    .button {
        width: 400px;
    }
}

@media screen and (max-width: 920px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 100%;
        margin-top: 150px;
        margin-left: 120px;
    }

    .img-hero img {
        width: 500px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 300px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(100%);
    }

    .box_hero .title {
        margin-top: 0px;
    }

    .off {
        float: right;
        margin-right: 100px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(130%);
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(80%);
        margin-left: 0;
        padding: 10px 0;
    }

    .off .item-3 {
        width: 450px;
        transform: translateX(60%);
        margin-left: 0px;
        padding: 10px 0;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 500px;
        margin-top: 150px;
        margin-left: -220px;
    }

    .button {
        width: 400px;
        margin-left: -220px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 100%;
        margin-top: 150px;
        margin-left: 30px;
    }

    .img-hero img {
        width: 350px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 380px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(0%);
    }

    .box_hero .title {
        margin-top: 0;
        transform: translateX(4%);
    }

    .off {
        float: right;
        transform: translateX(0%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(92%);
        font-size: 18px;
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(54%);
        margin-left: 0;
        padding: 10px 0;
        font-size: 18px;
    }

    .off .item-3 {
        width: 400px;
        transform: translateX(44%);
        margin-left: 0px;
        padding: 10px 0;
        font-size: 18px;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 320px;
        margin-top: 130px;
        margin-left: 40px;
    }

    .button {
        width: 320px;
        margin-left: 40px;
    }
}

@media screen and (width: 540px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 100%;
        margin-top: 150px;
        margin-left: 70px;
    }

    .img-hero img {
        width: 400px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 400px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(20%);
    }

    .box_hero .title {
        margin-top: 0;
        transform: translateX(4%);
    }

    .off {
        float: right;
        transform: translateX(0%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(92%);
        font-size: 18px;
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(54%);
        margin-left: 0;
        padding: 10px 0;
        font-size: 18px;
    }

    .off .item-3 {
        width: 400px;
        transform: translateX(44%);
        margin-left: 0px;
        padding: 10px 0;
        font-size: 18px;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 320px;
        margin-top: 130px;
        margin-left: 40px;
    }

    .button {
        width: 320px;
        margin-left: 40px;
    }
}

@media screen and (max-width: 400px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 50%;
        margin-top: 150px;
        margin-left: 50px;
    }

    .img-hero img {
        width: 300px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 350px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(0%);
    }

    .box_hero .title {
        margin-top: 0;
        transform: translateX(4%);
    }

    .off {
        float: right;
        transform: translateX(0%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(85%);
        font-size: 18px;
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(50%);
        margin-left: 0;
        padding: 10px 0;
        font-size: 18px;
    }

    .off .item-3 {
        width: 400px;
        transform: translateX(40%);
        margin-left: 0px;
        padding: 10px 0;
        font-size: 18px;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 320px;
        margin-top: 150px;
        margin-left: 20px;
    }

    .button {
        width: 320px;
        margin-left: 20px;
    }
}

@media screen and (width: 344px) {
    .header {
        display: grid;
        height: auto;
        overflow: hidden;
    }

    .header-content {
        width: auto;
        z-index: 2;
    }

    .header-content .conteiner-hero {
        width: 100%;
        display: grid;
    }

    .img-hero {
        width: 50%;
        margin-top: 150px;
        margin-left: 20px;
    }

    .img-hero img {
        width: 300px;
        object-fit: cover;
    }

    .header-content .conteiner-hero .border-right {
        margin-left: 350px;
    }

    .box_hero {
        width: 50%;
        margin-top: 50px;
        transform: translateX(0%);
    }

    .box_hero .title {
        margin-top: 0;
        transform: translateX(4%);
    }

    .off {
        float: right;
        transform: translateX(0%);
        margin-right: 0px;
        margin-top: -40px;
    }

    .off .item-1 {
        width: 300px;
        margin-left: 0;
        transform: translateX(85%);
        font-size: 18px;
    }

    .off .item-2 {
        width: 400px;
        transform: translateX(50%);
        margin-left: 0;
        padding: 10px 0;
        font-size: 18px;
    }

    .off .item-3 {
        width: 400px;
        transform: translateX(40%);
        margin-left: 0px;
        padding: 10px 0;
        font-size: 18px;
    }

    .header-content .conteiner-hero .border__bottom {
        width: 320px;
        margin-top: 150px;
        margin-left: 20px;
    }

    .button {
        width: 320px;
        margin-left: 20px;
    }
}

/* ------------------------------------------------------------ */
/* --------------------------- ABOUT -------------------------- */
/* ------------------------------------------------------------ */

.waves {
    z-index: 100;
}

.about {
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -150px;
    background-image: url(../assets/img/banner-about.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-about {
    width: 50%;
    transform: translateX(-10%);
}

.container-about h1 {
    font-family: 'Lemon';
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.container-about .box-paragraph {
    width: 80%;
    font-family: 'Lato';
    margin: auto;
    text-align: center;
    color: #fff;
}

.btn-more {
    width: 250px;
    height: 50px;
    display: flex;
    margin: auto;
    background-color: transparent;
    border: 2px solid #A7A164;
    border-radius: 16px;
    color: #fff;
    transition: all .5s;
}

.btn-more .more {
    margin: auto;
}

.btn-more .fa-arrow-right-long {
    margin: auto;
    margin-left: -50px;
    transition: all .5s;
}

.btn-more:hover {
    border: 2px solid #c5bf78;
    background-color: #c5bf78;
}

.btn-more:hover .fa-arrow-right-long {
    margin-left: 10px;
}

.img-about img {
    width: 600px;
    margin: 20px;
    object-fit: cover;
}

/* ------------------------------------------------------------ */
/* ---------------------- ABOUT RESPONSIVE -------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    .container-about {
        width: 100%;
        transform: translateX(0%);
    }

    .img-about img {
        width: 400px;
        margin: 20px;
        object-fit: cover;
    }
}

@media screen and (max-width: 1000px) {
    .container-about {
        width: 100%;
        transform: translateX(0%);
    }

    .img-about img {
        width: 300px;
        margin: 20px;
        object-fit: cover;
    }
}

@media screen and (max-width: 800px) {
    .container-about {
        width: 100%;
        transform: translateX(0%);
    }

    .img-about img {
        display: none;
    }
}

/* ------------------------------------------------------------ */
/* ---------------------------- INFO -------------------------- */
/* ------------------------------------------------------------ */

.container-info {
    width: 100%;
    height: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -250px;
    margin-bottom: 100px;
}

.container-info .content {
    width: 80%;
    margin: auto;
}

.contenct-conection .content-info {
    width: 100%;
    display: flex;
}

.title-info-content {
    margin-bottom: 50px;
}

.title-info-content span {
    padding: 10px 0;
    border-top: 2px solid #1B2D32;
    border-bottom: 2px solid #1B2D32;
}

.title-info {
    width: 100%;
    text-align: center;
    font-family: 'Lemon', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #1B2D32;
    margin: 20px 0;
}

.connect-img img {
    max-width: 600px;
    object-fit: cover;
    margin-top: -50px;
    margin-left: -100px;
    margin-right: 100px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.img-devices img {
    max-width: 600px;
    object-fit: cover;
    transform: translateY(-80%);
    float: right;
    margin-right: -50px;
}

.img-devices-responsive img {
    display: none;
}

.content-info .box-paragraph {
    width: 100%;
    margin-top: 20px;
}

.content-info .box-paragraph .paragraph {
    width: 600px;
    padding: 40px 0;
    font-weight: bold;
}

.content-info .box-paragraph .paragraph .border-top {
    width: 200px;
    height: 4px;
    background-color: #1B2D32;
    margin-bottom: 20px;
    margin-left: -10px;
}

.content-info .box-paragraph .paragraph .border-left {
    position: absolute;
    width: 3px;
    height: 100px;
    background-color: #1B2D32;
    margin-left: -20px;
}

.content-info .box-paragraph .paragraph .border-bottom {
    width: 200px;
    height: 4px;
    background-color: #1B2D32;
    float: right;
    margin-top: -10px;
}

.content-info .box-paragraph .paragraph .border-right {
    width: 3px;
    height: 100px;
    background-color: #1B2D32;
    margin-left: 600px;
    margin-top: -120px;
}

.button-free {
    width: 500px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 16px;
    background-color: #1B2D32;
    color: #D2C7AB;
    font-family: 'Lemon';
    font-weight: bold;
    transition: all .5s;
    cursor: pointer;
}

.button-free .line {
    width: 5px;
    height: 40px;
    background-color: #D2C7AB;
    margin: 20px;
}

.button-free .fa-meteor {
    font-size: 30px;
    transform: rotate(-140deg);
    transition: all .5s;
}

.button-free:hover .fa-meteor {
    font-size: 35px;
    margin-left: 50px;
    transform: rotate(-150deg);
}


/* ------------------------------------------------------------ */
/* ----------------------- INFO RESPONSIVE -------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 100%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: flex;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 500px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -150px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        display: none;
    }

    .img-devices img {
        display: block;
        max-width: 400px;
        object-fit: cover;
        transform: translateY(-120%);
        float: right;
        margin-right: -110px;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -10px;
    }

    .content-info .box-paragraph .paragraph {
        width: 600px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 18px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 630px;
        margin-top: -100px;
    }
}

@media screen and (max-width: 1024px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 100%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: flex;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 400px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -150px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        display: none;
    }

    .img-devices img {
        display: block;
        max-width: 300px;
        object-fit: cover;
        transform: translateY(-120%);
        float: right;
        margin-right: -110px;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -50px;
    }

    .content-info .box-paragraph .paragraph {
        width: 500px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 14px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 530px;
        margin-top: -120px;
    }
}

@media screen and (max-width: 1000px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 100%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: flex;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 350px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -150px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        display: none;
    }

    .img-devices img {
        display: block;
        max-width: 250px;
        object-fit: cover;
        transform: translateY(-120%);
        float: right;
        margin-right: -100px;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -50px;
    }

    .content-info .box-paragraph .paragraph {
        width: 350px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 14px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 370px;
        margin-top: -120px;
    }
}

@media screen and (max-width: 600px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 80%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: grid;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 380px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -40px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        display: block;
        max-width: 300px;
        object-fit: cover;
        transform: translateY(0%);
        margin-bottom: 50px;
    }

    .img-devices img {
        display: none;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -50px;
    }

    .content-info .box-paragraph .paragraph {
        width: 310px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 14px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 330px;
        margin-top: -120px;
    }
}

@media screen and (width: 344px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 80%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: grid;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 350px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -40px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        display: block;
        max-width: 280px;
        object-fit: cover;
        transform: translateY(0%);
        margin-bottom: 50px;
    }

    .img-devices img {
        display: none;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -50px;
    }

    .content-info .box-paragraph .paragraph {
        width: 280px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 14px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 300px;
        margin-top: -120px;
    }
}

@media screen and (height: 740px) {
    .container-info {
        width: 100%;
        height: auto;
        display: grid;
    }

    .container-info .content {
        width: 80%;
        margin: auto;
    }

    .contenct-conection .content-info {
        width: 100%;
        display: grid;
    }

    .title-info {
        width: 100%;
        margin: 40px auto;
    }

    .connect-img img {
        max-width: 350px;
        object-fit: cover;
        margin-top: 0;
        margin-left: -40px;
        margin-right: 0;
    }

    .img-devices-responsive img {
        max-width: 280px;
        object-fit: cover;
        transform: translateY(0%);
        margin-bottom: 50px;
    }

    .img-devices img {
        display: none;
    }

    .content-info .box-paragraph {
        width: 100%;
        margin-top: -50px;
    }

    .content-info .box-paragraph .paragraph {
        width: 290px;
        padding: 40px 0;
        font-weight: 200;
        font-size: 14px;
        text-align: justify;
    }

    .content-info .box-paragraph .paragraph .border-top {
        width: 200px;
        height: 4px;
        background-color: #1B2D32;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .content-info .box-paragraph .paragraph .border-left {
        position: absolute;
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: -20px;
    }

    .content-info .box-paragraph .paragraph .border-bottom {
        width: 200px;
        height: 4px;
        margin-top: 0px;
        transform: translateX(-10%);
    }

    .content-info .box-paragraph .paragraph .border-right {
        width: 3px;
        height: 100px;
        background-color: #1B2D32;
        margin-left: 310px;
        margin-top: -120px;
    }
}

/* ------------------------------------------------------------ */
/* --------------------------- SERVICE ------------------------ */
/* ------------------------------------------------------------ */

.sesgo-top {
    position: absolute;
    width: 100%;
    height: 800px;
    background-color: #D2C7AB;
    clip-path: polygon(50% 10%, 0 0, 100% 0);
    z-index: 100;
}

.sesgo-bottom {
    position: absolute;
    width: 100%;
    height: 800px;
    margin-top: -799px;
    background-color: #D2C7AB;
    clip-path: polygon(50% 90%, 0 100%, 100% 100%);
    z-index: 100;
}

.service {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -400px;
    background-color: #1B2D32;
}

.container-cards {
    width: 100%;
    height: 1300px;
    transform: translateY(14%);
    color: #fff;
}

.title-service {
    width: 70%;
    height: 100px;
    display: flex;
    text-align: center;
    margin: 50px auto;
    color: #D2C7AB;
}

.fa-rocket {
    font-size: 70px;
    margin: 10px;
}

.conteiner__service {
    width: 80%;
    display: grid;
    flex-direction: column;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    margin-top: -50px;
}

.card-service {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 40px;
}

.card-service .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1D3B43;
    transition: .5s;
    cursor: pointer;
}

.card-service .front {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 10px 16px #728E89;
}

.card-service .front h2 {
    bottom: -8px;
    width: 100%;
    color: #fff;
    text-align: center;
    margin: 50px auto;
}

.fa-network-wired,
.fa-laptop,
.fa-file-shield,
.fa-people-line {
    width: 100%;
    font-size: 50px;
    text-align: center;
    margin: auto;
}

.fa-meteor {
    margin-left: 20px;
    transform: rotate(-170deg);
    font-size: 30px;
}

.subtitle-card {
    text-align: center;
}

.card-service .back {
    transform: perspective(600px) rotateY(180deg);
    padding: 15px;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 10px 16px #1D3B43;
    background-color: #728E89;
}

.card-service .back .border-dcoration {
    border-top: 1px solid #fff;
    height: 50px;
    margin-bottom: -40px;
}

.card-service:hover .front {
    transform: perspective(600px) rotateY(180deg);
}

.card-service:hover .back {
    transform: perspective(600px) rotateY(360deg);
    background-color: #728E89;
}

/* ------------------------------------------------------------ */
/* ---------------------- SERVICE RESPONSIVE ------------------ */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1024px) {
    .sesgo-top {
        margin-top: -2px;
    }

    .sesgo-bottom {
        margin-top: -798px;
    }

    .service {
        margin-top: -150px;
    }

    .title-service {
        margin-bottom: -50px;
    }

    .container-cards {
        width: 100%;
        height: 800px;
        transform: translateY(14%);
        color: #fff;
    }

    .conteiner__service {
        width: 90%;
        display: grid;
        flex-direction: column;
        grid-template-columns: auto auto auto;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-top: 0px;
    }

    .card-service {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 20px;
    }

    .card-service .front h2 {
        bottom: -8px;
        margin: 20px auto;
    }

    .fa-download,
    .fa-display,
    .fa-youtube {
        font-size: 40px;
        margin: 20px auto;
    }

    .card-service .back h2 {
        font-size: 20px;
        margin-top: 20px;
        letter-spacing: 0;
    }

    .card-service .back p {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .sesgo-top {
        margin-top: -1px;
    }

    .sesgo-bottom {
        margin-top: -798px;
    }

    .service {
        margin-top: 50px;
    }

    .title-service {
        margin-bottom: -50px;
    }

    .container-cards {
        width: 100%;
        height: 1800px;
        transform: translateY(8%);
        color: #fff;
    }

    .conteiner__service {
        width: 80%;
        display: grid;
        flex-direction: column;
        grid-template-columns: auto;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-top: 0px;
    }

    .card-service {
        position: relative;
        width: 250px;
        height: 200px;
        margin: 20px;
    }

    .card-service .front h2 {
        bottom: -8px;
        margin: 20px auto;
    }

    .fa-download,
    .fa-display,
    .fa-youtube {
        font-size: 40px;
        margin: 20px auto;
    }

    .card-service .back h2 {
        font-size: 20px;
        margin-top: 20px;
        letter-spacing: 0;
    }

    .card-service .back p {
        font-size: 14px;
    }
}

@media screen and (width: 344px) {
    .sesgo-top {
        margin-top: -1px;
    }

    .sesgo-bottom {
        margin-top: -798px;
    }

    .service {
        margin-top: 50px;
    }

    .title-service {
        margin-bottom: 0px;
    }

    .container-cards {
        width: 100%;
        height: 1800px;
        transform: translateY(8%);
        color: #fff;
    }

    .conteiner__service {
        width: 100%;
        display: grid;
        flex-direction: column;
        grid-template-columns: auto;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-top: 0px;
    }

    .card-service {
        position: relative;
        width: 300px;
        height: 200px;
        margin: 20px;
    }

    .card-service .front h2 {
        bottom: -8px;
        margin: 20px auto;
    }

    .fa-download,
    .fa-display,
    .fa-youtube {
        font-size: 40px;
        margin: 20px auto;
    }

    .card-service .back h2 {
        font-size: 20px;
        margin-top: 20px;
        letter-spacing: 0;
    }

    .card-service .back p {
        font-size: 14px;
    }
}

/* ------------------------------------------------------------ */
/* ---------------------------- PLANS ------------------------- */
/* ------------------------------------------------------------ */

.plans {
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}

.content-title {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.content-title .border-title {
    width: 50%;
    height: 3px;
    margin: 20px auto;
    background-color: #1B2D32;
}

input {
    display: none;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    margin-top: 100px;
}

/* .plans .container .cards {
    position: relative;
    width: 100%;
    height: 100vh;
    display: grid;
    flex-direction: column;
    grid-template-columns: auto auto auto;
    margin-bottom: 20px;
    perspective: 1000px;
    transform-style: preserve-3d;
} */

.infos .title {
    font-family: 'Montserrat';
    font-weight: bold;
    color: #D2C7AB;
    letter-spacing: 8px;
    padding: 20px 0;
}

.plans .container .cards .card-item p {
    padding: 40px;
    border: 2px solid #1B2D32;
    border-radius: 16px;
}

.plans .container .cards {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    margin-bottom: 20px;
}

.cards .card-img {
    display: flex;
    justify-content: space-between;
}

.cards .card-img img {
    border-radius: 5px;
    margin: auto;
    width: 350px;
    height: 350px;
    object-fit: cover;
    display: inline-block;
    animation: float 5s ease-in-out infinite;
    cursor: pointer;
    transition: all .7s;
}

.cards .card-img img:hover {
    width: 400px;
    height: 400px;
}

.plans .cards .card-cold {
    position: relative;
    height: 100%;
    background-color: #323444;
    border-radius: 10px;
    padding: 30px 35px;
}

.cards .btn-details {
    width: 100%;
    height: 60px;
    margin: 35px auto;
    border-radius: 5px;
    background-color: #1B2D32;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D2C7AB;
    font-size: 25px;
    font-weight: 700;
    transition: all .7s ease;
}

.cards .btn-details .line {
    width: 5px;
    height: 40px;
    background-color: #D2C7AB;
    margin: 20px;
}

.icon-space {
    display: flex;
    transition: all .5s;
}

.icon-space .box-bars div {
    margin: 4px;
}

.icon-space .bar-1 {
    width: 20px;
    height: 2px;
    background-color: #D2C7AB;
}
.icon-space .bar-2 {
    width: 10px;
    height: 2px;
    background-color: #D2C7AB;
}
.icon-space .bar-3 {
    width: 20px;
    height: 2px;
    background-color: #D2C7AB;
}

.cards .btn-details:hover .icon-space {
    margin-left: 20px;
}

.card-cold .list li {
    padding: 10px;
    color: #fff
}

.fa-jet-fighter-up,
.fa-user-lock,
.fa-handshake {
    margin: 0 10px;
    font-size: 25px;
    color: #D2C7AB;
}

.content-subtext {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.fa-user-astronaut {
    color: #fff;
    font-size: 30px;
}

.subtext {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: auto 5px;
    color: #C3C3C3;
}

/* .plans .cards label {
    position: absolute;
    width: 450px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.55s ease;
} */

/* .plans .cards .card-cold {
    position: relative;
    height: 100%;
    background-color: #323444;
    border-radius: 10px;
    padding: 30px 35px;
} */

/* .cards .cold {
    display: flex;
    justify-content: space-between;
} */

/* .cards .cold,
.cards .cold img {
    border-radius: 5px;
    margin-top: 23px;
    width: 86%;
    height: 220px;
    object-fit: cover;
    transition: all .7s;
} */

/* .cards .cold:hover,
.cards .cold img:hover {
    transform: scale(1.05);
} */

/* .cards .infos {
    display: block;
    text-align: end;
    padding-top: 60px;
} */

/* .cards .infos span {
    display: block;
} */

/* .infos .title {
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 30px;
    color: var(--current-color1);
    letter-spacing: 8px;
    margin-left: 25%;
    transition: all .6s ease;
} */

/* .infos .subtitle {
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 20px;
    color: var(--current-color1);
    letter-spacing: 4px;
    margin-bottom: 50px;
    margin-left: 40%;
    display: flex;
    transition: all .6s ease;
} */

/* .infos .subtitle .bar {
    width: 2px;
    height: 30px;
    background-color: #D2C7AB;
    margin: 0px 10px;
    transform: rotate(20deg);
} */

/* .card-cold .btn-details:hover {
    transform: scale(1.09);
} */

/* #s1:checked~.cards #slaider1,
#s2:checked~.cards #slaider2,
#s3:checked~.cards #slaider3 {
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    transform: translate3d(0, 0, 0);
    --current-color1: #D2C7AB;
    --current-color2: #B3AFB8;
} */

/* #s1:checked~.cards #slaider2,
#s2:checked~.cards #slaider3,
#s3:checked~.cards #slaider1 {
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transform: translate3d(-70%, 0, -220px);
    --current-color1: #B3AFB8;
    --current-color2: #404457;
} */

/* #s1:checked~.cards #slaider3,
#s2:checked~.cards #slaider1,
#s3:checked~.cards #slaider2 {
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transform: translate3d(70%, 0, -220px);
    --current-color1: #B3AFB8;
    --current-color2: #E94C4D;
} */

/* ------------------------------------------------------------ */
/* ----------------------- PLANS RESPONSIVE ------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1000px) {
    .container {
        width: 100%;
        margin-top: 50px;
        margin-left: 2%;
        overflow: hidden;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 380px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 300px;
        height: 300px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 28px;
        letter-spacing: 1px;
        margin-left: -10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-left: 40%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 30px;
    }

    .card-cold .list {
        width: 100%;
        font-size: 16px;
        margin-left: 0%;
        color: #fff
    }

    .card-cold .btn-details {
        width: 250px;
        height: 35px;
        margin: 20px auto;
        margin-left: 5%;
        font-size: 20px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

@media screen and (max-width: 920px) {
    .container {
        width: 100%;
        margin-top: 100px;
        margin-left: 10%;
        overflow: hidden;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 380px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 300px;
        height: 300px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 28px;
        letter-spacing: 1px;
        margin-left: -10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-left: 40%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 30px;
    }

    .card-cold .list {
        width: 100%;
        font-size: 16px;
        margin-left: 0%;
        color: #fff
    }

    .card-cold .btn-details {
        width: 250px;
        height: 35px;
        margin: 20px auto;
        margin-left: 5%;
        font-size: 20px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

@media screen and (max-width: 900px) {
    .container {
        width: 100%;
        margin-top: 100px;
        margin-left: 5%;
        overflow: hidden;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 380px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 300px;
        height: 300px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 28px;
        letter-spacing: 1px;
        margin-left: -10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-left: 40%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 30px;
    }

    .card-cold .list {
        width: 100%;
        font-size: 16px;
        margin-left: 0%;
        color: #fff
    }

    .card-cold .btn-details {
        width: 250px;
        height: 35px;
        margin: 20px auto;
        margin-left: 5%;
        font-size: 20px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

@media screen and (max-width: 800px) {
    .container {
        margin-top: 50px;
        margin-left: -1%;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 350px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 300px;
        height: 300px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 28px;
        letter-spacing: 1px;
        margin-left: -10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-left: 40%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 30px;
    }

    .card-cold .list {
        width: 100%;
        font-size: 16px;
        margin-left: 0%;
        color: #fff
    }

    .card-cold .btn-details {
        width: 250px;
        height: 35px;
        margin: 20px auto;
        margin-left: 5%;
        font-size: 20px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

@media screen and (max-width: 600px) {
    .container {
        margin-top: 50px;
        margin-left: 0%;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 200px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 120px;
        height: 120px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-left: 10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-left: 16%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 20px;
    }

    .card-cold .list {
        width: 180px;
        font-size: 10px;
        margin-left: -25%;
        color: #fff
    }

    .card-cold .btn-details {
        width: 150px;
        height: 35px;
        margin: 20px auto;
        margin-left: -5%;
        font-size: 12px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

@media screen and (height: 740px) {
    .container {
        margin-top: 50px;
        margin-left: 0;
    }

    .plans .container .cards {
        perspective: 800px;
    }

    .plans .cards label {
        position: absolute;
        width: 180px;
    }

    .cards .cold,
    .cards .cold img {
        margin-top: 0px;
        width: 120px;
        height: 120px;
    }

    .cards .infos {
        padding-top: 10px;
    }

    .infos .title {
        width: 100%;
        font-size: 20px;
        letter-spacing: 1px;
        margin-left: 10%;
    }

    .infos .subtitle {
        width: 100%;
        font-size: 10px;
        letter-spacing: 0px;
        margin-bottom: 20px;
        margin-left: 16%;
    }

    .infos .subtitle .bar {
        width: 2px;
        height: 16px;
    }

    .card-cold .list {
        width: 180px;
        font-size: 10px;
        margin-left: -42%;
        list-style: none;
        color: #fff
    }

    .card-cold .btn-details {
        width: 150px;
        height: 35px;
        margin: 20px auto;
        margin-left: -16%;
        font-size: 12px;
        font-weight: bold;
        transition: all .7s ease;
    }
}

/* ------------------------------------------------------------ */
/* -------------------------- QUESTIONS ----------------------- */
/* ------------------------------------------------------------ */

.quiestions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
}

.container-quest {
    width: 80%;
    height: 700px;
    display: flex;
    border: 2px solid #1B2D32;
    border-radius: 16px;
    background-color: #A7A164;
}

.container-quest .content-title {
    width: 20%;
    text-align: center;
    margin-left: -20px;
    margin-top: 200px;
}

.container-quest .content-title .title-quest {
    width: 300px;
    position: relative;
    z-index: 100;
}

.sub {
    width: 400px;
    height: 50px;
    background-color: #1D3B43;
    opacity: .7;
    margin-left: -55px;
    margin-top: -75px;
}

.container-quest .container-cards {
    width: 50%;
    transform: translateX(100px);
}

.container-quest .container-cards .card {
    width: 300px;
    height: 450px;
    border: 2px solid #1B2D32;
    border-radius: 8px;
    color: #1B2D32;
}

.container-quest .container-cards .card h4 {
    text-align: center;
    margin-top: -50px;
    margin-bottom: 20px;
}

.text-card {
    width: 250px;
    font-size: 12px;
    margin: 10px auto;
}

.container-quest .container-cards .item-1 {
    margin-top: 200px;
    margin-left: -200px;
    transform: rotate(-45deg);
    background-color: #dadada;
    z-index: 5;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-1:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-1:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
}

.container-quest .container-cards .item-2 {
    margin-top: -600px;
    margin-left: -40px;
    transform: rotate(-20deg);
    background-color: #6E6E6E;
    z-index: 3;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-2:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-2:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
    z-index: 5;
}

.container-quest .container-cards .item-3 {
    margin-top: -500px;
    margin-left: 150px;
    transform: rotate(20deg);
    background-color: #888888;
    z-index: 4;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-3:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-3:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
    z-index: 5;
}

.container-quest .container-cards .item-4 {
    margin-top: -400px;
    margin-left: 250px;
    transform: rotate(40deg);
    background-color: #C3C3C3;
    z-index: 4;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-4:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-4:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
    z-index: 5;
}

.container-quest .container-cards .item-5 {
    margin-top: -200px;
    margin-left: 120px;
    transform: rotate(20deg);
    background-color: #D9D9D9;
    z-index: 4;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-5:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-5:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
    z-index: 5;
}

.container-quest .container-cards .item-6 {
    margin-top: -220px;
    margin-left: 100px;
    transform: rotate(-10deg);
    background-color: #D9D9D9;
    z-index: 4;
    transition: all .5s;
    cursor: pointer;
}

.container-quest .container-cards .item-6:hover p {
    font-size: 16px;
}

.container-quest .container-cards .item-6:hover {
    transform: rotate(0);
    width: 350px;
    height: 500px;
    background-color: #fff;
    z-index: 5;
}

.border-text {
    width: 200px;
    height: 3px;
    background-color: #1B2D32;
    margin: auto;
}

/* ------------------------------------------------------------ */
/* --------------------- QUESTIONS RESPONSIVE ----------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    .quiestions {
        margin-top: 180px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 350px;
        height: 450px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .text-card {
        width: 300px;
        font-size: 16px;
        margin: 20px 30px;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 150px;
        margin-left: -400px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 350px;
        height: 450px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -550px;
        margin-left: -100px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 350px;
        height: 450px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -450px;
        margin-left: 200px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 350px;
        height: 450px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -300px;
        margin-left: 150px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 350px;
        height: 450px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -400px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 350px;
        height: 450px;
    }
}

@media screen and (max-width: 1024px) {
    .quiestions {
        margin-top: 180px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 250px;
        height: 350px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .text-card {
        width: 200px;
        font-size: 14px;
        margin: 10px auto;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 150px;
        margin-left: -300px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -400px;
        margin-left: -100px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -250px;
        margin-left: -15px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -180px;
        margin-left: 100px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -350px;
        margin-left: -100px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }
}

@media screen and (max-width: 900px) {
    .quiestions {
        margin-top: -250px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 250px;
        height: 350px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .text-card {
        width: 200px;
        font-size: 14px;
        margin: 10px auto;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 150px;
        margin-left: -300px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -400px;
        margin-left: -100px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -250px;
        margin-left: -15px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -180px;
        margin-left: 100px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -350px;
        margin-left: -100px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 250px;
        height: 350px;
    }
}

@media screen and (max-width: 600px) {
    .quiestions {
        margin-top: -300px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 200px;
        height: 250px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .text-card {
        width: 150px;
        font-size: 12px;
        margin: 5px auto;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -350px;
        margin-left: -80px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -200px;
        margin-left: -15px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -40px;
        margin-left: -20px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }
}

@media screen and (max-width: 400px) {
    .quiestions {
        margin-top: -50px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 200px;
        height: 250px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .text-card {
        width: 150px;
        font-size: 12px;
        margin: 5px auto;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -350px;
        margin-left: -80px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -200px;
        margin-left: -15px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -40px;
        margin-left: -20px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }
}

@media screen and (width: 344px) {
    .quiestions {
        margin-top: -350px;
        overflow: hidden;
    }

    .container-quest .content-title {
        margin-left: -20px;
        margin-top: 0px;
    }

    .sub {
        height: 35px;
        margin-top: -55px;
    }

    .container-quest .container-cards {
        width: 50%;
        transform: translateX(0);
    }

    .container-quest .container-cards .card {
        width: 200px;
        height: 250px;
        border: 2px solid #1B2D32;
        border-radius: 8px;
        color: #1B2D32;
    }

    .border-text {
        display: none;
    }

    .container-quest .container-cards .card h4 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .text-card {
        width: 150px;
        font-size: 12px;
        margin: 5px auto;
    }

    .container-quest .container-cards .item-1 {
        margin-top: 200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-1:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-2 {
        margin-top: -350px;
        margin-left: -80px;
        transform: rotate(-20deg);
    }

    .container-quest .container-cards .item-2:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-3 {
        margin-top: -200px;
        margin-left: -15px;
    }

    .container-quest .container-cards .item-3:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-4 {
        margin-top: -40px;
        margin-left: -20px;
    }

    .container-quest .container-cards .item-4:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }

    .container-quest .container-cards .item-5 {
        margin-top: -200px;
        margin-left: -150px;
    }

    .container-quest .container-cards .item-5:hover {
        transform: rotate(0);
        width: 200px;
        height: 250px;
    }
}

/* ------------------------------------------------------------ */
/* ---------------------------- CONECT ------------------------ */
/* ------------------------------------------------------------ */

.container-contact {
    width: 100%;
    display: flex;
    margin-top: 100px;
}

.container-form {
    width: 90%;
    margin-left: 100px;
}

.contact-title {
    width: 100%;
    margin: 50px;
}

.form input,
.form textarea {
    background-color: transparent;
    border: 2px solid #1B2D32;
}

.fa-envelope,
.fa-mobile-screen-button,
.fa-pen-nib {
    font-size: 20px;
    float: right;
    margin-right: 20px;
    margin-top: -28px;
    color: #1B2D32;
}

.btn-contact {
    width: 100%;
    height: 60px;
    margin: 35px auto;
    border-radius: 5px;
    background-color: #1B2D32;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D2C7AB;
    font-size: 25px;
    font-weight: 700;
    transition: all .7s ease;
}

.btn-contact .line {
    width: 5px;
    height: 40px;
    background-color: #D2C7AB;
    margin: 20px;
}

.btn-contact .fa-meteor {
    font-size: 30px;
    transform: rotate(-140deg);
    transition: all .5s;
}

.btn-contact:hover .fa-meteor {
    font-size: 35px;
    margin-left: 50px;
    transform: rotate(-150deg);
}

.conect-img {
    width: 50%;
    margin-left: -300px;
}

.conect-img img {
    width: 600px;
    object-fit: cover;
    display: inline-block;
    animation: float 5s ease-in-out infinite;
}


/* ------------------------------------------------------------ */
/* ---------------------------- FOOTER ------------------------ */
/* ------------------------------------------------------------ */

footer {
    width: 100%;
    height: 400px;
    margin-top: 210px;
    background-color: #1D3B43;
}

.container-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-icon-footer {
    width: 50%;
}

.content-text-code {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.content-text-code ul {
    display: grid;
    flex-direction: column;
    grid-template-columns: auto auto;
    gap: 20px;
}

.content-text-code li {
    padding: 5px;
    list-style: none;
}

.content-text-code li a {
    color: #fff;
}

.sesgo-footer {
    position: absolute;
    width: 100%;
    height: 400px;
    margin-top: -1px;
    background-color: #D2C7AB;
    clip-path: polygon(20% 16%, 0 0, 100% 0);
    z-index: 100;
}

.img-footer {
    width: 50%;
    display: flex;
}

.img-footer img {
    width: 150px;
    object-fit: cover;
    margin-top: 120px;
    margin-left: 100px;
}

.title-footer {
    width: 150px;
    display: flex;
    margin-left: 220px;
    margin-top: -80px;
    border-bottom: 4px solid #A7A164;
}

.title-footer h5 {
    margin: 5px;
}

.copyright {
    display: flex;
    margin-top: -20px;
    margin-left: 100px;
}

.fa-copyright {
    font-size: 20px;
    color: #fff;
    margin: 10px;
}

.copy {
    color: #fff;
    margin: 5px 0;
}

.title-mate {
    font-weight: bold;
    color: #fff;
    margin: 5px 10px;
}

.border-bottom-footer {
    margin: 40px 100px;
    border-bottom: 2px solid #A7A164;
}

/* ------------------------------------------------------------ */
/* ----------------------- FOOTER RESPONSIVE ------------------ */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1024px) {
    footer {
        width: 100%;
        height: 400px;
        margin-top: 210px;
        background-color: #1D3B43;
    }

    .sesgo-footer {
        position: absolute;
        width: 100%;
        height: 400px;
        margin-top: -1px;
        background-color: #D2C7AB;
        clip-path: polygon(20% 10%, 0 0, 100% 0);
        z-index: 100;
    }

    .img-footer img {
        width: 100px;
        margin-left: 50px;
    }

    .title-footer {
        width: 150px;
        margin-left: 130px;
        margin-top: -55px;
    }
    
    .sesgo-vertical {
        display: none;
    }

    .border-bottom-footer {
        width: 90%;
        margin: 0px 30px;
        border-bottom: 2px solid #A7A164;
    }

    .copyright {
        display: flex;
        margin-top: 0px;
        margin-left: 50px;
        transform: translateY(180%);
    }
}

@media screen and (max-width: 600px) {
    footer {
        width: 100%;
        height: 400px;
        margin-top: 210px;
        background-color: #1D3B43;
    }

    .sesgo-footer {
        position: absolute;
        width: 100%;
        height: 400px;
        margin-top: -1px;
        background-color: #D2C7AB;
        clip-path: polygon(20% 10%, 0 0, 100% 0);
        z-index: 100;
    }

    .img-footer img {
        width: 80px;
        margin-left: 10px;
    }

    .title-footer {
        width: 150px;
        margin-left: 80px;
        margin-top: -50px;
    }
    
    .sesgo-vertical {
        display: none;
    }

    .border-bottom-footer {
        width: 80%;
        margin: 0px 10px;
        border-bottom: 2px solid #A7A164;
    }

    .copyright {
        display: flex;
        margin-top: 0px;
        margin-left: 0px;
        transform: translateY(180%);
    }
}