*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: .5px;
}

:root{
    --POPPINS: 'Poppins', sans-serif;
    --ROBOTO: 'Roboto', sans-serif;
    /* --PRIMARY_COLOR: #35ab39; */
    --PRIMARY_COLOR: #6C63FF;
    --TRANSITION: all 0.3s ease;
}

/* GENERAL STYLING */

body{
    background-color: #f3f3f3;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #696969;
    font-weight: 300;
    line-height: 30px;
}


a{
    text-decoration: none;
}

.site-nav img{
    max-width: 100%;
}

.container{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}
/* END OF GENERAL STYLING */

/* STYLES FOR THE PAGE TRANSITION */

.main-left{
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* padding-left: 90px; */
}

.pt-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.subpages {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-perspective: 1500px;
    -moz-perspective: 1500px;
    perspective: 1500px;
}

.pt-page {
    width: 100%;
    height: 0;
    position: absolute;
    opacity: 0;
    top: auto;
    left: 0;
    /* display: flex; */
    min-height: 100vh;
    align-items: center;
    background-color: #fff;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0,);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    color: black ;
}

.pt-page-current, .no-js .pt-page {
    visibility: visible;
    z-index: 90;
    opacity: 1;
}

.min-height-100vh{
    min-height: 100vh;
}

section{
  
    /* overflow: hidden; */
    width: 100%;
    background-color: white;
    flex-direction: column;
    overflow-y: auto;
    padding: 2rem 0;
    padding-left: 90px;
}

/* END OF PAGE TRANSITION STYLES */


/* NAV FOR SMALL SCREEN style */
nav{
    height: 80px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    z-index: 99;
    background-color: white;
    box-shadow: 1px 1px 7px #e1e1e1;
    height: 0;
    overflow: hidden;
    transition: var(--TRANSITION);
}
nav img{
    padding-top: 10px;
    max-width: 90px;
}

nav .img-con{
    overflow: hidden;
}

nav .hamburger{
    margin-right: 3%;
    padding: 0.35rem 0.75rem;
    font-size: 15px;
    /* background-color: violet; */
}
/* END OF SMALL SCREEN NAV STYLE */


/* SIDEMENU STYLE */
.site-nav{
    position: fixed;
    left: 0; 
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 7px #e1e1e1;
    background-color: white;
    transition: var(--TRANSITION);
    /* width: 0; */
    overflow: hidden;
    overflow-y: auto;
}

.logo-con{
    width: 100%;
    height: 80px;
    background-color: #cccccc;
    overflow: hidden;
}

#nav{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
}

#nav li{
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

#nav li:nth-of-type(1){
    border-top: 1px solid #eaeaea;
}

#nav i{
    margin-bottom: 7px;
}
#nav a{
    display: flex;
    padding: 18px 5px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: var(--POPPINS);
    font-size: 14px;
    position: relative;
    line-height: 1.2;
}

#nav a:visited{
    color: unset;
}



#nav a span{
    /* padding: 10px 5px; */
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: #696969;
}

#nav a i{
    font-size: 18px;
    color: #b3b3b3;;
}



.active::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--PRIMARY_COLOR);
}

.active a span, .active a i{
    color: var(--PRIMARY_COLOR) !important;
}

.site-nav .social{
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
    margin-bottom: 0.5rem;
}

.site-nav .social span{
    display: inline-block;
    font-size: 22px;
    color: #1DA1F2;
}

.site-nav .social .whatsapp{
    color: #4ac959;;
}

/* END OS SIDEMENU STYLE */
.middle-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 1rem;
}
.middle-logo img{
    max-width: 300px;
    height: auto;
}

.middle-logo h1{
    font-family: var(--ROBOTO);
    font-size: 1.5rem;
}



@media screen and (max-width: 1000px){
    nav{
        height: 60px;
    }
    .site-nav{
        width: 0;
        /* margin-top: 80px; */
        justify-content: center;
    }
    .nav-active{
        width: 90px;
    }
    section{
        padding-left: 0;
        padding-top: 80px;
        position: relative ;
        /* display: block !important;
        width: 100%;
        overflow-x: hidden; */
        overflow-y: auto;
    }
    .pt-page{
        display: block;
        min-height: 100vh;
    }
    .site-nav .logo-con{
        display: none;
    }
    .middle-logo img{
        max-width: 250px;
    }

    .middle-logo h1{
        font-size: 1.2rem;
    }
    
}




@media screen and (max-width: 500px){
    nav{
        height: 50px;
    }
    
    #nav a span{
        font-size: 12px;
    }
    .middle-logo img{
        max-width: 200px;
        height: auto;
    }
    .middle-logo h1{
        font-size: 1rem;
    }
}

@media screen and (max-height: 400px){
    #nav{
        margin-top: 1.5rem;
    }
    #nav i{
        margin-bottom: 2px;
    }
    #nav a{
        display: flex;
        padding: 10px 5px;
    }
}