



html,
body {
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

:root {
    --blue_btn: #1F9DFF;
    --main_font: SF-Pro-Display;
    --main_font_bold: SF-Pro-Display-Bold;
    --main_font_500: SF-Pro-Display-Regular;
    --main_font_semibold: SF-Pro-Display-SemiBold
}

.position-r{
    position: relative;
}

.contact-banner{
    border-radius: 20px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    transform: translateY(-60px);
    margin-top: 150px;
    /*height: calc(100vh - 200px);*/
}

.banner-left{
    padding: 39px 55px 41px 55px;
}

.contact-info{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.contact-info-card{
    display: flex;
    max-width: 530px;
    padding: 20px 16px;
    align-items: flex-start;
    column-gap: 16px;
    border-radius: 12px;
    background: #F6FAFF;
}

.contact-info-card span{
    color: #2C2929;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.contact-info-card p{
    margin-top: 4px;
}

.contact-info-card p, .contact-info-card a{
    color: #2C2929;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    max-width: 466px;
}

.form-elements{
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /*align-items: center;*/
    flex-grow: 1;
    column-gap: 20px;
}

.contact-message{
    width: 100%;
    margin-top: 0;
    border-radius: 20px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    display: inline-flex;
    padding: 40px 55px;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 10px;
}

.contact-message h4{
    color: #2C2929;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 108.333% */
    margin-bottom: 24px;
}

.contact-message label{
    color: #2C2929;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    margin-bottom: 8px;
}

.contact-message input{
    display: flex;
    width: 100%;
    padding: 17px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    background: #F6FAFF;
    border: 1px solid transparent;
    outline: none;
    transition: all 0.2s linear;
}

.contact-message input::placeholder, .contact-message textarea::placeholder{
    color: #636d7c;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-message textarea{
    display: flex;
    width: 100%;
    height: 168px;
    padding: 17px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid transparent;
    transition: all 0.2s linear;
    outline: none;
    border-radius: 10px;
    background: #F6FAFF;
    resize: none;
}

.contact-message select{
    appearance: none;
    display: flex;
    width: 530px;
    padding: 17px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #F6FAFF;
}


.contact-message select option{
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-message form{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.contact-message button{
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background: #1F9DFF;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    outline: none;
    transition: 0.2s linear;
}

.contact-message button:hover{
    background: #1390ef;
}



/*.banner-left-contact{*/
/*    overflow-y: scroll;*/
/*    height: 600px;*/
/*}*/

.banner-left-contact::-webkit-scrollbar {
    display: none;
}

.banners{
    display: flex;
}

.banner-right{
    flex: 1;
}

.map-container {
    position: relative;
}

.map-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




#contact-map{
    width: 100%;
    height: 100% ;
    border-radius: 0 20px 20px 0;
    border: none;
}

.select-icon{
    position: absolute;
    top: 50%;
    right: 30px;
}
