/*all elements styling; body and testing borders*/
/*#region*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}
body {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: rgb(240,240,240);
}
/*test borders*/
/*.test-border {
    border: 1px solid red;
}*/
/*.green-test-border {
    border: 1px solid green;
}*/

/*#endregion*/

/*page style*/
/*#region*/
.page-container {
    height: 100vh;
    width: 1200px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200,200,200,0.5);
    box-shadow: 0 0 10px rgba(150,150,150,0.8);
}

/*#endregion*/

/*header style*/
/*#region*/
.logo-container {
    width: 100%;
    height: 350px;
    background-color: rgb(224, 223, 214);
    display: flex;
    justify-content: center;
}
.logo-image {
    width: 280px;
}
.logo-container:hover {
    cursor: pointer;
}

/*#endregion*/

/*footer style*/
/*#region*/
.footer-container {
    width: 100%;
    height: 200px;
    background-color: rgb(70,100,180);
}
.address-contact-info-container {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-address, .footer-phone, .footer-contact {
    color: rgb(224, 223, 214);
    opacity: 0.8;
}
/*#endregion*/

/*navigation bar*/
/*#region*/
.nav-bar-container {
    display: flex;
    justify-content: space-around;
}
.nav-button {
    margin: 0;
    padding: 0;
    background-color: rgb(70,100,180);
    color: white;
    text-decoration: none;
    position: relative;
    bottom: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    box-shadow: 0px 2px 3px grey;
}
.nav-button:hover {
    background-color: rgb(100,100,100);
    color: rgb(240,240,240);
    box-shadow: 0px 2px 3px grey;
    transition: 0.3s;
}

/*#endregion*/

/*about style*/
/*#region*/
.about-page-content-container {
    width: 80%;
    height: calc(100vh - 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.about-header, .about-content {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}

/*#endregion*/

/*gallery style*/
/*#region*/
.gallery-page-content-container {
    width: 80%;
    height: calc(100vh - 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.gallery-header {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
/*#endregion*/

/*products style*/
/*#region*/
.products-page-content-container {
    width: 80%;
    height: calc(100vh - 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.products-header {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}

/*#endregion*/

/*license style*/
/*#region*/
.license-page-content-container {
    width: 80%;
    height: calc(100vh - 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.license-header, .license-content {
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
.license-link {
    color: rgb(70,100,180);
    font-weight: bold;
    text-decoration: none;
    font-style: italic;
}
.license-link:hover {
    color: rgb(235, 154, 0);
}
.license-status-info-container {
    display: flex;
}
.license-description-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.license-status-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
}
.status-text {
    color: rgb(0,200,50);
    font-weight: bold;
}

/*#endregion*/

/*contact style*/
/*#region*/
.contact-section-container {
    width: 80%;
    height: 750px;
    font-family: Arial;
    color: rgb(70,70,70);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-header {
    margin-top: 20px;
}
#contact-headertwo {
    margin-bottom: 20px;
}
.contact-form-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.contact-form {
    width: 80%;
    height: 520px;
    background-color: rgb(224, 223, 214);
    border-radius: 20px;
    box-shadow: 1px 1px 10px grey;
    display: flex;
    justify-content: center;
}
.contact-elements-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form-header {
    margin-top: 10px;
}
.contact-form-label {
    align-self: flex-start;
    font-size: 15px;
    font-weight: bold;
}
.contact-form-input {
    align-self: flex-start;
    width: 100%;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    margin: 3px 0 3px 0;
}
.contact-form-input::placeholder {
    color: rgba(70,70,70,0.4);
    font-style: italic;
}
.contact-form-request-type {
    align-self: flex-start;
    border: none;
    border-radius: 5px;
    width: 200px;
    color: rgb(70,70,70);
}
.contact-form-option-item:active {
    background-color: red;
}
.contact-form-textarea {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    resize: none;
    margin-bottom: 5px;
}
.contact-form-textarea::placeholder {
    color: rgba(70,70,70,0.4);
    font-style: italic;
}
.contact-form-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: rgb(70,100,180);
    color: rgb(240,240,240);
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-form-button:hover {
    cursor: pointer;
    background-color: rgb(255, 187, 0);
    color: rgb(70,100,180);
    font-weight: bold;
    transition: 0.1s ease-in;
}
.contact-form-bottom-margin-add {
    margin-bottom: 10px;
}


/*#endregion*/

/*under construction styling*/
/*#region*/
.construction-sign-container {
    display: inline-block;
    width: 300px;
    height: 300px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sign-element {
    display: inline-block;
    height: 77%;
    width: 77%;
    background-color: rgb(255, 174, 0);
    transform: rotate(45deg);
    border-radius: 7%;
    box-shadow: 1px 1px 10px rgba(70,70,70, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.sign-border {
    display: inline-block;
    height: 91%;
    width: 91%;
    background-color: rgb(70,70,70);
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sign-content {
    display: inline-block;
    height: 91%;
    width: 91%;
    background-color: rgb(255,174,0);
    border-radius: 3%;
}
.sign-text {
    transform: rotate(-45deg);
    text-align: center;
    font-size: 150%;
    font-weight: bold;
    color: rgb(70,70,70);
    margin-top: 35%;
}
/*#endregion*/

/*welcome style*/
/*#region*/
.welcome-page-content-container {
    width: 80%;
    height: calc(100vh - 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.welcome-header, .welcome-content {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
.welcome-header {
    font-size: 35px;
}
.welcome-content {
    font-size: 18px;
}
/*#endregion*/

/*hidden regions on large devices (remove all mobile versions of elements*/
/*#region*/


/*#endregion*/

/*media queries*/
/*#region*/
@media all and (max-width: 700px) {

/*hide on mobile devices*/
/*#region*/
.hide-on-mobile {
    display: none;
}
/*#endregion*/

/*mobile sections transition and easing*/
/*#region*/
.ease-transition {
    transition: all 0.4s ease-in-out;
}
/*#endregion*/

/*page container*/
/*#region*/
.page-container {
    height: 100%;
    width: 100%;
}
/*#endregion*/

/*mobile header*/
/*#region*/
.logo-container {
    width: 100%;
    height: 20vh;
    min-height: 20vh;
    background-color: rgb(224, 223, 214);
    display: flex;
    justify-content: center;
}
.logo-image {
    width: 180px;
    height: 180px;
}
.logo-container:hover {
    cursor: pointer;
}
/*#endregion*/

/*mobile footer*/
/*#region*/
.footer-container {
    width: 100%;
    height: 20vh;
    background-color: rgb(224, 223, 214);
}
.address-contact-info-container {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-address, .footer-phone, .footer-contact {
    color: rgb(70,100,180);
    opacity: 0.8;
}
/*#endregion*/

/*mobile navigation bar*/
/*#region*/
.mobile-nav-bar-container {
    display: flex;
    flex-direction: column;
}
.mobile-nav-button {
    margin: 0;
    padding: 0;
    background-color: rgb(70,100,180);
    color: white;
    text-decoration: none;
    width: 100%;
    height: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.mobile-nav-border-bottom {
    border-bottom: 1px solid rgb(224, 223, 214);
}
/*#endregion*/

/*mobile contact section*/
/*#region*/
.mobile-contact-section-container {
    width: 80%;
    height: 700px;
    font-family: Arial;
    color: rgb(70,70,70);
    margin: auto;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 25px;
    margin-bottom: 25px;
}
.mobile-contact-header {
    text-align: center;
    padding: 20px 0 10px 0;
}
#mobile-contact-headertwo {
    text-align: center;
    padding: 10px 0 20px 0;
}
.mobile-contact-form-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-contact-form {
    width: 80%;
    height: 100%;
    background-color: rgb(224, 223, 214);
    border-radius: 20px;
    box-shadow: 1px 1px 10px grey;
    display: flex;
    justify-content: center;
    padding: 15px 0 15px 0;
    
}
.mobile-contact-elements-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-contact-form-header {
    padding-bottom: 15px;
}
.mobile-contact-form-label {
    align-self: flex-start;
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 5px;
}
.mobile-contact-form-input {
    align-self: flex-start;
    width: 100%;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}
.mobile-contact-form-input::placeholder {
    color: rgba(70,70,70,0.4);
    font-style: italic;
    font-size: 13px;
}
.mobile-contact-form-request-type {
    align-self: flex-start;
    border: none;
    border-radius: 5px;
    width: 200px;
    color: rgb(70,70,70);
    margin-bottom: 10px;
}
.mobile-contact-form-option-item:active {
    background-color: red;
}
.mobile-contact-form-textarea {
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    resize: none;
    margin-bottom: 15px;
}
.mobile-contact-form-textarea::placeholder {
    color: rgba(70,70,70,0.4);
    font-style: italic;
}
.mobile-contact-form-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: rgb(70,100,180);
    color: rgb(240,240,240);
    font-size: 15px;
    font-weight: bold;
}
.mobile-contact-form-button:hover {
    cursor: pointer;
    background-color: rgb(255, 187, 0);
    color: rgb(70,100,180);
    font-weight: bold;
    transition: 0.1s ease-in;
}
/*#endregion*/
 
/*mobile license section*/
/*#region*/
.mobile-license-page-content-container {
    width: 80%;
    height: 550px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.mobile-license-content-redirect-container {
    display:flex;
    flex-direction: column;
    align-items: center;
}
.mobile-license-header, .mobile-license-content {
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    margin-top: 15px;
}
.mobile-license-link {
    color: rgb(70,100,180);
    font-weight: bold;
    text-decoration: none;
    font-style: italic;
}
.mobile-license-link:hover {
    color: rgb(235, 154, 0);
}
.mobile-license-status-info-container {
    display: flex;
}
.mobile-license-description-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.mobile-license-status-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
}
.mobile-status-text {
    color: rgb(0,200,50);
    font-weight: bold;
}
/*#endregion*/

/*mobile products section*/
/*#region*/
.mobile-products-page-content-container {
    width: 80%;
    height: 550px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.mobile-products-header {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
/*#endregion*/

/*mobile gallery section*/
/*#region*/
.mobile-gallery-page-content-container {
    width: 80%;
    height: 550px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.mobile-gallery-header {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
/*#endregion*/

/*mobile about section*/
/*#region*/
.mobile-about-page-content-container {
    width: 80%;
    height: 450px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.mobile-about-header, .mobile-about-content {
    width: 80%;
    color: rgb(100,100,100);
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
/*#endregion*/

/*mobile under construction section*/
/*#region*/
.mobile-construction-sign-container {
    display: inline-block;
    width: 300px;
    height: 300px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-sign-element {
    display: inline-block;
    height: 77%;
    width: 77%;
    background-color: rgb(255, 174, 0);
    transform: rotate(45deg);
    border-radius: 7%;
    box-shadow: 1px 1px 10px rgba(70,70,70, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-sign-border {
    display: inline-block;
    height: 91%;
    width: 91%;
    background-color: rgb(70,70,70);
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-sign-content {
    display: inline-block;
    height: 91%;
    width: 91%;
    background-color: rgb(255,174,0);
    border-radius: 3%;
}
.mobile-sign-text {
    transform: rotate(-45deg);
    text-align: center;
    font-size: 150%;
    font-weight: bold;
    color: rgb(70,70,70);
    margin-top: 35%;
}
/*#endregion*/