html {line-height: 1.6;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;box-sizing: border-box;font-size: 16px;font-family: 'Open Sans',Arial,sans-serif;color: #000;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing: grayscale;font-weight: 600;-webkit-tap-highlight-color: transparent;scroll-behavior: smooth;}
body,input,p,dl,dd,h1,h2,h3,h4,h5,h6,form,figure,menu{margin: 0;}
textarea,input,button,ul,ol{margin: 0;padding: 0;}
body,ul,ol,li,p,dl,dt,dd,h1,h2,h3,h4,h5,h6,input,button,textarea,img,div,a,span,nav,header,main,footer,section,table,td,tr,th,:after,:before,aside,picture,article,summary,details,strong,select,label,form,abbr,address,figure,figcaption,menu{box-sizing: border-box;}
ul li,ol li{list-style: none;}
picture{font-size: 0;display: block;}
a {background-color: transparent;text-decoration:none;-webkit-text-decoration-skip: objects;transition: all linear 0.2s;color: #0b7384;text-underline-offset: 4px;}
a:hover{outline:none;color: #0b7384;text-decoration: none;}
button,input[type="button"],input[type="submit"],input[type="reset"],a,summary{cursor: pointer;}
audio, video {display: inline-block;}
img {border-style: none;max-width: 100%;}
textarea{resize: vertical;}
button, input, select, textarea {font-family: inherit;font-size: 100%;line-height: 1.2;}
button,button:focus, input,input:focus, optgroup,optgroup:focus, select,select:focus, textarea,textarea:focus,summary,summary:focus,a,a:focus{outline: none;}
/*placeholder text color*/
::-moz-placeholder { color: currentColor;opacity: 0.6;}
::-webkit-input-placeholder { color:currentColor;opacity: 0.6;}
:-ms-input-placeholder { color:currentColor;opacity: 0.6;}
/*focus:invalid*/
input:focus:invalid, textarea:focus:invalid,select:focus:invalid{ box-shadow: 0 0 0 1px rgba(236,112,1,0.86);}
::-ms-clear, ::-ms-reveal{display: none;}
.container{max-width: 1080px;margin: 0 auto;padding: 0 15px;position: relative;z-index: 0;}
.hidden{display: none;}

/*flex*/
.flexible{display: flex!important;}
.inline-flexible{display: inline-flex!important;}
.flex-direction-row{flex-direction: row!important;}
.flex-direction-column{flex-direction: column!important;}
.flex-wrap-nowrap{flex-wrap: nowrap!important;}
.flex-wrap-wrap{flex-wrap: wrap!important;}
.flex-wrap-reverse{flex-wrap: wrap-reverse!important;}
.flex-justify-start{justify-content: flex-start!important;}
.flex-justify-end{justify-content: flex-end!important;}
.flex-justify-center{justify-content: center!important;}
.flex-justify-between{justify-content: space-between!important;}
.flex-align-start{align-items:flex-start!important;}
.flex-align-end{align-items:flex-end!important;}
.flex-align-center{align-items:center!important;}

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0 0;
    position: relative;
    z-index: 999;
}
header .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
header .top-nav .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33%;
}
header nav.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
header nav.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav.main-nav ul li {
    position: relative;
    margin: 0 22px;
}
header nav.main-nav ul li a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}
header nav.main-nav ul li a:hover,
header nav.main-nav ul li.active > a {
    color: #0b7384;
    border-bottom: 2px solid #0b7384;
}
header nav.main-nav ul li.has-submenu:hover > .submenu,
header nav.main-nav ul li.has-submenu:focus-within > .submenu {
    display: block;
}
header nav.main-nav ul .submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    min-width: auto;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 10;
    white-space: nowrap;
}
header nav.main-nav ul .submenu li {
    margin: 0;
    text-align: left;
}
header nav.main-nav ul .submenu li a {
    display: block;
    padding: 8px 24px;
    font-size: 15px;
    border-bottom: none;
    transition: all ease .2s;
}
header nav.main-nav ul .submenu li a:hover {
    background: #f2f8ff;
    color: #0b7384;
}
header .logo {
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 769px) {
    header nav.main-nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 70%;
        height: 100%;
        transform: translateX(-100%);
        padding: 20px 20px 20px 50px;
        background: #fff;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        overflow-y: scroll;
        align-items: start;
        justify-content: start;
    }
    header nav.main-nav.active {
        transform: translateX(0);
    }
    header nav.main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    header nav.main-nav ul li {
        margin: 10px 0;
    }
    header nav.main-nav ul .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        display: none;
    }
    header nav.main-nav ul li.has-submenu:hover > .submenu,
    header nav.main-nav ul li.has-submenu:focus-within > .submenu {
        display: block;
    }
    header .hamburger {
        position: absolute;
        display: block;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    header .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #222;
        margin: 5px 0;
        transition: all 0.3s;
    }
    header .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    header .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    header .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}



footer {
    padding: 40px 0 0;
    background: #0b7384;
    color: #fff;
    font-size: 14px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
footer a{
    color: #e3f2fd;
}
footer a:hover{
    color: #fff;
    text-decoration: underline;
}
footer .footer-item {
    width: 33.3%;
    padding: 0 10px;
    margin: 0 0 24px;
}
footer .footer-item .footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}
footer .footer-item ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-item li{
    margin: 0 0 8px;
}
footer .footer-left .footer-logo{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 0 20px;
}
footer .footer-left .footer-logo img{
    width: 40px;
    margin: 0 5px 0 0;
}
footer .footer-left .footer-info {
    font-size: 14px;
    margin: 0 0 12px;
    color: #e3f2fd;
}
footer .footer-left .footer-info p{
    margin: 0 0 15px;
}
footer .footer-bottom {
    text-align: center;
    color: #bbdefb;
    padding: 18px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.18);
}
footer .footer-bottom .footer-policy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 0;
}
@media (max-width: 769px) {
    footer .footer-item {
        width: 100%;
    }
}


#page-banner {
    padding: 60px 0;
}
#page-banner h1 {
    font-size: 32px;
    margin: 0 0 30px;
    text-align: center;
    color: #0b7384;
}
#page-banner h2 {
    margin: 40px 0 15px;
}
#page-banner h3 {
    margin: 30px 0 12px;
}
#page-banner h4 {
    margin: 20px 0 10px;
}
#page-banner p {
    text-indent: 2em;
    margin: 0 0 15px;
}
#page-banner ul{
    padding-left: 25px;
    list-style-type: disc;
}
#page-banner ul li{
    list-style-type: disc;
}
#page-banner ol li{
    padding-left: 25px;
    list-style-type: decimal;
}
#page-banner ol li{
    list-style-type: decimal;
}



.image-text-section {
    padding: 60px 0;
}
.image-text-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}
.image-text-section.block-reverse .container {
    flex-direction: row-reverse;
}
.image-text-section .image-text-section-block {
    width: calc(50% - 20px);
}
.image-text-section .image-box{
    width: 100%;
    text-align: center;
}
.image-text-section .image-box img {
    width: 100%;
}
.image-text-section .text {
    max-width: 420px;
    margin: 0 auto;
}
.image-text-section .text h2 {
    font-size: 28px;
    color: #0b7384;
    margin: 0 0 15px;
}
.image-text-section .text p {
    font-size: 14px;
    text-indent: 2em;
    margin: 0 0 15px;
}
@media (max-width: 769px) {
    .image-text-section .image-text-section-block {
        width: 100%;
    }
    .image-text-section.block-reverse .container {
        flex-direction: column;
    }
}




#grid-section {
    padding: 60px 0;
}
#grid-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
}
#grid-section .grid-item {
    width: calc(33% - 26px);
    text-align: center;
}
#grid-section .grid-item-icon {
    width: 100%;
    text-align: center;
}
#grid-section .grid-item-title {
    font-size: 18px;
    color: #0b7384;
    margin: 10px 0 5px;
}
#grid-section .grid-item-content {
    text-indent: 2em;
    font-size: 14px;
}
@media (max-width: 769px) {
    #grid-section .grid-item {
        width: 100%;
    }
}




#contact-banner {
    background: #b9e0e7;
    padding: 80px 0;
    text-align: center;
}
#contact-banner .contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
#contact-banner .contact-desc {
    margin-bottom: 30px;
}
#contact-banner .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#contact-banner .contact-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#contact-banner .contact-form button {
    padding: 12px 32px;
    background: #0b7384;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all ease 0.2s;
}
#contact-banner .contact-form button:hover {
    background: #0b5e6c;
}
#contact-banner h3{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

#gdpr{
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
    transform: translateY(100%);
    animation: slide-in .5s 1;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}
#gdpr .cookie-notice{
    position: relative;
    padding: 16px;
    background: #f0f7ff;
    border-top: #00b4e2 4px solid;
    border-radius: 4px 4px 0 0;
}
#gdpr .cookie-notice .cn-title{
    font-size: 16px;
    margin: 0 0 4px;
}
#gdpr .cookie-notice .cn-desc{
    font-size: 14px;
}
#gdpr .cookie-notice .cn-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
#gdpr .cookie-notice .cn-close::before,
#gdpr .cookie-notice .cn-close::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 2px;
    background: #4d4d4d;
    transition: all ease .2s;
}
#gdpr .cookie-notice .cn-close::after{
    transform: translate(-50%, -50%) rotate(45deg);
}
#gdpr .cookie-notice .cn-close:hover::before,
#gdpr .cookie-notice .cn-close:hover::after{
    background: #000;
}
@keyframes slide-in {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}