body{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: white;
    background-color: white;
}

p{
    font-family: 'Poppins', sans-serif;
    color: white;
}

button{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: #1887FF;
    border: none;
    border-radius: 30px;
    padding: 15px 24px;
    color: white;
}

button:hover{
    background-color: #56A7FF;
}

/* -------NAVBAR------- */
nav{
    
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #24293D;
    padding: 0px 0px;
}
.navbar{
    margin: 0px;
    background: #24293D;
    width: 100%;
}

ul.links{
    padding: 0;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: white;
    font-size: 16px;
}

a:hover{
    color: #ABCDF1;
}

header{
    position: relative;
    padding: 0 2rem;
}

.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo{
    width: 136px;
    height: 36px;
}

.logo{
    margin-left: 1rem;
}

.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle-button{
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
    margin-right: 1rem;
}

.action-button{
    background-color: #1887FF;
    color: white;
    border:none;
    outline:none;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.6 ease;
    margin-right: 1rem;
    margin-left: 3rem;
}

.action-button:hover{
    scale: 1.1;
    color: white;
}

.action-button:active{
    scale: 0.95;
}

.dropdown-menu{
    display: none;
    position: absolute;
    right: 2rem;
    top:60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.185, 0.885, 0.32, 1.275);
}

.dropdown-menu.open{
    height: 220px;
}

.dropdown-menu li{
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.dropdown-menu .action-button{
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul li a.active{
    color: #1887FF;
    position: relative;
    display: inline-block;
}

nav ul li a.active::after{
    content: '';
    border-radius: 2px;
    height: 3px;
    width: 13px;
    background: #1887FF;
    position: absolute;
    left: calc(50% - 10%);
    bottom: -3px;
}

/* -----CONTENT------ */
.header{
    padding: 10px 15% 0px 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    background: linear-gradient(180deg, #24293D 0%, #1B335C 54.67%);
}

.header img{
    width: 50%
}

.header-content{
    margin-bottom: 30px;
}

.header-content h1{
    font-size: 64px;
    margin-bottom: 0px;
}

.header-content p{
    padding-left: 17.6%;
}


.section-title h1{
    color: black;
    margin-bottom: 8px;
}

.section-title p{
    color: black;
    margin-top: 8px;
    margin-bottom: 30px;
}

.tag{
    background: #1C345D;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 30px;
    position: absolute;
    top: 0px;
    left: 15px;
}

.new-products{
    margin: 5% 5%;
}

.new-products h1, .new-products p{
    text-align: center;
}

.new-products-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #252A3E;
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    border-radius: 25px;
    padding: 20px 5%;
}

.new-products-card-container{
    display: flex;
    justify-content: center;
    gap: 2%;
}

.new-products-card img{
    transition: transform 0.3s;
}

.new-products-card:hover img{
    transform: scale(1.1);
    transition: transform 0.3s;
}

.new-products-card h1{
    font-size: 28px;
    margin-bottom: 0px;
}

.new-products-card#large{
    position: relative;
}

.new-products-card button{
    width: 110px;
}

.new-products-card-container{
    display: flex;
}

.new-products-card#large img{
    width: 300px;
}

.new-products-card#medium{
    flex-direction: row;
    position: relative;
}

.product-medium-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 2%;
    padding-right: 5%;
}

.new-products-card#medium img{
    width: 150px;
}

.new-products-card#small{
    width: 100%;
}

.new-products-card#small img{
    height: 130px;
}


.card-medium-small-container{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card-small-container{
    display: flex;
    justify-content: center;
    gap: 5%;
}

.best-seller{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    background: linear-gradient(337.08deg, #DBD2C9 46.25%, #24293D 46.25%);
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    border-radius: 25px;
    margin: 5% 5%;
}


.best-seller-image{
    transition: top ease 0.3s;
    transform: 0.3s;
    position: relative;
    top: 30px;
    width: 50%;
    margin-bottom: 40px;
}

.best-seller h1{
    margin-bottom: 5px;
}

.best-seller p{
    padding: 10px 24px;
    background: #1887FF;
    border-radius: 30px;
}

.best-seller button{
    margin: 3% 0px 2%;
}

.shadow{
    transition: visibility 0s, opacity 0.2s linear;
    opacity: 0;
    width: 20%;
    bottom: 90px;
}

.best-seller:hover .shadow{
    opacity: 100%;
}

.best-seller:hover .best-seller-image{
    transform: 0.3s;
    top: 10px;
}

.promotional-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    /* height: 20px; */
    /* height: 1%; */
}

.promotional-banner img{
    width: 100%;
    height: 10%;
    height: auto;
    border-radius: 25px;
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
}


.discount{
    width: 40%;
}

.phone{
    width: 20%;
}


/* -------FOOTER-------- */
footer{
    display: flex;
    flex-direction: column;
    background: #1B335C;
    padding-top: 36.5px;
    padding-bottom: 0px;
    align-content: space-evenly;
}

footer h4{
    font-style: bold;
    margin: 6px 0px 12px;
}

.footer-content{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px 10px;
}

.company-information{
    width: 284px;
}

.company-logo{
    margin-top: 1%;
    margin-bottom: 0.3%;
    width: 126px;
    height: 33px;
}

.information{
    margin-top: 10px;
    text-align: justify;
}

.quotes{
    font-style: italic;
}

#contact-form-container{
    display: flex;
    flex-direction: column;
}

.contact-fill{
    display: flex;
    flex-direction: column;
    width: 396px; 
}

.contact-fill input{
    margin: 5px 0px;
}

.input-field{
    padding: 10px 22px;
    font-family: 'Raleway';
    font-weight: 700;
    color: #9C9C9C;
    border-style: none;
    border-radius: 50px;
}

.input-field:focus{
    outline-color: #9C9C9C; 
    color: black;
}


.input-field#message{
    align-items: start;
    height: 74px;
    border-radius: 20px;
    resize: none;
    margin: 5px 0px 20px;
} 

form button{
    display: flex;
    width: 103px;
    height: 39px;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
}

#social-media-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.social-media a{
    display: flex;
    justify-content: left;
    align-items: center;
    text-decoration: none;
}

.social-media a p{
    margin: 6px;
}

.social-media-logo{
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

#YouTube{
    height: 16px;
}

.copyright{
    margin: 0px;
    margin-top: 35px;
    padding: 15px 7%;
    background: #24293D;
}

/*------ RESPONSIVE----- */
@media screen and (max-width: 1120px) {
    .new-products-card#small img{
        width: 70%;
        height: auto;
    }
}

@media screen and (max-width: 1060px) {
    .header h1{
        font-size: 40px;
    }

    .new-products-card h1{
        font-size: 20px;
    }

    .new-products-card-container{
        flex-direction: column;
    }

    .new-products-card#medium{
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header{
        flex-direction: column;
        text-align: center;
    }
    .header-content p{
        padding-left: 0px;
    }

    .new-products-card button{
        padding: 10px 10px;
    }

    .content h1{
        font-size: 20px;
    }
    .content p{
        font-size: 10px;
    }

    /*------ NAVBAR----- */

    .navbar .links, .navbar .action-button{
        display: none;
    }

    .action-button{
        margin: 0px;
    }

    .navbar .toggle-button{
        display: block;
    }

    .dropdown-menu{
        display: block;
    }
    .contact-fill{
        width: 230px; 
    }
}

 /*------ NAVBAR----- */
@media(max-width: 480px){
    .dropdown-menu{
        left: 2rem;
        width: unset;
    }
}
