:root {
    --line-height: 1.425;
    --font-size: 1.6rem;

    --main-color: #D70018;
    --btn-color: #D70018;
    --text-color: #333;
    --bg-color: #23a1d1;
    --title-color: #23a1d1;
    --icon-color: #23a1d1;
    --bg-line-color: #23a1d1;

    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

/*Conversions based on `16px` browser default size:
 `6px` = `37.5%`
 `7px` = `43.8%`
 `8px` = `50.0%`
 `9px` = `56.3%`
`10px` = `62.5%`
`11px` = `68.8%`
`12px` = `75.0%`
`13px` = `81.3%`
`14px` = `87.5%`
`15px` = `93.8%`
`16px` = `100.0%`
*/

/* Reset & Basics */
/*html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, rem, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, rembed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5% !important;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

body {
    font-family: -apple-systrem, systrem-ui, BlinkMacSystremFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    color: var(--text-color);
    line-height: var(--line-height);
    margin: 0;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 30, 45, 0.2);
    z-index: 9999;
}

#pre-loader {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
}

#pre-loader .loader-inner {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: var(--main-color) !important;
    border-left-color: var(--main-color) !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Table of content */
#toctoc {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0 10px;
}

#toctoc a {
    text-decoration: none;
}

#toctoc #toctoc-head {
    padding: .8rem 1rem;
    font-size: 1.2rem;
}

#toctoc #toctoc-head p {
    margin: 0;
}

#toctoc #toctoc-head a:hover {
    opacity: .9;
}

#toctoc #toctoc-body {
    padding: .5rem 1rem;
    font-size: 1rem;
}

#toctoc #toctoc-body .link {
    margin: .4rem 0;
}

#toctoc #toctoc-body.hidden {
    display: none;
}

#toctoc #toctoc-body .link-h3 {
    padding-left: 1rem;
}

#toctoc #toctoc-body .link-h4 {
    padding-left: 2rem;
}

#toctoc #toctoc-body .link-h5 {
    padding-left: 3rem;
}

#toctoc #toctoc-body .link-h6 {
    padding-left: 4rem;
}

/* End table of content */

/* Show more */
.show-more:before {
    height: 55px;
    margin-top: -55px;
    content: "";
    display: block;
    background: transparent;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 50%, #fff 55%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.91)), color-stop(55%, #fff));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 50%, #fff 55%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 50%, #fff 55%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 50%, #fff 55%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 50%, #fff 55%);
}

/* End show more */

/* Toast notification */
.toast-item-wrapper {
    min-width: 250px;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.toast-item-wrapper i.toast-icon {
    position: absolute;
    top: 12px;
    left: 0;
    width: 50px;
    text-align: center;
    vertical-align: middle;
    font-size: 2rem
}

.toast-item-wrapper .toast-close {
    font-size: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    text-align: center;
    cursor: pointer
}

.toast-item-wrapper.success {
    background-color: #29ab9f;
    border: 1px solid #1a9581
}

.toast-item-wrapper.error {
    background-color: #D70018;
    border: 1px solid #D70018
}

.toast-item-wrapper.error {
    color: #fff !important;
}

.toast-item-wrapper.warning {
    background-color: #fff1c0;
    border: 1px solid #f0c948;
    color: #333
}

.toast-item-wrapper.notice {
    background-color: #48a9f8;
    border: 1px solid #208ce4
}

.toast-item-wrapper.info {
    background-color: #7f97a3;
    border: 1px solid #6b8699
}

.toast-item-wrapper.toast-top-left {
    left: 20px;
    top: 20px
}

.toast-item-wrapper.toast-top-right {
    right: 20px;
    top: 20px
}

.toast-item-wrapper.toast-top-center {
    margin: 0 auto;
    top: 20px
}

.toast-item-wrapper.toast-bottom-left {
    left: 20px;
    bottom: 20px
}

.toast-item-wrapper.toast-bottom-right {
    right: 20px;
    bottom: 20px
}

.toast-item-wrapper.toast-bottom-center {
    margin: 0 auto;
    bottom: 20px
}

.toast-item-wrapper.toast-left-center {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.toast-item-wrapper.toast-right-center {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.toast-item-wrapper.fullscreen {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px)
}

.toast-item-wrapper p {
    margin: 0
}

.toast-item-wrapper .toast-message {
    font-size: .87rem
}

.toast-item-wrapper .toast-progress {
    width: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 0;
    right: 0
}

.toast-item-wrapper.rtl {
    direction: rtl;
    text-align: right
}

.toast-item-wrapper.rtl i.toast-icon {
    left: auto;
    right: 0
}

.toast-item-wrapper.rtl .toast-close {
    right: auto;
    left: 0
}

.toast-item-wrapper.rtl p {
    text-align: right
}

.toast-item-wrapper.rtl .toast-progress {
    left: auto;
    right: 0
}

/* End toast notification*/

/* Before/After */
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    width: 3px;
    height: 9999px;
    left: 50%;
    margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
    width: 9999px;
    height: 3px;
    top: 50%;
    margin-top: -1.5px;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    color: white;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 50%;
    margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before,
.twentytwenty-vertical .twentytwenty-after-label:before {
    left: 50%;
    margin-left: -45px;
    text-align: center;
    width: 90px;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px;
}

.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
    left: 50%;
    margin-left: -6px;
}

.twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.twentytwenty-before-label {
    opacity: 0;
}

.twentytwenty-before-label:before {
    content: attr(data-content);
}

.twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-after-label:before {
    content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
    top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
    bottom: 10px;
}

.twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25;
}

.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1;
}

.twentytwenty-before {
    z-index: 20;
}

.twentytwenty-after {
    z-index: 10;
}

.twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 22px;
    -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 22px;
    -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
    left: 50%;
    margin-left: 22px;
    -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
    right: 50%;
    margin-right: 22px;
    -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

.twentytwenty-right-arrow {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

.twentytwenty-up-arrow {
    border-bottom: 6px solid white;
    top: 50%;
    margin-top: -17px;
}

.twentytwenty-down-arrow {
    border-top: 6px solid white;
    bottom: 50%;
    margin-bottom: -17px;
}

/* End before/After */

/* Countdown */
.countdown-timer {
    margin-right: 10px;
}

.countdown-timer:last-child {
    margin-right: 0;
}

.countdown-timer .time {
    margin-right: 5px;
}

/* End countdown */

/* Menu */
.ace-responsive-menu ul {
    margin: 0px;
    padding: 0px;
}

.ace-responsive-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #333;
    float: left;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    border-bottom: 3px solid #FD5025;
}

.ace-responsive-menu li {
    list-style: none;
}

.ace-responsive-menu li ul {
    display: none;
}

.ace-responsive-menu > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: left;
}

.ace-responsive-menu li a {
    color: #c0c0c0;
}

.ace-responsive-menu > li > a {
    display: block;
    position: relative;
    margin: 0;
    border: 0px;
    padding: 18px 20px 18px 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: #c0c0c0;
}

.ace-responsive-menu li a i {
    padding-right: 5px;
    color: #FF5737;
}

.ace-responsive-menu > li > a i {
    font-size: 16px;
    text-shadow: none;
    color: #FF5737;
}

.ace-responsive-menu li ul.sub-menu li a i {
    padding-right: 10px;
}

.ace-responsive-menu li.menu-active > a {
    background: #272727 !important;
    color: #fff;
}

.ace-responsive-menu li .menu-active {
    position: relative;
}

.ace-responsive-menu > li > a > .arrow:before {
    margin-left: 15px;
    display: inline;
    font-size: 16px;
    font-family: FontAwesome;
    height: auto;
    content: "\f107";
    font-weight: 300;
    text-shadow: none;
    width: 10px;
    display: inline-block;
}

.ace-responsive-menu li ul.sub-menu li > a > .arrow:before {
    content: "\f105" !important;
}

.ace-responsive-menu > li > ul.sub-menu {
    display: none;
    list-style: none;
    clear: both;
    margin: 0;
    position: absolute;
    z-index: 9999;
}

.ace-responsive-menu li ul.sub-menu {
    background: #333;
}

.ace-responsive-menu li ul.sub-menu > li {
    width: 185px;
}

.ace-responsive-menu li ul.sub-menu li a {
    display: block;
    margin: 0px 0px;
    padding: 12px 20px 12px 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: normal;
    background: none;
}

.ace-responsive-menu > li > ul.sub-menu > li {
    position: relative;
}

.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 185px;
    top: 0px;
    display: none;
    list-style: none;
    z-index: 9999;
}

.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 185px;
    top: 0px;
    display: none;
    list-style: none;
    z-index: 9999;
}

.ace-responsive-menu > li > ul.sub-menu li > a > .arrow:before {
    float: right;
    margin-top: 1px;
    margin-right: 0px;
    display: inline;
    font-size: 16px;
    font-family: FontAwesome;
    height: auto;
    content: "\f104";
    font-weight: 300;
    text-shadow: none;
}

/* Menu Toggle Btn
----------------------------------------*/
.menu-toggle {
    display: none;
    float: left;
    width: 100%;
    background: #333;
}

.menu-toggle h3 {
    float: left;
    color: #FFF;
    padding: 0px 10px;
    font-weight: 600;
    font-size: 16px;
}

.menu-toggle .icon-bar {
    display: block !important;
    width: 18px;
    height: 2px;
    background-color: #F5F5F5 !important;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    margin: 3px;
}

.menu-toggle .icon-bar:hover {
    background-color: #F5F5F5 !important;
}

.menu-toggle #menu-btn {
    float: right;
    background: #202020;
    border: 1px solid #0C0C0C;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

.hide-menu {
    display: none;
}

/* Accordion Menu Styles
----------------------------------------*/
ul[data-menu-style="accordion"] {
    width: 250px;
}

ul[data-menu-style="accordion"] > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: none !important;
}

ul[data-menu-style="accordion"] > li:first-child {
    border-top: 2px solid #FD5025;
}

ul[data-menu-style="accordion"] li ul.sub-menu > li {
    width: 100%;
}

ul[data-menu-style="accordion"] > li > a > .arrow:before {
    float: right;
    content: "\f105";
}

ul[data-menu-style="accordion"] li.menu-active > a > .arrow:before {
    content: "\f107" !important;
}

ul[data-menu-style="accordion"] > li > ul.sub-menu {
    position: static;
}

ul[data-menu-style="accordion"] > li > a i {
    padding-right: 10px;
    color: #FF5737;
}

ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu {
    position: static;
}

ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: static;
}

ul[data-menu-style="accordion"] > li {
    border-bottom: 1px solid #242424;
}

ul[data-menu-style="accordion"] li a:hover {
    background: #272727 !important;
}

ul[data-menu-style="accordion"] ul.sub-menu li.menu-active > a > .arrow:before {
    content: "\f107" !important;
}

/* Vertical Menu Styles
----------------------------------------*/
ul[data-menu-style="vertical"] {
    width: 200px;
}

ul[data-menu-style="vertical"] > li {
    float: none;
}

ul[data-menu-style="vertical"] > li:first-child {
    border-top: 2px solid #FD5025;
}

ul[data-menu-style="vertical"] li ul.sub-menu > li {
    width: 100%;
}

ul[data-menu-style="vertical"] > li > a > .arrow:before {
    float: right;
    content: "\f105";
}

ul[data-menu-style="vertical"] > li.menu-active {
    position: relative;
}

ul[data-menu-style="vertical"] > li > ul.sub-menu {
    position: absolute;
    left: 200px;
    top: 0px;
    width: 200px;
}

ul[data-menu-style="vertical"] > li > a i {
    padding-right: 10px;
    color: #FF5737;
}

ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 200px;
}

ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 200px;
}

ul[data-menu-style="vertical"] > li {
    border-bottom: 1px solid #242424;
}

ul[data-menu-style="vertical"] li a:hover {
    background: #272727 !important;
}

/* Responsive Menu Styles
----------------------------------------*/
/*Note: change the max-width asper your requirment and change the same in aceResponsiveMenu({resizeWidth: "768" }) function*/
@media screen and (max-width: 768px) {
    .demo {
        width: 96%;
        padding: 2%;
    }

    ul[data-menu-style="vertical"],
    ul[data-menu-style="accordion"],
    ul[data-menu-style="vertical"] li ul.sub-menu {
        width: 100% !important;
    }

    .ace-responsive-menu {
        float: left;
        width: 100%;
    }

    .ace-responsive-menu > li {
        border-bottom: 1px solid #242424;
        float: none;
    }

    .ace-responsive-menu li a:hover {
        background: #272727 !important;
    }

    .ace-responsive-menu > li:first-child {
        border-top: 2px solid #FD5025;
    }

    .ace-responsive-menu > li > a i {
        padding-right: 10px;
        color: #FF5737;
    }

    .ace-responsive-menu > li > a > .arrow:before {
        float: right;
        content: "\f105";
    }

    li.menu-active > a > .arrow:before {
        content: "\f107" !important;
    }

    .ace-responsive-menu li ul.sub-menu > li {
        width: 100%;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 30px;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 50px;
    }

    .ace-responsive-menu > li > ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu li ul.sub-menu li.menu-active > a > .arrow:before {
        content: "\f107" !important;
    }
}

/* End menu */

/* typography default browser */
.v-base-content h1,
.v-base-content h2,
.v-base-content h3,
.v-base-content h4,
.v-base-content h5,
.v-base-content h6 {
    display: block;
    font-size: 2.5rem;
    margin-top: 0.67rem;
    margin-bottom: 0.67rem;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    line-height: var(--line-height);
}

.v-base-content h2 {
    font-size: 2rem;
    margin-top: 0.83rem;
    margin-bottom: 0.83rem;
}

.v-base-content h3 {
    font-size: 1.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.v-base-content h4 {
    font-size: 1.5rem;
    margin-top: 1.33rem;
    margin-bottom: 1.33rem;
}

.v-base-content h5 {
    font-size: 1.25rem;
    margin-top: 1.67rem;
    margin-bottom: 1.67rem;
}

.v-base-content h6 {
    font-size: 1rem;
    margin-top: 2.33rem;
    margin-bottom: 2.33rem;
}

.v-base-content p {
    display: block;
    margin: 0 0 1.5rem 0;
}

.v-base-content h1 a,
.v-base-content h2 a,
.v-base-content h3 a,
.v-base-content h4 a,
.v-base-content h5 a,
.v-base-content h6 a {
    font-weight: inherit;
}

.v-base-content h1 a:hover,
.v-base-content h2 a:hover,
.v-base-content h3 a:hover,
.v-base-content h4 a:hover,
.v-base-content h5 a:hover,
.v-base-content h6 a:hover {
    text-decoration: none;
}

.v-base-content p a,
.v-base-content span a {
    text-decoration: underline;
}

.v-base-content label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 400
}

/* links */
.v-base-content a,
.v-base-content a:visited,
.v-base-content a:focus {
    text-decoration: none;
    outline: 0;
}

.v-base-content a:hover {
    text-decoration: underline;
}

/* image */
img,
.v-base-content img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    object-fit: cover;
}

iframe,
.v-base-content iframe {
    max-width: 100%;
}

/* table */
.v-base-content table,
.v-base-content .table,
.v-base-content .table-all {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: table
}

.v-base-content table,
.v-base-content .table-all {
    border: 1px solid #ccc
}

.v-base-content table tr,
.v-base-content .table-bordered tr,
.v-base-content .table-all tr {
    border-bottom: 1px solid #ddd
}

.v-base-content .table-striped tbody tr:nth-child(even) {
    background-color: #f1f1f1
}

.v-base-content .table-all tr:nth-child(odd) {
    background-color: #fff
}

.v-base-content .table-all tr:nth-child(even) {
    background-color: #f1f1f1
}

.v-base-content .hoverable tbody tr:hover {
    background-color: #ccc
}

.v-base-content .table-centered tr th,
.v-base-content .table-centered tr td {
    text-align: center
}

.v-base-content table td,
.v-base-content table th,
.v-base-content .table td,
.v-base-content .table th,
.v-base-content .table-all td,
.v-base-content .table-all th {
    padding: 8px 8px;
    display: table-cell;
    text-align: left;
    vertical-align: top;
    border: 1px solid #E1E1E1;
}

.v-base-content table td:first-child,
.v-base-content table th:first-child,
.v-base-content .table th:first-child,
.v-base-content .table td:first-child,
.v-base-content .table-all th:first-child,
.v-base-content .table-all td:first-child {
    padding-left: 16px
}

.v-base-content .table-responsive {
    display: block;
    overflow-x: auto
}

/* list itrem */
.v-base-content ul,
.v-base-content ol {
    padding: 0;
    margin: 0;
}

.v-base-content ol {
    list-style: decimal;
}

.v-base-content ul,
.v-base-content li {
    list-style: inherit;
    list-style-position: inside;
}

.v-base-content ul li,
.v-base-content ol li {
    padding: 0 15px;
    display: list-itrem;
    text-align: -webkit-match-parent;
}

/* text ellipsis */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-ellipsis.ellipsis-2 {
    -webkit-line-clamp: 2;
}

.text-ellipsis.ellipsis-3 {
    -webkit-line-clamp: 3;
}

.text-ellipsis.ellipsis-4 {
    -webkit-line-clamp: 4;
}

.text-ellipsis.ellipsis-5 {
    -webkit-line-clamp: 5;
}

blockquote,
.v-base-content blockquote {
    border-left: 2px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1rem;
}

blockquote {
    border-left: 2px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1rem;
}

blockquote::before {
    font-family: Arial;
    /*content: "\201C";*/
    color: var(--main-color, #ff7800);
    font-size: 4em;
    position: absolute;
    left: 15px;
    top: -10px;
}

blockquote::after {
    content: '';
}

@media (max-width: 767px) {
    blockquote{
        margin: 0;
    }
}

/************************ button *************************/
.btn {
    padding: 10px 20px;
    border-width: 1px;
    box-shadow: none;
    outline: none;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:focus,
.btn:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-radius {
    border-radius: 4px;
}

.btn-border {
    border: 1px solid var(--main-color);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-default {
    background: var(--btn-color);
    border-color: var(--btn-color);
    color: #fff;
}

.btn-default:hover {
    background: #fff;
    color: var(--btn-color);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--main-color);
}

.btn-white:hover {
    background: var(--main-color);
    color: #fff
}

/******* btn background white hover *********/
.btn-white.btn-hover__blue:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.btn-white.btn-hover__gray:hover {
    background: var(--gray);
    border-color: var(--gray);
}

.btn-white.btn-hover__indigo:hover {
    background: var(--indigo);
    border-color: var(--indigo);
}

.btn-white.btn-hover__purple:hover {
    background: var(--purple);
    border-color: var(--purple);
}

.btn-white.btn-hover__pink:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.btn-white.btn-hover__red:hover {
    background: var(--red);
    border-color: var(--red);
}

.btn-white.btn-hover__orange:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.btn-white.btn-hover__yellow:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.btn-white.btn-hover__green:hover {
    background: var(--green);
    border-color: var(--green);
}

.btn-white.btn-hover__teal:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.btn-white.btn-hover__gray-dark:hover {
    background: var(--gray-dark);
    border-color: var(--gray-dark);
}

.btn-white.btn-hover__primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-white.btn-hover__secondary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-white.btn-hover__success:hover {
    background: var(--success);
    border-color: var(--success);
}

.btn-white.btn-hover__info:hover {
    background: var(--info);
    border-color: var(--info);
}

.btn-white.btn-hover__warning:hover {
    background: var(--warning);
    border-color: var(--warning);
}

.btn-white.btn-hover__danger:hover {
    background: var(--danger);
    border-color: var(--danger);
}

.btn-white.btn-hover__light:hover {
    background: var(--light);
    border-color: var(--light);
}

/******* end btn background white hover *********/

/******* btn hover with color ********/
.btn-blue {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.btn-blue:hover {
    background: #fff;
    color: var(--blue);
}

.btn-indigo {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
}

.btn-indigo:hover {
    background: #fff;
    color: var(--indigo);
}

.btn-purple {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

.btn-purple:hover {
    background: #fff;
    color: var(--purple);
}

.btn-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.btn-pink:hover {
    background: #fff;
    color: var(--pink);
}

.btn-red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: #fff;
    color: var(--red);
}

.btn-orange {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.btn-orange:hover {
    background: #fff;
    color: var(--orange);
}

.btn-yellow {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}

.btn-yellow:hover {
    background: #fff;
    color: var(--yellow);
}

.btn-green {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: #fff;
    color: var(--green);
}

.btn-teal {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.btn-teal:hover {
    background: #fff;
    color: var(--teal);
}

.btn-cyan {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}

.btn-cyan:hover {
    background: #fff;
    color: var(--cyan);
}

.btn-white {
    background: var(--white);
    border-color: var(--main-color);
    color: var(--main-color);
}

.btn-white:hover {
    background: var(--main-color);
    color: var(--white);
}

.btn-gray {
    background: var(--gray);
    border-color: var(--gray);
    color: #fff;
}

.btn-gray:hover {
    background: #fff;
    color: var(--gray);
}

.btn-gray-dark {
    background: var(--gray-dark);
    border-color: var(--gray-dark);
    color: #fff;
}

.btn-gray-dark:hover {
    background: #fff;
    color: var(--gray-dark);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--secondary);
}

.btn-success {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #fff;
    color: var(--success);
}

.btn-info {
    background: var(--info);
    border-color: var(--info);
    color: #fff;
}

.btn-info:hover {
    background: #fff;
    color: var(--info);
}

.btn-warning {
    background: var(--warning);
    border-color: var(--warning);
    color: #fff;
}

.btn-warning:hover {
    background: #fff;
    color: var(--warning);
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #fff;
    color: var(--danger);
}

.btn-light {
    background: var(--light);
    border-color: var(--light);
    color: #fff;
}

.btn-light:hover {
    background: #fff;
    color: var(--light);
}

.btn-dark {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #fff;
    color: var(--dark);
}

/******* end btn hover with color ********/

*::-moz-selection {
    background: #333;
    color: #fff;
    text-shadow: none
}

::-moz-selection {
    background: #333;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #333;
    color: #fff;
    text-shadow: none
}

*::-moz-placeholder {
    color: #333;
    font-size: 14px;
    opacity: 1
}

*::-webkit-input-placeholder {
    color: #333;
    font-size: 14px;
    opacity: 1
}

*:-ms-input-placeholder {
    color: #333;
    font-size: 14px;
    opacity: 1
}

*::-ms-input-placeholder {
    color: #333;
    font-size: 14px;
    opacity: 1
}

*::placeholder {
    color: #333;
    font-size: 14px;
    opacity: 1
}

.opacity-05 {
    opacity: 0.5;
}

.opacity-06 {
    opacity: 0.6;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-08 {
    opacity: 0.8;
}

.opacity-09 {
    opacity: 0.9;
}

.opacity,
.hover-opacity:hover {
    opacity: 0.60
}

.opacity-off,
.hover-opacity-off:hover {
    opacity: 1
}

/* su dung khi khong dung padding/margin tren duoi */
.v-base hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

.space-height {
    width: 100%;
}

.space-height--10 {
    height: 10px;
}

.space-height--20 {
    height: 20px;
}

.space-height--30 {
    height: 30px;
}

.space-height--40 {
    height: 40px;
}

.space-height--50 {
    height: 50px;
}

/* */

/* define close icon */
.v-base-icon .close {
    position: absolute;
    right: 15px;
    top: 25px;
    width: 32px;
    height: 32px;
    opacity: 1;
}

.v-base-icon .close:before,
.v-base-icon .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #1F2642;
}

.v-base-icon .close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.v-base-icon .close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* end close icon */

/* define check icon */
.v-base-icon .checkmark {
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 12px;
    width: 7px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
}

/* end check icon */

/* define arrow icon */
.v-base-icon .arrow {
    border: solid #1F2642;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.v-base-icon .right {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.v-base-icon .left {
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.v-base-icon .up {
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.v-base-icon .down {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.v-base-icon .svg-icon {
    width: 1rem;
    height: 1rem;
}

.v-base-icon .svg-icon path,
.v-base-icon .svg-icon polygon,
.v-base-icon .svg-icon rect {
    fill: #000;
}

.v-base-icon .svg-icon circle {
    stroke: #4691f6;
    stroke-width: 1;
}

/* end define arrow icon */

/* define plus and minus icon */
.v-base-icon .plus-minus {
    position: relative;
    width: 10px;
    height: 10px;
}

.v-base-icon .plus-minus:before,
.v-base-icon .plus-minus:after {
    content: "";
    position: absolute;
    background-color: #000000;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.v-base-icon .plus-minus:before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.v-base-icon .plus-minus:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
}

.v-base-icon .plus-minus:hover {
    cursor: pointer;
}

.v-base-icon .plus-minus.active .plus-minus:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.v-base-icon .plus-minus.active .plus-minus:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* end plus and minus icon */

/* position */
.v-base-position .top,
.v-base-position .bottom {
    position: fixed;
    width: 100%;
    z-index: 1
}

.v-base-position .top {
    top: 0
}

.v-base-position .bottom {
    bottom: 0
}

.v-base-overlay,
.v-base-overlay .overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2
}

.v-base-position .display-topleft {
    position: absolute;
    left: 0;
    top: 0
}

.v-base-position .display-topright {
    position: absolute;
    right: 0;
    top: 0
}

.v-base-position .display-bottomleft {
    position: absolute;
    left: 0;
    bottom: 0
}

.v-base-position .display-bottomright {
    position: absolute;
    right: 0;
    bottom: 0
}

.v-base-position .display-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.v-base-position .display-left {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    -ms-transform: translate(-0%, -50%)
}

.v-base-position .display-right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%)
}

.v-base-position .display-topmiddle {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%)
}

.v-base-position .display-bottommiddle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%)
}

/* end position */

/* border radius */
.v-base-border .border-circle {
    border-radius: 50%
}

.v-base-border .border-round-small {
    border-radius: 2px
}

.v-base-border .border-round,
.v-base-border .border-round-medium {
    border-radius: 4px
}

.v-base-border .border-round-large {
    border-radius: 8px
}

.v-base-border .border-round-xlarge {
    border-radius: 16px
}

.v-base-border .border-round-xxlarge {
    border-radius: 32px
}

/* end border radius */

/* border */
.v-base-border .border-0 {
    border: 0 !important
}

.v-base-border .border {
    border: 1px solid #ccc !important
}

.v-base-border .border-top {
    border-top: 1px solid #ccc !important
}

.v-base-border .border-bottom {
    border-bottom: 1px solid #ccc !important
}

.v-base-border .border-left {
    border-left: 1px solid #ccc !important
}

.v-base-border .border-right {
    border-right: 1px solid #ccc !important
}

.v-base-border .border-topbar {
    border-top: 6px solid #ccc !important
}

.v-base-border .border-bottombar {
    border-bottom: 6px solid #ccc !important
}

.v-base-border .border-leftbar {
    border-left: 6px solid #ccc !important
}

.v-base-border .border-rightbar {
    border-right: 6px solid #ccc !important
}

/* end border */

/* show/hide */
.v-base-display .hide {
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.v-base-display .open {
    opacity: 1;
    height: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

/* btn scroll to top */
.v-base .scrollToTop {
    background: #000;
    height: 35px;
    width: 35px;
    right: 35px;
    bottom: 100px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: var(--line-height);
    display: block;
    position: fixed;
    z-index: 9999;
    display: none
}

.m-0 {
    margin: 0 !important;
}

.mt-5 {
    margin-top: 0.5rem !important;
}

.mt-10 {
    margin-top: 1rem !important;
}

.mt-15 {
    margin-top: 1.5rem !important;
}

.mt-20 {
    margin-top: 2rem !important;
}

.mt-25 {
    margin-top: 2.5rem !important;
}

.mt-30 {
    margin-top: 3rem !important;
}

.mt-35 {
    margin-top: 3.5rem !important;
}

.mt-40 {
    margin-top: 4rem !important;
}

.mt-45 {
    margin-top: 4.5rem !important;
}

.mt-50 {
    margin-top: 5rem !important;
}

.mt-55 {
    margin-top: 5.5rem !important;
}

.mt-60 {
    margin-top: 6rem !important;
}

.mt-65 {
    margin-top: 6.5rem !important
}

.mt-70 {
    margin-top: 7rem !important
}

.mt-75 {
    margin-top: 7.5rem !important
}

.mt-80 {
    margin-top: 8rem !important
}

.mt-85 {
    margin-top: 8.5rem !important
}

.mt-90 {
    margin-top: 9rem !important
}

.mt-95 {
    margin-top: 9.5rem !important
}

.mt-100 {
    margin-top: 10rem !important
}

.mb-5 {
    margin-bottom: 0.5rem !important;
}

.mb-10 {
    margin-bottom: 1rem !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important
}

.mb-20 {
    margin-bottom: 2rem !important
}

.mb-25 {
    margin-bottom: 2.5rem !important
}

.mb-30 {
    margin-bottom: 3rem !important
}

.mb-35 {
    margin-bottom: 3.5rem !important
}

.mb-40 {
    margin-bottom: 4rem !important
}

.mb-45 {
    margin-bottom: 4.5rem !important
}

.mb-50 {
    margin-bottom: 5rem !important
}

.mb-55 {
    margin-bottom: 5.5rem !important
}

.mb-60 {
    margin-bottom: 6rem !important
}

.mb-65 {
    margin-bottom: 6.5rem !important
}

.mb-70 {
    margin-bottom: 7rem !important
}

.mb-75 {
    margin-bottom: 7.5rem !important
}

.mb-80 {
    margin-bottom: 8rem !important
}

.mb-85 {
    margin-bottom: 8.5rem !important
}

.mb-90 {
    margin-bottom: 9rem !important
}

.mb-95 {
    margin-bottom: 9.5rem !important
}

.mb-100 {
    margin-bottom: 10rem !important
}

.ml-5 {
    margin-left: 0.5rem !important
}

.ml-10 {
    margin-left: 1rem !important
}

.ml-15 {
    margin-left: 1.5rem !important
}

.ml-20 {
    margin-left: 2rem !important
}

.ml-25 {
    margin-left: 2.5rem !important
}

.ml-30 {
    margin-left: 3rem !important
}

.ml-35 {
    margin-left: 3.5rem !important
}

.ml-40 {
    margin-left: 4rem !important
}

.ml-45 {
    margin-left: 4.5rem !important
}

.ml-50 {
    margin-left: 5rem !important
}

.ml-55 {
    margin-left: 5.5rem !important
}

.ml-60 {
    margin-left: 6rem !important
}

.ml-65 {
    margin-left: 6.5rem !important
}

.ml-70 {
    margin-left: 7rem !important
}

.ml-75 {
    margin-left: 7.5rem !important
}

.ml-80 {
    margin-left: 8rem !important
}

.ml-85 {
    margin-left: 8.5rem !important
}

.ml-90 {
    margin-left: 9rem !important
}

.ml-95 {
    margin-left: 9.5rem !important
}

.ml-100 {
    margin-left: 10rem !important
}

.mr-5 {
    margin-right: 0.5rem !important
}

.mr-10 {
    margin-right: 1rem !important
}

.mr-15 {
    margin-right: 1.5rem !important
}

.mr-20 {
    margin-right: 2rem !important
}

.mr-25 {
    margin-right: 2.5rem !important
}

.mr-30 {
    margin-right: 3rem !important
}

.mr-35 {
    margin-right: 3.5rem !important
}

.mr-40 {
    margin-right: 4rem !important
}

.mr-45 {
    margin-right: 4.5rem !important
}

.mr-50 {
    margin-right: 5rem !important
}

.mr-55 {
    margin-right: 5.5rem !important
}

.mr-60 {
    margin-right: 6rem !important
}

.mr-65 {
    margin-right: 6.5rem !important
}

.mr-70 {
    margin-right: 7rem !important
}

.mr-75 {
    margin-right: 7.5rem !important
}

.mr-80 {
    margin-right: 8rem !important
}

.mr-85 {
    margin-right: 8.5rem !important
}

.mr-90 {
    margin-right: 9rem !important
}

.mr-95 {
    margin-right: 9.5rem !important
}

.mr-100 {
    margin-right: 10rem !important
}

.p-0 {
    padding: 0 !important;
}

.pt-5 {
    padding-top: 0.5rem !important
}

.pt-10 {
    padding-top: 1rem !important
}

.pt-15 {
    padding-top: 1.5rem !important
}

.pt-20 {
    padding-top: 2rem !important
}

.pt-25 {
    padding-top: 2.5rem !important
}

.pt-30 {
    padding-top: 3rem !important
}

.pt-35 {
    padding-top: 3.5rem !important
}

.pt-40 {
    padding-top: 4rem !important
}

.pt-45 {
    padding-top: 4.5rem !important
}

.pt-50 {
    padding-top: 5rem !important
}

.pt-55 {
    padding-top: 5.5rem !important
}

.pt-60 {
    padding-top: 6rem !important
}

.pt-65 {
    padding-top: 6.5rem !important
}

.pt-70 {
    padding-top: 7rem !important
}

.pt-75 {
    padding-top: 7.5rem !important
}

.pt-80 {
    padding-top: 8rem !important
}

.pt-85 {
    padding-top: 8.5rem !important
}

.pt-90 {
    padding-top: 9rem !important
}

.pt-95 {
    padding-top: 9.5rem !important
}

.pt-100 {
    padding-top: 10rem !important
}

.pb-5 {
    padding-bottom: 0.5rem !important
}

.pb-10 {
    padding-bottom: 1rem !important
}

.pb-15 {
    padding-bottom: 1.5rem !important
}

.pb-20 {
    padding-bottom: 2rem !important
}

.pb-25 {
    padding-bottom: 2.5rem !important
}

.pb-30 {
    padding-bottom: 3rem !important
}

.pb-35 {
    padding-bottom: 3.5rem !important
}

.pb-40 {
    padding-bottom: 4rem !important
}

.pb-45 {
    padding-bottom: 4.5rem !important
}

.pb-50 {
    padding-bottom: 5rem !important
}

.pb-55 {
    padding-bottom: 5.5rem !important
}

.pb-60 {
    padding-bottom: 6rem !important
}

.pb-65 {
    padding-bottom: 6.5rem !important
}

.pb-70 {
    padding-bottom: 7rem !important
}

.pb-75 {
    padding-bottom: 7.5rem !important
}

.pb-80 {
    padding-bottom: 8rem !important
}

.pb-85 {
    padding-bottom: 8.5rem !important
}

.pb-90 {
    padding-bottom: 9rem !important
}

.pb-95 {
    padding-bottom: 9.5rem !important
}

.pb-100 {
    padding-bottom: 10rem !important
}

.pl-5 {
    padding-left: 0.5rem !important
}

.pl-10 {
    padding-left: 1rem !important
}

.pl-15 {
    padding-left: 1.5rem !important
}

.pl-20 {
    padding-left: 2rem !important
}

.pl-25 {
    padding-left: 2.5rem !important
}

.pl-30 {
    padding-left: 3rem !important
}

.pl-35 {
    padding-left: 3.5rem !important
}

.pl-40 {
    padding-left: 4rem !important
}

.pl-45 {
    padding-left: 4.5rem !important
}

.pl-50 {
    padding-left: 5rem !important
}

.pl-55 {
    padding-left: 5.5rem !important
}

.pl-60 {
    padding-left: 6rem !important
}

.pl-65 {
    padding-left: 6.5rem !important
}

.pl-70 {
    padding-left: 7rem !important
}

.pl-75 {
    padding-left: 7.5rem !important
}

.pl-80 {
    padding-left: 8rem !important
}

.pl-85 {
    padding-left: 8.5rem !important
}

.pl-90 {
    padding-left: 9rem !important
}

.pl-95 {
    padding-left: 9.5rem !important
}

.pl-100 {
    padding-left: 10rem !important
}

.pr-5 {
    padding-right: 0.5rem !important
}

.pr-10 {
    padding-right: 1rem !important
}

.pr-15 {
    padding-right: 1.5rem !important
}

.pr-20 {
    padding-right: 2rem !important
}

.pr-25 {
    padding-right: 2.5rem !important
}

.pr-30 {
    padding-right: 3rem !important
}

.pr-35 {
    padding-right: 3.5rem !important
}

.pr-40 {
    padding-right: 4rem !important
}

.pr-45 {
    padding-right: 4.5rem !important
}

.pr-50 {
    padding-right: 5rem !important
}

.pr-55 {
    padding-right: 5.5rem !important
}

.pr-60 {
    padding-right: 6rem !important
}

.pr-65 {
    padding-right: 6.5rem !important
}

.pr-70 {
    padding-right: 7rem !important
}

.pr-75 {
    padding-right: 7.5rem !important
}

.pr-80 {
    padding-right: 8rem !important
}

.pr-85 {
    padding-right: 8.5rem !important
}

.pr-90 {
    padding-right: 9rem !important
}

.pr-95 {
    padding-right: 9.5rem !important
}

.pr-100 {
    padding-right: 10rem !important
}

/** animation  **/
/* pulse-circle */
.blob {
    background: black;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 10px;
    height: 15px;
    width: 15px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: pulse-black 1.5s infinite;
    animation: pulse-black 1.5s infinite;
}

@-webkit-keyframes pulse-black {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-black {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.blob.white {
    background: white;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    -webkit-animation: pulse-white 2s infinite;
    animation: pulse-white 2s infinite;
}

@-webkit-keyframes pulse-white {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-white {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.blob.red {
    background: rgba(255, 82, 82, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    -webkit-animation: pulse-red 2s infinite;
    animation: pulse-red 2s infinite;
}

@-webkit-keyframes pulse-red {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

@keyframes pulse-red {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.blob.orange {
    background: rgba(255, 121, 63, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
    -webkit-animation: pulse-orange 2s infinite;
    animation: pulse-orange 2s infinite;
}

@-webkit-keyframes pulse-orange {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
        box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
    }
}

@keyframes pulse-orange {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
        box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
    }
}

.blob.yellow {
    background: rgba(255, 177, 66, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 66, 1);
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 1);
    -webkit-animation: pulse-yellow 1.5s infinite;
    animation: pulse-yellow 1.5s infinite;
}

@-webkit-keyframes pulse-yellow {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
        box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
    }
}

@keyframes pulse-yellow {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
        box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
    }
}

.blob.blue {
    background: rgba(52, 172, 224, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
    -webkit-animation: pulse-blue 2s infinite;
    animation: pulse-blue 2s infinite;
}

@-webkit-keyframes pulse-blue {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}

@keyframes pulse-blue {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}

.blob.green {
    background: rgba(51, 217, 178, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    -webkit-animation: pulse-green 2s infinite;
    animation: pulse-green 2s infinite;
}

@-webkit-keyframes pulse-green {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}

@keyframes pulse-green {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}

.blob.purple {
    background: rgba(142, 68, 173, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(142, 68, 173, 1);
    box-shadow: 0 0 0 0 rgba(142, 68, 173, 1);
    -webkit-animation: pulse-purple 2s infinite;
    animation: pulse-purple 2s infinite;
}

@-webkit-keyframes pulse-purple {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
        box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

@keyframes pulse-purple {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
        box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

.animate-spin {
    animation: animate-spin 2s infinite linear
}

@keyframes animate-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(359deg)
    }
}

.animate-fading {
    animation: fading 10s infinite
}

@keyframes fading {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.animate-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate-top {
    position: relative;
    animation: animatetop 0.4s
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.animate-left {
    position: relative;
    animation: animateleft 0.4s
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

.animate-right {
    position: relative;
    animation: animateright 0.4s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.animate-zoom {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* end pulse cirle */

/***************** module service default ****************/
.section-service {
    padding: 70px 0;
}

.section-block-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.section-service__title {
    margin-bottom: 18px;
    font-size: 32px;
    color: var(--text-color);
    font-weight: 700;
    line-height: var(--line-height);
}

.section_service__text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 200%;
    margin-bottom: 15px;
}

.section-service__icon {
    color: var(--icon-color);
    font-size: 35px !important;
}

.section-service__title-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--bg-line-color, #23a1d1);
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.section-service__title-line-center {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--bg-line-color, #23a1d1);
    border-radius: 25%;
    margin: 15px auto 5px;
}

.section-service__button {
    background: var(--bg-color);
    color: #FFFFFF;
    border-radius: 50px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 25px 13px 25px;
}

.section-service__button:hover {
    color: #FFFFFF;
}

/* style for only IE */
@media screen and (min-width: 0\0
) {
}

/* end */

/** responsive **/

@media (min-width: 991px) {
    .service-team_list_view__itrem-des {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (max-width: 767px) {
    html {
        font-size: 56.3% !important;
    }

    .section-service {
        padding: 25px 0;
    }

    .service-action_text_button {
        margin-top: 25px;
    }

    .service-about_image_service__itrem {
        text-align: center;
        padding: 0 30px;
    }

    .section-service__title {
        font-size: 25px;
    }

    .service-team_list_view__itrem {
        text-align: center;
    }

    .service-team_list_view__itrem .service-team_list_view__itrem-des {
        padding: 0 20px;
    }

    .service-about_text_number__itrem {
        padding: 5px !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50.0% !important;
    }
}

/** end responsive **/