:root{
    --main-color: #00AAFF;
    --text-color:#6E6E6E;
}
*{
  font-family: "Lato", sans-serif;
}
header{
    height: 12px;
    width: 100%;
    background: linear-gradient(90deg, #22D1B6 0%, #009EE7 100%);
}
main{
    margin: 30px 0 0 0;
}
.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.mainrow{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    .mainrow--sx{
        width: 100%;
        .mainrow--address{
            .mainrow--logo{
                width: 91px;
                height: 27px;
                margin: 20px 0 20px 0;
                background-image: url(../assets/logo-engie.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                display: block;
                text-indent: -10000px;
            }
            h1{
                color: var(--main-color);
                font-weight: 900;
                font-style: inherit;
                font-size: 32px;
                margin: 0.3em 0 0.67em 0;
              }
            p{
                color: var(--text-color);
                font-size: 16px;
                line-height: 26px;
                font-weight: 400;
                &.orari{
                    font-size: 14px;
                    line-height: 24px;
                }
                a{
                    color: var(--main-color);
                }
            }
            hr{
                color: #DBDBDB;
                height: 1px;
                border: transparent;
                border-top: 1px solid #DBDBDB;
                margin: 20px 0;
            }
            .social{
                list-style: none;
                margin: 0;
                padding: 10px 0;
                display: block;
                li{
                    display: inline-block;
                    margin-right: 20px;
                    a{
                        font-size: 14px;
                        color: var(--text-color);
                        display: flex;
                        padding-left: 30px;
                        background-position: center left;
                        background-repeat: no-repeat;
                        background-size: 22px;
                        line-height: 26px;
                        &.social--fb{
                                background-image: url(../assets/ico-fb.svg);
                        }
                        &.social--ig{
                                background-image: url(../assets/ico-ig.svg);
                        }
                    }
                }
            }

        }

        }
    .mainrow--dx{
        width: 100%;
        aspect-ratio: 4/3;
        background-position: center;
        background-size: cover;
        border-radius: 6px;

    }
}
.maprow{
    display: flex;
    gap: 30px;
    .maprow--img{
        display: none;
    }
    .maprow--map{
        background-image: url(../assets/engie_store_prato_map_desktop@2x.webp);
        background-size: cover;
        width: 100%;
        border-radius: 6px;
        display: flex;
        background-position: center;
        height: 380px;
        a{
            background-color: var(--main-color);
            color: #ffffff;
            display: flex;
            padding: 20px 30px;
            border-radius: 6px;
            font-size: 18px;
            margin: auto 20px 20px 20px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
            width: 100%;
            justify-content: center;
        }
    }
}
footer{
    padding: 20px 0;
    p{
        color: var(--text-color);
        text-align: center;
        font-size: 14px;
    }
}

@media screen and (min-width: 600px){
    main{
        margin: 50px 0 0 0;
    }
    .container{
        padding: 0 20px ;
    }
    .mainrow{
        flex-direction: row;
        margin-bottom: 50px;
        .mainrow--sx{
            width: 40%;
            padding-right: 10%;
            .mainrow--address{
                .mainrow--logo{
                    width: 137px;
                    height: 41px;
                    margin: 20px 0;
                }
                h1{
                    font-size: 42px;
                    margin: 0.67em 0;
                }
                p{
                    font-size: 20px;
                    line-height: 30px;
                    &.orari{
                        font-size: 16px;
                        line-height: 26px;
                    }
                }

            .social{
                li{
                    a{
                        font-size: 16px;
                        padding-left: 30px;
                        background-size: 22px;
                        line-height: 26px;
                    }
                }
            }
            }
        }
        .mainrow--dx{
            width: 50%;
            border-radius: 10px;
        }
    }
    .maprow{
        display: flex;
        gap: 30px;
        .maprow--img{
            aspect-ratio: 3.5/4;
            border-radius: 10px;
            background-size: cover;
            max-width: 350px;
            width: 100%;
            display: flex;
        }
        .maprow--map{
            background-image: url(../assets/engie_store_prato_map_desktop@2x.webp);
            height: auto;
            border-radius: 10px;
            a{
                background-color: var(--main-color);
                margin: auto 20px 20px auto;
                width: auto;
            }
        }
    }
}