:root
{
    --primary-color: #800000;
    --text-color: rgb(255, 255, 255);
    --btn-bg: rgb(0, 0, 0);
    --bt-bg-2: rgb(20, 20, 21);
    --heading-color: rgb(28,28,28);
    --bg-color: rgb(255,255,255);
    --radio-color: rgb(15, 13, 13);
}
body
{
   
    width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5,h6, p
{
    margin-bottom: 0;
}
a
{
    text-decoration: none;
    color: auto;
}
main 
{
    min-height: 100vh;
    width: 100%;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0px 40px 0px;
    z-index: 10;
    transform-style: preserve-3d;
}
main::before
{
    content: "";
    background-image: url(../images/background/bg.png);
    opacity: 0.53;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
}
.mainHead
{
    width: 100%;
    height: auto;
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
.logo
{
    font-size: 52px;
    color: var(--text-color);
    font-weight: bold;
    text-transform: capitalize;
}
.webLink
{
    font-size: 20px;
    color: black;
    font-weight: 300;  
}


main > section
{
    flex: 1;
    position: relative;
    z-index: 10;
    display: grid;
  
}
.Title
{
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    height: auto;
    z-index: -1;
}
.Title::after, .Title span::after, .Title::before,.Title span::before
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    height: 100%;

}
.Title::before, .Title::after
{
    z-index: 2;
}
.Title::before, .Title span::before
{
    background-color: rgb(197, 189, 189);
}
.Title span::before
{
    z-index: 1;
}
.Title span::after
{
    right: 0;
    left: auto;
    z-index: 1;
}
.Title h1
{
    font-size: 235px;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-color);
    line-height: 1;
    width: min-content;
}
.Title span
{
    position: absolute;
    top: 30px;
    line-height: 1;
    right: 0;
    font-size: 30px;
    color: var(--text-color);
    font-weight: bold;
    text-transform: capitalize;
}
#trim-slider
{
    width: 60%;
    margin: 0 auto;
}
.trim-employee
{
    width: 100%;
    text-align: center;
    height: auto;
}
.trim-employee img
{
    width: auto;
    height: auto;
}
.about-employee > *
{
    transform: translateY(0px);
    opacity: 0;
}
.about-employee h2
{
    font-size: 70px;
    font-weight: bold;
    color: var(--text-color);
}
.about-employee p
{
    font-size: 20px;
    color: var(--text-color);
    font-weight: normal;
}
  

.trim-btn
{
    width: 55%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.trim-btn .viewMore
{
    background-color: var(--bt-bg-2);
    padding: 0 80px;
    height: 60px;
    border-radius: 50px;
    font-size: 17px;
    color: var(--text-color);
    font-weight: bold; 
    border: 0;
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.sliderBtn
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sliderBtn button
{
    border-radius: 50%;
    background-color: var(--btn-bg);
    width: 78px;
    height: 100%;   
    font-size: 17px;
    color: var(--text-color);
    border: solid 1px transparent;
    z-index: 1;
    transition: 0.5s ease-in-out;
    transform: translateX(0);
}
.sliderBtn .prev:hover
{
    transform: translateX(-10px);
}
.sliderBtn .next:hover
{
    transform: translateX(10px);
}


/* step 2 */
.step-inner
{
    border-radius: 30px;
    background-color: var(--bg-color);
    width: 100%;
    height: 100%;
    position: relative;
}
  
button{
    margin: 10px;
}

.step-img
{
    width: 90%;
    position: relative;
    left: -25px;
    top: -10px;
}
fieldset
{
    width: 80%;
    margin-left: 25px;
    display: grid;
    align-content: center;
    height: 100%;
    padding: 50px 0;
    position: relative;
}


fieldset::before, fieldset::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(197, 189, 189);
    height: 100%;
    z-index: 100;

}
fieldset::before
{
    background-color: var(--bg-color);
}


.inputField
{
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    position: relative;
}
.inputLabel
{
    font-size: 20px;
    color: var(--heading-color);
    font-weight: bold;
    margin-bottom: 15px;
}
select.textInput
{
    -webkit-appearance: none;
    cursor: pointer;
}
.textInput
{
    border: solid 2px rgb(229, 234, 244);
    border-radius: 10px;
    background-color: var(--bg-color);
    width: 100%;
    height: 65px;
    padding-left: 30px;
    font-size: 14px;
    color: var(--heading-color);
    transition: 0.3s ease-in-out;
}
.textInput:focus
{
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0px 3px 38px 0px rgba(2, 48, 160, 0.3);
}
select.textInput
{
    -webkit-appearance: none;
}
.inputField select+span::after
{
    position: absolute;
    top: 55%;
    right: 15px;
    transform: translate(-55%, 0px);
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: var(--heading-color);
    pointer-events: none;

}
textarea.textInput
{
    height: 170px;
    padding-top: 30px;
}



.bottomLine
{
    border-bottom: dashed 1px rgb(229, 234, 244);
    width: 100%;
    margin: 20px 0 20px 0;
}
.formHeading
{
    font-size: 26px;
    color: var(--heading-color);
    font-weight: bold;
    width: 75%;
    margin-bottom: 20px;
}

.radioHeading
{
    font-size: 18px;
    color: var(--heading-color);
    font-weight: bold;
    width: max-content;
    padding: 0 25px;
    background-color: rgb(229, 234, 244);
    height: 46px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: grid;
    align-items: center;
}
.radiofield
{
    width: 20%;
    height: auto;
    border: solid 1px rgb(223, 228, 237);
}
.radiofield label
{
    font-size: 13px;
    color: var(--radio-color);
    font-weight: bold;
    width: 100%;
    background-color: rgb(229, 234, 244);
    height: 45px;
    text-align: center;
    line-height: 45px;
    text-transform: capitalize;
    border: solid 1px rgb(223, 228, 237);
}
.radiofield input
{
    -webkit-appearance: none;
    width: 100%;
    height: 50px;
    position: relative;
    cursor: pointer;

}
.radiofield input::before
{
    content: "";
    border-style: solid 2px rgb(229, 234, 244);
    border-radius: 50%;
    background-color: var(--bg-color);
    width: 29px;
    height: 29px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.radiofield input:checked:before
{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.nextPrev
{
    display: flex;
    flex-wrap: wrap;
    width: 64%;
    justify-content: space-between;
    align-items: center;

}
.nextPrev .prevStep
{
    background-color: rgb(44, 44, 44);
}
.nextPrev button, .nextPrev .apply
{
    background-color: var(--primary-color);
    padding: 0 40px;
    border-radius: 50px;
    border: 0;
    height: 60px;    
    font-size: 15px;
    color: var(--bg-color);
    font-weight: bold;
    text-transform: capitalize;
    transition: 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}
.nextPrev button span, .trim-btn .viewMore span
{
    position: relative;
}
.nextPrev button::before, .trim-btn .viewMore::before
{
    content: "";
    width: 100%;
    
    height: 100%;
    background-color: rgb(0 97 151);
    clip-path: circle(0 at 50% 50%);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.2s ease-in-out;
    
}
.nextPrev button:hover::before, .trim-btn .viewMore:hover::before
{
    clip-path: circle(70.7% at 50% 50%);
}

.numberSingle
{
    width: 55px;
    height: 55px;
    display: grid;
    place-content: center;  
    position: relative;
    background-color: var(--bg-color);
}

.radioNumbers label
{
    margin: 0;
}
.radioNumbers input
{
    -webkit-appearance: none;
    border: solid 2px rgb(229, 234, 244);
    border-radius: 50%;

    width: 100%;
    height: 100%;
    cursor: pointer;

    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.numberSingle .inputLabel
{
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.numberSingle.checked input
{
    background-color: var(--primary-color);
}
.numberSingle.checked .inputLabel
{
    color: var(--text-color);
}
.ratingTxt
{
    display: flex;
    width: 97%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}  
.ratingTxt span
{
    font-size: 14px;
    color: var(--heading-color);
    display: block;
}








/* thankyou */
.thankyou
{
    text-align: center;
}
.thankyou .thankyouuser
{
    width: auto;
    position: relative;
    top: -100px;
}
.thankyoumsg
{
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%,-100px);
    width: 60%;
}
.thumbsUp
{
    border-radius: 50%;
    background-color: var(--bg-color);
    width: 122px;
    height: 122px;
    text-align: center;
    line-height: 122px;
    margin: 0 auto;
}
.thumbsUp img
{
    width: auto;
}
.thankyoumsg h2
{
    font-size: 50px;
    color: var(--heading-color);
    font-weight: bold;
    text-align: center;
}
  