body{
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    margin: 0px;
    background-color:beige;
}
.nav{
    display: flex;
    justify-content:space-evenly;
    width: 80%;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    position:relative;
    top: 20px;
    z-index: 5;
}
.nav img{
    border-radius: 400px;
    mix-blend-mode:color-burn;
    height: 70px;
}
.nav ul{
    list-style: none;
    
    
}
.nav ul li{
    display: inline-block;
    margin-right: 50px;
}
.nav ul li a{
    text-decoration: none;
    color: black;
    position: relative;
}
.nav ul li a:hover{
	color:black;
}
.nav ul li a:after{
	content: " ";
	position: absolute;
	left: 0;
	width: 0;
	height: 3px;
	background: black;
	transition: 0.3s;
	bottom: 0;
}
.nav ul li a:hover:after{
	width: 100%;
}
.nav button{
    background-color: rgb(211, 18, 18);
}
.nav button a{
    color: black;
    text-decoration: none;
}
.nav i{
    color:black;
    display: none;
}
button{
    padding: 20px 40px;
     background-color: black;
     color: whitesmoke;
     border: 0.1px solid black;
 }
 icons{
    width:33.333333%;
}
.icons i{
    font-size: 25px;
}
.footer .aside{
    text-align: center;
}
.footer .aside a{
    display: block;
    margin-top: 5px;
    text-decoration: none;
}
.sidebar{
    background-color:  rgba(255, 255, 255, 0.775);
    backdrop-filter:blur(70px);
    width: 40%;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index:97;
    left: 60%;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar.visible {
    visibility: visible;
    transform: translateX(0);
}
.sidebar ul{
    list-style: none;
    line-height: 2em;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.sidebar ul li{
    width: 100%;
}
.sidebar ul li a{
    text-decoration: none;
    color:Black;
    position: relative;
    width: 100%;
}
.sidebar ul li a:hover{
	color:black;
}
.sidebar ul li a:after{
	content: " ";
	position: absolute;
	left: 0;
	width: 0;
	height: 3px;
	background: black;
	transition: 0.3s;
	bottom: 0;
}
.sidebar ul li a:hover:after{
	width: 100%;
}
.sidebar button{
    background-color: rgb(211, 18, 18);
    width: 100%;
}
.sidebar button:hover{
    background-color: transparent;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    margin: 40px 20px 0 20px;
}
.container .heading{
    width: 50%;
    padding-bottom: 50px;
}
.container .heading h3{
    font-size: 3em;
    font-weight:bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}
.container .heading h3 span{
    font-weight: 100;
}
.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container .box .gcolumn{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}
.container .box .gcolumn img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}
#backToTop {
    /*display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: opacity 0.3s;
}
#backToTop:hover {
    background-color: #555;
}

footer{
    position:relative;
    bottom: -70px;
    background-color:whitesmoke;
    padding-bottom: 40px;
}
footer hr{
    width: 80%;
}
footer h4{
    text-align: center;
}

footer img{
    border-radius: 400px;
}
.footer{
    display:flex;
    justify-content: space-evenly;
}
.footer a{
    color: black;
}
.fhero{
    width:33.333333%;
}

@media screen and (max-width: 600px) {
    .nav{
        justify-content:space-between;
    }
	.nav ul,.nav button{
        display:none;
    }
    .nav img{
        height: 50px;
    }
    .nav .fa-solid.fa-bars{
        display: block;
        margin-left: 250px;
    }
    .container .heading h3{
        font-size: 2em;
    }
    .container .box{
        flex-direction: column;
    }
    .container .box .gcolumn{
        width: 100%;
    }

    footer{
        top: 40px;
    }
    .fhero img{
        height: 50px;
    }
    .fhero p{
        font-size: 15px;
        width: 80%;
    }
    .icons h3{
        font-size: 1.5em;
    }
    .aside{
        font-size: 1em;
    }
    .aside h3{
        font-size: 1.5em;
    }
    footer h4{
        font-size: 0.8em;
    }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
    .nav{
        justify-content: space-between;
    }
    .nav ul,.nav button{
        display:none;
    }
    .nav .fa-solid.fa-bars{
        display: block;
        margin-left: 450px;
    }
}