@font-face {
    font-family: 'Calibri';
    src: url('../../assets/font/Calibri.woff2') format('woff2'),
    url('../../assets/font/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri_Bold';
    src: url('../../assets/font/Calibri-Bold.woff2') format('woff2'),
    url('../../assets/font/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CalifornianFB_Bold';
    src: url('../../assets/font/CalifornianFB-Bold.woff2') format('woff2'),
    url('../../assets/font/CalifornianFB-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CalifornianFB';
    src: url('../../assets/font/CalifornianFB-Reg.woff2') format('woff2'),
    url('../../assets/font/CalifornianFB-Reg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



body {
    padding: 0;
    margin: 0;
    font-family: 'Calibri', 'sans-serif';
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col-xs-5 {
    position: relative;
}

input, select, button, a, textarea {
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    font-size: inherit;
    transition: all 0.5s;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 100;
}
h1{
    text-transform: uppercase;
    color: #2c1c58;
    font-size: 40px;
    font-family: 'CalifornianFB_Bold', 'sans-serif';
}
h3{
    font-size: 24px;
    color: #2c1b58;
    font-family: 'Calibri_Bold', 'sans-serif';
}
.nav_mobile {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}

.button_container {
    position: absolute;
    top: 22px;
    height: 20px;
    width: 23px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
}
.button_container:hover {
    opacity: 1;
}
.button_container.active .top {
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    transform: translateY(7px) translateX(0) rotate(45deg);
    background: #fff;
}
.button_container.active .middle {
    opacity: 0;
    background: #fff;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    background: #fff;
}
.button_container span {
    background: #fff;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 7px;
}
.button_container span:nth-of-type(3) {
    top: 14px;
}

.nav_mobile .overlay {
    position: fixed;
    background: rgba(29, 29, 29, 0.98);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 9;
    transition: all 0.5s;
}
.nav_mobile .overlay.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.nav_mobile .overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.nav_mobile .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.nav_mobile .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
.nav_mobile .overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}
.nav_mobile .overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .45s;
    animation-delay: .55s;
}
.nav_mobile .overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .50s;
    animation-delay: .60s;
}
.nav_mobile .overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .55s;
    animation-delay: .65s;
}
.nav_mobile .overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .60s;
    animation-delay: .70s;
}

.nav_mobile .overlay nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
.nav_mobile .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.nav_mobile .overlay ul li {
    display: block;
    height: 25%;
    position: relative;
    padding: 10px;
    opacity: 0;
}
.nav_mobile .overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s;
}
.nav_mobile .overlay ul li a:hover {
    color: #be9769;
}
.nav_mobile .overlay ul li a:hover:after, .nav_mobile .overlay ul li a:focus:after, .nav_mobile .overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.nav_mobile .overlay-menu .active {
    color: #be9769;
}
.section_menu .container{
    position: relative;
}
.navbar-nav{
    margin-left: 0;
}
.section_menu{
    background: #1d1d1d;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.nav > li > a{
    padding: 0;
}
.nav > li > a:hover{
    color: #dcac56;
}
.nav > li {
    line-height: 60px;
    padding: 0 15px;
}
.nav > li:after{
    content: ':';
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.7;
}
.nav > li:nth-last-child(1):after{
    content: none;
}
.navbar-nav .active{
    color: #dcac56;
}
.navbar-nav li:nth-child(1){
    padding-left: 0;
}

.nav > li > a:after{
    content: '';
    background: #dcac56;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: all 0.5s;
}
.nav > li > .active:after{
    opacity: 1;
}
.social_media img{
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-right: 2px;
}
.social_media ul{
    padding: 0;
    margin: 0;
}
.social_media li{
    list-style: none;
    float: left;
    padding: 0 10px;
    line-height: 60px;
}
.social_media li:nth-last-child(1){
    padding-right: 0;
}
.social_media{
    position: absolute;
    right: 0;
    top: 0;
    text-transform: none;
}
.social_media a:hover{
    color: #dcac56;
}
#maximage{
    height: 700px!important;
}

.text_slide h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: none;
}

.text_slide p {
    margin: 0;
    font-size: 20px;
}

.text_slide ul {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

.text_slide ul li {
    animation-name: fadeIn;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
}

.text_slide li:nth-child(1) {
    animation-delay: 0.5s;
}

.text_slide li:nth-child(2) {
    animation-delay: 0.6s;
}
.section_slideshow .container{
    position: absolute;
    left: 0;
    color: #fff;
    text-align: left;
    margin: auto;
    padding: 0;
    top: 250px;
    right: 0;
}
.section_slideshow{
    position: relative;
    z-index: 0;
}
.logo_brand .container{
    position: static!important;
    height: auto;
}
.logo_brand{
    position: absolute;
    top: 100px;
    z-index: 1;
    left: 0;
    right: 0;
}
.text_slide{
    width: 400px;
}
.btn_readmore{
    margin-top: 25px;
    background: none;
    padding: 15px 30px;
    font-family: 'Calibri_Bold','sans-serif';
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn_readmore:hover{
    background: #dcac56;
    border: 1px solid #dcac56;
    color: #1d1d1d;
}
.section_ourservices{
    padding: 50px 100px 250px;
    text-align: center;
    background: #f5f5f5;
    position: relative;
    background-image: url("../images/icon/bg_services.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
/*.section_ourservices:before{*/
/*    content: '';*/
/*    background: #f5f5f5;*/
/*    height: 300px;*/
/*    width: 110%;*/
/*    position: absolute;*/
/*    bottom: -90px;*/
/*    left: -30px;*/
/*    right: 0;*/
/*    z-index: -1;*/
/*    transform: rotate(-6deg);*/
/*}*/
 hr{
    width: 120px;
    border-top: 1px solid #cdcdcd;
}
.images_services {
    width: 100%;
    height: 350px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.slide_services{
    margin: 50px 0;
}
.section_ourservices .owl-nav, .section_ourservices .owl-dots{
    display: none;
}
.details_services{
    background: #fff;
    text-align: left;
    padding: 30px;
    display: inline-block;
    border-bottom: 5px solid #2c1c58;
    height: 320px;
}
.btn_readmoreservices{
    background: #2c1b58;
    padding: 15px 30px;
    font-family: 'Calibri_Bold','sans-serif';
    border: none;
    color: #fff;
}
.btn_readmoreservices:hover{
    background: #dcac56;
    color: #1d1d1d;
}
.section_oursupply{
    padding: 0;
    text-align: center;
    position: relative;
}
/*.section_oursupply:after{*/
/*    content: '';*/
/*    background: #fff;*/
/*    height: 300px;*/
/*    width: 110%;*/
/*    position: absolute;*/
/*    bottom: -90px;*/
/*    left: -30px;*/
/*    right: 0;*/
/*    z-index: -1;*/
/*    transform: rotate(-7deg);*/
/*}*/

.images_supply {
    width: 100%;
    height: 450px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.images_box {
    width: 100%;
    height: 400px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
    z-index: -2;
}
.section_oursupply .col-xs-8{
    padding: 0 15px;
}
.section_oursupply .col-xs-4{
    padding: 0 15px;
}
.row_photo{
    margin: 50px -15px;
    display: flex;
}
.section_support{
    background-image: url("../images/icon/bg_support.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 400px 0;
    text-align: center;
    color: #fff;
    height: 1256px;
}
.section_support h1{
    color: #fff;
}
.section_support p{
    font-size: 24px;
}
.section_footer{
   background-image: url("../images/icon/bg_footer.png");
    padding: 50px 0;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: top;
    margin-top: -325px;
    padding-top: 300px;
}
.contact table{
    width: 100%;
}
.contact td{
    vertical-align: top;
    padding: 0;
    line-height: initial;
}
.section_footer .col-xs-3{
    padding: 0 10px;
}
.row_footer{
    margin-left: -10px;
    margin-right: -10px;
}
.section_footer h1{
    color: #fff;
    font-size: 34px;
    font-family: 'Calibri_Bold','sans-serif';
}
.section_footer h3{
    color: #fff;
}
.section_footer .col-xs-3:nth-child(2){
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
}
.section_footer .col-xs-3:nth-child(1){
    text-align: center;
}
.section_footer .col-xs-3:nth-child(4){
    padding: 0 0 0 15px;
}
.telelphone p:nth-child(1){
    margin-top: 0;
}
.section_footer a:hover{
    color: #dcac56;
}
.owl-carousel{
    z-index: 0;
}
.section_ourservices .owl-dots{
    margin-top: 50px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #2c1b58;
}
.owl-theme .owl-dots .owl-dot span{
    margin: 0 5px;
    background: #958da9;
    transition: all 0.5s;
}
.scroll_menu{
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.facebook_mobile{
    display: none;
}
.facebook_mobile img{
    width: 30px;
}
.section_aboutus{
    padding: 50px 0;
    text-align: center;
    background: #f5f5f5;
}
.footer_info .section_footer{
    background-image: none;
    background: #1a1a1a;
    padding-top: 50px;
    margin: 0;
}
.row_about{
    margin-top: 50px;
    margin-right: -15px;
    margin-left: -15px;
}
.section_aboutus .col-xs-6{
    padding: 0 15px;
}
.images_about {
    width: 100%;
    height: 450px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.details_about{
    background: #fff;
    text-align: left;
    padding: 30px;
    display: inline-block;
    height: 200px;
}
.details_about h3{
    color: #3f3f3f;
}
.row_about .col-xs-6:nth-child(1){
    padding-bottom: 30px;
}
.row_about .col-xs-6:nth-child(2){
    padding-bottom: 30px;
}
.images_map{
    width: 100%;
    height: 600px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.section_map iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.section_map{
    display: inline-block;
    width: 100%;
    margin-bottom: -9px;
}
.images_servicespage {
    width: 100%;
    height: 450px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    display: block;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.section_services{
    display: inline-block;
    width: 100%;
}
.box_services{
    margin-top: 50px;
}
.box_services .col-xs-6{
    padding: 0;
}
.details_servicespage{
    background: #fff;
    padding: 50px;
    text-align: left;
}
.bg_servicespage:before{
    content: '';
    background-image: url("../images/icon/bg_servicespage.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 63px;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: -60px;
}
.details_servicespage hr{
    margin-left: 0;
}
.row_services{
    padding-bottom: 50px;
    display: inline-block;
    width: 100%;
}
.bg_servicespage2:before{
    background-image: url("../images/icon/bg_servicespage2.png");
    left: auto;
    right: -60px;
}
.row_services2 .col-xs-6:nth-child(1){
    float: right;

}
.section_services .row_services:nth-last-child(1){
    padding-bottom: 0;
}
.section_contact{
    text-align: left;
    margin-top: 50px;
    display: inline-block;
    width: 100%;
}
.section_contact table{
    width: 100%;
    margin-top: 30px;
}
.section_contact td{
    vertical-align: top;
    padding: 2px 0;
}
.section_contact a:hover{
    color: #2c1b58;
}
.section_contact p{
    margin: 0;
}
.section_contact h3{
    margin-bottom: 20px;
}
.input_contact{
    width: 100%;
    padding: 10px;
    background: #e7e7e7;
    border: none;
    border-radius: 0;
}
.paddingcontact{
    padding: 10px 0;
}
#contact p{
    margin: 0;
    text-transform: uppercase;
}
#contact span{
    color: red;
}
#contact textarea{
    height: 250px;
}
.btn_submit{
    border: none;
    padding: 15px 40px;
    color: #fff;
    text-transform: uppercase;
}
.section_contact .col-xs-8{
    padding-left: 50px;
}
#cycle-nav {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 50px;
    margin: auto;
    text-align: center;
    padding: 0 25px;
}

#cycle-nav ul {
    list-style-type: none;
    padding: 0;
    margin: auto;
    display: inline-block;
}
#cycle-nav ul li a {
    position: relative;
    background-color: #fff;
    float: left;
    height: 10px;
    margin: 0 5px;
    width: 10px;
    border-radius: 50%;
    transition: all 0.5s;
}

#cycle-nav ul li.activeSlide a {
    background-color: #fff;
}

#cycle-nav a:before,
#cycle-nav a:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;

}

#cycle-nav ul li.activeSlide a:before {
    background-color: #dcac56;
    display: block;
    z-index: 2;
    animation: mymove 7s ease;
}
#cycle-nav li{
    float: left;
    border-radius: 50%;
    text-align: center;
}