
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/ 

.lSSlideOuter {
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
   
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
   
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #68aa12;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url('../images/controls.png');
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
*{margin:0;padding:0}
ul{list-style: none;}
.container{max-width:1200px;width:100%;margin:auto;height: auto;padding: 0 15px;}
.left100{width: 100%;height:auto;float: left;}
.left{width:auto;height:auto;float: left}
.right100{width: 100%;height:auto;float: right}
.right{width: auto;height:auto;float: right}
a{text-decoration: none;}
body{
    font-family: 'Nunito Sans', 'Open Sans', sans-serif;
    overflow-x: hidden;
    color: #1E293B;
    line-height: 1.6;
}
header{width:100%;}
.header-main{width:100%;transition: 0.5s}
.header-main.fixed{ position: fixed;background: #FFF;z-index: 1000;top: -100px;box-shadow: 0px 0px 4px 0px #E3E3E3;}
header .top-header{background: var(--color-primary-dark);height: 35px;position: relative;overflow: hidden;}
header .top-header:before{content:'';width: 50%;height: 35px;background: #FFF;position: absolute;right: 0;}
header .top-header:after{content:''}
header .top-header .container{height: 35px;background: var(--color-primary-dark);position: relative;z-index: 5;}
header .top-header .container:before{content:'';width: 100px;height: 35px;background: var(--color-primary-dark);position: absolute;right: 0;transform: translate(1px, 0px) skew(-30deg, 0deg);right: -10px;}
header .top-header .list-social{width: auto;padding-top: 7px;}
header .top-header .list-social a{color: #FFF;padding-right: 10px;}
header .top-header .list-social a i{}
header .top-header .text-link{width: auto;float: right;padding-top: 5px;position: relative;right: 0px;}
header .top-header .text-link a{color: #FFF;font-size: 14px;margin-right: 5px;}
header .top-header .text-link span{color: #FFF;margin-right: 5px;}
header .top-header .text-link img{position: absolute;left: -30px;top: 8px;}
header .main-header{position: relative;height: 115px;}
header .main-header .logo{width: auto;float: left;}
header .main-header .logo img{height: 90px;top: 10px;position: relative;left: 15px;}
header .main-header .block-right{width: 850px;float: right;margin-top: 20px;}
header .main-header .block-right .icon-link{width: auto;float: right;margin-bottom: 15px;}
header .main-header .block-right .icon-link .icon{width: auto;float: left;color: #252222;height: 30px;position: relative;line-height: 30px;padding-left: 40px;margin-right: 20px;}
header .main-header .block-right .icon-link .icon img{width: auto;height: 25px;position: absolute;left: 0;}
header .main-header .block-right .icon-link .icon span{}
header .main-header .block-right .icon-link .icon strong{}
header .main-header .block-right .icon-link .btn{width: auto;float: left;margin-top: 4px;}
header .main-header .block-right .icon-link .btn a{color: #FFF;background: var(--color-primary);padding: 5px 15px;border-radius: 3px;font-size: 15px;transition: 0.5s}
header .main-header .block-right .icon-link .btn a:hover{background:var(--color-primary-dark)}
header .main-header .menu{width: auto;float: right;position: relative;}
header .main-header .menu:before{content:'';width: 500px;height: 50px;float: left;background: var(--color-primary);position: absolute;right: -450px;}
header .main-header .menu:after{content:'';width: 100%;height: 50px;float: left;background: var(--color-primary);position: absolute;left: 50px;}
header .main-header .menu ul{position: relative;z-index: 9;}
header .main-header .menu ul li{width: auto;float: left;background: var(--color-primary);height: 50px;line-height: 50px;-moz-transform: translate(1px, 0px) skew(-30deg, 0deg);-webkit-transform: translate(1px, 0px) skew(-30deg, 0deg);-o-transform: translate(1px, 0px) skew(-30deg, 0deg);-ms-transform: translate(1px, 0px) skew(-30deg, 0deg);transform: translate(1px, 0px) skew(-30deg, 0deg);text-align: center;transition: 0.5s;position: relative;}
header .main-header .menu ul li:hover{background:var(--color-primary-dark);}
header .main-header .menu ul li a{color: #FFF;font-size: 15px;padding: 0 20px;width:100%;float:left;}
header .main-header .menu ul li span{-moz-transform: translate(1px, 0px) skew(-30deg, 0deg);-webkit-transform: translate(1px, 0px) skew(-30deg, 0deg);-o-transform: translate(1px, 0px) skew(-30deg, 0deg);-ms-transform: translate(1px, 0px) skew(-30deg, 0deg);transform: translate(1px, 0px) skew(30deg, 0deg);float: left;width: 100%;}
header .main-header .menu ul li i{display: none}
header .main-header .list-menu-item{position: absolute;display: block;z-index: 1000;top: 50px;width: 250px;background: var(--color-primary-dark);transform: translate(1px, 0px) skew(30deg, 0deg);left: 12px;visibility: hidden;opacity: 0;transition: 0.5s}
header .main-header .list-menu-item .li{position: relative;width: 96%;float: left;}
header .main-header .list-menu-items{position: absolute;display: block;z-index: 9999;top: 0px;width: 250px;background: var(--color-primary);right: 240px;visibility: hidden;opacity: 0;transition: 0.5s;}
header .main-header .list-menu-item a{text-align: left !important;padding: 0 10px !important;border-bottom: var(--color-primary-dark) solid 1px;}
header .main-header .list-menu-items a{text-align: left !important;padding: 0 10px !important;border-bottom: var(--color-primary) solid 1px;}
header .main-header  li:hover .list-menu-item{visibility: visible;opacity: 1}
header .main-header  .list-menu-item .li:hover .list-menu-items{visibility: visible;opacity: 1}
.header-main.fixed .logo{height: 35px;
overflow: hidden;
position: relative;
top: 73px;
width: 278px;}
.header-main.fixed .logo img{height: 180px;
top: -145px;}
.header-main .block-right{width: 825px !important;}
/* Hero carousel styles are in custom.css */
.bx-services{margin-bottom: 50px;}
.bx-services .icon{width: 100%;height: auto;float: left;text-align: center;}
.bx-services .icon img{height: 250px;}
.bx-services .content{width: 100%;height: auto;float: left;text-align: center;padding: 0 50px;color: var(--color-text);}
.bx-services .content h3{font-size: 21px;margin: 15px 0;}
.bx-services .content p{line-height: 25px;}
.bx-services .readmore{width: 100%;height: auto;float: left;margin-top: 15px;}
.bx-services .readmore a{}
.btn-link{background: var(--color-primary);color: #FFF;text-transform: uppercase;font-size: 13px;font-weight: bold;padding: 10px 20px;transform: translate(1px, 0px) skew(-30deg, 0deg);display: inline-block;position: relative;box-shadow: 4px 4px 0px -1px var(--color-primary);}
.btn-link span{transform: translate(1px, 0px) skew(30deg, 0deg);display: inline-block;}
.btn-link:before{background: var(--color-primary);color: #FFF;text-transform: uppercase;font-size: 13px;font-weight: bold;padding: 10px 20px;transform: translate(1px, 0px) skew(-30deg, 0deg);display: inline-block;position: absolute;width: 100%;height: 100%;}
.bx-header{width: 100%;height: auto;float: left;margin-bottom: 35px;}
.bx-header h2{text-align: center;text-transform: uppercase;font-size: 25px;position: relative;color: var(--color-text);}
.bx-header h2:before{content:'';width: 100px;height: 3px;background: var(--color-primary);position: absolute;bottom: -10px;margin: auto;left: 0;right: 0;}
.bx-huong-dan-home{background: var(--color-bg);padding: 50px 0;}
.bx-huong-dan-home .list-huong-dan{position: relative;margin: 20px 0 0px 0;}
.bx-huong-dan-home .list-huong-dan:before{content:'';width: 100%;height: 1px;background: var(--color-primary);position: absolute;left: 0;top: 46px;}
.bx-huong-dan-home .item{width: 16.6666%;height: 170px;float: left;position: relative;text-align: center;}
.bx-huong-dan-home .item:after{content:'';width: 0;height: 0;border-left: 10px solid transparent;border-right: 10px solid transparent;border-bottom: 10px solid var(--color-primary);position: absolute;bottom: -21px;margin: auto;left: 0;right: 0;display: none}
.bx-huong-dan-home .item.active:after{display: block}
.bx-huong-dan-home .item:first-child:before{content: '';width: 50%;height: 1px;background: var(--color-bg);position: absolute;left: 0;top: 46px;}
.bx-huong-dan-home .item:last-child:before{content: '';width: 50%;height: 1px;background: var(--color-bg);position: absolute;right: 0;top: 46px;}
.bx-huong-dan-home .item .icon{width: 100px;height: 100px;background: #FFF;border-radius: 50%;text-align: center;margin: auto;position: relative;z-index: 9;margin-bottom: 20px;}
.bx-huong-dan-home .item .icon:before{content:'';width: 100%;height: 100%;background: var(--color-primary);position: absolute;left: 0;top: 0;border-radius: 50%;-moz-transform: scale(0.1);-webkit-transform: scale(0.1);-o-transform: scale(0.1);-ms-transform: scale(0.1);transform: scale(0.1);opacity: 0;transition: 0.5s}
.bx-huong-dan-home .item .icon:hover:before{transform: scale(1);opacity: 1;}
.bx-huong-dan-home .item .icon img{width: 72px;height: 72px;position: relative;top: 13px;}
.bx-huong-dan-home .item .icon:hover img{mix-blend-mode: multiply;}
.bx-huong-dan-home .item span{font-weight: bold;font-size: 15px;color: var(--color-text);}
.bx-huong-dan-home .readmore{text-align: center;}
.bx-huong-dan-home .readmore a{}
.bx-bang-gia-home{background:url('../images/bg-bang-gia-home.jpg') no-repeat;background-size: cover;padding: 40px 0;}
.bx-bang-gia-home .bx-header{}
.bx-bang-gia-home .bx-header h2{color: #FFF;}
.bx-bang-gia-home .list-item{position: relative;}
.bx-bang-gia-home .list-item:before{content:'';width: 100%;height: 1px;position: absolute;background: var(--color-primary);left: 0;top: 197px;}
.bx-bang-gia-home .list-item .item{width: 20%;height: auto;float: left;}
.bx-bang-gia-home .list-item .ctn{width: 150px;height: 150px;background: var(--color-primary);border-radius: 50%;line-height: 1.5;text-align: center;color: #FFF;display: table-cell;vertical-align: middle;transform: translateX(25%);position: relative;}
.bx-bang-gia-home .list-item .ctn:before{content:'';width: 100%;height: 100%;position: absolute;left: 0;top: 0;border: var(--color-primary) dashed 1px;border-radius: 50%;transform: scale(1.13);}
.bx-bang-gia-home .list-item .ctn .ctn-s{text-align: center;color: #FFF;}
.bx-bang-gia-home .list-item .icon{width: 35px;height: 35px;background: var(--color-primary);border-radius: 50%;text-align: center;margin: 30px auto;}
.bx-bang-gia-home .list-item .icon img{position: relative;top: 8px;width: 22px;left: 1px;}
.bx-bang-gia-home .readmore{text-align: center;}
.bx-bang-gia-home .readmore a{background: #FFF;color: var(--color-text);}
.bx-tai-sao{padding: 40px 0 60px 0;}
.bx-tai-sao .list-item{}
.bx-tai-sao .list-item .row{margin-bottom: 30px;}
.bx-tai-sao .list-item .col-md-4{text-align: center;}
.bx-tai-sao .list-item .col-md-3{text-align: center;}
.bx-tai-sao .list-item .col-md-4 .ctn{width: 100%;height: 100%;float: left;box-shadow: 1px 1px 5px 1px var(--color-border);border-radius: 5px;padding: 10px 15px 15px 15px;transition:0.5s;background: #FFF;}
.bx-tai-sao .list-item .col-md-3 .ctn{width: 100%;height: 100%;float: left;box-shadow: 1px 1px 5px 1px var(--color-border);border-radius: 5px;padding: 10px 15px 15px 15px;transition:0.5s;background: #FFF;}
.bx-tai-sao .list-item .col-md-4:hover .ctn{background:#fff}
.bx-tai-sao .list-item .col-md-3:hover .ctn{background:#fff}
.bx-tai-sao .list-item .col-md-4:hover{}
.bx-tai-sao .list-item .icon{}
.bx-tai-sao .list-item .icon img{height: 70px;}
.bx-tai-sao .list-item .col-md-4:hover .icon img{filter: brightness(100);}
.bx-tai-sao .list-item .col-md-3:hover .icon img{filter: brightness(100);}
.bx-tai-sao .list-item .col-md-4 h3{text-transform: uppercase;font-size: 17px;margin: 10px 0 20px 0;transition:0.5s}
.bx-tai-sao .list-item .col-md-4 .heading-h3{text-transform: uppercase;font-size: 17px;margin: 10px 0 20px 0;transition:0.5s;font-weight: bold}
.bx-tai-sao .list-item .col-md-3 h3{text-transform: uppercase;font-size: 17px;margin: 10px 0 20px 0;transition:0.5s}
.bx-tai-sao .list-item .col-md-3 .heading-h3{text-transform: uppercase;font-size: 17px;margin: 10px 0 20px 0;transition:0.5s;font-weight: bold}
.bx-tai-sao .list-item .col-md-4:hover h3{color:#FFF}
.bx-tai-sao .list-item .col-md-4:hover .heading-h3{color:#FFF}
.bx-tai-sao .list-item .col-md-3:hover h3{color:#FFF}
.bx-tai-sao .list-item .col-md-3:hover .heading-h3{color:#FFF}
.bx-tai-sao .list-item .col-md-4 p{transition:0.5s}
.bx-tai-sao .list-item .col-md-4 a{color:#333}
.bx-tai-sao .list-item .col-md-3 p{transition:0.5s}
.bx-tai-sao .list-item .col-md-3 a{color:#333}
.bx-tai-sao .list-item .col-md-4:hover p{color:#FFF;}
.bx-tai-sao .list-item .col-md-3:hover p{color:#FFF;}
.bx-cam-ket{background: var(--color-bg);height:390px}
.bx-cam-ket .col-md-7{height:390px;padding: 40px 0;background-position: right bottom;background-size: 200px;}
.bx-cam-ket .col-md-7 h2{text-transform: uppercase;color: var(--color-primary);font-size: 21px;position: relative;}
.bx-cam-ket .col-md-7 h2:before{content:'';width: 80px;height: 3px;background: var(--color-primary);position: absolute;bottom: -10px;left: 0;}
.bx-cam-ket .col-md-7 ul{width: calc(100% - 250px);height: auto;float: left;margin-top: 30px;}
.bx-cam-ket .col-md-7 ul li{width: 100%;height: auto;float: left;padding-bottom: 15px;position: relative;padding-left: 30px;font-size: 15px;}
.bx-cam-ket .col-md-7 ul li strong{color: var(--color-primary);}
.bx-cam-ket .col-md-7 ul li:before{content:'';background:url('../images/icon-check-b.png');width: 19px;height: 18px;position: absolute;left: 0;background-size: 19px;top: 4px;}
.bx-cam-ket .col-md-5{}
.bx-cam-ket .col-md-5 .frm{width: 100%;height: auto;background: var(--color-primary);border-radius: 10px;padding: 30px 40px;position: relative;margin-top: 20px;}
.bx-cam-ket .col-md-5 .frm h2{text-align: center;color: #FFF;font-size: 25px;padding-bottom: 30px;text-transform: uppercase}
.bx-cam-ket .col-md-5 .frm .frm-group{width: 100%;height: auto;float: left;margin-bottom: 15px;}
.bx-cam-ket .col-md-5 .frm .frm-group input{width: 100%;height: 40px;font-size: 13px;border: #FFF;border-radius: 5px;padding-left: 10px;}
.bx-cam-ket .col-md-5 .frm .frm-group select{width: 100%;height: 40px;border: 0;border-radius: 5px;font-size: 13px;padding-left: 10px;}
.bx-cam-ket .col-md-5 .frm .frm-group button{background: #111a2b;box-shadow: 4px 4px 0px -1px var(--color-primary);border: 0;cursor: pointer;padding: 13px 38px;}
.bx-cam-ket .col-md-5 .frm .frm-group button span{font-size: 15px;}
.bx-cam-ket .col-md-5 .frm .frm-btn{text-align: center;position: relative;top: 15px;}
.bx-news{padding: 70px 0 30px 0;}
.bx-news .list-item{}
.bx-news .col-md-4{}
.bx-news .thumb{width: 100%;height: 250px;float: left;}
.bx-news .thumb img{width: 100%;height: 100%;object-fit: cover;}
.bx-news .ctn{width: 100%;height: auto;float: left;margin-top: 10px;font-size: 14px}
.bx-news .ctn h3{padding-bottom: 15px;}
.bx-news .ctn h3 a{color: var(--color-text);font-size: 16px;}
.bx-news .ctn p{color: var(--color-text);font-size: 14px;}
.bx-kho{background: var(--color-bg);padding: 30px 0 50px 0;}
.bx-kho .list-kho{}
.bx-kho .list-kho .row{}
.bx-kho .list-kho .col-md-4{}
.bx-kho .list-kho .col-md-3 {
    margin-bottom: 20px;
}
.bx-kho .list-kho .col-md-3 .ctn{width: 100%;height: 100%;background: #FFF;padding: 15px;box-shadow: 1px 1px 3px 1px var(--color-border);}
.bx-kho .list-kho h3{color: var(--color-text);font-size: 17px;padding-bottom: 15px;}
.bx-kho .list-kho .info{width: 100%;height: auto;float: left;padding-bottom: 20px;}
.bx-kho .list-kho .info p{width: 100%;height: auto;float: left;position: relative;padding-left: 20px;font-size: 15px;padding-bottom: 5px;}
.bx-kho .list-kho .info p i{position: absolute;left: 0;color: var(--color-primary);top: 5px;}
footer{background: var(--color-primary-dark);padding: 40px 0;}
footer .row{}
footer .col-md-3{}
footer .logo{}
footer .logo img{margin: auto;display: block;height: 90px;}
footer span{color: #FFF;font-size: 14px;padding: 10px 0;float: left;text-align: justify;}
footer h3{width: 100%;height: auto;float: left;color: #FFF;font-size: 17px;padding-bottom: 15px;}
footer ul{list-style: disc;color: #FFF;padding-left: 15px;}
footer ul li{width: 100%;height: auto;float: left;padding-bottom: 10px;}
footer ul li a{color: #FFF;font-size: 15px;}
footer p{color: #FFF;font-size: 15px;padding-bottom: 11px;padding-left: 25px;position: relative;width: 100%;float: left;}
footer p i{color: var(--color-primary);position: absolute;left: 0;top: 5px;}
footer .list-social{width: 100%;height: auto;float: left;position: relative;top: 10px;}
footer .list-social a{width: 30px;height: 30px;float: left;background: var(--color-primary);text-align: center;line-height: 30px;color: #FFF;border-radius: 50%;margin-right: 10px;}
footer .list-social a i{}
footer .ex{width: 100%;height: auto;float: left;padding-bottom: 10px;padding-top: 13px;}
footer .ex img{height: 50px;padding-right: 10px;}
footer .ex:last-child img{height: 32px;}
.banner-recruitment{
    position: relative;
    height: 220px;
    margin-bottom: 30px;
}
.banner-recruitment img{
    width: 100%;
    float: left;
    height: 100%;
}
.banner-recruitment .title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
}
.banner-recruitment .title h2{
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: normal;
}
.banner-recruitment .title h1{
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: normal;
}
.banner-recruitment .title .txt{
    margin-top: 15px;
}
.banner-recruitment .title .txt a{
    color: #fff;
}
.bx-about-content{padding: 30px 0;background: var(--color-bg);margin-bottom: 30px}
.bx-about-content .ctn{text-align: center;line-height: 25px;font-size: 15px;}
.bx-about-content .ctn iframe{width:885px;height:500px;margin: auto;display: block}
.bx-about-content .ctn p{}
.bx-tai-sao-about{background:url('../images/bg-bang-gia-home.jpg') no-repeat;background-size: cover;}
.bx-tai-sao-about .bx-header h2{color:#FFF}
.bx-sinh-huong{background: var(--color-primary);padding: 30px 0;}
.bx-sinh-huong .bx-header h2{color:#FFF}
.bx-sinh-huong .bx-header p{color:#FFF;text-align: center;padding: 20px;}
.bx-sinh-huong .bx-header h2::before{background:#FFF}
.bx-sinh-huong .list-item{}
.bx-sinh-huong .list-item .col-md-4{}
.bx-sinh-huong .list-item .icon{width: 100%;height: auto;float: left;text-align: center;margin-bottom: 15px;}
.bx-sinh-huong .list-item .icon img{height: 150px;}
.bx-sinh-huong .list-item p{width: 100%;height: auto;float: left;text-align: center;color: #FFF;}
.bx-doi-ngu{padding: 30px 0;}
.bx-doi-ngu .bx-header p{text-align: center;padding: 20px;}
.bx-doi-ngu .col-md-6{}
.bx-doi-ngu .col-md-6 img{margin: auto;display: block;}
.bx-doi-ngu .col-md-6 .item{width: 100%;height: 50px;float: left;background: rgba(255,255,255,1);background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(140,209,133,1) 100%);background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(140,209,133,1)));background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(140,209,133,1) 100%);background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(140,209,133,1) 100%);background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(140,209,133,1) 100%);background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(140,209,133,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8cd185', GradientType=1 );margin-bottom: 25px;border-radius: 50px;position: relative;line-height: 50px;font-size: 16px;}
.bx-doi-ngu .col-md-6 .item .number{width: 65px;height: 65px;background: var(--color-primary);border-radius: 50%;text-align: center;line-height: 65px;font-size: 20px;color: #FFF;font-weight: bold;position: absolute;top: -6px;}
.bx-doi-ngu .col-md-6 .item .number span{}
.bx-doi-ngu .col-md-6 .item .content{padding-left: 80px;}
.bx-chinh-sach{padding: 30px 0;}
.bx-chinh-sach .list-item{}
.bx-chinh-sach .list-item .item{margin-bottom: 20px;}
.bx-chinh-sach .list-item .item.active{}
.bx-chinh-sach .list-item .item .title{width: 100%;height: 50px;float: left;line-height: 50px;position: relative;background: var(--color-bg);cursor: pointer;}
.bx-chinh-sach .list-item .item.active .title{background: var(--color-primary);}
.bx-chinh-sach .list-item .item .title h3{text-transform: uppercase;font-size: 16px;padding-left: 10px;}
.bx-chinh-sach .list-item .item.active .title h3{color: #FFF;}
.bx-chinh-sach .list-item .item .title span{width: 25px;height: 25px;position: absolute;right: 12px;background: var(--color-primary);border-radius: 50%;text-align: center;line-height: 25px;color: #FFF;top: 12px;}
.bx-chinh-sach .list-item .item.active .title span{background: var(--color-bg);color: var(--color-primary);}
.bx-chinh-sach .list-item .item .content{display: none;font-size: 15px;line-height: 25px;padding: 10px;background: var(--color-bg);width: 100%;float: left;padding: 10px 50px 10px 30px;}
.bx-chinh-sach .list-item .item.active .content{display: block}
.bx-chinh-sach .list-item .item .content p{padding-bottom: 10px;line-height: 25px;text-align: justify}
.bx-content-bang-gia{padding: 30px 0}
.bx-content-bang-gia .bx-header{margin-bottom: 0px;}
.bx-content-bang-gia .content{}
.bx-content-bang-gia .content p{font-size: 16px;line-height: 25px;padding-bottom: 5px;text-align: justify}
.bx-content-bang-gia .content table{border-collapse: collapse;}
.bx-content-bang-gia .content table tr{}
.bx-content-bang-gia .content table tr td{height: 40px !important;border: #ebebeb solid 1px;text-align: center;}
.bx-content-bang-gia .content table tr:first-child{}
.bx-content-bang-gia .content table tr:first-child td{background: var(--color-primary) !important;color: #FFF;}
.bx-content-bang-gia .content h3{color: var(--color-primary);font-size: 17px;padding: 10px 0;}
.bx-content-bang-gia .content strong{}
.bx-content-bang-gia .content blockquote{background: #fcf4ec;padding: 10px;border-radius: 5px;margin: 10px 0;color: #c9564d;}
.bx-content-bang-gia .content blockquote p{font-size: 15px;text-align: justify}
.bx-content-bang-gia .lien-he{background: #fcf4ec;padding: 25px 20px;}
.bx-content-bang-gia .lien-he h4{color: #c9564f;font-size: 16px;margin-bottom: 10px;}
.bx-content-bang-gia .lien-he .list-item{}
.bx-content-bang-gia .lien-he .list-item .item{width: 33.3333%;height: auto;float: left;}
.bx-content-bang-gia .lien-he .list-item .item:nth-child(1){}
.bx-content-bang-gia .lien-he .list-item .item:nth-child(2){padding-left: 20px;}
.bx-content-bang-gia .lien-he .list-item .item:nth-child(3){padding-left: 40px;}
.bx-content-bang-gia .lien-he .list-item .item .icon{width: 25px;float: left;color: var(--color-primary);font-size: 20px;}
.bx-content-bang-gia .lien-he .list-item .item .icon i{}
.bx-content-bang-gia .lien-he .list-item .item strong{}
.bx-content-bang-gia .lien-he .list-item .item p{padding-left: 25px;}
.breadcrum{padding: 10px 0;}
.breadcrum .container{border-bottom: #ebebeb solid 1px;padding-bottom: 10px;}
.breadcrum a{color: var(--color-primary-dark);font-size: 15px;padding-right: 3px;}
.breadcrum span{color: var(--color-primary-dark);font-size: 15px;padding-right: 3px;}
.bx-new-page{}
.bx-new-page .list-cate{text-align: center;margin-bottom: 20px;}
.bx-new-page .list-cate a{background: var(--color-bg);padding: 5px 15px;border-radius: 5px;margin: 0 10px;color: var(--color-text);width: auto;margin-bottom: 10px;display: inline-block;}
.bx-new-page .list-cate a.active{background: var(--color-primary);color:#FFF}
.bx-new-page .list-post{}
.bx-new-page .list-post .title{margin-bottom: 15px;}
.bx-new-page .list-post .title h2{border-left: var(--color-primary) solid 3px;padding-left: 10px;}
.bx-new-page .list-post .title h2 a{color: var(--color-primary);text-transform: uppercase;font-size: 18px;}
.bx-new-page .list-post .list{margin-bottom: 20px;}
.bx-new-page .list-post .list .row{margin-bottom: 20px;}
.bx-new-page .list-post .list .col-md-4{margin-bottom: 35px;}
.bx-new-page .list-post .list .thumb{width: 100%;height: 250px;float: left;}
.bx-new-page .list-post .list .thumb img{width: 100%;height: 100%;object-fit: cover;border-radius: 10px;}
.bx-new-page .list-post .list .ctn{width: 100%;height: auto;float: left;margin-top: 15px;font-size: 14px;}
.bx-new-page .list-post .list .ctn h3{font-size: 16px;}
.bx-new-page .list-post .list .ctn h3 a{color: var(--color-text);font-size: 17px;width: 100%;float: left;margin-bottom: 10px;}
.bx-new-page .list-post .list .ctn p{width: 100%;float: left;font-size: 15px;}
.news-last{}
.news-last .list-item{}
.news-last .list-item .col-md-6{}
.news-last .list-item .heading{margin-bottom: 15px;}
.news-last .list-item .heading h2{border-left: var(--color-primary) solid 3px;padding-left: 10px;olor: var(--color-primary);text-transform: uppercase;font-size: 18px;}
.news-last .list-item .item{border-bottom: #F0F0F0 solid 1px;padding: 10px 0;}
.news-last .list-item .item .thumb{width: 150px;height: auto;float: left;}
.news-last .list-item .item .thumb img{width: 100%;height: 85px;object-fit: cover;border-radius: 5px}
.news-last .list-item .item .title{width: calc(100% - 150px);height: auto;float: left;padding-left: 15px;}
.news-last .list-item .item .title a{color: var(--color-text);}
.time-news{font-size: 14px;padding-top: 5px;}
.time-news i{color: var(--color-primary);}
.detail-news{background: var(--color-primary);}
.detail-news .container{width: 980px;}
.detail-news .main{width: 100%;height: auto;float: left;background: #FFF;border-radius: 10px;box-shadow: 0px 0px 19px -5px #252525;padding: 40px 60px;position: relative;top: -40px;}
.detail-news .main h1{font-size: 26px;margin-bottom: 10px;}
.detail-news .main .content{padding: 10px 0;}
.detail-news .main .content p{padding: 7px 0;font-size: 16px;line-height: 25px;text-align: justify;}
.detail-news .main .content h2{padding-bottom: 10px;}
.detail-news .main .content h3{padding-bottom: 10px;}
.detail-news .main .content .wp-caption{width:100% !important;display:block}
.detail-news .main .content .wp-caption img{width:auto;display:block}
.detail-news .main .content .wp-caption .wp-caption-text{font-size: 14px;font-style: italic;text-align: center;}
.detail-news .main .content img{max-width: 100%;margin: auto;display: block;}
.detail-news .author{position: relative;margin-top: 15px;}
.detail-news .author:before{content:'';width: 100%;height: 1px;background: #E8E8E8;position: absolute;left: 0;top: 75px;}
.detail-news .author .avatar{width: 100%;height: 150px;float: left;}
.detail-news .author .avatar img{width: 150px;height: 150px;border-radius: 50%;object-fit: cover;margin: auto;display: block;position: relative;z-index: 9;border: #FFF solid 10px;float: initial;}
.detail-news .author .name{text-align: center;width: 100%;height: auto;float: left;font-size: 15px;}
.detail-news .author .description{text-align: center;width: 100%;height: auto;float: left;font-size: 15px;padding-top: 5px;}
.detail-news .author .list-social{width: 100%;height: auto;float: left;text-align: center;padding-top: 10px;}
.detail-news .author .list-social a{width: 35px;height: 35px;display: inline-block;background: var(--color-primary);border-radius: 50%;line-height: 35px;text-align: center;color: #FFF;}
.detail-news .author .list-social a i{}
.detail-news table{border-collapse: collapse;}
.detail-news table tr{}
.detail-news table tr td{height: 40px !important;border: #ebebeb solid 1px;text-align: center;}
.bx-video-huong-dan{padding: 30px 0}
.bx-video-huong-dan .container{}
.bx-video-huong-dan iframe{width: 885px;height: 500px;margin: auto;display: block;}
.dk-huong-dan-page{background: url('../images/bg-bang-gia-home.jpg');height: 390px;}
.dk-huong-dan-page .col-md-7{height: 390px;}
.dk-huong-dan-page .list-item{width: calc(100% - 300px);float: left;position: relative;top: 20px;}
.dk-huong-dan-page .list-item .item{width: 100%;height: 50px;float: left;background: rgba(255,255,255,0);background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,209,133,1) 100%);background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(140,209,133,1)));background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,209,133,1) 100%);background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,209,133,1) 100%);background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,209,133,1) 100%);background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(140,209,133,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8cd185', GradientType=1 );margin-bottom: 28px;border-radius: 50px;position: relative;}
.dk-huong-dan-page .list-item .item .icon{width: 65px;height: 65px;position: absolute;background: var(--color-primary);border-radius: 50%;text-align: center;top: -7px;}
.dk-huong-dan-page .list-item .item .icon img{position: relative;top: 16px;}
.dk-huong-dan-page .list-item .item .text{padding-left: 80px;line-height: 50px;color: #FFF;}
.bx-lien-he-huong-dan{background: var(--color-primary);padding: 30px 0;}
.bx-lien-he-huong-dan h2{text-align: center;text-transform: uppercase;color: #FFF;font-weight: normal;font-size: 20px;}
.bx-lien-he-huong-dan .main{margin-top: 25px;}
.bx-lien-he-huong-dan .main .item{width: 100%;height: 50px;float: left;position: relative;background: #234a2d;background: linear-gradient(to right, rgba(255,255,255,0) 0%, #234a2d 100%);filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8cd185', GradientType=1 );border-radius: 50px;}
.bx-lien-he-huong-dan .main .item .icon{width: 60px;height: 60px;position: absolute;background: #FFF;color: var(--color-primary);text-align: center;line-height: 60px;border-radius: 50%;font-size: 20px;top: -5px;}
.bx-lien-he-huong-dan .main .item .icon i{}
.bx-lien-he-huong-dan .main .item .text{width: 100%;height: 50px;float: left;line-height: 50px;padding-left: 70px;color: #FFF;}
.bx-lien-he-huong-dan .main .item .text span{}
.bx-lien-he-huong-dan .main .item .text strong{}
.bx-tai-sao-bg-page .list-item .icon img{height: 60px;}
.bx-tai-sao-bg-page .list-item .col-md-4:hover .icon img{filter: none}
.bx-tai-sao-bg-page .list-item .col-md-4:hover p{color:#333}
.popup{width: 100%;height: 100%;float: left;position: fixed;left: 0;bottom: 0;z-index: 2000;}
.popup:before{content: '';width: 100%;height: 100%;position: absolute;left: 0;bottom: 0;background: rgba(0,0,0,0.5);}
.popup .content-popup{width: auto;margin: auto;text-align: center;position: absolute;z-index: 2001;bottom: 0px;left: 0;right: 0;top:0}
.popup .content-popup .ctn-img{width: auto;position: relative;display: inline-block;}
.popup .content-popup img{}
.popup .content-popup .close{width: 50px;height: 50px;color: #FFF;position: absolute;top: -30px;right: -50px;text-align: center;line-height: 50px;font-size: 30px;cursor: pointer;opacity: 1;}
.btn-menu-mobile{display: none}
.bx-ctn-huong-dan{background: var(--color-primary);}
.bx-ctn-huong-dan .content{padding: 20px 0;display:none}
.bx-ctn-huong-dan .content.active{display:block}
.bx-ctn-huong-dan .row{}
.bx-ctn-huong-dan .col-md-5{}
.bx-ctn-huong-dan .col-md-5 img{height: 240px;margin: auto;display: block;}
.bx-ctn-huong-dan .col-md-7{/*! display: table; */}
.bx-ctn-huong-dan .col-md-7 .ctn{position: absolute;top: 50%;left: 0;transform: translateY(-50%);}
.bx-ctn-huong-dan .col-md-7 .ctn h3{text-transform: uppercase;color: #FFF;padding-bottom: 15px;font-size: 20px;}
.bx-ctn-huong-dan .col-md-7 .ctn .text{color: #FFF;padding-right: 100px;line-height: 25px;}
.bx-ctn-huong-dan .col-md-7 .ctn .btn{margin-top: 15px;}
.bx-ctn-huong-dan .col-md-7 .ctn .btn a{background: #111a2b;}
.bx-hd-page{padding-bottom: 20px;}
header .main-header .menu ul li a i{display: none}
.wc_email-wrapper{display: none !important;}
.pagination{width: 100%;height: auto;float: left;margin-bottom: 20px;}
.pagination li{width: 35px;float: left;height: 33px;text-align: center;line-height: 29px;border: #CCC solid 1px;border-left: 0;}
.pagination li.active{background: var(--color-primary);border: var(--color-primary) solid 1px;}
.pagination li.active span{color: #FFF;font-size: 13px;}
.pagination li a{color: var(--color-primary);font-size: 12px;}
.pagination li:first-child{border-left: #CCC solid 1px;border-radius: 3px 0 0 3px;}
.pagination li:last-child{border-radius: 0 3px 3px 0;}
.pagination li.previous{width: auto;font-size: 14px;padding: 0 10px;}
.pagination li.previous a{}
.pagination li.next{width: auto;padding: 0 10px;}
.pagination li.next a{}
.frm-in-page{width: 100%;height: auto;float: left;margin-top: 40px;}
.frm-in-page .frm{width: 450px;height: auto;background: var(--color-primary);border-radius: 10px;padding: 30px 40px;position: relative;top: -40px;margin: auto;display: flow-root;}
.frm-in-page .frm h2{text-align: center;color: #FFF;font-size: 25px;padding-bottom: 30px;text-transform: uppercase}
.frm-in-page .frm .frm-group{width: 100%;height: auto;float: left;margin-bottom: 15px;}
.frm-in-page .frm .frm-group input{width: 100%;height: 40px;font-size: 13px;border: #FFF;border-radius: 5px;padding-left: 10px;}
.frm-in-page .frm .frm-group select{width: 100%;height: 40px;border: 0;border-radius: 5px;font-size: 13px;padding-left: 10px;}
.frm-in-page .frm .frm-group button{background: #111a2b;box-shadow: 4px 4px 0px -1px var(--color-primary);border: 0;cursor: pointer;padding: 13px 38px;}
.frm-in-page .frm .frm-group button span{font-size: 15px;}
.frm-in-page .frm .frm-btn{text-align: center;position: relative;top: 15px;}
.banner-recruitment-post{margin-bottom: 0 !important}
@media(min-width:1900px){
}
@media(max-width:768px){
    
    .container{width:100%}
    header .main-header .block-right{display: block;width: 100% !important;margin-top: 5px;position: absolute;top: 59px;left: -1px;visibility: hidden;opacity: 0}
    header .main-header .block-right.active{visibility: visible;opacity: 1;}
    .header-main.fixed .top-header{height:0;overflow: hidden}
    header .main-header .menu{display:block;}
    .bx-huong-dan-home .item{width: 150px;margin-bottom: 20px;}
    .bx-huong-dan-home .list-huong-dan::before{display: none}
    .bx-huong-dan-home .list-huong-dan .main{width: 900px;}
    .bx-header h2{font-size: 20px;}
    .bx-bang-gia-home .list-item .item{width: 200px;}
    .bx-bang-gia-home .list-item{display: flex;width: 1024px;}
    .bx-bang-gia-home .main{overflow: auto;padding-top: 20px;}
    .bx-bang-gia-home .container{padding-right: 0px;padding-left: 0px;}
    .bx-tai-sao .list-item .col-md-4{/*! width:50%; */margin-bottom: 15px;}
    .bx-cam-ket .col-md-7{background: none;}
    .bx-cam-ket .col-md-7 ul{width: 100%;}
    .bx-cam-ket{padding: 0 15px;height: auto}
    .bx-news .col-md-4{margin-bottom: 30px;}
    .bx-kho .list-kho .col-md-4{margin-bottom: 15px}
    .bx-doi-ngu .col-md-6 .item .content{font-size: 14px;height: 50px;display: table-cell;vertical-align: middle;}
    .bx-tai-sao .list-item .col-md-3{margin-bottom: 30px;}
    .dk-huong-dan-page .list-item{width:100%;margin-bottom: 30px;}
    .bx-chinh-sach .list-item .item .title{overflow: hidden;height: auto;line-height: 25px;padding: 5px 35px 5px 0;font-size: 15px;}
    .bx-lien-he-huong-dan .main .col-md-4{margin-bottom: 15px}
    .bx-content-bang-gia .lien-he .list-item .item{width:100%;padding-left: 0 !important;margin-bottom:15px}
    .bx-tai-sao .list-item .col-md-4{/*! width:33.333% */}
    .bx-new-page .list-cate a{width:43%;float: left;margin-bottom: 10px;}
    .banner-images-news img{max-width: 100%}
    .detail-news .container{width:100%}
    .detail-news .main{padding: 20px 20px;}
    .banner-recruitment .title h1{font-size: 22px;}
    .banner-recruitment .title{/*! top: 20px; *//*! left: 0; *//*! transform: translate(0%,0%); */}
    .popup .content-popup .ctn-img{    width: 100%;height: auto;}
    .popup .content-popup{    width: 90%;height: 218px;}
    .popup .content-popup img{    width: 100%;height: 100%;}
    .popup .content-popup .close{top: -50px;right: -25px;}
    header{height: 100px;}
    .header-main{height: 70px;}
    header .main-header{height: 65px;}
    header .main-header .logo img{height: 45px;
                                  position: relative;
                                  top: 12px;
                                  left: -5px;}
    header .top-header .text-link{right:0}
    .bx-tai-sao .list-item .icon{width:90px;height:90px;float:left;}
    .bx-tai-sao .list-item .col-md-4 .heading-h3{width: calc(100% - 90px);float: left;text-align: left;margin-bottom: 5px;}
    .bx-tai-sao .list-item .col-md-4 p{width: calc(100% - 90px);text-align: left;float:left}
    .bx-tai-sao .list-item .col-md-4 p.page-huong-dan{height: 65px;display: table-cell;vertical-align: middle;float: initial;}
    .bx-tai-sao .list-item .col-md-3 p.page-huong-dan{height: 65px;display: table-cell;vertical-align: middle;float: initial;}
    .bx-tai-sao .list-item .page-hd img{height: 55px !important;top: 4px !important;}
    .bx-tai-sao .list-item .row{margin-bottom: 0;}
    .bx-cam-ket .col-md-5 .frm{height: calc(100% + 35px);margin-top: 15px;padding: 30px 20px;}
    .bx-cam-ket .col-md-5 .frm h2{text-transform: uppercase;}
    .banner-recruitment img{object-fit: cover;}
    .bx-doi-ngu .col-md-6 .item{height: auto;line-height: 25px;min-height: 50px;padding-right: 10px;}
    .bx-chinh-sach .list-item .item .title span{top: 0;bottom: 0;margin: auto;}
    .bx-chinh-sach .list-item .item .title h3{font-size: 15px;}
    header .main-header .block-right .icon-link{display: none}
    header .main-header .menu ul li{-moz-transform: translate(1px, 0px) skew(0deg, 0deg);-webkit-transform: translate(1px, 0px) skew(0deg, 0deg);-o-transform: translate(1px, 0px) skew(0deg, 0deg);-ms-transform: translate(1px, 0px) skew(0deg, 0deg);transform: translate(1px, 0px) skew(0deg, 0deg);width: 100%;height: auto;line-height: 40px;text-align: left;border-bottom: var(--color-primary) solid 1px;}
    header .main-header .menu ul li a{}
    header .main-header .menu ul li span{-moz-transform: translate(1px, 0px) skew(0deg, 0deg);-webkit-transform: translate(1px, 0px) skew(0deg, 0deg);-o-transform: translate(1px, 0px) skew(0deg, 0deg);-ms-transform: translate(1px, 0px) skew(0deg, 0deg);transform: translate(1px, 0px) skew(0deg, 0deg);}
    header .main-header .menu::before{display:none}header .main-header .menu::after{display: none}
    .btn-menu-mobile{display: block;position: absolute;width: 50px;height: 50px;font-size: 30px;color: var(--color-primary);right: 0;text-align: center;line-height: 50px;top: 6px;}
    .bx-huong-dan-home .list-huong-dan{margin-bottom: 0;/*! overflow: auto; */overflow-x: auto;overflow-y: hidden;}
    .bx-huong-dan-home{padding-bottom: 0;}
    .bx-huong-dan-home.inhome{padding-bottom: 30px}
    .bx-ctn-huong-dan .col-md-7 .ctn{position: relative;text-align: center;margin: 10px 0 30px 0;}
    .bx-ctn-huong-dan .col-md-7 .ctn .text{padding-right: 0;}
    .banner-recruitment-post .title h1{font-size: 17px;}
    .banner-recruitment-post .title{top: 50%;left: 0;transform: translate(0%,-70%);}
    .detail-news .main .content .wp-caption img{height: auto}
    header .main-header .list-menu-item{position: relative;top: 0;transform: translate(1px, 0px) skew(0deg, 0deg);width: 100%;visibility: visible;opacity: 1;display: none;transition: 0s}
    header .main-header .list-menu-items{position: relative;top: 0;transform: translate(1px, 0px) skew(0deg, 0deg);width: 100%;visibility: visible;opacity: 1;display: none;transition: 0s;right:0}
    header .main-header .menu ul li i{position: absolute;top: 0;right: 0;width: 40px;height: 40px;text-align: center;color: #FFF;font-style: normal;font-size: 20px;}
    .bx-bang-gia-home .list-item .ctn{transform: none;margin: auto;left: 25px;} 
    .bx-services{padding-top: 30px}
    header .main-header .menu ul li i{display: block}
    footer{padding: 15px 0;}
    footer .list-social{margin-bottom: 20px}
    .bx-tai-sao .list-item .col-md-4 .ctn.page-hd{height: 85px;}
    .bx-tai-sao .list-item .col-md-3 .ctn.page-hd{height: 85px;}
    .banner-recruitment .title .txt{font-style: italic;}
    .bx-tai-sao .list-item .icon img{height: 70px;position: relative;top: 15px;}
    .bx-video-huong-dan iframe{width:100%;height: 190px;}
    .bx-about-content .ctn iframe{width:100%;height:190px}
    .bx-tai-sao .list-item .col-md-3 p.page-huong-dan{text-align: left}
    .bx-video-huong-dan{padding-bottom: 15px}
    .bx-ctn-huong-dan .col-md-5 img{max-width: 100%;height: auto;}
    .bx-huong-dan-home .item::after{bottom: -20px;}
    .header-main.fixed{top: 0;}
    .header-main.fixed .logo{top: 0;height: 63px;width: auto;}
    .header-main.fixed .logo img{height: 50px;top: 11px;}
    .detail-news .main .content iframe{height:200px;width:100%}
    .frm-in-page .frm{width: 100%;padding: 30px 10px;}
.frm-in-page .frm h2{font-size: 20px;}
}        

    .table-responsive table{
        border-collapse: collapse;
        border-spacing: 0;
        table-layout: auto;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }

    .table-responsive {
        overflow-x: auto;
        min-height: 0.01%;
        margin-bottom: 20px;
    }

    .table-responsive::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }
    .table-responsive::-webkit-scrollbar-thumb {
        background: #dddddd;
        border-radius: 2px;
    }
    .table-responsive::-webkit-scrollbar-track-piece {
        background: #fff;
    }

    @media (max-width: 992px) {
        .table-responsive table{
            width: auto!important;
            margin:0 auto 15px auto!important;
        }
    }

    @media screen and (max-width: 767px) {
        .table-responsive {
            width: 100%;
            margin-bottom: 15px;
            overflow-y: hidden;
            -ms-overflow-style: -ms-autohiding-scrollbar;
        }
        .table-responsive::-webkit-scrollbar {
            width: 5px;
            height: 5px;
        }

    }


    @media screen and (min-width: 1200px) {
        .table-responsive .table {
            max-width: 100%!important;
        }
    }
    .wprt-container .table > thead > tr > th,
    .wprt-container .table > tbody > tr > th,
    .wprt-container .table > tfoot > tr > th,
    .wprt-container .table > thead > tr > td,
    .wprt-container .table > tbody > tr > td,
    .wprt-container .table > tfoot > tr > td,
    .wprt-container .table > tr > td{
        border: 1px solid #dddddd!important;
    }

    .wprt-container .table > thead > tr > th,
    .wprt-container .table > tbody > tr > th,
    .wprt-container .table > tfoot > tr > th,
    .wprt-container .table > thead > tr > td,
    .wprt-container .table > tbody > tr > td,
    .wprt-container .table > tfoot > tr > td,
    .wprt-container .table > tr > td{
        padding-top: 8px!important;
        padding-right: 8px!important;
        padding-bottom: 8px!important;
        padding-left: 8px!important;
        vertical-align: middle;
        text-align: left;
    }

    .wprt-container .table-responsive .table tr:nth-child(odd) {
        
    }

    .wprt-container .table-responsive .table tr:nth-child(even){
        background-color: #f9f9f9!important;
    }

    .wprt-container .table-responsive .table thead+tbody tr:nth-child(even) {
        
    }

    .wprt-container .table-responsive .table thead+tbody tr:nth-child(odd){
        background-color: #f9f9f9!important;
    }
    
    
    .table-responsive table p {
        margin: 0!important;
        padding: 0!important;
    }

    .table-responsive table tbody tr td, .table-responsive table tbody tr th{
        background-color: inherit!important;
    }



@media screen and (max-width: 768px) {
}


.bx-cam-ket .col-md-7 {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%) !important;
}
