#menu_top,
#apptitle {
    display: none;
}

:root {
    --darkGrey: #000000;
    --darkGrey: #333333;
    --blue: #0067AF;
    --lightBlue: #A5D1E7;
    --lighterBlue: #F0F6F9;
    --darkBlue: #163F57;
    --white: #FFFFFF;
}

#container {
    .b_header-wrapper {
        max-width: 1457px;
        width: calc(100% - 20px);
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;

        @media screen and (max-width: 767px) {
            padding: 10px 0;
        }

        .b_menu-search-wrapper {
            @media screen and (max-width: 1160px) {
                position: unset;
            }
        }

        #pull {
            display: none;
            @media screen and (max-width: 1160px) {
                display: flex;
                align-items: center;
                text-decoration: none;
                color: var(--darkBlue);
    
                &::after {
                    display: inline-block;
                    margin-left: 0.5rem;
                    color: var(--darkBlue);
                    font-weight: 600;
                    font-size: 16px;
                    content: "\f0c9";
                    width: 15px;
                    font-family: "Font Awesome 6 Pro";
                }
            }
        }

        #ctl00_menu {
            display: flex;
            justify-content: space-between;
            height: 30px;
            width: 100%;
            gap: 44px;
            list-style-type: none;
            padding: unset;
            margin: unset;
    
            @media screen and (max-width: 1160px) {
                display: none;
                justify-content: unset;
                gap: 25px;
                align-items: start;
                padding-left: 10px;
                transition: all 0.3s ease-in-out;
                height: 0;
    
                &.b_menu-open {
                    transition: all 0.3s ease-in-out;
                    height: 100vh;
                    z-index: 10;
                    display: flex;
                    flex-direction: column;
                    gap: unset;
                    background-color: var(--white);
                    width: 100%;
                    position: absolute;
                    left: 0;
                    top: 80px;
                    right: 0;
                    bottom: 0;
                    padding: unset;
    
                    li {
                        padding: 16px 20px;
                    }
                }
            }
    
            * {
                font-size: 18px;
            }
    
            li {
                border-bottom: 2px solid transparent;
    
                @media screen and (max-width: 1160px) {
                    &:nth-child(even) {
                        background-color: var(--lightGrey);
                        width: 100%;
                    }                
                }
            }
        }
        
        #header_top {
            display: none;
        }

        #header {
            figure {
                margin: unset;
            }
        }

       .b_menu-search-container {
            .menu {
                list-style-type: none;
                display: flex;
                gap: 30px;
                align-items: center;
                padding-left: unset;

                li {
                    a {
                        text-decoration: none;
                        color: var(--darkGrey);
                    }

                    &#p15 {
                        a {
                            color: transparent;
                            width: 16px;
                            display: block;

                            &::before {
                                content: '\f002';
                                font-family: "Font Awesome 6 Pro";
                                color: var(--blue);
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        } 
    }
}

#footer {
    margin-top: auto;
    background-color: var(--darkBlue);

    a {
        text-decoration: none;
        border-bottom: unset;
        cursor: pointer;
    }

    #innerfooter {
        max-width: 1160px;
        width: calc(100% - 20px);
        padding: 120px 0;
        margin: 0 auto;

        .footer {
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            @media screen and (max-width: 768px) {
                flex-direction: column;
                gap: 20px;
            }

            * {
                color: var(--white);
            }

            .footer__image {
                figure {
                    margin: unset;
                }
            }

            .footer__image,
            .footer__list--left,
            .footer__list--right {
                max-width: 366px;
                width: 100%;
            }

            ul {
                padding-left: unset;
                list-style-type: none;
                display: flex;
                flex-direction: column;
                gap: 16px;
                margin: unset;

                li {
                    display: flex;
                    flex-direction: row;
                    gap: 10px;

                    &::before{
                        content: '\f054';
                        font-family: "Font Awesome 6 Pro";
                        font-size: 16px;
                        color: var(--white);
                        display: flex;
                        align-items: center;
                    }

                    a {
                        font-size: 16px;
                    } 
                }
            }
        }
    }
}

#ssr-ac-container,
#pagination-wrapper  {
    .btn-color {
        background-color: var(--blue);
        color: var(--white);

        &:hover {
            background-color: var(--darkBlue);
            transition: all 0.3s ease-in-out;
        }
    }
}