/*
1. header 
2. header-bar
3. nav
4. logo
*/

/* header */
header#ccrc-header {
    font-family: kurious;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    margin: 15px 0;
}

body.modal-open header#ccrc-header {
    padding-right: 15px;
}

.header-container {
    max-width: 1272px;
    margin: 0 auto;
}

@media screen and (max-width: 1272px) {
    .header-container {
        padding: 0 16px;
    }
}

@media screen and (max-width: 992px) {
    header#ccrc-header {
        margin: 0;
    }

    .header-container {
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    header#ccrc-header.active {
        background: rgb(28, 59, 81);
        background: -moz-linear-gradient(180deg, rgba(28, 59, 81, 1) 0%, rgba(21, 44, 61, 1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(28, 59, 81, 1) 0%, rgba(21, 44, 61, 1) 100%);
        background: linear-gradient(180deg, rgba(28, 59, 81, 1) 0%, rgba(21, 44, 61, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1c3b51", endColorstr="#152c3d", GradientType=1);
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 9999;
    }
}

/* header-bar */
header#ccrc-header .header-bar {
    /* --ccrc-theme_header-bar-height: 140px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: var(--ccrc-theme_header-bar-height); */
    position: relative;
    padding: 16px 49px 16px 16px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 82px;
    box-shadow: 0 4px 4px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
}

@media screen and (max-width: 991px) {
    header#ccrc-header .header-bar {
        gap: 60px;
        --ccrc-theme_header-bar-height: 70px;
        gap: 10px;
        justify-content: space-between;
        border-radius: 0px;
        padding: 15.5px 16px;
    }

    header#ccrc-header.active .header-bar {
        background: none;
        box-shadow: none;

    }
}


.burger {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.burger .burger-1,
.burger .burger-2,
.burger .burger-3 {
    position: absolute;
    background: var(--white);
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: 0.35s cubic-bezier(0, 0, 0, 1);
    border-radius: 10px;
}

#ccrc-header:not(.active) .burger-1 {
    translate: -50% -7px;
}

#ccrc-header:not(.active) .burger-2 {
    translate: -50% -1px;
}

#ccrc-header:not(.active) .burger-3 {
    translate: -50% 5px;
}


#ccrc-header.active .burger-1 {
    rotate: 45deg;
}

#ccrc-header.active .burger-2 {
    opacity: 0;
}

#ccrc-header.active .burger-3 {
    rotate: -45deg;
}


header#ccrc-header .logo {
    max-width: 207px;
}

@media screen and (max-width: 1200px) {
    header#ccrc-header .logo {
        max-width: 150px;
    }
}

@media screen and (max-width: 991px) {
    header#ccrc-header .logo {
        max-width: 103px;
    }
}


/* nav */

header#ccrc-header .nav-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 991px) {
    header#ccrc-header .nav-bar {
        display: none;
    }

    header#ccrc-header.active .header-bar .nav-bar {
        display: flex;
        gap: 65px;
        flex-direction: column;
        position: absolute;
        top: var(--ccrc-theme_header-bar-height);
        align-items: start;
        margin-top: 29px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 31px;
        padding-right: 31px;
    }
}

header#ccrc-header .nav-list {
    display: flex;
    gap: 36px;
    /* set up */
    margin: 0px;
    padding: 0;
}

@media screen and (max-width: 991px) {
    header#ccrc-header .nav-list {
        flex-direction: column;
        gap: 16px;
    }
}

header#ccrc-header .nav-list li,
header#ccrc-header .nav-list ul li {
    /* set up */
    list-style: none;
    list-style-type: none;
    cursor: pointer;

}

header#ccrc-header .nav-list li a {
    /* font */
    color: #FFFFFF;
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 400;
}

header#ccrc-header .nav-bar .contact {
    display: flex;
    gap: 17px;
}

header#ccrc-header .nav-bar .contact .icon-contact {
    width: 35px;
    height: 35px;
}


/* Header Detail */
#ccrc-header.ccrc-header-detail {
    margin: 0;
    background-color: #1C3B51;
}

#ccrc-header.ccrc-header-detail .header-container {
    max-width: 1240px;
}

#ccrc-header.ccrc-header-detail .header-bar {
    background: none;
    backdrop-filter: blur(0px);
    box-shadow: none;
    gap: 225px;
}

#ccrc-header.ccrc-header-detail .logo {
    max-width: 144px;
}

@media screen and (min-width: 992px) {
    #ccrc-header.ccrc-header-detail .header-bar {
        padding: 24.5px 0;
    }
}