@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');

:root
{
    --primary-color: ;
    --secondary-color: ;

}

body
{
    font-family: "Unbounded";
    color: rgb(41, 41, 41);
}
main
{
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* background */
.rating_bg
{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(245, 244, 255);  
    width: 100%;
    height: 100%;
    z-index: -1;
}
.rating_bg img
{
    position: absolute;
    top: 0;
    left: 0;
}
.rating_bg img:first-child
{
    z-index: 10;
    width: max-content;
    height: 100%;
}
.rating_bg img:last-child
{
    width: 100%;
    height: 100%;
    z-index:0;
}
.side
{
    position: absolute;
    bottom: 80px;
    left: 80px;
}
.side h2
{
    font-size: 45px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}
.side .explore
{
    background-color: rgb(28, 27, 27);
    width: 286px;
    height: 68px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    border: 2px solid transparent;
    padding: 0 30px;
    text-align: start;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side .explore img
{
    position: relative;
    top: 0;
    transition: 0.5s;   
    width: auto;
    height: 100%;
}
.side .explore:hover img
{
    top: -15px;
}
.wrapper
{
    padding: 80px 0;
}
.rating
{
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.11);
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    display: grid;
}
.ratingWrapper
{
    padding: 70px;
    position: relative;
    height: 100%;
}
.shape1
{
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
.shape2
{
    position: absolute;
    left: -15px;
    bottom: -15px;
    transform: rotate(180deg);
    pointer-events: none;
}
.mainHeading
{
    font-size: 28px;
    font-weight: bold;
      
}
.starRating
{
    display: flex;
    width: 75%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 15px;
}
.starRating i
{
    border: solid 3px rgb(235, 233, 255);
    background-color: rgb(255, 255, 255);
    width: 18%;
    border-radius: 5px;
    height: 60px;
    font-size: 30px;
    color: rgb(230, 230, 230); 
    display: grid;
    place-content: center;
    cursor: pointer; 
}
.starRating i.active, .starRating i.activehover
{
    border-color: rgb(254, 198, 78);
    color: rgb(254, 198, 78);
}
.starRating span
{
    display: block;
    font-size: 12px;
    color: rgb(75, 75, 75); 
    margin-top: 10px;
}
.inputField
{
    margin-bottom: 30px;
}
.inputField .labelTxt, .inputField label
{
    font-size: 14px;
    font-weight: bold;
    display: block;
    width: 100%;
}
.inputField label a
{
    color: inherit; 
}
.inputField .textField
{
    width: 100%;
    height: 60px;
    border: solid 3px rgb(235, 233, 255);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding-left: 20px;
    margin-top: 10px;
}
::placeholder
{
    font-size: 12px;
    color: rgb(169, 169, 169);
}
.radioField
{
    display: flex;
    width: auto;
    align-items: center;
    height: auto;
    margin-top: 10px;
}
.radioField input
{
    -webkit-appearance: none;
    border: solid 3px  rgb(235, 233, 255);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    min-width: 33px;
    height: 33px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}
.radioField input::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background-color: rgb(41, 41, 41);
    width: 17px;
    height: 17px;
    display: none;
}
.radioField input:checked::before
{
    display: block;
}
textarea
{
    padding: 20px;
    height: 100px !important;
    resize: none;
}

.formTxt
{
    font-size: 12px;
    color: rgb(129, 129, 129);
    font-weight: 400;
    line-height: 1.5;
}
#sub
{
    width: 100%;
    background-color: rgb(18, 22, 51);
    height: 61px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    position: relative;
    z-index: 10;
    border: solid 2px transparent;
}
#sub i
{
    font-size: 15px;
    color: rgb(254, 198, 78);
    margin: 0 10px;
    position: relative;
    top: 1px;
    position: absolute;
    top: 53%;
    right: 35%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 0.4s;
}
#sub:hover i
{
    right: 28%;
    opacity: 1;
}
  
.thankyouPage
{
    background-image: url(../images/thankyou/tyBG.jpg);
    background-size: cover;
    display: grid;
    align-content: center;
}
.checked
{
    margin-bottom: 20px;
}
.thankyoutext
{
    text-align: center;
    font-size: 55px;
    color: rgb(0, 0, 0);
    font-weight: bold;
}
.thankyouBtn
{
    border-radius: 10px;
    background-color: rgb(28, 27, 27);
    border: solid 2px transparent;
    width: 286px;
    height: 68px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin-top: 50px;
}
  