/*==================================================
    General
==================================================*/

html,
body {
    padding: 0;
    margin: 0;
}

html {
    height: 100%
}

body {
    font-family: 'Kanit', sans-serif;
    color: #212322;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.6;
    margin: 0px;
    padding: 0;
    line-height: inherit;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}


/*
font-family: 'Roboto', sans-serif;*/

b,
strong {
    font-weight: bold;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #212322;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Roboto', 'Kanit', sans-serif;
}

.nowrap {
    white-space: nowrap;
}

a {
    color: inherit;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.input-block {
    display: block;
    position: relative;
    padding-bottom: 10px
}

.input-text {
    display: block;
    padding-bottom: 7px
}

.form-control {
    -webkit-appearance: none;
    font-family: inherit border-radius: 3px;
    color: #000000 !important;
    padding: 0 15px;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    font-weight: 300;
    border: 1px solid #fff;
    font-family: inherit;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    */
}

.radio-group,
.checkbox-group {
    padding-left: 0;
    position: relative;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    text-align: center;
    display: inline-block;
    vertical-align: top
}

.radio-group {
    display: inline-block;
    position: relative
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: absolute;
    width: 0
}

.checkbox-group label:before,
.radio-group label:before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: transparent;
    border: 1px solid #9e9e9e;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.radio-group label:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.radio-group label,
.checkbox-group label {
    position: relative;
    padding-left: 30px;
    padding-right: 15px;
    text-align: left;
    margin: 1px 0;
    display: block;
    font-weight: 300;
    font-size: inherit;
    line-height: 25px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.checkbox-group label {
    color: inherit;
}

.checkbox-group label span {
    font-size: 12px;
    font-style: italic;
    color: #8f8f8f
}

.radio-group label {
    color: inherit;
    padding-left: 28px
}

.radio-group input[type="radio"]:checked+label:after {
    content: "";
    color: #ea6f21;
    background-color: #9e9e9e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 8px;
    width: 10px;
    height: 10px;
}

.checkbox-group input[type="checkbox"]:checked+label:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 8px;
    left: 2px;
    display: block;
    background-image: url(../img/icons/icon-checked.svg);
    background-position: 0 0;
    background-size: 11px;
    background-repeat: no-repeat;
}

.checkbox-disable.checkbox-group label:before {
    background-color: #c0c0c0;
    border: 2px solid #b1b1b1;
    cursor: default !important
}

.checkbox-disable.checkbox-group input[type="checkbox"]:checked+label:after {
    content: '';
}

.form-control::-webkit-input-placeholder {
    color: #000000;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #000000;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #000000;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #000000;
    opacity: 1;
}

.form-control::placeholder {
    color: #000000;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.select {
    position: relative;
    padding-left: 0 !important;
    cursor: pointer;
    display: block;
    margin-bottom: 0;
    height: 50px;
    cursor: pointer;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 15px;
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 300;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.has-value .select-styled {
    color: #221f1f
}

.select-styled:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -5px;
    width: 16px;
    height: 16px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/icons/icon-arrow-down.svg);
}

.select select {
    opacity: 0
}

.select-options {
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background-color: #fff;
    overflow-x: auto;
}

.select-options li {
    margin: 0;
    padding: 5px 0;
    text-indent: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #373337;
    font-family: inherit;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:hover {
    background: #f1f1f1;
}

.select-options li[rel="hide"] {
    display: none;
}

span.error {
    font-family: inherit;
    font-size: 12px;
    color: red;
    display: block;
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    display: none !important;
}

.form-control.error,
span.error+.select-styled {
    border: 1px solid #ffcaca;
    background-color: #fceeee;
}

.select.has-value .select-styled,
span.error[style="display: none;"]+.select-styled {
    border: 1px solid #ffffff !important;
    background-color: #ffffff !important;
}

.btn {
    padding: 0 20px;
    position: relative;
    background-color: #34B78F;
    border-radius: 3px;
    height: 45px;
    line-height: 45px;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
    border: 1px solid #34B78F;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: #fff !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.pc .btn:hover {
    background-color: #41C89F;
    border: 1px solid #41C89F;
    color: #fff
}

.btn-white {
    border: 0px solid #fff;
    background-color: #fff;
    color: #000;
}

.pc .btn-white:hover {
    color: #fff;
    background-color: #000;
}

.btn-black {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
}

.pc .btn-black:hover {
    color: #fff;
    background-color: #34B78F;
    border: 1px solid #34B78F;
}

.btn-outline-white {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.pc .btn-outline-white:hover {
    color: #000;
    background-color: #fff;
}

.btn-lg {
    height: 60px;
    line-height: 56px;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    background-color: transparent;
}

.btn:focus,
.btn:active,
button:focus,
button:active,
a:focus,
a:active {
    outline: none !important;
    box-shadow: none!important;
}

svg path,
svg rect,
svg line {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/*==================================================
    Icon Setup
==================================================*/

.icons {
    display: inline-block;
    position: relative;
    vertical-align: top;
    /*background-image:url(../img/icons.png);*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
}


/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 5px;
    vertical-align: top;
    border-top: 1px solid #676767;
    border-left: 1px solid #676767;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.arrow-left {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.arrow-right {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.arrow-up {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow-down {
    margin-left: 1px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.icon-close {
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/icon-close.svg);
}

.icon-cursor {
    width: 25px;
    height: 25px;
    background-image: url(../img/icons/icon-cursor.svg);
}

.icon-map {
    width: 17px;
    height: 17px;
    background-image: url(../img/icons/icon-map.svg);
}

.page {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 550px;
}

.container-fluid {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}

.container {
    max-width: calc(1030px + 100px);
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    z-index: 9
}

.compensate-for-scrollbar {
    margin-right: 0 !important
}

.compensate-for-scrollbar .header {
    right: 0
}

body.fancybox-active {
    overflow: visible !important;
    padding-right: 0 !important
}

body.modal-open {}


/*==================================================
    Icon Setup
==================================================*/

.header {
    display: block;
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1020;
}

.header-inner {
    display: block;
    padding: 40px 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-inner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.73;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}

.header .btn-quotation {
    height: 50px;
    line-height: 48px;
    margin-left: auto;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000 !important;
    float: right;
    padding: 0 30px;
}

.header .btn-quotation .icons {
    vertical-align: middle;
}

.pc .header .btn-quotation:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    color: inherit;
}

.modal-open .header-inner {
    display: block;
    padding-right: 17px
}

.dropdown-menu {
    position: absolute;
    will-change: transform;
    top: auto!important;
    left: auto!important;
    transform: translate3d(0px, 0, 0px) !important;
}


/*==================================================
    Header - Menu Desktop
==================================================*/

.navbar-brand {
    width: 73px;
    height: 80px;
    float: left;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar-brand img {
    width: 100%
}


/*==================================================
    Responsive media queries
==================================================*/

@media (max-width: 1440px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991.98px) {
    .container-fluid,
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .header-inner {
        padding: 20px 30px;
    }
    .header .btn-quotation {
        height: 45px;
        line-height: 45px;
        padding: 0 20px;
    }
}

@media (max-width:767px) {
    .container,
    .container-fluid {
        padding: 0 25px
    }
    .header-inner {
        padding: 20px 25px;
    }
}


/*==================================================
    Section - setup
==================================================*/

.section {
    display: block;
    position: relative;
    padding: 70px 0;
}

.background {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}

.article {
    display: block;
    line-height: 1.8
}

.article p {
    margin-bottom: 15px;
}

.article p:last-child {
    margin-bottom: 0px;
}

.heading {
    display: block;
    position: relative;
    z-index: 9
}

.heading h1,
.heading h2 {
    font-size: 42px;
    font-family: 'Roboto', 'Kanit';
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
}

.heading h1 strong,
.heading h2 strong {
    font-weight: 500
}

.heading h1 br {
    display: none;
}

.heading p {
    color: #34B78F;
    font-size: 18px;
}

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

.heading.left {
    text-align: left;
    padding-bottom: 15px;
}

.heading.left h2:before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -95px;
    width: 70px;
    height: 4px;
    background-color: #34B78F
}

.icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll {
    width: 28px;
    height: 51px;
    bottom: 60px;
    right: 60px;
    position: absolute;
    z-index: 99;
    /*box-shadow: inset 0 0 0 1px #fff;*/
    border: 1px solid #fff;
    border-radius: 25px;
}

.icon-scroll:before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    margin-left: -2px;
    top: 10px;
    border-radius: 4px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(26px);
        transform: translateY(26px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(26px);
        transform: translateY(26px);
    }
}


/*==================================================
    section - banner
==================================================*/

.section-banner {
    height: 100vh;
    background-color: #222;
    position: relative;
    padding: 0 !important
}

.flexslider .slides>li {
    height: 100vh;
    position: relative;
}

.flexslider .slides>li .background {}

.flexslider .slides>li .background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 5
}

.flex-direction-nav {
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.flex-direction-nav li {
    position: absolute;
    top: 50%;
    width: 170px;
    height: 80px;
    margin: -40px 0 0 !important;
}

.flex-direction-nav>li.flex-nav-prev {
    left: 0;
    text-align: right;
}

.flex-direction-nav>li.flex-nav-next {
    right: 0;
    left: auto
}

.flex-direction-nav>li>a {
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6
}

.flex-direction-nav>li>a:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    margin-top: -18px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.flex-direction-nav>li>a.prev:before {
    background-image: url(../img/icons/icon-arrow-prev.svg);
    left: 60px;
}

.flex-direction-nav>li>a.next:before {
    background-image: url(../img/icons/icon-arrow-next.svg);
    right: 60px;
}

.pc .flex-direction-nav>li:hover>a.prev:before {
    left: 50px;
}

.pc .flex-direction-nav>li:hover>a.next:before {
    right: 50px;
}

.pc .flex-direction-nav>li:hover>a {
    opacity: 1
}

.flex-direction-nav>li .slide-number {
    font-size: 28px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 500;
    position: relative;
    display: block;
    line-height: 80px;
    padding-left: 15px;
    padding-right: 15px;
}

.flex-direction-nav>li .slide-number:before {
    content: '0';
}


/***/

.flex-banner .slides li .center-group p,
.flex-banner .slides li .center-group h2,
.flex-banner .slides li .bottom-group p {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.flex-banner .slides li.first.flex-active-slide .center-group p {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-banner .slides li.first.flex-active-slide .center-group h2 {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-banner .slides li.first.flex-active-slide .bottom-group p {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-banner .slides li:not(.first).flex-active-slide .center-group p {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-banner .slides li:not(.first).flex-active-slide .center-group h2 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-banner .slides li:not(.first).flex-active-slide .bottom-group p {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.progress-bar-container {
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 9
}

.progress-bar-container .flex-progress-bar {
    background: #34B78F;
    height: 3px;
    /*5*/
    width: 0;
    position: relative;
}

.flex-caption {}

.flex-caption .center-group {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    /* margin-top: -70px; */
    margin-top: -200px;
    font-family: 'Roboto';
    text-align: center;
    font-weight: 500;
    z-index: 9
}

.flex-caption .center-group p {
    color: #34B78F;
    font-size: 15px;
}

.flex-caption .center-group h2 {
    color: #fff;
    font-size: 56px;
    font-weight: inherit;
}

.flex-caption .bottom-group {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    text-align: center;
    z-index: 9
}

.flex-caption .bottom-group p span {
    display: inline-block;
    vertical-align: top;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 8px 18px;
}

.flex-caption .bottom-group p span:last-child {
    padding-top: 0
}

.flex-banner .flex-control-paging li {
    margin: 0 10px;
}

.flex-banner .flex-control-paging li a {
    width: 43px;
    height: 4px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.4);
}

.flex-banner .flex-control-paging li a.flex-active,
.flex-banner .flex-control-paging li a:hover {
    background-color: #34B78F;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 43px;
    height: 4px;
    border-radius: 0;
    border: 0;
    background-color: rgba(255, 255, 255, 0.4);
}

.pc .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:hover,
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #34B78F !important;
}


/*==================================================
    Section - Service
==================================================*/

.section-article .container {
    position: relative;
}

.section-article.gray {
    background-color: #F2F2F2
}

.section-article.dark {
    background-color: #212322;
    color: #fff
}

.section-article .article {
    display: block;
    padding-left: 95px;
    position: relative;
    font-size: 17px;
    color: inherit;
}

.section-article .article .font-xs {
    font-size: 15px;
    font-weight: 300;
}

.section-article .article p {
    margin-bottom: 20px;
}

.section-article .article:last-child {
    margin-bottom: 0
}

.service-photo {
    display: block;
    position: relative;
    z-index: 9
}

.service-photo img {
    max-width: 100%;
    width: 100%
}

.service-photo .photo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
}

.infoleft .service-photo {
    margin-left: -35px
}

.inforight .service-photo {
    margin-right: -35px
}

.section-article .article .inner {
    display: block;
    max-width: 400px;
}

.highlight-label {
    position: absolute;
    right: -60px;
    top: 62%;
    width: 20px;
    height: 20px;
    white-space: nowrap;
    color: #34B78F;
    letter-spacing: 3px;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
}

.highlight-label strong {
    font-weight: 400;
    color: #404040
}

.section-article.dark .heading h2 {
    color: #fff;
}

.section-article.dark .heading h2 strong {
    color: #fff
}

.section-article.dark .highlight-label strong {
    color: #fff
}

.section-article.inforight .article {
    float: right;
}

.section-article.inforight .highlight-label {
    right: auto;
    left: -60px;
}


/*==================================================
    Section - Process
==================================================*/

.section-process {
    background-color: #34B78F;
    color: #fff;
    overflow: hidden;
}

.section-process .container {
    max-width: calc(1030px + 160px);
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
}

.section-process .heading {
    text-align: center;
    padding-bottom: 30px;
}

.section-process .heading h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    margin: 0
}

.card-process {
    background-color: transparent;
    border: 0;
    text-align: center;
    border-radius: 0;
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
    padding-top: 30px;
}

.card-process .icon {
    display: block;
    margin: 0 auto 15px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    display: flex;
    position: relative;
    top: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.pc .card-process:hover .icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-process .icon img {
    margin: 0 auto;
    width: 70px;
    height: 70px;
}

.card-process h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    margin: 10px 0 15px;
    line-height: 1.35
}


/* .card-process p.info {
    min-height: 110px;
} */

.card-process p.number {
    font-size: 42px;
    font-family: 'Roboto', 'Kanit', sans-serif;
    font-weight: 400;
    margin: 0;
    /*-webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out*/
}

.swiper-button {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.swiper-button.swiper-button-disabled {
    opacity: 0.5 !important;
}

.swiper-button-prev.process,
.swiper-button-next.process {
    width: 60px;
    height: 60px;
    background-size: 35px;
    margin-top: -8px;
}

.swiper-button-prev.process {
    background-image: url(../img/icons/icon-arrow-prev.svg);
    left: 10px;
}

.swiper-button-next.process {
    background-image: url(../img/icons/icon-arrow-next.svg);
    right: 10px;
}

.pc .swiper-button-prev.process:hover {
    left: 0px
}

.pc .swiper-button-next.process:hover {
    right: 0px
}


/*==================================================
    Section - about us
==================================================*/

.section-aboutus-group {
    position: relative;
}

.section-article.aboutus {
    padding: 90px 0;
}

.aboutus-photo img {
    width: 100%
}

.section-article .article.p-100 {
    padding-top: 100px
}


/*==================================================
    Section - About us
==================================================*/

.section-intro {}

.article.aboutus {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin: 90px 0;
    position: relative;
}

.article.aboutus h4 {
    font-weight: 400;
    font-size: 21px;
    margin-bottom: 10px;
}

.article.aboutus p:last-child {
    margin-bottom: 0
}


/*==================================================
    Section - Instagram
==================================================*/

.section-instagram {
    background-color: #212322;
    z-index: 9
}

.section-instagram .heading {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 45px
}

.section-instagram .heading h3 {
    color: #fff;
    font-size: 16px;
}

.section-instagram .heading h3 img {
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    margin: -3px 7px 0 0;
}

.instagram-feed {
    display: block;
    position: relative;
    padding-bottom: 30px
}

.instagram_gallery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.instagram_gallery a {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 8px;
    background-color: #222222;
}

.instagram_gallery a img {
    max-width: 100%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.pc .instagram_gallery a:hover img {
    opacity: 0.7
}


/*==================================================
    Section - Contact us
==================================================*/

.section-contactus {
    background-color: #F2F2F2;
    line-height: 1.7;
    padding: 85px 0;
}

.section-contactus .heading h2 img {
    width: 40px;
    height: 40px;
}

.contact-box {
    display: block;
    position: relative;
    padding-left: 110px;
    margin-top: 40px;
}

.contact-box .photo {
    width: 90px;
    height: 90px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-box .photo img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.contact-box .info {
    position: relative;
    display: block;
}

.contact-box .info p {
    margin: 0;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 300;
}

.contact-box .info .btn {
    width: auto;
    height: 33px;
    line-height: 31px;
    margin-top: 10px;
    font-weight: 400;
    background-color: #00C500;
    padding: 0 15px;
    font-size: 14px;
}

.contact-box .info .btn img {
    position: relative;
    top: -1px;
}

.pc .contact-box .info .btn:hover {
    background-color: #05D605;
}


/**/

.md-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 0;
    display: inline-block;
    -webkit-animation: outer 6600ms linear infinite;
    animation: outer 6600ms linear infinite;
}

.md-preloader svg {
    -webkit-animation: inner 1320ms linear infinite;
    animation: inner 1320ms linear infinite;
}

.md-preloader svg circle {
    fill: none;
    stroke: #34B78F;
    stroke-linecap: round;
    -webkit-animation: arc 1320ms cubic-bezier(0.8, 0, 0.4, 0.8) infinite;
    animation: arc 1320ms cubic-bezier(0.8, 0, 0.4, 0.8) infinite;
}

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

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

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

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

@-webkit-keyframes arc {
    0% {
        stroke-dasharray: 1 210.48670779px;
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dasharray: 151.55042961px, 210.48670779px;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 1 210.48670779px;
        stroke-dashoffset: -151.55042961px;
    }
}

@keyframes arc {
    0% {
        stroke-dasharray: 1 210.48670779px;
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dasharray: 151.55042961px, 210.48670779px;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 1 210.48670779px;
        stroke-dashoffset: -151.55042961px;
    }
}


/**/

.form-loader {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: 70px;
    background-color: rgba(242, 242, 242, 0.8);
    z-index: 99;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.form-loader.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.form-contact {
    position: relative;
}

.form-contact .row {
    margin: 0 -5px
}

.form-contact .row>div {
    padding: 0 5px
}

.form-contact .btn {
    margin-top: 15px;
    width: 190px;
}

.modal .modal-content {
    border: 0;
    border-radius: 0;
}

.modal .modal-body {
    padding: 50px 20px 60px;
    text-align: center;
}

.modal h2 {
    font-size: 30px;
    font-weight: normal;
    margin: 5px 0 0;
}

#contactModal .modal-dialog {
    max-width: 650px
}

#contactModal p .icon {
    width: 120px;
    height: 120px;
    margin: 5px 0 5px;
    display: inline-block;
}

#contactModal p {
    font-size: 18px;
    margin: 0
}

.modal .btn-close {
    position: absolute;
    top: -15px;
    right: -20px;
    padding: 0;
    margin: 0;
    background-color: #000;
    border: 0 !important;
    border: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
}

.pc .modal .btn-close:hover {}

.modal .btn-close img {
    width: 18px;
    height: 18px;
    position: relative;
    top: -2px
}

.modal .btn-close:before {
    display: none;
}

.fancybox-stage {
    filter: blur(0);
    -webkit-filter: blur(0);
}


/*==================================================
    Page - Thankyou
==================================================*/

.header-thankyou {
    background-color: #212322;
    padding: 20px 0;
}

.header-thankyou .navbar-brand {
    margin: 0 auto;
    float: none;
    display: block;
}

.section-thankyou {
    height: calc(100vh - 240px);
    /*h-120, f-118*/
    text-align: center;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.section-thankyou .article {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    font-weight: 300;
    padding: 0 38px
}

.section-thankyou .article h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-thankyou .article p {
    margin-bottom: 20px;
}

.section-thankyou .article .tel {
    font-size: 18px;
    font-weight: 400;
    color: #34B78F
}

.section-thankyou .article .buttons {
    padding: 40px 20px 20px;
    display: block;
}

.section-thankyou .article .btn {
    width: 190px;
}

.footer-thankyou {
    display: block;
    background-color: #fff;
    border-top: 1px solid #C4C4C4;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 35px 0;
    line-height: 1.7
}

@media (max-height: 670px) {
    .section-thankyou {
        height: auto;
    }
    .section-thankyou .article .buttons {
        padding-top: 20px
    }
}

@media (max-width:767px) {
    .section-thankyou {
        height: calc(100vh - 183px);
        /*h-101, f-89*/
    }
    .section-thankyou .article h2 {
        font-size: 25px
    }
    .section-thankyou .article .buttons {
        padding-top: 20px
    }
    .footer-thankyou {
        padding: 20px 0;
    }
    @media (max-height: 600px) {
        .section-thankyou {
            height: auto;
        }
        .section-thankyou .article h2 {
            margin-top: 10px
        }
        .section-thankyou .article .btn {
            height: 50px;
            line-height: 47px;
        }
    }
}

@media (max-width:576px) {
    .section-thankyou .article p br {
        display: none;
    }
    .section-thankyou .article h2 {
        font-size: 23px;
        margin-bottom: 10px
    }
    .footer-thankyou {
        font-size: 12px
    }
}

@media (max-width:480px) {}


/*==================================================
    Section -Footer
==================================================*/

.footer {
    display: block;
    background-color: #212322;
    padding: 70px 0 50px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7
}

.footer h4 {
    font-size: 18px;
    font-weight: 300;
    color: #606060;
    margin-bottom: 17px;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact-list li {
    display: block;
    font-size: 21px;
    color: #fff;
    font-weight: 300;
    padding: 2px 0;
}

.pc .contact-list li a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.followus {
    margin: 30px -15px;
}

.followus a {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    z-index: 2
}


/*.followus a svg path,
.followus a svg ellipse{
   position: relative;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  fill: #f2f2f2;
}
.pc .followus a:hover svg path,
.pc .followus a:hover svg ellipse{ fill:#34B78F }*/

.pc .followus a:hover {
    opacity: 0.75
}

.followus a svg {
    display: block;
    position: relative;
    z-index: 2;
}

.followus a.ig img,
.followus a.ig svg {
    height: 20px;
    width: 20px;
}

.followus a.facebook {
    margin-left: 10px;
}

.followus a.facebook img,
.followus a.facebook svg {
    height: 19px;
    width: 19px;
}

.followus a.line img,
.followus a.line svg {
    height: 22px;
    width: 22px;
    margin-top: -2px
}

.footer .logo-footer {
    display: block;
    padding-top: 57px
}

.footer .logo-footer img {
    width: 45px;
    height: 63px;
}

.footer .map {
    margin-bottom: 30px;
}

.footer .map a {
    text-decoration: underline;
}

.footer .map .icons {
    vertical-align: middle;
}

.pc .footer .map a:hover {
    /*color:#34B78F*/
    opacity: 0.75
}

.footer .copyright {
    color: #606060;
    font-size: 14px;
    padding-top: 20px
}


/*==================================================
    Responsive media queries
==================================================*/

@media (min-width: 1119px) and (max-width: 1440px) {}

@media (max-width: 1680px) {}

@media (max-width: 1440px) {}

@media (max-width: 1380px) {
    .section-article .article {
        padding-left: 70px
    }
    .heading.left h2::before {
        left: -70px;
        width: 50px;
    }
}

@media (max-width: 1200px) {
    .card-process h3 {
        font-size: 20px;
    }
    .card-process p.number {
        font-size: 35px;
    }
    .card-process .icon {
        margin-bottom: 20px;
    }
    .highlight-label {
        right: -52px
    }
    .section-article.inforight .highlight-label {
        left: -52px
    }
    .article.aboutus {
        margin: 70px auto 30px
    }
    .service-photo {
        margin: 0 !important;
        position: relative;
        width: 100%
    }
    .infoleft .service-photo {
        left: -35px;
    }
    .inforight .service-photo {
        right: -35px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 991.98px) {
    .flex-caption .center-group {
        margin-top: -74px;
    }
    .flex-caption .center-group h2 {
        font-size: 40px
    }
    .flex-direction-nav li {
        width: 140px
    }
    .flex-direction-nav>li .slide-number {
        font-size: 24px
    }
    .flex-direction-nav>li>a.prev::before {
        left: 35px
    }
    .flex-direction-nav>li>a.next::before {
        right: 35px
    }
    .article.aboutus {
        width: 100%;
        max-width: 550px;
        margin: 90px auto 50px
    }
    .article.aboutus h4 {
        margin-bottom: 20px
    }
    .article.aboutus .logo-r img {
        width: 200px;
        height: 276px;
    }
    .heading h2,
    .heading h1 {
        font-size: 36px
    }
    .heading.left {
        padding-bottom: 0
    }
    .heading.left h2 {
        font-size: 30px;
    }
    .section-article .article {
        padding-left: 60px
    }
    .heading.left h2::before {
        left: -60px;
        width: 40px;
        bottom: 15px;
        height: 3px;
    }
    .highlight-label {
        right: -40px
    }
    .section-article.inforight .highlight-label {
        left: -40px
    }
    .highlight-label {
        top: 72%
    }
    .section-intro .heading h1 {
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .section-article .article {
        font-size: 15px
    }
    .section-article .article p {
        margin-bottom: 15px
    }
    .section-article .article .inner {
        padding-right: 20px
    }
    .section-article .article .font-xs {
        font-size: 14px
    }
    .section-article.inforight .article {
        margin-left: 25px
    }
    .swiper-button-prev.process {
        left: 20px;
    }
    .swiper-button-next.process {
        right: 20px;
    }
    .pc .swiper-button-prev.process:hover {
        left: 10px;
    }
    .pc .swiper-button-next.process:hover {
        right: 10px;
    }
    .section-article.aboutus {
        padding: 70px 0;
    }
    .section-article.aboutus .article.p-100 {
        padding-top: 0
    }
    .section-article.aboutus.inforight .article {
        margin-left: 0
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 35px;
    }
    .contact-list li {
        font-size: 18px;
    }
    .section-contactus {
        padding: 70px 0;
    }
    .section-contactus .heading h2 {
        font-size: 30px
    }
    .section-contactus .heading h2 img {
        width: 35px;
        height: 35px;
    }
    .section-contactus p br {
        display: none;
    }
    .form-contact .btn {
        width: 100%
    }
    .instagram_gallery {
        margin: 0 5px
    }
    .instagram_gallery a {
        padding: 0 5px
    }
    .section-contactus p br {
        display: none;
    }
}

@media (max-width:767px) {
    .page {
        padding-top: 101px
    }
    .header-inner:before {
        opacity: 1;
        background: #212322;
    }
    .flex-direction-nav li {
        width: 100px
    }
    .flex-direction-nav>li .slide-number {
        font-size: 18px
    }
    .flex-direction-nav>li>a::before {
        width: 25px;
        height: 25px;
        margin-top: -12px
    }
    .flex-direction-nav>li>a.prev::before {
        left: 25px !important
    }
    .flex-direction-nav>li>a.next::before {
        right: 25px !important
    }
    .header .btn-quotation {
        height: 35px;
        line-height: 33px;
        font-size: 12px;
        padding: 0 15px;
        background-color: #212322 !important;
        border: 1px solid #fff !important;
        color: #fff !important;
        border-radius: 3px;
    }
    .header .btn-quotation .icon-cursor {
        background-image: url(../img/icons/icon-cursor-white.svg);
        width: 20px;
        height: 20px;
        margin-right: 2px;
    }
    .navbar-brand {
        width: 56px;
        height: 61px;
    }
    .heading h2,
    .heading h1 {
        font-size: 35px
    }
    .heading.left {
        padding-bottom: 15px
    }
    .heading.left h2 {
        font-size: 27px;
        padding-left: 65px;
        position: relative;
    }
    .heading.left h2::before {
        width: 50px;
        height: 3px;
        left: 0
    }
    .section-banner,
    .flexslider .slides>li {
        /*height: calc(80vh - 101px);*/
        height: calc(71.5vh - 100px);
        min-height: 200px;
    }
    /* .flex-caption .center-group {
        top: 30%;
    } */
    .flex-caption .center-group p {
        margin-bottom: 10px
    }
    .flex-caption .center-group h2 {
        font-size: 40px
    }
    .flex-caption .bottom-group {
        bottom: 55px
    }
    .flex-caption .bottom-group p span {
        font-size: 12px
    }
    .section {
        padding: 40px 0
    }
    .heading h2,
    .heading h1 {
        margin: 0 0 5px
    }
    .section-intro {
        overflow: hidden;
    }
    .article.aboutus {
        margin: 40px auto 20px;
        /*max-width: 338px*/
    }
    .article.aboutus h4 {
        margin-bottom: 40px
    }
    .article.aboutus .logo-r {
        top: auto;
        bottom: -80px
    }
    .article.aboutus .logo-r img {
        width: 164px;
        height: 228px;
    }
    .section-article .article {
        padding-left: 0;
    }
    .section-article .article .inner {
        padding-top: 30px;
        padding-right: 0
    }
    .service-photo {
        padding-right: 30px;
    }
    .service-photo .inner {
        padding: 0 !important
    }
    .infoleft .service-photo {
        left: auto;
    }
    .inforight .service-photo {
        right: auto;
    }
    .highlight-label {
        top: 126px;
        right: -3px !important;
        left: auto !important;
        margin: 0 !important
    }
    .section-article.inforight .article {
        margin: 0
    }
    .section-article .article .inner {
        max-width: 100%
    }
    .section-process .heading {
        padding-bottom: 10px
    }
    .section-process .heading h2 {
        font-size: 26px;
    }
    .section-article.aboutus {
        padding: 35px 0;
    }
    .section-article.aboutus .article .inner {
        padding-top: 0
    }
    .section-article.aboutus.infoleft .article .inner {
        padding-left: 65px
    }
    .section-article.aboutus.infoleft .aboutus-photo {
        max-width: 80%;
        margin-top: 20px;
    }
    .section-article.aboutus.inforight .article {
        margin-top: -5px
    }
    .section-article.aboutus.inforight .heading {
        text-align: right;
    }
    .section-article.aboutus.inforight .heading h2 {
        display: inline-block;
    }
    .section-article.aboutus.inforight .aboutus-photo {
        margin-top: 25px;
    }
    .section-contactus .heading h2 {
        margin-bottom: 15px
    }
    .contact-box {
        margin: 30px 0 55px
    }
    .form-contact .btn {
        margin-top: 10px
    }
    .section-instagram .heading {
        margin-bottom: 30px;
        margin-top: -8px
    }
    .instagram-feed {
        padding-bottom: 20px
    }
    .swiper-gallery {
        margin-bottom: 20px
    }
    .modal-dialog {
        margin-left: 25px;
        margin-right: 25px
    }
    .modal h2 {
        font-size: 20px
    }
    #contactModal p {
        font-size: 16px;
        line-height: 1.5;
    }
    #contactModal p .icon {
        width: 100px;
        height: 100px;
    }
    .footer {
        padding: 0 0 30px
    }
    .footer h4 {
        margin-top: 50px;
        margin-bottom: 10px
    }
    .footer div.right h4 {
        margin-top: 30px;
    }
    .contact-list li {
        font-size: 21px;
    }
    .footer .logo-footer {
        padding-top: 30px
    }
    .footer .followus {
        margin-top: 20px;
        margin-bottom: 0
    }
}

@media (max-width:576px) {
    .heading h1,
    .heading h2 {
        font-size: 28px
    }
    /* .flex-caption .center-group {
        top: 110px;
    } */
    .flex-caption .center-group h2 {
        font-size: 28px
    }
    .flex-banner .flex-control-paging li {
        margin: 0 7px
    }
    .flex-banner .flex-control-paging li a {
        width: 37px
    }
    .article.aboutus h4 {
        font-size: 18px
    }
    .section-article {
        padding-top: 40px;
    }
    .section-process .container {
        padding-left: 50px;
        padding-right: 50px;
    }
    /* .card-process p.info {
        min-height: 80px
    } */
    .swiper-button-prev.process,
    .swiper-button-next.process {
        margin-top: -4px;
        background-size: 30px;
    }
    .swiper-button-prev.process {
        left: 15px;
    }
    .swiper-button-next.process {
        right: 15px;
    }
    .card-process p.number {
        font-size: 35px;
    }
    .contact-list li {
        font-size: 18px;
    }
    .section-instagram {
        padding-bottom: 0;
        overflow: hidden;
    }
    .instagram-feed {
        margin-left: -37px;
        margin-right: -37px;
        margin-bottom: -20px;
        padding-bottom: 0;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .instagram_gallery {
        padding-left: 25px;
        padding-bottom: 60px;
        margin: 0;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .device .instagram_gallery {
        padding-bottom: 80px
    }
    .instagram_gallery a {
        padding: 0 8px;
        -ms-flex: 0 0 70vw;
        flex: 0 0 70vw;
        max-width: 70vw;
    }
}

@media (max-width:480px) {}

@media (max-width:376px) {}

@media (max-width:369px) {
    .heading.left h2 {
        font-size: 23px
    }
    .heading h1 {
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .heading h1 br {
        display: block;
    }
}


/**************************************
    Site - background
**************************************/

.site-background {
    pointer-events: none;
}

.site-background>div {
    position: absolute;
    z-index: 9
}

.site-background>div img {
    width: 100%
}

.site-background.management>div.element {
    width: 342px;
    top: 320px;
    left: -220px
}

.site-background.process>div.element {
    width: 375px;
    bottom: -250px;
    right: -180px;
    opacity: .15
}

.site-background.aboutus>div.element {
    width: 342px;
    bottom: 0;
    left: 57%;
}

.site-background.bg-footer>div.element {
    width: 372px;
    bottom: -70px;
    left: -50px;
}


/*--------------fixed----------------*/

.site-amimate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    clip: rect(0, auto, auto, 0);
}

.site-amimate .logo-r {
    position: fixed;
}

.site-amimate .logo-r img {
    width: 100%
}

.site-amimate .logo-r.intro {
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.scrolling .site-amimate .logo-r.intro {
    opacity: 1
}

.section-intro .logo-r.intro img {
    width: 164px;
    height: 228px;
}

.site-amimate.aboutus .logo-r {
    width: 342px;
    left: 53%;
    top: 30%;
}

.site-amimate.s-footer {
    top: -70px;
    bottom: -70px;
    left: -50px;
}

.site-amimate.s-footer .logo-r {
    width: 375px;
    bottom: 0;
}

@media (max-width:1380px) {
    .site-background.management>div.element {
        left: -240px
    }
}

@media (max-width:1200px) {
    .site-background.management>div.element {
        left: -120px;
    }
    .site-background.process>div.element {
        width: 300px;
        bottom: -200px;
        right: -50px;
    }
    .site-background.aboutus>div.element {
        width: 300px;
        left: 62%;
    }
    .site-background.bg-footer>div.element {
        transform: none !important;
    }
    .site-amimate.aboutus .logo-r {
        width: 270px;
        left: 55%;
        top: 30%;
    }
}

@media (max-width:992px) {
    .site-amimate .logo-r {
        position: absolute;
    }
    .site-amimate .logo-r.intro {
        opacity: 1 !important
    }
    .site-amimate .logo-r.intro img {
        width: 200px;
        height: 276px;
    }
    .site-background>div.element.skrollable {
        transform: none !important;
    }
    .site-background.management>div.element {
        top: 0
    }
    .site-amimate.aboutus .logo-r {
        width: 200px;
        left: 55%;
        top: 40%;
    }
    .site-background.aboutus>div.element {
        width: 240px;
        left: 55%;
        top: 46%;
    }
}

@media (max-width:767px) {
    .site-background.process>div.element {
        width: 280px;
    }
    .site-background.aboutus>div.element {
        left: auto;
        right: 30px;
        bottom: -300px;
        width: 180px;
    }
    .site-background.bg-footer>div.element {
        transform: none !important;
        bottom: -144px;
    }
    .site-amimate.aboutus .logo-r {
        width: 170px;
        left: auto;
        right: 20px;
        top: 43%
    }
    .site-amimate .logo-r.intro {
        bottom: -11px;
    }
    .site-amimate .logo-r.intro img {
        width: 164px;
        height: 228px;
    }
    .site-background.management>div.element {
        left: -80px;
        top: auto;
        bottom: -140px;
        width: 300px
    }
}