@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@keyframes disappear{
    from{color:var(--text-color);}
    to{color:var(--primary-bg-color);}
}
@keyframes alternative-disappear{
    from{color:var(--primary-bg-color);}
    to{color:var(--title-color);};
}
@keyframes appear{
    from{color:var(--primary-bg-color);}
    to{color:var(--text-color);}
}
@keyframes alternative-appear{
    from{color:var(--title-color);}
    to{color:var(--alternative-text-color);}
}
@keyframes slide-up{
    from{   
            opacity:0;
            transform:translateY(100%);}
    to{ 
            opacity:1;
            transform:translateY(0);
        }
}
@keyframes slide-left{
    from{   
            opacity:0;
            transform:translateX(20%);}
    to{ 
            opacity:1;
            transform:translateX(0);
        }
}
@keyframes slide{
    to{top:-50px}
}
@keyframes typing{
    to{left:110%;}
}
@keyframes typing-and-deleting{
    40%,60%{left:calc(100% + 3px);}
    100%{left:0;}
  }
@keyframes fade{
    from{opacity:.4;}
    to{opacity:1;}
}
*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Raleway',sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--secondary-bg-color);
}
#Top{
    height:95vh;
}

.first-color-section{
    margin:0;
    padding:0;
    background-color: var(--primary-bg-color);
    color:var(--text-color);
}
.second-color-section{
    margin:0;
    padding:0;
    background-color: var(--secondary-bg-color);
    color:var(--alternative-text-color);
}
.first-to-second-transition{
    background-color: inherit;
}
.first-to-second-transition hr{
    border: 5px solid var(--primary-bg-color);
    margin:10px 0px 0px 0px;
}
.second-to-first-transition{
    background-color: inherit;
}
.second-to-first-transition hr{
    border:5px solid var(--primary-bg-color);
    margin: 10px 0 0 0;
}
.container {
    margin: auto;
    width: 65%; 
    /*border: 3px solid #FEE715;*/
    padding: 10px;
    color:inherit;
    
    
}

/*------------------------------------------------------------------------------*/

.go-to{
    margin: 25px auto;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
#go-to-1{
    position:absolute;
    bottom:7vh;
}
    .go-to-btn{
        width: fit-content;
        text-align: center;    
    }   
    /*.go-to .go-to-btn:nth-child(1){
        
    }*/
        .go-to-btn a{
            font-size: 16px;
            text-decoration: none;
            transition: all .3s ease-out;
            color:inherit;
        }
            .go-to-btn:hover a{
                font-size:18px;
            }
    .go-to-btn .bx-down-arrow-alt{
        display: none;
    }
        .go-to-btn .bx-down-arrow-alt:nth-child(odd){
            animation-name:disappear .6s;
        }
        .go-to-btn .bx-down-arrow-alt:nth-child(even){
            animation-name:alternative-disappear .6s;
        }
    .go-to-btn:hover .bx-down-arrow-alt{
        display: block;
        transform: scale(1.5);
    }
        .go-to-btn:hover .bx-down-arrow-alt:nth-child(odd){
            animation-name:appear .6s;
        }
        .go-to-btn:hover .bx-down-arrow-alt:nth-child(even){
            animation-name:alternative-appear .6s;
        }
    .go-to-btn:not(:hover) .bx-down-arrow-alt{
        display:none;
    }
        .go-to-btn:not(:hover) .bx-down-arrow-alt:nth-child(odd){
            animation-name: disappear .6s;
        }
        .go-to-btn:not(:hover) .bx-down-arrow-alt:nth-child(even){
            animation-name: alternative-disappear .6s;
        }
    .go-to-btn:hover .bx-chevron-down{
        display: none;
    }
        .go-to-btn:hover .bx-chevron-down:nth-child(odd){
            animation-name: disappear .6s;
        }
        .go-to-btn:hover .bx-chevron-down:nth-child(even){
            animation-name: alternative-disappear .6s;
        }
    .go-to-btn:not(:hover) .bx-chevron-down{
        display:block;
    }
        .go-to-btn:not(:hover) .bx-chevron-down:nth-child(odd){
            animation-name: appear .6s;
        }
        .go-to-btn:not(:hover) .bx-chevron-down:nth-child(even){
            animation-name: appear .6s;
        }
 

/*------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------*/

@media screen and (max-width:600px){
    .go-to{
        bottom:60px;
    }
}
/*------------------------------------------------------------------------------*/
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    .container{
        margin:auto;
    }
}