@keyframes floatIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-text {
    animation: floatIn 0.5s ease-out;
}


.theme-list {
    position: relative;
    padding-left: 30px;
    list-style: none;
    z-index: 10;
}

.theme-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    margin: auto;
    width: 1px;
    height: 85%;
    background-color: #cacdd6;
    z-index: -1;
}

.theme-list li {
    display: block;
    margin: 5px 0;
}

.theme-list li::before {
    content: "";
    position: absolute;
    left: 3px;
    margin: 6px 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #888;
    border: 2px solid #888;
}

button{
    border-radius: 7px !important;
}

.btn-light{
    border-radius: 10px !important;
    font-family: "Open Sans", sans-serif !important;
    color: #25255F;
}

.nav{
    font-family: "Montserrat", serif;
    font-weight: bolder;
}

.section-subtitle{
    color: #888 !important;
    opacity: 1 !important;
}

#skills{
    margin-bottom: 80px;
}

#extra-contact{
    margin-bottom: 70px;
    margin-top: 150px;
}

.col-md-6{
    margin-top: 15px;
    margin-bottom: 15px;
}

.about-me{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    padding-left: 0;
    padding-right: 0;
    background-color: #F9F9FA !important;
}

.about-me::after{
    content: url(../imgs/arc-white.svg);
    position: relative;
    top: 60px;
}

.skills-section{
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

.skills-section::after{
    content: url(../imgs/arc-darker.svg);
    position: relative;
    top: 60px;
}

.experience-section{
    width: 100% !important;
    margin-top: -98px;
    background-color: #F9F9FA !important;
    padding-top: 100px;
}

.experience-section::after{
    content: url(../imgs/arc-white.svg);
    position: relative;
    top: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-section{
    background-color: #F9F9FA !important;
    padding-bottom: 50px;
}

.projects-section::after{
    content: url(../imgs/arc-darker.svg);
    position: relative;
    top: 90px;
}

.about-me-container{
    margin-bottom: 10px;
}

.experience-container{
    margin-bottom: 35px;
}

.projects-inner-section{
    margin-bottom: 60px;
}


::-moz-selection { /* Code for Firefox */
    background: rgba(200, 200, 200, 0.5);
    opacity: 0.5;
}
  
::selection {
    background: rgba(200, 200, 200, 0.5);
    opacity: 0.5;
}



  
li.dropdown {
    display: block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: white;
    background-color: #394e63;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.dropdown-content a:hover {background-color: #f1f1f1;}
  
.dropdown:hover .dropdown-content {
    display: block;
}
