
#idiom{
    position: relative;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 50%;
    gap: 16px;
    background-color: #fff;
    border-radius: 5px;
    h2{
        margin: 0;
    }
    a, button{
        font-size: 1rem;
        border: unset;
        background-color: #fff;
        letter-spacing: 1px;
        color: black;
        text-decoration: underline;
        cursor: pointer;
    }
}

.indice{
    margin: 0;
    color: var(--rojo);
    border: 1px solid var(--rojo);
    padding: 8px 16px;
}

.checkItem{
    margin: 0;
    color: var(--rojo);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;    
}


.subTitle{
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cont2Sections{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    .subTitle{
        margin-bottom: 32px;
    }
    .basicColumn{
        width: 50%;
    }
}

.mainSection{
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 500px;
    width: 100%;
    background-image: url(../Images/brick.png);
    background-size: 20px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    padding-left: 32px;
    box-sizing: border-box;
    overflow: hidden;
    h3{
        font-size: 3rem;
        font-weight: 900;
    }
    img{
        margin-top: -64px;
    }
}

#contactForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#contactForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    gap: 12px;
    h3{
        font-weight: 300;
        margin: 8px 0;
    }
    input, textarea{
        height: 30px;
        width: 65%;
        text-indent: 8px;
        border: 1px solid gray;
        border-radius: 3px;
        resize: none;
        box-sizing: border-box;
    }
    textarea{
        height: 100px;
    }
    button{
        width: 65%;
    }
}

@media(max-width:1290px){
    .cont2Sections{
        .basicColumn{
            width: 40%;
        }
    }

    .blankSectionRow, .blankSectionRowR{
        gap: 32px;
    }

}

@media(max-width:808px){

    #supeTitle{
        font-size: 1.2rem;
    }

    .blankSectionRow, .blankSectionRowR{
        flex-direction: column;
        padding-inline: 32px;
        img{
            height: auto;
            width: 100%;
            margin-bottom: 32px;
        }
    }

    .mainSection{
        padding: 0;
        height: auto;
        flex-direction: column;
        img{
            margin: 0;
            height: auto;
            width: 90%;
            margin-bottom: 10%;    
        }
        h3{
            font-size: 2.3rem;
        }
    }

    #contactForm{
        margin: 32px 0;
        width: 100%;
        input,textarea, button{
            width: 90%;
        }

    }

    .blankSectionContent{
        width: 100%;
    }
}

@media(max-width:508px){

    .blankSectionRow, .blankSectionRowR{
        padding-inline: 16px;
        h2{
            font-size: 2rem;
            font-weight: 700;
        }
    }

    .blankSection, .blankSectionRow, .blankSectionRowR{
        margin-top: 48px;
        .contStats{
           flex-direction: column;
           align-items: start;
           gap: 16px;
        }
    }

    .cont2Sections{
        flex-direction: column;
        gap: 64px;
        .basicColumn{
            width: 100%;
        }
    }
}