/****** COLOUR PALLETE ******/
:root {

    /****** Neutral ******/

    --black: #1F1F1F;
    --white: #FFFFFF;

    /****** Primary ******/

    --primary-01: #FAFAFA;
    --primary-02: #EFF1EF;
    --primary-03: #DADFDA;
    --primary-04: #A6B2A5;
    --primary-05: #96A495;

    /****** Grey ******/

    --grey-01: #F5F5F5;
    --grey-02: #E0E0E0;
    --grey-03: #B7B7B7;
    --grey-04: #505050;
    --grey-05: #313131;

    /****** Accent ******/
    
    --accent-01: #FBF8F7;
    --accent-02: #F2ECE6;
    --accent-03: #E1D1C6;
    --accent-04: #B69074;
    --accent-05: #A97D5B;
    
}
/****** END OF COLOUR PALLETE ******/

/********** ------------------------------------------------------------------ **********/

/****** TYPOGRAPHY ******/

.bold {
    font-weight: 700;
}

.light {
    font-weight: 300;
}

h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.2em;
}

h2.bold {
    font-size: 42px;
}

h2.light {
    font-size: 42px;
    margin: 0;
}

h3.bold {
    font-size: 28px;
}

h3.light {
    font-size: 28px;
}

p.bold {
    font-size: 24px;
    margin: 0;
}

p.light {
    font-size: 24px;
    margin: 0;
}

small.bold {
    font-size: 18px;
}

small.light {
    font-size: 18px;
}

/****** END OF TYPOGRAPHY ******/

/********** ------------------------------------------------------------------ **********/

/****** GAP, PADDING & MARGIN ******/

.gap-10 {
    gap: 10px;
}

.gap-30 {
    gap: 30px;
}

.gap-50 {
    gap: 50px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

/****** END OF GAP, PADDING & MARGIN ******/

/********** ------------------------------------------------------------------ **********/

/****** LAYOUT ******/

body * {
    font-family: "Lexend", sans-serif;
}

main {
    padding: 100px 200px;
}

.page-header {
    padding: 50px 200px 0px 200px;
}

.page-center {
    padding: 200px;
    text-align: center;
}

.page-footer {
    padding: 30px 200px;
}

/****** END OF LAYOUT ******/

/********** ------------------------------------------------------------------ **********/

/****** NAVBAR & BUTTON ******/

a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
}

a:hover {
    color: var(--grey-01);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .links {
    display: flex;
    gap: 30px;
}

.navbar .toggle-btn {
    display: none;
    cursor: pointer;
    color: var(--black);
    font-size: 1.5rem;
}

.midnav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 50px 0 20px 0;
}

button {
    text-decoration: none;
    background: none;
    align-items: center;
    border: none;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary {
    cursor: pointer;
    color: var(--white);
    background-color: var(--black);
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 300;
}

.btn-primary:hover {
    color: var(--white);
    background-color: var(--accent-05);
}

.btn-secondary {
    color: var(--black);
    border-color: var(--black);
    border-radius: 55px;
    border: 2px solid var(--black);
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
}

.btn-secondary:hover {
    color: var(--accent-05);
    border-color: var(--accent-05);
}

.btn-secondary:disabled {
    color: var(--grey-03);
    border-color: var(--grey-02);
}

.btn-tertiary {
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
}

.btn-tertiary:hover {
    color: var(--accent-05);
}

.btn-tertiary-active {
    pointer-events: none;
    color: var(--accent-05);
    /* border-bottom: 2px solid var(--accent-05);
    padding-bottom: 10px; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 100px;
    width: 200px;
    height: 0;
    background-color: var(--white);
    border-radius: 30px;
    padding: 10px;
    overflow: hidden;
    transition: height .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu.open {
    height: 240px;
}

.dropdown-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

}

.dropdown-menu .btn-primary {
    width: 100%;
    text-align: center;
}

.next-previous-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.next-previous-btn:hover {
    color: var(--accent-05);
}


.footer-link {
    color: var(--black);
}

.footer-link:hover {
    color: var(--accent-05);
}

/****** END OF NAVBAR & BUTTON ******/

/********** ------------------------------------------------------------------ **********/

/****** COMPONENTS ******/

br p.light {
    gap: 20px;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}

img {
    border-radius: 30px;
    width: 100%;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.img-logo {
    border-radius: 20px;
}

.logo-container {
    display: flex;
    flex-direction: row;
    padding: 0 0 20px 0;
    width: 80px;
    height: 80px;
}

#avatar {
    float: left;
    border-radius: 50%;
    min-width: auto;
    padding: 0;
}

.vertical-line {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-left: 2px solid var(--grey-03);
    height: 15px;
    position: center;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

/****** END OF COMPONENTS ******/

/********** ------------------------------------------------------------------ **********/

/****** GRID & CONTAINER ******/

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    height: fit-content;
}

.grid-container2 {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 0 auto;
    gap: 30px;
    max-width: auto;
}

.grid-item {
    display: flex;
    flex-direction: column;
    justify-content: left;
    background-color: var(--grey-01);
    border-radius: 30px;
    padding: 30px;
    gap: 10px;
    width: auto;
}

.grid-item:hover {
    background-color: var(--black);
    /* color: var(--accent-05); */
}

.item1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.item2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-block-end: 30px;
    gap: 10px;
    border-bottom: 2px solid var(--grey-02);
    width: 30%;
}

.item3 {
    display: flex;
    align-items: flex-start;
    padding-block-end: 30px;
    border-bottom: 2px solid var(--grey-02);
}

.item4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 30px;
}

.container-content {
    width: 70%;
}

.container-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.container-content-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.container-content-row2 {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    gap: 30px;
}

.container-content-row3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    gap: 30px;
}

.content-detail {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.next-previous-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-detail {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

/****** END OF GRID & CONTAINER ******/

/********** ------------------------------------------------------------------ **********/

/****** FONT AWESOME ******/

.fa {
    padding: 20px 0;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
}

.fa-linkedin {
    color: var(--black);
}

.fa-linkedin:hover {
    color: var(--accent-05);
}

/****** END OF FONT AWESOME ******/

/********** ------------------------------------------------------------------ **********/

/****** SHADOW EFFECT ******/

.shadow1 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.shadow2 {
    box-shadow: var(--grey-03) 0px 10px 50px;
}

.shadow3 {
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

.shadow4 {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/****** END OF SHADOW EFFECT ******/

/********** ------------------------------------------------------------------ **********/

/****** MEDIA QUICK FIX / MOBILE FIX / TABLET FIX ******/

.tablet-hide {
    display: none;
}

.tablet-only {
    display: block;
}

.mobile-hide {
    display: hidden;
}

.mobile-only {
    display: none;
}

/****** END OF MEDIA QUICK FIX / MOBILE FIX / TABLET FIX ******/

/********** ------------------------------------------------------------------ **********/
/************************************ MEDIA QUERIES *************************************/
/********** ------------------------------------------------------------------ **********/


/****** EXTRA SMALL DEVICES (max-width: 600px) ******/

@media only screen and (min-width: 320px) and (max-width: 767px) {

    /****** TYPOGRAPHY ******/

    h1 {
        font-size: 50px;
    }
    
    h2.bold {
        font-size: 30px;
    }
    
    h2.light {
        font-size: 30px;
    }
    
    h3.bold {
        font-size: 24px;
    }
    
    h3.light {
        font-size: 24px;
    }
    
    p.bold {
        font-size: 20px;
    }
    
    p.light {
        font-size: 20px;
    }
    
    small.bold {
        font-size: 16px;
    }
    
    small.light {
        font-size: 16px;
    }

    /****** END OF TYPOGRAPHY ******/

    /********** ---------------------------- **********/

    /****** LAYOUT ******/
    
    main {
        padding: 20px;
    }
    
    .page-header {
        padding: 20px;
    }
    
    .page-center {
        padding: 20px;
    }
    
    .page-footer {
        padding: 20px;
    }

    /****** END OF LAYOUT ******/

    /********** ---------------------------- **********/

    /****** NAVBAR & BUTTON ******/

    .navbar .links,
    .navbar .btn-primary {
        display: none;
    }

    .navbar .toggle-btn {
        display: block;
    }

    .midnav {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-secondary {
        text-align: center;
        font-size: 18px;
        padding: 20px;
        width: 86%;
    }

    .btn-secondary:disabled {
        width: 100%;
    }

    .dropdown-menu {
        display: block;
        left: 1rem;
        width: unset;
    }

    /****** END OF NAVBAR & BUTTON ******/

    /********** ---------------------------- **********/

    /****** COMPONENTS ******/

    img {
        border-radius: 25px;
        width: 100%;
    }

    .footer-detail .vertical-line {
        display: none;
    }

    .content-detail .vertical-line {
        display: block;
    }

    /****** END OF COMPONENTS ******/

    /********** ---------------------------- **********/

    /****** GRID & CONTAINER ******/
    
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-container2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .item2 {
        width: 100%;
    }

    .container-content-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .container-content-row2 {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .container-content-row3 {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
    }
    
    .footer-detail {
        flex-direction: column;
    }

    .content-detail {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-detail .vertical-line {
        display: none;
    }

    /****** END OF GRID & CONTAINER ******/

    /********** ---------------------------- **********/

    /****** MEDIA QUICK FIX ******/

    .toggle-btn {
        font-size: 32px;
    }   
    
    .mobile-hide {
        display: none;
    }

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

    /****** END OF MEDIA QUICK FIX ******/

    /********** ---------------------------- **********/
}

/****** MEDIUM DEVICES (min-width: 768px) ******/

@media only screen and (min-width: 768px) and (max-width: 991.9px) {

    /****** TYPOGRAPHY ******/

    h1 {
        font-size: 60px;
    }
    
    h2.bold {
        font-size: 32px;
    }
    
    h2.light {
        font-size: 32px;
    }
    
    h3.bold {
        font-size: 24px;
    }
    
    h3.light {
        font-size: 24px;
    }
    
    p.bold {
        font-size: 20px;
    }
    
    p.light {
        font-size: 20px;
    }
    
    small.bold {
        font-size: 16px;
    }
    
    small.light {
        font-size: 16px;
    }

    /****** END OF TYPOGRAPHY ******/

    /********** ---------------------------- **********/

    /****** LAYOUT ******/
    
    main {
        padding: 50px;
    }
    
    .page-header {
        padding: 50px;
    }
    
    .page-center {
        padding: 50px;
    }
    
    .page-footer {
        padding: 50px;
    }

    /****** END OF LAYOUT ******/

    /********** ---------------------------- **********/
    
    /****** COMPONENTS ******/

    img {
        width: 100%;
        align-items: flex-start;
    }

    /****** END OF COMPONENTS ******/

    /********** ---------------------------- **********/

    /****** NAVBAR & BUTTON ******/

    .navbar .links,
    .navbar .btn-primary {
        display: none;
    }

    .navbar .toggle-btn {
        display: block;
    }

    .btn-secondary {
        text-align: center;
        font-size: 18px;
    }

    .dropdown-menu {
        display: block;
        right: 3rem;
        left: 2rem;
        top: 130px;
        width: unset;
    }

    /****** END OF NAVBAR & BUTTON ******/

    /********** ---------------------------- **********/

    /****** GRID & CONTAINER ******/

    .grid-container {
        grid-template-columns: repeat(0, 1fr);
    }

    .grid-container2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /****** END OF GRID & CONTAINER ******/

    /********** ---------------------------- **********/

    /****** MEDIA QUICK FIX ******/

    .toggle-btn {
        font-size: 32px;
    }   
    
    .mobile-hide {
        display: none;
    }

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

    /****** END OF MEDIA QUICK FIX ******/

    /********** ---------------------------- **********/

}

/****** EXTRA LARGE DEVICES (min-width: 1200px) ******/

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /****** LAYOUT ******/
    
    main {
        padding: 60px;
    }
    
    .page-header {
        padding: 60px;
    }
    
    .page-center {
        padding: 0px 60px;
    }
    
    .page-footer {
        padding: 60px;
    }

    /****** END OF LAYOUT ******/

    /********** ---------------------------- **********/

    /****** GRID & CONTAINER ******/


    /****** END OF GRID & CONTAINER ******/

    /********** ---------------------------- **********/

    /****** MEDIA QUICK FIX ******/

    .toggle-btn {
        font-size: 32px;
    }   
    
    .mobile-hide {
        display: hidden;
    }

    .mobile-only {
        display: none;
    }

    /****** END OF MEDIA QUICK FIX ******/
    
    /********** ---------------------------- **********/
}





