html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', 'sans-serif';
    font-size: 1rem;
    color: #393a3b
}

/*Globales */

a {
    text-decoration: none;
    color: #393a3b;
}

ul, li {
    list-style: none;
    margin: 0 ;
}

h2 {
    text-align: center;
    color: #0E3F60;
    font-size: 2.5rem;
    padding-top: 2rem;
    margin-bottom: 0;
}

h3 {
    text-align: center;
    margin: 1rem 0;
    color: #393a3b;
}

h5 {
    color: #EE8E1D;
    font-size: 1.5rem;
    margin: 0;
}

hr {
    text-align: center;
    width: 5rem;
    border: .1rem solid #EE8E1D;
    background-color: #EE8E1D; 
    border-radius: 1rem;
    padding: 0;
    margin-bottom: 2rem;
}


@media(min-width: 320px) {

    .banner-title {
        background: linear-gradient(50deg, #1f54af, #007bcd);
        height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .banner-title h2 {
        display: block;
        color: #fff;
        margin: 0;
    }
}

@media(min-width: 1024px) {

    .banner-title {
        height: 30vh;
    }
}


/*** menu ***/

.main-nav img {
    max-width: 100%;
}
.main-banner {
    display: block;
    width: 100vw;
    height: 60vw;
    max-height: 560px;
    overflow: hidden;
    margin-top: 96px;
}

.main-banner > .slider {
    display: flex;
    width: 400vw;
    height: calc(100% - 80px);
}

.main-banner > .slider > .img-banner {
    width: 100vw;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.img-banner a {
    display: none;
}

.slider > .img-banner:nth-child(1) {
    background-image: url("../img/banner-contratacion.png");
    display: block;
}

.slider > .img-banner:nth-child(2) {
    background-image: url("../img/planes-hosting.png");
    display: block;
}

.slider > .img-banner:nth-child(3) {
    background-image: url("../img/tienes-hosting.png");
    display: block;
}

.slider > .img-banner:nth-child(4) {
    background-image: url("../img/soporte-tecnico.png");
    display: block;
}

.img-banner a:hover{
    background-color: #EE8E1D;
    cursor: pointer;
}

.main-banner .option {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;   
}

.option .selection {
    list-style: none;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    background-color: #c5c5c5;
    border-radius: 10rem ;
}

.option .selection.active {
    background-color:#115080;
}


@media(min-width: 320px) {
    .main-nav {
        width: 100%;
        height: 4rem;
        background-color: #ffff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        padding: 1rem 0;
        z-index: 1000;
        top: 0;
    }

    .main-nav .nav-link {
        background-color: #ffff;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        color: #0E3F60;
        font-weight: 400;
        font-size: 1.1rem;
        padding: 1rem 0;
        position: absolute;
        z-index: 1;
        top: 6rem;
        width: 100%;
        align-items: center;
        opacity: 0.8;

        left: 100%;
        transition: left 0.4s;
    }

    .nav-link.active {
        left: 0;
    }

    .main-nav a {
        padding: .4rem 0;
    }

    .main-nav .logo {
        display: flex;
        width: 60%;
    }

    .main-nav .logo img {
        width: 80%;
    }
    
    .main-nav .nav-responsive {
        padding: 1rem;
        border: none;
        background: none;
        font-size: 2rem;
        color: #0E3F60;
        display: block;
        cursor: pointer;
    }
}

@media(min-width: 638px) {

    .img-banner a {
        display: block;
        background-color: #e68f2c;
        padding: 0.8rem 1.5rem;
        border-radius: 2rem;
        color: #fff;
        font-size: 1rem;
        position: absolute;
        left: calc((100vw - 1024px)/2 + 250px);
        bottom: 10px;
    }
}

@media(min-width:768px) {
    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav .logo img {
        max-width: 80%;
    }

    .img-banner a {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
        left: calc((100vw - 1024px)/2 + 200px);
        bottom: 32px;
    }
}

@media (min-width:1024px) {
    .main-nav {
        padding: 1rem 0;
        position: static;
    }

    .main-nav .nav-responsive {
        display: none;
    }

    .main-nav .nav-link {
        background-color: #ffff;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        position: static;
    }

    .main-nav .logo {
        display: flex;
        justify-content: center;
        width: 35%;
        padding-left: .5rem;
    }

    .main-banner {
        margin-top: 0;
    }

    .main-banner > .slider > .img-banner {
        background-size: auto 100%;
        background-position: center center;
    }
}

@media (min-width: 1200px) {
    .main-nav a {
        font-size: 1.2rem;
    }
}

@media (min-width: 1600px) {
    .main-nav a {
        text-align: left;
    }

    .main-nav .logo {
        justify-content: center;
        width: 30%;
        padding-top: .5rem;
    }
}


/* Container-plans*/

@media (min-width: 320px) {
    .list-plans {
        padding: 0 2rem;
    }
    
    .list-plans .plan {
        text-align: center;
        padding: .5rem;
        border-radius: 1.5rem;
        box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -webkit-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -moz-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        margin: 1.5rem;
    }
    
    .plan:hover {
        box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.5);
        transform: translateY(-3%);
    }
    
    .plan img {
        width: 30%;
        align-items: center;
    }
    
    .plan h3 {
        font-size: 1.5rem;
    }
    
    .plan p {
        text-align: justify;
        padding: 0 1.5rem;
    }
}

@media (min-width:768px) {

    .list-plans {
        padding: 0 2rem;
    }
    
    .list-plans .plan {
        text-align: center;
        padding: 1rem;
        border-radius: 1.5rem;
        box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -webkit-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -moz-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        margin: 1.5rem;
    }
    
    .plan:hover {
        box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.5);
        transform: translateY(-3%);
    }
    
    .plan img {
        width: 30%;
        align-items: center;
    }
    
    .plan h3 {
        font-size: 1.5rem;
    }
    
    .plan p {
        text-align: justify;
        padding: 0 2rem;
    }
}

@media (min-width:1024px) {
    .list-plans{
        display: flex;
        padding: 0 1rem;
    }

    .list-plans .plan {
        block-size: auto;
    }

    .plan img {
        width: 20%;
    }

    .plan p {
        padding: 0 1rem;
    }
}

@media(min-width: 1600px) {

    #plans {
        padding: 0 100px;
    }

    .plan p {
        padding: 0 3rem;
        font-size: 1.2rem;
    }
}

.plan img {
    width: 60%;
}

/*Comparation-plans*/

@media(min-width: 320px){

    .comparation-plans {
        background-color: rgb(247, 247, 247);
        padding-bottom: 3rem;
    }

    .table {
        background: #ffff;
        border-collapse: collapse;
        text-align: left;
        font-size: 0.2rem;
        border-radius: 1.2rem;
        box-shadow: 2px 0px 26px -13px rgba(0,0,0,0.3);
        -webkit-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -moz-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        
    }

    #cpanel, #sincpanel, #emails{
        overflow-x: scroll;
        display: flex;
    }

    #emails {
        width: 100%;
    }
    
    #emails .table{
        width: 70%;
        font-size: .5rem;
    }

    .table td {
        padding: .5rem;
        text-align: center;
        font-size: 1rem;
    }

    .table .price {
        color: #e68f2c;
        font-weight: 600;
    }

    .table .head, .head-first {
        color: #0E3F60;
        font-weight: bold;
        text-align: left !important;
    }

    #emails {
        display: none;
    }
}

@media(min-width: 425px){

    #cpanel, #sincpanel, #emails{
        overflow-x: hidden;
        display: flex;
        justify-content: center;
    }

    .table td {
        padding: .8rem;
    }
}

@media(min-width: 768px){

    .table {
        background: #ffff;
        border-collapse: collapse;
        text-align: left;
        font-size: 0.5rem;
        border-radius: 1.5rem;
        box-shadow: 2px 0px 26px -13px rgba(0,0,0,0.3);
        -webkit-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
        -moz-box-shadow: 10px 10px 26px -13px rgba(0,0,0,0.2);
    }

    .table td {
        padding: 1rem;
        text-align: center;
        font-size: 1.1rem;
    }

    .table .head, .head-first {
        color: #0E3F60;
        font-weight: bold;
        text-align: left !important;
    }

}

@media(min-width:1024px){

    .table {
        font-size: 1.2rem;
        text-align: left;
    }
}

@media(min-width:1200px){

    .table {
        width: auto;
    }

    .table td {
        font-size: 1.2rem;
    }
}

@media(min-width:1600px){
    
    .table td {
        padding: 1.5rem;
        text-align: center;
    }
}

#sincpanel, #emails {
    display: none;
}

.options-plans {
    display: flex;
    justify-content: center;
    margin: 3rem 0 1.5rem 0;
    font-size: 1.2rem;
}

.options-plans a {
    padding: 0 1rem;
    color: #EE8E1D;
}

.options-plans .btn-plans {
    all: unset;
    display: inline-block;
    position: relative;
    margin: 0 1rem;
    cursor: pointer;
}

.btn-plans:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #EE8E1D;
    transform: scaleX(0);
    transform-origin:bottom right;
    transition: transform 0.6s ease-out;
}

button:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

td {
    padding: 1.5rem;
}

.head td{
    border-bottom: 0.05rem solid #d2d5d6;
}

.head-first {
    border-right: 0.05rem solid #d2d5d6;
}


/*Benefits*/

#benefits {
    margin-bottom: 2rem;
}

@media(min-width:768px){

    #benefits {
        padding-bottom: 4rem;
    }

    .list-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 2rem;
    }
}

@media(min-width:1200px){

    .list-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media(min-width:1600px){

    #benefits {
        padding: 0 100px;
    }

    .list-benefits {
        gap: 3rem;
    }
}

.list-benefits p {
    padding: 0 1.5rem;
    text-align: justify;
    
}

.list-benefits i {
    font-size: 6rem;
    display: flex;
    justify-content: center;
    color: #EE8E1D;
    margin: 2rem 0;

}

.benefits {
    margin: 0 1rem;
}

/* Carrusel-plans */

.carrousel-plans {
    overflow: hidden;
    background-color: #0E3F60;
    padding-bottom: 2rem;
}

.carrousel-plans h2 {
    color: rgb(239, 238, 238);
}

.carrousel-container {
    width: 300%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

    transition: all .5s ease;
    transform: translateX(0%);
}

.carrousel-container img {
    height: 8rem;
    display: block;
    margin: 0 auto;
    padding: 1rem 0;
    overflow-x: scroll;
}

.card-plan {
    width: 100%;
    padding-bottom: 2rem;
    color: #ffff;
}

.card-plan h3{
    color: #ffff;
    font-size: 1.3rem;
}

.card-plan p {
    margin: 0 auto;
    text-align: justify;
    width: 50%;
}

.points {
    width: 100%;
    background-color: #0E3F60;
    padding: 1rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.point {
    list-style: none;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    background-color: #ffff;
    border-radius: 10rem ;
}

.point.active{
    background-color: #EE8E1D;
}

@media(min-width: 1600px) {

    .card-plan p {
        text-align: center;
    }
}

/*Additional service*/

@media(min-width: 320px) {

    .additional-service {
        display: flex;
        flex-direction: column;
        padding: 0 2rem;
        text-align: justify;
    }

    .additional-service .card-service .open {
        color: #0071bc;
        font-weight: 600;
    }

    .btn-accion {
        display: block;
        text-transform: uppercase;
        font-weight: 900;
        padding: 1rem;
        transition:background-color .3s ease-out ;
        text-align: center ;
        border-radius: 3rem;
        width: 50%;
        margin: 2rem auto;
        background-color: #EE8E1D;
    }

    .card-service .modal {
        background-color: rgb(144, 148, 150, 0.8);
        position: fixed;
        width: 100%;
        height: 100px;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 100; /* //sobre los elementos/ */
    }

    .modal .modal-content {
        margin: 0 auto;
        width: 90%;
        height: 70%;
        padding: 2rem 1.8rem;
        background-color: #fff;
        border-radius: 1rem;
        overflow-y: scroll;
    }

    .additional-service .card-service {
        padding: 1rem 0;
    }
}

@media(min-width: 768px) {

    .additional-service {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 2rem;
        padding: 0 2rem;
        text-align: justify;
    }

    .additional-service .card-service {
        padding: 1rem 1.5rem;
    }

    .btn-accion {
        width: 20%;
    }

    .modal .modal-content {
        height: auto;
        overflow-y: hidden;
    }
}

@media(min-width: 1200px) {

    .modal .modal-content {
        padding: 2rem 3rem;
    }
}

@media(min-width: 1600px) {

    #service {
        padding: 0 80px;
    }

    .modal .modal-content {
        padding: 3rem 4rem;
        font-size: 1.1rem;
    }

    .additional-service {
        padding: 0 4rem;
    }
}

.additional-service .card-service i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: #EE8E1D;
    margin: 1.5rem 0;
}

.show-text li{
    list-style: disc;
    padding: 0.3rem 0;
}

.card-service .modal {
    background-color: rgb(144, 148, 150, 0.8);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100; /* //sobre los elementos/ */
}

.card-service p {
    margin-bottom: 2rem;
}

.card-service a:hover{
    border-bottom: .1rem solid #115080;
}

.modal .modal-content .btn-close {
    display: flex;
    justify-content: flex-end;
}

.modal .modal-content .btn-close .close {
    background-color: #EE8E1D;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    color: #fff;
}

.modal .modal-content .btn-close .close:hover {
    background-color: #e68b23;
    border: none;
}

.btn-accion a {
    color: #ffff;
    text-align: center;
}

.btn-accion:hover {
    background-color: #e68f2c;
}


/*Site-footer*/

@media(min-width: 320px){

    .container {
        display: flex;
        flex-direction: column;
        padding: 1rem 1.5rem;
        color: #d2d5d6;
    }

    .copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0C385A;
        height: 5rem;
        color: #ffff;
    }

    .copyright p {
        margin: 0;
        text-align: center;
        color: #ffff;
    }

    .copyright a{
        color: #ffff;
    }

    .container .blinhost img {
        width: 70%;
    }
}

@media(min-width:768px){

    .copyright {
        height: 3rem;
    }

    .container {
        padding: 1rem;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .site-footer .container img {
        margin: .5 0;
        width: 100%;
        height: auto;
    }

    .blinhost:nth-child(1)  p {
        margin: 0;
        grid-column-start: 1;
        grid-column-end: 2;
        color: #ffff;
        font-size: 1rem;
        text-align: justify;
        padding: 1rem ;
    }

    .item-contacts:nth-child(2) {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        grid-column-start: 2;
        grid-column-end: 3;
        color: #ffff;
        text-align: left;
    }

    .item-business:nth-child(3) {
        grid-column-start: 3;
        grid-column-end: 4;
        color: #ffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

}

@media(min-width:1200px){

    .site-footer .container img {
        margin: .5 0;
        width: 80%;
    }
}

@media(min-width:1600px){

    .container {
        padding: 2rem;
        gap: 2rem;
    }

    .site-footer .blinhost img {
        width: 70%;
        height: auto;
    }
   
    .blinhost:nth-child(1)  p {
        padding: 0 1.5rem;
    }

}

.site-footer {
    background-color: #0E3F60;
    text-align: justify;
}

.site-footer .container h3 {
    color: #fff;
}

.site-footer img {
    max-width: 100%;
    height: auto;
}


.item-contacts .contacts {
    padding-top: 0.5rem ;
}

.contacts a {
    display: block;
    justify-content: left;
    color: #ffff;
    padding-bottom: 1rem;
}

.item-contacts h3 {
    margin: 2rem 0;
    text-align: left;
}


.item-business h3 {
    margin: 2rem 0;
    text-align: left;
}

.business a {
    display: block;
    justify-content: left;
    color: #ffff;
    padding-bottom: 1rem;
}

.item-business .business {
    padding-top: 0.5rem ;
}


/* ### Nosotros ### */

.main-first {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

@media(min-width: 320px) {

    .description {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: .5fr 2fr .5fr;
    }

    .description:nth-child(2) p {
        grid-column-start: 2;
        grid-column-end: 3;
        font-size: 1rem;
        text-align: justify;
    }
}

@media(min-width: 768px) {

    .description {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .description:nth-child(2) p {
        font-size: 1.1rem;
    }
}

@media(min-width: 1024px) {

    .main-first {
        margin-top: 0;
    }
}


/* ### Preguntas frecuentes ### */

.acordeon-content {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr;
}

.acordeon-content:nth-child(2) .row-content {
    border-radius: 1.2rem;
    -webkit-box-shadow: 12px 2px 20px 0px rgba(135,131,135,0.42);
    -moz-box-shadow: 12px 2px 20px 0px rgba(135,131,135,0.42);
    box-shadow: 12px 2px 20px 0px rgba(135,131,135,0.42);
    grid-column-start: 2;
    grid-column-end: 3;
    padding: 0 2rem;
    text-align: justify;
}

.row-content {
    margin-bottom: 0.5rem;
}

.row-content .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.row-content .response {
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: all .8s ease;
}

.acordeon-content .row-content.active .response {
    height: auto;
    border-top: 0.07rem solid #0E3F60;
}

.response li {
    list-style-type: disc;
    padding: 0.3rem 0;
}

@media(min-width: 320px) {

    .acordeon {
        padding-top: 6rem;
    }
}

@media(min-width: 1024px) {

    .acordeon {
        padding-top: 0;
    }
}

/* ### Servicio al cliente ### */

.content-main {
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.content-service {
    display: grid;
    margin: 4rem 0;
    grid-template-columns: 0.5fr 2fr 0.5fr;
} 

.content-service:nth-child(2) .text,  li {
    grid-column-start: 2;
    grid-column-end: 3;
    list-style: disc;
    text-align: justify;
}

.list-contact .list-card i{
    color: #EE8E1D;
    font-size: 1.5rem;
    padding-right: 1rem;
}

.list-contact .list-card .card {
    padding: .4rem;
}

/* ### Formulario ### */

.form-contact {
    margin-top: 4rem;
}

.form-content .text-contact img {
    display: block;
    margin: auto;
    width: 500px;
}

.form-content .formulary .form {
    width: 60%;
    display: flex;
    flex-direction: column;
    border-radius: 1.2rem;
    padding: 2rem 3rem;
    -webkit-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 15px -6px rgba(0,0,0,0.75);
}

.form input::placeholder {
    font-family: 'DM Sans', 'sans-serif';
    color: #afb4b5;
    text-align: left;
    padding-bottom: 1rem;
}

.form textarea::placeholder {
    font-family: 'DM Sans', 'sans-serif';
    color: #afb4b5;
    padding-bottom: 0;
}

.form-content input:focus {
    outline: none;
    color: #393a3b;
}

.form-content select:focus {
    outline: none;
}

.form-content textarea:focus {
    outline: none;
}

.form input, select {
    justify-content: center;
    align-items: center;
    border: none;
    border-bottom: 0.1rem solid #afb4b5;
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    margin-right: 0;
    color: #393a3b;
}

.form select {
    color: #afb4b5;
    padding-bottom: 1rem;
}

.form option {
    color: #393a3b;
    padding-bottom: 1rem;
}

.form textarea {
    border: none;
    border-bottom: 0.1rem solid #afb4b5;
    font-size: 1rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 0;
    color: #393a3b;
    font-family: 'DM Sans', 'sans-serif';
}

.form .send {
    display: flex;
    justify-content: center;
    color: #ffff;
    font-size: 1rem;
    font-weight: bold;
    margin: 2rem 0;
    padding: 0.8rem 4.5rem;
    border: none;
    background-color: #EE8E1D;
    transition:background-color .3s ease-out;
}

.form .send:hover {
    background-color: #e68f2c;
    cursor: pointer;
}


@media(min-width: 320px) {

    .form-content {
        flex-direction: column;
        padding: 2rem 2rem;
    }

    .form-content .description-contact {
        padding: 0 1rem;
    }

    .form-content .text-contact .list-form{
        padding: 0 2rem;
    }

    .form-content .text-contact img {
        width: 70%;
    }

    .form-content .text-contact {
        text-align: justify;
        width: 100%;
    }

    .form-content .text-contact {
        padding: 0 1rem;
    }

    .form-content .formulary {
        display: flex;
        justify-content: center;
        padding: 2rem;
        margin: 0;
    }
}

@media(min-width: 1024px) {

    .form-contact {
        margin-top: 0;
    }

    .content-main {
        margin-top: 0;
    }
    
    .form-content {
        display: flex;
        flex-direction: row;
        justify-items: center;
        align-items: center;
        padding: 0 2rem;
        margin: 4rem 0;
    }

    .form-content .text-contact {
        width: 50%;
    }

    .form-content .formulary {
        width: 50%;
        display: flex;
        justify-content: center;
    }
}

@media(min-width: 1600px) {

    .form-content {
        padding: 0 100px;
    }
}


/* ### Plans ### */

.acordeon-plans {
    padding-top: 5rem;
}

.acordeon-plans .section-plan .img-plan img {
    width: 100%;
}

.acordeon-plans .basic {
    display: flex;
}

.acordeon-plans .intermedio {
    display: none;
}

.acordeon-plans .wordpress {
    display: none;
}

.acordeon-plans .btn-section-plan:hover {
    cursor: pointer;
}

@media(min-width: 320px) {

    .acordeon-plans .btn-section-plan {
        padding-top: 8rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-left: 1.5rem;
        font-size: 1.2rem;
    }

    .acordeon-plans .section-plan {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem 1.5rem;
    }

}

@media(min-width: 768px) {

    .acordeon-plans .btn-section-plan {
        flex-direction: row;
        display: flex;
        padding-left: 1.5rem;
        justify-content: flex-start;
        font-size: 1.2rem;
    }

    .acordeon-plans .section-plan .description-plans {
        text-align: justify;
        padding: 0 1.5rem;
    }

    .acordeon-plans .section-plan .img-plan {
        display:flex;
        justify-content: center;
        align-items: center;
    }

    .acordeon-plans .section-plan .img-plan {
        width: 80%;
        display:flex;
        justify-content: center;
        align-items: center;
    } 
}

@media(min-width: 1024px) {

    .acordeon-plans .btn-section-plan {
        padding-top: 2rem;
    }

    .acordeon-plans .btn-section-plan {
        display: flex;
        flex-direction: row;
    }

    .acordeon-plans .section-plan {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        padding: 1rem 1.5rem;
    }

    .acordeon-plans .section-plan .description-plans {
        width: 50%;
        text-align: justify;
        padding: 0 1.5rem;
    }

    .acordeon-plans .section-plan .img-plan {
        width: 50%;
    } 

}

@media(min-width: 1600px) {

    .acordeon-plans .section-plan .img-plan {
        width: 30%;
    } 
}


