/* ----------------- FLEX & GRID ALIGNMENT ----------------- */
.flex--row {
    display: flex;
    flex-direction: row;
}

.flex--column {
    display: flex;
    flex-direction: column;
}

.items--start {
    align-items: start;
}

.items--center {
    align-items: center;
}

.items--end {
    align-items: end;
}

.justify--center {
    justify-content: center;
}

.justify--end {
    justify-content: end;
}

.justify--between {
    justify-content: space-between;
}

/* ----------------- TEXT ----------------- */
.text-decoration--none {
    text-decoration: none;
}

.text--capitalize {
    text-transform: capitalize;
}

.line-height--1-6 {
    line-height: 1.6;
}

.line-height--1-4 {
    line-height: 1.4;
}

.line-height--1-2 {
    line-height: 1.2;
}

.line-height--1-1 {
    line-height: 1.1;
}

.line-height--1-0 {
    line-height: 1;
}

.text--center {
    text-align: center;
}

.text--underline {
    text-decoration: underline;
}

.text--uppercase {
    text-transform: uppercase;
}

/* ----------------- WIDTH & HEIGHT ----------------- */
.width--full {
    width: 100%;
}

.height--full {
    height: 100%;
}

/* ----------------- SIZES & FIT ----------------- */
.object-fit--cover {
    object-fit: cover;
}

.object-position--top {
    object-position: top;
}

.background-position--top-center {
    background-position: top center;
}

.background-position--center-center {
    background-position: center center;
}

.background-size--cover {
    background-size: cover;
}

.aspect--1-1 {
    aspect-ratio: 1;
}

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

.aspect--5-2 {
    aspect-ratio: 5/2;
}

.aspect--5-3 {
    aspect-ratio: 5/3;
}


.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.width--fit {
    width: fit-content;
}

.height--fit {
    height: fit-content;
}


/* ---- RESPONSIVE MENU ---- */
.burger {
    display: none;
}

.hamburger .line {
    width: 30px;
    height: 1px;
    border-radius: 14px;
    display: block;
    margin: 8px auto;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(4px) rotate(45deg);
    -ms-transform: translateY(4px) rotate(45deg);
    -o-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(2) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -ms-transform: translateY(-5px) rotate(-45deg);
    -o-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
}

/* CSS for modal container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

/* CSS for modal content */
.modal-content {
    /* padding: 250px 20px 20px 20px; */ 
    padding-top: 200px;
    width: 100%;
    height: 100vh;
    position: relative;
}

.no-scroll {
    overflow: hidden;
}

/* ---- CUSTOM SIZE ---- */
@media (max-width: 1150px) {
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }
}

/* ---- TABLET ---- */
@media (max-width: 992px) {
    .tablet--collapse {
        flex-direction: column;
    }

    .tablet-align--start {
        align-items: start;
    }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .mobile--collapse {
        flex-direction: column;
    }

    .mobile-align--start {
        align-items: start;
    }

    .mobile-align--center {
        align-items: center;
    }

    .mobile-justify--center {
        justify-content: center;
    }

    .modal-content {
        padding-top: 150px;
    }
}