*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    background-color: black;
    color: white;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.c1{
    position: sticky;
    top: 0;
    z-index: 1;
}
.c1 nav li{
    padding: 0px 10px;
    font-size: 18px;
}
.c1 nav li{
    width: fit-content;
}
.c1 nav li a::after{
    content: '';
    background-color: rgb(255, 200, 0);
    width: 0px;
    height: 3px;
    display: block;
    transition: 0.3s;
}
.c1 nav a:hover::after{
    width: 100%;
}
.c2{
    color: white;
}
.c2 .r1 .cl1 a button{
    border-radius: 10px;
    padding: 8px 15px;
    font-weight: 500;
    margin-top: 20px;
    border: 2px solid;
}
.c3 .r1 .cl2 a{
    border-radius: 10px;
    padding: 8px 15px;
    margin-top: 20px;
    width: fit-content;
    display: block;
    text-decoration: none;
    color: white;
    border: 2px solid rgb(255, 200, 0);
}
.c4 .cl1 {
    overflow: visible;
}
.c4 .r1 button, .c8 .r1 .cl2 .submit, .c7 .r1 .cl1 a{
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    color: white; 
    border: 2px solid rgb(255, 200, 0);
}
.c4 .r1 button:hover, .c8 .r1 .cl2 .submit:hover, .c7 .r1 .cl1 a:hover{
    color: black; 
    background-color: rgb(255, 200, 0);
    transition: 0.3s;
}
.c6 .r1 .col span{
    margin-top: 10px;
}
.c7 .r1 .cl1 .child{
    border: 1px solid rgba(255, 200, 0, 0.575);
    border-radius: 10px;
}
.c7 .r1 .cl1 .child:hover{
    border-radius: 0px;
    transition: 0.5s;
}
.c7 .r1 .cl1 .child .img{
    overflow: hidden;
}
.c7 .r1 .cl1 .child img:hover{
    scale: 1.1;
    transition: 0.3s;
}
.c7 .r1 .cl1 .child h5{
    margin-bottom: 20px;
}
.c7 .r1 .cl1 .child a{
    text-decoration: none;
}
.c7 .r1 .cl1 .child a:hover i{
    color: black; 
}
.c8 .r1 .cl2{
    border: 5px double white;
    padding: 30px 0px;
}
.c8 .r1 .cl2 .inp{
    color: white;
    border: none;
    outline: none;
    border-bottom: 1px solid white;
    width: 90%;
    padding: 10px 0px;
    margin: 20px 0px;
}
.c8 .r1 .cl2 .inp::placeholder{
    color: white;
}
.c8 .r1 .cl2 .txt{
    padding-bottom: 0px;
}
.c8 .r1 .icons .icn{
    border: 2px solid rgb(255, 200, 0);
    color: white;
    border-radius: 100%;
    margin: 5px;
    font-size: 30px;
    padding: 25px;
    width: 0px;
    height: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.c8 .r1 .icons .icn:hover{
    transition: 0.5s;
    color: white;
    background-color: rgb(255, 200, 0);
}
body{
    position: relative;
}
.arrow{
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    background-color: rgb(255, 200, 0);
    border-radius: 100%;
}
.bdr-bottom{
    border-bottom: 2px solid white;
}
.bdr{
    border: 1px solid white;
}



