* {
    color: #203129;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8F8F8;
    font-family: Arial, sans-serif;
}

#logo {
    height: 100%;
    color: white;
}

#logo-container {
    position:absolute;
    left: 20px;
    height: 65%;
    padding-top: 10px;
}

#head-main {
    display: flex;
    flex-direction: row;
    padding: 30px;
    padding-right: 70px;
    align-items: center;
    justify-content:end;
    position: sticky;
    top: 0px;
    z-index: 100;
}

#head-main::before {
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.9;
}

#navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#navbar li {
    list-style: none;
    margin: 0px 7px 0px 7px;
    margin-right: 20px;
}

#navbar li:last-child {
    margin-right: 0;
}

#navbar li a {
    text-decoration: none;
    padding: 0px 7px 0px 7px;
    color: white;
}
#navbar li a:hover {
    opacity: 0.6;
}
/* #navbar li a:active {
    text-decoration: underline;
} */
#navbar li a.special-btn {
    background-color: white;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
}

/* #navbar li a.special-btn:hover {
    opacity: 0.6;
} */
.toggle-nav {
    display: none;
    font-size: 2em;
    color: white;
}

@media screen and (max-width: 860px) {
    #head-main {

        padding: 20px;

        
    }
    .toggle-nav {
        padding:0px 15px 15px 15px;
        display: inline-block;
        cursor: pointer;
        box-shadow:0px 1px 1px rgba(0,0,0,0.15);
		border-radius:3px;
		background:#303030;
        transition:color linear 0.15s;
    }

    #navbar ul {
        display: none;
        flex-direction: column;
        width: 40%;
        position: absolute;
        top: 100%;
        right: 0;
        background: #303030;
        padding:10px 18px;
		box-shadow:0px 1px 1px rgba(0,0,0,0.15);
		border-radius:3px;/* Adjust the background as per your color scheme */
    }
    #navbar ul:after {
		width:0px;
		height:0px;
		position:absolute;
		top:0%;
		right:22px;
		content:'';
		transform:translate(0%, -100%);
		border-left:7px solid transparent;
		border-right:7px solid transparent;
		border-bottom:7px solid #303030;
	}

    .toggle-nav:hover, .toggle-nav.active {
		text-decoration:none;
		color:#66a992;
	}

    #navbar ul li {
        text-align: center;
    }

    #navbar ul li a {
        display: block;
        padding: 10px;
    }

    #logo {
        font-size: 1.2em; /* Adjust size as per your requirement */
    }
}

/* Toggle the menu */
.toggle-nav.active + ul {
    display: flex;
}
@media screen and (max-width: 400px) {

    #logo {
        font-size: 1em; /* Adjust size as per your requirement */
    }
    .toggle-nav {
        font-size: 1.6em;
    }
}
