@font-face {
    font-family: 'Corisande';
    src: url('fonts/Corisande-Regular.eot');
    src: url('fonts/Corisande-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Corisande-Regular.woff2') format('woff2'), url('fonts/Corisande-Regular.woff') format('woff'), url('fonts/Corisande-Regular.ttf') format('truetype'), url('fonts/Corisande-Regular.svg#Corisande-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'GESSTwo';
    src: url('fonts/GESSTwoLight-Light.eot');
    src: url('fonts/GESSTwoLight-Light.eot?#iefix') format('embedded-opentype'), url('fonts/GESSTwoLight-Light.woff2') format('woff2'), url('fonts/GESSTwoLight-Light.woff') format('woff'), url('fonts/GESSTwoLight-Light.ttf') format('truetype'), url('fonts/GESSTwoLight-Light.svg#GESSTwoLight-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: "Corisande" !important;
}

.bg-primary {
    color: #124a57 !important;
}

.badge {
    font-size: 1rem;
    font-weight: 400;
    line-height: 175%;
    text-align: left;
}

.badge-right {
    margin-right: 50px;
}

.badge-left {
    margin-left: 50px;
}

.btn-circle.btn-xl {
    width: 75px;
    height: 75px;
    padding: 13px 18px;
    border-radius: 60px;
    font-size: 15px;
    text-align: center;
    transform: scale(1);
}

.pulse-animate {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.loader {
    width: 96px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 10px solid #3ca9b8;
    border-right-color: #00535e;
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to {
        transform: rotate(1turn)
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.bg-layer {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.1);
z-index: 9999;
position: absolute;
left: 0;
top: 0;
max-width: 100%;
}


/*Voice Bars*/


#voice-bars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar {
    background: #124a57;
    bottom: 1px;
    height: 3px;
    width: 10px;
    margin: 0px 4px;
    border-radius: 5px;
    animation: sound 0ms -1500ms linear infinite alternate;
}

@keyframes sound {
    0% {
        opacity: .35;
        height: 3px;
    }

    100% {
        opacity: 1;
        height: 70px;
    }
}

.bar:nth-child(1) {
    left: 1px;
    animation-duration: 1450ms;
}

.bar:nth-child(2) {
    left: 15px;
    animation-duration: 1350ms;
}

.bar:nth-child(3) {
    left: 29px;
    animation-duration: 1200ms;
}

.bar:nth-child(4) {
    left: 43px;
    animation-duration: 1400ms;
}

.bar:nth-child(5) {
    left: 57px;
    animation-duration: 1350ms;
}

.bar:nth-child(6) {
    left: 71px;
    animation-duration: 1280ms;
}

.bar:nth-child(7) {
    left: 85px;
    animation-duration: 1380ms;
}

.bar:nth-child(8) {
    left: 99px;
    animation-duration: 1240ms;
}

.bar:nth-child(9) {
    left: 113px;
    animation-duration: 1100ms;
}

.bar:nth-child(10) {
    left: 127px;
    animation-duration: 1420ms;
}