:root{
    --white: #f0eeee;
    --orange:#EB6A28;
    --lightgrey:#8A8C99;
    --darkgrey:#383838;
    --black: #151515;
}
html{
    overflow: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
    background-color: var(--white);
}
.main{
    width: 100dvw;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.header{
    width: 100%;
    position: relative;
    display: flex;
    height: fit-content;
}
.navbar{
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1{
    font-size: 1.2rem;
    line-height: 3rem;
}
span{
    color: #EB6A28;
}
.links {
    display: flex;
    gap: 2rem;
    list-style: none;
    border: 1.5px solid var(--orange);
    border-radius: 30px;
    padding: 15px 20px;
}
.links a{
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.links a:hover{
    color: var(--orange);
}
.sm{
    display: flex;
}
.sm a{
    padding: 15px;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease-out;
}
.sm a:hover{
    color: var(--orange);
}
.toggle_btn {
    color: var(--black);
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

/* Dropdown Menu */
.dropdown_menu{
    display: none;
    position: absolute;
    top: 4.5rem;
    height: 0;
    width: 100dvw;
    background-color: rgba(240, 238, 238, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.24, 1.25, 0.66, 1.18);
}

.dropdown_menu.open {
    height: 300px;
}

.dropdown_menu li {
    width: 100%;
    background-color:rgba(240, 238, 238, 0.5);
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.dropdown_menu li a{
    width: 100%;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.dropdown_menu li a:hover{
    color: var(--orange);

}
.dropdown_menu .sm {
    width: 50%;
    min-width: 350px;
    margin-bottom: 2rem;
    background-color: rgba(240, 238, 238);
    border: 1.5px solid var(--darkgrey);
    border-radius: 30px;
    display: flex;
    justify-content: center;

}
@media(max-width: 1200px){
    .links,
    .sm {
        display: none;
    }

    .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }
}

.batteries-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.battery-image{
    width: 60%;
    min-width: 320px;
    border: 2.5px solid #ffffff;
    border-radius: .5rem;
    margin: 2rem;
}

.batteries-container h3{
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: center;
}
.battery-type{
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2.5rem;
}

.batteries-container p{
    text-align: center;
    font-size: 1.2rem;
    line-height: 2rem;
    margin-top: 2rem;
}

#battery-warranty{
    width: 100dvw;
    height: fit-content;
    display: flex;
}

.warranty-registration{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    padding: 20px 20px;
}
.warranty-title h2{
    color: var(--orange);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.p1{
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
.p2{
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}
.warranty-form{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.warranty-inputs{
    width: 45%;
    min-width: 300px;
    height: 50px;
    margin: 1rem;
    outline: none;
    border: 1.5px solid var(--darkgrey);
    border-radius: 3px;
    padding-left: 20px;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.warranty-inputs:focus{
    border: 1.5px solid #0000ff;
}

.warranty-inputs::placeholder{
    color: var(--lightgrey);
}

.warranty-registration button{
    font-weight: 500;
    margin-top: 20px;
    padding: 15px 25px;
    cursor: pointer;
    background-color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 30px;
    color: var(--white);
    transition: 0.2s ease-in-out;
}

.warranty-registration button:hover{
    background-color: transparent;
    border: 2px solid var(--orange);
    border-radius: 10px;
    color: var(--orange);
    transform: translateY(-5px);
}

.warranty-policy{
    width: 100dvw;
    display: flex;
    flex-direction: column;
    padding: 5rem;
}

.warranty-policy h2{
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.p3{
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.warranty-list{
    display: flex;
    flex-direction: column;
    text-align: justify;
}
.warranty-list li{
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    list-style:circle;
}

@media (max-width: 745px){
    .warranty-registration{
        padding: 1rem;
    }
    .warranty-title h2{
        font-size: 1.8rem;
    }
    .warranty-inputs{
        width: 95%;

    }
    .warranty-policy{
        padding: 1.5rem;
    }
}

.recycle-policy{
    width: 100dvw;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    text-align: justify;
}

.recycle-policy h2{
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.p3{
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 745px){
    .recycle-policy{
        padding: 1.5rem 1.5rem;
    }
}

/* Footer Start */
footer{
    display: flex;
    flex-direction: column;
    width: 100dvw;
    padding-bottom: 80px;
    background-color: var(--darkgrey);
    margin-top: 30px;
}
footer span{
    background: transparent;
}
.footer-info{
    display: flex;
    width: 100%;
    padding: 80px;
    background-color: var(--darkgrey);
    align-items: flex-start;
    justify-content: space-between;
}
.footer-info h4{
    background: transparent;
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer-info p{
    background: transparent;
    font-size: 0.9rem;
    line-height: 1.5rem;
}
.menu, .menu a, .contact, .contact a, .hours, .legal, .legal a{
    background: transparent;
    color: var(--white);
    display: flex;
    flex-direction: column;
}
.menu a, .legal a{
    background: transparent;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5rem;
    transition: 0.3s ease-in-out;
}
.menu a:hover, .legal a:hover{
    color: var(--orange);
}
.contact a{
    background: transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5rem;
    transition: 0.3s ease-in-out;
}
.contact a:hover{
    color: var(--orange);
}
.footer-copyright{
    width: 100%;
    font-size: 0.8rem;
    font-weight: 300;
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--lightgrey);
    border-bottom: 1px solid var(--lightgrey);
    background:transparent;
    color: var(--white);
}
@media(max-width: 1000px){

    .footer-info{
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.menu, .contact, .hours{
    margin-bottom: 30px;
}
.footer-info h4{
    margin-bottom: 15px;
}
}
/* Footer End */