*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
a{
    color: white;
}
.mainContainer{
    width: 1270px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width:1270px){
    .mainContainer{
        width: 100%;
        padding: 0 5%;
    }
}
.pageTitleContainer{
    width: 100%;
    padding: 10px 0;
    border-top: 2px solid #4D4D4D;
    border-bottom: 2px solid #4D4D4D;
    font-family: "inter", sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.ContentContainer{
    width: 100%;
    display: flex;
    gap: 2.36%;
    margin-bottom: 25px;
}
.leftContentCon{
    width: 38.58%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rightContentCon{
    width: 59.06%;
    height: 620px;
    /* background-image: url(./assests/Basemapimage.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.leftContentİnfos{
    margin-bottom: 35px;
}
.socialMediaContainerCopy{
    margin-bottom: 25px;
}
.locationContainerCopy{
    font-family: "inter", sans-serif;
    color: #808080;
    line-height: 1.5;
}

.formContainer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.formBoxes{
    width: 48.776%;
    height: 42px;
    background: rgba(0, 0, 0, 0.20);
    margin-bottom: 30px;
    padding:12px 14px;
    font-family: 'inter';
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    outline:none;
}
.formBoxes:nth-child(3){
    width: 100%;
}
.formBoxes:nth-child(4){
    width: 100%;
}
.formBoxes:nth-child(5){
    width: 100%;
    height: 110px;
}

.formSendButton{
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-size: 20px;
    font-family: 'inter';
    font-weight: 500;
    background-color: #FF3838;
    border: 1px solid #FF3838;
    cursor: pointer;
    transition: background-color 0.5s;
    color: white;
}
.formSendButton:hover{
    color: #FF3838;
    background-color: transparent ;
}
@media screen and (max-width:1000px) {
    .ContentContainer{
        flex-direction: column;
        align-items: center;
    }
    .leftContentCon{
        width: 100%;
        margin-bottom: 30px;
    }
    .rightContentCon{
        width: 100%;
    }
}