* {
	box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    /* overflow-x: hidden; */
    letter-spacing: 0.7px;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;

}
p{
    /* color: rgb(255, 255, 255, 0.85); */
}
span{
    color: #fff;
}
/* li{
    cursor: pointer;
} */
ul{
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    /* margin: 0;
    padding: 0;
    list-style-type: none; */
}
li{
    margin-bottom: 10px;
}
a{
    text-decoration: none;
    color: #fff;
}
.wrapper{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    /* position: relative; */
    /* overflow: hidden; */
}
.navigation{
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    /* width: 21%; */
    width: 350px;
    /* width: 260px; */
    height: 100%;
    color: #fff;
    background: rgb(0, 0, 139);
    /* background: transparent; */
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    z-index: 2;
}
.navigation_list{
    display: flex;
    flex-direction: column;
    /* position: relative; */
    /* align-items: flex-end; */
    height: 100%;
    width: 100%;
    gap: 50px;
}
.nav_link{
    color:rgb(255, 255, 255, 0.75);
    position: relative;
    /* width: 100%; */
    cursor: pointer;
}
.nav_link:hover{
    color: #fff;
}
.nav_link::before{
    content: "";
    position: absolute;
    bottom: -10px;
    /* right: 0; */
    left: 0;
    width: 260px;
    height: 1.2px;
    background: rgb(255, 255, 255, 0.3);
    z-index: 1;
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav_link:hover::after{
    transform: scaleX(1);
}

.active::after{
    content: "";
    position: absolute;
    bottom: -10px;
    /* right: 0; */
    left: 0;
    width: 260px;
    height: 1.2px;
    background: #b9007c;
    z-index: 7;
    animation: both activeAnimation 0.3s ease-in-out;
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
@keyframes activeAnimation{
    0%{
        transform: scaleX(0);
    }
    100%{
        transform: scaleX(1);
    }
}
#nav_link_underline{
    position: absolute;
    bottom: -10px;
    /* right: 0; */
    left: 0;
    width: 260px;
    height: 1.2px;
    background: #b9007c;
    z-index: 5;
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.content{
    display: flex;
    flex-direction: column;
    /* width: 75%; */
    /* width: calc(100% - 350px); */
    /* background: #61e282; */
    /* margin-left: calc(21% - 60px); */
    margin-left: 350px;
    /* padding-left: 280px; */
    /* padding: 10px 30px; */
    z-index: 1;
}
.content_portion{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 100vh; */
    height: 100%;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    /* margin-left: 40px;  */
    /* margin-bottom: 40px; */
    background: #c0e261;

    /* opacity: 0; */

}
.content_portion_container{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 100%;
    max-width: 1000px;
    /* margin-bottom: 40px; */
}

.active{
    color: #fff;
    /* opacity: 1; */
}
.hide{
    opacity: 0;
}

.verticle_divider{
    width: 1px;
    /* height: 100%; */
    background: rgb(255, 255, 255, 0.3);
    /* opacity: 0.9; */
    margin-left: 15px;
    margin-right: 15px;
}
.divider{
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255, 0.4);
    /* opacity: 0.9; */
    margin-top: 30px;
    margin-bottom: 30px;
}
.input_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
}
.input_col{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.input_label{
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}
.input_field{
    /* width: 100%; */
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.input_field:focus{
    border: 1px solid #61e282;
}
.input_field::placeholder{
    color: #fff;
}
.input_field:focus::placeholder{
    color: #61e282;
}

.message_field{
    position: relative;
    /* width: 100%; */
    resize: none;
    height: 200px;
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 25px;
}
.button{
    width: fit-content;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #0c1928;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.button:hover{
    background: #fff;
    color: #0c1928;
}

.sub_header{
    font-size: 1.5rem;
    font-weight: 700;
    /* margin-bottom: 10px; */
}

.logo_active{
    filter: drop-shadow(0px 0px 10px #b9007c);
    transition: all 0.3s ease-in-out;
}
.margin_t{
    margin-top: 20px;
}

/* Form error handling */
.organization_name_error, .contact_person_error,
.phone_error, .trial_email_error, .mailing_address_error,
.city_error, .state_error, .zip_error, .billing_contact_person_error,
.billing_phone_error, .billing_email_error, .billing_mailing_address_error,
.billing_city_error, .billing_state_error, .billing_zip_error,
.get_in_touch_name_error, .get_in_touch_email_error, .message_error{
    opacity: 0;
}

.error{
    font-size: 0.9rem;
    color: #ff0000;
    font-weight: 500;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin-top: -7px;
    margin-left: 7px;
}

.error_input{
    border: 1px solid #ff0000;
}
.error_input:focus{
    border: 1px solid #ff0000;
}

@media screen and (max-width: 1236px) {
    .content{
        /* width: 91.5%; */
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 60px;
    }
    .content_portion{
        /* width: 100%; */
        padding-top: 62px;
        height: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0; 
        margin-right: 0;
        margin-bottom: 0;
        /* margin-bottom: 40px; */
        flex-wrap: wrap;

    }
    .content_portion_container{
        flex-direction: column;
        align-items: center;
        /* width: 80%; */
        margin-left: 0;
        margin-right: 0;
    }
   
    .input_field{
        width: 100%;
    }
  
    .verticle_divider{
        display: none;
    }
    
     .navigation{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: fixed;
        /* top: 0;
        left: 0; */
        width: 100%;
        height: 60px;
        padding-left: 30px;
        padding-right: 30px;
        z-index: 20;
        font-size: 15px;
    }
    
    .logo{
        height: 30px;
        width: 100%;
        margin-right: 30px;
    }
    .navigation_list{
        flex-direction: row;
        justify-content: center;
        /* align-items: flex-end; */
        /* gap: 15px; */
    }
    .nav_link::before{
        content: "";
        position: absolute;
        bottom: 10px;
        /* right: 0; */
        left: 0;
        width: 100%;
        height: 1.2px;
        background: rgb(255, 255, 255, 0.3);
        z-index: 1;
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }
    .active::after{
        content: "";
        position: absolute;
        bottom: 10px;
        /* right: 0; */
        left: 0;
        width: 100%;
        height: 1.2px;
        background: #b9007c;
        z-index: 7;
        animation: both activeAnimation 0.3s ease-in-out;
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }
}

@media screen and (max-width: 810px){
    .content{
        margin-top: 70px;
    }
    .content_portion{
        padding-top: 72px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .navigation{
        height: 70px;
    }
    .navigation_list{
        font-size: 14px;
    }
    .nav_link::before{
        display: none;
    }
    .active::after{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .wrapper{
        /* background-color: #b9007c; */
    }
    .content{
        /* width: 88%; */
    }
    .content_portion{
        padding-left: 15px;
        padding-right: 15px;
    }
    .verticle_divider{
        display: none;
    }
    .input_row{
        flex-direction: column;
        gap: 20px;
    }
    .input_col{
        width: 100%;
    }
    .input_field{
        width: 100%;
    }
    .message_field{
        width: 100%;
    }
    .button{
        width: 100%;
    }
    
}

@media screen and (max-width: 565px){
    .navigation_list{
        justify-content: space-between;
        align-items: center;
    }
    #link_why_crimson{
        display: none;
    }
    #link_trial{
        display: none;
    }
    #link_about_us{
        display: none;
    }
    #link_get_in_touch{
        display: none;
    }
}