@font-face {
    font-family: "Futura";
    src: url(fonts/Futura-Medium.woff);
}
@font-face {
    font-family: "Karla";
    src: url(fonts/karla-regular.woff);
}
@font-face {
    font-family: "Lato";
    src: url(fonts/lato-regular.woff);
}
.text-karla {
    font-family: 'Karla';
}
.text-futura {
    font-family: 'Futura';
}
.text-lato {
    font-family: 'Lato';
}
div, section {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-blend-mode: overlay;
}
a.btn:hover {
    cursor: text;
}
a:hover,
a {
    text-decoration: none;
    color: inherit;
}
.list-inside {
    list-style-position: inside;
}
ul.list-inside li {
    padding-bottom: 10px;
}
a.nav-link {
    color: rgb(123, 127, 133);
}

a.nav-link:hover {
    color: black;
}

.nav-tabs .nav-link.active {
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-bottom: 1px solid rgb(247 247 247);
}
.nav-tabs .nav-link {
    color: #212529;
}
p,
.lh-lg {
    line-height: 1.7;
}

.text-light-grey {
    color: rgb(114, 121, 114) !important;
}
.bg-dark-light {
    background-color: rgba(0, 0, 0, 0.03) !important;
}
.btn-transparent {
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 0.2rem;
}

.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-transparent-sm {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 0.2rem;
}

.btn-transparent-sm:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-transparent-dark {
    color: black;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    border: 2px solid black;
    border-radius: 0.2rem;
}

.btn-transparent-dark:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    color: black;
}

.btn-transparent-dark-sm {
    color: black;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: transparent;
    border: 2px solid black;
    border-radius: 0.2rem;
}

.btn-transparent-dark-sm:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    color: black;
}

.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

section {
    padding: 60px 0;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.btn-yellow:hover {
    background: rgb(255, 153, 0);
    border-color: rgb(255, 153, 0);
    color:#fff;
  }
  .btn-yellow {
    font-family: "Futura", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 10px 15px;
    transition: 0.5s;
    color: #fff;
    background: #fdb023;
    border-radius: 0.2rem;
  }
  .btn-purple {
    font-family: "Futura", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 10px 15px;
    transition: 0.5s;
    color: #fff;
    background: #672e92;
    border-radius: 0.2rem;
  }
  .btn-purple:hover {
    background: #543670;
    border-color: #543670;
    color:#fff;
  }
  .bg-purple {
    background: #672e92;
  }
  .fs-7 {
    font-size: small;
  }
  .rounded-4 {
    border-radius: 0.6rem;
  }
  .fw-semibold {
    font-weight: 500;
}
.text-dark-purple {
    color: #372349;
}
.text-blue {
    color: #166fb7;
}
.bg-blue {
    background-color: #0d60b1;
}
.bg-yellow {
    background-color: #f8b61a;
}
.bookmark-img {
    max-width: 40px;
    max-height: 25px;
}
.bookmark-link {
    text-wrap: nowrap;
    border-radius: 0.3rem;
    margin: 0 2px;
}
.bookmark-link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}
#bookmark-bar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

#bookmark-bar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

#bookmark-bar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.btn-round {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    text-align: center;
}