.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:100px;
  z-index:999;
position:relative;
}
.site-logo img {
   width:150px;
	height:auto;
}
.site-nav {
  display: flex;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-nav a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}
/* Dropdown Menu Styles */
.site-nav ul li {
  position: relative;
}

.site-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  list-style: none;
  padding: 10px 0;
  min-width: 240px;
  z-index: 1000;
}

.site-nav ul li ul li {
  width: 100%;
}

.site-nav ul li ul li a {
  padding: 10px 20px;
  display: block;
  color: #fff;
  text-decoration: none;
}

.site-nav ul li:hover > ul {
  display: block;
}
.pre-footer {
	padding:30px 0;
}
.pre-footer img{
	width:100%;
}
.menu-item-gtranslate img{
width:20px;
}
.site-nav ul li.menu-item-gtranslate ul 
{
	min-width:40px!important;
}
/** \\ Footer \\**/
.site-footer {
    background: var(--light-bg);
    color:var(--dark-color);
    padding: 50px 20px 20px;
}
.footer-widgets-wrapper {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-widget.footer-widget-1 {
    width:33%;
}
.footer-widget ul{
		list-style-type:none;
}
	.footer-widget-title{
		margin-bottom:10px;
	}
	.footer-widget .menu-item{
    padding:5px 0;
	}
.footer-widget.contact-details {
    width:25%;
}
.footer-widget p,
.footer-widget li,.footer-widget a {
    color:var(--dark-color);
	text-decoration:none;
}
.footer-credit {
    text-align: center;
    font-size: 0.9em;
    color: color:var(--dark-color);
}
.footer-credit a {
    color: color:var(--dark-color);
    text-decoration: none;
    font-weight: bold;
}
.contact-social
 {
    display: flex
;
    gap: 10px;
}
.social-icon{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icon svg {
    width: 20px;
    height: auto;
}
@media (max-width: 768px) {
.site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 30px;
    background: var(--primary-color);
    padding: 20px;
  }
.site-nav.active{
    display: flex;
    width: 100%;
    right: 0;
    top: 100%;
}
.site-nav.active ul{
		flex-direction: column;
}
.site-nav.active ul a{
		color: var(--light-bg);
}
 .menu-toggle {
    display: block;
  }
.site-nav ul li ul {
    position: static;
    display: none;
    flex-direction: column;
    padding: 0;
    background-color: var(--primary-color);
  }
.site-nav ul li.active > ul {
    display: flex;
}
.site-nav ul li ul li a {
    padding: 10px 0;
    text-align: left;
 }
.footer-widgets-wrapper{
gap:30px;
}
.footer-widget,.footer-widget.footer-widget-1,.footer-widget.contact-details {
		width:100%;
}
}