#main-container{
    background: var(--contact-us-bg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: cover;
}
#contact-container{ 
    width: 100%;
}
#contact-sect-2{
    padding: 80px 0px;
}
.modal{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.173);
    z-index: 999;
    display: none;
    justify-content: center;
    padding-top: 30vh;
}
#modal-box{
    height: fit-content;
    width: fit-content;
    padding: 20px;
    border-radius: 15px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#aside-form{
    width: 80%;
    border-radius: 0px 10px 0px 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 10px;
    color: rgb(0, 0, 0);
    border-right: 2px solid  var(--p-color);
    border-top: 2px solid  var(--p-color);
    
}
#aside-form div{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#cv-label{
    cursor: pointer;
}
#aside-form p{
    font-family: 'Rubik', sans-serif;
    margin-top: 15px;
    margin-bottom: 15px;
}

#i-cv{
    max-width: 1px !important;
    max-height: 1px !important;
    min-width: 1px;
    padding: 1px;
    margin: 1px auto 0px auto;
    border: 1px solid rgba(204, 204, 204, 0);
}

#p6{
    text-align: center;
    font-size: small;
    font-family: 'Rubik', sans-serif;
}
#aside-form div h1{
    text-align: center;
    margin-top: 5px;
}
#aside-form div hr{
    border: 0.2px solid var(--p-color);
    background-color: var(--p-color);
}
#modal-msg h1{
    font-size: medium;
}
#separator{
    display: flex;
    justify-content: space-between;
}
#modal-buttons button{
    background-color: var(--p-color);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: small;
    color: white;
    border: 0px;
}
#modal-buttons button:active{
    background-color: var(--alt-p-color);
}

#contact-sect-1 #limit-container{
    padding: 30px 0px 30px 0px;
}
#contact-sect-2 #limit-container{
    background: white;
    border: 2px solid  var(--p-color);
    border-radius: 10px;
    padding-top: 20px;
}
#contact-form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0px 0px 10px 0px;
    padding: 35px 50px;
    width: 430px;
    background-color: rgb(255, 255, 255);
}
#contact-form p{
    font-family: 'Rubik', sans-serif;
    color: #dc0909;
    margin-right: auto;
    font-size: small;
}
.form-element{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.required::after{
    content: "*";
    color: #dc0909;
}
#form-element-double{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.double-element:nth-child(1) {
    width: 49%;
}
.double-element:nth-child(2) {
    width: 49%;
}
input, textarea, #cv-label{
    min-width: 100%;
    max-width: 100%;
    
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}
#cv-label{
    text-align: center;
}
textarea{
    min-height: 44px;
    height: 88px;
    max-height: 176px;
}
#send-button{
    background-color: var(--p-color);
    border-radius: 5px;
    font-size: larger;
    padding: 8px 20px;
    font-size: 20px;
    color: white;
    border: 0px;
    transition: background-color 0.2s ease;
}

#send-button:active{
    background-color: var(--alt-p-color);
}

#welcome-banner a:hover{
    background-color: var(--alt-p-color);
    transition: background-color 0.3s ease;
}

h1{
    margin-bottom: 10px;
}

.disabled{
    cursor: not-allowed !important;
    user-select: none !important;
    background-color: var(--alt-p-color) !important;
}
.disabled:active{
    background-color: var(--alt-p-color) !important;
}

@media screen and (max-width:470px) {
    #aside-form{
        padding: 30px;
    }
    #form-element-double{
        flex-direction: column;
    }
    .double-element{
        width: 100% !important;
    }
    #aside-form p{
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width:860px) {
    #separator{
        flex-direction: column;
        align-items: center;
    }
    #contact-form{
        width: 100%;
        border-radius: 0px 0px 10px 10px;
        margin-left: 0px;
        /* border-left: 2px solid  var(--p-color);
        border-right: 2px solid  var(--p-color);
        border-bottom: 2px solid  var(--p-color); */
    }
    #aside-form{
        width: 100%;
        border-radius: 10px 10px 0px 0px;
        border-right: 0px;
    }
    #contact-sect-2 {
        padding: 0px 0px;
    }
}
/*---------------------------------------------------------------*/
#home-container{ 
    width: 100%;
    
}

/* #home-sect-1{
    background-image: var(--home-bg-1);
    background-attachment: fixed; 
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: cover;
} */
#home-sect-2{
    background-color: white;
}


#home-sect-3{
    background-color: white;
}


#welcome-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#home-sect-3 #limit-container{
    padding-bottom: 80px;
}

#transparent-container{
    background-color: rgba(255, 255, 255, 0.425);
    border-radius: 15px;
    padding: 20px 50px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#welcome-text h1{
    font-size: 55px;
}

#welcome-text p{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: var(--alt-p-color);
}

#contact-button{
    margin: 0 0 0 100px;
    background-color: var(--p-color);
    border-radius: 5px;
    font-size: larger;
    padding: 8px 20px;
    font-size: 20px;
    color: white;
    transition: background-color 0.2s ease;
}

#welcome-banner a:hover{
    background-color: var(--alt-p-color);
    transition: background-color 0.3s ease;
}

#our-business-areas{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    padding: 50px 0px 100px 0px;
    text-align: justify;
    font-size: large;
    font-family: 'Rubik', sans-serif;

}
#this-is-how-it-works #title{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: large;
}
#this-is-how-it-works #title h1{
    margin-bottom: 0px;
}

#round-borders{
    border-radius: 100px;
    overflow: hidden;
}

#this-is-how-it-works #information{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0px 50px 0px;
    text-align: justify;

    background-image: var(--home-bg-2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position-y: -40px;
    background-attachment: fixed;
}
#this-is-how-it-works .left{
    width: 51%;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    border-radius: 0px 50px 50px 0px;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
#this-is-how-it-works .right{
    width: 51%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px 0px 0px 50px;
    float: right;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {
    #welcome-text h1{
        font-size: 40px;
    }
    #welcome-text p{
        font-size: 15px;
    }
    #our-business-areas h1{
        font-size: 25px;
        text-align: center;
    }
    #our-business-areas p{
        font-size: 15px;
    }
    #this-is-how-it-works h1{
        font-size: 25px;
    }
    #this-is-how-it-works p{
        font-size: 15px;
    }
    #transparent-container{
        padding: 20px 20px;
    }
    #this-is-how-it-works .left{
        padding: 50px 20px;
        width: 75%;
        margin: 10px 0px 10px 0px;
    }
    #this-is-how-it-works .right{
        padding: 50px 20px;
        width: 75%;
        margin: 0px 0px 10px 0px;
    }
    #contact-sect-2{
        padding: 0px 0px;
    }
    #footer-collider{
        height: 65px;
    }
}