body {
    font-family: 'Poppins';
}

html {
    scroll-behavior: smooth;
}

.bg-light-gray {
    background-color: #F4F8FD;
}

.text-gray {
    color: #4D4D4D;
}

.header-button {
    padding: 16px 25px 16px 25px
}

.text-20 {
    font-size: 20px;
}

.text-45 {
    font-size: 45px;
}

.text-18 {
    font-size: 18px;
}

.text-30 {
    font-size: 30px;
}

.lh-16 {
    line-height: 1.6em;
}

.divider {
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.divider:before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 1px solid black;
}

.divider:after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 1px solid black;
}

.divider-element {
    margin: 0 10px;
}

.list li::before {
    content: '\f192';
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    margin-right: 8px;
    color: #2f85c6;
}

.list li {
    padding-bottom: 5px;
}

.yc-color {
    color: #2f85c6;
}

.header-button {
    background-color: #2f85c6;
}

.menu-item {
    color: black;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.menu-item:before {
    content: '';
    background: #2f85c6;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.menu-item:hover::before {
    width: 100%;
}

nav {
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1)
}