html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Roboto', Arial, sans-serif, Arial;
    font-size: 14px;
    line-height: 24px;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

* {
    outline: none !important;
    outline-offset: 0;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

a:hover {
    color: #ed3237;
    text-decoration: none;
}

a:focus {
    color: #ed3237;
}

a.link {
    color: #ed3237;
}

a.link:hover {
    color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-weight: 700;
}

h1 {
    font-size: 28px;
    line-height: 36px;
}

h2 {
    font-size: 22px;
    line-height: 28px;
}

h3 {
    font-size: 25px;
    line-height: 32px;
}

h4 {
    font-size: 22px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 19px;
}

h6 {
    font-size: 15px;
    line-height: 17px;
}

section {
    position: relative;
}

a.link:hover {
    color: #333333;
}

.btn {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    height: 48px;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #4a90e2;
    border-color: #4a90e2;
    border: 1px solid transparent;
    line-height: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    border-radius: 30px;
}

.btn.shadow {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn.medium {
    height: 42px;
}

.btn.outline {
    background-color: transparent;
    border-color: #00C853;
    color: #00C853;
}

.btn.outline:hover {
    background-color: #00C853;
    color: #ffffff;
}

.btn.outline.white {
    border-color: #ffffff;
    color: #ffffff;
}

.btn.outline.white:hover {
    border-color: #00C853;
    color: #00C853;
    background-color: transparent;
}

.btn:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
}

.btn-primary, .btn-primary:visited {
    background: #4a90e2;
    border-color: #4a90e2;
}

.btn-primary:hover {
    background: #609de6;
    border-color: #609de6;
}

.btn-primary-1, .btn-primary-1:visited {
    background: #31639c !important;
    border-color: #31639c;
}

.btn-primary-1:hover {
    background: #376faf;
    border-color: #376faf;
}

.btn:not([disabled]):not(.disabled) {
    cursor: pointer;
}

.scrolldown {
    width: 100px;
    height: 100px;
    background: url(../images/down-chevron.gif) no-repeat center;
    background-size: contain;
    cursor: pointer;
}

/*========================================*/
/* Btn App Responsive                     */
/*========================================*/


input::-webkit-input-placeholder {
    color: #333333 !important;
}

input:-moz-placeholder {
    color: #333333 !important;
}

input::-moz-placeholder {
    color: #333333 !important;
}

input:-ms-input-placeholder {
    color: #333333 !important;
}

textarea::-webkit-input-placeholder {
    color: #333333 !important;
}

textarea:-moz-placeholder {
    color: #333333 !important;
}

textarea::-moz-placeholder {
    color: #333333 !important;
}

textarea:-ms-input-placeholder {
    color: #333333 !important;
}

input,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
textarea.form-control {
    color: #333333;
    font-size: 13px;
    padding: 15px 18px;
    background-color: #eff2f7;
    border-radius: 4px;
    border: 1px solid transparent;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

input:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus,
textarea.form-control:focus {
    border-color: #dddddd;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

hr.short {
    width: 2.78571429em;
    border-color: #4a90e2;
}

/*====================================================*/
/* Layout                                             */
/*====================================================*/

.page-wrapper {
    position: relative;
    background-color: #fff;
    z-index: 10;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    overflow-x: hidden;
}

body.nav-opened .page-wrapper {
    -webkit-transform: translate3D(-240px, 0, 0);
    -moz-transform: translate3D(-240px, 0, 0);
    -ms-transform: translate3D(-240px, 0, 0);
    transform: translate3D(-240px, 0, 0);
}

body.nav-opened .page-cover {
    position: fixed;
    top: 0;
    left: 0;
    right: 240px;
    bottom: 0;
    z-index: 200;
    overflow-x: hidden;
}

.nav-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: 240px;
    opacity: 0;
    background: #101820;
    margin-bottom: 0;
    text-align: left;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.3s ease 0.7s;
    transition: transform 0.5s ease, opacity 0.3s ease 0.7s;
    -webkit-transform: translate3D(97px, 0, 0);
    -ms-transform: translate3D(97px, 0, 0);
    transform: translate3D(97px, 0, 0);
}

body.nav-opened .nav-mobile-menu {
    display: block;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0s ease 0s;
    transition: transform 0.3s ease, opacity 0s ease 0s;
    -webkit-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}

.nav-mobile-menu ul {
    position: relative;
    padding-left: 15%;
    margin: 0;
}

.nav-mobile-menu ul li {
    display: block;
    margin-top: 32px;
}

.nav-mobile-menu ul li a {
    color: #fff;
    font-size: 1em;
    webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-block {
    margin-bottom: 1.85714286em;
}

.text-block h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.85714286em;
}

.text-block h3 {
    font-size: 1.78571429em;
    line-height: 1.5em;
    font-size: 1.78571429em;
    line-height: 1.5em;
    color: #252525;
    font-weight: 300;
}

ul.bullets {
    list-style: inside;
}

.back-to-top {
    display: none;
    position: fixed;
    width: 3.71428571em;
    height: 3.71428571em;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    right: 1.85714286em;
    bottom: 3.71428571em;
    padding-top: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04);
    z-index: 99;
    border: 1px solid #ececec;
    transition: 0.2s ease-out;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
}

.back-to-top i {
    color: #252525;
}

table.custommize th, table.custommize  td{
    padding: 0.3rem 0.75rem;
    font-size: 1.2em;
}

/*====================================================*/
/* Header                                        */
/*====================================================*/

header .company-hotline {
    text-align: right;
}

.nav-mobile-menu {
    display: none;
}

.top-nav {
    display: block;
    background: #fafafa;
    padding: 0.8em 0;
    font-size: 0.85714286em;
}

.top-nav .bar-module .type-fade {
    font-size: 1.1em;
    color: #252525;
    font-weight: 600;
}

.top-nav .bar-module .type-fade strong.c-name {
    color: #ed3237;
}

.top-nav .bar-module .menu-horizontal {
    position: relative;
    width: 100%;
    text-align: right;
}

.top-nav .bar-module .menu-horizontal li {
    display: inline;
    margin-right: 0.6em;
}

.top-nav .bar-module .menu-horizontal li:last-child {
    margin-right: 0;
    float: right;
}

.top-nav .bar-module .menu-horizontal li {
    font-size: 1.1em;
    color: #a53692;
    font-weight: 600;
}


header nav {
    width: 100%;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background-color: #fff;
    z-index: 999;
    opacity: 0.98;
}

header .toggle-nav {
    display: none;
}

header nav .nav-inner {
    display: table;
    width: 100%;
    padding: 20px 0px;
}

header nav .nav-inner .brand {
    display: table-cell;
    width: 20%;
    vertical-align: middle;
    text-align: center;
}

header nav .nav-inner .brand .logo {
    width: 200px;
    max-width: 200px;
}

header nav .nav-inner .brand .logo img {
    max-width: 100%;
    width: 100%;
}

header nav .nav-inner .menu {
    display: table-cell;
    width: 80%;
    text-align: right;
    vertical-align: bottom;
}

header nav .nav-inner .menu ul {
    display: block;
    padding: 0;
    margin: 0;
}

header nav .nav-inner .menu ul>li {
    display: inline-block;
    margin-right: 20px;
}

header nav .nav-inner .menu ul>li:last-child {
    margin-right: 0;
}

header nav .nav-inner .menu ul>li>a {
    color: #0f2c66;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    padding: 0;
}

header nav .nav-inner .menu ul>li>a:hover, header nav .nav-inner .menu ul>li>a.active {
    color: #ed3237;
}

header nav .nav-inner .menu ul>li>a:focus {
    color: #333333;
}

/*====================================================*/
/* 19. Footer                                         */
/*====================================================*/

.page-footer {
    font-weight: 500;
    background-color: #858688;
    color: #fff;
}

.page-footer .footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-footer .footer-top .vertical-line {
    position: absolute;
    width: 8px;
    top: 0;
    bottom: 0;
    border-left: 4px solid #d2d3d5;
    border-right: 2px solid #fff;
}

.page-footer .footer-top .footer-content {
    padding: 0 30px;
}

.page-footer .footer-top .footer-content i {
    background-color: #363435;
    padding: 3px 4px;
}

.page-footer .footer-top .footer-content .fa-zalo img {
    max-width: 20px;
}
}
.page-footer .footer-top .footer-content i.fa-skype {
    background-color: #04aeec;
}

.page-footer .footer-top .footer-content .business-team i.fa-phone {
    background-color: #97989a;
}

.page-footer .footer-top .footer-content h2, .page-footer .footer-top .footer-content h5 {
    font-size: 22px;
    line-height: 28px;
}

.page-footer .footer-top .footer-content strong.company {
    font-size: 28px;
}

.page-footer .footer-list-title {
    font-size: 16px;
    color: #fff;
}

.page-footer .footer-list-menu li {
    padding-top: 4px;
}

.page-footer .footer-list-menu li:first-child {
    padding-top: 0;
}

.page-footer .footer-list-menu li .fa, .page-footer .footer-list-menu li a {
    margin-right: 5px;
}

.page-footer .footer-top .footer-item-logo {
    display: flex;
    align-items: center;
    justify-content: space-around !important;
}

.page-footer .footer-logo {
    display: block;
}

.page-footer .footer-logo img {
    max-width: 100%;
    width: 100%;
}

.page-footer .footer-bottom {
    width: 100%;
    height: 40px;
    margin: 0 auto;
    padding: 0;
    border-top: 5px solid #bebfc1;
    text-align: center;
}

.page-footer .copyright {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #363435;
    width: 100%;
    height: 100%;
    font-size: 13px;
}



/*====================================================*/
/* 404 page                                          */
/*====================================================*/

.section-404 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fourofour {
    height: 200px;
    background-repeat: no-repeat;
    background-size: 900px;
    width: 70%;
    position: relative;
    margin: 0 auto;
    background-position: center -148px;
    border-bottom: thin solid #2daebf;
    -webkit-background-image: url(../images/404.svg);
    -moz-background-image: url(../images/404.svg);
    background-image: url(../images/404.svg);
}

/*====================================================*/
/* Home page                                          */
/*====================================================*/

.section {
    padding-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.section hr {
    width: 4.78571429em;
    border-color: #4a90e2;
}

.section-bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.section-bg-secondary {
    background-color: #fafafa;
}

.section-bg-thirdary {
    background-color: #f8f9fa;
}

.section-bg-gray {
    background-color: #efefef;
}

.section-bg-img-first {
    background: url(../images/background_grey.jpg) #f9f9f9;
}

.section-bg-yellow {
    background-color: #ff9c00 !important;
    color: #fff;
}

.section-bg-yellow p, .section-bg-yellow i {
    color: #fff !important;
}

.section .section-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

#owl-slider .fa-angle-right, .fa-angle-left{
    cursor: pointer;
}

.timeline-page {
    padding: 10px 0;
    position: relative;
    margin-top: 35px;
}

.timeline-page::after {
    content: "";
    height: 95%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    background-color: #e8e8e8;
    z-index: 1;
}

.timeline-item {
    margin-bottom: 50px;
}

.timeline-page .timeline-item .date-label-left {
    text-align: center;
    margin-right: 20px;
    position: relative;
}

.timeline-page h4, .works-description-left h4 {
    margin-top: 0;
    text-transform: uppercase;
}

.timeline-page .timeline-item .works-description-left {
    text-align: right;
    margin-right: 15px;
    float: right;
    border-radius: 0;
    padding: 20px 0;
}

.timeline-page .timeline-item .works-description-right {
    text-align: left;
    margin-left: 15px;
    float: left;
    border-radius: 0;
    padding: 20px 0;
}

.timeline-page .timeline-item .duration-right {
    text-align: center;
    margin-left: 20px;
    position: relative;
}

.timeline-subtitle {
    line-height: 26px;
    color: #666;
}

.timeline-subtitle i {
    margin-right: 5px;
    color: #ff9c00;
}

.timeline-page .timeline-item .date-label-left::after, .timeline-page .timeline-item .duration-right::after {
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    content: "";
    height: 20px;
    position: absolute;
    top: 20px;
    width: 20px;
    z-index: 2;
}

.timeline-page .timeline-item .date-label-left::after, .timeline-page .timeline-item .duration-right::after {
    background-color: #f6576e;
}

.timeline-page .timeline-item .date-label-left::after {
    right: -44px;
}

.timeline-page .timeline-item .duration-right::after {
    left: -46px;
}

.accordion {
    width: 100%;
}

.accordion li {
    display: block;
    width: 100%;
}

.accordion li .accordion-title {
    cursor: pointer;
    padding: 0.46428571em 0.92857143em;
    border: 1px solid #ececec;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #ECECEC;
    padding-left: 0;
    margin-bottom: 0.928571em;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
}

.accordion .accordion-title:before {
    font-family: "stack-interface";
    content: '\e80d';
    margin-right: 6px;
    color: #252525;
}

.accordion li .accordion-content {
    display: none;
}

.accordion li .accordion-content h2, .accordion li .accordion-content h4, .accordion li .accordion-content h4, .accordion li .accordion-content h5, .accordion li .accordion-content h6 {
    color: #0f2c66;
}

.accordion li .accordion-content i {
    color: #ff9c00;
    margin-right: 5px;
}

.accordion .accordion-title span {
    display: inline;
}

.accordion li.active {
    margin-bottom: 0.92857143em;
}

.accordion li.active .accordion-content {
    display: block;
    max-height: 100%;
    animation: fadeUp .5s ease forwards;
    -webkit-animation: fadeUp .5s ease forwards;
    color: #dc3545;
}

.accordion li.active .accordion-title {
    background: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    opacity: 1;
}

.accordion li.active .accordion-title:before {
    content: '\e80a';
}

h2.h5 {
    display: inline;
    font-size: 18px;
    line-height: 1.85714286em;
}

.section .boxed, .news .boxed {
    position: relative;
    overflow: hidden;
    padding: 1.85714286em;
    margin-bottom: 30px;
}

.section .boxed.boxed-border, .news .boxed.boxed-border {
    border: 1px solid #ececec;
    
}

.section .boxed.boxed-lg {
    padding: 2.78571429em;
}

.section .border-round {
    border-radius: 6px;
}

.section .box-shadow-wide {
    box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2);
}

.section .box-shadow {
    box-shadow: 0 10px 50px rgba(20, 50, 47, 0.03), 0 10px 40px rgba(0, 0, 0, 0.03);
}

.section .box-video {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.section .box-video iframe {
    width: 100%;
    min-height: 350px;
}

.section .box-video .background-image-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    background: url(../images/bg-video.jpg);
    opacity: 1;
}

.video-play-icon {
    width: 7.42857143em;
    height: 7.42857143em;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    z-index: 4;
    display: inline-block;
    border: 0px solid #fafafa;
    cursor: pointer;
    background: #32bea6;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
}

.video-play-icon:before {
    border-color: transparent transparent transparent #252525;
    margin-top: -3px;
}

.video-play-icon:before {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 50%;
    margin-left: -4px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #ffffff;
}

.video-play-icon:hover {
    box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2);
    transform: translate3d(-50%, -52%, 0);
    -webkit-transform: translate3d(-50%, -52%, 0);
}

.pricing-row {
    margin-top: 30px; 
}

.pricing-section div[class*='col-'] {
    padding: 0;
}

.pricing-section-1  div[class*='col-'] {
    padding-right: 15px;
    padding-left: 15px;
}

.pricing-section div[class*='col-']:first-child .pricing {
    border-radius: 6px 0 0 6px;
}

.pricing-section div[class*='col-']:first-child .pricing .pricing-head {
    border-radius: 6px 0 0 0;
}

.pricing-section div[class*='col-']:last-child .pricing .pricing-head {
    border-radius: 0 6px 0 0;
}

.pricing-section div[class*='col-']:last-child .pricing {
    border-radius: 0 6px 6px 6px;
    border-right: 1px solid #ececec;
}

.pricing-section .pricing ul {
    margin: 0;
    list-style: none;
}

.pricing-section .pricing-row div[class*='col-']:first-child ul {
    border-radius: 6px 0 0 6px;
}

.pricing-section .pricing-row div[class*='col-']:last-child ul {
    border-radius: 0 6px 6px 0;
}

.pricing-section div[class*='col-']:first-child .pricing {
    border-radius: 6px 0 0 6px;
}

.pricing-section div[class*='col-']:last-child .pricing {
    border-radius: 0 6px 6px 0;
}

.pricing ul li {
    padding: 0.92857143em 0;
}

.pricing ul li:not(:last-child) {
    border-bottom: 1px solid #ececec;
    margin: 0;
}

.pricing .label {
    top: 2.78571429em;
    right: 2em;
}

.label {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
    height: 26px;
    min-width: 65px;
    padding: 0 10px;
    text-align: center;
    border-radius: 50px;
    position: absolute;
    z-index: 3;
    top: 1.23809524em;
    right: 1.23809524em;
}

.label:not([class*='bg-']) {
    background: #31639c;
}

.section .pricing {
    position: relative;
    margin-top: 30px;
    border: 1px solid #ececec;
    border-right: none;
}

.section a {
    color: #4a90e2;
}

.pricing .pricing-head {
    margin: 0;
    border-bottom: 1px solid #ececec;
}

.pricing .pricing-head h5, .pricing-1 h5 {
    margin-bottom: 1.85714286em;
    font-weight: 600;
    font-size: 1em;
}

.pricing .pricing-head h3, .pricing-1 h3 {
    font-weight: 100;
    font-size: 1.5em;
}

.pricing .h1 {
    font-size: 2.5em;
    line-height: 1em;
    margin-bottom: 0.22033898305085em;
}

.pricing .h1 .pricing-dollar {
    font-size: 0.51020408163265em;
    position: relative;
    bottom: 20px;
}

.pricing .h2 {
    font-size: 2.35714286em;
    line-height: 1.36363636em;
}

.pricing .h2 strong {
    font-weight: bold !important;
}

.pricing .type-fine-print {
    font-size: 0.85714286em;
}

.pricing-1 .btn:last-child {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0 0 6px 6px;
    padding: 0.92857143em 0;
    margin: 0;
}

.pricing-1 .btn:last-child:hover {
    transform: none !important;
}

.boxed-emphasis {
    transform: scale(1.075);
    -webkit-transform: scale(1.075);
}

.pricing-1 a {
    color: #fff;
    text-align: center;
    background-color: #4a90e2;
}

.pricing-1 .btn .btn-text, .btn i {
    border-color: #252525;
    font-weight: 400;
    font-size: 1em;
    margin: 0 auto;
}

.pricing-section-1 .boxed {
    border-radius: 6px;
}

.pricing-1 p {
    min-height: 5.57142857em;
}

.pricing-1 p:last-of-type {
    margin-bottom: 5.57142857em;
}
.pricing-1 p:first-of-type {
    margin-top: 1.85714286em;
}

.pricing-1 p span {
    display: block;
    width: 100%;
    margin-top: 1em;
}

.pricing-1 i.fa {
    color: #31639c;
    margin-right: 13px;
}

.process-line {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.process-line:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: 1.85714286em;
    top: 0;
    border-left: 1px dashed #ddd;
}

.process-line li {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-line li:not(:last-child) {
    margin-bottom: 1.5em;
}

.process-line li .process-number {
    float: left;
    width: 3.71428571em;
    height: 3.71428571em;
    border-radius: 50%;
    border: 2px solid #4a90e2;
    background: #fff;
    text-align: center;
}

.process-line li .process-number span {
    font-size: 1.35714286em;
    font-weight: bold;
    color: #4a90e2;
    position: relative;
    top: 12px;
}

.process-line li .process-body {
    width: 80%;
    float: right;
}

.process-line li .process-body h4 {
    margin-bottom: 0.342105263157895em;
    font-size: 16px;
    font-weight: 400;
}

.register-invoice {
    display: flex;
    align-items: center;
    justify-content: space-around !important;
    margin-top: 30px;
}

.process-img, .process-text {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.process-img img {
    max-width: 100%;
}

.section-counter .counter-title {
    margin-bottom: 80px;
}

.section-counter .counter-title h2 {
    color: #6c757d;
}

.section-counter .counter-title h2:after {
    display: block;
    content: '';
    width: 200px;
    height: 1px;
    background: #eaeaea;
    margin: 30px auto 0 auto;
}

.section-counter .countdown {
    text-align: center;
}

.section-counter .countdown i.fa {
    color: #6c757d;
    font-size: 48px;
    margin-bottom: 30px;
}

.section-counter .countdown h2 {
    color: #6c757d;
    font-size: 28px;
}

.section-counter .count-text {
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.section-feature .boxed, .section-support-team .boxed {
    border-radius: 6px;
}

.section-support-team .boxed {
    margin-bottom: 0;
}

.section-support-team .boxed {
    overflow: inherit;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .08) !important;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, .08) !important;
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, .08) !important;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -kthtml-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.section-support-team .boxed:hover {
    -webkit-box-shadow: 5px 15px 15px rgba(0, 0, 0, .2) !important;
    -moz-box-shadow: 5px 15px 15px rgba(0, 0, 0, .2) !important;
    box-shadow: 5px 15px 15px rgba(0, 0, 0, .2) !important;
}

.section-feature .feature-row {
    margin-top: 60px;
}

.section-support-team .teams div[class*='col-'] {
    margin-top: 90px;
}

.section-feature .feature, .section-support-team .teams .team-member {
    position: relative;
    background-color: #fff;
    text-align: center;
}

.section-support-team .teams .team-member {
    margin-top: 0px;
    height: 100%;
}

.list-support-tools {
    list-style: none;
}

.list-support-tools li {
    display: block;
    padding: 5px 0;
}

.list-support-tools li a, .list-support-tools li a:not([href]):not([tabindex]) {
    color: #0588CC;
    font-size: 1.1em;
}
.list-support-tools li a i {
    margin-right: 5px;
}

.section-feature .feature i, .section-support-team .teams .team-member i {
    display: inline-block;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 0.16666666666667em;
}

.section-feature .feature .feature-body, .section-support-team .teams .team-member .info {
    display: block;
    margin-top: 1.36842105263158em;
    min-height: 90px;
}

.section-feature .feature .feature-body p {
    font-size: 16px;
    text-transform: none;
    font-weight: normal;
}

.section-support-team .teams .team-member .info {
    margin-top: 50px;
    text-align: left;
}

.section-support-team .teams .team-member .info i.fa {
    margin-right: 15px;
}

.section-support-team .teams .team-member .info i.support-zalo {
    width: 18px;
}

.section-support-team .teams .team-member .avatar {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    text-align: center;
}

.section-support-team .teams .team-member .icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 80px;
    height: 80px;
    z-index: 9999;
}

.section-support-team .teams .team-member .icon.icon-support-teach {
    background-image: url(../images/support/supporter.png);
}

/*====================================================*/
/* About                                              */
/*====================================================*/

section {
    -webkit-background-size: auto 100% !important;
    -moz-background-size: auto 100% !important;
    -o-background-size: auto 100% !important;
    background-size: auto 100% !important;
    background-attachment: scroll !important;
    background-position: top !important;
}

.section-page-header {
    position: relative;
    display: flex;
    min-height: 80vh;
    align-items: center;
    background-size: 100% !important;
    background-color: rgb(39, 55, 76);
    overflow: hidden;
}

.section-page-header.recruitment-header {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    background: #fafafa;
    min-height: 98vh;
}

.section-page-header .image-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    padding: 0;
    background-size: cover !important;
}

.section-page-header .background-image {
    background-position: 50% 50% !important;
    background-size: cover !important;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    z-index: 0;
}

.section-page-header .about-bg {
    background: url(../images/about/bg-side.jpg);
}

.section-page-header .recruitment-bg {
    background: url(../images/contact/recruitment.jpg);
}

.section-page-header h2, .section-page-header p {
    color: #fff;
}

.recruitment-header h2 {
    color: #252525;
    margin-bottom: 0.78787878787879em;
}

.recruitment-header p {
    color: #0f2c66;
}

.recruitment-header i {
    margin-right: 5px;
}

.section-page-header .inner-padding {
    padding: 90px 0 90px 0;
}

.section-page-header .btn-line {
    border: solid 1px rgba(255,255,255,.2);
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 3px;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    letter-spacing: 2px;
    text-decoration: none;
}

.recruitment-header .btn-line {
    background-color: #FAB702;
}

.section-page-header .btn-line:hover {
    background-color: #FAB702;
}

.section-page-header .btn-line:after {
    font-family: FontAwesome;
    content: "\f054";
    color: #FAB702;
    margin-left: 10px;
    transition: .5s;
    outline: none;
}

.recruitment-header .btn-line:after {
    color: #111 !important;
}

.section-page-header .btn-line:hover:after {
    color: #111 !important;
}

.recruitment-header .btn-line:hover:after {
    color: #111 !important;
}

.section-page-header .head-title {
    margin-top: 60px;
}

.header-descriton {
    width: 75%;
    margin: 10px auto;
}

.section-invoice-info h2.title {
    color: #ff0000;
}

.section-invoice-info .invoice-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.section-invoice-info .invoice-row .detail i {
    color: #ff9c00;
    margin-right: 5px;
}

.section-page-header .process-line li .process-body h4 {
    color: #ffff00;
}

.section-page-header .register-invoice {
    margin-top: 0;
    padding: 60px 0;
}

.section-notice {
    padding-top: 1.85714286em;
    padding-bottom: 1.85714286em;
}

.section-notice.border-bottom {
    border-bottom: 1px solid #ececec;
}

.section-notice.border-bottom .label {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    font-weight: 400;
}

.section-notice.border-bottom .label.label-inline:not(:last-child) {
    margin-right: 0.92857143em;
}

.section-notice a {
    color: #4a90e2;
    text-decoration: underline;
}

.row-eq-height .boxed {
    height: 100%;
}

.steps {
    margin-top: 60px;
}

.steps .step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.steps .step .rounded-bx {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.overlay-bx, .icon-bx-lg, .icon-bx-md, .icon-bx-sm, .icon-bx-xs, .steps .step .shadow-bx img, .steps .step .step-no-bx {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.steps .step .icon-bx-lg {
    width: 130px;
    height: 130px;
    line-height: 130px;
    background-color: #f2f2f2;
    color: #fff;
    display: inline-block;
    margin: auto;
    text-align: center;
    vertical-align: middle;
}

.steps .step .icon-bx-lg.blue {
    background-color: #67D7EF;
}

.steps .step .icon-bx-lg.gold {
    background-color: #FFD700;
}

.steps .step .icon-bx-lg.red {
    background-color: #F78774;
}

.steps .step:hover .icon-bx-lg {
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.steps .step .icon-bx-lg img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 60px;
}

.steps .step .icon-bx-lg i {
    font-size: 45px;
    font-weight: 400;
    margin-top: 40px;
}

.steps .step  h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #333;
    margin-bottom: 15px;
}

.steps .step .shadow-bx {
    width: 100px;
    margin: auto;
}

.steps .step:hover .shadow-bx {
    width: 50px;
}

.steps .step .shadow-bx img {
    width: 100%;
}

.steps .step .step-no-bx {
    font-size: 72px;
    color: #999999;
    font-weight: 700;
    line-height: 1;
}

.steps .step:hover .step-no-bx {
    color: #F78774;
}

.line-bx {
    bottom: 45px;
    left: 0;
    width: 100%;
    position: absolute;
}

.line-bx .pull-left, .line-bx .pull-right {
    width: 60%;
}

.line-bx .padding-r-30 {
    padding-right: 30px;
}

.line-bx .padding-l-30 {
    padding-left: 30px;
}

section.space-sm {
    padding-top: 4.95238095em;
    padding-bottom: 4.95238095em;
}



section.space-sm.half-pd {
    padding-bottom: 2.5em;
}

.h1-text {
    margin-bottom: 0.59090909090909em;
    color: #252525;
    font-size: 3.14285714em;
    line-height: 1.31818182em;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.breadcrumbs {
    list-style: none;
    margin: 0 0 1.85714286em 0;
    padding: 0;
}

.breadcrumbs li {
    font-size: 0.85714285714286em;
    display: inline-block;
    
}

.breadcrumbs li:not(:last-child):after {
    content: '\00bb';
    margin-left: 1.08333333333334em;
}

.breadcrumbs li:not(:last-child) {
    margin-right: 1.08333333333334em;
}

ol li:not(:last-child) {
    margin-bottom: 1.85714286em;
}

.breadcrumbs li a {
    font-weight: normal;
    color: #4a90e2;
}

.support-header-bg {
    background-image: url(../images/header-1.jpg);
    min-height: 80vh;
}

.support-item {
    text-align: center;
}

.support-item .support-icon {
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

.support-item .support-icon.supporter {
    background-image: url(../images/support/supporter.png);
}

.support-item .support-icon.savetime {
    background-image: url(../images/support/save-time.png);
}

.support-item .support-icon.safe {
    background-image: url(../images/support/protected.png);
}

.support-item .support-icon.update {
    background-image: url(../images/support/server.png);
}

.support-item h5 {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 10px;
    color: #0588CC;
}

.news {
    min-height: 11.14285714em;
}

.news a.block {
    font-weight: normal;
    text-decoration: none;
    color: #666666;
}

.news > a.block img {
    border-radius: 6px 6px 0 0;
}

article.news a img {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
}

.news > a.block + .news-body {
    border-radius: 0 0 6px 6px;
}

article.news h3 {
    margin: 0;
    min-height: 3.71428571em;
}

article.news .news-body {
    font-size: 1em;
    line-height: 1.85714286em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #666666;
    font-weight: 400;
}

article.news .news-body h3 {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.85714286em;
    color: #252525;
}

article.news .news-body a {
    color: #4a90e2;
    font-weight: 700;
}

article.news-detail img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.pagination {
    text-align: center;
    margin-top: 1.85714286em;
}

.pagination ol {
    margin: 0 auto;
    display: inline-block;
    padding: 0;
}

.pagination ol li:not(:last-child) {
    margin-right: 0.46428571em;
}

.pagination ol li {
    display: inline-block;
    margin: 0;
    font-weight: 700;
    line-height: 23px;
    width: 1.85714286em;
    height: 1.85714286em;
    border-radius: 50%;
    border: 1px solid #ececec;
}

.pagination ol li.current {
    cursor: default;
    background: #ececec;
    color: #aaa;
}

.pagination ol li > a {
    font-weight: 700;
}

.pagination ol li.current >a {
    color: #aaa;
}

.pagination li {
  padding: 8px 16px;
  text-decoration: none;
}

.pagination li.active {
    background-color: #f44336;
}

.pagination li.active a {
    color: #fff;
}

.pagination li a {
    color: #000;
    font-size: 14px;    
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
        line-height: 33px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 30px;
    }

    header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        opacity: 0.94;
    }

    header .menu-icon {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
    }

    header .toggle-nav {
        float: right;
        display: block;
        position: relative;
        width: 20px;
        height: 20px;
        background: url(../images/nav-icon-gray.svg);
        background-repeat: no-repeat;
    }

    header nav .nav-inner {
        padding: 13px 0;
    }

    header nav .nav-inner .menu {
        display: none;
    }
    
    header nav .nav-inner .brand {
        width: 40%;
    }

    header .company-title {
        display: none;
    }

    header .company-hotline {
        text-align: center;
    }

    header .top-nav .bar-module .menu-horizontal {
        text-align: left;
    }

    header .top-nav .bar-module .menu-horizontal li {
        margin-right: 0;
        font-size: 1em;
    }

    header .top-nav .bar-module .menu-horizontal li:last-child {
        text-align: right;
        float: right;
    }

    .page-content {
        margin-top: 0;
    }

    .page-footer .footer-logo {
        margin: 0 auto 20px;
    }

    .page-footer .col-logo {
        text-align: center;
    }

    footer .vertical-line {
        display: none;
    }

    .page-footer .footer-top .footer-content {
        padding: 0;
    }

    footer .footer-item {
        margin-top: 30px;
    }

    .timeline-item .row {
        flex-flow: column;
    }

    .timeline-page .timeline-item:nth-child(odd) .row div[class*='col-']:first-child {
        order: 2;
    }

    .timeline-page .timeline-item:nth-child(odd) .row div[class*='col-']:last-child {
        order: 1;
    }

    .timeline-page::after {
        margin: 0;
    }

    .timeline-item .duration {
        float: left !important;
        margin: 0 0 30px 15px !important;
        text-align: left !important;
        position: relative;
    }

    .timeline-item .duration::after {
        left: -24px !important;
    }

    .timeline-page .timeline-item .works-description-left {
        text-align: left;
        margin-left: 15px;
    }
    
    .pricing-section div[class*='col-'] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pricing-section div[class*='col-'] .pricing {
        border-radius: 6px !important;
    }

    .pricing-section div[class*='col-'] .pricing .pricing-head {
        border-radius: 6px 6px 0 0 !important;
        border-right: 1px solid #ececec;
    }

    .pricing-section .pricing-row div[class*='col-'] ul {
        border-radius: 0 0 6px 6px !important;
        border-right: 1px solid #ececec;
    }

    .boxed-emphasis {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    .process-img, .process-text {
        margin-top: 40px;
    }

    section.space-sm {
        padding-bottom: 3em;
    }

    .section-page-header .process-text {
        margin-top: 0;
    }

    .section-counter .counter-title h2:before {
        top: 45.5%;
        left: 36%;
    }

    .section-counter .countdown {
        margin-bottom: 80px;
    }

    .section-page-header {
        display: block;
    }

    .section-page-header .image-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 400px !important;
        margin-bottom: 0px;
    }

    .section-page-header .inner-padding {
        width: 100%;
    }

    .about-header .container {
        display: flex;
    }

    .about-header .header-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .row-eq-height div[class*='col-']:not(:first-child) {
        margin-top: 40px;
    }

    .header-descriton {
        width: 100%;
    }

    .invoice-features .row div[class*='col-']:first-child {
        order: 2;
    }

    .invoice-utilities .utility-img, .invoice-features .feature-img {
        text-align: center;
        margin-bottom: 30px;
    }

    .support-item {
        margin-top: 30px;
    }

    .section-recruitment:not(:first-child) {
        padding-top: 0;
    }

    .recruitment-detail {
        margin-top: 50px;
    }

    .owl-carousel .owl-item .item .slider-title {
        left: 0;
        width: 100%;
        padding: 0 15px;
    }
    
    .owl-carousel .owl-item .item .slider-description {
        width: 100%;
        left: 0;
        padding: 0 15px;
    }
    
    .owl-carousel .owl-item .item .slider-title h2, .owl-carousel .owl-item .item .slider-description p {
        font-size: 1em;
    }
    
    .section .box-video iframe {
        min-height: 350px;
    }

    .box-video .background-image-holder, .box-video .video-play-icon {
        display: none;
    }

    .box-tools {
        display: none;
    }
}

@media (max-width: 767px) {
    .line-bx {
        display: none;    
    }
}

@media (max-width: 480px) {

    header .top-nav .bar-module .menu-horizontal li, header .top-nav .bar-module .menu-horizontal li:last-child {
        float: left;
        display: block;
        width: 100%;
        margin-right: 0;
        font-size: 1em;
        text-align: left;
    }

    .section-page-header .image-container {
        height: 300px !important;
    }

    .section-page-header .inner-padding {
        padding: 60px 0;
    }
}

@media (max-width: 320px) {
    header .top-nav .bar-module .menu-horizontal li {
        font-size: 0.9em;
    }
}


/*====================================================*/
/* Extension                                          */
/*====================================================*/

#owl-demo .fa-angle-right, .fa-angle-left {
    cursor: pointer;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage { 
    position: relative; 
    -ms-touch-action: pan-Y; 
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
}

.owl-nav > div {
    position: relative;
    float: left;
    width: 30px;
    height: 50px;
    margin-top: -25px;
    opacity: 0.8;
    background: #ffffff;
    color: transparent;
    cursor: pointer;
}

.owl-nav > div.owl-next {
    float: right;
}

.owl-nav > div:before {
    color: #1b1b1b;
    content: "\f104";
    font-family: 'FontAwesome';
    font-size: 16px;
    height: 100%;
    left: 0;
    line-height: 50px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}
.owl-nav > div.owl-next:before {
    content: "\f105";
}

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-prev {
    left: 0px;
    margin-left: -20px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

.owl-next {
    right: 0px;
    margin-right: -20px;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}

.owl-prev, .owl-next {
    border-radius: 0%;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    height: 40px;
    width: 40px;
    font-size: 24px;
    line-height: 40px;
    vertical-align: middle;
    display: inline-block;
    pointer-events: auto;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999999;
}

.owl-carousel:hover .owl-prev, .owl-carousel:hover .owl-next {
    margin-left: 0;
    margin-right: 0;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
}

.owl-prev:hover, .owl-next:hover { 
    color: transparent; 
}

.owl-carousel.owl-loaded { 
    display: block; 
}

.owl-carousel.owl-loading { 
    opacity: 0; 
    display: block; 
}

.owl-carousel.owl-hidden { 
    opacity: 0; 
}

.owl-carousel .owl-refresh .owl-item { 
    display: none; 
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.owl-carousel .owl-item .item {
    position: relative;
}

.owl-carousel .owl-item .item .slider-title {
    position: absolute;
    left: 30px;
    bottom: 20%;
    width: 40%;
    z-index: 1;
}

.owl-carousel .owl-item .item .slider-description {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 48%;
    z-index: 1;
}

.owl-carousel .owl-item .item .slider-title h2, .owl-carousel .owl-item .item .slider-description p {
    color: #fff;
}

.owl-carousel .owl-item .item .slider-title h2 {

}

.owl-carousel .owl-item .item .slider-description p {
    font-size: 1.8em;
    line-height: 1.3;
}

.owl-carousel .owl-item img { 
    display: block; 
    width: 100%; 
    -webkit-transform-style: preserve-3d; 
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl { 
    direction: rtl; 
}
.owl-carousel.owl-rtl .owl-item { 
    float: right; 
}
/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}