.banner {
    width: 100%;
    height: 80svh;
    background-color: #afc2cd81;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


#banner {
    position: relative;
    width: 100%;
    height: 80svh;
    background-image: url(/static/Img/Banner3.jpeg);  
    background-size: cover;  
    background-position: center;
}

.wave {
    position: absolute;
    bottom: 20%;
    left: 0;
}

.banner h1{
    font-size: 48px;
    font-weight: 700;
    color: #fe6800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.banner p{
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

#form {
    background-color: #fff;
    padding: 50px;
}

.form {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px 5px rgba(0,0,0,0.5);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.contact-form {
    background-color: #00498a;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #00498a;
    transform: rotate(45deg);
    left: -13px;
    top: 50px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #fe6800;
    background: linear-gradient(135deg, transparent 20%, #063453 100%);
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form h3 {
    font-size: 40px;
    font-weight: 700;
    color: #fe6800;
    margin-bottom: 20px;
    text-align: center;
}

form {
    width: 100%;
    height: 100%;
    padding: 2.2rem 2.3rem;
    overflow: hidden;
    position: relative;
    flex-direction: column;
}


.input-cont {
    position: relative;
    margin: 1rem;
    overflow: visible;
}

.input{
    width: 100%;
    border: 2px solid #fe6800;
    outline: none;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-cont label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translatey(-50%);
    padding: 0 0.4rem;
    color: #fe6800;
    font-size: 15px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.3s ease-in-out;   
}

.input-cont.textarea label {
    top: 1rem;
    left: 15px;
    transform: translatey(0);
}

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

.btn-input {
    padding: 0.6rem 1.2rem;
    border: 2px solid #fe6800;
    background: none;
    outline: none;
    color: #fe6800;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-input:hover {
    background-color: #fe6800;
    color: #fff;
}

.input-cont span{
    position: absolute;
    top: 0;
    color: transparent;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    pointer-events: none;
    z-index: 500;
}

.input-cont span::before{
    content: '';
    width: 0%;
    height: 15px;
    background-color: #00498a;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.input-cont.focus label{
    top: 0;
    transform: translateY(-50%);
    left: 30px;
    font-size: 0.8rem;
}

.input-cont.focus span::before{
    width: 100%;
    opacity: 1;
}

.contact-info {
    position: relative;
    height: 100%;
    width: 100%;
}

.contact-info iframe {
    padding: 20px;
    width: 100%;
    height: 100%;
}

@media (width < 768px) {
    #form {
        padding: 20px;
    }
    
    .form {
        display: flex;
    }
    
    .contact-info {
        display: none;
    }


}