html {
    font-family: 'Roboto Condensed', sans-serif;
}

input {
    font-family: 'Roboto Condensed', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

a:hover {
    text-decoration: none;
}

.uk-text-small {
    font-size: 85%;
}

.uk-button {
    border-radius: 5px;
}

.uk-button-primary {
    background: var(--color1);
}

    .uk-button-primary:hover,
    .uk-button-primary:focus {
        background-color: var(--color2);
    }

    .uk-button-primary:active,
    .uk-button-primary.uk-active {
        background-color: var(--color2);
        color: #FFF;
    }

.uk-panel-title {
    text-transform: uppercase;
    font-weight: bold;
}

.uk-tab > li > a {
    color: var(--color1);
}

    .uk-tab > li > a:hover,
    .uk-tab > li > a:focus,
    .uk-tab > li.uk-open > a {
        color: var(--color2);
    }

.uk-tab > li.uk-active > a {
    color: #444;
}

.uk-modal-caption {
    margin-bottom: -30px;
}

.uk-pagination {
    margin-top: 35px;
    margin-bottom: 0px;
}

    .uk-pagination > .uk-active > span {
        background: var(--color1);
        color: #fff;
    }

.uk-nav-side > li.uk-active > a {
    background: var(--color1);
    color: #fff;
}

.uk-progress-bar {
    background-image: linear-gradient(to right, var(--color1), var(--color3));
}

.uk-grid + .uk-grid, .uk-grid-margin, .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 25px;
}
/* HEADER ---------------------------------------------------- */
.header {
    /*background-color: var(--color1);*/
    background: #001f60;
    padding: 10px 0px;
}

    .header .uk-subnav {
        margin-bottom: 0px;
    }

        .header .uk-subnav > * {
            padding-left: 15px;
        }

    .header input {
        border: none;
        height: 20px;
        border-radius: 5px;
        padding: 2px 25px;
    }

        .header input:focus {
            border-color: #a1cbef;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgb(52 144 220 / 25%);
        }
/* NAVBAR ---------------------------------------------------- */
.uk-navbar-brand {
    padding: 0px;
    height: 80px;
}

.uk-navbar {
    background: #FFF;
    border-bottom: 1px solid #CCC;
}

.uk-navbar-nav > li > a {
    height: 80px;
    line-height: 80px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.uk-dropdown-navbar {
    box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
}

.uk-nav-navbar > li > a:hover,
.uk-nav-navbar > li > a:focus {
    background: var(--color1);
}

.uk-nav-offcanvas ul a {
    padding: 5px 0;
}

.uk-navbar-toggle {
    height: 80px;
    line-height: 80px;
}

.uk-navbar-center {
    max-width: 80%;
}
/* SLIDER ---------------------------------------------------- */
.home-slider .uk-panel-title {
    margin-top: 15px;
}

.home-slider .uk-dotnav {
    margin-right: 0px;
}
/* PANEL ---------------------------------------------------- */
.panel {
    padding: 15px 0px;
    /*padding: 15px;
    background: #F0F0F0;
    border-top: var(--color1) solid 5px;
    -webkit-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; 
    -o-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; 
    border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch;*/
}

    .panel .uk-float-right {
        margin-top: 3px;
    }
/* CALCULATOR ---------------------------------------------------- */
#water-calculator .uk-form-width-small {
    width: 110px;
}

#water-calculator .uk-form-width-small-2 {
    width: 75px;
}

#water-calculator .uk-form-width-mini {
    width: 60px;
}

#water-calculator .uk-form-width-very-mini {
    width: 30px;
}

#water-calculator input[type=text]:disabled {
    color: #000;
}

#water-calculator .result {
    font-weight: bold;
}
/* CALCULATOR NEW */
.calculator .uk-form-horizontal > .uk-form-row > .uk-form-label {
    max-width: 120px;
}

.calculator .uk-form-horizontal > .uk-form-row > .uk-form-controls {
    margin-left: 135px;
}
/* CALCULATOR NEW 2 */
.calculator table {
    border-spacing: 7px;
}

.calculator .uk-form-width-small {
    width: 90px;
}

.calculator .uk-form-width-mini {
    width: 45px;
}

.calculator input[type=text]:disabled {
    color: #000;
}

.call-service {
    margin-top: 35px;
}
/* PARALLAX ---------------------------------------------------- */
.parallax {
    background: no-repeat center fixed;
    padding: 50px 0px;
    margin: 25px 0px;
    text-align: center;
}

    .parallax .post-type-block {
        padding: 10px;
        border: 1px solid #001f60;
        border-radius: 5px;
        margin-bottom: 10px;
        margin-right: 10px;
        background: #fff;
    }

        .parallax .post-type-block:hover {
            border: 1px solid #2d4b91;
            cursor: url('../../images/control/hand.png'), auto;
        }

/* SIBLING FADE: fade out siblings around a hovered item */

.sibling-fade {
    visibility: hidden;
}
    /* Prevents :hover from triggering in the gaps between items */

    .sibling-fade > * {
        visibility: visible;
    }
    /* Brings the child items back in, even though the parent is `hidden` */

    .sibling-fade > * {
        transition: opacity 150ms linear 100ms, transform 150ms ease-in-out 100ms;
    }
    /* Makes the fades smooth with a slight delay to prevent jumps as the mouse moves between items */

    .sibling-fade:hover > * {
        opacity: 0.4;
        transform: scale(0.9);
    }
    /* Fade out all items when the parent is hovered */

    .sibling-fade > *:hover {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0ms, 0ms;
    }
/* Fade in the currently hovered item */


.sibling-fade {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

    .sibling-fade > * {
        background: rgba(245, 245, 245, 0.9);
        padding: 1em;
        flex: auto;
        margin: 0.3em;
        text-align: center;
        border: 1px solid #001f60;
        border-radius: 10px;
    }

.parallax a.link-2 {
    font-size: 12.5px;
    color: #1b593b;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor:pointer!important;
}

.parallax a.link {
    font-size: 20px;
    color: #3a3f63;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}


.parallax i {
    font-size: 60px;
    margin-bottom: 15px;
}
/* FAQ ---------------------------------------------------- */
.faq {
    margin-bottom: 15px;
}

    .faq i {
        font-size: 32px;
        color: var(--color1);
    }

.faq-a, .faq-q {
    margin-left: 40px;
}

.faq-q {
    padding-top: 5px;
}

.faq-a {
    display: none;
}
/* FILES ---------------------------------------------------- */
.files {
    background-image: url('../images/frontend/pdf.png');
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 40px;
    min-height: 32px;
    margin-bottom: 15px;
}
/* ADVICE ---------------------------------------------------- */
.advice {
    margin-bottom: 15px;
    min-height: 60px;
}

    .advice img {
        float: left;
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
/* LINKS ---------------------------------------------------- */
.links {
    background-color: #f7f7f7;
    padding: 20px 0px;
    margin: 25px 0px;
}

    .links img {
        border-bottom: 6px solid var(--color1);
        -webkit-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; /* Safari 3.1-5 */
        -o-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; /* Opera 11-12.1 */
        border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch;
    }

    .links .uk-slidenav-contrast {
        color: rgba(50,50,50,.8);
    }
/* MAIN ---------------------------------------------------- */
.main-layout {
    padding-top: 35px;
}

    .main-layout .uk-panel-title {
        border-left: solid 6px var(--color1);
        padding-left: 10px;
    }

    .main-layout h2 {
        text-transform: uppercase;
    }
/* NEWS ---------------------------------------------------- */
.sidebar-news {
    margin-bottom: 15px;
}

    .home-news .news-date, .sidebar-news .news-date {
        background: #1b593b;
        color: #FFF;
        padding: 2px 5px;
        border-radius: 2px;
    }

.news-highlight {
    background: #df7b00;
    color: #FFF;
    padding: 8px;
    border-radius: 2px;
    position: fixed;
    top: 10px;
    right: 10px;
}

.home-news img {
    width: 100%;
}

.home-news p, .sidebar-news p {
    margin-top: 5px;
}

.read-news > h2 {
    text-transform: uppercase;
    margin-top: 0px;
}
/* ARTICLE ---------------------------------------------------- */
.uk-article {
    margin-bottom: 35px;
}

    .uk-article * + p {
        margin-top: 0px;
    }

    .uk-article p, .uk-article li {
        text-align: justify;
    }

    .uk-article ol > li, .uk-article ul > li {
        margin-bottom: 6px;
    }

.twitter-share {
    margin-right: 10px;
}
/* POLL ---------------------------------------------------- */
.polls .uk-progress {
    margin-top: 0px;
}
/* LINK BLOCK ------------------------------------------------ */
.link-block-title {
    text-transform: uppercase;
    margin: 5px 0px;
}

.link-block {
    margin-top: 5px;
    padding: 15px 8px;
    background-image: linear-gradient(to right, var(--color1), var(--color3));
    font-size: 110%;
}

.link-block-first {
    margin-top: 0px;
}

.link-block .uk-icon-justify {
    width: 1.4em;
}

.link-block-1 {
    background-image: linear-gradient(to right, #078930, #44dd75);
}

.link-block-2 {
    background-image: linear-gradient(to right, #c08614, #efc70b);
}

.link-block-3 {
    background-image: linear-gradient(to right, #da121a, #ff47a6);
}

.link-block-4 {
    background-image: linear-gradient(to right, var(--color1), #6c97ef);
}

.mission {
    border: 3px solid var(--color1);
    -webkit-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; /* Safari 3.1-5 */
    -o-border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch; /* Opera 11-12.1 */
    border-image: linear-gradient(to right, var(--color1), var(--color3)) 30 stretch;
    padding: 10px 5px;
    margin-top: 20px;
}

    .mission div {
        font-weight: bold;
        margin-bottom: 5px;
        color: var(--color1);
    }

    .mission i {
        font-size: 90%;
    }

.mission-big i {
    font-size: 95%;
}

.mr-10 {
    margin-left: 10px !important;
}

hr-sepector {
    display: block;
    height: 0;
    border-bottom: 1px solid #eff2f5;
    margin-top: 5px;
    margin-bottom: 5px;
}

/************************************/

.btn-success, .btn-success:hover {
    color: #fff !important;
    background-color: #03bb00 !important;
}

.btn-success {
    border-color: #03bb00 !important;
}

.ant-btn, .ant-btn:active, .ant-btn:focus {
    outline: 0;
}

.ant-btn {
    line-height: 1.499;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    box-shadow: 0 2px 0 rgb(0 0 0 / 2%);
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    user-select: none;
    touch-action: manipulation;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    color: #002468;
    background-color: #fff;
    border: 1px solid #d1dde9;
}

.Service__pulse {
    animation: Service__pulse-white 1.5s infinite
}

@keyframes Service__pulse-white {
    0% {
        transform: scale(.95)
    }

    70% {
        transform: scale(1)
    }

    to {
        transform: scale(.95)
    }
}

.ant-btn-primary {
    color: #fff;
    background-color: #004dd9;
    border-color: #004dd9;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
}

.ant-btn-lg {
    height: 50px;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 4px;
}

.Service__pointer {
    position: absolute;
    top: 30%;
    right: 0;
    width: 70px;
    height: 70px;
}

.online-system-panel {
    position: relative;
    /* height: 100%; */
    width: auto;
    background: #001f60;
    padding: 50px 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    border-radius: 15px;
    box-shadow: -4px 3px 1px #ddd;
    text-align: center;
}

    .online-system-panel .title {
        color: #fff;
        text-align: center;
        font-size: 1.2em;
        padding: 25px 30px 25px 30px;
    }

    .online-system-panel .sub-text {
        color: #fff;
        text-align: justify;
        padding: 0px 30px;
        font-style: italic;
    }

    .online-system-panel hr {
        margin: 15px 50px;
        border: 1px solid;
        color: #fff;
    }

.img_bb {
    padding: 5px;
    margin-bottom: 10px;
}


/*********--------------------------------/************************************--------------------------------*/
.shadow-drop-center {
    padding: 40px 20px;
    cursor: pointer;
}

    .shadow-drop-center:hover {
        -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        border-radius: 15px;
    }

@-webkit-keyframes shadow-drop-2-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(50px);
        transform: translateZ(50px);
        -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}

@keyframes shadow-drop-2-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(50px);
        transform: translateZ(50px);
        -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}

.pulsate-bck {
    -webkit-animation: pulsate-bck 3s ease-in-out infinite both;
    animation: pulsate-bck 3s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.shadow-drop-center:hover .scale-in-center {
    -webkit-animation: bounce-in-fwd 1.1s both;
    animation: bounce-in-fwd 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-3-2 15:18:54
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: scale(0.84);
        transform: scale(0.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: scale(0.84);
        transform: scale(0.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

/*****************************************/
.footers {
    padding: 50px 0 20px;
    background: #f3f3f4;
}

    .footers .f_title {
        margin-bottom: 20px;
    }

    .footers h3 {
        position: relative;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 600;
        padding-bottom: 11px;
        border-bottom: 2px solid #b8bcc0;
    }

        .footers h3::before {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            background: #001f60;
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .footers h3::after {
            content: "";
            width: 200px;
            height: 2px;
            background: #001f60;
            position: absolute;
            bottom: -2px;
            left: 0px;
        }

textarea {
    overflow: auto;
    resize: vertical;
    F
}

.footers input, .footers textarea {
    margin-bottom: 5px;
    font-size: 14px;
    resize: none;
}

.footers textarea {
    height: 100px;
}

.copy {
    padding: 10px 0;
    background: #001f60;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1315px;
    }
}

.float-left {
    float: left !important;
}

.copy p {
    margin: 0;
    color: #fff;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.f_body {
    margin-bottom: 30px !important;
}

.f_link ul {
    list-style: none;
    padding-left: 10px !important;
}

    .f_link ul a {
        color: #444 !important;
        font-weight: 600;
        display: flex;
        align-items: center !important;
        margin-bottom: 10px;
        text-decoration: none;
    }

        .f_link ul a img {
            width: 18px;
            margin-right: 10px;
            display: inline-block;
            position: relative;
        }

        .f_link ul a span {
            display: flex;
        }

/* ----------------------------------------------
 * Generated by Animista on 2022-3-2 21:52:49
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-scale-up
 * ----------------------------------------
 */
@-webkit-keyframes rotate-scale-up {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0);
    }

    50% {
        -webkit-transform: scale(2) rotateZ(180deg);
        transform: scale(2) rotateZ(180deg);
    }

    100% {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg);
    }
}

@keyframes rotate-scale-up {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0);
    }

    50% {
        -webkit-transform: scale(2) rotateZ(180deg);
        transform: scale(2) rotateZ(180deg);
    }

    100% {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg);
    }
}


.f_site_counter table {
    width: 100%;
}

    .f_site_counter table th {
        padding-bottom: 3px;
    }

    .f_site_counter table td {
        padding: 3px 0px;
    }

    .f_site_counter table .number {
        font-weight: bold;
    }

.f_site_counter .Google_Analytics {
    text-align: center
}

.f_site_counter .number {
    text-align: center
}

.f_site_counter .Google_Analytics img {
    width: 180px;
}

.uk-slidenav-container {
    margin-top: 50px;
    margin-bottom: 80px;
}

.uk-slidenav-container-title {
    text-align: center;
    padding-bottom: 10px;
}

.read-news {
    position: relative;
}

    .read-news .print_btn {
        margin-top: 10px;
        padding: 3px 5px;
        border: 1px solid #2d7091;
        border-radius: 5px;
        color: #fff;
        background: #2d7091;
        right: 0;
        cursor: pointer;
        z-index: 1;
    }

        .read-news .print_btn:hover {
            background: #255c78;
        }

        .read-news .print_btn i {
            margin-right: 5px;
        }

.fixed_menu {
    position: fixed;
    z-index: 0;
    bottom: 10px;
    left: calc(50% - 98px);
    background: #0f102cf5;
    padding-top: 10px;
    border-radius: 15px;
}

    .fixed_menu ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        position: relative;
        margin-left: -20px;
        margin-bottom: 10px;
    }

        .fixed_menu ul li {
            margin-right: 7px
        }

        .fixed_menu ul .line {
            border-left: 1px solid #fff;
            height: 20px;
        }

        .fixed_menu ul li a {
            color: #fff;
            cursor: url('../../images/control/hand.png'), auto;
            padding: 2px;
        }

            .fixed_menu ul li a i {
                font-size: 15px;
            }

                .fixed_menu ul li a i.success {
                    color: #1BC5BD !important
                }

                .fixed_menu ul li a i.primary {
                    color: #3699FF !important
                }

                .fixed_menu ul li a i.danger {
                    color: #F64E60 !important
                }

                .fixed_menu ul li a i.info {
                    color: #8950FC !important
                }

                .fixed_menu ul li a i.warning {
                    color: #FFA800 !important
                }

                .fixed_menu ul li a i.facebook {
                    color: #0676e8 !important
                }

            .fixed_menu ul li a img {
                width: 14px;
                margin-top: -4px;
            }

        .fixed_menu ul li:hover {
            -webkit-animation: jello-horizontal 1s both;
            animation: jello-horizontal 1s both;
        }
/* ----------------------------------------------
 * Generated by Animista on 2022-3-11 23:8:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


#notfound {
    position: relative;
    height: 50vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 767px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding: 15px;
}

    .notfound .notfound-404 {
        position: relative;
        height: 220px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Kanit', sans-serif;
            position: relative;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            font-size: 186px;
            font-weight: 200;
            margin: 0px;
            background: linear-gradient(130deg, #014da9, #fe0001);
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            text-transform: uppercase;
            height: 186px;
            padding-top: 100px;
        }

    .notfound h2 {
        font-family: 'Kanit', sans-serif;
        font-size: 33px;
        font-weight: 200;
        text-transform: uppercase;
        margin-top: 0px;
        margin-bottom: 25px;
        letter-spacing: 3px;
    }


    .notfound p {
        font-family: 'Kanit', sans-serif;
        font-size: 16px;
        font-weight: 200;
        margin-top: 0px;
        margin-bottom: 25px;
    }


    .notfound a {
        font-family: 'Kanit', sans-serif;
        color: #ff6f68;
        font-weight: 200;
        text-decoration: none;
        border-bottom: 1px dashed #ff6f68;
        border-radius: 2px;
    }

.notfound-social > a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 14px;
    color: #ff6f68;
    border: 1px solid #efefef;
    border-radius: 50%;
    margin: 3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .notfound-social > a:hover {
        color: #fff;
        background-color: #ff6f68;
        border-color: #ff6f68;
    }

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        position: relative;
        height: 168px;
    }

        .notfound .notfound-404 h1 {
            font-size: 142px;
        }

    .notfound h2 {
        font-size: 22px;
    }
}

.lang a {
    background: #a3ce4c2e;
    padding: 2px 5px;
    border-radius: 3px;
}

    .lang a img {
        width: 14px;
        margin-top: -3px;
    }

.mobile_lang {
    float: left;
    background: #4a4a4aa8;
    border-radius: 3px;
    margin-right: 5px;
}

    .mobile_lang img {
        width: 15px;
    }

.img-w-100 {
    width: 100%;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.img-home-service:hover {
    -webkit-animation: text-focus-in 1s ease-out forwards;
    animation: text-focus-in 1s ease-out forwards;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-5-9 18:0:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.slide-high-light {
    position: relative;
}

    .slide-high-light .title {
        position: absolute;
        bottom: 0;
        padding: 5px 15px 5px 15px;
        background: #000000b8;
        color: #e5e5e5bd !important;
        text-align: justify;
        font-size: 15px;
        min-height: 80px !important;
    }

.uk-panel-intro {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 24px;
    text-transform: none;
    color: #444;
    display: table-cell;
    text-align: justify;
}

.heartbeat {
    -webkit-animation: heartbeat 2s ease-in-out infinite both;
    animation: heartbeat 2s ease-in-out infinite both;
}

.heartbeat_hover:hover {
    -webkit-animation: heartbeat 2s ease-in-out infinite both;
    animation: heartbeat 2s ease-in-out infinite both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-5-10 0:58:25
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.jello-horizontal:hover {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-5-10 1:1:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.scale-up-center:hover {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-10-4 0:7:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.form-group {
    margin-bottom: 1.75rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: url("../../*images/control/hand.png"), auto;
    }

    .swiper-slide a {
        cursor: url("../../images/control/hand.png"), auto;
    }

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

    .autoplay-progress svg {
        --progress: 0;
        position: absolute;
        left: 0;
        top: 0px;
        z-index: 10;
        width: 100%;
        height: 100%;
        stroke-width: 4px;
        stroke: var(--swiper-theme-color);
        fill: none;
        stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
        stroke-dasharray: 125.6;
        transform: rotate(-90deg);
    }

.line {
    display: flex;
    width: 100%;
}

.line-70 {
    width: 70%;
}

.line-30 {
    width: 30%;
}

.video-container {
    height: 100% !important;
    width: 100% !important;
    position: relative;
}

    .video-container video {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: fill;
        z-index: 0;
    }

video {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.video_overlay {
    background: #001f60e3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Service__actionButton {
    align-items: center;
    background: linear-gradient(180deg, #fefefe, #f5f5f5) padding-box, linear-gradient(90deg, #61e7a1 10%, #1f9bff 35%, #90ffff 53%, #9747ff) border-box;
    border: 2px solid #0000;
    border-radius: 32px;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-style: normal;
    font-weight: 600 !important;
    gap: 4px;
    height: 40px;
    justify-content: center;
    line-height: normal;
    padding-inline: 20px;
    transition: all .4s ease;
}

    .Service__actionButton:hover {
        background: linear-gradient(180deg, #f5f5f5, #fefefe) padding-box, linear-gradient(90deg, #9747ff 10%, #90ffff 35%, #1f9bff 53%, #61e7a1) border-box;
        border: 2px solid #0000;
        box-shadow: 0 0 5px #9747ffb3, 0 0 10px #1f9bffb3;
    }

.wave_dd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(/images/border-img/wave.png);
    background-size: 1000px 100px;
}

    .wave_dd.wave_dd1 {
        animation: animate 30s linear infinite;
        z-index: 10;
        opacity: 1;
        animation-delay: 0s;
        bottom: 0;
    }

    .wave_dd.wave_dd2 {
        animation: animate2 15s linear infinite;
        z-index: 9;
        opacity: 0.5;
        animation-delay: -5s;
        bottom: 10px;
    }

    .wave_dd.wave_dd3 {
        animation: animate 30s linear infinite;
        z-index: 8;
        opacity: 0.2;
        animation-delay: -2s;
        bottom: 15px;
    }

    .wave_dd.wave_dd4 {
        animation: animate2 15s linear infinite;
        z-index: 7;
        opacity: 0.2;
        animation-delay: -2s;
        bottom: 20px;
    }

@keyframes animate {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
}

.earth {
    position: absolute;
    top: 10px;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: transparent url(/images/earth.png);
    background-size: cover;
    box-shadow: inset 0px -20px 50px 10px rgba(36, 98, 199, 0.47), 0px 0px 30px 6px rgba(86, 113, 208, 0.36);
    transform-style: preserve-3d;
    transform: rotate(0deg);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1530px 0;
    }
}

.uk-position-cover {
    cursor: url('../../images/control/hand.png'), auto !important;
}

a {
    cursor: url('../../images/control/hand.png'), auto !important;
}

button {
    cursor: url('../../images/control/hand.png'), auto !important;
}

.uk-link-muted {
    cursor: url('../../images/control/hand.png'), auto !important;
}
