/****************************************
    header
*****************************************/

header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height:160px;
    background:#1A3049;
    z-index: 99;
}

header h1 {
    padding:0 30px;
    width:438px;
}

header .soon-to-open{
    opacity: 0.5;
}

header h1 a:first-of-type img:first-of-type {
    margin-right:1.2em;
}

header div {
    position:relative;
    width: calc(100% - 438px);
    height: 100%;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(136, 136, 136, 0.5);
}

.top_nav{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    border-bottom:1px solid rgba(136,136,136,0.5);
    padding-right: 3em;
}

.top_nav li a {
    display:block;
    color:#fff;
    padding:20px;
}

nav ul {
    position:relative;
    display:flex;
    flex-direction: row ;
    justify-content: flex-start ;
    align-items: center ;
    border-bottom:0;
}

nav ul li {
    position:relative;
}

nav ul li a {
    position:relative;
    display: block;
    color: #fff;
    padding: 40px;
    text-align: center;
}

nav ul li a span {
    position: relative;
    display: inline-block;
}

.nav_on {
    position: relative;
    display: block;
    color: #E5EC5F;
    text-align: center;
}

nav ul li a:hover span::after,
.nav_on span::after {
    content:'';
    position:absolute;
    top:-20px;
    left:50%;
    transform: translateX(-50%);
    width:8px;
    height:8px;
    border-radius: 50%;
    background:#E5EC5F;
}

nav ul li ul {
    position:absolute;
    top:99px;
    left:0;
    right:0;
    width:100%;
    display: none;
    background:#fff;
}

nav ul li ul li a {
    padding:16px 0 16px 24px;
    color:#000;
    text-align: left;
    font-size:14px;
    font-weight:300;
}

nav ul li ul li a:hover {
    background:#E5EC5F;
}

nav ul li ul li a:hover::after {
    width:0;
    height:0;
}

/****************************************
   footer
*****************************************/

footer {
    position:relative;
    width:100%;
    background:#1A3049;
    color:#fff;
}

.footer_area {
    position:relative;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:5em 0;
}

.footer_link {
    text-align:center;
}

.footer_link img {
    display:block;
    width:100%;
    max-width:160px;
}

.footer_link ul {
    display:flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top:1em;
}

.footer_link ul li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.footer_link ul li a img {
    width:auto;
}

.footer_information ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-bottom:2em;
}

.footer_information ul li a {
    font-size:12px;
    color:#fff;
    font-weight:400;
}

.footer_information ul li:first-of-type a {
    color:#E5EC5F;
    font-weight:700;
}

.footer_information address,
.footer_information dl,
.footer_information p {
    font-size:12px;
    font-weight:400;
    font-style:normal;
}

.footer_information dl {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top:0.8em;
}

.footer_information dl dt{
    padding:0 1em;
}

.footer_information dl dd {
    position:relative;
    padding: 0 1em 0 0;
}

.footer_information dl dt:first-of-type {
    padding:0 1em 0 0;
}

.footer_information dl dd:first-of-type::after {
    content:'';
    position:absolute;
    top:2px;
    right:0;
    width:1px;
    height:10px;
    background:#fff;
}

.footer_information p {
    margin-top: 2em;
}

/****************************************
   color
*****************************************/
.blue_color {
    color: #3F97C3;
}

.red_color {
    color: #E60146;
}

.iron_color {
    color: #595A5C
}

.bronze_color {
    color: #9C5D3A
}

.silver_color {
    color: #96989B
}

.gold_color {
    color: #F9B530
}

.platinum_color {
    color: #3FBCAE
}

.diamond_color {
    color: #508AFA
}

/****************************************
   paging_box
*****************************************/

.paging_box {
    position:relative;
    width:100%;
    text-align:center;
    padding:4em 0;
}

.paging_box ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.paging_box ul li button{
    background:transparent;
    border:0;
    font-size:14px;
    color:#999;
    width:40px;
    height:40px;
}

.paging_box ul li button img {
    margin-top:3px;
}

.paging_box ul li .paging_on{
    font-weight:700;
    color:#222 !important;
}


/****************************************
   media
*****************************************/

.mobile_menu {
    display:none;
}

@media all and (max-width:1590px) {
    nav ul li a {
        padding:40px 30px;
    }
}

@media all and (max-width:1430px) {
    nav ul li a {
        padding: 40px 20px;
    }
}

@media all and (max-width:1310px) {
    nav ul li a {
        padding: 40px 15px;
    }
}

@media all and (max-width:1280px) {
    .mobile_menu {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        display: block;
    }
    header {     
        height: auto; 
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    header h1 {
        position: relative;
        display: flex;
        padding:20px;
        width: 100%;   
    }
    header h1 a:first-of-type img {
        width:80%;
        max-width:100px;
        display: block;
    }
    header h1 a:first-of-type img:first-of-type {
        margin-right: 0.5em;
    }
    header h1 a:last-of-type img {
        max-width: 25px;
    }    
    header div {
        display:none;
        width: 100%;
        border-top: 1px solid rgba(136, 136, 136, 0.5);
        border-left:0;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
    }
    .top_nav {
        flex-direction: column;
        justify-content: flex-start;
        padding-right: 0;
        width: 100%;
        align-items: flex-start;
    }
    nav {
        width:100%;
    }
    nav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: 0;
        flex-wrap: nowrap;
    }
    nav ul li {
        display:block;
        width:100%;
        text-align:left;
        border-bottom: 1px solid rgba(136, 136, 136, 0.5);
    }    
    nav ul li a {
        text-align:left;
        padding: 20px;        
    }
    nav ul li .mobile_menu {
        padding: 0;
        right:20px;
        top:20px;
        transform: translateX(0);
    }
    nav ul li .mobile_menu img {        
        max-width:20px;
    }
    .nav_on {
        position: relative;
        display: block;
        color: #E5EC5F;
        padding: 20px;
        text-align: left;
    }
    nav ul li a:hover span::after,
    .nav_on span::after {
        top: 50%;
        left: auto;
        right: -20px;
        transform: translateY(-50%);
    }
    nav ul li ul {
        position: relative;
        top: 0;
    }
    nav ul li ul li:last-of-type {
        border-bottom: 0;
    }

    .visual_slider {
        margin-top:85px;
    }

    .footer_area {
        width:90%;
    }
}

@media all and (max-width:575px) {
    .footer_area {
        flex-direction: column;
        padding: 3em 0;
        gap: 3em;
        text-align:center;
    }
}

@media all and (max-width:310px) {
    header h1 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: 280px;
    }
    .footer_link img {
        max-width: 130px;
        margin: 0 auto;
    }
    .footer_link ul li a {
        width: 38px;
        height: 38px;
    }
    .footer_information ul {
        gap: 10px;
        justify-content: center;
    }
    .footer_information dl {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer_information dl dd {
        padding: 0 0.5em 0 0;
    }
    .footer_information dl dt {
        padding: 0 0.5em;
    }
    .footer_information dl dt:first-of-type {
        padding: 0 0.5em 0 0;
    }
}

@media all and (max-width:280px) {
    header h1 a:first-of-type img {
        max-width: 89px;
    }
}



/****************************************
   profile image round
*****************************************/
.profile_img_round {
    width: 40px;
    height: 40px;
    object-fit: cover; 
    border-radius: 50%; 
}