@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');

:root
{
    --primary-color: rgb(76, 95, 249);

}

  
body
{
    font-family: "Unbounded";
    width: 100%;
    height: auto;
}
form {
    margin-top: 30px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.inputField {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    position: relative;
}
 

.inputLabel {
    font-size: 14px;
    color: rgb(8, 8, 8);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.inputField select {
    -webkit-appearance: none;
    cursor: pointer;
}
.input_field label {
    font-size: 20px;
    color: rgb(30, 64, 86);
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.input_field .select {
    position: relative;
}



.input_field input, .input_field .select-toggle, .input_field .select_no_drop, .input_field input, .input_field select, .input_field textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: solid 2px rgb(212, 213, 219);
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 55px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgb(30, 64, 86);
    padding-left: 30px;
    transition: 0.5s;
}

    .input_field input:focus, .input_field .select-toggle:focus {
        border-color: var(--primary-color);
        outline: none;
    }
main
{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
.main_bg
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main_bg img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_bg::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 56%;
    min-height: 100%;
    transform: translate(-50%, 0%);
    background-color: rgba(255, 255, 255,0.5);
    pointer-events: none;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    z-index: 1;
}
.main_bg::before
{
    filter: grayscale(100%);
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../images/bg.jpg);
    background-size: auto;
    background-position: 50% 50%;
    width: 56%;
    min-height: 100%;
    transform: translate(-50%, 0%);
    background-color: rgba(38, 39, 50, 0.76);
    pointer-events: none;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    z-index: 0;

}

  



.logo
{
    height: auto;
    width: auto;
    position: relative;
    padding: 10px 10px;
}
.logo span
{
    font-size: 20px;
    color: var(--primary-color);
    line-height: 0;
    position: relative;
    bottom: -15px;
}
.surveyForm, .thankyou
{
    width: 32%;
    margin: 0 auto;
    display: grid;
    align-content: center;
    position: relative;
    z-index: 1000000;
    flex: 1;
    padding: 10px 0;
}
.step_content
{
    margin-bottom: 10px;
}
.mainheading {
    font-size: 22px;
    color: rgb(30, 64, 86);
    font-weight: bold;
    /*position: relative;*/
    height: 55px;
}
.mainheading::before
{
    content: "";
    position: absolute;
    background-color: rgb(234, 234, 234);
    width: 180px;
    height: 2px;
    left: 0;
    bottom: 0;

}
.step_content p {
    font-size: 18px;
    font-weight: 300;
    color: rgb(30, 64, 86);
    margin-top: 10px;
}
.radiofield
{
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
    .radiofield input {
        -webkit-appearance: none;
        border-radius: 10px;
        background-color: rgb(219, 210, 210);
        min-width: 40px;
        height: 36px;
        position: relative;
        overflow: hidden;
        border: 1px;
        cursor: pointer;
    }
.radiofield input::before
{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: rgb(234, 234, 234);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    z-index: 1000;
    
}
.radiofield input::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: circle(0 at 0 0);

}
.radiofield input::before, .radiofield input::after
{
    transition: 0.5s;
}
.radiofield input:checked
{
    border-color: var(--primary-color);
}
.radiofield input:checked::after
{
    clip-path: circle(141.4% at 0 0);
}
.radiofield input:checked::before, .radiofield input:checked::after
{
    opacity: 1;
}
.formLabel {
    font-size: 18px;
    color: rgb(75, 102, 119);
    margin-left: 20px;
}
.next
{
    background-color: rgb(76, 95, 249);
    border-radius: 50px;
    width: 244px;
    height: 65px;
    font-size: 18px;
    color: rgb(252, 252, 252);  
    border: 0;
    margin-top: 70px;
    font-weight: 300;
    overflow: hidden;
    position: relative;
}
.next::before, .next::after
{
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    /*background-color: rgba(255, 255, 255,0.5);*/
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);
    transition: 0.4s;
    z-index: 0;


}
.next:hover::before,.next:hover::after
{
    right: -100%;
}
.next::after
{
    transition-delay: 0.2s;


}
.radioField2
{
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    background-color: rgb(234, 234, 234);
    height: 78px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
}
.radioField2 input
{
    -webkit-appearance: none;
    border: 0;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    height: 28px;
    position: relative;
    margin: 0;
    width: 0;
}
.radioField2 input::before
{
    content: "\f00c";
    font-size: 12px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
.radioField2 img
{
    width: auto;
}
.radioField2 label
{
    margin-left: 30px;
    color: rgb(37, 33, 33);
}
.radioField2, .radioField2 input, .radioField2 label
{
    transition: 0.5s;
}
.radioField2.checked
{
    background-color: var(--primary-color);
}
.radioField2.checked input
{
    min-width: 28px;
    margin: 0 10px;
}
.radioField2.checked input::before
{
    display: block;
}
.radioField2.checked label
{
    color: rgb(234, 234, 234);
}

.radiofield, .radioField2
{
    opacity: 0;
}
.loading
{
    position: relative;
    width: 100%;
    flex: 1;
    display: grid;
    place-content: center;
    display: none;
}
.loading img
{
    width: 100px;
}
.thankyou
{
    display: none;
    text-align: center;
}
.thankyou img
{
    width: auto;
    margin: 0 auto;
    margin-bottom: 30px;
    opacity: 0;
}
.thankyouContent h1 {
    font-size: 45px;
    color: rgb(30, 64, 86);
    font-weight: bold;
    opacity: 0;
}
.thankyouContent p {
    font-size: 20px;
    color: rgb(30, 64, 86);
    font-weight: bold;
    opacity: 0;
}
.subscribeField
{
    background-color: rgb(233, 233, 233);
    width: 100%;
    border-radius: 100px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    opacity: 0;
}
.subscribeField input
{
    font-size: 12px;
    color: rgb(86, 86, 86); 
    font-weight: normal;  
    width: -webkit-fill-available;
    background-color: transparent;
    border: 0;
    height: 100%;
    padding-left: 35px;
    padding-right: 30px;
}
.subscribeField input:focus
{
    outline: none;
}
.subscribeField button
{
    background-color: var(--primary-color);
    min-width: 184px;
    height: 77px; 
    border-radius: inherit;
    border: 0;
    font-size: 16px;
    color: rgb(252, 252, 252);
    font-weight: bold; 
}




#error {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999 !important;
}