body {
    min-height: 100vh;
    font-family: "SVN-Gotham Rounded Regular";
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #414142;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "SVN-Gotham Rounded Bold";
    color: #FF671F;
    line-height: 1.2;
    margin: 0 0 20px;
}
h1 {
    font-size: 43px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 12px;
}
a {
    color: #414142;
    text-decoration: none;
}
a:hover {
    color: #FF671F;
    text-decoration: none;
}

p:last-child {
    margin: 0;
}

strong {
    font-family: "SVN-Gotham Rounded Bold";
}

img.msb-full-width {
    width: 100%;
}

.msb-col {
    margin-bottom: 30px;
}

.msb-black-color {
    color: #231F20;
}
.msb-white-color {
    color: #ffffff;
}
.msb-red-color {
    color: #ED1C24;
}
.msb-orange-color {
    color: #FF671F;
}
.msb-bg-grey {
    padding: 70px 0;
    background: #f2f2f2;
}
.msb-bg-grey2 {
    padding: 70px 0 40px;
    background: #f2f2f2;
}

.d-flex-align-center {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.d-flex-space-between {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.d-flex-center-between {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* Effect Move */
.bvbMoveInGrid {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.bvbMoveInGrid:nth-child(odd) {
    -webkit-animation: moveInLeft 1.5s ease-out 0.3s;
    animation: moveInLeft 1.5s ease-out 0.3s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
.bvbMoveInGrid:nth-child(even) {
    animation: moveInRight 1.5s ease-out 0.3s;
    animation-fill-mode: backwards;
}
.bvbMoveInBottom {
    -webkit-animation: moveInBottom 1.5s ease-out .5s;
    animation: moveInBottom 1.5s ease-out .5s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.bvbMoveInBottom:nth-child(2) {
    -webkit-animation: moveInBottom 1.5s ease-out 1s;
    animation: moveInBottom 1.5s ease-out 1s;
}
.bvbMoveInBottom:nth-child(3) {
    -webkit-animation: moveInBottom 1.5s ease-out 1.5s;
    animation: moveInBottom 1.5s ease-out 1.5s;
}
.bvbMoveInBottom:nth-child(4) {
    -webkit-animation: moveInBottom 1.5s ease-out 2s;
    animation: moveInBottom 1.5s ease-out 2s;
}
.bvbMoveInBottom:nth-child(5) {
    -webkit-animation: moveInBottom 1.5s ease-out 2.5s;
    animation: moveInBottom 1.5s ease-out 2.5s;
}
.bvbMoveInBottom:nth-child(6) {
    -webkit-animation: moveInBottom 1.5s ease-out 3s;
    animation: moveInBottom 1.5s ease-out 3s;
}
.bvbMoveInBottom:nth-child(7) {
    -webkit-animation: moveInBottom 1.5s ease-out 3.5s;
    animation: moveInBottom 1.5s ease-out 3.5s;
}
.bvbMoveInBottom:nth-child(8) {
    -webkit-animation: moveInBottom 1.5s ease-out 4s;
    animation: moveInBottom 1.5s ease-out 4s;
}
.bvbMoveInBottom:nth-child(9) {
    -webkit-animation: moveInBottom 1.5s ease-out 4.5s;
    animation: moveInBottom 1.5s ease-out 4.5s;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* End Effect Move */

/* Effect Hover */
.msb-item-effect {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-item-effect:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}
.msb-item-effect-shadow {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-item-effect-shadow:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    /*-webkit-box-shadow: 0 0 10px -1px rgba(255,103,31,0.5);*/
    /*box-shadow: 0 0 10px -1px rgba(255,103,31,0.5);*/
    -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}
.msb-item-effect-before {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-item-effect-before:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}
.msb-item-effect-before:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,103,31,0) 0%, rgba(255,103,31,.1) 100%);
    background: linear-gradient(to right, rgba(255,103,31,0) 0%, rgba(255,103,31,.1) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.msb-item-effect-before:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Button */
.msb-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}
.msb-btn img {
    width: auto !important;
    display: inline-block !important;
    position: relative;
    top: -2px;
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-btn:hover img {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
.msb-btn.icon-left img {
    display: inline-block;
    margin: 0 10px 0 0;
}
.msb-btn.icon-left:hover img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.msb-btn img.hover,
.msb-btn:hover img.default {
    display: none !important;
}
.msb-btn:hover img.hover {
    display: inline-block !important;
}
.msb-btn.msb-btn-1 {
    line-height: 36px;
    border: 2px #FF671F solid;
    color: #FF671F;
}
.msb-btn-1:hover {
    color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    -webkit-background-image: linear-gradient(to bottom, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
    background-image: linear-gradient(to bottom, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
}
.msb-btn-2 {
    color: #ffffff;
    position: relative;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    z-index: 0;
    background: #FF671F;
    -webkit-background-image: linear-gradient(to bottom, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
    background-image: linear-gradient(to bottom, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
}
.msb-btn-2:hover {
    padding: 0 36px;
    color: #ffffff;
}
.msb-btn-2:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-background-image: linear-gradient(to right, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
    background-image: linear-gradient(to right, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.msb-btn-2:hover:after {
    width: 100%;
}
.msb-btn.msb-btn-3 {
    line-height: 36px;
    border: 2px #ffffff solid;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}
.msb-btn.msb-btn-3:hover {
    background: #ffffff;
    color: #FF671F;
}
.msb-btn.msb-btn-3 img {
    width: 12px;
    height: 11px;
}
.msb-btn.msb-btn-3:hover img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.msb-btn-3:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.msb-btn-3:hover:after {
    width: 100%;
}
.msb-btn-4 {
    font-family: "SVN-Gotham Rounded Bold";
    color: #FF671F;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
}
.msb-btn-4:hover {
    color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to bottom, #ed1c24, #ed2523 13%, #f04d22 49%, #f15522 58%, #f26621 81%, #f37021);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.msb-btn-4 img {
    display: inline-block !important;
    width: auto !important;
    margin-left: 10px;
}

/* heading block */
.msb-block {
    margin-bottom: 70px;
}
.msb-block2 {
    margin-bottom: 40px;
}
.msb-block.msb-block3 {
    margin: 0;
}
.msb-heading-block {
    margin-bottom: 30px;
}
.msb-heading-block .left,
.msb-heading-block .right {
    padding-bottom: 10px;
}
.msb-heading-block .title {
    margin: 0;
}
.msb-heading-block .list-category {
    display: table;
    padding: 0;
    margin: 0;
}
.msb-heading-block .list-category li {
    list-style: none;
    float: left;
    padding-right: 32px;
    margin-right: 32px;
    position: relative;
}
.msb-heading-block .list-category li:first-child {
    padding-left: 32px;
}
.msb-heading-block .list-category li:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    top: calc(50% - 10px);
    right: 0;
    background: #707070;
}
.msb-heading-block .list-category li:first-child:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    top: calc(50% - 10px);
    left: 0;
    background: #707070;
}

.msb-heading-block .list-category li a:hover {
    font-family: "SVN-Gotham Rounded Bold";
    color: #414142;
}

.msb-switch-layout {
    display: table;
}
.msb-switch-layout .msb-btn-switch {
    display: inline-block;
    float: left;
    height: 31px;
    line-height: 29px;
    padding: 0 7px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border-radius: 10px;
}
.msb-switch-layout .msb-btn-switch:hover,
.msb-switch-layout .msb-btn-switch.active {
    background: #FF671F;
}
.msb-switch-layout .msb-btn-switch:last-child {
    margin-left: 20px;
}
.msb-switch-layout .msb-btn-switch img {
    height: 18px;
}
.msb-switch-layout .msb-btn-switch img.active,
.msb-switch-layout .msb-btn-switch:hover img.default,
.msb-switch-layout .msb-btn-switch.active img.default {
    display: none;
}
.msb-switch-layout .msb-btn-switch:hover img.active,
.msb-switch-layout .msb-btn-switch.active img.active {
    display: inline-block;
}

/* Carousel */
.owl-carousel .owl-dots {
    text-align: center;
}
.owl-carousel .owl-dots button {
    margin: 0 5px;
    outline: none;
}
.owl-carousel .owl-dots button span {
    display: inline-block;
    width: 20px;
    height: 12px;
    border-radius: 9px;
    background: #CBCBCB;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-dots button:hover span,
.owl-carousel .owl-dots button.active span {
    background: #FF671F;
    width: 67px;
    opacity: 1;
}
.owl-carousel.msb-dot-white .owl-dots button span {
    background: #ffffff;
}
.owl-carousel.msb-dot-white .owl-dots button:hover span,
.owl-carousel.msb-dot-white .owl-dots button.active span {
    background: #ffffff;
}


.owl-carousel .owl-nav button {
    position: relative;
    display: inline-block;
    top: auto;
    bottom: auto;
    left: 0;
    right: auto;
    width: 48px;
    height: 48px;
    border: 2px #FF671F solid !important;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 10px 0 0;
    text-align: center;
    outline: none;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -wbkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-carousel.nav-position-right .owl-nav button {
    margin: 0 0 0 10px;
}
.owl-carousel .owl-nav button:hover {
    -webkit-background-image: linear-gradient(93deg, #ed1c24 2%, #ed2024 8%, #ed2523 15%, #f04d22 49%, #f15522 58%, #f26621 79%, #f37021 97%);
    background-image: linear-gradient(93deg, #ed1c24 2%, #ed2024 8%, #ed2523 15%, #f04d22 49%, #f15522 58%, #f26621 79%, #f37021 97%);
}
.owl-carousel .owl-nav button:before {
    content: "";
    position: absolute;
    width: 13px;
    height: 12px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav button.owl-next:before {
    background-image: url(../images/icons/icon-arrow-right-orange.png);
}
.owl-carousel .owl-nav button.owl-next:hover:before {
    background-image: url(../images/icons/icon-arrow-right-white.png);
}
.owl-carousel .owl-nav button.owl-prev:before {
    background-image: url(../images/icons/icon-arrow-left-orange.png);
}
.owl-carousel .owl-nav button.owl-prev:hover:before {
    background-image: url(../images/icons/icon-arrow-left-white.png);
}

/* Swiper */
.msb-swiper-nav {
    text-align: right;
}
.msb-swiper-nav .swiper-button-white {
    position: relative;
    display: inline-block;
    top: auto;
    bottom: auto;
    left: 0;
    right: auto;
    width: 48px;
    height: 48px;
    border: 1px #FF671F solid;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 0 0 10px;
    text-align: center;
    outline: none;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -wbkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-swiper-nav.position-left .swiper-button-white {
    margin: 10px 0 0 0;
}
.msb-swiper-nav .swiper-button-white:after {
    display: none;
}
.msb-swiper-nav .swiper-button-white:hover {
    -webkit-background-image: linear-gradient(93deg, #ed1c24 2%, #ed2024 8%, #ed2523 15%, #f04d22 49%, #f15522 58%, #f26621 79%, #f37021 97%);
    background-image: linear-gradient(93deg, #ed1c24 2%, #ed2024 8%, #ed2523 15%, #f04d22 49%, #f15522 58%, #f26621 79%, #f37021 97%);
}
.msb-swiper-nav .swiper-button-white img.hover,
.msb-swiper-nav .swiper-button-white:hover img.default {
    display: none;
}
.msb-swiper-nav .swiper-button-white:hover img.hover {
    display: inline-block;
}

.swiper-pagination {
    position: relative;
}
.swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 20px;
    height: 12px;
    border-radius: 9px;
    background: #CBCBCB;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: 5px;
    outline: none;
}
.swiper-pagination .swiper-pagination-bullet:hover,
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FF671F;
    width: 67px;
    opacity: 1;
}
/* recruitment block */
.msb-block.msb-recruitment-block {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 42px 30px 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.msb-recruitment-block:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-background-image: linear-gradient(89deg, #ed1c24 -1%, #ed2523 12%, #f04d22 47%, #f15522 56%, #f26621 78%, #f37021 97%);
    background-image: linear-gradient(89deg, #ed1c24 -1%, #ed2523 12%, #f04d22 47%, #f15522 56%, #f26621 78%, #f37021 97%);
    opacity: 0.86;
    z-index: -1;
}
.msb-recruitment-block .title {
    max-width: 632px;
    color: #ffffff;
    margin: 0 0 15px;
}

/* Live chat */
.msb-live-chat {
    position: fixed;
    bottom: 25px;
    right: 36px;
    z-index: 99999;
}
.msb-live-chat a {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
}
.msb-live-chat a img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 9;
}
.msb-live-chat a:before {
    content: "";
    position: absolute;
    width: 74px;
    height: 74px;
    top: -7px;
    left: -7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(12,111,237,0.10);
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.msb-live-chat a:after {
    content: "";
    position: absolute;
    width: 66px;
    height: 66px;
    top: -3px;
    left: -3px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(12,111,237,0.15);
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* Quicknav */
.msb-quicknav {
    position: fixed;
    top: 216px;
    right: -159px;
    z-index: 99999;
}
.msb-quicknav .item {
    width: 159px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-45px);
    transform: translateX(-45px);
    margin-bottom: 5px;
}
.msb-quicknav .item:hover {
    -webkit-transform: translateX(-159px);
    transform: translateX(-159px);
}
.msb-quicknav .item a {
    display: block;
    color: #ffffff;
    height: 46px;
    line-height: 46px;
    padding: 0 32px 0 12px;
    border-radius: 23px 0 0 23px;
    -webkit-background-image: linear-gradient(to right, #ed1c24, #ed2523 13%, #f04d22 48%, #f15522 58%, #f26621 81%, #f37021);
    background-image: linear-gradient(to right, #ed1c24, #ed2523 13%, #f04d22 48%, #f15522 58%, #f26621 81%, #f37021);
}
.msb-quicknav .item a:hover {
    color: #ffffff;
}
.msb-quicknav .item span {
    display: inline-block;
    width: 36px;
}
.msb-quicknav .item a img {
    max-width: 20px;
}

/* */
.msb-excerpt:before {
    content: "";
    display: table;
    table-layout: fixed;
}
.msb-excerpt:after {
    content: "";
    display: table;
    table-layout: fixed;
    clear: both;
}
.msb-excerpt h1,
.msb-excerpt h2,
.msb-excerpt h3,
.msb-excerpt h4,
.msb-excerpt h5,
.msb-excerpt h6,
.msb-site-detail h1,
.msb-site-detail h2,
.msb-site-detail h3,
.msb-site-detail h4,
.msb-site-detail h5,
.msb-site-detail h6 {
    color: #231F20;
}
.msb-excerpt ul {
    padding-left: 18px;
}
.msb-excerpt ul li {
    margin-bottom: 20px;
}
.msb-excerpt ul li:last-child {
    margin-bottom: 0;
}
.msb-excerpt p {
    margin-bottom: 30px;
}
.msb-excerpt p:last-child {
    margin-bottom: 0;
}
.msb-excerpt img {
    display: inline-block;
    width: 100%;
}
.msb-excerpt img.alignleft {
    width: auto;
    float: left;
    margin-right: 30px;
}
.msb-excerpt img.alignright {
    width: auto;
    float: right;
    margin-left: 30px;
}
.msb-excerpt blockquote {
    padding: 32px 70px;
    background: #f2f2f4;
    font-family: "SVN-Gotham Rounded Italic";
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
}
.msb-excerpt blockquote:before,
.msb-excerpt blockquote:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 36px;
    background-image: url("../images/icons/icon-quote-small.png");
    background-repeat: no-repeat;
}
.msb-excerpt blockquote:before {
    top: 20px;
    left: 42px;
}
.msb-excerpt blockquote:after {
    bottom: 0;
    right: 42px;
}
.msb-excerpt blockquote p {
    margin: 0;
}
.msb-excerpt ol {
    padding: 0;
    margin: 0 0 30px;
}
.msb-excerpt ol li {
    list-style: none;
}
.msb-line {
    margin: 30px 0;
    height: 1px;
    background: rgba(112,112,112,0.5);
}
.msb-social-share {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.msb-social-share .title {
    font-family: "SVN-Gotham Rounded Regular";
    white-space: nowrap;
    margin: 0;
}
.msb-social-share ul {
    padding: 0;
    margin: 0;
    display: table;
}
.msb-social-share ul li {
    float: left;
    list-style: none;
    margin-right: 32px;
}
.msb-social-share ul li:last-child {
    margin-right: 0;
}

/* Widget */
.msb-widget {
    margin-bottom: 55px;
}
.msb-widget:last-child {
    margin-bottom: 0;
}
.msb-widget .widget-title {
    font-size: 22px;
    margin: 0 0 22px;
}
.msb-widget.msb-widget-list {
    -webkit-box-shadow: 0 3px 16px rgba(0,0,0,0.1);
    box-shadow: 0 3px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.msb-widget.msb-widget-list .widget-title {
    padding: 15px 42px 15px 20px;
    position: relative;
    margin: 0;
}
.msb-widget.msb-widget-list .widget-title:after {
    content: "";
    position: absolute;
    width: 17px;
    height: 10px;
    top: 22px;
    right: 20px;
    background-image: url("../images/icons/icon-arrow-down.png");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.msb-widget.msb-widget-list.active-sub .widget-title:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.msb-widget .widget-category {
    display: none;
}
.msb-widget .widget-list {
    padding: 0;
    margin: 0;
}
.msb-widget .widget-list {
    padding: 0;
    margin: 0;
    border-top: 2px #FF671F solid;
}
.msb-widget .widget-list li {
    list-style: none;
    border-bottom: 1px rgba(112,112,112,0.09) solid;
}
.msb-widget .widget-list li:last-child {
    border-bottom: none;
}
.msb-widget .widget-list li a {
    display: block;
    padding: 10px 20px;
}
.msb-widget .widget-related-post .item {
    margin-bottom: 42px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
}
.msb-widget .widget-related-post .item:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}
.msb-widget .widget-related-post .item:last-child {
    margin-bottom: 0;
}
.msb-widget .widget-related-post .item .image {
    height: 210px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
}
.msb-widget .widget-related-post .item:hover .image {
    -webkit-box-shadow: 0 0 10px -1px rgba(255,103,31,0.7);
    box-shadow: 0 0 10px -1px rgba(255,103,31,0.7);
}
.msb-widget .widget-related-post .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.msb-widget .widget-related-post .related-title {
    font-size: 22px;
    margin-bottom: 10px;
}
.msb-widget .widget-related-post .date {
    color: #FF671F;
}
.msb-widget .widget-related-post .date img {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

/* Form */
.msb-form-default .field {
    margin-bottom: 15px;
}
.msb-form-default .field label {
    display: block;
    margin: 0 0 10px;
}
.msb-form-default .field .field-input input,
.msb-form-default .field textarea {
    width: 100%;
    padding: 0 15px;
    border: none !important;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    outline: none !important;
    background: rgba(65,65,66,0.05);
}
.msb-form-default .field .field-input input {
    height: 48px;
    line-height: 48px;
}
.msb-form-default .field textarea {
    height: 142px;
    padding: 15px;
}
.msb-form-default .capcha-code {
    margin-top: 34px;
}
.msb-form-default .reset-code {
    font-size: 12px;
    text-decoration: underline;
}
.msb-form-default .field.field-submit {
    margin: 0;
    padding: 10px 0 0;
}
.msb-form-default button.submit {
    border: none;
    outline: none;
}
.msb-form-contact.v2 {
    padding: 51px 45px;
    -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.msb-form-contact.v2 .fields-capcha:before,
.msb-form-contact.v2 .fields-capcha:after {
    content: "";
    display: table;
}
.msb-form-contact.v2 .fields-capcha:after {
    clear: both;
}
.msb-form-contact.v2 .fields-capcha .field {
    float: left;
}
.msb-form-contact.v2 .fields-capcha .field .input-capcha {
    min-width: 246px;
}
.msb-form-contact.v2 .fields-capcha .field.capcha-code {
    margin-left: 25px;
    margin-top: 39px;
}
.msb-form-contact.v2 .field.field-submit {
    padding: 37px 0 0;
}

.msb-block-nobanner {
    margin-top: 70px;
}

/* popup success */
.msb-popup-success {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    top: 0;
    left: 0;
}
.msb-popup-success.active {
    display: block;
}
.msb-popup-success .bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.56);
}
.msb-popup-success .content {
    position: absolute;
    width: calc(100% - 30px);
    max-width: 940px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 45px 15px;
}
.msb-popup-success .content .title {
    color: #231F20;
    margin: 32px 0 0;
}
.msb-popup-success .content .desc {
    margin: 0 0 30px;
}
.msb-popup-success .content .popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .msb-popup-success .content {
        max-width: 640px;
    }
    .msb-popup-success .content img.image-success {
        max-height: 150px;
    }
}

@media (min-width: 1230px) {
    .container {
        max-width: 1230px;
    }
}

@media (max-width: 1199px) {
    .msb-form-contact.v2 .fields-action .col-action {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .msb-form-contact.v2 .field.field-submit {
        padding: 10px 0 0;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: none !important;
    }
    .msb-block {
        margin-bottom: 70px;
    }
    .msb-block2 {
        margin-bottom: 40px;
    }
    .msb-bg-grey {
        padding: 70px 0;
    }
    .msb-bg-grey2 {
        padding: 70px 0 40px;
    }
    .msb-block-nobanner {
        margin-top: 70px;
    }
    .msb-heading-block.d-flex-center-between {
        display: block;
    }
    .msb-quicknav {
        display: none;
    }
    .msb-live-chat {
        right: 20px;
    }
    .msb-live-chat a {
        width: 46px;
        height: 46px;
    }
    .msb-live-chat a:before {
        width: 66px;
        height: 66px;
        top: -10px;
        left: -10px;
    }
    .msb-live-chat a:after {
        width: 56px;
        height: 56px;
        top: -5px;
        left: -5px;
    }
    .msb-block-switch .msb-heading-block {
        position: relative;
    }
    .msb-block-switch .msb-heading-block .left {
        padding-right: 120px;
    }
    .msb-block-switch .msb-heading-block .msb-switch-layout {
        position: absolute;
        top: 0;
        right: 0;
    }
    .msb-site-detail-content {
        margin-bottom: 70px;
    }
    .msb-popup-success .content {
        padding: 20px 15px;
    }
    .msb-popup-success .content img.image-success {
        max-height: 100px;
    }
    .msb-popup-success .content .title {
        margin: 15px 0 0;
        font-size: 25px;
    }
    .msb-popup-success .content .desc {
        margin: 0 0 15px;
    }
}
@media (max-width: 767px) {
    .msb-block.msb-block-view-all {
        padding-bottom: 70px;
        position: relative;
    }
    .msb-block.msb-block-view-all .msb-heading-block .msb-btn {
        position: absolute;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .msb-heading-block .list-category li {
        padding-right: 15px;
        margin-right: 15px;
    }
    .msb-heading-block .list-category li:first-child {
        padding-left: 15px;
    }
    .msb-excerpt img.alignleft,
    .msb-excerpt img.alignright {
        float: none;
        display: block;
        margin: 0 0 25px;
    }
    .msb-form-default .capcha-code {
        margin-top: 10px;
    }
    .msb-form-contact.v2 {
        padding: 36px 15px;
    }
}

@media (max-width: 575px) {
    .msb-form-contact.v2 .fields-capcha .field.capcha-code {
        margin-left: 15px;
        margin-top: 29px;
    }
    .msb-form-contact.v2 .fields-capcha .field.capcha-code img {
        display: block;
        margin: 0;
    }
}

@media (max-width: 520px) {
    .msb-excerpt img.alignleft{
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .msb-heading-block .title {
        font-size: 25px;
    }
    .msb-recruitment-block .title {
        font-size: 25px;
    }
    .msb-form-contact.v2 .fields-capcha .field .input-capcha {
        width: 145px;
        min-width: auto;
    }
}