/*Navbar*/
/* Style the dropdown menu */
 header {
	 height: 90px;
 }
 #navbar {
     display: flex;
     align-items: center;
     box-sizing: border-box;
     color: #000;
     position: fixed;
     top: 20px;
     left: 10%;
     right: 10%;
     width: auto;
     margin: 0;
     z-index: 10000;
     border-radius: 20px;
     background: #111111;
     padding: 0 2%;
	 box-shadow: #000 0px 20px 30px -10px;
}	
.nav-wrapper {
     box-sizing: border-box;
}
 #navbar .logo {
	 display: flex;
     margin: auto 0;
	 padding: 5px;
}
#navbar .logo a {
	display: inherit;
}
 .logo img {
     width: 140px;
}

@media (max-width: 375px){
	.logo img {
         width: 100px;
    }
}

 #navbar ul {
	 margin: 0px;
     display: inline-flex;
     flex: 1 0 auto;
     justify-content: end;
	 align-items: center;
     list-style: none;
	 font-size: 16px;
     transition: transform 0.5s ease-out;
     -webkit-transition: transform 0.5s ease-out;
}
 #navbar ul li {
     display: inline-block;
     position:relative;
     padding: 20px 10px;
     color: #818180;
     font-size: inherit;
     transition: padding 0.5s ease-out;
     -webkit-transition: padding 0.5s ease-out;
}
 #navbar ul li a,  #navbar ul li p {
     position: relative;
     display: inline;
     font-size: 16px;
     color: inherit;
     letter-spacing: 1px;
     text-decoration: none;
     text-transform: capitalize;
     transition: all 0.5s ease;
     -webkit-transition: all 0.5s ease;
	 cursor: pointer;
}
 #navbar .contact-us {
     display: flex;
     justify-content: center;
     align-items: center;
     color:var(--color-prgreen);
     background-color: var(--color-prblack);
	 padding: 8px 25px;
     margin-left: 30px;
	 box-shadow: 5px 4px 6px -3px var(--color-prblack);
     border-radius: 25px;
     transition: all 0.5s ease-out;
     -webkit-transition: all 0.5s ease-out;
}
 #navbar .contact-us:hover {
     color: #fff;
	 transform: scale(1.1);
	 box-shadow: rgba(28,29,27, 0.4) 5px 5px, rgba(28,29,27, 0.3) 10px 10px, rgba(28,29,27, 0.2) 15px 15px, rgba(28,29,27, 0.1) 20px 20px, rgba(28,29,27, 0.05) 25px 25px;
}
 #navbar ul  .contact-us2 {
	 position:relative;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 color:var(--color-prgreen);
	 background-color: var(--color-prblack);
	 margin-left: 30px;
	 box-shadow: 5px 4px 6px -3px var(--color-prblack);
	 border: 3px solid var(--color-prgreen);
	 border-radius: 25px;
	 transition: all 0.5s ease-out;
	 -webkit-transition: all 0.5s ease-out;
}
 #navbar .contact-us::before {
	--border-size: -3px;
    --border-angle: 0turn;
    content: "";
    position: absolute;
    top: var(--border-size);
    left: var(--border-size);
    right: var(--border-size);
    bottom: var(--border-size);
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(to left, #ffffff, var(--color-prgreen)) border-box;
    background-image: conic-gradient(from var(--border-angle), #fff 10%, var(--color-prgreen) 50%, #fff);
    background-position: center center;
    background-repeat: no-repeat;
    animation: bg-spin 3s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
 #navbar .contact-us2:hover {
     color: #fff;
	 transform: scale(1.1);
	 box-shadow: rgba(28,29,27, 0.4) 5px 5px, rgba(28,29,27, 0.3) 10px 10px, rgba(28,29,27, 0.2) 15px 15px, rgba(28,29,27, 0.1) 20px 20px, rgba(28,29,27, 0.05) 25px 25px;
}
#navbar .dropdown-menu {
     width: auto;
     position: absolute;
     display: none;
     padding: 10px 20px;
     top: 60px;
     left: 0;
     background-color: #111111;
     border-radius: 10px;
     box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
	 box-sizing: border-box;  
	 z-index: 2;
}
 #navbar ul li.dropdown:hover > ul.dropdown-menu {
	display: flex;
    flex-direction: column;
}
 #navbar .dropdown-menu li {
     margin: 0px 10px;
     padding: 0;
	 width: 100%;
	 text-align: center;
}
#navbar .dropdown-menu li::after  {
	 position: realtive;
	 display:block;
     content: "";
	 background: linear-gradient(to left, #ffffff, var(--color-prgreen));
	 height: 2px;
	 width: 100%;
	 margin: 5px 3px; 
}
#navbar .dropdown-menu li:last-child::after  {
	 display:none;
}
 #navbar ul.dropdown-menu li a {
     white-space: nowrap;
	 width: 100%;
}
 @media (max-width: 1430px) {
     #navbar ul li {
         padding-left: 10px;
         padding-right: 10px;
    }
}
 @media (max-width: 1285px) {
     #navbar ul li {
         font-size: 17px;
    }
}
 @media (max-width: 1176px) {
     #navbar ul li a {
         font-size: 17px;
    }
     #navbar #menu > li {
         padding-right: 10px;
         display: none;
    }
     #navbar .contact-us {
         width: 105px;
    }
}
 #navbar ul li:not(.contact-us) a:hover ,  #navbar ul li:not(.contact-us) p:hover {
     color: var(--color-prgreen);
}

/* Mobile Menu Menu Icon*/
 @media (max-width: 1176px) {
     .menuIcon {
		 width: 30px;
    	 height: 30px;
		 position: absolute;
		 cursor: pointer;
		 display: block;
		 z-index: 12;
    }
     .grid-container .background-color2 {
         display: none;
    }
     .image-section .image {
         max-width: 550px;
    }
     .icon-bars {
         background: #818180;
         position: absolute;
         left: 1px;
         top: 45%;
         height: 2px;
         width: 20px;
         -webkit-transition: 0.4s;
         transition: 0.4s;
    }
     .icon-bars::before {
         background: #818180;
         content: "";
         position: absolute;
         left: 0;
         top: -8px;
         height: 2px;
         width: 20px;
         -webkit-transition: 0.3s width 0.4s;
         transition: 0.3s width 0.4s;
    }
     .icon-bars::after {
         margin-top: 0px;
         background: #818180;
         content: "";
         position: absolute;
         left: 0;
         bottom: -8px;
         height: 2px;
         width: 20px;
         -webkit-transition: 0.3s width 0.4s;
         transition: 0.3s width 0.4s;
    }
     .icon-bars.overlay {
         background: #617281;
         background: #b7c7d3;
         width: 20px;
         animation: middleBar 3s infinite 0.5s;
         -webkit-animation: middleBar 3s infinite 0.5s;
    }
     @keyframes middleBar {
         0% {
             width: 0px;
        }
         50% {
             width: 20px;
        }
         100% {
             width: 0px;
        }
    }
     @-webkit-keyframes middleBar {
         0% {
             width: 0px;
        }
         50% {
             width: 20px;
        }
         100% {
             width: 0px;
        }
    }
     .icon-bars.overlay::before {
         background: #617281;
         background: #b7c7d3;
         width: 10px;
         animation: topBar 3s infinite 0.2s;
         -webkit-animation: topBar 3s infinite 0s;
    }
     @keyframes topBar {
         0% {
             width: 0px;
        }
         50% {
             width: 10px;
        }
         100% {
             width: 0px;
        }
    }
     @-webkit-keyframes topBar {
         0% {
             width: 0px;
        }
         50% {
             width: 10px;
        }
         100% {
             width: 0px;
        }
    }
     .icon-bars.overlay::after {
         background: #617281;
         background: #b7c7d3;
         width: 15px;
         animation: bottomBar 3s infinite 1s;
         -webkit-animation: bottomBar 3s infinite 1s;
    }
     @keyframes bottomBar {
         0% {
             width: 0px;
        }
         50% {
             width: 15px;
        }
         100% {
             width: 0px;
        }
    }
     @-webkit-keyframes bottomBar {
         0% {
             width: 0px;
        }
         50% {
             width: 15px;
        }
         100% {
             width: 0px;
        }
    }
}
 @media (max-width: 1061px) and (max-width: 1200px) {
     .image-section .image {
         width: 900px;
    }
}
 @media (max-width: 711px) {
    /* Toggle Menu Icon */
     .image-section .image {
         max-width: 350px;
    }
     .menuIcon.toggle .icon-bars {
         top: 5px;
         transform: translate3d(0, 5px, 0) rotate(135deg);
         transition-delay: 0.1s;
         transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
     .menuIcon.toggle .icon-bars::before {
         top: 0;
         transition-delay: 0.1s;
         opacity: 0;
    }
     .menuIcon.toggle .icon-bars::after {
         top: 10px;
         transform: translate3d(0, -10px, 0) rotate(-270deg);
         transition-delay: 0.1s;
         transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
     .menuIcon.toggle .icon-bars.overlay {
         width: 20px;
         opacity: 0;
         -webkit-transition: all 0s ease 0s;
         transition: all 0s ease 0s;
    }
}

/* Responsive Mobile Menu */
 .overlay-menu {
     z-index: 10;
     background: #343534;
     color: #0d1a26;
     display: flex;
	 padding-top: 30%;
     /*align-items: center;*/
     justify-content: center;
     position: fixed;
     top: 0;
     right: 0;
     transform: translateX(-100%);
     width: 100%;
     height: 100%;
}

 .overlay-menu ul, .overlay-menu li {
	 display: block;
	 position: relative;
	 padding: 0;
	 width: 100%;
	 text-align: center;
}
 .overlay-menu li a, .overlay-menu li p {
     letter-spacing: 4px;
     text-transform: uppercase;
     color: #fff;
     padding: 10px 0;
	 margin:0;
     font-family: 'Poppins', sans-serif;
     font-size: 1.8em;
     display: block;
     background: linear-gradient(90deg, var(--color-prgreen) 14%, #fff 119%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
.overlay-menu li p {
	pointer-events: none;
}
 .overlay-menu li a:hover, .overlay-menu li a:active, .overlay-menu li p:hover, .overlay-menu li p:active {
     color: #1c79b8;
}

.overlay-menu .dropdown-menu {
	overflow: hidden;
    background: var(--color-background);
    max-height: 0px;
    width: 100%;
    padding: 0;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.overlay-menu ul.dropdown-menu::before {
    content: "";
    display: flex;
    width: 0%;
    justify-content: center;
    background: var(--color-prgreen);
    height: 0px;
}

.overlay-menu .dropdown:hover > ul.dropdown-menu {
	
	
}

.overlay-menu .dropdown > ul.dropdown-menu::before {
    width: 100%;
    height: 3px;
}
.overlay-menu .dropdown-menu > li {
    font-size: 12px;
}
.overlay-menu li.dropdown::before {
    display: block;
    content: "▼";
    color: var(--color-prgreen);
    position: absolute;
    left: 25px;
    top: 10px;
    padding: 10px;
    font-size: 15px;
    z-index: 35;
}

.overlay-menu .dropdown.open::before {
	content: "▲";
}

.mobile-menu .dropdown-menu {
	display: none;
	/*overflow: auto;*/
	height: 0; /* Start with 0 height */
	transition: height 0.3s ease-out; /* Animate height change */
}

.mobile-menu .dropdown.open .dropdown-menu {
	/*display: block;*/
	height: auto; /* Let the height adjust based on content */
	display: flex;
    flex-direction: column;
	max-height: 1000px;
}
 