/*------------------------------ about-us-adress ------------------------------*/
.about-us-adress-section {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 50px 0;
}

.about-us-adress-section-container {
    display: flex;
    width: 80%;
    justify-content: space-evenly;
}

.about-us-adress-section-titles,.contact-title {
    width: 30%;
}

.about-us-adress-section-title,.contact-title {
    color: #2d43c7;
    font-size: 40px;
}

.about-us-adress-section-info {
    width: 70%;
    position: relative;
    overflow: hidden;
}
.about-us-adress-section-info>div {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    height: 450px;
    position: absolute;
    top: 0;
    transition: .3s;
}

.about-us-adress-section-title-sections {
    margin-top: 50px;
    width: 100%;
    border-left: 3px solid #2d43c7;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-us-adress-section-title-sections h3 {
    font-size: 26px;
    cursor: pointer;
}

.about-us-adress-section-title-sections>div {
    position: relative;
    height: min-content;
    transition: .3s;
}

.about-us-adress-section-title-sections>div i {
    opacity: 0;
    color: #2d43c7;
    transition: .3s;
}

.about-us-adress-section-title-sections>div:hover i {
    opacity: 1;
    margin-left: 30px;
}

.about-us-adress-section-title-sections>div:hover {
    color: #2d43c7;
}

.services-numbers {
    position: absolute;
    height: 80%;
    aspect-ratio: 1;
    border-radius: 50px;
    border: 3px solid #2d43c7;
    left: -67px;
    top: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.about-us-adress-section-info p {
    margin: 0;
}

.about-us-adress-section-info a {
    color: black;
}

.proz-info,
.ofis-info,
.bux-info {
    width: 40%;
}

.proz-map,
.ofis-map,
.bux-map {
    width: 60%;
}

.info-img {
    width: 100%;
}

.proz-info-container,
.proz-info-img {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.proz-info-section {
    left: 0%;
}

.ofis-info-section {
    left: 100%;
}

.bux-info-section {
    left: 200%;
}

/*------------------------------ media about-us-adress ------------------------------*/
@media (max-width: 1400px) {
    .about-us-adress-section-container {
        width: 95%;
        flex-wrap: wrap;
    }

    .about-us-adress-section-info {
        width: 100%;
        height: 450px;
    }

    .about-us-adress-section-titles {
        width: 100%;
    }
}

@media (max-width: 700px) {

    .proz-info,
    .ofis-info,
    .bux-info {
        width: 100%;
    }

    .about-us-adress-section-info {
        height: 635px;
    }

    .proz-map,
    .ofis-map,
    .bux-map {
        width: 100%;
    }

    .about-us-adress-section-info>div {
        flex-wrap: wrap;
    }
}

/*------------------------------ images ------------------------------*/
.images {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 50px 0;
    flex-wrap: wrap;
}

.images-section {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
}

.images-section-img {
    width: 50%;
    padding: 50px;
}

/*------------------------------ media images ------------------------------*/
@media (max-width: 1200px) {
    .images-section {
        width: 95%;
        flex-wrap: wrap;
    }

    .images-section-img {
        width: 100%;
    }
}

/*------------------------------ contact ------------------------------*/
.contact{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 50px 0;
}
.contact-container{
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
}

.contact-inp>input, textarea{
    width: 100%;
    height: 60px;
    border-radius: 60px;
    background-color: #ececec;
    border: none;
    outline: none;
    padding: 0 30px;
}
.contact-inp>textarea{
    width: 100%;
    height: 100px;
    background-color: #ececec;
    border: none;
    outline: none;
    padding: 0 30px;
    padding-top: 15px;
    align-items: center;
}
.contact-inp{
    width: 70%;
}
.contact-inp{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
/*------------------------------ contact media------------------------------*/
@media (max-width: 1700px) {
    .contact-title {
        width: 50%;
    }
    .contact-inp {
        width: 50%;
    }
}
@media (max-width: 700px) {
    .contact-title {
        width: 100%;
    }
    .contact-inp {
        width: 100%;
    }
    .contact-container{
        width: 95%;
        flex-wrap: wrap ;
    }
}