.home-settings-wrapper{
    margin: 80px 0 30px 0;
    background: linear-gradient(
    180deg,
    rgba(150, 96, 19, 0) 0%,
    rgba(252, 161, 32, 0.3) 100%
  );
    background-color: #fff;
    border: 1px solid #0094FF;
    border-radius: 12px;
}
.home-settings-wrapper .site-body {
    padding-top: 56px;
    padding-bottom: 1.5rem;
}
.site-body {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.site-rank {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
    border-radius: 100%;
}
.site-info {
    flex: 1;
    position: relative;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.site-actions {
    display: flex
;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
}
.site-actions a{
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: bold;
    transition: 0.3s;
    min-width: 128px;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
}
.site-actions a:nth-child(1) {
    background-color: #0094FF;
    color: #fff;
}

.site-actions a:nth-child(2) {
    background-color: #14ae5c;
    color: #fff;
}
.site-rating {
    display: flex
;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1rem;
}
.site-image-container {
    display: flex
;
    align-items: center;
    justify-content: center;
}
.home-settings-wrapper .site-image {
    border-radius: 16px;
    padding: 20px 16px;
    background-color: #0094FF;
}
.home-settings-wrapper .site-image {
    margin-top: 1rem;
}
.site-image img {
    max-width: 100%;
}
.site-image {
    width: 192px;
    display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.home-settings-wrapper ul{
    margin-top: 1.5rem;
    width: 100%;
    display: flex
;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    list-style-type: none;
    color: var(--text-color);
}
.home-settings-wrapper ul li{
    display: flex;
    align-items: center;
    width: 100%;
    margin:0 !important;
    
    
}
.home-settings-wrapper ul li img{
    margin-right: 10px;
    
    
}

.site-footer {
    position: relative;
    padding: 1rem;
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 4fr;
    gap: 1rem;
}
.site-footer::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 1px;
    width: calc(100% - 2rem);
    background-color: #0094FF;
}
.site-footer a {
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    color: #0094FF;

}



.site-footer-item {
display: flex
;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
    border-radius: 8px;
    color: #fff;
    padding: 1rem 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.site-footer-item .text-white span{
    color: #fff;
}
.site-footer-item .text-white{
    margin: 0;
    margin-top: 10px;
}
.site-footer-item .text-primary{
    color: #0094FF;
    font-weight: bold;
    font-size: 23px;
    line-height: 28px;
    margin: 0;
}
.scrollbox {
    max-height: 800px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #0094FF;
    background: #f9f9f9;
    border-radius: 8px;
}
@media (min-width: 576px) {
    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .site-actions {
        flex-direction: row;
    }
}
@media screen and (min-width: 1100px) {
    .site-body {
        padding: 1.5rem;
        flex-direction: row;
        gap: 2rem;
    }
        .home-settings-wrapper .site-rank {
        left: 7.5rem;
    }
    .site-content {
        display: flex
;
        flex: 1;
        gap: 1rem;
    }
        .site-actions {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
        .site-image-container {
        margin-top: 0;
    }
        .home-settings-wrapper .site-actions {
        display: flex
;
    }
        .home-settings-wrapper .site-rating {
        flex-shrink: unset;
    }
        .site-rating {
        align-items: flex-start;
    }
        .site-footer {
        position: relative;
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem;
    }
    
}
