html {
    scroll-behavior: smooth;
}

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

main {
    margin-top: 90px;
}

:focus {
    outline: 0;
}

a {
    text-decoration: none;
    color: #f18f00;
}

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

.small {
    font-size: 12px;
}

h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
}

h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}

h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.text-theme {
    color: #f18f00;
}

.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: #f18f00;
    border: 1px solid #f18f00;
}

.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: #f18f00;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
}

.card-body {
    padding: 10px 15px;
    text-align: center;
}

.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;
}

.section-padding {
    padding: 2.5em 0;
}

.blog-standard-area .section-padding {
    margin: 1.5em 0;
    padding: 0;
}

/** Heights **/
.h-fixed {
    height: 600px;
}

/** Arrows **/
.reverse {
    transform: rotate(180deg);
}

/** Backgrounds **/
.bg-accent {
    background-color: #fdf7f3;
}

.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 img {
    height: 20px;
}

.social-links a {
    text-decoration: none;
    width: 40px;
    aspect-ratio: 1/1;
    background-color: #f18f00;
    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;
}

.file-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-box img {
    width: 20px;
}

.page-block h2 {
    text-transform: uppercase;
    font-size: 28px;
    line-height: 38px;
}

.section-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border: none;
}

.list-container {
    max-height: 460px;
    overflow-y: auto;
    padding: 0 20px;
}

.list-container .list-group-item {
    border: none;
    border-top: 1px solid #EEE;
    padding-left: 0;
    padding-right: 0;
}

.img-120,
.img-200,
.img-300 {
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.img-300 {
    height: 300px;
}

.img-120 {
    height: 120px;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-btn img {
    width: 20px;
}

.page-banner {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/banner.webp') no-repeat center;
    background-size: cover;
    position: relative;
    --bs-secondary-color: #FFF;
    font-weight: 500;
}

.page-banner a {
    color: #FFF;
}

.overlay-black {
    position: absolute;
    /* background-color: #d0770baa; */
    width: 100%;
    height: 100%;
}

.section-title::after,
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #000;
}

.section-title::after {
    right: -55px;
    left: auto;
}

.blur-box {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    padding: 20px;
    border-radius: 12px;
}

.nav-tabs {
    border-bottom: none;
    gap: 10px;
}

.nav-tabs .nav-link {
    border: 1px solid #f18f00;
    border-radius: 5px;
    font-weight: 500;
    color: #000;
}

.nav-tabs .nav-link.active {
    background-color: #f18f00;
    color: #FFF;
}

.layout-container {
    columns: 4 300px;
    column-gap: 1rem;
    margin: 1rem auto;
    width: 100%;
}

.text-white {
    --bs-breadcrumb-divider-color: #FFF;
}

.required::after {
    content: " *";
    color: red;
}

.banner-box img {
    height: 100%;
    object-fit: cover;
}

.h-full {
    height: calc(100vh - 100px);
}

.h-medium {
    height: 70vh;
}

.h-small {
    height: 50vh;
}

.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-2 {
    -webkit-line-clamp: 2; /* Limit to 2 lines */
}

.square-box {
    width: 120px;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg,rgba(255, 174, 34, 1) 0%, rgba(241, 143, 0, 1) 35%, rgba(228, 129, 1, 1) 100%);
    color: #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px;
}

.square-box h3 {
    font-weight: bold;
}

.left-content h2 {
    background-color: #f18f00;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    padding: 5px;
    font-weight: bold;
}

.left-content blockquote {
    color: #f18f00;
    font-weight: bold;
}