/* css header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
    background: white;
    box-shadow: var(--shadow-medium);
}
input::placeholder ,button {
    font-family: 'Rubik', sans-serif;
}

.languages img {
    height: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.languages img:hover {
    transform: scale(1.1);
}

ul.menu.list-unstyled.ml-3.d-lg-flex.align-items-center.gap-4 {
    margin-top: 15px;
}

.main-header {
    background-color: #fff;
    padding: 15px 0px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.form-check.header:hover {
		background: #e4e4e4;
		cursor: pointer;
		
	}
label.form-check-label:hover {
    cursor: pointer;
    background: #e4e4e4;
}
.logo img {
    height: 50px;
}

.nav {
    flex: 1;
    justify-content: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    /*margin-left: 130px;*/
    /*margin-left: 70px;*/
    justify-content: center;
    padding: 0;
}

.menu li {
        font-size: 14px;
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 5px;
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    min-width: 200px;
}

.submenu li {
    position: relative;
    
}

.submenu a {
    padding: 8px 20px;
    color: #000;
    font-weight: normal;
    white-space: nowrap;
}

.menu li:hover > .submenu,
.submenu li:hover > .submenu {
    display: block;
}

.submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 1px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.download-btn {
    background-color: #004a99;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-btn i {
    font-size: 14px;
}
.submenu a:hover {
    cursor: pointer;
    background: #e4e4e4;
}
.menu-toggle {
    /* display: none; */
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.nav .submenu {
    display: none;
    position: absolute;
    min-width: 200px;
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 0 0 5px 5px;
}
.nav .submenu li{
    cursor: pointer;
}
.nav .dropdown:hover > .submenu {
    display: block;
}
#close-menu {
    display: none;
}

.nav .dropdown > a {
    cursor: pointer;
}
/* fin css header */

/* css footer */
.footer-newsletter {
    background-color: #f8f8f8;
    padding: 60px 20px;
}
.footer-newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.newsletter-left {
    flex: 1 1 400px;
}
.newsletter-left h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.newsletter-left p {
    color: #666;
    max-width: 500px;
}
.newsletter-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: flex-end;
}
.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 600px;
}
.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 25px 0 0 25px;
    outline: none;
}
.newsletter-form button {
    background-color: #2f3e48;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}
.footer-links {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-nav a {
    text-decoration: none;
    color: #222;
}
.footer-bottom {
    background-color: #f8f8f8;
    padding: 20px 10px;
    text-align: center;
    color: #888;
}
.footer-nav a:hover {
    text-decoration:underline;
}
.category-option.hide-checkbox-header {
    display: none;
}

   .btn.btn-primary{
       padding: 10px 20px !important;
           background-color: #014a98;
    border-color: #014a98;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Rubik', sans-serif;

   } 
     .btn.btn-primary:hover{
        background-color: #0b5ed7!important;

   } 
   
 .search-box {
    width: 260px;
}

.search-input {
    width: 100%;
    padding-right: 45px; /* space for the button */
      padding: 10px 10px !important;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.search-btn:hover {
    color: #000;
}  
 

/* fin css footer */
