/*StyleBase*/
/*Reseting CSS*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
body, html {
    width: 100%;
    height: 100%;
}
/*Font*/
.apply-font {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/*Body Style*/
body {
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    
}
#content {
    display: block;
}

/*StylePage*/
/*Header Style*/
header {
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.248);
    width: 100%;
    height: 100%;
    padding: 15px;
}
.navOptions {
    display: flex;
    justify-content: right;
    align-items: center;
    right: auto;
    margin-right: 2%;
    margin-top: 0.5%;
}

/*Main Style*/
main {
    z-index: 2;
}
footer {
    z-index: 2;
    text-align: left; 
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
}

/*StyleEffects*/
/*Cursor*/
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
/*Scrollbar*/
::-webkit-scrollbar {
    background-color:  rgb(68, 68, 68);   
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 0);
    border-radius: 7px;
}
/*Wallpaper Style*/
.wallpaperPage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
 /*PreLoader Style*/
.preLoaderCLASS {
    width: 300px;
    height: 300px;
    background-image: url("download.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.PreLoaderContent {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 1;
}
/*EffectOptions*/
.optionsHeader {
    font-weight: bold;
    padding: 1.5%;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#firstOption:hover {
    color: rgba(255, 255, 33, 0.555);
    transform: scale(1.2);
}
#secondOption:hover {
    color: rgba(255, 255, 33, 0.555);
    transform: scale(1.2);
}
#thirdOption:hover {
    color: rgba(255, 255, 33, 0.555);
    transform: scale(1.2);
}
/*EffectHideShow*/
#menuNavEffectHide-Show {
    margin-left: 70%;
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#menuNavEffect-about {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.616);
}
#pAbout1:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pAbout2:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pAbout3:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pAbout4:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#menuNavEffect-contact {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.616);
}
#pContact1:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pContact2:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#menuNavEffect-services {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.616);
}
#pServices1:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pServices2:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}
#pServices3:hover {
    color: rgb(219, 219, 59);
    cursor: text;
    padding: 0.5%;
    transition: 0.2s ease-in-out;
}

/*ClassesJS*/
/*Hide*/
.hide {
    display: none;
}
