:root {
    --primary-color: #ed1c24;
    --primary-black-color: #003d58;
    --dark-green-color: #678564;
    --light-green-color: #e8ede8;
    --lighter-green-color: #f2f4f2;
    --dark-blue-color: #023e58;
    --light-orange-color: #f7a482;
}

html {
    min-height: 100%;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    font-family: 'Barlow','Font Awesome 5 Free', sans-serif;
    scroll-behavior: smooth;
}

html.closed, body.closed {
    overflow: hidden;
}

body {
	background: #fff;
	color: var(--primary-black-color);
	font-size: 16px;
	font-weight: 400;
}

body::-webkit-scrollbar {
    width: 0.4em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    outline: 1px solid #ed1c24;
    border-radius: 90px;
}
a {
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

a:focus {
    text-decoration: none;
}

ul, li {
    list-style-type: none;
}

h1  {
    font-size: 44px;
    font-family: 'Shippori Mincho', serif;
    color: var(--primary-color);
}

@media(max-width: 990px) {
    h1 {
        font-size: 40px;
    }
}

@media(max-width: 768px) {
    h1 {
        font-size: 28px;
    }
}

@media(max-width: 414px) {
    h1 {
        font-size: 24px;
    }
}

@media(max-width: 375px) {
    h1 {
        font-size: 20px;
    }
}

h2  {
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0;
}

@media(max-width: 768px) {
    h2 {
        font-size: 28px;
    }
}

h3  {
    font-size: 30px;
    font-family: 'Shippori Mincho', serif;
    color: var(--primary-color);
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-family: 'Barlow', sans-serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}


p, a, li, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

p, a, li {
    font-weight: 500;
}

.img-responsive {
    max-width: 100%;
    object-fit: cover;
}

.btn {
    transition: .3s ease;
}

.btn-red,
.btn-news {
    background: #ed1c24;
    padding: 6px 16px;
    color: #fff;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    width: 230px;
    letter-spacing: 1.3px;
}

@media(max-width: 768px) {
    .btn-red,
    .btn-news {
        font-size: 13px;
        width: 180px;
    }
}

.btn-red:hover,
.btn-news:hover {
    border: 1px solid #ed1c24;
    background: #fff;
    color: var(--primary-color);
}

.home-btn {
    position: absolute;
    bottom: -56px;
    left: 50%;
    padding: 8px 16px;
    transform: translateX(-50%);
    color: var(--primary-color);
    border: 1px solid #ed1c24;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
}

.border-btn {
    padding: 8px 16px;
    color: var(--primary-color);
    border: 1px solid #ed1c24;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
}

.home-btn:hover,
.border-btn:hover {
    background: #ed1c24;
    color: #fff;
}

.mobile-home-btn {
    display: none;
}

@media(max-width: 990px) {
    .mobile-home-btn {
        display: block;
        width: 180px;
        margin: 20px auto;
    }
}

/*---- Header/ Nav bar ----*/

.header {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 20px 2em;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

@media(max-width: 1200px) {
    .header {
        padding-top: 40px;
    }
}

@media(max-width: 990px) {
    .header {
        justify-content: left;
        align-items: center;
    }
}

@media(max-width: 414px) {
    .header {
        padding: 16px 2em;
    }
}

@media(min-width: 991px) {
    .menu-icon {
        display: none;
    } 
}

.header-btn {
    position: relative;
    display: none;
    z-index: 999;
}


@media(max-width: 990px) {
    .header-btn {
        display: block;
        float: right;
        padding-right: 35px;
    }
}

.menu-icon {
    position: absolute;
    background: transparent;
    outline: 0;
    border: 0;
    right: 30px;
    z-index: 2;
}

.menu-icon span {
    width: 40px;
    height: 2px;
    background: #222;
    margin: 8px 0;
    display: block;
    transition: .3s ease;
}

@media(max-width: 576px) {
    .menu-icon span {
        width: 34px;
    }
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

.menu-icon.closed span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background: #ed1c24;
}

.menu-icon.closed span:nth-child(2) {
    opacity: 0;
}

.menu-icon.closed span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background: #ed1c24;
}


.logo {
    width: 20%;
    z-index: 9;
}

.company-logo {
    height: 50px;
    object-fit: cover;
}

@media(max-width: 414px) {
    .company-logo {
        height: 32px;
    }
}

.header-right {
    width: 80%;
    display: flex;
    justify-content: end;
    align-items: end;
    flex-wrap: wrap;
}

#navbarNav {
    display: flex;
    justify-content: end;
}

@media(max-width: 990px) {
    .header-right {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    
    #navbarNav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
    }
    
    .navbar-nav {
        width: 100%;
        margin: 0;
    }
}

.navbar-nav a {
    color: var(--primary-black-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 20px;
    align-items: center;
    font-size: 14px;
}

.navbar-nav a:hover {
    color: var(--primary-color);
}

.navbar-nav {
    padding: 0;
}

.navbar-nav .active a.nav-link {
    color: var(--primary-color);
}

@media(max-width: 990px) {
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav>li>a {
        display: block;
        font-size: 22px;
        width: 40vw;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }
}

@media(max-width: 576px) {
    .navbar-nav>li>a {
        width: 80vw;
    }
}

.nav-social {
    display: inline-flex;
    align-items: center;
}

.nav-social a {
    margin: 0 4px;
    color: var(--primary-black-color);
    font-size: 16px;
    transition: .3s ease;
}

.nav-social a:hover i {
    color: var(--primary-color);
}

@media(max-width: 990px) {
    .nav-social {
        width: 100%;
        justify-content: center;
        margin: 20px 0;
    }
    
    .nav-social a {
        margin: 0 6px;
        font-size: 24px;
    }
}



/*---- Banner ----*/

#banner {
    position: relative;
    background-size: cover;
    background-position: top;
    margin: 0 2em;
}

#banner .banner-text {
    position: absolute;
    left: 75%;
    top: 30px;
    transform: translateX(-50%);
    visibility: visible;
}

#banner .banner-text .underline {
    border-bottom: 3px solid #ed1c24;
    display: inline-block;
}

@media(max-width: 768px) {
    #banner .banner-text {
        left: 70%;
        transform: translateX(-20%);
    }
}

@media(max-width: 576px) {
    #banner .banner-text {
        left: auto;
        right: 0;
        bottom: 4%;
        transform: translateX(-10%);
        top: auto;
    }
}

@media(max-width: 414px) {
    #banner .banner-text {
        left: 16%;
        right: 0;
        bottom: 0;
    }
}


@media(max-height: 414px) {
    #banner .banner-text {
        top: 0;
    }
}

#banner h1 {
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
}

@media(max-width: 414px) {
    #banner h1 {
        margin-bottom: 10px;
    }
}

#banner a {
    letter-spacing: 1px;
}

.sub-banner {
    width: 80%;
    margin: auto;
}

@media(max-width: 990px) {
    .sub-banner {
        width:  100%;
    }
}

@media(max-width: 768px) {
    .sub-banner {
        width:  95%;
    }
}

.sub-banner-image {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: top;
    margin-bottom: 10px;
    display: inline-block;
}

.sub-banner h1 {
    position: absolute;
    width: 340px;
    right: 24%;
    top: 35%;
    transform: translate(50%, -50%);
    line-height: 1.13;
}

@media(max-width: 768px) {
    .sub-banner h1 {
        font-size: 30px;
        width: 240px;
        top: 40%;
        right: 22%;
        line-height: 1.3;
    }
    
    .sub-banner-image {
        height: 400px;
    }
}

@media(max-width: 576px) {
    .sub-banner h1 {
        width: 230px;
        top: 40%;
        right: 25%;
        line-height: 1.4;
    }
    
    .sub-banner-image {
        height: 330px;
    }
}

@media(max-width: 414px) {
    .sub-banner h1 {
        width: 160px;
        top: 26%;
        right: 24%;
        font-size: 16px;
    }
    
    .sub-banner-image {
        height: 240px;
    }
}

@media(max-width: 375px) {
    .sub-banner h1 {
        width: 120px;
    }
}

#team .sub-banner h1 {
    color: #e9cfde;
    font-weight: 700;
}

#community .sub-banner h1 {
    color: #e8e1c7;
}

.sub-banner .btn-red {
    margin-right: 15%;
    float: right;
    display: block;
}

@media(max-width: 990px) {
    .sub-banner .btn-red {
        display: none;
    }
}

.sub-banner p {
    /*width: 58%;*/
    margin: 10px auto;
    text-align: center;
    font-size: 26px;
}

.sub-banner .underline {
    border-bottom: 2px solid #333;
    display: inline-block;
}

.sub-banner .desc {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    display: block;
}

@media(max-width: 990px) {
    .sub-banner p {
        /*width: 68%;*/
    }
}



/*----- Main / All page ------*/

.main {
    font-family: 'Shippori Mincho', 'Font Awesome 5 Free', serif;
    padding: .5em 0;
    margin: 0 auto 40px;
}

/*----- Team -----*/

#team a {
    color: var(--primary-black-color);
}

#team a.btn-red {
    color: #fff;
}

#team a:hover {
    color: var(--primary-color);
    font-weight: bold;
}

.team-section {
    width: 80%;
    margin: 60px auto;
}

@media(max-width: 768px) {
    #team a.btn-red {
        display: none;
    }
    .team-section {
        width: 90%;
    }
}

.team-section h4 {
    margin-bottom: 40px;
}

.team-row {
    margin-bottom: 40px;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-row > div {
    margin-bottom: 40px;
    display: inline-block;

}

.member-photo img {
    width: 100%;
    min-height: 400px;
    margin-bottom: 20px;
}

@media(min-width: 1120px) {
    .member-desc-first-row {
        height: 170px;
    }

    .member-desc-second-row {
        height: 210px;
    }
}

.member-info {
    width: 100%;
    display: inline-block;
}


.member-info .info-box,
.member-contact .info-box {
    padding: 0;
    color: var(--primary-color);
}

.member-info .name {
    font-size: 30px;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
}

.member-info .title {
    font-size: 15px;
    font-family: 'Shippori Mincho', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0;
    font-weight: bold;
}



.member-info .social {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.member-info .social a {
    margin-left: 10px;
    font-size: 16px;
}

.member-contact {
    width: 100%;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
}

/*------- Start page ---------*/

#start, #community {
    width: 70%;
    margin-top: 20px;
}

#start .container,
#community .container{
    display: contents;
}

#start .btn-red,
#community .btn-red,
#employee .btn-red {
    margin-left: calc(100% / 2 - 10px);
    margin-bottom: 10px;
    width: 230px;
    display: block;
    position: absolute;
    top: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media(max-width: 990px) {
    #start .btn-red, 
    #community .btn-red,
    #employee .btn-red {
        display: none;
    }
}

@media(max-width: 576px) {
    #start, #community, #employee {
        width: 100%;
    }
}

.bg-color {
    background: var(--lighter-green-color);
    padding-bottom: 40px;
    margin-bottom: 0;
}

#employee .bg-color {
    padding-bottom: 40px;
    margin: 40px 0 0;
}

.intro{
    width: 80%;
    margin: auto;
    text-align: center;
}

.intro h2 {
    margin: 20px 0;
}

.intro p {
    font-size: 20px;
}

.intro span {
    color: var(--primary-color);
}

.intro span.underline {
    text-decoration: underline;
    display: inline-block;
    color: var(--primary-black-color) !important;
}

#start-content {
    background: var(--lighter-green-color);
}

#start-content,
#bottom-content {
    padding: 60px 0;
}


#start-content h3,
#bottom-content h3 {
    color: #f8a583;
}

#bottom-content p {
    color: #fff;
}

#start-content .main,
#bottom-content .main {
    padding: 0;
    margin: 0;
}

#bottom-content {
    background: var(--dark-blue-color);
}

#bottom-content .btn-red {
    position: relative;
    margin-top: 20px;
    margin-left: 0;
}

.start-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-box {
    /*width: 80%;*/
    margin: auto;
}

@media(max-width: 576px) {
    .start-box {
        flex-wrap: wrap;
    }
}

.start-box p {
    font-size: 16px;
}

.start-box li strong {
    color: var(--dark-green-color);
}

@media(max-width: 576px) {
    .start-box p {
        font-size: 16px;
    }
}

.start-box .full {
    margin-top: 20px;
    width: 80%;
}

.employee-box .full {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.start-box img,
.start-box .left h2,
.start-box .left p,
.start-box .right h2,
.start-box .right p,
.start-box .team {
    width:  400px;
}

@media(max-width: 990px) {
    .start-box img,
    .start-box .left h2,
    .start-box .left p,
    .start-box .right h2,
    .start-box .right p,
    .start-box .team {
        width: 100%;
    }
}

.employee-box img,
.employee-box .left h2,
.employee-box .left p,
.employee-box .right h2,
.employee-box .right p {
    width: 100%;
}

.start-box img {
    margin: 16px 0;
}

.start-box .left {
    /*justify-content: right;*/
    float: left;
}

.employee-box .left {
    justify-content: left;
}

.start-box .left,
.start-box .right {
    width: 47%;
    margin: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

.employee-box .left {
    margin-right: 20px;
    margin-left: 0;
}

.employee-box .right {
    margin-left: 20px;
    margin-right: 0;
}

.employee-box .left,
.employee-box .right {
    width: 50%;
}

@media(max-width: 990px) {
    
    .employee-box {
        width: 90%;
    }
    
    .employee-box .full {
        flex-flow: column;
    }
    
    .employee-box .full .left,
    .employee-box .full .right {
        width: 100%;
        margin: 0;
    }
    
    .employee-box img.start-arrow {
        width: 60%;
    }
    
    .start-box .left,
    .start-box .right,
    .employee-box .left,
    .employee-box .right {
        width: 46%;
        justify-content: center;
    }
}

@media(max-width: 768px) {
    .start-box .left,
    .start-box .right,
    .employee-box .left,
    .employee-box .right {
        width: 45%;
    }
    
    .employee-box {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .start-box .left,
    .start-box .right {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
    
    .start-box .right {
        float: none;
    }
    
    .start-box .full {
        margin: 0 30px 30px;
    }
    
}

.start-box .left h2,
.start-box .left p,
.start-box .right h2,
.start-box .right p {
    line-height: 1.3;
    float: none;
}

.start-box .left h2:not(:first-child),
.start-box .right h2:not(:first-child) {
    margin-top: 30px;
}

@media(max-width: 768px) {
    .start-box .left h2,
    .start-box .left p,
    .start-box .right h2,
    .start-box .right p {
        width: 100%;
    }
}

.employee-box ul,
#article-section ul{
    padding-left: 0;
}

#article-section ol {
    padding-left: 20px;
}

.employee-box ul.list,
#article-section ul.list {
    padding-left: 20px;
}

.employee-box ul.list li,
#article-section ul.list li {
    text-indent: -10px;
    margin-bottom: 6px;
}

#article-section ol li {
    list-style-type: decimal;
    margin-bottom: 6px;
}

.employee-box ul.list li:before,
#article-section ul.list li:before {
    content: '\f111';
    position: relative;
    top: -2px;
    font-size: 6px;
    font-weight: 900;
    margin-right: 8px;
    color: var(--dark-blue-color);
    display: inline-block;
}

.employee-box li {
    margin-bottom: 10px;
}

.start-box .full h2 {
    margin: 20px 0;
    text-align: center;
}

.employee-box .full h3 {
    font-size: 24px;
    margin: 20px 0;
    text-align: left;
}

@media(max-width: 990px) {
    .employee-box .full h3 {
        text-align: center;
    }
}

@media(max-width: 768px) {
    .start-box .full h2,
    .employee-box .full h3 {
        margin-left: 10px;
    }
    
    .start-box .full .left h2 {
        margin-left: 0;
    }
    
}

@media(max-width: 576px) {
    .start-box .full h2,
    .start-box .full p {
        display: inline-block;
        width: 100%;
    }
    
    .start-box .full h2 {
        margin: 20px 0;
    }
}

.start-box .right {
    display: block;
    float: right;
}

@media(max-width: 576px) {
    .start-box .right {
        float: none;
    }
}


@media(max-width: 576px) {
    .start-box .left img,
    .start-box .right img {
        float: left;
        margin: 10px 0;
    }
}

.start-box .contact {
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    margin-top: 50px;
    line-height: 2 !important;
    font-size: 14px !important;
    letter-spacing: 1px;
}

.start-box .contact a {
    color: var(--primary-color);
}

.start-box .contact a:hover {
    text-decoration: underline;
}

.start-box .start-team-section {
    display: flex;
    align-items: center;
    justify-content: center;
}


.start-box .team {
    text-align: center;
}

.start-box .team a {
    margin-bottom: 30px;
    font-family: 'Barlow', sans-serif;
}

.start-box img.start-arrow {
    padding-right: 60px;
}


@media(max-width: 768px) {
    .start-box img.start-arrow {
        width: 80%;
        float: none;
        display: inline-block;
        margin: 20px auto;
        padding: 0;
    }
    
    .start-box .start-team-section {
        flex-wrap: wrap;
    }
    
    .start-box .team {
        margin-top: 30px;
    }
}


/*------ Community -------*/

.comm-panel {
    width: 90%;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.comm-panel p.link {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    display: inline-block;
}

.comm-panel p.link a {
    color: var(--primary-black-color);
}

.comm-panel p.link a:hover {
    color: var(--primary-color);
}

.comm-box {
    width: 80%;
    margin: 20px auto;
    display: inline-block;
}

@media(max-width: 768px) {
    .comm-box {
        width: 90%;
    }
}

@media(max-width: 768px) {
    .comm-box .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .comm-box .info-img {
        order: 1;
    }
    
    .comm-box .info-desc {
        order: 2;
    }
}

.comm-box .info {
    padding: 0 20px;
}

.comm-box .horizontal {
    height: 360px;
    margin: auto;
}

@media(max-width: 990px) {
    .comm-box .horizontal {
        height: 280px;
    }
}

.comm-img-right .vertical {
    max-width: 360px;
    float: left;
}

.comm-img-left .vertical {
    max-width: 360px;
    float: right;
}

@media(max-width: 768px) {
    .comm-img-right .vertical,
    .comm-img-left .vertical{
        /*max-width: 280px;*/
        max-width: 100%;
    }
}

.comm-box p {
    font-size: 14px;
}

.comm-box .comm-logo {
    border-radius: 100em;
    /*width: 80px;*/
    height: 80px;
    margin: 20px 0;
}

.comm-box .comm-logo img {
    max-height: 100px;
}

.comm-desc {
    width: 100%;
    text-align: center;
    margin: 50px 0;
    padding: 30px 20px;
    display: inline-block;
    background: var(--light-green-color);
}

.comm-desc p {
    font-size: 26px;
    margin: 10px 0;
}

.comm-desc .link {
    font-size: 14px;
}





/*******************************************
         search
*******************************************/
#search-form {
    width: 200px;
    height: 30px;
    margin: 0 20px;
}

.search-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    opacity: 0;
    
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0,-100%);
    -moz-transform: translate(0,-100%);
    -o-transform: translate(0,-100%);
    -ms-transform: translate(0,-100%);
    transform: translate(0,-100%);
}

@media(max-width: 990px) {
    .search-box {
        /*position: absolute;*/
        height: 100vh;
    }
}

.search-box.open {
    -webkit-transform: translate(0px,0px) scale(1,1);
    -moz-transform: translate(0px,0px) scale(1,1);
    -o-transform: translate(0px,0px) scale(1,1);
    -ms-transform: translate(0px,0px) scale(1,1);
    transform: translate(0px,0px) scale(1,1);
    opacity: 1;
    z-index: 110
}


#search-form input[type="search"] {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #003d58;
    padding: 5px;
    color: var(--primary-black-color);
    font-size: 14px;
    outline: 0;
    font-weight: 500;
}

#search-form input[type="search"]::placeholder {
    color: var(--primary-black-color);
}

#search-wrapper input[type="search"]:-ms-input-placeholder,#search-wrapper input[type="search"]::-ms-input-placeholder {
    color: var(--primary-black-color)
}

.search-box .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    background-color: transparent;
    border: none;
    opacity: 1;
    font-size: 40px;
    z-index: 2;
}

@media(max-width: 990px) {
    #search-wrapper {
        margin: 20px auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    #search-form input[type="search"] {
        font-size: 22px;
        text-align: center;
        border: 0;
    }
    
    #search-form input[type="search"]:focus {
        border-bottom: 1px solid #003d58;
    }
    
    #search-form input[type="search"]:focus::placeholder {
        color: transparent;
    }
}

#search-result {
    color: #fff;
    margin: 30px;
    position: relative;
}

#search-result li.search-item {
    font-size: 14px;
    list-style-type: disc;
    margin-left: 20px;
}

.results-close-btn {
    float: right;
    opacity: 1;
    height: 12px;
    width: 12px;
    position: absolute !important;
    top: -15px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
}

#search-result a {
    color: #fff;
    font-size: 18px
}

#search-result .pagination li.cur {
    color: #fff;
}

.overflow {
    overflow: hidden;
}

.search-open {
    visibility: visible;
    opacity: 1;
}

.search-close {
    visibility: hidden;
    opacity: 0;
}

.navbar-form .search-btn {
    background-color: #9a132a;
    padding: 0.44em 2.5em;
    font-size: 14px;
}

.navbar-form .search-btn span {
    color: #fff;
}

.navbar-form input {
    border-radius: 0;
    border-right: 0;
}

.navbar-form input:focus {
    border-color: #9a132a;
    webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 30, 65, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 30, 65, 0.6);
}

@media(max-width: 767px) {
    #search-tool-mobile form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #search-tool-mobile .input-group-btn {
        display: block;
    }
}

#search-tool-mobile {
    position: absolute;
    top: 85px;
    right: 115px;
    z-index: 100;
}

@media(max-width: 767px) {
    #search-tool-mobile {
        right: 85px;
    }
}

.default_header #search-tool {
    left: -175px;
}

@media(max-width: 1200px) {
    .input-group-btn {
        display: block;
    }
}

#error {
    display: block;
    color: #a94442;
}

.si-wrapper-top {
    transform: translate(-50%, -140%);
}

@media(min-width: 480px) and (max-width: 767px) {
    .si-wrapper-top {
        width: 400px;
    }
}

@media(max-width: 479px) {
    .si-wrapper-top {
        width: 250px;
    }
}

@media(min-width: 768px) {
    .si-wrapper-top {
        width: 600px;
    }
}

/*------ Footer ------*/

#footer {
    background: #fdf5e5;
    padding: 4em 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
}

@media(max-width: 768px) {
    #footer {
        padding: 4em .5em;
    }
}

#footer .details a {
    color: var(--primary-black-color);
}

#footer .links.details a {
    color: var(--primary-black-color);
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}

#footer .details a:hover {
    color: var(--primary-color);
}

#footer a.underline {
    text-decoration: underline;
}

#footer .top {
    display: flex;
    align-items: center;
}

#footer .top .col-md-6{
    padding: 0;
}

#footer .footer-logo {
    width: 220px;
    margin-bottom: 6px;
    padding-right: 20px;
}

.logo-sub-title {
    font-size: 16px;    
    font-weight: 700;
}

#footer .nav-social a {
    font-size: 20px;
}

@media(max-width: 768px) {
    #footer .nav-social a {
        font-size: 26px;
        margin-left: 10px;
    }
}

#footer .btn-red {
    position: relative;
    margin: 42px 0;
}

.sitemap {
    display: flex;
    margin: 20px 0;
    font-family: 'Barlow', sans-serif;
}

.sitemap .navbar-nav {
    width: 100%;
}

@media(max-width: 990px) {
    .sitemap .navbar-nav>li>a {
        width: auto;
        font-size: 14px;
        margin: 0;
        margin-right: 20px;
        text-align: left;
        display: inline-block;
    }
    
    .sitemap .navbar-nav li {
        display: inline-block;
        width: auto;
    }
}

@media(max-width: 768px) {
    .sitemap .navbar-nav {
        padding: 0 15px;
    }
    
    .sitemap .navbar-nav li {
        display: inline-block;
    }
}

.sitemap .navbar-nav .active a {
    color: var(--primary-black-color);
}

.sitemap .navbar-nav .active a:hover {
    color: var(--primary-color);
}

.footer-desc {
    clear: both;
    float: none;
    margin-bottom: 30px;
    margin-right: 50px;
}

@media(max-width: 768px) {
    .footer-desc {
        margin-right: 0;
        padding: 0 15px;
    }
}

.footer-desc p {
    margin-bottom: 16px;
}

#footer .office-title {
    color: var(--primary-color);
    font-size: 18px;
    margin: 36px 0 20px;
    font-weight: 600;
}

#footer .details {
    margin-bottom: 20px;
}

#footer .details span {
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    color: var(--primary-color);
    font-size: 12px;
    margin-right: 5px;
    letter-spacing: 1px;
}

#footer .links a {
    margin-right: 16px;
    line-height: 1.7em;
}

#footer .links, #footer .links a, #footer .disclaimer {
    font-weight: 400;
    font-size: 13px;
}

#footer .disclaimer a {
    text-transform: none;
}

.footer-partner {
    margin: 30px 0 10px;   
}

.footer-partner img {
    height: 40px;
    margin: 0 5px 15px 0;
    display: inline-block;
}

#footer .offer p {
    display: inline-block;
    color: var(--primary-color);
    font-family: sans-serif;
    letter-spacing: 1.3px;
}

#footer .offer .accordion h2 {
    text-align: left;
    color: var(--primary-black-color);
    font-size: 1.1em;
}

#footer .offer button {
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

#footer .offer button.accordion-btn i {
    font-size: 12px;
    margin-right: 4px;
    display: inline-block;
    transform: rotate(0deg);
    transition: .3s ease;
}

#footer .offer button.accordion-btn:not(.collapsed) i {
    transform: rotate(90deg);
}

#footer .offer .card-body {
    padding-left: 16px;
    padding-bottom: 20px;
}

/* Banner Fade animation*/

.slick-content {
    height: calc(100vh - 160px);
}

.slick-list img,
.slick-list iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media(max-width: 414px) {
    .slick-content {
        height: calc(100vh - 140px);
    }
}

@media(max-width: 576px) {
    
    .slick-content:nth-child(1) img {
        object-position: 30% top;
    }
    
    .slick-content:nth-child(2) img {
        object-position: 76% top;
    }
    
    .slick-content:nth-child(3) img {
        object-position: 60% top;
    }
    
    .slick-content:nth-child(4) img {
        object-position: 40% top;
    }
}

@media(max-width: 414px) {
    
    .slick-content:nth-child(1) img {
        object-position: 20% bottom;
    }
    
    .slick-content:nth-child(2) img {
        object-position: 50% top;
    }
    
    .slick-content:nth-child(3) img {
        object-position: 38% top;
    }
    
    .slick-content:nth-child(4) img {
        object-position: 28% top;
    }
}

ul.list li:before {
  content: '\f111';
  font-weight: 900;
  font-size: 10px;
  color: var(--primary-color);
  margin-right: 8px;
}


/*--- Article ---*/

.article {
    padding-top: 60px;
}

.article .top-title {
    margin: 20px auto;
}

.article .title {
    max-width: 800px;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Shippori Mincho', 'Font Awesome 5 Free', serif;
    text-align: center;
    margin: auto;
}

.article .date {
    text-align: center;
    margin: 20px 0;
}

@media(max-width: 990px) {
    .article .title {
        max-width: 90%;
    }
}

.article .back {
    margin-bottom: 20px;
}

.article .back a {
    color: var(--primary-black-color);
}

.article .back a:hover {
    color: var(--primary-color);
}

.article .back a i {
    margin-right: 10px;
}

.article-body {
    padding-bottom: 80px;
}

.article-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width: 990px) {
    .article-row img {
        width: 80%;
        margin: 20px auto;
    }
}

.article-area h4 {
    font-family: 'Shippori Mincho', 'Font Awesome 5 Free', serif;
    text-align: left;
}

.article-area p,
#article-section ul li,
#article-section ol li{
    font-weight: 400 !important;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary-black-color);
    font-weight: 400;
    font-size: 14px;
}

.bottom-info {
    background: var(--light-green-color);
    padding: 20px;
    margin: 20px 0;
}

.green-box {
    display: inline-flex;
    flex-wrap: wrap;
}

.green-box .box-list {
    width: calc(50% - 12px);
    margin: 6px;
    padding: 10px 20px 30px;
    background: var(--light-green-color);
}

@media(max-width: 768px) {
    .green-box .box-list {
        width: 90%;
        margin: 10px auto;
    }
}

.green-box .box-list p {
    margin: 0;
    margin-top: 8px;
}


.green-box .box-list .title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Barlow','Font Awesome 5 Free', sans-serif;   
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.green-box .box-list .title img {
    margin-left: 8px;
}


.green-box .box-list .title p {
    font-size: 16px;    
}

.green-box .box-list img {
    width: 30px;
    object-fit: cover;
}

.list-two {
    display: flex;
    flex-flow: row;
    gap: 20px;
}

.list-two ul {
    width: 50%;
}

.list-two ul:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}

@media(max-width: 768px) {
    .list-two {
        flex-flow: column;
        gap: 0;
    }
    
    .list-two ul {
        width: 100%;
    }
    
    .list-two ul:first-child {
        border: none;
    }
}





















