html {
    scroll-behavior: smooth;
}

body {
    overflow-y: auto;
    font-family: 'League Spartan', sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    margin-top: 80px;
    z-index: auto;
}

:focus {
    outline: 0;
}

a {
    text-decoration: none;
    color: #00662B;
}

p {
    line-height: 28px;
    font-weight: 300;
}

.small {
    font-size: 14px;
}

h2 {
    font-size: 36px;
    font-weight: 500;
}

.text-green {
    color: #00662B;
}

.avatar {
    width: 100%;
    max-height: max-content;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border: 1px solid #CCC;
}

.rounded-corner {
    padding: 25px;
    box-shadow: 2px 4px 5px 2px #00000026;
    border-radius: 36px;
}

.rounded-corner.smaller {
    border: 1px solid #DDD;
    box-shadow: none;
}

.number-highlight {
    background-color: #FFF4BC;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: 500;
}

.number-highlight .number {
    font-size: 40px;
}

.number-highlight .label {
    text-align: center;
    font-size: 16px;
}

.values {
    padding: 60px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: 500;
    color: #00662B;
    border: 1px solid #00662B;
}

.project-details {
    margin-bottom: 200px;
}

.img-full-height img {
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
}

.card-head {
    padding: 15px 40px;
    font-weight: bold;
    color: #FFF;
    background-color: #00662B;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
}

.card-body {
    padding: 20px 40px;
}

.invert {
    text-align: right;
}

.invert img {
    transform: rotate(180deg);
}

.description, div.description p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-light-blue {
    background-color: #73cbf166 !important;
    border: 1px solid #73cbf1 !important;
}

.bg-yellow {
    background-color: #FAA81A66 !important;
    border: 1px solid #FAA81A !important;
}

.social-links a {
    width: 40px;
    aspect-ratio: 1/1;
}

.social-links a img {
    height: 20px;
}

.social-links a {
    text-decoration: none;
    width: 40px;
    aspect-ratio: 1/1;
    background-color: #00662B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a:hover img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(100%) saturate(3369%) hue-rotate(336deg) brightness(100%) contrast(99%);
}

.gradient-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 35.73%, rgba(255, 255, 255, 0.85) 85.26%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 36px;
    z-index: 1;
}

.bg-light-blue .gradient-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 35.73%, rgba(115, 203, 241, 0.85) 85.26%);
}

.bg-yellow .gradient-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 35.73%, rgba(250, 168, 26, 0.85) 85.26%);
}

.image-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
