/* public */
/*#region*/
:root {
    --main-blue: #113d6c;
    --another-blue: #39b2d9;
    --the-other-blue: #d7f0f7;
    --main-yellow: #fbbe4a;
}

@font-face {
    font-family: AlibabaSans-Regular;
    src: url(../fonts/AlibabaSans-Regular.otf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Work Sans";
    src: url(../fonts/WorkSans-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Work Sans";
    src: url(../fonts/WorkSans-Bold.ttf);
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Bold.ttf);
    font-weight: 700;
    font-style: normal
}

.scroll::-webkit-scrollbar {
    height: 10px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #39b2d9;
    background-clip: padding-box;
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
}

.ovh {
    overflow: hidden;
}

.root {
    padding-top: 75px;
}

.pager {
    margin-top: 50px;
    text-align: center;
}

.pager span, .pager a {
    margin: 0 5px;
    padding: 4px 12px;
    display: inline-block;
    border: 1px solid #d9d9d9;
    background: rgba(0, 0, 0, .05);
    color: #1661ab;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.pager a:hover {
    border-color: #1661ab;
}

.pager .cur {
    background: #1661ab;
    border-color: #1661ab;
    color: #fff;
}

.slick-list {
    margin: 0 30px;
}

.slick-arrow {
    color: var(--main-blue);
    position: absolute;
    top: 50%;
    z-index: 10;
    margin-top: -6px;
    font-size: 24px;
    cursor: pointer;
}

.slick-new-prev {
    left: 5px;
}

.slick-new-next {
    right: 5px;
}

@media (min-width: 1440px) {
    .container {
        min-width: 1280px;
    }
}

@media (max-width: 767px) {

    .root {
        padding-top: 60px;
    }
}

/*#endregion*/

/* header */
/*#region*/

header {
    background: var(--main-blue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: none;
}

.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.head-inner .logo {
    min-width: 45%
}

.head-inner .logo a {
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.head-inner .logo img {
    max-height: 40px;
    max-width: 250px;
}

.head-inner .logo span {
    margin-left: 10px;
    font-size: 25px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: -2px;
    color: #fff;
}

.head-inner nav {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.head-inner .nav a {
    color: #fff;
    text-decoration: none;
}

.head-inner .nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.head-inner .nav li {
    cursor: pointer;
}

.head-inner .nav .li1 {
    margin-right: 20px;
    padding: 5px 10px;
    font-size: 17px;
    height: 34px;
    color: #fff;
}

.head-inner .nav .li1 .lk1 {
    position: relative;
}

.head-inner .nav .li1 .lk1:hover {
    text-decoration: underline #fff 1px;
    text-underline-offset: 5px;
}

.head-inner .nav .li1.current .lk1 {
    color: var(--another-blue)
}

.head-inner .nav .has-child.current .lk1:after {
    right: 20%;
}

.head-inner .nav li:last-child {
    margin-right: 0;
}

.head-inner .nav .nav-child {
    position: absolute;
    background: #fff;
    font-size: 16px;
    top: 32px;
    right: 0;
    flex-direction: column;
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
    display: none;
}

.head-inner .nav .nav-child ul {
    /*min-width: 310px;*/
}

.head-inner .nav .li2 {
    text-align: right;
    white-space: nowrap;
}

.head-inner .nav .nav-child a {
    padding: 8px 20px;
    color: var(--main-blue);
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
    display: block;
}

.head-inner .nav .nav-child a:hover {
    background: var(--the-other-blue);
}

.head-inner .nav .has-child {
    position: relative;
}

.head-inner .nav .has-child:hover .nav-child {
    display: block;
    transition: all .2s ease;
}

.head-inner .search {
    position: relative;
    flex: 0 0 6%;
    max-width: 6%
}

.head-inner .search form {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.head-inner .search button {
    display: inline-block;
    background: transparent;
    border: 0 none;
    padding: 10px;
    color: #fff;
}

@media (min-width: 1440px) {
    header .container {
        min-width: 1280px;
    }
}

@media (max-width: 1179px) {
    .head-inner {
        position: relative;
        padding-top: 25px;
    }

    .head-inner .logo a {
        display: block;
    }

    .head-inner .qrcode {
        position: absolute;
        right: 0;
        top: 0;
    }

    .head-inner .nav .li1 {
        margin-right: 10px;
    }

    .head-inner .qrcode span img {
        max-width: 35px;
    }
}


@media (max-width: 767px) {

    .head-inner {
        padding: 0;
        height: 60px;
    }

    .head-inner .logo img {
        max-height: 40px;
        max-width: 200px;
    }

    .head-inner .nav, .head-inner .logo span {
        display: none;
    }

    .ovh {
        position: relative;
        width: 100%;
    }

    .root {
        position: relative;
        z-index: 1;
    }

    .mo-toggle {
        position: absolute;
        top: 5px;
        right: 0;
        z-index: 10;
        font-size: 32px;
        color: #fff;
        cursor: pointer;
    }

    .mo-close {
        position: absolute;
        top: 5px;
        right: 20px;
        z-index: 9999;
        font-size: 32px;
        color: #fff;
        cursor: pointer;
    }

    .mo-nav {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        width: 100vw;
        height: 100vh;
        transform: translateY(-100%);
        transition: all .5s;
    }

    .mo-nav-box {
        width: 100%;
        height: 100%;
        background: var(--main-blue);
        position: relative;
    }

    .mo-logo {
        height: 60px;
        margin-left: 15px;
        display: flex;
        align-items: center;
    }

    .mo-logo img {
        max-height: 40px;
        max-width: 240px;
    }

    .mo-nav nav {
        padding: 0 20px;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .mo-nav nav ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .mo-nav nav .lk1 {
        position: relative;
        display: inline-block;
        margin-right: 10px;
        padding: 8px 0;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    .mo-nav nav .lk1 i {
        padding: 0 5px;
        font-size: 20px;
    }

    .mo-nav nav .lk2 {
        display: block;
        padding: 7px 0 7px 20px;
        font-size: 14px;
        color: #fff;
    }

    .mo-nav nav .nav-child {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all .2s;
    }

    .mo-nav nav .open .nav-child {
        overflow: auto;
        opacity: 1;
        height: auto;
    }

    .mo-nav nav i {
        color: #fff;
        transform: rotate(0);
        transition: all .2s;
    }

    .mo-nav nav .open i {
        transform: rotate(90deg);
    }

    .mo-nav .m-links:before {
        content: '';
        display: block;
        margin: 20px 0;
        width: 97px;
        height: 8px;
        background: var(--another-blue);
        border-radius: 10px;
    }

    .ovh .root {
        margin-bottom: 100vh;
    }

    .ovh .mo-nav {
        transform: translateY(0);
        transition: all .5s;
    }

    .head-inner .search {
        display: none;
    }
}


/*#endregion*/

/* footer */
/*#region*/
footer {
    padding: 30px 0;
    background: var(--main-blue);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #fff;
}

footer.fixed {
    transform: translateY(100%);
    transition: all .5s;
}

.foot-info .logo {
    margin-bottom: 20px;
}

.foot-info .logo img {
    max-width: 120px;
}

.foot-info .copy {
    color: #fff;
}

.foot-info .contact {
    margin-top: 20px;
}

.foot-info .contact a {
    color: #fff;
}

.foot-info .link a {
    color: #fff;
    margin: 0 2px;
    /*display: inline-block;*/
}

footer .social {
    margin-top: 10px;
}

footer .social a {
    color: #fff;
}

.foot-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.foot-nav li:not(:last-child) {
    margin-bottom: 15px;
}

.foot-nav a {
    color: #fff;
}

.foot-form input {
    padding: 6px;
}

.foot-form button {
    background: transparent;
    border: 0 none;
}

@media (max-width: 767px) {

    .foot-links {
        display: none;
    }

    .foot-copy {
        padding: 10px 0;
    }

    .foot-copy p {
        font-size: 14px;
    }

    .foot-copy p span {
        display: block;
    }
}

@media (max-width: 767px) {
    .foot-info .logo,
    .mo-contact {
        text-align: center;
    }

    .foot-info .copy {
        margin: 0 2%;
        text-align: center;
    }

    .foot-info .link {
        margin: 15px 10%;
        text-align: center;
    }

    .mo-contact {
        margin-top: 20px;
    }

    .mo-contact p {
        margin: 0;
    }

    .mo-contact a {
        color: #fff;
    }

    .foot-nav {
        margin-top: 20px;
        text-align: center;
    }

    .foot-nav li:not(:last-child) {
        margin-bottom: 10px;
    }
}


/*#endregion*/

/* index public */
/*#region*/
/**{border:1px solid #f30;}*/
.section-head {
    margin-bottom: 20px;
    text-align: center;
}

.section-head h2 {
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: -1px;
    color: var(--main-blue);
}

.section-head h2:after {
    content: '';
    display: block;
    margin: 20px auto 0;
    width: 100px;
    height: 8px;
    background: var(--another-blue);
    border-radius: 10px;
}

.section-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-body ul li:before {
    content: '';
    display: inline-block;
    margin-right: 12px;
    width: 12px;
    height: 12px;
    background: var(--another-blue);
    border-radius: 100%;
    vertical-align: middle;
}

.section-foot {
    padding-top: 30px;
    text-align: center;
}

.section-foot a {
    font-family: "work sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.section-foot span {
    display: inline-block;
    padding: 10px 30px;
    background: var(--another-blue);
    border-radius: 25px;
}

.widget-head {
    background: var(--main-blue);
    padding: 16px;
}

.widget-head h3 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.widget-body .item {
    padding: 5px 16px;
    border-top: 1px solid #fff;
    background: var(--the-other-blue);
}

.widget-body .item a {
    text-decoration: none;
}

.widget-body .item .icon {
    margin-right: 10px;
    display: inline-block;
    width: 26px;
    height: 40px;
    vertical-align: 1px;
    color: #325880;
}

.widget-body .item svg {
    width: 100%;
    fill: var(--main-blue);
}

.widget-body .item .text {
    color: #325880;
    font-weight: 700;
    font-size: 16px;
    font-family: "Work Sans", sans-serif;
}

@media (min-width: 768px) {

    .section-head p {
        width: 820px;
        margin: 0 auto 40px;
        font-family: "Work Sans", sans-serif;
    }

    .widget-body .item:hover {
        background: var(--another-blue);
    }

    .widget-body .item:hover .icon {
        color: #fff !important
    }

    .widget-body .item:hover .icon svg {
        fill: #fff !important;
    }

    .widget-body .item:hover .text {
        color: #fff;
    }
}


@media (max-width: 767px) {

    .section-head h2 {
        font-size: 20px;
    }

    .section-head p {
        font-size: 15px;
    }
}

/*#endregion*/

/* banner */
/*#region*/
.banner {
    background: no-repeat 50%/cover;
}

.banner .box {
}

.banner .text, .banner .form {
    display: flex;
    align-items: center;
    height: 100%;
}

.banner .text h2 {
    margin: 0;
    font-size: 52px;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

@media (min-width: 768px) {
    .banner {
        background-image: var(--banner-desktop);
    }

    .banner .text {
        min-height: 540px;
    }

    .banner .tabs-wrap {
        margin-left: 20%;
        background: #fff;
        width: 90%;
    }

    .banner .tabs-hand {
        background: var(--the-other-blue);
        font-size: 18px;
        font-weight: 700;
        line-height: 2.4;
        font-family: "Work Sans", sans-serif;
    }

    .banner .tabs-hand span {
        display: inline-block;
        padding: 0 25px;
        cursor: pointer;
    }

    .banner .tabs-hand .active {
        background: #fff;
        color: var(--main-blue);
    }

    .banner .tabs-items {
        padding: 25px;
    }

    .banner .item {
        padding: 10px;
        display: none;
    }

    .banner .item.active {
        display: block;
    }

    .banner .item label {
        margin: 0;
        font-weight: 700;
    }

    .banner .item .form-control {
        margin: 10px 0;
        font-family: verdana, sans-serif;
    }

    .banner .item .button {
        margin-top: 10px;
        padding: 10px 30px;
        background: var(--another-blue);
        font-family: "Work Sans", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        border-radius: 25px;
        border: 0 none;
    }
}

@media (max-width: 1499px) {
    .first-page .content h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .banner {
        background-image: var(--banner-mobile);
    }

    .banner .text {
        min-height: 230px;
        justify-content: center;
    }

    .banner .text h2 {
        font-size: 36px;
        text-align: center;
    }
}

/*#endregion*/

/* section one : about */
/*#region*/
.section-01 {
    padding: 60px 0;
}

.section-01 .section-head {
    text-align: left;
}

.section-01 .section-head h2:after {
    margin-left: 0;
}

.section-01 .section-foot {
    text-align: left;
}

@media (min-width: 768px) {

    .section-01 .help-us {
        padding: 20px 0 0 160px;
    }
}

@media (max-width: 767px) {
    .section-01 {
        padding: 40px 0;
    }

    .section-01 .text {
        padding: 0 15px;
    }
}

/*#endregion*/

/* section two : lines */
/*#region*/
.section-02 {
    padding: 60px 0;
}

.section-02 .section-head {
    text-align: left;
}

.section-02 .section-head h2:after {
    margin-left: 0;
    background: var(--main-yellow);
}

.section-02 .section-foot {
    text-align: left;
}

.section-02 .wrap {
    display: flex;
}

.section-02 .menu {
    flex: 0 0 305px;
    background: var(--the-other-blue);
    border-radius: 6px;
    border-top: 1px solid #a3dbeb;
}

.section-02 .menu .item {
    color: var(--main-blue);
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #a3dbeb;
    cursor: pointer;
}

.section-02 .menu .item:hover {
    background: #fff;
    border-left: 3px solid var(--main-blue)
}

.section-02 .menu .item.active {
    background: #fff;
    border-left: 3px solid var(--main-blue)
}

.section-02 .line a {
    padding: 10px 30px;
    background: var(--main-blue);
    color: #fff;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) {

    .section-02 .lines {
        margin-left: 10px;
    }

    .section-02 .line {
        display: none;
        position: relative;
        border: 1px solid #bde8f3;
        border-radius: 6px;
    }

    .section-02 .line.active {
        display: block;
        opacity: 1;
        transition: all ease-in-out .2s;
    }

    .section-02 .line h4 {
        display: none;
        opacity: 0
    }

    .section-02 .line a {
        position: absolute;
        right: 20px;
        bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-02 {
        padding: 20px 0 40px;
    }

    .section-02 .section-head h2:after {
        margin-top: 15px;
    }

    .section-02 .section-foot {
        text-align: center;
    }

    .section-02 .line:not(:last-child) {
        margin-bottom: 20px;
    }

    .section-02 .line h4 {
        margin: 0 -15px;
        padding: 14px 30px;
        color: #fff;
        background: var(--main-blue);
        font-size: 15px;
        font-weight: 700;
    }

    .section-02 .line .img {
        margin-left: -15px;
        margin-right: -15px;
    }

    .section-02 .txt {
        margin-top: 30px;
        padding: 0 15px;
    }

    .section-02 .txt h5 {
        font-size: 15px;
    }

    .section-02 .txt p {
        margin: 0;
    }

    .section-02 .line a {
        background: var(--another-blue);
        margin-top: 15px;
        display: inline-block;
    }
}

/*#endregion*/

/* section three : about */
/*#region*/
.section-03 {
    background: var(--the-other-blue);
    padding: 60px 0;
}

.section-03 .section-head h2:after {
    background: var(--main-yellow);
}

.section-03 .grid-1 .item {
    position: relative;
    background: no-repeat 50%/cover;
}

.section-03 .grid-1 .item .text {
    position: relative;
    z-index: 20;
    height: 460px;
    display: flex;
    align-items: flex-end;
}

.section-03 .grid-1 .item .text h5 {
    margin: 20px;
    font-size: 24px;
    color: #fff;
}

.section-03 .grid-1 .item .text h5 a {
    display: block;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

@media (min-width: 768px) {
    .section-03 .grid {
        display: flex;
        width: 100%;
    }

    .section-03 .grid-1 .item {
        flex: 1;
    }

    .section-03 .grid-1 .item:not(:last-child) {
        margin-right: 10px;
    }

    .section-03 .grid-1 .item:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        background: #000;
        opacity: 0;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    }

    .section-03 .grid-1 .item:hover:after {
        opacity: 0.2;
    }

    .section-03 .grid-1 .item .text h5 {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .section-03 {
        padding: 40px 0;
    }

    .section-03 .grid-1 .item {
        margin: 0 15px;
    }

    .section-03 .grid-1 .item:not(:last-child) {
        margin-bottom: 15px;
    }

    .section-03 .grid-1 .item .text {
        height: 260px;
    }

    .section-03 .grid-1 .item .text h5 {
        font-size: 20px;
    }
}

/*#endregion*/

/* section four : about */
/*#region*/
.section-04 {
    padding: 60px 0;
    background: url(../img/bg_wave.png) no-repeat 0 100%/100% auto;
}

.section-04 .item {
    text-align: center;
}

.section-04 .icon {
    display: inline-block;
    background: no-repeat 50%/cover;
    width: 128px;
    height: 128px;
}

.section-04 h5 {
    margin-top: 25px;
    color: var(--main-blue);
}

@media (min-width: 768px) {

    .section-04 .grid {
        display: flex;
        width: 100%;
    }

    .section-04 .item {
        flex: 1;
    }

    .section-04 .item:not(:last-child) {
        margin-right: 20px;
    }

    .section-04 h5 {
        display: inline-block;
        max-width: 68%;
    }
}

@media (max-width: 767px) {
    .section-04 {
        padding: 40px 0;
        background-position-x: 25%;
        background-size: 400%;
    }

    .section-04 .section-body {
        padding: 0 5%;
    }

    .section-04 h5 {
        margin-top: 15px;
        padding: 0;
    }
}

/*#endregion*/

/* section five : choose */
/*#region*/
.section-05 {
    background: var(--main-blue);
    padding: 60px 0;
}

.section-05 .section-head h2 {
    color: #fff;
}

.section-05 .section-head p {
    color: #fff;
}

.section-05 .item {
    text-align: center;
    /*padding: 0 35px;*/
}

.section-05 .item h5 {
    font-size: 62px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--another-blue);
    letter-spacing: 4px;
    text-shadow: 1px 1px 0 var(--main-blue), 3px 3px 0 var(--another-blue);
}

.section-05 .item p {
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 22px;
}

.section-05 .slick-arrow {
    color: #fff;
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {

    .section-05 .section-body {
        padding: 0 5%;
    }
}


/*#endregion*/

/* section six : news */
/*#region*/
.section-06 {
    padding: 60px 0;
    display: none;
}

.section-06 .item {
    position: relative;
    padding: 16px 52px 16px 22px;
    background: var(--the-other-blue);
}

.section-06 .item:not(:last-child) {
    border-bottom: 1px solid var(--main-blue);
}

.section-06 .item h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.section-06 .item h4 a {
    color: var(--main-blue);
}

.section-06 .item p {
    font-size: 15px;
    line-height: 1.25;
}

.section-06 .item span {
    color: #168db4;
    font-size: 14px;
}

.section-06 .item .more {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 30px;
    height: 30px;
}

@media (min-width: 768px) {

    .section-06 .wrap {
        display: flex;
    }

    .section-06 .image {
        flex: 0 0 55%;
        padding-left: 160px;
    }


    .section-06 .text {
        padding-bottom: 80px;
        transform: translate(-100px, 60px);
    }

    .section-06 .item:hover {
        background: #fff;
    }
}

@media (max-width: 767px) {

    .section-06 {
        padding-bottom: 0;
    }

    .section-06 .wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
}


/*#endregion*/

/* section seven : links */
/*#region*/
.section-07 {
    padding: 60px 0;
}

.section-07 .section-head h2:after {
    background: var(--main-yellow);
}

.section-07 .item {
    position: relative;
}

.section-07 .item .txt {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

.section-07 .item .txt h5 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.section-07 .item .txt h5 a {
    display: block;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

@media (min-width: 768px) {

    .section-07 .grid {
        display: flex;
        width: 100%;
    }

    .section-07 .item {
        flex: 1 1 auto;
    }

    .section-07 .item:not(:last-child) {
        margin-right: 10px;
    }

    .section-07 .item .img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    }

    .section-07 .item:hover .img:after {
        opacity: 0.2;
    }
}

@media (max-width: 767px) {

    .section-07 {
        padding-top: 40px;
    }

    .section-07 .item {
        margin: 0 15px;
    }

    .section-07 .item:not(:last-child) {
        margin-bottom: 15px;
    }

    .section-07 .item .txt h5 {
        font-size: 19px;
    }
}


/*#endregion*/

/* section eight : IMO */
/*#region*/

.section-08 .box {
    padding: 70px;
    background: var(--the-other-blue);
}

.section-08 .section-head {
    text-align: left;

}

.section-08 .section-head h2:after {
    margin-left: 0;
}

.section-08 .section-foot {
    text-align: left;
}

@media (min-width: 768px) {

    .section-08 {
        padding-bottom: 130px;
    }

    .section-08 .image {
        transform: translate(70px, 0);
    }

    .section-08 .text {
        transform: translate(-70px, 70px);
        padding-right: 30px;
    }
}

@media (max-width: 767px) {

    .section-08 .image, .section-08 .text {

        margin-left: -15px;
        margin-right: -15px;
    }

    .section-08 .text .box {
        padding: 40px 30px;
    }
}


/*#endregion*/

/* section nine : career */
/*#region*/

.section-09 .box {
    padding: 56px 64px 56px 64px;
    background: #fff;
}

.section-09 .section-head {
    text-align: left;

}

.section-09 .section-head h2:after {
    margin-left: 0;
}

.section-09 .section-foot {
    text-align: left;
}

.section-body p:last-child {
    margin: 0;
}

.section-body p a {
    color: var(--main-blue);
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

@media (min-width: 768px) {

    .section-09 {
        position: relative;
    }

    .section-09 .text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767px) {

    .section-09 .box {
        padding: 40px 20px
    }
}


/*#endregion*/

/* section ten : contact */
/*#region*/
.section-10 .text {
    padding: 120px 0;
    background: var(--the-other-blue);
}

.section-10 .section-head {
    margin: 0 auto;
    max-width: 570px;
}

.section-10 .section-head h2:after {
    background: var(--main-yellow);
}

.section-10 .section-head p {
    max-width: 570px;
}

.section-10 .section-head p a {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--another-blue);
}

.section-10 .section-body {
    margin: 0 auto;
    max-width: 490px;
}

.section-10 .section-body .col-12 {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px;
}

.section-10 .form-control {
    border: 1px solid #0f8db3;
    border-radius: 3px;
}

.section-10 i.flag {
    display: inline-block;
    width: 24px;
    height: 18px;
    background: #333;
    vertical-align: -3px;
}

.section-10 .form-check-label a {
    font-weight: 700;
    color: var(--another-blue);
}

.section-10 .op {
    text-align: center;
}

.section-10 .op button {
    background: var(--another-blue);
    padding: 10px 30px 10px 30px;
    font-family: "work sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    border: 0 none;
    border-radius: 25px 25px 25px 25px;
}

@media (min-width: 768px) {

    .section-10 .wrap {
        display: flex;
        flex-direction: row-reverse;
    }

    .section-10 .image {
        flex: 0 0 50%;
    }

    .section-10 .text {
        flex: 0 0 50%;
    }

}

@media (max-width: 767px) {

    .section-10 .image {
        overflow: hidden;
    }

    .section-10 .image img {
        margin-bottom: -60px;
    }

    .section-10 .text {
        padding: 40px 10px;
    }

    .section-10 .form-check-label {
        font-size: 14px;
    }
}


/*#endregion*/


/* page banner */
/*#region*/
.page-banner {
    background: var(--another-blue) no-repeat 100% 100%;
    background-image: var(--banner-desktop);
}

.page-banner .wrap {
    display: flex;
    align-items: center;
    min-height: 440px;
}

.page-banner .text h1 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

@media (min-width: 768px) {
    .page-banner {
        background-size: auto 450px
    }

    .page-banner .text {
        max-width: 58%;
    }
}

@media (max-width: 767px) {
    .page-banner {
        background-size: 160px auto;
    }

    .page-banner .wrap {
        min-height: 200px;
    }

    .page-banner .text {
        margin: 0 10% 0 5%;
    }

    .page-banner .text h1 {
        font-size: 26px;
    }
}

/*#endregion*/

@media (max-width: 767px) {
    .section-24 .section-body {
        padding: 0 5%;
    }
}

/* bread */
/*#region*/

.bread-wrap {
    padding: 10px 0;
}

.bread, .bread a {
    color: #919191;
    font-size: 14px;
}

@media (max-width: 767px) {
    .banner-inner {
        width: 100%;
        overflow: hidden;
    }

    .banner-inner img {
        width: 160% !important;
        margin-left: -30%;
        margin-right: -30%;
    }
}

/*#endregion*/

/* box public */
/*#region*/

.tabs-wp {
}

.tabs-handle {
    border-bottom: 1px solid #1661ab;
}

.tabs-handle span, .tabs-handle a {
    display: inline-block;
    padding: 10px 25px;
    color: #919191;
    cursor: pointer;
}

.tabs-handle .fa {
    margin-right: 5px;
}

.tabs-handle span.active, .tabs-handle a.active {
    background: #1661ab;
    color: #fff;
}

.tabs-content {
    margin-top: 40px;
}

.tabs-item {
    display: none;
}

.tabs-item.active {
    display: block;
}

/*#endregion*/
