/******main****/
.main {
    padding-bottom: 200px;
}

.main__img {
    width: 640px;
    height: 577px;
    position: relative;
    right: 0; 
}

.main__title {
    max-width: 364px;
}

.main__orange {
    left: -400px;
    max-width: 600px;
    max-height: 600px;
    filter: blur(300px);
}

.main__green {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    filter: blur(120px);
}

.main__info {
    margin-top: 120px;
    max-width: 498px;
}

.main__links-wrapper {
    display: flex;
}

.main__wrapp-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.main__wrapper {
    display: flex;
    justify-content: space-between;
}

/*****address*****/
.address__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.address__info {
    width: 560px;
    max-width: 100%;
    border-radius: 30px;
    padding: 70px 0 70px 100px;
    background-color: white;
}
.address__phone, .address__email {
    align-items: center;
}

.address__item {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid black;
    padding: 20px 0;
}

.address__navigation {
    text-align: end;
}

.address__address {
    border-bottom: none
}

.address__map {
    position: relative;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    height: 400px;
}

.address__picture {
    position: absolute;
    top: 0;
    left: -420px;
}

.address__dot {
    position: absolute;
    top: 30%;
    left: 2%;
}

@media (max-width: 1166px) {
    /****main section ****/

    .main__wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .main__info {
        width: 500px;
        max-width: 100%;
        margin-bottom: 100px;
    }

    .main__orange {
        left: 0px;
    }
    
    .main__green {
        display: none;
    }

    /****address****/
    .address__wrapper {
        flex-direction: column;
    }

    .address__info {
        margin-top: 50px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .address__title {
        width: 500px;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    /****main section ****/
    .main {
        padding-bottom: 100px;
    }
    .main__orange {
        left: 0px;
        max-width: 300px;
        max-height: 300px;
        filter: blur(150px);
    }
    .main__img {
        width: 500px;
        max-width: 100%;
        height: 425px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .address__item {
        flex-direction: column;
        padding: 30px 0;
    }
    .address__navigation {
        text-align: left;
    }
    .address__info {
        padding: 0;
        width: 500px;
    }

    .address__phone, .address__email {
        align-items: flex-start;
    }

    .address__subtitle {
        margin-bottom: 15px;
    }
    
}

@media (max-width: 376px) {
    
}