@import url('fonts.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 0;
}

:root
{
    --bg-dark: #000;
    --txt-dark: #313131;
    --bg-light: #f1f1f1;
    --txt-light: #fff;
    --txt-white: #fff;

    --text-teal:#008080;
    --text-purple: #800080;
    --text-blue: #0000FF;
    --text-pink: #FF69B4;
    --text-pumpkin: #FF6600;

    --line-height: 30px;
    --letter-spacing: 2px;

}

html
{
    scroll-behavior: smooth;
}

html,
body
{
    height: 100%;
}

body
{
    background: var(--bg-dark);
    color: var(--txt-light);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);

    font-family: font5, sans-serif;
    color: var(--text-teal);

}

/* STYLING THE SCROLL BAR */

/* For WebKit-based Browsers */
::-webkit-scrollbar
{
    width: 10px;
}

::-webkit-scrollbar-thumb
{
    background: var(--text-pumpkin);
    opacity: 0.7;
    border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover
{
    opacity: 1;
}

::-webkit-scrollbar-track
{
    background: transparent;
}

.text-right
{
    text-align: right;   
}

.text-left
{
    text-align: left;   
}

.text-center
{
    text-align: center;   
}

body svg
{
    /* fill: var(--text-teal); */
}

.pumpkin-color
{
    color: var(--text-pumpkin);
}

.title,
:is(h1, h2, h3, h4, h5, h6)
{
    font-family: font4;
}

/* CURSOR STYLING */
#cursor
{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

#cursor svg
{
    fill: var(--text-pumpkin);
    width:  120px;
    height: 120px;
}

/* ICONE ICONS */
.icone
{
    position: absolute;
    height: max-content;
    width: max-content;
}

.icone.pumpkin
{
    bottom: 0;
    right: 0;
}

.icone.pumpkin svg
{
    width:  150px;
    height: 150px;
    animation: bounce 2s ease-in-out infinite;
}

.icone.house 
{
    top: 10px;
    left: 10px;
}

.icone.house svg
{
    width:  170px;
    height: 170px;
    fill: var(--text-pumpkin);
    z-index: 5;
    opacity: 0.3;
    animation: shine 2s infinite;
}

@keyframes shine {
    
    0%{
        opacity: 0.3;
    }
    
    50%{
        opacity: 1.0;
    }
    
    100%{
        opacity: 0.5;
    }

}

.icone.ghost
{
    top: 20px;
    right: 20px;
    overflow: hidden;
    /* border: red solid 2px; */
}

.icone.ghost svg
{
    width: 70px;
    height: 70px;
    fill: var(--txt-light);
    animation: loop 2s ease infinite;
    /* border: red solid 2px; */
}

.icone.caskets
{
    bottom: 0;
    /* left: 10%; */
    /* right: 0; */
    left: 0;
    width: max-content;
}

.icone.caskets svg
{
    width: 120px;
    height: 120px;
    fill: var(--txt-light);
    transform: rotate(-10deg);
}

.icone.caskets svg:nth-of-type(2)
{
    margin-left: -100px;
    margin-bottom: 40px;
    /* background: red; */
    fill: var(--text-purple);
}

.icone.caskets svg:nth-of-type(3)
{
    margin-left: -100px;
    margin-bottom: -20px;
    /* background: red; */
    fill: var(--text-pink);
}

@keyframes loop {
    
    0%
    {
        margin-bottom: -200%;
        opacity: 0.2;
    }

    50%
    {
        margin-bottom: 0px;
        opacity: 0.5;
    }

    100%
    {
        margin-bottom: 200%;
        opacity: 1;
    }

}

@keyframes bounce {
    
    0%
    {
        margin-bottom: 0px;
    }

    50%
    {
        margin-bottom: 50px;
    }

    100%
    {
        margin-bottom: 0px;
    }

}


.dn ,
.display-none-force
{
    display: none !important;
}

.display-none
{
    display: none
}

.db,
.display-block-force
{
    display: block !important;
}

.display-block
{
    display: block;
}

/* SECTION STYLING */

section,
.section
{
    min-height: 300px;
    margin-bottom: 20px;
    padding: 1rem;
    position: relative;
}

section .heading,
.section .heading
{
    margin-bottom: 10px;
}

section .heading .title,
.section .heading .title
{
    font-size: 2rem;
    color: var(--txt-light);
    margin-bottom: 15px;
}

section .heading .subTitle,
.section .heading .subTitle
{
    font-size: 1.7rem;
}

section .body,
.section .body
{
  line-height: 30px;  
  font-size: 1.3rem;
  color: var(--txt-white);
  font-family: font8;
}

/* MAIN CONTAINER */
.container
{
    height: 100%;
    width: 100%;
    /* border: red solid 2px; */
    overflow: -moz-hidden-unscrollable;
    overflow: hidden;
    position: relative;
}

/* NAVBAR */
.container .navbar
{
    height: 12.5vh;
    /* background: var(--text-teal); */
}

/* CONTENTS */
.container .contents
{
    height: calc(100% - 12.5vh);
    /* border: blue solid 2px; */
    overflow-y: auto;
    overflow-x: hidden;
}

/* BANNER */

.banner
{
    /* border: red solid 2px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    /* background: url('../img/istockphoto-849128594-612x612.webp'); */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

.banner .logo img
{
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: center;
}

.banner h1
{
    font-family: font5;
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 70px;
}

/* TYPING ANIMATION */

.typing-animation
{
    color: var(--text-pink);
}

.typing-animation span
{
    display:inline-block;
    overflow: -moz-hidden-unscrollable;
    overflow: hidden;
    white-space: nowrap;
}

.typing-animation span::after
{
    content: "";
    display: inline-block;
    width: 0;
    overflow: hidden;
    border-right: 2px solid red;
    animation: typing 2s steps(10, end) infinite;
}

@keyframes typing {
    
    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}



/* LANAGUAGES SECTION */

.languages 
{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.languages .language
{
    flex: 0 0 15%;
    margin: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.languages .language .icon
{
    width: 60px;
    height: 60px;
    box-shadow: 0 0 5px 5px var(--text-pumpkin);
    margin-bottom: 20px;
    border-radius: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.5s background ease-in-out;
}

.languages .language:nth-child(even) .icon
{
    border-radius: 20px 10px;
}

.languages .language .icon img
{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.languages .language .icon svg
{
    width: 60%;
    height: 60%;
    fill: var(--txt-light);
}

.languages .language .icon
{}

.languages .language:hover .icon
{
    /* margin-bottom: 20px; */
    background: var(--text-teal);
}

.languages .language .text
{
    color: var(--txt-light);
    font-family: font3;
    text-align: center;
    transition: 0.5s color ease-in-out;
}

.languages .language:hover .text
{
    color: var(--text-teal);
}

@media screen and (max-width: 1024px) {
    
    .languages .language
    {
        flex: 0 0 20%;
    }

}

@media screen and (max-width: 800px) {
    
    .languages .language
    {
        flex: 0 0 23%;
    }

}

@media screen and (max-width: 700px) {
    
    .languages .language
    {
        flex: 0 0 40%;
    }

}

@media screen and (max-width: 500px) {
    
    .languages .language
    {
        flex: 0 0 100%;
    }

}

/* SKILLS SECTION */
.skills-section
{
    margin: 150px 0;
    /* border: red solid 2px; */
}

.skills-section .icone
{
    left: 20px;
    bottom: -150px;
    z-index: -1;
}

.skills-section .icone svg
{
    height: 250px;
    width: 250px;
    fill: var(--text-pumpkin);
}

/* PROJECTS SECTION */
.projects
{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.projects .project
{
    flex: 0 0 23.3%;
    height: max-content;
    padding: 0.5rem;
    /* border: red solid 2px; */
    margin: 10px;

    background: linear-gradient( to bottom, transparent 0%, #FFA000 20%, #FF6600 40%, #FF3300 60%, #FF0000 80%, #FF0000 100%  );
    border-radius: 10px;
    /* animation: fire 1s infinite; */

}

@keyframes fire {
    
    0%{
        transform: scale(1);
    }

    50%
    {
        transform: scale(1.02);
    }

    100%
    {
        transform: scale(1);
    }

}

.projects .project .project-image
{
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    margin-top: 20px;
    /* border: blue solid 2px; */
}

.projects .project .project-image img
{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
    /* border-top-right-radius: 0px; */
    /* border-top-left-radius: 0px; */
}

.projects .project .project-details
{

}

.projects .project .project-details .project-name
{
    margin-bottom: 10px;
}

.projects .project .project-details .project-for
{
    color: var(--txt-dark);
    background: var(--txt-light);
    display: flex;
    width: max-content;
    border-radius: 5px;
}

.projects .project .project-details .project-for .icon
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects .project .project-details .project-for .text
{
    display: flex;
    align-items: center;
    padding-right: 0.5rem;
    font-size: 12px;
    text-transform: capitalize;
}

.projects .project .project-details .project-btn
{
    text-align: left;
    margin-top: 20px;
}

.projects .project .project-details .project-btn button,
.projects .project .project-details .project-btn .btn
{
    outline: none;
    border: none;
    background: var(--text-teal);
    background: var(--txt-dark);
    color: var(--txt-light);
    text-transform: capitalize;
    font-family: font3;
    min-width: 120px;
    height: 35px;

    font-size: 13px;
    padding: 0.5rem;

    text-decoration: none;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: left;

    -webkit-user-select: none;
    user-select: none;

    cursor: pointer;

}

.projects .project .project-details .project-btn button svg,
.projects .project .project-details .project-btn .btn svg
{
    width: 20px;
    height: 20px;
    margin: 0 7px;
    fill: currentColor;
}


@media screen and (max-width: 1200px) {
    
    .projects .project
    {
        flex: 0 0 33%;
    }

}

@media screen and (max-width: 1000px) {
    
    .projects .project
    {
        flex: 0 0 47%;
    }

}

@media screen and (max-width: 800px) {
    
    .projects .project
    {
        flex: 0 0 46%;
    }

}

@media screen and (max-width: 600px) {
    
    .projects .project
    {
        flex: 0 0 100%;
    }

}

/* CONTACT SECTION */

.contact-section .body
{
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.contact-section .body .part
{
    flex: 0 0 50%;
    padding: 1rem;
    height: 100%;
    /* width: 50%; */
    /* border: red solid 2px; */
}

.contact-section .body .space
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    overflow: hidden;
}

@keyframes loop2 {
    
    0%
    {
        margin-top: -200%;
        opacity: 0.2;
    }

    50%
    {
        margin-top: 0px;
        opacity: 0.5;
    }

    100%
    {
        margin-top: 200%;
        opacity: 1;
    }

}

@keyframes loop3 {
    
    0%
    {
        margin-bottom: -200%;
        opacity: 0.2;
    }

    50%
    {
        margin-bottom: 0px;
        opacity: 0.5;
    }

    100%
    {
        margin-bottom: 200%;
        opacity: 1;
    }

}

.contact-section .body .space svg
{
    fill: var(--txt-light);
    width: 200px;
    height: 200px;
    animation: loop 4s ease infinite;
}

.contact-section .body .space svg:nth-of-type(2)
{
    animation: loop2 4s ease infinite;
}

.contact-section .body .form
{
    position: relative;
}

.contact-section .body .form .input
{
    position: relative;
    display: block;
    width: 100%;
    height: max-content;
    margin: 10px 0;
}

/* .contact-section .body .form .input::after
{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    width: 100%;
    transform: scaleX(2);
    background: linear-gradient( to right, transparent 49%, #007bff 50%, transparent 51%);
    background: linear-gradient( 90deg, transparent 45%, var(--text-pumpkin) 45%, var(--text-pink) 55%, transparent 51%);
} */

.contact-section .body .form .input label
{
    color: var(--text-pumpkin);
    text-transform: capitalize;
}

.contact-section .body .form .input label span
{
    /* color: var(--text-pink); */
    font-size: x-small;
    color: var(--text-pink);
    text-transform: lowercase;
}

.contact-section .body .form .input input,
.contact-section .body .form .input textarea,
.contact-section .body .form .input select,
.contact-section .body .form .input button
{
    border: none;
    outline: none;
    background: transparent;
    /* background: linear-gradient( to right, transparent 49%, #007bff 50%, transparent 51%); */
    border-bottom: 1px solid var(--text-pumpkin);
    display: block;
    width: 100%;
    min-height: 40px;
    border-radius: 0px;
}

.contact-section .body .form .input input,
.contact-section .body .form .input select,
.contact-section .body .form .input textarea,
.contact-section .body .form .input input::placeholder
{
    color: var(--txt-light);
    opacity: 0.9;
    letter-spacing: 2px;
}

.contact-section .body .form .input input,
.contact-section .body .form .input textarea
{
    padding: 0.5rem;
    font-family: font3;
}

.contact-section .body .form .input input::placeholder
{
    text-transform: capitalize;
    font-family: font3;
}

.contact-section .body .form .input textarea
{
    min-height: 200px;
}

.contact-section .body .form .input button
{
    border: none;
    background: var(--text-pumpkin);
    color: var(--txt-light);
    font-weight: bold;
    font-family: font4;
    letter-spacing: 3px;
}

.contact-section .body .form
{
    /* border: red solid 2px; */
    border-radius: 10px;
    box-shadow: 
        5px 5px 5px var(--text-pumpkin),
        -5px -5px 5px var(--text-teal)
    ;
}

@media screen and (max-width: 786px) {
    
    .contact-section .body
    {
        height: 100%;
    }

    .contact-section .body .part
    {
        flex: 0 0 100%;
        /* border: red solid 2px; */
    }

    .contact-section .body .space
    {
        /* border: green solid 2px; */
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .contact-section .body .form
    {
        /* border: red solid 2px; */
        border-radius: 10px;
        box-shadow: 
            10px 10px 10px var(--text-pumpkin),
            -10px -10px 10px var(--text-teal)
        ;
    }

}

/* QUOTE SECTION */

.quote-section
{
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: red solid 2px; */
    height: calc(100vh - 12.5vh);
    margin-bottom: 0px;
}

.quote-section .quote
{
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;    
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--txt-light);
    font-family: font8;
    font-size: 1.3rem;
}

.quote-section .quote q
{
    margin-bottom: 10px;
}

.quote-section .icone.moon
{
    bottom: 20px;
    left: 50px;
    color: var(--txt-light);
    /* border: red solid 2px; */
}

.quote-section .icone.moon svg
{
    width:  70px;
    height: 70px;
    /* transform: rotate(-20deg); */
    animation: moonAnim 2s ease-in infinite;
}

@keyframes moonAnim {
    
    0%{
        transform: rotate(-50deg);
    }
    
    50%{
        transform: rotate(0deg);
    }
    
    100%{
        transform: rotate(-50deg);
    }

}

.quote-section .icone.laptop
{
    top: 20px;
    right: 50px;
    color: var(--txt-light);
}

.quote-section .icone.laptop svg
{
    width:  70px;
    height: 70px;
    /* transform: rotate(-20deg); */
    animation: laptopAnim 2s ease-in infinite;
}

@keyframes laptopAnim {
    
    0%{
        transform: rotate(-50deg);
    }
    
    /* 50%{
        transform: rotate(0deg);
    } */
    50%{
        transform: rotate(50deg);
    }
    
    100%{
        transform: rotate(-50deg);
    }

}

.quote-section .icone.cloud
{
    right: 20px;
    animation: cloudAnim 2s ease-in infinite;
}

.quote-section .icone.cloud svg
{
    width:  70px;
    height: 70px;
    fill: var(--text-pumpkin);
    /* transform: rotate(-20deg); */
}

@keyframes cloudAnim {
    
    0%{
        right: 20px;
    }
    
    100%{
        right: 100%;
    }

}

/* FOOTER */

.footer
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--txt-light);
}

.footer .logo
{
    width: 250px;
    max-height: 250px;
    /* border: red solid 2px; */
    margin-bottom: 20px;
}

.footer .logo img
{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: center;
}

.footer .socials
{
    /* border: red solid 2px; */
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer .socials .social
{
    color: var(--txt-light);
    margin: 0 7px;
}

.footer .socials .social svg
{
    fill: currentColor;
    width:  25px;
    height: 25px;
}

.footer .socials .social:hover svg
{
    fill: var(--text-pumpkin);
}


.footer .copyright
{
    font-family: font7;
    background: var(--text-pumpkin);
    width: 100%;
    padding: 0.5rem;
    text-align: center;
}

/* POPUP CONTAINER STYLING */

.popup-modal
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(235 235 235 / 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    /* background: white; */
}

.popup-modal .popup-close
{
    /* background: red; */
    width: 100%;
    height: 100%;
}

.popup-modal .popup-contents
{
    position: absolute;
    
    width: min-content;
    height: max-content;
    /* width: 100%; */
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /* border: red solid 2px; */
}

.popup-modal .popup-contents .project-info
{
    /* width: clamp(300px, 70%, 900px); */
    width: 900px;
    /* width: 90%; */
    height: 400px;
    /* background: var(--txt-light); */
    border-radius: 10px;
    background: var(--text-pumpkin);
    box-shadow: 0 0 10px 10px rgb(235 235 235 / 0.2);
    color: var(--txt-light);
    position: relative;
    overflow: hidden;

    display: flex;

}

@media screen and (max-width: 786px) {
    
    .popup-modal .popup-contents
    {
        width: max-content;
    }

    .popup-modal .popup-contents .project-info
    {
        width: 90vw;
        height: 70vh;
        padding-bottom: 50px;
    }

}

.popup-modal .popup-contents .project-info .project-image
{
    width: 50%;
    height: 100%;
    /* background: blue; */
}

.popup-modal .popup-contents .project-info .project-image img
{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.popup-modal .popup-contents .project-info .project-details
{
    padding: 0.5rem;
    padding-bottom: 2rem;
    /* border: #0000FF solid 2px; */
    width: 100%;
    height: 100%;
}


.popup-modal .popup-contents .project-info .project-details
{
    font-family: font8;
    font-size: 14px;
    /* border: green solid 2px; */
    height: 100%;
    overflow-y: auto;
    overflow-x:hidden;
}

.popup-modal .popup-contents .project-info .project-details .title,
.popup-modal .popup-contents .project-info .project-details .subTitle
{
    font-family: font7;
    font-size: 20px;
    text-transform: capitalize;
}

.popup-modal .popup-contents .project-info .project-details .project-name
{
    text-transform: uppercase;
    padding: 0.5rem;
    padding-left: 0px;
}

.popup-modal .popup-contents .project-info .project-details .project-description
{

}

.popup-modal .popup-contents .project-info .project-details .project-languages
{
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.popup-modal .popup-contents .project-info .project-details .project-languages .language
{
    display: flex;
    align-items: center;
    background: var(--txt-light);
    border-radius: 6px;
    color: var(--text-pumpkin);
    padding: 0.2rem;
    margin: 5px;
    -webkit-user-select: none;
    user-select: none;
}

.popup-modal .popup-contents .project-info .project-details .project-languages .language .icon 
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.popup-modal .popup-contents .project-info .project-details .project-languages .language .icon svg
{
    width:  20px;
    height: 20px;
    fill: var(--text-pumpkin);
}

.popup-modal .popup-contents .project-info .project-details .project-languages .language .text
{
    text-transform: uppercase;
    padding: 0 0.3rem;
}

.popup-modal .popup-contents .project-info .project-details .project-additional-info
{
    margin: 5px 0;
}

.popup-modal .popup-contents .project-info .project-details .project-btns
{
    display: flex;
}

.popup-modal .popup-contents .project-info .project-details .project-btns .btn
{
    background: var(--txt-light);
    display: flex;
    align-items: center;
    margin: 5px;
    text-decoration: none;
    height: 50px;
    padding-right: 15px;
    color: var(--txt-dark);
    border-radius: 5px;
}

.popup-modal .popup-contents .project-info .project-details .project-btns .btn:hover
{
    box-shadow: 0 0 10px 5px var(--bg-light);
}

.popup-modal .popup-contents .project-info .project-details .project-btns .btn .icon
{
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-modal .popup-contents .project-info .project-details .project-btns .btn .icon svg
{
    width:  50%;
    height: 50%;
    fill: currentColor;
}

@media screen and (max-width: 786px) {
    
    .popup-modal .popup-contents .project-info
    {
        flex-direction: column;
        overflow-y: auto;
        align-items: center;
        /* display: block; */
    }

    .popup-modal .popup-contents .project-info .project-image,
    .popup-modal .popup-contents .project-info .project-details
    {
        /* border: indigo solid 2px; */
        width: 100%;
    }

    .popup-modal .popup-contents .project-info .project-image
    {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .popup-modal .popup-contents .project-info .project-details
    {
        overflow:unset;
    }

    .popup-modal .popup-contents .project-info .project-details .project-btns
    {
        flex-direction: column;
    }

}


/* PRELOADER STYLING */

.preloader
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* border: red solid 2px; */
    z-index: 5000;
    background: var(--bg-dark);
    -webkit-user-select: none;
    user-select: none;
}

.preloader .contents
{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.preloader .contents .logo
{
    /* border: blue solid 2px; */
    height: 60vh;
    width: 100%;
}

.preloader .contents .logo img
{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: none;
}

.preloader .contents .loader {
    color: var(--text-pumpkin);
    /* font-family: Consolas, Menlo, Monaco, monospace; */
    font-family: font8;
    font-weight: bold;
    /* font-size: 78px; */
    font-size: 2rem;
    opacity: 0.8;
    /* border: red solid 2px; */
    /* background: blue; */
}

.preloader .contents .loader:before {
    content: "{";
    display: inline-block;
    animation: pulse 0.6s alternate infinite ease-in-out;
}
.preloader .contents .loader:after {
    content: "}";
    display: inline-block;
    animation: pulse 0.6s 0.4s alternate infinite ease-in-out;
}

@keyframes pulse {
    to {
        transform: scale(0.8);
        opacity: 0.5;
    }
}


.preloader .contents .loader-text{
    /* font-size: 48px; */
    font-size: 1.5rem;
    color: var(--text-pumpkin);
    display: inline-block;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: font8;
    font-weight: 400;
    position: relative;
}

.preloader .contents .loader-text:before{
    content: '';
    animation: 5s print linear alternate infinite;
}

.preloader .contents .loader-text:after{
content: '';
position: absolute;
right: -4px;
top: 50%;
transform: translatey(-45%);
width: 2px;
height: 1.3em;
background: currentColor;
opacity: 0.8;
animation: 1s blink steps(2) infinite;
}
  
@keyframes blink {
0%  { visibility: hidden;}
100%  { visibility: visible;}
}

@keyframes print {
0% { content: 'L'}
10% { content: 'Lo'}
20% { content: 'Loa'}
30% { content: 'Load'}
40% { content: 'Loadi'}
50% { content: 'Loadin'}
60% { content: 'Loading'}
70% { content: 'Loading.'}
80% { content: 'Loading..'}
90% , 100% { content: 'Loading...'}
}


.preloader .icone svg
{
    fill: var(--bg-light);
    width:  40px;
    height: 40px;
}


.preloader .icone.right
{
    right: 0;
    animation: fromRight 2s infinite;
}

.preloader .icone.left
{
    left: 0;
    animation: fromLeft 2s infinite;
}

.preloader .icone.bottom
{
    bottom: 0;
    /* animation: fromBottom 2s steps(10, end) infinite; */
    animation: fromBottom 2s infinite;

}

.preloader .icone.top
{
    top: 0;
    animation: fromTop 2s infinite;
}

@keyframes fromBottom {
    
    from {
        bottom: 0;
    }

    to {
        bottom: 100%;
    }

}

@keyframes fromTop {
    
    from {
        top: 0;
    }

    to {
        top: 100%;
    }

}

@keyframes fromLeft {
    
    from {
        left: 0;
    }

    to {
        left: 100%;
    }

}

@keyframes fromRight {
    
    from {
        right: 0;
    }

    to {
        right: 100%;
    }

}

.ghosts 
{
    bottom: -20vh !important;
    /* animation: fromBottom2 2s infinite !important; */
}

@keyframes fromBottom2 {
    
    from {
        bottom: 0;
    }

    to {
        bottom: 170vh;
    }

}

.ghosts svg
{
    fill: var(--text-pumpkin) !important;
    width:  50px !important;
    height: 50px !important;
}

.ghosts .liquid-background-flow
{
    background: var(--bg-dark);
    height: 100%;
    width: 100%;
    padding: 0.5rem;
    /* animation: liquid 2s infinite; */
}

.liquid 
{
    animation: liquid 2s forwards;
    opacity: 1;
    transition: opacity 1s ease-in;
}

@keyframes fadeAnimation {
    
    0%{
        opacity: 1;
    }

    100%{
        opacity: 0;
    }

}

.liquid.active 
{
    animation: fadeAnimation 3s ease-in forwards !important;
    opacity: 0;
}



@keyframes liquid {
    
    from {
        height: 0vh;
    }

    to {
        height: 120vh;
    }

}

#welcomeBtn
{
    padding: 1rem;
    box-shadow: 
        0 0 10px 10px var(--text-pumpkin),
        10px -10px 5px 5px var(--text-pumpkin)
    ;
    background: transparent;
    outline: none;
    border: none;
    color: var(--txt-white);
    border-radius: 3px;
    font-family: font4;
    letter-spacing: 2px;
    transition: 1s background ease-in-out;
}

#welcomeBtn svg
{
    width: 20px;
    height: 20px;
}

#welcomeBtn:hover
{
    background: var(--bg-light);
    color: var(--txt-dark);
}

/* PRELOADER STYLING END*/