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

body {
    font-family: 'Open Sans', sans-serif;
    color: #474747;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

a {
    color: #515151;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

a:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #515151;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: all .3s;
}

a:hover:before {
    transform: scaleX(1);
    transform-origin: right;
    transition: all .3s;
}

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

ion-icon {
    margin-right: 10px;
    vertical-align: middle;
}

.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.title p{
    width: 80%;
    font-weight: 600;
}

.landing {
    width: 100%;
    background-image: url(image/bg-02.png), linear-gradient(to bottom, #d7d7d1, #b0b1a4, #9d9e8f);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.big-text {
    font-size: calc(100vw / 13);
    line-height: 1.6;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 100%;
}


.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dresshome, .edilpietra {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;

    margin-bottom: 50px;
    padding: 25px 30px;

    background-image: linear-gradient(45deg, rgb(255 255 255 / 70%), rgb(255 255 255 / 20%));
    backdrop-filter: blur(6px);
    border-radius: 150px;
    box-shadow: 0px 10px 20px rgb(104 93 76 / 8%), 0px 20px 20px rgb(104 93 76 / 6%), 0px 30px 20px rgb(104 93 76 / 4%);
    overflow: hidden;
}

.image img {
    width: 300px;
    backface-visibility: hidden;
}

.image, .descr, .contact {
    width: 50%;
}

.image, .descr {
    margin-right: 40px;
    line-height: 0;
}

.contact p:not(:last-child) {
    margin-bottom: 5px;
}

.contact p span {
    margin-left: 29px;
}

.info p {
    font-size: 15px;
    line-height: 26px;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .container {
        padding: 60px 25px;
    }

    .landing {
        background-position: center 50%;
    }

    h1 {
        font-size: 34px;
    }

    .dresshome, .edilpietra {
        flex-direction: column;
        border-radius: 60px;
        padding: 40px 30px;

        background-image: linear-gradient(180deg, rgb(255 255 255 / 60%), rgb(255 255 255 / 40%));
    }

    .image, .descr {
        margin: 0 0 30px 0;
    }

    .image, .descr, .contact {
        width: 100%;
        text-align: center;
    }

    .big-text {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .title p{
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        padding: 50px 20px;
    }

    .image img {
        width: 250px;
    }

    .dresshome, .edilpietra {
        border-radius: 40px;
        padding: 40px 15px;
    }

    h1 {
        font-size: 30px;
    }
}