@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    --color1: #fff;
    --color2: pink;
    background: #ffffff; /* You can set your background color here */
}

.navBar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    position: absolute; /* You may need to adjust positioning */
    top: 0;
    left: 0;
    width: 100%;
     background-color: #fa7183;
    padding: 12px 10px;
    z-index: 1000; /* You may need to adjust z-index as needed */
}

.logo img {
    max-width: 40px; /* Adjust the max-width to your preference */
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
    list-style: none;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-style: oblique;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: 0.15s ease-in-out;
}
.menu li a:hover::after{width: 100%;}
.open-menu, .close-menu{
    position: absolute;
    color: #fff;
    cursor: pointer;
    font: size 1.5em;
    display: none;
}
.open-menu{
    top: 50%;
    right: 20px;
    transform: translateY(-50%);

}
.close-menu{
    top: 20px;
    right: 20px;
}
.dropdown {
    position: relative;
    display: inline-block;
   }
   
   .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
   }
   
   .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
   }
   
   .dropdown-content a:hover {
    background-color: #f1f1f1;
   }
   
   .dropdown:hover .dropdown-content {
    display: block;
   }
   
   .dropdown:hover .dropbtn {
    background-color: #3e8e41;
   }
#check{display:none;}
@media (max-width:660px){
    .menu{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height:100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index:1000;
        background-color: #fa7183;
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu{right: 0;}

     .navBar {
        display: flex;
        justify-content: space-between;
        list-style: none;
        position: absolute; /* You may need to adjust positioning */
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fa7183;
        padding: 12px 10px;
        z-index: 1000; /* You may need to adjust z-index as needed */
    }
    
}

@media (min-width: 1025px) and (max-width: 1280px){
    .navBar {
        display: flex;
        justify-content: space-between;
        list-style: none;
        position: absolute; /* You may need to adjust positioning */
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fa7183;
        padding: 12px 10px;
        z-index: 1000; /* You may need to adjust z-index as needed */
    }
    
}
