@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

* {

    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    background:
        linear-gradient(rgba(45, 100, 237, 0.72), rgba(45, 100, 237, 0.72)),
        url("logos/world.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    line-height: 87px;

}

.hero p {
    font-weight: 400;
    font-size: 16px;
    color: black;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
    gap: 3rem;
    /* background-color: pink; */
}

.form-section,
.info-section {
    flex: 1 1 40%;
    padding: 1rem;
    /* background-color: rgb(160, 139, 189); */
    /* border: 1px solid black; */
}


/* hr {
    border-right: 2px solid #737373;
    border-image: repeating-linear-gradient(to bottom, #737373 0, #737373 10px, transparent 10px, transparent 20px) 1;

} */

hr {
    height: 600px;
    width: 0;
    border: none;
    border-right: 2px solid #737373;
    border-image: repeating-linear-gradient(to bottom,
            #737373 0,
            #737373 10px,
            transparent 10px,
            transparent 20px) 1;

    /* Fade top and bottom */
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}



h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 60px;

}

.contact-container p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 20px;
    margin-bottom: 2rem;


}

form .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    /* background-color: pink; */
}

.form-elements {
    /* background-color: blue; */
    width: 55%;
}

label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;
    color: #666464;

}

input,
textarea {
    width: 80%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    border: 2px solid #2D64ED;
    /* or any shade of blue you prefer */
    outline: none;
    /* optional: removes default outline */
}


.textareapart {
    width: 90%;
}

textarea {
    width: 100%;
    resize: vertical;
}

button {
    width: 90%;
    background-color: #2D64ED;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0345ee;
}

.info-section ul {
    list-style: none;
    margin-top: 1rem;
    /* background-color: pink; */
}

.info-section li {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* background-color: blue; */
}

.inner-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

span {
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;

}

.logos {
    width: 40px;
    height: 40px;
    margin-top: 0px;
    margin-right: 16px;
}

strong {
    color: #666464;
}
@media (min-width: 1600px){
        .hero p {
        font-size: 22px;
    }

    .contact-container p,
    label,
    span,
    button,
    input,
    textarea {
        font-size: 20px;
        line-height: 35px;
    }
}

@media (min-width: 2000px) {

    .hero p {
        font-size: 26px;
    }

    .contact-container p,
    label,
    span,
    button,
    input,
    textarea {
        font-size: 24px;
        line-height: 35px;
    }





}

@media (min-width: 2500px) {

    .hero p {
        font-size: 28px;
    }

    .contact-container p,
    label,
    span,
    button,
    input,
    textarea {
        font-size: 28px;
        line-height: 40px;
    }





}


@media (max-width: 768px) {

    hr {
        display: none;
    }

    .contact-container {
        flex-direction: column;
    }

    .form-section,
    .info-section {
        flex: 1 1 100%;
    }

    /* form .row {
        flex-direction: column;
    } */
}

@media (max-width: 425px) {

    .hero p {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 50px;
    }

    h2 {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 30px;
    }

    .contact-container {
        gap: 1rem;
    }

    .contact-container p,
    label,
    span,
    button,
    input,
    textarea {
        font-size: 0.9rem;
        line-height: 25px;
        
    }

    .contact-container p{
        text-align: justify;
    }
    
    
    input,
    textarea ,button{
        width: 100%;
    
    }
    
    textarea{
        width: 110%;
    }

@media (max-width: 375px) {
/*    .marginforsmallscreensize{*/
/*margin-top: 20px;*/
/*    }*/
    
    .row{
        flex-direction:column;
        
    }
    
    .form-elements,textarea {
        width:100%;
    }
    
    
    
}