* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-page {
    width: 100%;
    height: auto;
}

.contact-inner {
    height: 100%;
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
    padding: 15px;

}

.contact-left {
    width: 53%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-up {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-up h2 {
    font-size: 42px;
    line-height: 1;
    color: #1a1a1a;
    font-weight: 400;
    font-family: Raleway, sans-serif;
}

.contact-up p {
    color: #555;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    word-break: break-word;
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.name-input input {
    width: 100%;
    color: #555;
    border: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 8px 10px;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-weight: 500;
}

.email-input input {
    width: 100%;
    color: #555;
    border: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 8px 10px;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-weight: 500;
}

.message-input textarea {
    width: 100%;
    height: 92px;
    color: #555;
    border: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 8px 10px;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-weight: 500;
}

.send-button button {
    border-radius: 0;
    padding: 18px 41px;
    line-height: 1.42857143;
    margin-bottom: 0;
    letter-spacing: .5px;
    white-space: nowrap;
    text-align: center;
    background: #1a1a1a;
    cursor: pointer;
    border: 1px solid transparent;
    color: #fff;
    outline: 0;
    transition: .3s linear;
}

.send-button button:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.contact-right {
    width: 41%;
    height: 100%;
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.contact-right-title {
    width: 100%;
}

.contact-right-title h2 {
    font-size: 42px;
    line-height: 48px;
    color: #fff;
    font-family: "unset", sans-serif;
    font-weight: 400;
}

.contact-datas {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-data {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    gap: 30px;
}

.contact-icon i {
    font-size: 20px;
    margin-top: 2px;
    line-height: 1;
    float: left;
    color: #fff;
}

.contact-data-inner{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-data-inner h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    font-family: "unset", sans-serif;

}

.contact-data-inner p {
    color: #d3d3d3;
    font-size: 16px;
}

.contact-right-socials{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.contact-right-social{
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #444;
border-radius: 50%;
    padding-top: 2px;
    padding-left: 2px;
}
.contact-right-social a{
    font-size: 12px;
    color: #fff;
}

.contact-page-map{
    width: 100%;
    height: 522px;
}
.contact-page-map iframe{
    width: 100%;
    height: 100%;
}

