  #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(45deg, #09009f, #00ff95 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:99999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}



@media screen and (max-width:600px) {
#preloader svg{
    width: 200px;
}
}

#logo path:nth-child(1){
    stroke-dasharray: 374.3px;
    stroke-dashoffset: 374.3px;
    animation: line-anim 2s ease forwards 2.2s;
}
#logo path:nth-child(2){
    stroke-dasharray: 259.3px;
    stroke-dashoffset: 259.3px;
    animation: line-anim 2s ease forwards 1.9s;
 
}
#logo path:nth-child(3){
    stroke-dasharray: 253.8px;
    stroke-dashoffset: 253.8px;

    animation: line-anim 2s ease forwards 1.6s;
}
#logo path:nth-child(4){
    stroke-dasharray: 318px;
    stroke-dashoffset: 318px;
    animation: line-anim 2s ease forwards 1.3s;
}
#logo path:nth-child(5){
    stroke-dasharray: 438px;
    stroke-dashoffset: 438px;
  
    animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(6){
    stroke-dasharray: 442.2px;
    stroke-dashoffset: 442.2px;
    animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(7){
    stroke-dasharray: 397.5px;
    stroke-dashoffset: 397.5px;
    animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(8){
    stroke-dasharray: 401.1px;
    stroke-dashoffset: 401.1px;
  
    animation: line-anim 2s ease forwards;
}

#logo{
    animation: fill 0.5s ease forwards 3s;
    transition: all .5s;
}


@keyframes line-anim {
    to{
        stroke-dashoffset: 0;
    }
}
@keyframes fill {
    from{
        fill: transparent;
    }
    to{

        fill: #fff;
    }
}
#content {
    visibility: hidden;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#content.show {
    visibility: visible;
    transition: visibility 0s 0.5s;
}


@media screen and (min-width:300px) and (max-width:600px) {
	.header-pinned{
		top: 0px !important;
	}
}
@media screen and (min-width:601px) and (max-width:1000px) {
	.header-pinned{
		top: -84px !important;
	}
}


/* styles.css */
.nav-link.active1 {
color: var(--primary-foreground); /* Adjust the color as needed */
}

/* Optionally, you can add more styles for the underline effect */
.nav-link.active1::after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 100%;
	background: var(--primary-foreground); /* Adjust the underline color as needed */
}



.popup {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s;
    opacity: 0;
    overflow: hidden;
    
}
.popup.open {
    display: block;
    opacity: 1;
}

.popup.open .popup-content {
    transform: translateY(0);
}
.error{
    color: red;
}

.form-group input, .form-group select{
    width: 100%;
}

@media screen and (min-width:300px) and (max-width: 600px){
    .popup-content {
        width: 80% !important;
    }
}

.popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    z-index: 999;
    background-image: url(../../assets/img/popup-main.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    transform: scale(0.5);
    transition: transform 0.3s;
    
}

.close {
    color: #004cff;
    float: right;
    font-size: 33px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

.relative.flex {
    display: flex;
    align-items: center;
}

.relative.flex select {
    margin-right: 10px;
}

.btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background-color: #45a049;
}