.contactOrganizations{
    background: url('../../images/home2025/heroImg.png')center/cover;
    width: 100%;
    min-height: calc(100vh - 44px);
    height: max-content;
    position: relative;
    display: flex;
    padding: 60px 5% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 67, 0.7);
    top: 0;
    left: 0;
}

.sourceVideoPc{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* background-color: rgba(11, 19, 67, 0.7); */
}

.leftInfo{
    width: 45%;
    position: relative;
    min-height: calc(95vh - 44px - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.titleSectionWhite{
    text-align: center;
    color: #FFFFFF;
    font-size: 2vw;
    font-family: "montserrat-bold";
    margin-top: 1.5vh;
}

.yellowText{
    color: #FFEC00;
    font-size: 1.5vw;
    font-family: "montserrat-bold";
}

.logoWhite{
    width: 10vw;
}

.buttonGreen{
    background-color: #3FDFB6;
    color: #FFFFFF;
    padding: 1.2vw 1.4vw;
    font-size: 1vw;
    font-family: "montserrat-bold";
    border-radius: 1.4vw 1.4vw 0 0;
    visibility: hidden;
}

.rightInfo{
    position: relative;
    height: calc(95vh - 44px - 60px - 5vh);
    min-height: max-content;
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 0.8vw;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
    margin-bottom: 2vh;
}

.titleRight{
    height: max-content;
}

.blackTextForm{
    color: #414141;
    font-family: "montserrat-bold";
    font-size: 1.8vw;
    margin-bottom: 1vh;
}

.blueTextForm{
    color: #29ABE2;
    font-family: "montserrat-bold";
    font-size: 1.8vw;
}

.formContact{
    width: 100%;
    height: 100%;
    border: 1px solid #29ABE2;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1vw 1vw  1.5vw; 
    position: relative;
}

.doubleInput{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2vw;
}

.labelInfo{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1vh;

    span{
        color: #414141;
        font-family: "montserrat-regular";
        font-size: 1vw;
        
    }

    .inputFormContact{
        height: 4.2vh;
        min-height: 30px;
        width: 100%;
        border: 1px solid #CFCFCF;
        border-radius: 0.3vw;
        padding: 0 1vw;
        background-color: #FFFFFF;
        outline: none;
        appearance: textfield;
        -webkit-appearance: textfield;
    }

    textarea{
        height: 8vh !important;
        padding-top: 2.5vh !important;
    }
}

.sendbutton{
    background-color: #29ABE2;
    color: #FFFFFF;
    padding: 0.5vw 1vw;
    width: max-content;
    position: absolute;
    bottom: -1vw;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-radius: 1.4vw;
    font-family: "montserrat-bold";
    font-size: 1vw;
    cursor: pointer;
}

@media screen and (max-width: 1000px){
    .labelInfo{
        span{
            font-size: 1.5vw;
        }
    }

    .sendbutton{
        font-size: 1.4vw;
        bottom: -1.3vw;
    }

    .formContact{
        padding: 1.5vw 1.5vw 2vw;
    }

    .blackTextForm{
        font-size: 2vw;
    }

    .blueTextForm{
        font-size: 2vw;
    }

    .titleSectionWhite{
        font-size: 2.5vw;

    }

    .yellowText{
        font-size: 2vw;
    }
}

@media screen and (max-width: 700px){
    .contactOrganizations{
        flex-direction: column;
        row-gap: 40px;
        margin: 40px 0 0;
        padding-bottom: 40px;
    }

    .leftInfo{
        min-height: max-content;
        width: 100%;
        row-gap: 20px;
    }

    .titleSectionWhite{
        font-size: 25px;
    }

    .yellowText{
        font-size: 20px;
    }

    .logoWhite{
        width: 20vw;
    }

    .rightInfo{
        width: 90%;
        padding: 25px;
    }

    .blackTextForm{
        font-size: 20px;
    }

    .blueTextForm{
        font-size: 20px;
    }

    .labelInfo {
        span {
            font-size: 15px;
        }
    }

    .formContact {
        padding: 20px;
    }

    .sendbutton{
        font-size: 14px;
        padding: 8px 15px;
        bottom: -20px;
    }
}

@media screen and (max-width: 500px){
    .rightInfo{
        width: 100%;
    }

    .doubleInput{
        flex-direction: column;
        row-gap: 20px;
    }

    .formContact{
        row-gap: 20px;
    }

    .rightInfo{
        height: max-content;
    }
}