main {
    background-color: #2197bd;
    height: calc(100vh - 55px);
    min-height: calc(100vh - 55px);
    width: 100%;

    #contacto {
        color: #fdf8f1;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: scroll;

        .titulo {
            align-items: center;
            align-self: center;
            display: flex;
            font-size: 45px;
            font-weight: 700;
            min-height: 25%;
            justify-content: left;
            letter-spacing: -2px;
            max-width: 1200px;

            img {
                height: 70px;
                margin-right: 24px;
                width: 70px;
            }

            .texto {
                line-height: 36px;
                width: 1200px;
            }
        }

        .descripcion {
            display: flex;
            flex-direction: row;
            gap: 48px;
            height: 75%;
            justify-content: space-evenly;
            margin-top: 56px;

            .izq {
                align-items: center;
                display: flex;
                flex-direction: column;
                padding: 34px 32px;

                .contenido {
                    height: auto;
                    margin-top: 16px;
                    text-transform: uppercase;
                    
                    img {
                        height: 40px;
                        width: 40px;
                    }
                }

                .top {
                    font-size: 28px;
                    font-weight: bold;
                    text-transform: uppercase;
                }
            }

            .der {
                display: flex;
                flex-direction: column;
                padding: 34px 32px;

                .contenido {
                    display: flex;
                    flex-direction: column;
                    margin-top: 16px;

                    .socials {
                        display: flex;
                        flex-direction: row;
                        gap: 24px;

                        img {
                            border-radius: 0px;
                            height: 36px;
                            width: 36px;
                        }

                        button {
                            align-items: center;
                            background-color: #282a29;
                            border: 2px solid #faefe0;
                            color: #faefe0;
                            display: flex;
                            font-size: 14px;
                            font-weight: 700;
                            height: 36px;
                            letter-spacing: 2px;
                            padding: 0px 16px;
                            text-decoration: none;
                            text-transform: uppercase;
                        }

                        .click-menu {
                            display: none;
                        }
        
                        .icon {
                            align-items: center;
                            background-color: white;
                            border-radius: 50%;
                            cursor: pointer;
                            display: flex;
                            height: 36px;
                            justify-content: center;
                            padding: 6px;
                            width: 36px;

                            .linkedin {
                                border-radius: 6px;
                                height: 30px;
                                padding: 0;
                                width: 30px;
                            }
                        }
                    }
                }

                .top {
                    font-size: 28px;
                    font-weight: bold;
                    text-align: center;
                    text-transform: uppercase;
                }

                img {
                    border-radius: 68px;
                    height: 360px;
                    width: 360px;
                }
            }
        }
    }
}

/* movil */
@media (width <= 1200px){
    main {
        background-position: 0 0;
        background-size: cover; 

        #contacto {
            margin-bottom: 0;
            
            .titulo {
                flex-direction: column;
                height: fit-content;
                text-align: center;
                margin-top: 75px;
                padding: 32px;
                
                img {
                    margin: 0 0 32px 0;
                }
                .texto {
                    width: auto;
                }
            }

            .descripcion {
                align-items: center;
                flex-direction: column;
                margin: 0;
                padding: 0;

                .izq {
                    max-width: 50%;
                    min-width: 248px;

                    .mega-texto {
                        font-size: 72px;
                        letter-spacing: -6px;
                        width: 100%;
                    }
                }
                
                .der {
                    max-width: 50%;
                    min-width: 248px;
                }
            }
        }
    }
}