:root {
    --blue: #0F6CBD;
    --blue-dark: #0B4F8A;
    --navy: #0f172a;
    --light: #f4f6f8;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --white: #fff;
    --shadow: 0 16px 40px rgba(15, 23, 42, .10);
    --radius: 22px;
    --container: min(1200px, calc(100% - 32px))
}
body {
    margin: 0;
    font-family: NunitoSans, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, .94);
    backdrop-filter: blur(8px);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}
.phone {
    font-weight: bold;
    display: flex;
    align-items: center;
}
.phone i.fa {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    width: 35px;
    height: 35px;
    margin-right: 5px;
    text-align: center;
    padding: 5px 6px;
    border-radius: 50%;
    color: #f90;
    border: 1px solid rgba(255, 255, 255, .3);
}
.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    line-height: 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: bold
}
.brand img {
    width: 65px;
    height: 65px;
    border-radius: 10px
}
.brand-sub {
    font-size: 12px;
    color: #93c5fd
}
.menu {
    display: flex;
    gap: 26px;
    color: #fff;
    font-weight: bold
}
/* .menu a {
    opacity: .9
} */
.menu a.active, .menu a:hover {
    opacity: 1;
    color: #93c5fd
}
.hotline {
    color: #fff;
    font-weight: bold
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 22px 7px;
    border-radius: 12px;
    font-weight: bold;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.25s ease-in-out;
}
.btn.primary {
    background: var(--blue);
    color: #fff
}
.btn.primary:hover {
    background: #498ad3;
}
.btn.secondary {
    background: #fff;
    color: var(--navy)
}
.btn.secondary:hover {
    background: var(--blue);
    color: #fff
}
.btn.outline {
    background: #fff;
    color: var(--navy);
    border-color: #cbd5e1
}
.btn-submit {
    font-size: 16px;
    padding: 12px 22px;
    width: 100%;
}
section {
    padding: 74px 0
}
.section-head {
    margin-bottom: 25px;
}
.section-head h1, .section-head h2 {
    font-weight: bold;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: normal;
}
.section-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
}
.hero {
    min-height: 78vh;
    color: #fff;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center
}
.hero-inner {
    padding-top: 30px;
    padding-bottom: 25px;
    max-width: 900px;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .14em
}
.hero h1 {
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.02
}
.hero p {
    margin-bottom: 40px;
    font-size: 19px;
    color: rgba(255, 255, 255, .88)
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px
}
.stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 18px
}
.stat b {
    display: block;
    font-size: 28px;
    margin-bottom: 4px
}
.grid-3, .product-grid, .app-grid, .related-grid, .about-grid, .quote-wrap, .banner-grid, .footer-grid {
    display: grid;
    gap: 22px
}
.grid-3, .product-grid, .app-grid {
    grid-template-columns: repeat(3, 1fr)
}
.card, .panel, .product-card, .related-card, .quote-box, .map-card, .detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}
.card .image, .product-card .image {
    line-height: 0;
}
.card img, .product-card img, .related-card img {
    width: 100%;
    object-fit: cover
}
.product-card img {
    height: 100%;
}
.card .body {
    padding: 20px;
}
.card-body, .product-body, .panel-body {
    padding: 20px;
}
.product-card {
    display: flex;
    flex-direction: column;
}
.product-body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.product-body .btn {
    margin-top: auto;
}
.card-body h3, .product-body h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
    text-transform: uppercase;
    line-height: normal;
    transition: 0.25s ease-in-out;
}
.card-body h3:hover, .product-body h3:hover {
    color: var(--blue);
}
.card-body p, .product-body p {
    margin-bottom: 20px;
    color: var(--muted)
}
.card h3 {
    font-weight: bold;
    margin: 0 0 8px;
    font-size: 25px;
}
.card p {
    margin-bottom: 0;
    color: #6b7280;
}
.about {
    background: linear-gradient(180deg, #f8fafc 0%, #edf4fb 100%)
}
.about-grid {
    grid-template-columns: 1fr 1fr
}
.about-grid .panel h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: normal;
}
.panel img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover
}
.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-top: 18px
}
.list div::before {
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--blue);
    margin-right: 7px;
    font-size: 14px;
    position: relative;
    top: -1px;
}
.dark {
    background: linear-gradient(180deg, #1c2437 0%, #111827 100%);
    color: #fff;
    padding-bottom: 44px;
}
.dark .head p, .dark .section-head p {
    color: rgba(255, 255, 255, .85)
}
.app-card {
    display: block;
    margin-bottom: 30px;
    position: relative;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    color: #fff;
}
.app-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75)
}
.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(2, 6, 23, .84) 100%);
}
.overlay h3 {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 28px;
    line-height: normal;
    transition: 0.25s ease-in-out;
}
.overlay p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.app-card:hover .overlay h3 {
    color: #93c5fd;
}
.banner {
    margin-bottom: 28px;
    border-radius: 26px;
    overflow: hidden;
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow)
}
.banner-grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch
}
.banner-copy {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.banner-copy h1, .banner-copy h2 {
    font-weight: bold;
    line-height: normal;
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 54px)
}
.banner-copy p {
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    margin: 0;
    color: rgba(255, 255, 255, .78)
}
.banner img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover
}
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px
}
.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}
.chip {
    padding: 11px 16px 9px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #c7d2fe;
    box-shadow: none!important;
}
.chip.active, .chip:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}
.no-product {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #044296;
    font-weight: bold;
}
.tag {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: bold;
    padding: 7px 12px;
    border-radius: 25px;
    margin-bottom: 5px;
    margin-right: 5px;
}
.page-title {
    padding: 42px 0 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%)
}
.page-title .s-breadcrumb-1 {
    margin-top: 0;
    margin-bottom: 25px;
}
.breadcrumb {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px
}
/* .detail-layout {
    grid-template-columns: 1.2fr .8fr;
    align-items: start
} */
.gallery-main {
    line-height: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line)
}
.gallery-main img {
    width: 100%;
    height: 460px;
    object-fit: cover
}
.thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px
}
.thumb {
    line-height: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow)
}
.thumb.active {
    border-color: var(--blue)
}
.thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover
}
.detail-card {
    padding: 24px
}
.detail-card h1 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.meta {
    color: var(--muted);
    margin-bottom: 15px;
}
.feature-list {
    margin: 15px 0;
    font-size: 18px;
}
.feature-list > * {
    margin-bottom: 2px;
}
.feature-list > *::before {
    content: "\f111";
    font-family: FontAwesome;
    color: var(--blue);
    font-weight: bold;
    font-size: 5px;
    position: relative;
    top: -3px;
    margin-right: 8px;
}
.related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.related-card .image {
    line-height: 0;
}
.related-card .body {
    padding: 14px;
    font-weight: bold
}
.quote-section {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: #fff
}
.quote-wrap {
    gap: 0 22px;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
}
.quote-box {
    padding: 24px;
    height: 100%;
}
.quote-box h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: initial;
}
.quote-box p {
    color: initial;
    margin-bottom: 20px;
}
.field {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font: inherit
}
.field::-webkit-input-placeholder {
    color: #757575;
}
.field::-moz-placeholder {
    color: #757575;
}
.field:-moz-placeholder {
    color: #757575;
}
.field:-ms-input-placeholder {
    color: #757575;
}
.map-card {
    height: 100%;
}
.map-card iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 320px
}
.footer {
    background: #0b1220;
    color: rgba(255, 255, 255, .88);
    padding: 28px 0 42px
}
.footer-grid {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.footer h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #fff;
    text-transform: uppercase;
}
.small {
    color: #94a3b8;
    font-size: 14px;
}
.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 12px;
    z-index: 40
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .22)
}
.float-call {
    background: #16a34a
}

.float-zalo {
    line-height: 0;
}
.float-zalo span {
    font-size: 37px;
    opacity: 1!important;
}
.float-zalo span::before, .float-zalo span::after {
    content: '';
    opacity: 0;
    width: calc(100% + 1.334em);
    height: calc(100% + 1.334em);
    margin: -0.666em;
    border-radius: 50%;
    background-color: #0f6cbd;
    z-index: -1;
    position: absolute;
    -webkit-animation: ripple 1.5s infinite;
    animation: ripple 1.5s infinite;
}
.float-zalo span::after {
    animation-delay: .3s !important;
    -webkit-animation-delay: .3s !important;
}
.float-zalo span img {
    position: absolute;
    border-radius: 50%;
}
@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .menu, .hotline {
        display: none
    }
    .stats, .grid-3, .product-grid, .app-grid, .related-grid, .about-grid, .quote-wrap, .banner-grid, .footer-grid, .detail-layout {
        grid-template-columns: 1fr
    }
    .gallery-main img {
        height: 300px
    }
    .thumb-row {
        grid-template-columns: repeat(2, 1fr)
    }
    .quote-box {
        height: auto;
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .list {
        grid-template-columns: auto;
        row-gap: 3px;
    }
}
.hd-menu {
    margin: 0 auto;
}
.hd-menu>ul>li {
    display: inline-block;
    position: relative;
    padding: 12px 15px 8px;
}
.hd-menu>ul>li>a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.hd-menu>ul>li>a i {
    font-size: 25px
}
.hd-menu>ul>li>a:nth-last-child(2) h2::after {
    content: '\f107';
    font-family: FontAwesome;
    margin-left: 10px;
    float: right;
}

.hd-menu>ul>li>.submenu .label {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}
.hd-menu>ul>li>.submenu a {
    transition: 0.25s color ease-in-out;
}
.hd-menu>ul>li>.submenu a:hover {
    color: #0f6cbd;
}
.sub-child {
    font-size: 15px;
}
.sub-child > li:not(:last-child) {
    margin-bottom: 10px;
}
.sub-child > li > a {
    font-weight: bold;
}
.sub-child > li > a::before {
    content: '\f111';
    font-family: FontAwesome;
    font-size: 6px;
    margin-right: 8px;
    position: relative;
    top: -3px;
    color: #0f6cbd;
}
.sub-child > li > ul {
    margin-left: 15px;
}
.sub-child .item {
    display: inline-block;
    position: relative;
    font-weight: 500;
}
.sub-child .item a::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 11px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    color: #999;
}
.sub-child .item ul {
    position: absolute;
    top: 55%;
    left: 100%;
    transform: translateY(-50%);
    width: max-content;
    min-width: 200px;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 5px 10px #ccc;
    padding: 10px 15px;
    border-radius: 22px;
    margin-left: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s opacity ease-in-out;
}
.sub-child .item ul::before {
    content: "";
    height: 0;
    width: 0;
    border-right: 8px solid #fff;
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -8px;
}
.sub-child .item:hover ul {
    visibility: visible;
    opacity: 1;
}
.sub-child .item ul::after {
    content: "";
    height: 0;
    width: 0;
    border-right: 9px solid rgb(238 238 238 / 42%);
    border-bottom: 9px solid transparent;
    border-top: 9px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -9px;
    z-index: -1;
}
.sub-child .item ul .title {
    font-weight: bold;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
    margin-bottom: 6px;
}
.sub-child .item ul li:not(.title)::before {
    content: '\f111';
    font-family: FontAwesome;
    font-size: 6px;
    margin-right: 8px;
    position: relative;
    top: -3px;
    color: #0f6cbd;
}
.sub-child > li > ul > li {
    margin-top: 5px;
    color: #444;
}
.sub-child > li > ul > li > ul {
    display: none;
}

/* Style chung s-pagination */
[class*="s-pagination-"] {
    margin-bottom: 30px;
    font-size: 12px;
}
[class*="s-pagination-"]::after {
    content: '';
    display: table;
    clear: both;
}
[class*="s-pagination-"]>li {
    display: inline-block;
    margin: 0 2px;
    border: 1px solid #ddd;
    line-height: 2.334em;
    width: 2.5em;
    height: 2.5em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
[class*="s-pagination-"]>li>a {
    display: block;
    color: #999;
    font-weight: bold;
    text-align: center;
}
[class*="s-pagination-"]>li:hover {
    background-color: #eee;
    color: #999;
}
[class*="s-pagination-"]>li.active {
    background-color: #0f6cbd;
    border: 1px solid #0f6cbd;
}
[class*="s-pagination-"]>li.active>a {
    color: #fff;
}
/* BEGIN s-pagination-1 */
.s-pagination-1>li {
    border-radius: 3px;
}
/* END s-pagination-1 */

/* BEGIN s-breadcrumb-1 */
.s-breadcrumb-1 {
    margin-top: 42px;
    margin-bottom: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #64748b;
}
.s-breadcrumb-1 li:not(:first-child)::before {
    content: "/";
    margin: 0 5px;
}
.s-breadcrumb-1 li:first-child a>i {
    font-size: 1.429em;
}
.s-breadcrumb-1 li a {
    font-weight: 500;
}
.s-breadcrumb-1 li a:hover, .s-breadcrumb-1 li:last-child a {
    color: #0f6cbd;
}
/* END s-breadcrumb-1 */

a[ht-trigger="hd-menu"] {
    display: none;
    font-size: 30px;
    color: #fff;
}
a[ht-trigger="hd-menu"] i:last-child {
    float: right;
}
.pdt-5 {
    padding-top: 0;
    padding-bottom: 50px;
}
@media (min-width: 992px) {
    .container {
        width: var(--container);
        margin: 0 auto;
    }
    .hd-menu ul>li>span {
        display: none;
    }
    .hd-menu>ul>li>a:nth-last-child(3)::after {
        content: '\f107';
        font-family: FontAwesome;
        margin-left: 6px;
        float: right;
    }
    .hd-menu>ul>li>.submenu {
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        box-shadow: 0 5px 10px #ccc;
        position: absolute;
        top: 100%;
        min-width: 800px;
        width: max-content;
        left: 50%;
        transform: translateX(-50%);
        color: initial;
        padding: 20px 25px;
        border-radius: 5px;
        transition: 0.25s ease-in-out;
        z-index: 111;
    }
    .hd-menu>ul>li:hover .submenu {
        opacity: 1;
        visibility: visible;
    }
    .hd-menu>ul>li>.submenu::before {
        content: "";
        height: 0;
        width: 0;
        border-bottom: 8px solid #fff;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .hd-menu>ul>li:hover>a, .hd-menu>ul>li.is-active>a {
        opacity: 1;
        color: #93c5fd;
    }
}
@media (max-width: 1200px) {
    .phone {
        display: none;
    }
    .sub-child .item ul {
        display: none;
    }
}
@media (max-width: 1040px) {
    .hd-menu>ul>li {
        padding: 8px;
    }
}
@media (max-width: 991px) {
    .nav {
        gap: 0;
    }
    .hd-menu {
        position: relative;
        margin-left: auto;
        margin-right: 0;
    }
    .hd-menu>a[ht-trigger="hd-menu"] {
        display: inline-block;
        border-radius: 2px;
    }
    .hd-menu>ul {
        visibility: hidden;
        opacity: 0;
        width: 250px;
        max-height: calc(100vh - 100px);
        overflow-x: auto;
        background-color: #fff;
        color: initial;
        box-shadow: 0 0px 10px 0px #ccc;
        z-index: 1;
        position: absolute;
        top: 35px;
        right: 0;
        border-radius: 5px;
        scrollbar-width: none;
    }
    .hd-menu>ul::-webkit-scrollbar {
        display: none;
    }
    .hd-menu>ul.is-active {
        visibility: visible;
        opacity: 1;
        -webkit-animation: slide-up 0.3s;
        -o-animation: slide-up 0.3s;
        animation: slide-up 0.3s;
    }
    @keyframes slide-up {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0%);
        }
    }
    .hd-menu>ul>li {
        position: relative;
        display: block;
        padding: 0;
    }
    .hd-menu>ul>li> a {
        text-transform: uppercase;
        padding: 8px 13px;
    }
    .hd-menu>ul>li + li {
        border-top: 1px solid #eee;
    }
    .hd-menu>ul>li>span {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 40px;
        font-size: 16px;
        transition: 0.25s ease-in-out;
        z-index: 100;
    }
    .hd-menu>ul>li.is-active>span {
        transform: rotate(-180deg);
    }
    .hd-menu>ul>li>.submenu {
        display: none;
        padding: 10px 0 5px;
        border-top: 1px solid #eee;
        overflow: hidden;
    }
    .hd-menu>ul>li>.submenu .col-6 {
        width: 100%;
    }
    .hd-menu>ul>li>.submenu .label {
        display: none;
    }
    .sub-child {
        margin-left: 15px;
    }
    .sub-child > li > ul {
        display: none;
    }
    .sub-child > li > a::before {
        content: '\f105';
        font-size: 12px;
        top: -1px;
        font-weight: normal;
    }
    .sub-child > li:last-child {
        margin-bottom: 5px;
    }
    .hd-menu>ul>li.is-active>a {
        color: #0f6cbd;
        background-color: #f7fbff;
    }
}

/* BEGIN c-form-border */
.c-form-border {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    margin-bottom: 12px;
    line-height: 0;
}
.c-form-border .c_input {
    padding: 25px 14px;
}
.c-form-border .c_input:focus {
    border-radius: 12px;
}
.c-form-border--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.c-form-border--icon .c_input {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    z-index: 2;
}
.c-form-border--icon .c_icon {
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-form-border--icon .c_icon:first-child {
    padding: 0.5em 0 0.5em 1.072em;
}
.c-form-border--icon .c_icon:nth-child(2) {
    padding: 0.5em 1.072em 0.5em 0;
}
.c-form-border--icon .c_icon:not(.c_icon--top) {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.c-form-border--icon .c_icon--top > i {
    position: relative;
    top: -0.142em;
}
.c-form-border--label .c_label {
    color: #999;
    background-color: #fff;
    pointer-events: none;
    padding: 0 0.358em 0 0.358em;
    z-index: 9;
    position: absolute;
    top: 0.572em;
    left: 0.715em;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.c-form-border--label:not(.is-empty) .c_label, .c-form-border--label.is-focused .c_label {
    font-size: 0.786em;
    color: #005abc;
    position: absolute;
    top: -0.727em;
}
.c-form-border.is-focused {
    border-color: #005abc;
}
.c-form-border.is-error {
    margin-bottom: 1.786em;
    border-color: #f55145;
}
.c-form-border.is-error .c_label {
    color: #f55145 !important;
}
.c-form-border.is-error .c_icon + .c_error {
    left: 0.143em;
    text-align: left;
}
.c-form-border.is-error .c_icon + .c_error > span {
    left: 0;
    margin: 0;
}
.c-form-border .c_error>span {
    top: 2.8em;
}
.c-form-border button {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 9;
    font-size: 15px;
    max-height: 36px;
    border-radius: 0px 3px 3px 0px;
}
.c-form-border button, .c-form-border button:active, .c-form-border button:focus, .c-form-border button:hover {
    box-shadow: none;
}
/* END c-form-border */
@media (max-width: 575px) {
    section {
        padding: 50px 0;
    }
    .toolbar {
        display: none;
    }
}
/* BEGIN c-animate-loopflicker */
.c-animate-loopflicker {
    -webkit-animation: loopflicker 1s infinite;
    -o-animation: loopflicker 1s infinite;
    animation: loopflicker 1s infinite;
}

@keyframes loopflicker {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    40% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/* END c-animate-loopflicker */