@charset "UTF-8";
:root {
	--color-main: #f0613b;
	--color-second: #363334;
	--color-text: #414141
}
@media (min-width: 1200px) {
    .v2 li:hover > a {
        background: none !important;
    }

    body .menu-header > li > ul {
        display: flex !important;
        flex-flow: wrap;
    }
}

.btn-call {
    position: fixed;
    bottom: 100px;
    left: 20px;
    transform: scale(0.8);
    z-index: 9999;
}

.btn-call strong {
    background: #76B82C;
    display: inline-block;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-size: 20px;
    font-family: "OpenSans";
    position: absolute;
    right: 72px;
    top: 50%;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    margin-right: 15px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    min-width: 160px;
    text-align: center;

    font-weight: normal;
}

.btn-call strong:after {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 10px solid #76B82C;
    border-bottom: 20px solid transparent;
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
}

.btn-call:hover strong {
    opacity: 1;
    pointer-events: all;
    margin-right: 0px;
}

.btn-call span {
    display: block;
    font-size: 42px;
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50% !important;
    line-height: 60px;
    text-align: center;
    color: #fff;
    background: #f0613b;
    position: relative;
}

.btn-call span i {
    animation-name: lac;
    -webkit-animation-name: lac;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.btn-call span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: solid 1px rgb(55 52 53);
    animation-name: zoomin;
    -webkit-animation-name: zoomin;
    animation-name: zoomin;
    -webkit-animation-name: zoomin;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.btn-call span:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgb(54 51 52);
    z-index: -1;
    animation-name: zoomout;
    -webkit-animation-name: zoomout;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes lac {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-25deg);
    }
    20% {
        transform: rotate(25deg);
    }
    30% {
        transform: rotate(-25deg);
    }
    40% {
        transform: rotate(25deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes lac {
    0% {
        -webkit-transform: rotate(0deg);
    }
    10% {
        -webkit-transform: rotate(-25deg);
    }
    20% {
        -webkit-transform: rotate(25deg);
    }
    30% {
        -webkit-transform: rotate(-25deg);
    }
    40% {
        -webkit-transform: rotate(25deg);
    }
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: .1;
    }
}

@-webkit-keyframes zoomin {
    0% {
        -webkit-transform: scale(.8);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.2);
        opacity: .1;
    }
}

@keyframes zoomout {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: .3
    }
}

@-webkit-keyframes zoomout {
    0% {
        -webkit-transform: scale(0.8);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.1);
        opacity: .3;
    }
}

/*Back to top*/

/*Back to top*/
.gamba-circles {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 80px;
    height: 80px;
    margin: 0 auto;

    -webkit-transform: translate3D(-50%, -50%, 0);
    -moz-transform: translate3D(-50%, -50%, 0);
    -ms-transform: translate3D(-50%, -50%, 0);
    -o-transform: translate3D(-50%, -50%, 0);
    transform: translate3D(-50%, -50%, 0);
}

.gamba-circles .circle {
    position: absolute;

    box-sizing: border-box;
    width: 100%;
    height: 100%;

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;

    border: 1px solid transparent;
    border-radius: 92% 110% 132% 88%;
}

.gamba-circles .circle:nth-child(1) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin1 6s linear infinite;
    animation: spin1 6s linear infinite;

    border-color: #c7c7c7;
}

.gamba-circles .circle:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin2 6s linear infinite;
    animation: spin2 6s linear infinite;

    border-color: #c7c7c7;
}

.gamba-circles .circle:nth-child(3) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin3 6s linear infinite;
    animation: spin3 6s linear infinite;

    border-color: #c7c7c7;
}

.gamba-circles .circle:nth-child(4) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin4 6s linear infinite;
    animation: spin4 6s linear infinite;

    border-color: #c7c7c7;
}

#back-top .gamba-circles {
    font-size: 24px;
    line-height: 50px;
    position: fixed;
    z-index: 100;
    top: auto;
    right: 25px;
    bottom: 100px;
    left: auto;
    visibility: hidden;
    width: 40px;
    height: 36px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: center;
    opacity: 0;
    color: #263238;
}

#back-top .gamba-circles i {
    font-size: 28px;
    top: 3px;
    left: 0;
    right: 0;
    position: absolute;
    color: #f0613a;
}

#back-top .gamba-circles .circle {
    top: 0;
    left: 0;
    border-color: #f0613a;
    mix-blend-mode: screen;
}

#back-top .gamba-circles.show-btn {
    visibility: visible;

    opacity: 1;
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin1 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: rotate(72deg);
        transform: rotate(72deg);
    }
    100% {
        -webkit-transform: rotate(-288deg);
        transform: rotate(-288deg);
    }
}

@keyframes spin2 {
    0% {
        -webkit-transform: rotate(72deg);
        transform: rotate(72deg);
    }
    100% {
        -webkit-transform: rotate(-288deg);
        transform: rotate(-288deg);
    }
}

@-webkit-keyframes spin3 {
    0% {
        -webkit-transform: rotate(-144deg);
        transform: rotate(-144deg);
    }
    100% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
}

@keyframes spin3 {
    0% {
        -webkit-transform: rotate(-144deg);
        transform: rotate(-144deg);
    }
    100% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
}

@-webkit-keyframes spin4 {
    0% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
    100% {
        -webkit-transform: rotate(-144deg);
        transform: rotate(-144deg);
    }
}

@keyframes spin4 {
    0% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
    100% {
        -webkit-transform: rotate(-144deg);
        transform: rotate(-144deg);
    }
}

.p-post > a {
    display: block;
    overflow: hidden;
    padding-top: 68%;
    position: relative;
}

.p-post > a img {
    transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    height: auto !important;
    border-radius: 5px;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
    outline: none;
}

/*
ol, ul, li {
  padding: 0;
  list-style: none;
  margin: 0; }*/

label {
    font-weight: normal;
}

input[type="text"], input[type="email"], input[type="password"] {
    padding-left: 12px;
    padding-right: 12px;
}

select {
    padding-left: 8px;
}

input[type="number"] {
    padding-left: 5px;
}

textarea {
    padding: 8px 12px 5px 12px;
}

input, textarea, select, button, a {
    outline: none;
}

button {
    border: none;
    background: none;
}

img {
    width:auto;
    height:auto;
    max-width: 100%;
    vertical-align: middle;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.relative {
    position: relative;
}

.static {
    position: static;
}

.absolute {
    position: absolute;
}

.text-justify {
    text-align: justify;
}

.clearfix:before, .clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.row-ibl {
    font-size: 0;
}

.row-ibl > [class^="col-"] {
    font-size: 14px;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.row-ibl:after {
    content: '';
    display: inline-block;
    width: 100%;
}

.row-ibl.mid > [class^="col-"] {
    vertical-align: middle;
}

.row-ibl.bot > [class^="col-"] {
    vertical-align: bottom;
}

.row-ibl > [class^="col-"].i-mid {
    vertical-align: middle;
}

.row-ibl > [class^="col-"].i-top {
    vertical-align: top;
}

.row-ibl > [class^="col-"].i-bot {
    vertical-align: bottom;
}

.col-xs-f20, .col-sm-f20, .col-md-f20, .col-lg-f20 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: bold;
}

@font-face {
    font-family: 'RobotoCondensed';
    src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
    src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'RobotoCondensed';
    src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
    font-weight: bold;
}

.col-xs-f20 {
    float: left;
    width: 20%;
}

@media (min-width: 768px) {
    .col-sm-f20 {
        float: left;
        width: 20%;
    }
}

@media (min-width: 992px) {
    .col-md-f20 {
        float: left;
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-lg-f20 {
        float: left;
        width: 20%;
    }
}

.pad-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.pad-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.pad-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.pad-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

.col-mar-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.col-mar-0 > div[class^="col-"] {
    padding-left: 0px;
    padding-right: 0px;
}

.col-mar-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.col-mar-5 > div[class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.col-mar-8 {
    margin-left: -8px;
    margin-right: -8px;
}

.col-mar-8 > div[class^="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.col-mar-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.col-mar-10 > div[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.delay02 {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay04 {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay06 {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.c-img {
    display: block;
    position: relative;
    padding-top: 100%;
}

.c-img img, .c-img .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.numbers .item .icon img, .ser-tab li .icon img, .partner img, .customer img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    width: 60px;
    height: 60px;
    margin: auto;
    object-fit: contain;
}

.hv-over {
    display: block;
    position: relative;
}

.hv-over:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hv-over:hover:after {
    background: rgba(255, 255, 255, 0.3);
}

.hv-scale {
    overflow: hidden;
    display: block;
}

.hv-scale img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hv-scale:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hv-light {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hv-light:before, .hv-light:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hv-light:before {
    right: 0;
    bottom: 0;
    background: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hv-light:after {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: 0.75s ease-in-out;
    -moz-transition: 0.75s ease-in-out;
    -ms-transition: 0.75s ease-in-out;
    -o-transition: 0.75s ease-in-out;
    transition: 0.75s ease-in-out;
    -webkit-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    -moz-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    -o-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    -ms-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.hv-light:hover:before {
    background: rgba(242, 211, 0, 0.2);
}

.hv-light:hover:after {
    -webkit-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -moz-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -o-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -ms-transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(2, 1.5, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.smooth {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media all and (max-width: 1199px) {
    .md-left {
        text-align: left;
    }

    .md-center {
        text-align: center;
    }

    .md-right {
        text-align: right;
    }
}

.m-nav .search-fr {
    margin: 10px;
}

@media all and (max-width: 991px) {
    body a.register_btn {
        width: 100%;
    }

    .c-table table tr td:last-child {
        width: 30%;
        text-align: center;
    }

    .sm-left {
        text-align: left;
    }

    .sm-center {
        text-align: center;
    }

    .sm-right {
        text-align: right;
    }
}

@media all and (max-width: 767px) {
    .xs-left {
        text-align: left;
    }

    .xs-center {
        text-align: center;
    }

    .xs-right {
        text-align: right;
    }

    .xs-pad-7 {
        margin: 0 -7px;
    }

    .xs-pad-7 > [class^="col-"] {
        padding: 0 7px;
    }

    .xs-pad-5 {
        margin: 0 -5px;
    }

    .xs-pad-5 > [class^="col-"] {
        padding: 0 5px;
    }
}

.table {
    display: table;
    margin: 0;
}

.table .line {
    display: table-row;
}

.table .cell {
    display: table-cell;
    vertical-align: middle;
}

.ic {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

body {
    font-size: 14px;
    font-family: "Roboto";
    line-height: 1.5;
    color: #333;
}
.s-description{
    background:#f3f3f3;
    padding:15px;
    font-weight:bold;
    color:#555;
    border-radius:10px;
    font-size:16px;
}
.s-content{
    padding-top:10px;
}
.s-content ol {
    list-style: decimal;
    margin-left: 15px;
    margin-bottom: 10px;
}

/*.s-content ul {
  list-style: initial;
  margin-left: 15px;
  margin-bottom: 10px; }*/
/*
.s-content li {
  list-style: inherit;
  margin-bottom: 5px; }*/

.s-content p {
    margin-bottom: 10px;
    line-height: 25px;
}

.s-content img {
    display: block;
    max-width: 100%;
    margin: 10px auto;
    width: auto !important;
    height: auto !important;
}

.s-content table, .s-content iframe {
    max-width: 100%;
}

.s-social .fb_iframe_widget, .s-social a.pinterest {
    display: inline-block;
    vertical-align: top;
    margin-top: -1px;
}

.slick-list {
    margin: 0 -15px;
}

.slick-list .slick-slide {
    margin: 0 15px;
}

.slick-arrow {
    cursor: pointer;
    z-index: 1;
    text-align: center;
    position: absolute;
}

.slick-dots {
    text-align: center;
}

.slick-dots button {
    display: none;
}

.slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border: solid 2px #666;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li.slick-active {
    background: #666;
}

.delay02 {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay04 {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay06 {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay08 {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.delay10 {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

.delay12 {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.dura5 {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -ms-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.dura15 {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.dura20 {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

.dura100 {
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 10s;
    -ms-animation-duration: 10s;
    -o-animation-duration: 10s;
    animation-duration: 10s;
}

.carousel {
    z-index: 0;
}

.carousel.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel.carousel-fade .carousel-inner .item, .carousel.carousel-fade .carousel-inner .active.left, .carousel.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel.carousel-fade .carousel-inner .active, .carousel.carousel-fade .carousel-inner .next.left, .carousel.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel.carousel-fade .carousel-inner .next, .carousel.carousel-fade .carousel-inner .prev, .carousel.carousel-fade .carousel-inner .active.left, .carousel.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.carousel .carousel-indicators {
    z-index: 1;
    line-height: 1;
}

.carousel .carousel-indicators li {
    vertical-align: middle;
}

.carousel .slider-arrow {
    cursor: pointer;
    z-index: 1;
}

header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

header .top {
    background: #363334;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 15px;
}

header .top .h-ctrl {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    margin-right: 25px;
    display: inline-block;
    vertical-align: middle;
}

header .top .h-ctrl i {
    font-size: 16px;
    margin-right: 6px;
    vertical-align: middle;
    margin-top: -3px;
}

header .top .h-link {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    line-height: 1;
    border-right: solid 1px #fff;
    padding-right: 13px;
    margin-right: 10px;
}

header .logo {
    display: inline-block;
    vertical-align: middle;
}

header .logo img {
    display: block;
    max-width: 150px;
    width: 100%;
    height: auto;
}

.search {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.search > button {
    font-size: 16px;
    color: #fff;
}

.search .ct {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    width: 300px;
    right: 0;
    z-index: 1;
    -webkit-box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.4);
    box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.4);
    display: none;
    margin-top: 9px;
    border-radius: 3px;
}

.header .search-fr {
    display: none !important;
}

.search-fr {
    position: relative;
}

.search-fr input {
    width: 100%;
    height: 38px;
    border: solid 1px #ccc;
    border-radius: 3px;
    color: #777;
    font-size: 13px;
}

.search-fr button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    color: #f0613b;
    font-size: 16px;
}

.header {
    padding: 15px 0;
}

.header .search-fr {
    display: none;
}

.main-nav > ul {
    font-size: 0;
}

.main-nav > ul > li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin-right: 35px;
}

.main-nav > ul > li:last-child {
    margin-right: 0;
}

.main-nav > ul > li > a {
    display: block;
    text-transform: uppercase;
    color: #263238;
    font-weight: 500;
    font-size: 15px;
}

.main-nav > ul > li:hover > a {
    color: #f0613b;
}

.main-nav li {
    position: relative;
    text-align: left;
}

.main-nav li ul {
    position: absolute;
    min-width: 220px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 1;
    margin-top: 10px;
    pointer-events: none;
    opacity: 0;
    padding-top: 5px;
}

.main-nav li ul ul {
    left: 100%;
    top: 0;
    padding-top: 0;
    padding-left: 5px;
}

.main-nav li ul a {
    white-space: nowrap;
    background: rgb(240 97 59 / 75%);
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    padding: 10px 15px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.main-nav li ul li:hover > a {
    background: #f0613b;
}

.main-nav li:hover > ul {
    margin-top: 0;
    pointer-events: all;
    opacity: 1;
}

#slider .img img {
    display: block;
    width: 100%;
    height: auto;
}

#slider .carousel-indicators li {
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0 4px;
}

#slider .carousel-indicators li.active {
    background: #f0613b;
    margin: 0 4px;
    border-color: #f0613b;
}

#slider .slider-arrow {
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: -30px;
}

#slider .slider-arrow img {
    display: block;
    height: 60px;
}

#slider .slider-arrow.prev {
    left: 15px;
}

#slider .slider-arrow.next {
    right: 15px;
}

#slider .caption {
    position: absolute;
    left: 43%;
    top: 130px;
    color: #fff;
}

#slider .caption .subs {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 16px;
}

#slider .caption .subs span {
    display: inline-block;
    vertical-align: middle;
    border-bottom: solid 1px #fff;
    padding-right: 10px;
    padding-bottom: 10px;
}

#slider .caption .title {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.288;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    margin-bottom: 20px;
}

#slider .caption p {
    font-size: 18px;
    font-weight: 300;
}

.md-head {
    position: relative;
    padding-bottom: 17px;
}

.md-head .title {
    text-transform: uppercase;
    font-weight: 500;
    color: #263238;
    font-size: 36px;
    margin-bottom: 6px;
}

.md-head .title strong {
    font-weight: bold;
    color: #f0613b;
}

.md-head p {
    text-transform: uppercase;
    font-size: 16px;
    color: #455a64;
    margin-bottom: 0;
}

.md-head:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 1px;
    background: #f0613b;
}

.md-head:after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f0613b;
    position: absolute;
    left: 14px;
    bottom: 0;
    margin-bottom: -6px;
}

.md-head.text-center:before {
    left: 50%;
    margin-left: -40px;
}

.md-head.text-center:after {
    left: 50%;
    margin-left: -7px;
}

.h-about .md-head {
    margin-bottom: 50px;
}

.h-about .s-content {
    color: #607d8b;
    line-height: 24px;
}

.h-about .s-content p {
    margin-bottom: 6px;
}

.h-about .more {
    display: inline-block;
    vertical-align: middle;
    background: #f0613b;
    color: #fff;
    text-transform: uppercase;
    height: 42px;
    line-height: 44px;
    padding: 0 40px 0 32px;
    border-radius: 45px;
    margin-top: 20px;
}

.h-about .more:hover {
    -webkit-box-shadow: 0 2px 0 #c2c2c2;
    box-shadow: 0 2px 0 #c2c2c2;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.numbers {
    position: relative;
    padding-bottom: 15px;
    padding-top: 65px;
    background: linear-gradient(183deg,transparent, #efefef, transparent);
}

.numbers .item {
    text-align: center;
    margin-bottom: 36px;
}

.numbers .item .icon {
    display: block;
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 22px auto;
}

.numbers .item .icon i {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../images/circle.png") no-repeat center;
    background-size: 100% 100%;
}

.numbers .item .num {
    font-size: 30px;
    font-weight: bold;
    color: #363334;
    line-height: 1.3;
    margin-bottom: 1px;
}

.numbers .item span {
    display: block;
    font-size: 16px;
    color: #363334;
    font-weight: 300;
}

.numbers .item.v2 .icon i {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.numbers .item.v3 .icon i {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.numbers .item.v4 .icon i {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.numbers .item.act .icon i {
    -webkit-animation: rotate 2.5s linear;
    -moz-animation: rotate 2.5s linear;
    -ms-animation: rotate 2.5s linear;
    -o-animation: rotate 2.5s linear;
    animation: rotate 2.5s linear;
}

.numbers:before, .numbers:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 19px;
    background: url("../images/shadow.png") no-repeat center;
    background-size: contain;
    z-index: -1;
}

.numbers:before {
    left: -9px;
}

.numbers:after {
    right: -9px;
}

.h-services {
    background-image: url("../images/bg2-min.jpg");
    padding-top: 50px;
}

.h-services .md-head {
    margin-bottom: 35px;
}

.h-services .break, .break {
    position: relative;
    background-image: url("../images/shadow2.png");
    height: 7px;
    background-position: center top -7px;
    background-repeat: no-repeat;
    margin-top: 32px;
    pointer-events: none;
    margin-bottom: 36px;
}

.ser-tab {
    text-align: center;
    max-width: 750px;
    font-size: 0;
    margin: auto;
    position: relative;
    z-index: 1;
}

.ser-tab li {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 33.333333333333%;
    text-align: center;
    position: relative;
}

.ser-tab li .icon {
    display: block;
    height: 60px;
    position: relative;
    margin: 0 auto 8px auto;
}

.ser-tab li .title {
    direction: block;
    color: #263238;
    line-height: 44px;
    height: 44px;
    position: relative;
}

.ser-tab li .title span {
    display: inline-block;
    vertical-align: middle;
    line-height: 22px;
    display: inline-block;
    vertical-align: bottom;
    max-height: 44px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
}

.ser-tab li .title:after {
    content: '';
    height: 2px;
    width: 80px;
    background: #f0613b;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -40px;
    opacity: 0;
}

.ser-tab li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f0613b;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    bottom: -75px;
    opacity: 0;
}

.ser-tab li.active:after {
    opacity: 1;
}

.ser-tab li.active .title:after {
    opacity: 1;
}

.ser-info {
    background: #fff;
    padding: 24px 30px 25px 30px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.ser-info .i-title {
    font-size: 22px;
    font-weight: 300;
    color: #263238;
    margin-top: 10px;
    margin-bottom: 9px;
}

.ser-info .s-content {
    font-size: 14px;
    line-height: 22px;
    color: #607d8b;
    margin-bottom: 27px;
}

.ser-info .more {
    display: inline-block;
    vertical-align: middle;
    background: #f0613b;
    border-radius: 45px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 27px;
    margin-bottom: 40px;
}

.ser-info .more i {
    margin-left: 4px;
}

.ser-info .line {
    color: #303030;
    padding-left: 22px;
    position: relative;
    margin-bottom: 15px;
}

.ser-info .line:before {
    font-family: "FontAwesome";
    content: "";
    color: #f0613b;
    position: absolute;
    left: 0;
}

.ser-info .img {
    position: relative;
    z-index: 1;
}

.ser-tab-ct .tab-pane {
    position: relative;
    padding-bottom: 50px;
}

.ser-tab-ct .tab-pane .p-img {
    position: absolute;
    bottom: 0;
    right: 50px;
}

.h-posts {
    padding-bottom: 2px;
    margin-bottom: 30px;
}

.h-posts .md-head {
    margin-bottom: 30px;
    margin-top: 30px;
}

.h-posts .i-title {
    text-transform: uppercase;
    font-size: 24px;
    color: #455a64;
    line-height: 1;
    font-weight: normal;
    margin-top: 3px;
    margin-bottom: 15px;
}

.big-post .img {
    display: block;
    margin-bottom: 0;
}

.big-post .img img {
    display: block;
    width: 100%;
}

.big-post .title {
    text-transform: uppercase;
    /*color: #f0613b;*/
    color: #263238;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    margin-top: 10px;
}

.big-post .title a:hover {
    /*color: #333; */
    color: #f0613b;
}

.big-post time {
    font-size: 12px;
    color: #90a4ae;
    display: block;
    margin-bottom: 10px;
}

.big-post time i {
    color: #f0613b;
    margin-right: 2px;
}

.big-post p {
    margin-bottom: 0;
    color: #607d8b;
    line-height: 22px;
}

.sm-post {
    background: #f5f5f5;
    padding: 15px;
    border-bottom: solid 1px #dcdcdc;
}

.sm-post:last-child {
    border-bottom: none;
}

.sm-post .title {
    font-size: 16px;
    color: #263238;
    font-weight: 500;
    margin-bottom: 3px;
}

.sm-post .title a:hover {
    color: #f0613b;
}

.sm-post time {
    font-size: 12px;
    color: #90a4ae;
    display: block;
    margin-bottom: 8px;
}

.sm-post time i {
    color: #f0613b;
    margin-right: 2px;
}

.sm-post p {
    margin-bottom: 0;
    color: #607d8b;
    line-height: 22px;
}

.event {
    display: block;
    margin-bottom: 30px;
}

.event img {
    display: block;
    width: 100%;
    height: auto;
}

.h-testimonial {
    background-image: url("../images/bg3-min.jpg");
    padding-bottom: 50px;
}

.h-testimonial .md-head {
    margin-bottom: 30px;
    margin-top: 30px;
}

.testi-cas {
    background-image: url("../images/bg4.jpg");
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    padding: 45px 30px 50px 30px;
    border-radius: 10px;
}

.testi-cas .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -48px;
}

.testi-cas .slick-dots li {
    border-color: #f0613b;
    width: 13px;
    height: 13px;
    margin: 0 3px;
}

.testi-cas .slick-dots li.slick-active {
    background: #f0613b;
}

.testi {
    text-align: center;
    max-width: 285px;
    margin: 0 auto;
}

.testi img {
    width: 121px;
    height: 121px;
    display: block;
    border-radius: 50%;
    margin: 0 auto 25px auto;
}

.testi .name {
    font-weight: 300;
    font-size: 18px;
    color: #263238;
    margin-bottom: 8px;
}

.testi .name strong {
    color: #f0613b;
}

.testi p {
    color: #607d8b;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 13px;
}

.testi p:after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: #f0613b;
    margin: 11px auto auto;
    max-width: 100%;
}

.testi span {
    color: #90a4ae;
}

.h-partner .md-head {
    margin-top: 30px;
    margin-bottom: 30px;
}

.partner {
    display: block;
    height: 100px;
    position: relative;
    margin-bottom: 15px;
}

.partner img {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.partner:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.footer {
    color: #fff;
    /*padding-top: 25px;*/
    padding-bottom: 42px;
    background: #363334;
    border-bottom: 1px solid #4a4849;
}

.footer .f-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    margin-top: 35px;
    margin-bottom: 23px;
}

.footer .f-title:after {
    content: '';
    display: block;
    height: 2px;
    background: #fff;
    width: 40px;
    margin-top: 5px;
}

.footer .f-line {
    position: relative;
    padding-left: 24px;
    color: #e6e6e6;
    line-height: 24px;
    margin-bottom: 4px;
}

.footer .f-line i {
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    text-align: center;
}

.footer li {
    color: #e6e6e6;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.footer li:before {
    font-family: "FontAwesome";
    content: "";
    position: absolute;
    left: 0;
}

.footer li a:hover {
    color: #fff;
}

.footer p {
    color: #e6e6e6;
    font-weight: 300;
    line-height: 22px;
}

.footer .social a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.footer .social a img {
    display: block;
    height: 33px;
    filter: grayscale(1);
}

.p-wrapper .container {
    max-width: 960px;
}

.subs-form {
    position: relative;
}

.subs-form input {
    color: #263238;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 40px;
    font-size: 12px;
    padding-left: 18px;
}

.subs-form input::-webkit-input-placeholder {
    color: #90a4ae;
}

.subs-form input:-moz-placeholder {
    color: #90a4ae;
}

.subs-form input::-moz-placeholder {
    color: #90a4ae;
}

.subs-form input:-ms-input-placeholder {
    color: #90a4ae;
}

.subs-form button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    color: #f0613b;
    height: 40px;
}

.foot {
    background: #363334;
    color: #a0a0a0;
    line-height: 24px;
    padding: 3px 0;
    font-size: 13px;
}

.foot a:hover {
    color: #f0613b;
}

.foot .f-nav li {
    display: inline-block;
    vertical-align: top;
    margin-right: 18px;
}

.foot .f-nav li:last-child {
    margin-right: 0;
}

@media all and (max-width: 1199px) {
    .main-nav > ul > li {
        margin-right: 18px;
    }

    #slider .caption {
        left: 40%;
        top: 50px;
    }

    .ser-tab-ct .tab-pane .p-img {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .menu-btn {
        display: inline-block;
        vertical-align: middle;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        position: absolute;
        z-index: 1;
    }

    .menu-btn i {
        display: block;
        margin: auto;
        border-top: solid 2px #f0613b;
        width: 17px;
        border-bottom: double 7px #f0613b;
        height: 12px;
    }

    .menu-btn.act i {
        width: auto;
        height: auto;
        border: none;
    }

    .menu-btn.act i:after, .menu-btn.act i:before {
        content: '';
        display: block;
        margin: auto;
        width: 17px;
        border-bottom: solid 2px #f0613b;
    }

    .menu-btn.act i:after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -2px;
    }

    .menu-btn.act i:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .menu-btn.v2 {
        background: #f0613b;
    }

    .menu-btn.v2 i {
        border-color: #fff;
    }

    .menu-btn.v2.act i:after, .menu-btn.v2.act i:before {
        border-color: #fff;
    }

    .main-nav {
        display: none;
    }

    .m-nav {
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background: #f9f9f9;
        -webkit-box-shadow: 0 0 8px 0 rgba(102, 102, 102, 0.5);
        box-shadow: 0 0 8px 0 rgba(102, 102, 102, 0.5);
        position: fixed;
        z-index: 9;
        top: 0;
        bottom: 0;
        width: 290px;
        right: -290px;
    }

    .m-nav.act {
        z-index: 10000000000;
        right: 0;
    }

    .m-nav .nav-ct {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 15px;
    }

    .m-nav .nav-close {
        top: 9px;
        right: 10px;
        background: none;
    }

    .m-nav .main-nav {
        display: block;
        margin: 0;
        padding: 0;
    }

    .m-nav .main-nav > ul > li {
        display: block;
        margin: 0;
    }

    .m-nav .main-nav > ul > li > a {
        border: none;
        border-top: solid 1px #e6e6e6;
        line-height: 20px;
        padding: 10px 15px;
        color: #f0613b;
    }

    .m-nav .main-nav > ul > li:hover > a {
        color: #fff;
        background: #f0613b;
    }

    .m-nav .main-nav li {
        position: relative;
    }

    .m-nav .main-nav li ul {
        display: none;
        width: auto;
        position: static;
        background: rgba(0, 0, 0, 0.03);
        border: none;
        margin: 0px;
        opacity: 1;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
        pointer-events: all;
        padding: 0;
    }

    .m-nav .main-nav li ul:after {
        content: none;
        display: none;
    }

    .m-nav .main-nav li ul a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        background: none;
        color: #f0613b;
        border: none;
        border-top: solid 1px #e6e6e6;
        padding: 10px 15px 10px 30px;
    }

    .m-nav .main-nav li ul li:hover > a {
        background: #f0613b;
        color: #fff;
    }

    .m-nav .main-nav li ul ul a {
        padding-left: 45px;
    }

    .m-nav .main-nav li .nav-drop {
        display: block;
        font-style: normal;
        height: 40px;
        width: 40px;
        text-align: center;
        padding-top: 2px;
        font-size: 16px;
        line-height: 39px;
        background: rgba(0, 0, 0, 0.03);
        color: #f0613b;
        float: right;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .m-nav .main-nav li .nav-drop:after {
        font-family: "FontAwesome";
        content: "";
    }

    .m-nav .main-nav li .nav-drop.act:after {
        content: "\f0d8";
    }

    .m-nav .main-nav li:hover > .nav-drop {
        color: #fff;
    }

    .m-nav .main-nav li:hover > ul {
        margin-top: 0;
        pointer-events: all;
        opacity: 1;
    }

    .m-nav .h-ctrl {
        display: block;
        margin-left: 15px;
        margin-bottom: 8px;
        color: #f0613b;
    }

    .m-nav .h-ctrl i {
        width: 20px;
    }

    .m-nav .h-link {
        display: block;
        margin-left: 15px;
        margin-bottom: 20px;
        color: #f0613b;
    }

    .sb-nav {
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background: #f9f9f9;
        -webkit-box-shadow: 0 0 8px 0 rgba(102, 102, 102, 0.5);
        box-shadow: 0 0 8px 0 rgba(102, 102, 102, 0.5);
        position: fixed;
        z-index: 9;
        top: 0;
        bottom: 0;
        width: 290px;
        right: -290px;
    }

    .sb-nav.act {
        right: 0;
    }

    .sb-nav .nav-ct {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 15px;
    }

    .sb-nav .sb-close {
        top: 9px;
        right: 10px;
        background: none;
    }

    header {
        position: relative;
        padding: 10px 0;
    }

    header .logo img {
        max-height: 60px;
    }

    header .nav-open, header .sb-open {
        position: absolute;
        top: 50%;
        margin-top: -20px;
    }

    header .nav-open {
        right: 10px;
    }

    header .sb-open {
        left: 10px;
    }

    .header {
        padding: 0;
    }

    .header .search-fr {
        display: block;
        max-width: 720px;
        margin: 10px auto auto;
    }

    .search {
        display: block;
    }

    .search > button {
        display: none;
    }

    .search .ct {
        margin-top: 10px;
        display: block;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        position: static;
        width: auto;
    }

    #slider .img img {
        min-height: 215px;
    }

    #slider .caption {
        left: 10%;
        top: 40px;
    }

    #slider .caption .subs {
        font-size: 14px;
    }

    #slider .caption .title {
        font-size: 38px;
    }

    #slider .caption p {
        font-size: 15px;
    }

    .h-about {
        margin-top: 40px;
    }

    .numbers {
        margin-top: 30px;
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .ser-info .img {
        margin-top: 20px;
    }

    .h-posts .i-title {
        margin-top: 30px;
    }
}

@media all and (max-width: 767px) {
    #slider .caption {
        left: 5%;
        right: 5%;
        top: 20px;
    }

    #slider .caption .subs {
        font-size: 14px;
    }

    #slider .caption .title {
        font-size: 22px;
        margin-bottom: 0px;
    }

    #slider .caption .title br {
        display: none;
    }

    #slider .caption p {
        display: none;
    }

    .md-head .title {
        font-size: 24px;
    }

    .md-head p {
        font-size: 15px;
    }

    .ser-tab li .title {
        font-size: 13px;
        line-height: 45px;
        height: 45px;
        position: relative;
    }

    .ser-tab li .title span {
        line-height: 15px;
        max-height: 45px;
    }

    .ser-tab li .title:after {
        width: 70px;
        margin-left: -38px;
    }

    .ser-info {
        padding: 15px;
    }

    .ser-info .i-title {
        font-size: 20px;
    }

    .ser-info .more {
        padding: 10px 15px;
    }

    .big-post {
        max-width: 470px;
        margin: 0 auto 30px auto;
    }
}

@media all and (max-width: 480px) {
    .partner {
        height: 55px;
    }
}

@media all and (min-width: 992px) {
    header.fixed {
        position: fixed;
        background: rgba(255, 255, 255, 0.9);
        left: 0;
        right: 0;
        top: 0;
        z-index: 9;
        -webkit-box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.5);
        box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.5);
    }

    header.fixed .top {
        display: none;
    }

    header.fixed .header {
        padding: 10px 0;
    }
}

@media all and (max-width: 991px) {
    header.fixed {
        position: fixed;
        background: rgba(255, 255, 255, 0.9);
        left: 0;
        right: 0;
        top: 0;
        z-index: 9;
        -webkit-box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.5);
        box-shadow: 0 0 5px 0 rgba(102, 102, 102, 0.5);
    }

    header.fixed .search, header.fixed .search-fr {
        display: none;
    }

    header.fixed .nav-open {
        margin-top: -20px;
    }
}

@font-face {
    font-family: 'Roboto-BoldCondensed';
    src: url("../fonts/Roboto-BoldCondensed.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto-Condensed';
    src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}

.p-banner {
    padding-top: 85px;
    padding-bottom: 90px;
}

.p-banner .title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    color: #f0613b;
    line-height: 1;
}

.p-banner .title span {
    display: block;
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
}

@media all and (max-width: 767px) {
    .p-banner {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .p-banner .title {
        font-size: 24px;
    }

    .p-banner .title span {
        font-size: 18px;
    }
}

.p-banner {
    padding-top: 85px;
    padding-bottom: 90px;
}

.p-banner .title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    color: #f0613b;
    line-height: 1;
}

.p-banner .title span {
    display: block;
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
}

@media all and (max-width: 767px) {
    .p-banner {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .p-banner .title {
        font-size: 24px;
    }

    .p-banner .title span {
        font-size: 18px;
    }
}

.cate-service {
    /*  background-image: url("../images/bg2.png"); */
}

.cate-service .add {
    text-align: center;
    max-width: 830px;
    margin: 28px auto 28px auto;
    line-height: 2;
    font-style: italic;
    height: auto !important;
    overflow: unset !important;
    /*height: 56px;*/
    /*overflow: hidden;*/
    color: #263238;
}

.cate-service .c-ser {
    text-align: center;
}

.cate-service .ser-icon {
    text-align: center;
    margin-top: 55px;
}

.ser-icon > ul {
    margin-bottom: 32px;
}

.ser-icon > ul > li {
    display: inline-block;
    margin: 0 75px;
}

.ser-icon > ul > li > a {
    display: block;
    margin-top: 30px;
    position: relative;
    color: #263238;
}

.ser-icon > ul > li > a:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #f0613b;
    bottom: -10px;
    left: 50%;
    margin-left: -40px;
    opacity: 0;
}

.ser-icon > ul > li > a:hover:after {
    opacity: 1;
}

.cate-table {
    /*background-image: url("../images/bg1.png"); */
}

.b-reak {
    position: relative;
    background-image: url(../images/shadow2.png);
    height: 7px;
    background-position: center top -7px;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-bottom: 70px;
}

.c-table trong {
    font-weight: bold;
    color: #f0613b;
}

.not_found_search {
    padding: 5px 50px;
    margin-bottom: 24px;
}

.c-table .name-t {
    background: #fff;
    padding: 10px 25px;
    margin-bottom: 24px;
    position: relative;
    font-size: 18px;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    color: #455a64;
}

.c-table .name-t:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 5px;
    background: #f0613b;
    top: 0;
    left: 0;
}

.c-table table {
    width: 100%;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 75px;
}

.c-table table tr {
    background: #f5f5f5;
}

.c-table table tr:nth-child(2n) td {
    background: #fff;
}

.c-table table tr td {
    padding: 13px 50px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #455a64;
}

.c-table table tr td .color:hover {
    text-decoration: underline;
    color: #f0613b;
}

.c-table table tr td:first-child {
    width: 500px;
}

.cate-md h2 {
    background: #f0613b;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-bottom: solid 3px #005e7b;
    padding: 17px 0;
}

.cate-md ul > li > a {
    background: #ececec;
    border-top: solid 1px #d0d0d0;
    display: block;
    padding: 17px 0;
    text-transform: uppercase;
    padding-left: 15px;
    position: relative;
}

.cate-md ul > li > a:after {
    font-family: FontAwesome;
    content: "\f101";
    position: absolute;
    top: 17px;
    right: 10px;
    opacity: 0;
    color: #f0613b;
}

.cate-md ul > li > a:hover:after {
    opacity: 1;
}

.cate-md ul > li > a:hover {
    color: #f0613b;
}

.cate-banner {
    margin-top: 30px;
}

.cate-banner img {
    height: 100%;
    display: block;
    margin: auto;
}

.content-img {
    margin-bottom: 35px;
}

.content-img img {
    display: block;
}

.cate-content p {
    line-height: 2.3;
}

.img-mh {
    text-align: center;
    margin-top: 65px;
    margin-bottom: 85px;
}

.c-content {
    margin-bottom: 38px;
}

.content-stt {
    border: solid 1px #cbcecf;
    text-transform: uppercase;
    text-align: center;
    width: 80px;
    float: left;
    padding-bottom: 28px;
}

.content-stt h2 {
    font-size: 18px;
    margin-top: 20px;
}

.content-stt .c-cnt {
    font-family: 'Roboto-BoldCondensed';
    font-size: 58px;
    color: #00b8f0;
    position: relative;
    line-height: 1;
}

.content-stt .c-cnt:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    margin-left: 15px;
    width: 45px;
    height: 3px;
    background: #00b8f0;
}

.content-nd {
    margin-left: 100px;
}

.content-nd h2 {
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

.content-nd h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #00b8f0;
}

.cate-content .nd {
    line-height: 2.3;
    height: 128px;
    overflow: hidden;
}

.cate-form .form-title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: -8px;
    color: #f0613b;
}

.form-title img {
    margin-right: 10px;
}

.cate-form .p {
    color: #f15922;
    margin: 10px 0 35px 0;
    margin-left: 35px;
}

.cate-form .name-form {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: solid 1px #dcdcdc;
    padding-bottom: 15px;
}

.c-form {
    margin-bottom: 20px;
    padding-left: 170px;
    position: relative;
}

.cate-form .form-text {
    margin-top: 35px;
    margin-bottom: 55px;
}

.cate-form .form-text p {
    position: absolute;
    left: 0;
    padding-right: 10px;
    width: 170px;
    display: inline-block;
    text-align: right;
    margin-bottom: 0;
}

.cate-form .form-text input, .cate-form form textarea {
    height: 30px;
    width: 80%;
    border-radius: 7px;
    border: solid 1px #cbcdce;
}

.cate-form form textarea {
    height: 100px;
}

.c-gc {
    margin-left: 0;
    margin-right: 100px;
}

.c-form .mbv {
    width: 200px;
}

.ca-e {
    margin-top: 0;
}

.d-detail {
    margin-top: 90px;
}

.detail-ct h2 {
    background: #f4f4f4;
    color: #f0613b;
    border-bottom: solid 1px #dcdcdc;
    border-radius: 5px 0;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
}

.detail-ct {
    border: solid 1px #dcdcdc;
    border-radius: 5px 5px 0 0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.detail-add {
    line-height: 2;
    margin-top: 15px;
    margin-left: 20px;
}

.detail-ct ul {
    margin-left: 35px;
}

.detail-ct .de {
    padding-top: 20px;
}

.detail-ct ul li {
    list-style: initial;
    line-height: 2;
}

.detail-dk {
    border: solid 1px #dcdcdc;
    text-align: center;
    padding: 20px 0;
    border-radius: 5px;
}

.detail-dk a {
    border: solid 1px #dcdcdc;
    padding: 6px 30px;
    border-radius: 5px;
}

.detail-dk .dk {
    background: #f0613b;
}

.d-right {
    margin-top: 30px;
}

.d-right p {
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 2;
    margin-top: 15px;
}

.deatil-title {
    text-align: center;
    text-transform: uppercase;
    margin-top: 45px;
}

.deatil-title h3 {
    font-size: 36px;
    font-weight: 300;
    margin: 0;
}

.deatil-title trong {
    font-weight: bold;
    color: #f0613b;
}

.dtaill-table {
    margin-top: 45px;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .cate-form {
        margin-top: 50px;
    }

    .cate-form form textarea {
        height: 100px;
    }

    .c-table table tr td {
        padding: 12px 30px;
    }

    .cate-content {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cate-service .add {
        margin: 10px auto 28px auto;
    }

    .ser-icon > ul > li {
        display: inline-block;
        margin: 0 50px;
    }

    .c-table table tr td {
        padding: 12px 5px 12px 8px;
        font-size: 13px;
    }

    .c-table table tr td:first-child {
        width: auto;
    }

    .deatil-title h3 {
        font-size: 26px;
    }
}

@media (max-width: 540px) {
    .cate-service .ser-icon {
        margin-top: 30px;
    }

    .ser-icon > ul > li {
        margin: 20px 10px;
    }

    .ser-icon > ul > li > a {
        margin-top: 15px;
    }

    .c-table .name-t {
        padding: 11px 20px;
    }

    .c-form {
        position: initial;
        padding-left: 0;
    }

    .cate-form .form-text p {
        position: initial;
        left: initial;
        padding-right: 0;
        width: initial;
        display: block;
        text-align: initial;
        margin-bottom: 0;
    }
}

.md-col {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 399px) {
    .detail-dk a {
        padding: 6px 10px;
    }
}

.p-wrapper {
    /*background: url("../images/bg1.png");*/
    background: white;
    padding-top: 75px;
    position: relative;
    padding-bottom: 37px;
}

/*  .p-wrapper:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    content: '';
    background-image: url("../images/shadow2.png");
    height: 7px;
    background-position: center top -7px;
    background-repeat: no-repeat;
    pointer-events: none; }*/
.p-wrapper .col-left {
    float: left;
    width: 310px;
}

.p-wrapper .col-right {
    float: right;
    width: 810px;
}

.sidebar {
    margin-bottom: 30px;
}

.sb-list .title {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 55px;
    font-weight: 500;
    border-bottom: solid 3px #005e7b;
    border-radius: 2px 2px 0 0;
    background: #f0613b;
}

.sb-list ul {
    background: #ececec;
    padding: 5px;
    border-radius: 0 0 2px 2px;
}

.sb-list ul a {
    display: block;
    text-transform: uppercase;
    color: #666666;
    border-bottom: solid 1px #d0d0d0;
    padding: 19px 15px;
}

.sb-list ul a:after {
    font-family: "FontAwesome";
    content: "";
    float: right;
    margin-right: -4px;
    color: #f0613b;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -ms-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    opacity: 0;
}

.sb-list ul a:hover {
    color: #f0613b;
}

.sb-list ul a:hover:after {
    opacity: 1;
}

.sb-list ul li:last-child > a {
    border-bottom: none;
}

.single .ct {
    line-height: 30px;
    color: #607d8b;
    margin-top: 30px;
    margin-bottom: 64px;
}

.steps {
    margin-top: 84px;
}

.step {
    position: relative;
    margin-bottom: 40px;
}

.step .num {
    float: left;
    left: 0;
    width: 85px;
    margin-top: 6px;
    border: solid 2px #cbcecf;
    text-align: center;
    padding-top: 21px;
    padding-bottom: 24px;
}

.step .num span {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: #455a63;
    line-height: 1.35;
}

.step .num strong {
    color: #f0613b;
    font-size: 58px;
    font-family: "Roboto-BoldCondensed";
    line-height: 1;
    display: block;
}

.step .num strong:after {
    content: '';
    display: block;
    height: 2px;
    background: #f0613b;
    width: 46px;
    max-width: 100%;
    margin: 6px auto 0 auto;
}

.step .des {
    margin-left: 108px;
}

.step .title {
    font-size: 18px;
    text-transform: uppercase;
    color: #455a63;
    font-weight: bold;
    margin-bottom: 10px;
}

.step .title:hover {
    color: #f0613b;
}

.step .title:after {
    content: '';
    display: block;
    height: 3px;
    width: 27px;
    background: #f0613b;
    margin-top: 11px;
}

.step p {
    color: #5f7c8a;
    line-height: 30px;
    margin-bottom: 0;
    min-height: 120px;
}

.col-form .title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f0613b;
    margin-bottom: 8px;
    margin-top: -10px;
}

.col-form .title i {
    color: #f15922;
    margin-left: 4px;
}

.col-form .required {
    color: #f15922;
    margin-left: 30px;
}

.col-form .fr-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #455a64;
    border-bottom: solid 1px #dcdcdc;
    padding-bottom: 13px;
    margin-top: 32px;
    margin-bottom: 38px;
}

.col-form .line {
    position: relative;
    padding-left: 180px;
    margin-right: 70px;
    margin-bottom: 21px;
}

.col-form .line + .fr-title {
    margin-top: 52px;
}

.col-form .line span {
    position: absolute;
    left: 0;
    width: 162px;
    text-align: right;
    color: #455a64;
    line-height: 24px;
    top: 3px;
}

.col-form .line input[type="text"] {
    border: solid 1px #dcdcdc;
    width: 100%;
    height: 30px;
    font-size: 12px;
    border-radius: 4px;
    font-style: italic;
}

.col-form .line input[type="text"]::-webkit-input-placeholder {
    color: #b5c1c7;
}

.col-form .line input[type="text"]:-moz-placeholder {
    color: #b5c1c7;
}

.col-form .line input[type="text"]::-moz-placeholder {
    color: #b5c1c7;
}

.col-form .line input[type="text"]:-ms-input-placeholder {
    color: #b5c1c7;
}

.col-form .line input[type="text"].small {
    width: 180px;
}

.col-form .line textarea {
    display: block;
    resize: none;
    height: 80px;
    border: solid 1px #dcdcdc;
    width: 100%;
    border-radius: 4px;
    font-size: 12px;
    font-style: italic;
}

.col-form .line textarea::-webkit-input-placeholder {
    color: #b5c1c7;
}

.col-form .line textarea:-moz-placeholder {
    color: #b5c1c7;
}

.col-form .line textarea::-moz-placeholder {
    color: #b5c1c7;
}

.col-form .line textarea:-ms-input-placeholder {
    color: #b5c1c7;
}

.col-form .line label {
    cursor: pointer;
    color: #788f9a;
    margin-right: 10px;
}

.col-form .line label input {
    margin-top: -1px;
    opacity: 0.7;
    margin-right: 2px;
    outline: none;
}

.col-form .line p {
    font-size: 12px;
    font-style: italic;
    line-height: 2;
    color: #455a64;
    margin-top: 18px;
    margin-bottom: 20px;
}

.col-form .line button {
    border: solid 1px #cccfd0;
    height: 30px;
    border-radius: 4px;
    padding: 0 16px;
    color: #fff;
    background: #90a4ae;
}

.col-form .line button.v2 {
    background: #f0613b;
}

.col-form .line button:hover {
    background: #009ac8;
}

.p-banner2 {
    padding-top: 76px;
    padding-bottom: 95px;
    margin-bottom: 90px;
}

.p-banner2 .title {
    text-transform: uppercase;
    font-size: 46px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
}

.p-banner2 .title span {
    color: #f0613b;
}

.p-banner2 p {
    font-size: 19px;
    color: #afc5d0;
    font-family: "Roboto-Condensed";
    margin-bottom: 0;
    margin-top: 3px;
}

.text-box {
    margin-bottom: 30px;
}

.text-box .title {
    background: #f4f4f4;
    color: #f0613b;
    border: solid 1px #dcdcdc;
    border-radius: 5px 5px 0 0;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
}

.text-box .ct {
    line-height: 30px;
    color: #455a64;
    border: solid 1px #dcdcdc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    padding: 13px 25px 19px 25px;
}

.text-box .ct li:before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background: #455a64;
    margin-right: 8px;
}

.ctrl-box {
    border: solid 1px #dcdcdc;
    margin-bottom: 30px;
    border-radius: 3px;
    padding: 14px 5px;
    text-align: center;
}

.ctrl-box a {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    border: solid 1px #dcdcdc;
    padding: 0 37px;
    color: #455a64;
}

.ctrl-box a.v2 {
    background: #f0613b;
    border-color: #f0613b;
    color: #fff;
}

.ctrl-box a:hover {
    background: #009ac8;
    color: #fff;
    border-color: #009ac8;
}

@media (max-width: 1199px) {
    .p-wrapper .col-left {
        width: 250px;
    }

    .p-wrapper .col-right {
        width: 670px;
    }
}

@media (max-width: 991px) {
    .p-wrapper .col-left {
        float: none;
        width: auto;
    }

    .p-wrapper .col-right {
        float: none;
        width: auto;
    }

    .sidebar:first-child {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .p-banner2 {
        padding-top: 46px;
        padding-bottom: 55px;
    }

    .col-form .line {
        margin-right: 0;
        padding-left: 0px;
    }

    .col-form .line span {
        width: auto;
        display: block;
        margin-bottom: 4px;
        position: static;
        text-align: left;
    }

    .col-form .line span br {
        display: none;
    }
}

.ppppppppp {
    z-index: 99999999999999;
}

.ic-bars {
    width: 16px;
    height: 11px;
    background-image: url("../images/ic-bars.png");
}

@media all and (min-width: 992px) {
    .main-nav > ul > li {
        margin-right: 33px;
    }

    .main-nav > ul > li:hover .ic-bars {
        background-image: url("../images/ic-bars.png");
    }

    .main-nav > ul > li:hover > ul.v2 {
        margin-top: 14px;
        visibility: visible;
    }

    .main-nav > ul > li:hover > a .ic-bars:after, .main-nav > ul > li:hover > a .ic-bars:before {
        opacity: 1;
        visibility: visible;
    }

    .main-nav .ic-bars {
        margin-top: -2px;
        position: relative;
        background-image: url("../images/ic-bars2.png");
        z-index: 2;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .main-nav .ic-bars:after, .main-nav .ic-bars:before {
        content: '';
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        position: absolute;
        bottom: -17px;
        left: 2px;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav .ic-bars:after {
        border-bottom: 6px solid #fff;
        margin-bottom: -2px;
    }

    .main-nav .ic-bars:before {
        border-bottom: 6px solid #eee;
    }

    .main-nav ul.v2 {
        min-width: 650px;
        background: #fff;
        right: -8px;
        -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 7px 0 rgb(0 0 0 / 18%);
        padding: 15px;
        border-radius: 7px;
        margin-top: 24px;
        visibility: hidden;
    }

    .main-nav ul.v2:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 26px;
    }

    .main-nav ul.v2:after {
        content: '';
    }

    .main-nav ul.v2 > li {
        display: inline-block;
        margin-right: 5px;
    }

    .main-nav ul.v2 > li:last-child {
        margin-right: 0;
    }

    .main-nav ul.v2 ul {
        display: block;
        position: static;
        margin: 0;
        opacity: 1;
        min-width: auto;
        padding: 0;
        pointer-events: all;
    }

    .main-nav ul.v2 a {
        display: block;
        background: none;
        color: #263238;
        font-size: 14px;
        font-weight: 500;
        padding: 5px 15px;
        border-bottom: none;
    }

    .main-nav ul.v2 a:hover {
        background: none;
        color: #f0613b;
    }

    header.fixed {
        background: white;
    }

    header.fixed .header {
        padding: 20px 0;
    }
}

.search .ct {
    z-index: 3;
}

.page-banner {
    padding: 74px 0 94px 0;
    margin-bottom: 0px;
    position: relative;
}
.page-banner .bg-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items: center;
    z-index:-1;
}
.page-banner .bg-img img{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
}
.page-banner .title {
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
    line-height: 45px;
    margin-bottom: 0;
}

.page-banner .desc {
    color: #fff;
    text-align: center;
    font-size: 19px;
}

.page-title {
    text-transform: uppercase;
    color: #f0613b;
    font-size: 24px;
}

.page-subs {
    color: #f15922;
    margin-top: 3px;
    margin-bottom: 50px;
}

.page-subs.v2 {
    margin-bottom: 34px;
}

.page-subs.v3 {
    margin-bottom: 36px;
}

.p-post {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 10px;
    box-shadow: 0px 0px 3px #eaeaea;
    border-radius: 6px;
    border: solid 1px #dcdcdc;
}

.p-post .img {
    /*background: #000;*/
    display: block;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.p-post .img img {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: block;
    width: 100%;
}

.p-post .title {
    font-size: 20px;
    font-weight: 500;
    color: #455a64;
    margin-bottom: 6px;
}

.p-post .cate {
    font-style: italic;
    color: #999999;
    margin-bottom: 10px;
}

.p-post .desc {
    color: #455a64;
    line-height: 20px;
}

.p-post:hover .img img {
    opacity: 0.6;
}

.p-post:hover .title a {
    color: #f0613b;
}

.p-post.v2 {
    margin-bottom: 34px;
}

.p-post.v2 .img {
    margin-bottom: 0;
}

.p-post.v2 .ct {
    background: #f7f7f7;
    text-align: center;
    padding: 22px 20px 24px 20px;
}

.paginations {
    text-align: center;
    margin: 20px 0 20px 0;
}

.paginations li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px;
}

.paginations li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #f5f5f5;
    font-size: 18px;
    color: #455a64;
    text-align: center;
    line-height: 40px;
}

.paginations li:hover a, .paginations li.active a {
    background: #363334;
    color: #fff;
    font-weight: bold;
}

.p-post-detail {
    margin-bottom: 80px;
}

.p-post-detail .page-subs {
    margin-bottom: 28px;
}

.p-post-detail .s-content {
    color: #455a64;
    line-height: 2.14286;
}

.p-post-detail .s-content p {
    margin-bottom: 12px;
}

.p-post-detail .tb-info {
    color: #455a64;
    margin-bottom: 40px;
}

.p-post-detail .tb-info table {
    width: 100%;
}

.p-post-detail .tb-info table td {
    border-bottom: solid 1px #f1f1f1;
    padding: 14px 0;
}

.p-post-detail .tb-info table td:first-child {
    padding-left: 3px;
    padding-right: 5px;
    width: auto;
}

.p-post-detail .tb-info table tr:last-child td {
    border-bottom: none;
}

.p-post-detail .tb-info .title {
    color: #f0613b;
}

.p-post-detail .tb-info .title i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.p-post-detail .dt-skill {
    margin-bottom: 50px;
}

.p-post-detail .dt-skill .line {
    position: relative;
    padding-left: 165px;
    color: #455a64;
    line-height: 16px;
    margin-bottom: 40px;
}

.p-post-detail .dt-skill .line p {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    text-transform: uppercase;
}

.p-post-detail .dt-skill .line .skill {
    position: relative;
    padding-right: 55px;
}

.p-post-detail .dt-skill .line span {
    position: absolute;
    right: 0;
    top: 0;
}

.p-post-detail .dt-skill .line .progress {
    height: 16px;
    border-radius: 2px;
    background: #e9ecef;
}

.p-post-detail .dt-skill .line .progress-bar {
    border-radius: 2px 0 0 2px;
    background-color: #f0613b;
}

.p-post-detail .dt-skill .line .progress-bar-striped, .p-post-detail .dt-skill .line .progress-striped .progress-bar {
    background-size: 1rem 1rem;
}

.i-select {
    position: relative;
}

.i-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    -o-text-overflow: '';
    text-overflow: '';
    width: 100%;
}

.event-head {
    margin-bottom: 30px;
}

.event-head .i-select {
    display: inline-block;
    vertical-align: middle;
    width: 170px;
    color: #999999;
    margin-right: 25px;
}

.event-head .i-select:last-child {
    margin-right: 0;
}

.event-head .i-select select {
    height: 40px;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    font-size: 15px;
    padding-left: 12px;
    padding-top: 2px;
}

.event-head .i-select select option {
    color: #455a64;
    font-size: 15px;
}

.event-head .i-select i {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    pointer-events: none;
}

.event-head .total {
    font-size: 15px;
    color: #455a64;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
}

.event-head .total span {
    color: #f84951;
}

.event-head .form {
    width: 265px;
    display: inline-block;
    vertical-align: middle;
    font-style: italic;
    position: relative;
    color: #999999;
    margin-right: 25px;
}

.event-head .form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    -o-text-overflow: '';
    text-overflow: '';
    width: 100%;
    height: 40px;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    font-size: 15px;
    padding-left: 12px;
    padding-top: 2px;
}

.event-head .form select option {
    color: #455a64;
    font-size: 15px;
    font-style: normal;
}

.event-head .form input {
    height: 40px;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    font-size: 15px;
    width: 100%;
}

.event-head .form input::-webkit-input-placeholder {
    color: #999999;
}

.event-head .form input:-moz-placeholder {
    color: #999999;
}

.event-head .form input::-moz-placeholder {
    color: #999999;
}

.event-head .form input:-ms-input-placeholder {
    color: #999999;
}

.event-head .form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    color: #fff;
    font-size: 16px;
    background: #f84951;
    border-radius: 0 3px 3px 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.event-head .form button:hover {
    color: #f0613b;
}

.event {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    border-radius: 10px;
}

.event .img {
    display: block;
    width: 50%;
    min-width: 50%;
    /*background: #000;*/
    border-radius: 5px 0 0 5px;
}

.event .img img {
    display: block;
    width: 100%;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.event .ct .ct-box {
    padding-left: 30px;
    padding-top: 22px;
    padding-bottom: 30px;
    padding-right: 45px;
}

.event .ct {
    position: relative;
    border: solid 1px #d3d3d3;
    border-left: none;
    border-radius: 0 5px 5px 0;
    width: 100%;
}

.event .title {
    font-size: 18px;
    font-weight: 500;
    color: #455a64;
    margin-bottom: 15px;
}

.event .info {
    color: #999999;
    margin-bottom: 15px;
}

.event .info i {
    color: #f0613b;
}

.event .desc {
    color: #455a64;
    line-height: 30px;
    /*max-height: 60px;*/
    /*  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;*/
    overflow: hidden;
}

.event .ctrls {
    /*position: absolute;*/
    bottom: 0;
    padding: 13px 0 14px 0;
    border-top: solid 1px #d3d3d3;
    left: 0;
    right: 0;
    padding-left: 30px;
}

.event .ctrls a {
    display: inline-block;
    vertical-align: middle;
    width: 136px;
    height: 39px;
    line-height: 39px;
    text-transform: uppercase;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #f0613b;
    margin-right: 25px;
}

.event .ctrls a:last-child {
    margin-right: 0;
}

.event .ctrls a.v2 {
    background: #f84951;
}

.event .ctrls a:hover {
    background: #009ac8;
    color: #fff;
}

.event:hover .img img {
    opacity: 0.8;
}

.event:hover .title a {
    color: #f0613b;
}

.edu-page .big-img {
    display: block;
    margin-right: -30px;
    border-radius: 4px;
    overflow: hidden;
}

.edu-page .big-img img {
    display: block;
    width: 100%;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    height: auto;
}

.edu-page .big-img:hover img {
    opacity: 0.8;
}

.edu-page .big-ct {
    margin-left: 40px;
    margin-top: -6px;
}
.edu-page .big-ct a{
    color: #337ab7;
}
.edu-page .big-ct p{
    margin-bottom:5px;
}

.edu-page .big-ct .page-subs {
    margin-bottom: 28px;
}

.edu-page .big-ct .s-content {
    line-height: 22px;
    color: #455a64;
}
.edu-item img{
    max-height: 220px;
    min-height: 210px;
    object-fit: cover;
}
.edu-item {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 0;
    box-shadow: 0px 0px 3px #eaeaea;
    border-radius: 6px;
    border: solid 1px #dcdcdc;
}
.edu-item .service-item-info{
    padding: 5px 10px 10px 10px;
}
.edu-item .title {
    font-size: 22px;
    color: #455a64;
    font-weight: bold;
    margin-bottom: 12px;
}

.edu-item .desc,.edu-item time,.edu-item .desc * {
    color: #455a64;
    line-height: 25px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-bottom: 0;
    font-weight:normal;
}
.edu-item time{
    color: #a9a9a9;
}
.edu-item .more {
    color: #455a64;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-top: 5px;
    display: inline-block;
}

.edu-item .more:hover {
    text-decoration: underline;
}

.edu-item:hover {

}
.edu-item:hover .service-item-info{
/*     background: #f0613b; */
/*     border-color: #f0613b; */
}
.edu-item:hover .title a {
/*     color: #fff; */
}

.edu-item:hover .desc {
/*     color: #fff; */
}

.edu-item:hover .more {
/*     color: #fff; */
}

.def-detail .title {
    font-weight: bold;
    color: #363334;
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 13px;
}

.def-detail .time {
    color: #999999;
    margin-bottom: 15px;
}

.def-detail .s-content {
    color: #455a64;
    line-height: 2.14286;
    word-break: break-word;
}

.def-detail .s-content p {
    margin-bottom: 12px;
}

.def-detail .s-content a {
    color: #f0613b;
}

.edu-detail .img {
    border-radius: 4px 4px 0 0;
    display: block;
    width: 100%;
}

.edu-detail .def-detail {
    border-radius: 0 0 4px 4px;
    border: solid 1px #dcdcdc;
    border-top: none;
    padding: 25px;
    margin-bottom: 60px;
}

.edu-detail.v2 .def-detail {
    margin-bottom: 24px;
    padding-top: 13px;
}

.ab-banner {
    background-color: #363334;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 55px;
}

.ab-banner .avata {
    width: 50%;
    text-align: right;
    position: relative;
    padding-top: 25px;
}

.ab-banner .avata .img {
    display: inline-block;
    vertical-align: middle;
    width: 224px;
    position: relative;
    z-index: 2;
    margin-right: -32px;
    border-radius: 50%;
    background: #fff;
}

.ab-banner .avata .img:before {
    display: block;
    padding-top: 100%;
    content: '';
}

.ab-banner .avata .img img {
    border-radius: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    border: solid 5px #e25632;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.ab-banner .avata .img .desc {
    bottom: 18px;
    width: 250px;
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 18px;
    right: 100%;
    margin-right: -35px;
}

.ab-banner .avata .img .name {
    background: #f0613b;
    border-radius: 3px;
    padding: 3px 14px 3px 10px;
    display: inline-block;
    margin-bottom: 5px;
}

.ab-banner .avata .img .job {
    background: #ef2c35;
    border-radius: 3px;
    padding: 3px 7px 3px 5px;
    text-align: left;
}

.ab-banner .avata .img:hover img {
    opacity: 0.85;
}

.ab-banner .ct {
    width: 52.0625%;
    background: #ebebeb;
    position: relative;
    z-index: 1;
    padding-top: 42px;
    padding-bottom: 31px;
}

/*    .ab-banner .ct:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 100%;
      margin-right: -1px;
      width: 100%;
      background-image: url("../images/bn-arrow.png");
      background-repeat: no-repeat;
      background-position: right center;
      background-size: auto 100%;
      pointer-events: none; }*/
.ab-banner .ct .text {
    margin-left: 111px;
    max-width: 450px;
}

.ab-banner .ct p {
    text-transform: uppercase;
    font-size: 18px;
    color: #172652;
    font-weight: 500;
}

.ab-banner .ct .title {
    font-size: 36px;
    color: #e2262f;
    font-weight: bold;
    font-family: "Oswald";
    line-height: 1;
    margin-top: 3px;
    margin-bottom: 16px;
}

.ab-banner .ct .add {
    color: #172652;
    font-style: italic;
    margin-top: 6px;
    margin-bottom: 24px;
    font-weight: 500;
}

.ab-banner .ct .add i {
    font-style: normal;
}

.ab-banner .ct .ctrls a {
    display: inline-block;
    vertical-align: middle;
    width: 136px;
    height: 39px;
    line-height: 39px;
    text-transform: uppercase;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #f0613a;
    margin-right: 25px;
}

.ab-banner .ct .ctrls a:last-child {
    margin-right: 0;
}

.ab-banner .ct .ctrls a.v2 {
    background: #ef2c35;
}

.ab-banner .ct .ctrls a:hover {
    background: #009ac8;
    color: #fff;
}

.customer {
    position: relative;
    display: block;
    height: 100px;
}

.customer img {
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 0.8;
}

.customer:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.customer-cas {
    margin-bottom: 77px;
}

.customer-cas .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    top: 50%;
    margin-top: -15px;
    background: #999999;
}

.customer-cas .slick-arrow.prev {
    left: -50px;
}

.customer-cas .slick-arrow.next {
    right: -50px;
}

.customer-cas .slick-arrow:hover {
    background: #f0613b;
}

.p-more {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-radius: 6px;
    background: #f0613b;
    color: #fff;
    text-transform: uppercase;
    height: 39px;
    line-height: 39px;
    width: 136px;
    font-weight: 500;
    margin-top: 12px;
}

.p-more:after {
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border-radius: 7px;
    border: solid 1px #f0613b;
    content: '';
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.p-more:hover {
    color: #fff;
    background: #f84951;
}

.p-more:hover:after {
    border-color: #f84951;
}

.dt-tab-box {
    border: solid 1px #dcdcdc;
    border-radius: 4px;
    padding: 25px 25px 15px 25px;
    margin-bottom: 10px;
}

.dt-tab-box .dt-tab {
    font-size: 0;
    margin-bottom: 22px;
}

.dt-tab-box .dt-tab li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.dt-tab-box .dt-tab li a {
    display: block;
    color: #f0613b;
    border-radius: 3px;
    line-height: 20px;
    padding: 10px 14px;
}

.dt-tab-box .dt-tab li.active a {
    color: #fff;
    background: #f0613b;
}

.dt-tab-box .dt-tab .tab-act {
    position: absolute;
    background: #f0613b;
    color: #fff;
    border-radius: 3px;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.dt-form {
    margin: 0 auto;
    max-width: 810px;
}

.dt-form .f-title {
    text-transform: uppercase;
    border-bottom: solid 1px #dcdcdc;
    font-size: 16.5px;
    color: #455a64;
    font-weight: 500;
    padding-bottom: 12px;
    margin-bottom: 36px;
    margin-top: 54px;
}

.dt-form .f-title.v2 {
    margin-top: 0;
}

.dt-form .line {
    position: relative;
    margin-right: 70px;
    padding-left: 180px;
    margin-bottom: 22px;
}

.dt-form .line p {
    position: absolute;
    width: 165px;
    text-align: right;
    left: 0;
    margin-top: 4px;
    color: #455a64;
}

.dt-form .line .i-radio {
    color: #788f9a;
    cursor: pointer;
    margin-top: 4px;
    margin-right: 12px;
}

.dt-form .line .i-radio input {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    margin-top: -1px;
    opacity: 0.6;
    margin-right: 3px;
}

.dt-form .line .input {
    width: 100%;
    border: solid 1px #d3d6d7;
    font-style: italic;
    color: #b5c1c7;
    height: 29px;
    padding-left: 12px;
    border-radius: 5px;
}

.dt-form .line .input::-webkit-input-placeholder {
    color: #b5c1c7;
}

.dt-form .line .input:-moz-placeholder {
    color: #b5c1c7;
}

.dt-form .line .input::-moz-placeholder {
    color: #b5c1c7;
}

.dt-form .line .input:-ms-input-placeholder {
    color: #b5c1c7;
}

.dt-form .line .input.small {
    max-width: 182px;
}

.dt-form .line textarea.input {
    display: block;
    resize: none;
    height: 80px;
}

.dt-form .line span {
    font-style: italic;
    display: block;
    font-size: 12px;
    color: #455a64;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dt-form .line button {
    height: 29px;
    border-radius: 4px;
    border: solid 1px #d3d6d7;
    padding: 0 15px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.dt-form .line button.submit {
    background: #f0613b;
    color: #fff;
}

.dt-form .line button.cancel {
    background: #90a4ae;
    color: #fff;
}

.dt-form .line button:hover {
    background: #ff6942;
}

.cl-detail {
    margin-bottom: 30px;
}

.cl-detail .title {
    background: #f4f4f4;
    color: #f0613b;
    font-size: 16px;
    position: relative;
    font-weight: bold;
    border: solid 1px #dcdcdc;
    border-radius: 4px 4px 0 0;
    line-height: 21px;
    padding: 14px 25px;
    cursor: pointer;
}

.cl-detail .title:after {
    font-family: "FontAwesome";
    content: "";
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    color: #455a64;
    right: 25px;
    top: 50%;
    margin-top: -10px;
}

.cl-detail .title.act:after {
    content: "\f103";
}

.cl-detail .ct {
    border: solid 1px #dcdcdc;
    border-top: none;
    padding: 15px 25px 25px 25px;
}

.cl-detail .ct .s-content {
    margin-top: -10px;
    /*margin-top: 22px; */
}

.m-tab-btn {
    display: none;
}

.dt-sidebar {
    margin-left: -4px;
    padding-top: 13px;
}

.sb-title {
    text-transform: uppercase;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    position: relative;
}
.sb-title .sb-text-title{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #3633346e;
    font-size: 14px;
    color: #fff;
    text-transform: initial;
}
.sb-title span {
    color: #f0613b;
}
.sb-title .sb-text-title div{
    text-align:center;
    position:relative;
}
.sb-title .sb-text-title div::before{
    content:"";
    position:absolute;
    top: 62%;
    left:50%;
    margin-left:-40px;
    display:block;
    width:80px;
    border-top:1px solid #fff;
}
.sb-title .sb-text-title span{
    font-size:20px;
    display:block;
    background:#fff;
    padding:3px 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}
.sb-title:after {
    content: '';
    display: block;
    height: 1px;
    width: 35px;
    background: #263238;
    margin-top: 8px;
}

.sb-table {
    margin-bottom: 21px;
}

.sb-table table {
    width: 100%;
}

.sb-table table td {
    border-bottom: solid 1px #e6e6e6;
    padding: 9px 0;
}

.sb-table table td:last-child {
    text-align: right;
    color: #999999;
}

.sb-table table td a {
    color: #f0613b;
    font-style: italic;
}

.sb-table table td a i {
    font-style: normal;
}

.sb-table table td a:hover {
    text-decoration: underline;
}

.sb-table table tr:last-child td {
    border-bottom: none;
}

.sb-form {
    margin-bottom: 35px;
}

.sb-form i {
    color: #c5c5c5;
    display: block;
    margin-top: 13px;
    margin-bottom: 10px;
}

.sb-form input, .sb-form textarea {
    width: 100%;
    border: solid 1px #d3d6d7;
    font-style: italic;
    color: #999999;
    height: 35px;
    padding-left: 12px;
    border-radius: 5px;
    margin-top: 9px;
}

.sb-form input::-webkit-input-placeholder {
    color: #999999;
}

.sb-form input:-moz-placeholder {
    color: #999999;
}

.sb-form input::-moz-placeholder {
    color: #999999;
}

.sb-form input:-ms-input-placeholder {
    color: #999999;
}

.sb-form .i-select {
    color: #999999;
    margin-bottom: 9px;
}

.sb-form .i-select:after {
    font-family: "FontAwesome";
    content: "";
    position: absolute;
    right: 20px;
    line-height: 20px;
    top: 50%;
    margin-top: -10px;
}

.sb-form textarea {
    display: block;
    width: 100%;
    border: solid 1px #d3d6d7;
    font-style: italic;
    color: #999999;
    padding-left: 12px;
    border-radius: 5px;
    height: 84px;
    margin-bottom: 20px;
}

.sb-form textarea::-webkit-input-placeholder {
    color: #999999;
}

.sb-form textarea:-moz-placeholder {
    color: #999999;
}

.sb-form textarea::-moz-placeholder {
    color: #999999;
}

.sb-form textarea:-ms-input-placeholder {
    color: #999999;
}

.sb-form select {
    width: 100%;
    border: solid 1px #d3d6d7;
    font-style: italic;
    height: 35px;
    border-radius: 5px;
    padding-left: 10px;
}

.sb-form button, a.register_btn {
    height: 38px;
    width: 140px;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.sb-form button.submit, a.register_btn {
    height: 34px;
    padding-top: 3px;
    text-align: center;
    background: #f0613b;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-box-shadow: 0 4px 0 0 #fd5123;
    box-shadow: 0 4px 0 0 #fd5123;
    margin-top: -1px;
}

.sb-form button.button {
    border: solid 1px #dcdcdc;

    color: #666666;
    position: relative;
    top: 1px;
}

.sb-form button:hover, a.register_btn:hover {
    background: #f0613b;
    color: #fff;
    border-color: transparent;
}

.sb-events {
    margin-top: 19px;
    margin-bottom: 28px;
}

.sb-events .item {
    position: relative;
    padding-left: 102px;
    margin-bottom: 20px;
    min-height: 62px;
}

.sb-events .item .date {
    position: absolute;
    left: 0;
    background: #fd51232b;
    text-align: center;
    width: 82px;
    padding: 5px 9px 6px 9px;
    border-left: solid 3px #f0613b;
}

.sb-events .item .date i {
    color: #666666;
    font-size: 16px;
}

.sb-events .item .date span {
    display: block;
    font-size: 24px;
    font-weight: 500;
    border-top: solid 1px #c2cacc;
    color: #f0613b;
    line-height: 1;
    padding-top: 3px;
}

.sb-events .item .title {
    font-size: 16px;
    line-height: 1.3;
    color: #455a64;
    margin-bottom: 6px;
}

.sb-events .item .title a:hover {
    color: #f0613b;
}

.sb-events .item p {
    line-height: 18px;
    color: #999999;
    font-style: italic;
}

.sb-events .more {
    color: #f0613b;
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}

.sb-events .more:hover {
    text-decoration: underline;
}

.sb-ul {
    margin-bottom: 27px;
    font-weight: 500;
}

.sb-ul ul li {
    border-bottom: solid 1px #e6e6e6;
    color: #455a64;
    padding: 11px 0 9px 0;
}

.sb-ul ul li:last-child {
    border-bottom: none;
}

.sb-ul ul li a:hover {
    color: #f0613b;
}

.sb-ul .more {
    color: #f0613b;
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
}

.sb-ul .more:hover {
    text-decoration: underline;
}

.dt-social {
    margin-top: 37px;
}

.dt-social span {
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.dt-social a {
    font-size: 24px;
    color: #333333;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.dt-social a .fa {
    font-size: 18px;
}

.dt-social a:hover {
    color: #f0613b;
}

.dt-social a i {
    display: block;
    line-height: 24px;
}

@media all and (max-width: 1199px) {
    .main-nav > ul > li {
        margin-right: 12px;
        font-size: 13px;
    }

    .event .ct {
        padding-right: 10px;
    }

    .ab-banner .ct .text {
        margin-left: 50px;
    }

    .customer-cas {
        padding: 0 30px;
    }

    .customer-cas .slick-arrow.prev {
        left: -10px;
    }

    .customer-cas .slick-arrow.next {
        right: -10px;
    }

    .dt-tab-box .m-tab-btn {
        display: block;
        width: 100%;
        height: 38px;
        border-radius: 3px;
        background: #f0613b;
        text-transform: uppercase;
        font-weight: 500;
        color: #fff;
        position: relative;
        cursor: pointer;
        line-height: 38px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .dt-tab-box .m-tab-btn.v2 {
        margin-top: 20px;
    }

    .dt-tab-box .m-tab-btn i {
        position: absolute;
        right: 14px;
        line-height: 20px;
        top: 50%;
        margin-top: -10px;
    }

    .dt-tab-box .m-tab {
        position: relative;
    }

    .dt-tab-box .m-tab ul {
        display: none;
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
        z-index: 1;
        -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.15);
        border-radius: 0 0 3px 3px;
        overflow: hidden;
        border: none;
    }

    .dt-tab-box .m-tab ul li {
        margin: 0;
        display: block;
        text-align: center;
    }

    .dt-tab-box .m-tab ul li a {
        display: block;
        font-size: 14px;
        padding: 8px 15px 6px 15px;
        line-height: 1.5;
    }

    .dt-tab-box .dt-tab li.active a {
        background: #f0613b;
    }
}

@media all and (max-width: 991px) {
    .m-nav .main-nav > ul > li:hover > a {
        background: #fff;
        color: #f0613b;
    }

    .m-nav .main-nav > ul > li:hover > .nav-drop {
        color: #f0613b;
    }

    .m-nav .nav-ct {
        padding-bottom: 20px;
    }

    .main-nav ul.v2 .nav-drop {
        display: none;
    }

    .main-nav ul.v2 ul {
        display: block;
        background: #fff;
    }

    .main-nav ul.v2 ul li a {
        padding-left: 15px;
    }

    .p-post-detail {
        margin-bottom: 40px;
    }

    .event .img {
        width: 320px;
        min-width: 320px;
    }

    .event .ct {
        padding-left: 20px;
        padding-top: 10px;
    }

    .event .title {
        font-size: 18px;
        color: #455a64;
        margin-bottom: 10px;
    }

    .event .info {
        margin-bottom: 10px;
    }

    .event .desc {
        line-height: 24px;
        /*max-height: 48px;*/
    }

    .event .ctrls {
        padding: 10px 0 10px 0;
        padding-left: 20px;
    }

    .event .ctrls a {
        width: 120px;
        height: 34px;
        line-height: 35px;
        margin-right: 15px;
    }

    .edu-page .big-img {
        margin-right: 0px;
        margin-bottom: 22px;
    }

    .edu-page .big-ct {
        margin-left: 0;
    }

    .edu-page .big-ct .page-subs {
        margin-bottom: 20px;
    }

    .ab-banner .avata .img .desc {
        width: 195px;
    }

    .dt-sidebar {
        margin-left: 0;
    }

    .event-head .i-select {
        margin-right: 0;
    }

    .event-head .form {
        width: 185px;
        margin-right: 10px;
    }
}

@media all and (max-width: 767px) {
    .page-banner {
        padding: 44px 0 44px 0;
        margin-bottom: 35px;
    }

    .page-banner .title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .page-banner .desc {
        font-size: 14px;
    }

    .page-subs {
        margin-bottom: 30px;
    }

    .page-subs.v2 {
        margin-bottom: 30px;
    }

    .page-subs.v3 {
        margin-bottom: 30px;
    }

    .paginations {
        margin-bottom: 20px;
    }

    .paginations li a {
        width: 30px;
        height: 30px;
        font-size: 13px;
        line-height: 30px;
    }

    .p-post .img {
        margin-bottom: 22px;
    }

    .p-post .title {
        font-size: 24px;
    }

    .p-post-detail .page-subs {
        margin-bottom: 25px;
    }

    .p-post-detail .s-content {
        line-height: 1.8;
    }

    .p-post-detail .s-content p {
        margin-bottom: 10px;
    }

    .p-post-detail .tb-info {
        margin-bottom: 30px;
    }

    .p-post-detail .tb-info table td {
        padding: 14px 0;
        word-break: break-word;
    }

    .p-post-detail .tb-info table td:first-child {
        padding-left: 0;
        width: 130px;
        padding-right: 12px;
    }

    .p-post-detail .tb-info .title i {
        width: 18px;
        font-size: 15px;
        margin-right: 2px;
    }

    .p-post-detail .dt-skill {
        margin-bottom: 35px;
    }

    .p-post-detail .dt-skill .line {
        padding-left: 0;
        margin-bottom: 25px;
    }

    .p-post-detail .dt-skill .line p {
        position: static;
        width: auto;
        margin-bottom: 8px;
    }

    .p-post-detail .dt-skill .line .skill {
        padding-right: 45px;
    }

    .event-head .i-select {
        width: 100%;
        margin: 10px 0 0 0;
    }

    .event-head .i-select select {
        font-size: 14px;
    }

    .event-head .total {
        display: block;
    }

    .event-head .form {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .event-head .form select {
        font-size: 14px;
    }

    .event {
        display: block;
    }

    .event .img {
        width: auto;
        min-width: auto;
    }

    .event .ct {
        padding: 15px 12px 0 12px;
        border-top: none;
        border-left: solid 1px #d3d3d3;
        border-radius: 0 0 5px 5px;
    }

    .event .title {
        font-size: 18px;
        color: #455a64;
        margin-bottom: 10px;
    }

    .event .info {
        margin-bottom: 10px;
    }

    .event .desc {
        max-height: none;
    }

    .event .ctrls {
        padding: 10px 0;
        margin: 14px -12px 0 -12px;
        text-align: center;
        position: static;
    }

    .edu-item .title {
        font-size: 20px;
    }

    .def-detail .title {
        font-size: 22px;
    }

    .def-detail .s-content {
        color: #455a64;
        line-height: 1.66;
    }

    .def-detail .s-content p {
        margin-bottom: 10px;
    }

    .edu-detail .def-detail {
        padding: 20px 15px 15px 15px;
        margin-bottom: 40px;
    }

    .ab-banner {
        display: block;
        margin-bottom: 40px;
    }

    .ab-banner .avata {
        width: auto;
        text-align: center;
        padding: 20px 15px;
    }

    .ab-banner .avata .img {
        display: block;
        width: auto;
        margin-right: 0px;
        background: none;
        border-radius: 0;
    }

    .ab-banner .avata .img:before {
        display: none;
        content: none;
    }

    .ab-banner .avata .img img {
        width: 200px;
        height: 200px;
        position: static;
    }

    .ab-banner .avata .img .desc {
        width: auto;
        max-width: 250px;
        margin: 10px auto auto auto;
        position: static;
        color: #fff;
        text-align: center;
    }

    .ab-banner .ct {
        width: auto;
        padding: 30px 15px;
        border-top: solid 3px #f84951;
    }

    .ab-banner .ct:before {
        content: none;
        display: none;
    }

    .ab-banner .ct .text {
        margin-left: 0;
        max-width: none;
    }

    .ab-banner .ct p {
        font-size: 16px;
    }

    .ab-banner .ct .title {
        font-size: 26px;
        line-height: 1.2;
    }

    .customer-cas {
        margin-bottom: 40px;
    }

    .dt-form .f-title {
        padding-bottom: 10px;
        margin-bottom: 20px;
        margin-top: 34px;
    }

    .dt-form .line {
        margin-right: 0;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .dt-form .line p {
        position: static;
        width: auto;
        text-align: left;
    }

    .dt-form .line p br {
        display: none;
    }

    .dt-tab-box {
        padding: 15px 15px 5px 15px;
    }

    .cl-detail .title {
        padding: 12px 15px;
    }

    .cl-detail .title:after {
        right: 15px;
    }

    .cl-detail .ct {
        padding: 15px;
    }
}

.event .img {
    position: relative;
    padding-top: 19.5%;
    display: block;
    overflow: hidden;
}

.event .img img {
    transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    height: 100%;

}

@media (min-width: 737px) and (max-width: 768px) {
    .event .img {
        padding-top: 29.5%;
    }
}

@media all and (max-width: 736px) {
    .event .img {
        padding-top: 65.5%;
    }
}

@media all and (min-width: 1024px) and (max-width: 1200px) {
    .event .img {
        padding-top: 25.5%;
    }
}


.edu-page .row.row-ibl, .row-edu.row.row-ibl {
    display: flex;
    flex-flow: wrap;
}

.edu-col {
    display: grid !important;
}

.booking {
    margin: -10px 0 30px;
}

.cnv-block {
    margin-top: -35px;
}

@media (max-width: 768px) {
    .cnv-block {
        margin-top: -10px;
    }
}

.pc-hide {
    display: none;
}

.pc-show {
    display: none;
}

@media (min-width: 1200px) {
    .pc-show {
        display: block;
    }
}

@media (max-width: 1199px) {
    .pc-hide {
        display: block;
    }
}


@media all and (max-width: 767px) {
    .event .ct .ct-box {
        padding: 0;
    }
}


.dt-tab-box .m-tab {
    display: flex;
}

.dt-tab-box .dt-tab {
    margin: auto;
}

.ab-banner .ct:before {
    content: none;
}

.ab-banner .shape {
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    background: inherit;
    width: 315px;
    border-left: solid 5px #f15026;
    z-index: -1;
    -webkit-transform: skew(-30deg) translateX(-50%) translateX(3.5vw);
    -ms-transform: skew(-30deg) translateX(-50%) translateX(3.5vw);
    transform: skew(-30deg) translateX(-50%) translateX(3.5vw);
}

@media all and (max-width: 1610px) {
    .ab-banner .shape {
        -webkit-transform: skew(-30deg) translateX(-50%) translateX(4vw);
        -ms-transform: skew(-30deg) translateX(-50%) translateX(4vw);
        transform: skew(-30deg) translateX(-50%) translateX(4vw);
    }
}

@media all and (max-width: 1199px) {
    .ab-banner .shape {
        -webkit-transform: skew(-30deg) translateX(-50%) translateX(6.5vw);
        -ms-transform: skew(-30deg) translateX(-50%) translateX(6.5vw);
        transform: skew(-30deg) translateX(-50%) translateX(6.5vw);
    }
}

@media all and (max-width: 767px) {

    .ab-banner .shape {
        display: none;
    }
}
.error{
    color: red;
    font-size: 12px;
    font-style: italic;
}
.big-img img{
    width: 100%;
    border-radius: 10px;
}
.faq-heading {
	background-color: #f0f2f5;
	padding: 10px
}

.faq-heading a {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	color: #212529;
	line-height: 20px;
	align-items: center
}

.faq-heading a:hover {
	color: #212529!important
}

.faq-collapse-in {
	padding: 10px;
	border: 1px solid #f0f2f5
}
.service-item-img{
    max-width: 100%;
    width: 100%;
    height: 215px;
    max-height: 215px;
}
.service-item-img img{
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}
#rating_display{
    display: inline-block;
}
#rating_display i{
    color: #ffbc00;
    font-size: 12px;
}
#_description {
	background: none;
	padding: 0;
	border-radius: 5px;
	font-weight: initial;
	font-size: 15px;
}

#_description>* {
	font-weight: normal;
	margin: 0;
	font-size: 15px;
}

#_content {
	margin-top: 15px
}
#_content table,
#_description table{
    background:#efefefb0;
    border-radius: 10px;
}
#_content table td,
#_description table td{
    padding: 5px 10px !important;

}
#_content table td,
#_description table td,
#_content table td *,
#_description table td *{
    font-size: 14px !important;
    color: var(--color-second);
    font-weight: 500;
}
#_content table tr:first-child,
#_description table tr:first-child{
}
#_content table th,
#_description table th,
#_content table tr:first-child td *,
#_description table tr:first-child td *{
}
#_content *,
#_description * {
	font-size: 15px
}

#_content ul,
#_description ul {
	list-style: initial;
	padding-left: 20px
}

#_content a,
#_description a {
	color: #007bff;
	font-size: 15px
}

#_content h3 {
	font-size: 18px;
	color: var(--color-second);
	font-weight: bold;
}

#_content img,
#_description img,
#_description img {
	height: auto!important;
    margin: 0 auto !important;
    display: block !important;
}
#_content table tr:first-child td,
#_description table tr:first-child td{
    padding-top:10px !important;

}
#_content table tr:last-child td,
#_description table tr:last-child td{
}

#_content table thead tr td,#_content table tbody tr td,
#_description table thead tr td,#_description table tbody tr td{
    border-width: 0.5px !important;
    border-style: solid !important;
    border-color: #e2e2e2 !important;
    -webkit-print-color-adjust: exact;
}
#_content p, #_description p,
#_content h1, #_description h1,
#_content h2, #_description h2,
#_content h3, #_description h3,
#_content h4, #_description h4,
#_content h5, #_description h5,
#_content h6, #_description h6{margin-bottom: 10px;}
#_content h1, #_description h1{font-size: 20px;font-weight: bold}
#_content h2, #_description h2{font-size: 19px;font-weight: bold}
#_content h3, #_description h3{font-size: 18px;font-weight: bold}
#_content h4, #_description h4{font-size: 17px;font-weight: bold}
#_content h5, #_description h5{font-size: 16px;font-weight: bold}
#_content h6, #_description h6{font-size: 15px;font-weight: bold}
#_description *{font-size: 15px;font-weight: normal}
.sb-title span,.sb-text-title,.sb-text-title div::before,.sb-text-title div{
    -webkit-transition: .3s ease-in-out !important;
    transition: .3s ease-in-out !important;
}
img{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out !important;
    transition: .3s ease-in-out !important;
    overflow: hidden !important;
}
.sb-text-title div{
    background: transparent;
}
.service-item-img,.big-img,.sb-title-featured{
    overflow: hidden;
    display: block;
    background: #fff;
    border-radius: 0px !important;
}
.service-item-img img,.big-img img,.sb-title-featured img{
    opacity: 0.9 !important;
    width: 100%;
    height: auto;
}
.sb-title-featured img{
    height: 200px;
}
.service-item-img:hover img,.big-img:hover img,.sb-title-featured:hover img{
    opacity: 1 !important;
    -webkit-transform: rotate(
        1deg) scale(1.1);
    transform: rotate(
        1deg) scale(1.1);
}
.sb-title-featured:after{display: none !important;}
.sb-title-featured:hover .sb-text-title div::before{
    border-top-color: #363334;
}
.sb-title-featured:hover .sb-text-title div{
    background: #ffffff63;
}
.sb-title-featured:hover .sb-text-title{
    background: #ffffff38;
    color: #363334;
}
.sb-title-featured:hover span{
    color:#ff1617;
}
.sb-box-featured{
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 20%);
}

