@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* --primary: #F3674E; */
    --primary: #F07F1B;
    --secondary: #5e5e5e;
    --light: #f9f9f9;
    --info: #AABDC4;
    --black: #303030;
}

::-webkit-scrollbar {
    display: none;
}
form span{
    color: var(--primary);
}

body {
    background-color: var(--light);
}

.bg-light {
    background-color: var(--primary) !important;
}

.topbar a {
    color: var(--light);
    font-weight: 400;
    font-size: 15px;
}

nav a {
    color: var(--secondary) !important;
    text-transform: uppercase;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
}

.active {
    color: #606163 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
}


h1 {
    color: #404040;
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 60px;
    letter-spacing: 2px;
}

li,
p {
    color: var(--secondary);
    font-weight: 400;
    letter-spacing: 1px;
}

.primary-button {
    padding: 10px 25px;
    background-color: var(--primary);
    color: var(--light);
    border: 1px solid var(--primary);
    border-radius: 5px;
    position: relative;
}

.secondary-button {
    padding: 10px 25px;
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 5px;
}

.hero small {
    padding: 2px 20px;
    border-radius: 5px;
    color: var(--primary);
    text-transform: uppercase;
    border: 1px solid var(--primary);
}

.box {
    width: 250px;
    height: 250px;
    display: flex;
    background-color: var(--primary);
    color: var(--light);
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.box::after {
    content: '';
    width: 100%;
    height: 100%;
    right: -65%;
    bottom: -65%;
    background-color: var(--light);
    /* border: 5px solid var(--light); */
    position: absolute;
    border-radius: 50%;

}

.box::before {
    content: '';
    width: 100%;
    height: 100%;
    top: -65%;
    left: -65%;
    border: 5px solid var(--light);
    position: absolute;
    border-radius: 50%;

}

.box h5 {
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--light);
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary);
}

.icon-box svg {
    color: var(--light);
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 45px;
        line-height: 40px;
    }
}

.custom {
    position: relative;
}

.custom::after {
    content: "";
    width: 300px;
    height: 300px;
    filter: blur(100px);
    opacity: .2;
    background-color: var(--primary);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    top: 0;
}

.custom::before {
    content: "";
    width: 300px;
    height: 300px;
    filter: blur(100px);
    opacity: .2;
    background-color: var(--primary);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    bottom: 0;
    right: 0;
}

.banner h1 {
    position: relative;
    text-align: center;
    color: var(--light);
}

.banner {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

input[type="radio"] {
    accent-color: var(--black);
}

.result-card {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 3px solid var(--secondary); */
    border-radius: 50%;
}

.footer li {
    list-style: none;
    padding-top: 14px;
}

.footer li a {
    color: var(--secondary);
}

.copyright {
    background-color: var(--primary);
    padding: 10px 0;
}

.copyright a {
    color: var(--light);
}

marquee {
    background-color: var(--primary);
    color: var(--light);
}
.icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
    transition: all .4s ease;
}
.icon i{
    color: var(--primary);
}
.icon:hover{
    background-color: var(--primary);
}
.icon:hover i{
    color: var(--light);
}
.footer i{
    color: var(--primary);
}
.footer a:hover{
    color: var(--primary);
}

.slider-control button{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background-color: transparent;
    transition: all .4s ease;
    cursor: pointer;
}
.slider-control button i{
    color: var(--primary);
}
.slider-control button:hover{
    background-color: var(--primary);
}
.slider-control button:hover i{
    color: var(--light);
}

button[aria-disabled="true"]{
    opacity: .1;
    cursor: not-allowed;
    color: var(--info);
} 