:root{
    --shiplyt-text-color: #262d38;
    --shiplyt-blue-dark: #254058;
    --shiplyt-blue: #4679A6;
    --shiplyt-blue-light: #eff6ff;
}
body{
    font-family: 'Lato', sans-serif;
}
.bg-light-blue{
    background-color: var(--shiplyt-blue-light);
}
.bg-dark{
    background-color: var(--shiplyt-blue-dark) !important;
    color: white;
}
.bg-light{
    background-color: #f2f8fc!important;
}
.py-8{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.btn-primary{
    --bs-btn-bg: var(--shiplyt-blue);
    --bs-btn-border-color: var(--shiplyt-blue);
}
.btn-primary:hover{
    --bs-btn-hover-bg: var(--shiplyt-blue-dark);
    --bs-btn-hover-border-color: var(--shiplyt-blue-dark);
}
.btn-link{
    padding-left: 0;
    color: var(--shiplyt-text-color);
    text-decoration: none;
}
.btn-link:hover{
    color: var(--shiplyt-blue);
}
.btn-link i{
    color: var(--shiplyt-blue);
}