html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #18191C;
    color: white;
    font-family: "Inter", sans-serif;
}

.inter-fonts {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.logo-carousel-wrapper {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.logo-fade-left,
.logo-fade-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 80s linear infinite;
    will-change: transform;
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 2rem;
}

.logo-item img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
}

.logo-track:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/*
    Custom css
*/

header {
    background-color: #18191C;
    font-family: "Inter", sans-serif;
}

.nav-link{
    color: #fff200;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='yellow' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.btn {
    padding: 12px 32px 12px 32px;
    border-radius: 6px;
}

.btn {
    padding: 12px 32px 12px 32px;
    border-radius: 6px;
    border: hidden;
    border: hidden;
}

.btn-primary {
    color: #021A7B;
    background-color: #FFF200;
}

.table{
    color: white;
}

.card {
    background-color: #18191C;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}