:root {
    --primary-color-1: #2a4533;
    --primary-color-2: #cb9567;
    --primary-color-3: #c09869;
    --primary-color-4: #5da871;
    --sub-color-1: #103e30;
}

body {
    margin: 0;
    /* font-family: "Acumin Pro Regular"; */
}

#wrapper {
    overflow-x: hidden;
}

#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.888);
    z-index: 1199;
}

#loading-image {
    z-index: 1200;    
    -webkit-animation: change-color 3s infinite;
    -moz-animation: change-color 3s infinite;
    animation: change-color 3s infinite;
}
@keyframes change-color {
    0% {
        filter: invert(17%) sepia(59%) saturate(556%) hue-rotate(111deg) brightness(92%) contrast(91%);
    }
    100% {
        filter: invert(68%) sepia(63%) saturate(365%) hue-rotate(339deg) brightness(86%) contrast(82%);
    }
}

/* background setting */
.bg-img-s100-center {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.bg-img-cover-center {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-img-cover-bottom {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.bg-img-contain-top {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
}
.bg-img-contain-center {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bg-attachment-fixed {    
       /* z-index: -1;
       position: absolute!important; */
       /* top: 0; */
       /* left: 0; */
       /* height: 100%;
       width: 100%; */
       background-size: cover;
       background-attachment: scroll;
}
/* position setting */
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.position-absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.position-absolute-bottom-right {
    position: absolute;
    right: 10%;
    bottom: 5%;
    transform: translate(-10%, -5%);
}
.position-absolute-xs-bottom-center {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, -5%);
}
.position-absolute-bottom-center {
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, -20%);
}
.position-absolute-top-left {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0,0);
}
.position-absolute-top-right {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0,0);
}

/* alignment setting */
.text-center {
    text-align: center;
}

/* svg colors setting */
.svg-white-color {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.svg-primary-color-1 {
    filter: invert(17%) sepia(59%) saturate(556%) hue-rotate(111deg) brightness(92%) contrast(91%);
}
.svg-primary-color-2 {
    filter: invert(68%) sepia(63%) saturate(365%) hue-rotate(339deg) brightness(86%) contrast(82%);
}

/* a tag */
.no-deco:hover, .no-deco {
    text-decoration: none;
    color: #c09869;
}

/* offset setting */
.main-offset-sm {
    padding-left: 60px;
    padding-right: 60px;
}
.main-offset-md {
    padding-left: 100px;
    padding-right: 100px;
}
.main-offset {
    padding-left: 200px;
    padding-right: 200px;
}

.main-offset-xl {
    padding-left: 240px;
    padding-right: 240px;
}
.main-y-offset-lg {
    padding-top: 60px;
    padding-bottom: 60px;
}
.main-y-offset-xl {
    padding-top: 100px;
    padding-bottom: 100px;
}
.main-margin-y-offset-xl {
    margin-top: 100px;
    margin-bottom: 100px;
}
.main-y-offset-md {
    padding-top: 40px;
    padding-bottom: 40px;
}
.main-b-offset-lg {
    padding-bottom: 100px;
}
.main-t-offset-lg {
    padding-top: 100px;
}

.main-t-offset-md {
    padding-top: 60px;
}

.main-b-offset-md {
    padding-bottom: 60px;
}

.main-t-offset-sm {
    padding-top: 40px;
}

.main-b-offset-sm {
    padding-top: 40px;
}
/* text setting */
.text-bold {
    font-weight: bold;
}
.text-400 {
    font-weight: 400;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-xl-bold {
    font-size: 22px;
    font-weight: bold;
}
.text-lg-bold {
    font-size: 18px;
    font-weight: bold;
}
.text-md-bold {
    font-size: 16px;
    font-weight: bold;
}
.text-md-light {
    font-size: 15px;
    font-weight: 400;
}
.text-md {
    font-size: 16px;
}
.text-sm {
    font-size: 12px;
}
.text-sm-bold {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.text-xs {
    font-size: 11px!important;
}

/* text color */
.theme-color {
    color: #c09869;
}
.color-white {
    color: white;
}
.color-primary-1 {
    color: var(--primary-color-1);
}
.color-primary-2 {
    color: var(--primary-color-2);
}
.color-primary-3 {
    color: var(--primary-color-3);
}
.color-primary-4 {
    color: var(--primary-color-4);
}
.color-sub-color-1 {
    color: var(--sub-color-1);
}
.color-light-grey {
    color: #d4cfcf;
}
.color-grey {
    color: #939599;
}
.color-choco {
    color: #7c4d2d;
}
.color-red {
    color: red;
}

/* alignment */
.vertical-flex-align {
    display: flex;
    align-items: center;
    text-align: center;
}
.vertical-align-list {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

/* border radius */
.border-radius-xxs {
    border-radius: 8px;
}
.border-radius-xs {
    border-radius: 10px;
}
.border-radius-sm {
    border-radius: 12px;
}
.border-radius-top-left-bottom-right-sm {
    border-radius: 12px 0px 12px 0px;
}
.ar-4-3 {
    aspect-ratio: 4 / 3;
}

.ar-2-1 {
    aspect-ratio: 2 / 1;
}
.ar-3-1 {
    aspect-ratio: 3 / 1;
}

.ar-16-9 {
    aspect-ratio: 16 / 9;
}

  
@media (max-width: 3200px) {
    .portfolio-card:hover{
        transform: scale(1.05);
      }
    
    .main-y-offset-xl {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .main-offset-xl {
        padding-left: 320px;
        padding-right: 320px;
    }
}
@media (max-width: 2000px) {
    .portfolio-card:hover{
        transform: scale(1.05);
      }
    
    .main-y-offset-xl {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .main-offset-xl {
        padding-left: 280px;
        padding-right: 280px;
    }
}

@media (max-width: 1580px) {
    .portfolio-card:hover{
        transform: scale(1.05);
      }
    
    .main-offset {
        padding-left: 200px;
        padding-right: 200px;
    }
    .main-offset-xl {
        padding-left: 240px;
        padding-right: 240px;
    }
    .main-y-offset-xl {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 1380px) {
    .portfolio-card:hover{
        transform: scale(1.05);
      }
    
    .main-y-offset-xl {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .main-offset-xl {
        padding-left: 180px;
        padding-right: 180px;
    }
    .main-offset {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 1280px) {    
    /* .bg-attachment-fixed {
        background-size: auto 130vh!important;
    } */
    .main-offset-xl {
        padding-left: 100px;
        padding-right: 100px;
    }
    .main-offset {
        padding-left: 60px;
        padding-right: 60px;
    }
    .main-offset-md {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 1024px) {
    .bg-attachment-fixed {
        background-attachment: scroll;
    }
}
@media (max-width: 990px) {
    /* .bg-attachment-fixed {
        background-size: auto 120vh!important;
    } */
    .main-offset-xl {
        padding-left: 60px;
        padding-right: 60px;
    }
    .main-offset {
        padding-left: 50px;
        padding-right: 50px;
    } 
    .main-offset-md {
        padding-left: 40px;
        padding-right: 40px;
    }
    .main-offset-mobile {
        padding-left: 60px;
        padding-right: 60px;
    }
    .main-margin-y-offset-xl {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    /* .bg-attachment-fixed {
        background-size: auto 110vh!important;
    } */
    
    .main-margin-y-offset-xl {
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .main-offset-xl {
        padding-left: 50px;
        padding-right: 50px;
    }
    .main-offset {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .main-offset-md {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 520px) {
    /* .bg-attachment-fixed {
        background-size: auto 100vh!important;
    } */
    
    .main-offset-sm, .main-offset-mobile {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 380px) {
    .main-offset {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .main-offset-md {
        padding-left: 20px;
        padding-right: 20px;
    }
    .main-offset-xl {
        padding-left: 30px;
        padding-right: 30px;
    }
}