/* NAV PROPERTIES */
/* Navigation style 1 */
.navbar-style-1{display: flex; justify-content: space-between; align-items: center;}
.navbar-logo{width: 250px;}
.navbar-logo a{display: block; width: inherit;}
.navbar-logo a img{width: inherit;}
.navbar-other{display: flex; justify-content: space-between; gap: 50px; align-items: center;}

/* lINKS PROPERTIES */
.nav-links{margin: 0; list-style: none;}

/* links style 1 */
.links-style-1{display: flex; gap: 20px;}
.links-style-1 li{color: var(--dark);}
.links-style-1 li a{text-decoration: none; color: inherit; display: block; padding: 10px; border: 10px; border-radius: 10px;}
.links-style-1 li a:hover{background: var(--gradient); color: var(--light);}
.links-style-1 .active {font-weight: bold; color: var(--dark);}

/* SEARCH PROPERTIES */


/* SIDEBAR PROPERTIES */
.side-bar{position: fixed; z-index: 10; transition: 0.2s; left: -100%;}
.side-bar .side-links{margin: 0; padding: 0; list-style: none;}
/* sidebar style 1 */
.sidebar-style-1{top: 0; background-color: black; height: 100%; padding: 50px; min-width: 300px;}
.sidebar-style-1 .side-links{margin-top: 50px;}
.sidebar-style-1 .side-links li a{display: flex;  text-decoration: none; padding-top: 10px; padding-bottom: 10px; color: var(--light);}
.sidebar-style-1 .side-links .active a{background: var(--gradient); padding-left: 20px; border-radius: 5px;}
