@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: #0e5077;

}

  
body
{
    font-family: "Unbounded";
    width: 100%;
    height: auto;
}
main
{
    width: 100%;
    min-height: 100vh;
    position: relative;
}
.main_bg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}
.main_bg img
{
    width: 100%;
    height: 100%;
    position:fixed;
}
.logo
{
    height: auto;
    width: auto;
    position: relative;
    padding: 25px 20px;
}
.logo span
{
    font-size: 70px;
    color: var(--primary-color);
    line-height: 0;
    position: relative;
    bottom: -15px;
}
.surveyForm, .thankyou
{
    height: auto;
    padding: 70px 0;
    width: 48%;
    margin: 0 auto;
    position: relative;
}
.formContent
{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.formContent h1
{
    font-size: 40px;
    color: rgb(254, 254, 254);
    font-weight: bold;
}
.formContent a
{
    text-decoration: none;
    font-size: 15px;
    color: rgb(162, 181, 206);
}
.radioFeild
{
    width: 100%;
    border-bottom: solid 1px rgb(231, 229, 229);
    height: 70px;
    display: flex;
    align-items: center;
    opacity: 0;
}
.radioFeild input
{
    -webkit-appearance: none;
    border: solid 1px rgb(255, 255, 255);
    border-radius: 50%;
    background-color: transparent;
    width: 28px;
    height: 28px;
    cursor: pointer;
    position: relative;
}
.radioFeild input::before
{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-color: rgb(255, 255, 255);
    clip-path: circle(0 at 50% 50%);
    border-radius: inherit;

}
.radioFeild input::after
{
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: rgb(0, 0, 0);
    display: none;
}
.radioFeild input::before, .radioFeild input::after
{
    transition: 0.5s;
}
.radioFeild input:checked:before
{
    clip-path: circle(100% at 50% 50%);

}
.radioFeild input:checked:after
{
    display: block;
}

.formLabel
{
    font-weight: 400;
    font-size: 17px;
    color: rgb(254, 254, 254);
    margin-left: 20px;
}
.other_details
{
    border: solid 1px rgb(255, 255, 255);
    background-color: transparent;
    width: 100%;
    height: 140px;
    margin-top: 30px;
    resize: none;
    font-size: 12px;
    color: rgb(160, 169, 180);
    padding: 20px 35px;
    opacity: 0;
}
.reply.radioFeild input
{
    width: 31px;
    height: 31px; 
}
.reply.radioFeild input::before
{
    background-color: rgb(231, 229, 229);
}
.reply.radioFeild input::after
{
    color: rgb(87, 100, 117);  
}
.reply label
{
    font-size: 10px;
    font-weight: normal;
    color: rgb(254, 254, 254);  
    line-height: 1.5;
    margin-left: 20px;
}
.reply label span
{
    display: block;
    font-weight: bold;
}
.formbtn
{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 51px;
    font-size: 15px;
    color: rgb(87, 100, 117);
    text-transform: uppercase;
    border: 0;
    margin-top: 20px;
    opacity: 0;
      
}
.loading
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    display: none;
}
.loading img
{
    width: 100px;
}
.thankyou
{
    display: none;
    place-content: center;
    height: auto;
    text-align: center;
}
.thankyou img
{
    width: auto;
    margin: 0 auto;
    opacity: 0;
}
.thankyouContent h1
{
    font-size: 80px;
    color: rgb(254, 254, 254);
    text-transform: uppercase;   
    opacity: 0;
    margin-top: 15px;
}
.thankyouContent p
{
    font-size: 15px;
    color: rgb(162, 181, 206);
    opacity: 0;
    width: 75%;
    margin: 0 auto;
    margin-top: 15px;
}
.thankyou button
{
    margin: 0 auto;
    width: 70%;
    margin-top: 40px;
}
  






#error
{
    position: fixed;
    top: 20px;
    left: 20px;
}