body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.language-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

.container {
    text-align: center;
    margin: 0.5rem auto;
}

#language-selector{
    position: absolute; 
    top: 25px; 
    right: 50px;
    color: #CCCCCC;
    display: flex;
    align-items: center;
}

.fb-container {
    display: inline-block; 
    margin-right: 50px; 
}

.facebook-icon {
    position: relative;
    display: inline-block;
    font-size: 38px;
    text-decoration: none;
    animation: colorChange 10s infinite;
}

.facebook-icon::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -13px;
    width: 54px;
    height: 54px;
    border: 2px solid white;
    border-radius: 50%;
    animation: colorChange 10s infinite;
}

@keyframes colorChange {
    0% {
        color: #ffffff;             /*for the icon */
        border-color: #ffffff;      /*for the circle */
    }
    50% {
        color: #0866ff;
        border-color: #0866ff;
    }
    100% {
        color: #ffffff;
        border-color: #ffffff;
    }
}

.orSign {
    position: relative;
    top: -1.5px;
}

#language-selector .language {
    cursor: pointer;
    font-weight: normal;
  }
  
  #language-selector .language.active {
    font-weight: bold;
    color: white;
  }
  
  #language-selector .language:hover {
    color: #f6d54e !important;
}

.placeholder{
    width: 50px;
    display: none;  
    background-color: transparent; 
}

.intro-bg {
    background-color: coral;
}

.inter {
    font-family: 'Inter', sans-serif;
}

#description {
    font-family: 'Open-sans', sans-serif;
    font-size: 1.5rem;
}

.white {
    color: rgb(252, 252, 252);
}

@media only screen and (max-width: 991.98px) {
    #language-selector {
        left: 5%;
        z-index: 1;
        top: 18px;
        justify-content: space-between;
    }

    .section-heading  .section-heading-lower{
        font-size: 1.5rem;
        font-weight: 400;
    }

    .site-heading .site-heading-lower{
        font-size: 3rem;
        font-weight: 200;
    }
 
    .p-5 {
        padding: 1rem !important;
    }

    .facebook-icon {
        font-size: 28px;
    }

    .facebook-icon::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -14px;
        width: 48px;
        height: 48px;
        border: 2px solid white;
        border-radius: 50%;
        animation: colorChange 10s infinite;
    }

    .placeholder {
        display: block;
    }
}

@media only screen and (max-width: 400px) {
    #language-selector {
        left: 10%;
    }
}