*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.spinner {
    position: relative;
    width: 70px;
    height: 70px;
    border: 12px solid #ff3333;
    border-top: 12px solid #ff0000;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}
.spinner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    /* transform: translateX(-50%); */
    width: 20px;
    height: 20px;
    /* border-left: 15px solid transparent;
    border-right: 15px solid transparent; */
    border-bottom: 20px solid #ffffff;
}
.spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 12px;
    background-color: white;
    z-index: 1;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#content {
    display: none;
}
.loaded #loader {
    opacity: 0;
    pointer-events: none;
}
.loaded #content {
    display: block;
}
.subHeading{
    height: 60px;
    width:100%;
    background: linear-gradient(to right, #DD4355, #4E197D);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
}
#closesubHeading{
    position: absolute;
    right: 2rem;
}
.subHeading > b > a{
    color: white;
    margin-left: 10px;
}
a{
    text-decoration: none;
}
.signupBtn{
    color: white;
    background-color: #DD4355;
    padding: 10px 1rem;
    border: none;
    border-radius: 10px;
}
header{
    box-shadow: 2px 2px 10px rgb(107, 107, 107);
}
.headerContent{
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: 60px;
    margin: auto;
}
.logo{
   height: 60px;
   display: flex;
   place-items: center;
   width: 240px;
   justify-content: space-between;
}
.logo > a{
    color: black;
}

.logo > img{
    width: 170px;
}
ul{
    list-style: none;
    display: flex;
    line-height: 60px;
    width: 140px;
    display: flex;
    justify-content: space-between;
}
main{
    text-align: center;
    width: 40%;
    height: auto;
    padding: 3rem 0;
    margin: auto;
    margin-top: 7rem;
}
main > b{
    color: #4E197D;
    font-size: larger;
}
input{
    width: 100%;
    height: 30px;
    border: 1px solid rgb(201, 201, 201);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 1rem;
    outline: none;
}
select{
    width: 103%;
    height: 45px;
    border: 1px solid rgb(201, 201, 201);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 1rem;
    outline: none;
}
#check{
    width: 15px;
    height: 15px;
}
.btnOne{
    background-color: #d72a3e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 22px;
}
.btnOne:hover{
    background-color: #fff;
    color: black;
}
.flex{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}
.flex > *{
    color: black;
    font-size: 15px;
}
footer{
    margin-top: 3rem;
}
footer > .grid{
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-between;
}
.social{
    margin: 2rem 0;
}
.social > *{
    font-size: 2em;
}
.itemOne{
    width: 360px;
   
}
.itemOne > img{
    width: 180px;
}
.itemOne > ol{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}
.itemOne > ol > li{
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid #d4d4d4;
    font-size: 1.1em;
}
.itemOne > ol > li:last-child{
    border: none;
}
.itemOne > ol > li > a{
    color: #646464;
}
.itemTwo,.itemThree,.itemFour{
    width: 300px;
    color: #646464;
    border-left: 1px solid #eae9e9;
    padding-left: 1rem;
}
a{
    color: #646464; 
}
.itemTwo > ul {
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* Changed from space-around to center */
    align-items: flex-start; /* Aligns items to the start (left) */
    width: 100%;
    height: auto; /* Changed from fixed height to auto */
    gap: 1px; /* Optional: adds consistent spacing between list items */
}
.itemTwo > ul > li {
    max-height: 40px;
}

.itemThree > ul {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Changed from space-around to center */
    align-items: flex-start; /* Aligns items to the start (left) */
    width: 100%;
    height: auto; /* Changed from fixed height to auto */
    gap: 1px; /* Optional: adds consistent spacing between list items */
}
.itemThree > ul > li {
    max-height: 40px;
}


.itemFour > ul {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Changed from space-around to center */
    align-items: flex-start; /* Aligns items to the start (left) */
    width: 100%;
    height: auto; /* Changed from fixed height to auto */
    gap: 1px; /* Optional: adds consistent spacing between list items */
}
.itemFour > ul > li {
    max-height: 40px;
}
.otherFlex{
    display: flex;
}
.copyright{
    margin: 2rem 0;
    color: #646464;
}
.lang{
    display: flex;
    justify-content: space-between;
    width: 60%;

}
.lang > i{
line-height: 30px;
font-size: 1.5em;
}
.backUp{
    width: 40px;
    height: 40px;
    background-color: #d72a3e;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: grid;
    place-items: center;
}
.backUp > i {
    color:white;
}
@media screen and (max-width:600px) {
    footer > .grid{
        flex-direction: column;
    }
    .otherFlex{
        margin-top: 2rem;
    }
    main{
    width: 80%;
   
}
.subHeading{
  flex-direction:column;
}
.itemTwo,.itemThree,.itemFour{
    display:none;
}
}