.sectionTwoContainer{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.mapsMainContainer{
    gap:10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapsTitle{
    font-size: 20px;
    font-weight: 600;
    text-orientation: upright;
    writing-mode: vertical-lr;
}

.mapsContainer{
    width:600px;
    height:400px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #000000;
}

.contactInformationContainer{
    gap:25px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.innerInfoContainer{
    gap:10px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.rowContainer{
    gap:10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rowContainer i {
    display: flex;
    color:#345090;
    align-items: center;
    justify-content: center;
}

.sectionTitle{
    display: flex;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.sectionDescription{
    color:#345090;
    font-size: 17px;
    font-weight: 600;
}

.title{
    font-size: 17px;
    font-weight: 600;
}

.description{
    font-size: 17px;
    color: #515151;
}

.feedbackContainer{
    gap:30px;
    display: flex;
    padding: 30px 200px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.feedTitle{
    gap:10px;
    display: flex;
    color:#345090;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    align-items: center;
    justify-content: center;
}

.feedTitle::after,
.feedTitle::before{
    content: "";
    width:200px;
    height:5px;
    background-color: #345090;
}

.inputMainContainer{
    gap:50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.sendButton{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sendButton button{
    all: unset;
    font-size: 16px;
    color: #ffffff;
    padding:10px 15px;
    border-radius: 10px;
    border-color: transparent;
    background-color: #345090;
}

.sendButton button:hover{
    cursor: pointer;
    font-size: 16px;
    transform: unset;
    transition: 0.5s all;
    background-color: #6b9ee0;
}

.mapsStyle{
    width: 600px;
    height: 400px;
    border-radius:10px;
}

@media screen and (max-width: 1024px) {
    .sectionTwoContainer{
        gap:20px;
        padding: 50px 20px;
    }
    .mapsContainer,
    .mapsStyle{
        width: 500px;
        height: 300px;
    }
    .feedbackContainer{
        padding: 20px 100px;
    }
}

@media screen and (max-width: 821px) {
    .sectionTwoContainer{
        gap: 30px;
        flex-direction: column;
    }
    .contactInformationContainer{
        flex-wrap: wrap;
        align-items: center;
        /* flex-direction: row; */
    }
    .sectionTitle{
        align-items: center;
    }
    .feedbackContainer{
        padding: 20px 20px;
    }
    .feedTitle::after,
    .feedTitle::before{
        width:150px;
        height:5px;
    }
    .feedTitle{
        font-size: 25px;
    }
}

@media screen and (max-width: 541px) {
    .mapsTitle,
    .feedTitle,
    .sectionTitle{
        font-size: 20px;
    }
    .title,
    .description{
        font-size: 16px;
    }
    .sectionDescription{
        font-size: 16px;   
        text-align: center;
    }
    .mapsContainer,
    .mapsStyle{
        width: 350px;
        height: 300px;
    }
    .innerInfoContainer{
        align-items: center;
    }
    .feedbackContainer{
        padding: 20px 20px;
    }
    .feedTitle::after,
    .feedTitle::before{
        width:50px;
        height:5px;
    }
    .inputMainContainer{
        justify-content: center;
    }
}

@media screen and (max-width: 391px) {
    .mapsContainer,
    .mapsStyle{
        width: 250px;
        height: 300px;
    }
    .mapsTitle,
    .feedTitle,
    .sectionTitle{
        font-size: 18px;
    }
    .title,
    .description{
        font-size: 15px;
    }
    .sendButton button{
        font-size: 15px;
    }
}

@media screen and (max-width: 376px) {
    .mapsContainer,
    .mapsStyle{
        width: 250px;
        height: 300px;
    }
    .mapsTitle,
    .feedTitle,
    .sectionTitle{
        font-size: 18px;
    }
    .title,
    .description{
        font-size: 15px;
    }
    .sendButton button{
        font-size: 15px;
    }
}

@media screen and (max-width: 340px) {
    .mapsTitle,
    .feedTitle,
    .sectionTitle{
        font-size: 17px;
    }
    .title,
    .description{
        font-size: 13px;
    }
    .sectionDescription{
        font-size: 16px;
    }
    .sectionTwoContainer{
        padding: 30px 10px;
    }
}