html {
    overflow-x: hidden ;
}

body {
    margin: 0px;
    /* font-family: 'Baloo Tamma 2', cursive!important; */
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    "Montserrat", font-family: sans-serif;
    "Montserrat", font-family: sans-serif;
}

.preloaderBg {
    position: fixed;
    z-index: 9999;
    top: 0px!important;
    background: #222222;
    width: 100%;
    height: 100%;
    text-align: center;
    /*padding-top: 20%;*/
}

.preloader {
    margin: auto;
    background: url('../images/load-logo.png') no-repeat center;
    background-size: contain;
    width: 100px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    height: 100px;
}

@keyframes mover {
    0% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(3px);
    }
}

.preloader2 {
    border: 5px solid #e98923;
    border-top: 5px solid #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s ease-in-out infinite;
    position: relative;
    margin: auto;
    top: -122px;
    z-index: 999999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tooltip1 {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip1 .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
}

.tooltip1 .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip1:hover .tooltiptext {
    visibility: visible;
}

/*.preloaderBg {*/
/*	  position: fixed;*/
/*	  z-index: 9999;*/
/*	  top: 0px;*/
/*	  background: #222222*/
/*	  width: 100%;*/
/*	  height: 100%;*/
/*	  text-align: center;*/
/*	  padding-top: 20%;*/
/*}*/
/*.preloader {*/
/*    margin: auto;*/
/*    background: url('../images/load-logo.png') no-repeat center;*/
/*    background-size: contain;*/
/*    width: 100px;*/
/*    -webkit-animation: mover 1s infinite alternate;*/
/*    animation: mover 1s infinite alternate;*/
/*    height: 100px;*/
/*}*/
/*@keyframes mover {*/
/*  0% { transform: translateY(-3px); }*/
/*  100% { transform: translateY(3px); }*/
/*}*/
/*.preloader2 {*/
/*  border: 5px solid #577434;*/
/*  border-top: 5px solid #bfd52f;*/
/*  border-radius: 50%;*/
/*  width: 150px;*/
/*  height: 150px;*/
/*  animation: spin 1s ease-in-out infinite;*/
/*  position: relative;*/
/*  margin: auto;*/
/*  top: -130px;*/
/*  z-index: 999999;*/
/*}*/
/*@keyframes spin {*/
/*  0% { transform: rotate(0deg); }*/
/*  100% { transform: rotate(360deg); }*/
/*}*/
/* START TOOLTIP STYLES */
[tooltip] {
    position: relative;
    /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before, [tooltip]::after {
    text-transform: none;
    /* opinion 2 */
    font-size: .9em;
    /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    /* opinion 4 */
    z-index: 1001;
    /* absurdity 1 */
}

[tooltip]::after {
    content: attr(tooltip);
    /* magic! */
    /* most of the rest of this is opinion */
    /*font-family: Helvetica, sans-serif;*/
    text-align: center;
    /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
    min-width: 12em;
    height: 55px;
    max-width: 33em;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #333;
    color: #fff;
    border-radius: 11px;
    padding-top: 12px;
    z-index: 1000;
    /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before, [tooltip]:hover::after {
    display: block;
}

/* don't show empty tooltips */
[tooltip='']::before, [tooltip='']::after {
    display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before, [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
}

[tooltip]:not([flow])::after, [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before, [tooltip]:not([flow])::after, [tooltip][flow^="up"]::before, [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
    top: 100%;
    left: 13px !important;
    border-top-width: 0;
    border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before, [tooltip][flow^="down"]::after {
    left: -33%;
    transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
}

[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
}

[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before, [tooltip]:not([flow]):hover::after, [tooltip][flow^="up"]:hover::before, [tooltip][flow^="up"]:hover::after, [tooltip][flow^="down"]:hover::before, [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before, [tooltip][flow^="left"]:hover::after, [tooltip][flow^="right"]:hover::before, [tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

/* UNRELATED to tooltips */
main {
    flex: 1 1 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

aside {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49b293;
    color: #fff;
    padding: 1em;
}

main div {
    text-align: center;
    color: #353539;
}

main span {
    padding: .5em 1em;
    margin: .5em;
    display: inline-block;
    background: #dedede;
}

aside a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: .4em 1em;
}

/* UNRELATED to tooltips */
.division-callt {
    float: left;
    width: 100%;
    background: rgb(59,83,30);
    background: linear-gradient(180deg, rgba(59,83,30,1) 0%, rgba(65,100,22,1) 100%);
    height: 436px;
    padding-top: 113px;
    margin-top: -435px;
    position: relative;
    z-index: -1;
}

.header {
    float: left;
    width: auto;
}

.header-logo {
    float: left;
    width: 100%;
    padding: 7px 10px 10px 103px;
}

.header-logo a img {
    float: left;
    width: 280px;
}

.header2 {
    float: left;
    width: 61%;
    border-left: 1px solid #f1f1f1;
    margin: 0 90px 0 0px;
}

.header-con {
    float: left;
    width: 100%;
    padding-right: 30px;
    border-bottom: 1px solid #f1f1f1;
}

.hdr-phone {
    float: right;
    padding: 17px 34px 15px 34px;
    border-right: 1px solid #f1f1f1;
    height: 42px;
}

.hdr-phone h3 {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #17521e;
    margin-bottom: 0px;
}

.hdr-phone h3 a {
    color: #17521e;
}

.hdr-phone h3 a:hover {
    text-decoration: none;
    color: #17521e;
}

.hdr-mail {
    float: right;
    padding: 16px 22px;
    border-right: 1px solid #f1f1f1;
    height: 42px;
}

.hdr-mail h3 {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #17521e;
    margin-bottom: 0px;
}

.hdr-mail h3 a {
    color: #17521e;
}

.hdr-mail h3 a:hover {
    text-decoration: none;
    color: #17521e;
}

.hdr-promo:hover {
    background: #d8d9d8;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hdr-promo:hover img {
    filter: brightness(1111);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hdr-promo:hover a {
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hdr-promo {
    float: right;
    padding: 11px 22px;
    border-right: 1px solid #f1f1f1;
    height: 42px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hdr-promo img {
    float: left;
    width: 26px;
    margin-top: -3px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hdr-promo a {
    float: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-left: 15px;
    color: #000;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /*-webkit-animation:colorchange 20s infinite alternate;*/
}

.hdr-promo a:hover {
    text-decoration: none;
}

/*@-webkit-keyframes colorchange {*/
/*      0% {*/
/*        color: #5aa907;*/
/*      }*/
/*      10% {*/
/*        color: black;*/
/*      }*/
/*      20% {*/
/*        color: #5aa907;*/
/*      }*/
/*      30% {*/
/*        color: black;*/
/*      }*/
/*      40% {*/
/*        color: #5aa907;*/
/*      }*/
/*      50% {*/
/*        color: black;*/
/*      }*/
/*      60% {*/
/*        color: #5aa907;*/
/*      }*/
/*      70% {*/
/*        color: black;*/
/*      }*/
/*      80% {*/
/*        color: #5aa907;*/
/*      }*/
/*      90% {*/
/*        color: black;*/
/*      }*/
/*      100% {*/
/*        color: #5aa907;*/
/*      }*/
/*    }*/
.hdr-lan {
    float: right;
    padding-left: 15px;
    height: 42px;
}

.hdr-lan h2 {
    float: left;
    font-weight: 500;
    font-size: 14px;
    margin-right: 13px;
    margin-top: 11px;
}

.hdr-swch {
    float: left;
    position: relative;
    margin-top: 16px;
}

.hdr-swch > span.on:hover .tt {
    display: block!important;
}

.tt {
    display: none;
}

.hdr-swch > span {
    position: absolute;
    top: 14px;
    pointer-events: none;
    margin-top: -6px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
    color: black;
}

input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
}

.hdr-swch > span.on {
    left: 0;
    padding-left: 2px;
    color: black;
}

.hdr-swch > span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat + label {
    /*padding: 2px;*/
    width: 64px;
    height: 30px;
    background-color: #577434;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #577434;
    -webkit- -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat + label:after {
    top: -2px;
    left: -1px;
    bottom: 4px;
    width: 34px;
    height: 34px;
    background-color: #bfd52f;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}

input.check-toggle-round-flat:checked + label {
}

input.check-toggle-round-flat:checked + label:after {
    margin-left: 32px;
}

#banner-video {
    float: left;
    width: 100%;
    height: 590px;
    background-size: cover;
    background-position: 50% 50%;
}

.banner:before {
    content: "";
    position: absolute;
    top: 92px;
    height: 514px !important;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #3a3a3a;
    opacity: 0.5;
}

#myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    float: left;
    width: 100%;
    margin-top: 0px;
    /*background: red;*/
    height: 510px !important;
    width: 100% !important;
    object-fit: cover;
    width: 100vw;
}

.banner-captions {
    float: left;
    width: 100%;
    /*padding: 182px 0px;*/
    position: absolute;
    z-index: 1;
}

.fullscreen-video {
    float: right;
    background: white;
    padding: 12px 12px 9px 12px;
    border-radius: 10px 10px 0px 0px;
    margin-top: 0px;
    bottom: -162px;
    position: relative;
}

.fullscreen-video a {
    float: none;
    font-size: 14px;
    font-weight: 500;
    color: #424912;
    margin-left: 10px;
    text-decoration: none;
}

.fullscreen-video a img {
    float: left;
    width: 20px;
}

.banner {
    float: left;
    width: 100%;
    background-color: #3a3a3a;
    height: 590px;
}

.banner {
    float: left;
    width: 100%;
    background-color: #3a3a3a;
    height: 514px;
}

.baner-hed {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 180px;
}

.baner-hed h2 {
    float: left;
    width: 100%;
    font-size: 50px;
    font-weight: 400;
    color: white;
}

.baner-hed h2 span {
    font-weight: 700;
    color: #ff9000;
}

.slider-ban .owl-nav {
    display: none;
}

.body1 {
    float: left;
    width: 100%;
    padding-top: 67px;
    padding-bottom: 86px;
    background: #f3f3f3;
    /* height: 895px; */
    /* background: url(../images/world-map-dark.png) #fffffff2; */
    background-position: center center;
    background-size: cover;
}

.b1-hed {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 68px;
}

.b1-hed h2 {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: black;
    margin-bottom: 0px;
    line-height: 28px;
}

.b1-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-top: 30px;
    margin-bottom: 0px;
}

.b1-bx {
    float: left;
    width: 100%;
    background: white;
    text-align: center;
    border-radius: 40px;
    padding: 13px 0px;
    height: 91px;
    transition: all ease-in-out 0.5s!important;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-bx img {
    float: none;
    width: 65px;
    display: inline-block;
    margin-top: -31px;
    transition: all ease-in-out 0.5s!important;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s!important;
}

.b1-bx h3 {
    float: none;
    color: black;
    font-weight: 500;
    font-size: 21px;
    display: inline-block;
    text-align: left;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-bx:hover {
    background: #000000;
    transition: all ease-in-out 0.5s!important;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-bx:hover h3 {
    color: white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-bx:hover img {
    filter: brightness(1111);
    transition: all ease-in-out 0.5s!important;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s!important;
}

.b1-butn {
    float: right;
    width: auto;
    margin-left: 25px;
    margin-top: 39px;
}

.b1-butn a {
    float: left;
    width: 200px;
    height: 57px;
    border: 1px solid #000000;
    color: #313230;
    text-align: center;
    font-weight: 600;
    background: white;
    font-size: 17px;
    border-radius: 30px;
    padding: 16px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-butn a .rond {
    width: 15px;
    height: 15px;
    background: #3a3a38;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -2px;
    margin-left: 8px;
}

.b1-butn a:hover {
    text-decoration: none;
    color: white;
    background-color: #60863b;
    border: 1px solid transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b2-butn {
    float: right;
    width: auto;
    margin-top: 35px;
}

.b2-butn a {
    float: left;
    width: 183px;
    height: 57px;
    border: 1px solid transparent;
    background: #e98923;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    border-radius: 30px;
    padding: 16px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b2-butn a .rond {
    width: 15px;
    height: 15px;
    background: #383838;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -2px;
    margin-left: 38px;
}

.b2-butn a:hover {
    text-decoration: none;
    color: #60863b;
    background-color: transparent;
    border: 1px solid #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b1-breaker {
    float: left;
    position: relative;
    z-index: 11;
    margin-top: -144px;
}

.b1-breaker img {
    float: left;
    padding-left: 30px;
    width: 267px;
}

.body2 {
    float: left;
    width: 100%;
    background: #060606;
    padding-top: 70px;
    padding-bottom: 50px;
    padding-right: 8%;
}

.b2-slide {
    float: left;
    width: 66%;
}

.b2-hed {
    float: left;
    width: 100%;
}

.b2-hed h2 {
    float: left;
    width: 100%;
    background: #68A048;
    background: linear-gradient(to right, #efba82 0%, #fefffe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 62px;
    opacity: 0.11;
    margin-bottom: 0px;
}

.ar-event {
    pointer-events: visible !important;
}

.b2.owl-carousel .owl-nav.disabled {
    display: none;
}

.b2-txt {
    float: left;
    width: 34%;
    padding-left: 0px;
}

.b2-txt h2 {
    float: left;
    width: 100%;
    background: #68A048;
    background: linear-gradient(to right, #e98923 0%, #f9c79b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 62px;
    margin-bottom: 0px;
}

.body3 {
    float: left;
    width: 100%;
    background: #ffffff;
}

.b3-1 {
    float: left;
    width: 100%;
    padding: 50px 30px;
    background: black;
}

.b3-bx {
    float: left;
    width: 100%;
}

.b3-bx h3 {
    float: left;
    color: #000;
    font-size: 27px;
    font-weight: 700;
    background: #fff;
    margin-bottom: 0px;
    height: 60px;
    width: 60px;
    padding: 14px 12px;
    border-radius: 35px;
    margin-right: 17px;
    margin-top: 0px!important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b3-bx p {
    float: none;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    margin-bottom: 0px;
    margin-top: 7px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b3-bx:hover h3 {
    background: #000;
    color: #d1b72e;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b3-2 {
    float: left;
    width: 100%;
}

.b3.owl-carousel .owl-nav.disabled {
    display: none;
}

.b3 img {
    width: 100% !important;
}

.body4 {
    float: left;
    width: 100%;
    padding-top: 72px;
    padding-bottom: 15px;
}

.b4-hed {
    float: left;
    width: 100%;
    margin-bottom: 22px;
}

.b4-hed h2 {
    width: 100%;
    color: #ec9c4a;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
}

.b4-bx1 {
    float: left;
    width: 100%;
    margin-bottom: 60px;
}

.b4-bx1 img {
    float: left;
    width: 100%;
    border-radius: 15px;
    /* height: 401px; */
}

.b4-bx-txt {
    float: left;
    width: 100%;
    margin-top: 25px;
}

.b4-bx-txt h2 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 37px;
    color: black;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx-txt p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-top: 10px;
    margin-bottom: 0px;
}

.b4-bx-butn {
    float: left;
    width: 100%;
    margin-top: 25px;
}

.b4-bx-butn a {
    float: left;
    width: 183px;
    height: 55px;
    background: #000000;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx-butn a .rond2 {
    width: 14px;
    height: 14px;
    background: #eb9032;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx-butn a:hover {
    text-decoration: none;
    color: black;
    background: #ffb84b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx-butn a:hover .rond2 {
    background: #f7f7f7;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx2 {
    float: left;
    width: 100%;
    padding-left: 15px;
    margin: 0 0 40px;
}

.b4-bx2 img {
    float: left;
    width: 100%;
    border-radius: 15px;
    /* height: 401px; */
    filter: drop-shadow(2px 4px 6px black);
}

.b4-bx-txt2 {
    float: left;
    width: 100%;
    padding-right: 15px;
}

.b4-bx-txt2 h2 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 37px;
    color: black;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b4-bx-txt2 p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-top: 10px;
    margin-bottom: 0px;
}

/*.b4-bx1:hover .b4-bx-txt2 h2{*/
/*color: #3d6b11;*/
/*transition: all ease-in-out 0.5s;*/
/*    -o-transition: all ease-in-out 0.5s;*/
/*    -ms-transition: all ease-in-out 0.5s;*/
/*    -moz-transition: all ease-in-out 0.5s;*/
/*    -webkit-transition: all ease-in-out 0.5s;*/
/*}*/
.body5 {
    float: left;
    width: 100%;
    background: #183408;
    padding-bottom: 100px;
    position: relative;
    padding: 0 8% 100px 0;
}

.b5-breaker {
    float: right;
    margin-top: -70px;
}

.b5-breaker img {
    float: right;
    width: 300px;
    position: absolute;
    right: 30px;
}

.b5-1 {
    float: left;
    width: 100%;
}

.b5-1 h2 {
    float: left;
    width: 100%;
    padding-left: 30px;
    padding-right: 15px;
    font-style: italic;
    font-weight: 400;
    font-size: 43px;
    color: #617e51;
    margin-bottom: 0px;
    margin-top: 215px;
}

.b5-1 img {
    float: left;
    max-width: 100%;
    margin-top: 82px;
}

.b5-hed {
    float: left;
    width: 100%;
    margin-top: 90px;
    margin-bottom: 12px;
    padding-left: 23px;
}

.b5-hed h2 br {
    display : none;
}

.b5-hed h2 {
    float: left;
    width: 100%;
    background: #68a048;
    background: linear-gradient(to right, #68a048 0%, #497431 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 65px;
    margin-bottom: 0px;
}

.b5-hed p {
    float: left;
    width: 100%;
    margin-top: 15px;
    color: white;
    font-weight: 400;
    font-size: 15px;
}

.b5-2 {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.b5-2 h3 {
    float: left;
    width: 3%;
    font-size: 15px;
    font-weight: 400;
    color: #537b3d;
}

.b5-bx {
    float: left;
    width: 97%;
    background: #0e1f04;
    height: 187px;
    padding: 7px 7px;
    border-radius: 5px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b5-bx-img {
    float: left;
    max-width: 170px;
    height: 173px;
    background: white;
    border-radius: 5px;
    padding: 31px 0px;
    width: 22%;
}

.b5-bx-img img {
    float: none;
    width: 110px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.b5-bx-txt {
    float: left;
    width: 78%;
    padding: 29px 0px 27px 35px;
}

.b5-bx-txt h2 {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 26px;
    color: white;
}

.b5-bx-txt p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: white;
    margin-bottom: 0px;
}

.b5-bx:hover {
    background: #22430e;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body6 {
    float: left;
    width: 100%;
    background: #f0f0f0;
    padding-top: 90px;
    padding-bottom: 50px;
    padding-right: 8%;
}

.b6-slide {
    float: left;
    width: 70%;
}

.b6-hed {
    float: left;
    width: 100%;
}

.b6-hed h2 {
    float: left;
    width: 100%;
    color: #e3e3e3;
    font-weight: 600;
    font-size: 62px;
    /*opacity: 0.1;*/
    margin-bottom: 0px;
}

.b6.owl-carousel .owl-nav.disabled {
    display: none;
}

.b6-txt {
    float: left;
    width: 30%;
    padding-left: 0px;
}

.b6-txt h2 {
    float: left;
    width: 100%;
    color: black;
    font-weight: 600;
    font-size: 62px;
    margin-bottom: 0px;
    /*text-align: right;*/
}

.body7 {
    float: left;
    width: 100%;
    padding-bottom: 60px;
    padding-top: 10px;
    background: rgb(240,240,240);
    background: linear-gradient(180deg, rgba(240,240,240,1) 0%, rgba(254,254,254,1) 100%);
}

.b7-bx {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

.b7-bx-img {
    float: left;
    width: 100%;
}

.b7-bx-img img {
    float: left;
    width: 100%;
    border-radius: 9px;
    height: 319px;
}

.b7-bx-txt {
    float: left;
    width: auto;
    background: white;
    padding: 0px 25px 30px 19px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 9px;
    margin-top: -13px;
    border-top: 3px solid #577434;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-bx-btn {
    float: left;
    width: 118px;
    height: 30px;
    background: #577434;
    text-align: center;
    border-radius: 25px;
    padding: 9px 0px;
    margin-top: -15px;
}

.b7-bx-btn h4 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    color: white;
    margin-bottom: 0px;
}

.b7-bx-txt h3 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    color: black;
    margin-top: 22px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-bx-txt p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-bx:hover .b7-bx-txt {
    background: #4e6d29;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-bx:hover .b7-bx-txt h3 {
    color: white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-bx:hover .b7-bx-txt p {
    color: white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7.owl-carousel .owl-nav.disabled {
    display: none;
}

.b7-butn {
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.b7-butn a {
    float: none;
    display: inline-block;
    width: 160px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-butn a .rond3 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-butn a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b7-butn a:hover .rond3 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body8 {
    float: left;
    width: 100%;
    padding: 90px 0px;
    background-image: url(../images/b8-bc.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.b8-hed {
    float: left;
    width: 100%;
    padding: 0px 80px;
}

.b8-hed h2 {
    float: left;
    width: 100%;
    color: white;
    font-weight: 400;
    font-size: 50px;
    text-align: left;
    font-style: italic;
    margin-bottom: 0px;
    text-align: center;
}

.body9 {
    float: left;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.b9-icon {
    float: left;
    width: 100%;
}

.b9-icon img {
    float: none;
    width: 215px!important;
    object-fit: contain;
    max-width: 100%;
    height: 118px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.b9-icon1.owl-carousel .owl-nav.disabled {
    display: none;
}

.b9-icon1.owl-carousel {
    padding: 10px 0px 50px 0px;
}

.b9-icon2.owl-carousel .owl-nav.disabled {
    display: none;
}

.b9-icon2.owl-carousel {
    padding: 25px 0px 30px 0px;
}

.b9-butn {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 28px;
}

.b9-butn a {
    float: none;
    display: inline-block;
    width: 184px;
    height: 54px;
    background: #2c2e2a;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b9-butn a .rond4 {
    width: 14px;
    height: 14px;
    background: #dddfd3;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 13px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b9-butn a:hover {
    background: #f9920d;
    text-decoration: none;
    color: #e5d5d5;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.b9-butn a:hover .rond4 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.mob-promo {
    display: none;
}

.footer {
    float: left;
    width: 100%;
    background: #e7e7e7;
    padding-top: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e3e3e3;
}

.ft-emoji {
    float: left;
    margin-top: 47px;
    width: 100%;
}

.ft-emoji img {
    float: left;
    width: 100%;
}

.quicklink {
    float: left;
    width: 100%;
    padding-left: 40px;
}

.quicklink h2 {
    float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: black;
    margin-bottom: 16px;
}

.quicklink1 {
    float: left;
    width: 45%;
}

.quicklink1 a {
    float: left;
    width: 100%;
    color: black;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.quicklink1 a:hover {
    text-decoration: none;
    color: #e88924;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.quicklink2 {
    float: left;
    width: 55%;
}

.quicklink2 a {
    float: left;
    width: 100%;
    color: black;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.quicklink2 a:hover {
    text-decoration: none;
    color: #e98b27;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.ft-connect {
    float: left;
    width: 100%;
    margin-top: 29px;
    padding-left: 40px;
}

.ft-connect h3 {
    float: left;
    font-weight: 600;
    font-size: 22px;
    color: black;
}

.conect-img {
    float: none;
}

.conect-img a img {
    float: none;
    width: 23px;
    margin-left: 10px;
}

.locate {
    float: left;
    width: 100%;
}

.locate h2 {
    float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: black;
    margin-bottom: 16px;
}

.locate h3 {
    float: left;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: black;
    margin-top: 15px;
    margin-bottom: 0px;
}

.locate p {
    float: left;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: black;
    margin-top: 7px;
    margin-bottom: 17px;
}

.locate a {
    float: left;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-right: 15px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.locate a:hover {
    text-decoration: none;
    color: #a0cb3a;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.ft-logo {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.ft-logo a img {
    float: left;
    width: 250px;
    max-width: 100%;
}

.ft-copy {
    float: left;
    width: 100%;
    padding: 23px 0px;
    background: #fbfbfb;
}

.ft-copy p {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
    color: black;
}

.ft-copy p a {
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.ft-copy p a:hover {
    text-decoration: none;
    color: #a0cb3a;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.in-baner {
    float: left;
    width: 100%;
    padding: 54px 0px;
    background-image: url(../images/in-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
}

.in-baner h2 {
    float: left;
    width: 100%;
    font-size: 45px;
    font-weight: 700;
    background: #82B551;
    background: linear-gradient(to right, #e88924 0%, #ff6550 58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.in-baner p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 28px;
    color: white;
    margin-bottom: 0px;
}

.in-ban-breaker {
    float: right;
    position: absolute;
    z-index: 11;
    bottom: -54px;
    right: 0;
}

.in-ban-breaker img {
    float: right;
    width: 165px;
}

.in-about {
    float: left;
    width: 100%;
    padding-top: 85px;
    padding-bottom: 70px;
}

.about-img {
    float: left;
    width: 100%;
}

.about-img img {
    float: left;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.about-hed {
    float: left;
    width: 100%;
    /* margin-top: -99px; */
    margin-bottom: 68px;
}

.about-hed h2 {
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 45px;
    color: orange;
}

.about-hed h3 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 30px;
    color: #577434;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 17px;
}

.about-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    line-height: 26px;
    margin-bottom: 17px;
}

.about-quote {
    float: left;
    width: 100%;
    padding-left: 30px;
    padding-right: 46px;
    padding-top: 24px;
}

.q-1 {
    float: left;
    width: 40px;
}

.about-quote h3 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 33px;
    font-style: italic;
    color: black;
    padding-left: 33px;
    margin-top: 9px;
    margin-bottom: 0px;
}

.about-quote span {
    font-weight: 700;
    color: #FF9800;
}

.q-2 {
    float: right;
    width: 40px;
    margin-top: -13px;
}

.about-quote-img {
    float: left;
    width: 100%;
    padding-right: 30px;
}

.about-quote-img img {
    float: left;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.about-slide {
    float: left;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    background-image: url(../images/ab-s-bac.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.ab-s-hed {
    float: left;
    width: 100%;
    margin-bottom: 70px;
}

.ab-s-hed h2 {
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 50px;
    background: #90C669;
    background: linear-gradient(to right, #90C669 0%, #486a30 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ab-s-bx {
    float: left;
    width: 100%;
    background: white;
    padding: 32px 0px 42px 0px;
    border-radius: 10px;
}

.ab-s-bx img {
    float: none;
    width: 95px!important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.ab-s-bx h3 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    color: black;
    margin-top: 18px;
    text-align: center;
}

.ab-slider .owl-nav {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 66px;
}

.ab-slider .owl-prev img {
    width: 60px!important;
    margin-right: 16px;
}

.ab-slider .owl-next img {
    width: 60px!important;
}

.ab-directors {
    float: left;
    width: 100%;
    background: #f6f6ef;
    padding: 78px 0px;
}

.ab-dir-hed {
    float: left;
    width: 100%;
    margin-bottom: 80px;
}

.ab-dir-hed h2 {
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 45px;
    color: black;
}

.ab-d-bx {
    float: left;
    width: 100%;
    padding: 0px 117px;
}

.ab-d-img {
    float: left;
    width: 28%;
}

.ab-d-img img {
    float: left;
    width: 246px;
    border-radius: 10px;
}

.ab-d-txt {
    float: left;
    width: 72%;
    padding-left: 30px;
    padding-top: 14px;
}

.ab-d-txt p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 25px;
    color: black;
    margin-bottom: 17px;
}

.ab-d-txt h3 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 30px;
    color: #2b461a;
    margin-bottom: 10px;
}

.ab-d-txt h4 {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 21px;
    color: #407021;
}

.ab-direct .owl-nav {
    float: left;
    position: relative;
    display: block;
    margin-top: -177px;
}

.ab-direct .owl-prev img {
    width: 60px!important;
    margin-left: 17px;
    float: left;
}

.ab-direct .owl-next img {
    width: 60px!important;
    float: right;
    margin-left: 1062px;
    margin-top: -85px;
}

.ab-breaker {
    float: left;
    width: 100%;
    padding: 66px 0px 60px 0px;
    background-image: url(../images/ab-break.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.ab-breaker h2 {
    float: left;
    width: 100%;
    color: white;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 0px;
    line-height: 39px;
    font-style: italic;
    padding: 0px 18px;
}

.ab-history {
    float: left;
    width: 100%;
    padding: 80px 0px;
    background-image: url(../images/ab-history-bac.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.ab-his-hed {
    float: left;
    width: 100%;
    margin-bottom: 70px;
}

.ab-his-hed h2 {
    float: left;
    width: 100%;
    background: #000000;
    background: linear-gradient(to right, #000000 0%, #5D615B 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 50px;
}

.ab-his-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 22px;
    color: black;
    margin-top: 5px;
}

.ab-his-hed p span {
    color: #2e491b;
    font-weight: 700;
}

.ab-year {
    float: right;
    width: 100%;
    margin-top: -10px;
}

.ab-year h2 {
    float: left;
    text-align: center;
    font-family: 'Saira', sans-serif!important;
    width: fit-content;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 1px #224007;
    position: relative;
    font-weight: 800;
    font-size: 135px;
}

.ab-year h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-fill-color: #224007;
    -webkit-text-stroke: 1px transparent;
    width: 0;
    overflow: hidden;
    transition: .6s;
}

.ab-year h2:hover::after {
    width: 100%;
}

.ab-year h3 {
    float: right;
    color: #224007;
    font-weight: 500;
    font-size: 29px;
    line-height: 30px;
    margin-top: 75px;
}

.ab-his-map {
    float: left;
    width: 100%;
    border-top: 4px dashed #e1e1e1;
}

.ab-his-bx1 {
    float: left;
    width: 100%;
}

.ab-his-bx1 img {
    float: left;
    width: auto!important;
    max-width: 100%!important;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.ab-his-bx2 {
    float: left;
    width: 100%;
}

.ab-his-bx2 img {
    float: left;
    width: auto!important;
    max-width: 100%!important;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.ab-his-bx {
    float: left;
    width: 100%;
    border: 1px solid #b8bfb3;
    border-radius: 10px;
    padding: 35px 20px;
    margin-top: -7px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.ab-his-bx:hover {
    border: 1px solid #304a1c;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.ab-his-bx p {
    float: left;
    margin-top: 25px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: black;
    margin-bottom: 0px;
}

.ab-his-yer {
    float: left;
    width: 86px;
    height: 34px;
    background: #304a1c;
    border-radius: 20px;
    padding: 10px 0px;
}

.ab-his-yer h4 {
    float: left;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
}

.ab-histry .owl-nav {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.ab-histry .owl-prev img {
    width: 60px!important;
    margin-right: 16px;
}

.ab-histry .owl-next img {
    width: 60px!important;
}

.ful-mision {
    float: left;
    width: 100%;
    padding-bottom: 70px;
}

.mission {
    float: left;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 17px;
}

.mission-txt {
    float: left;
    width: 50%;
}

.mission-txt h2 {
    float: left;
    width: 100%;
    color: orange;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 17px;
}

.mission-txt h3 {
    float: left;
    width: 100%;
    color: #577434;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 17px;
}

.mission-txt p {
    float: left;
    width: 100%;
    color: black;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0px;
}

.mission-img {
    float: right;
    width: 47%;
    padding-top: 30px;
}

.mission-img img {
    float: right;
    width: 100%;
    border-radius: 18px;
}

.mision-breaker {
    float: left;
    width: 100%;
    padding: 95px 0px 87px 0px;
    background-image: url(../images/mision-break.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 386px;
}

.mision-breaker-hed {
    float: left;
    width: 100%;
    padding: 0px 147px;
}

.mision-breaker-hed h2 {
    float: left;
    width: 100%;
    font-style: italic;
    font-weight: 400;
    font-size: 50px;
    color: white;
    line-height: 52px;
    margin-bottom: 0px;
}

.mision-breaker-logo {
    float: left;
    width: 100%;
    position: relative;
    z-index: 11;
    margin-top: 49px;
}

.mision-breaker-logo img {
    float: left;
    width: 128px;
}

.mision-object {
    float: left;
    width: 100%;
    padding-top: 65px;
    padding-bottom: 80px;
}

.m-object-hed {
    float: left;
    width: 72%;
    margin-bottom: 60px;
}

.m-object-hed h2 {
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 40px;
    color: black;
    margin-bottom: 15px;
}

.m-object-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    line-height: 26px;
}

.m-obj-bx {
    float: left;
    width: 100%;
    background: #f2fde7;
    border-radius: 12px;
    padding: 0px 21px 38px 21px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-count {
    float: left;
    height: 64px;
    width: 64px;
    background: #577434;
    padding: 18px 0px;
    border-radius: 8px;
    margin-top: -30px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-count h3 {
    float: left;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 31px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-obj-bx p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 19px;
    color: black;
    margin-bottom: 0px;
    margin-top: 25px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-obj-bx:hover {
    background: #577434;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-obj-bx:hover .m-count {
    background: #f2fde7;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-obj-bx:hover .m-count h3 {
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.m-obj-bx:hover p {
    color: white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.outlets {
    float: left;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 20px;
    background: #f3f3f34a;
}

.outlet-1 {
    float: left;
    width: 100%;
    /*box-shadow: 3px 7px 13px 8px #f6f6f6;*/
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    margin-bottom: 60px;
}

.outlet-img {
    float: left;
    width: 100%;
}

.outlet-img img {
    float: left;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.outlet-txt {
    float: left;
    width: 100%;
    background: white;
    padding: 25px 15px;
    border-radius: 0px 0px 10px 10px;
}

.outlet-location {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.outlet-location-img {
    float: left;
    width: 12%;
}

.outlet-location-img img {
    float: left;
    width: 31px;
}

.outlet-location-txt {
    float: left;
    width: 88%;
    padding-left: 12px;
}

.outlet-location-txt h3 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    color: black;
    margin-bottom: 2px;
}

.outlet-location-txt p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-bottom: 0px;
}

.outlet-location-txt a {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    margin-bottom: 0px;
}

.outlet-location-txt a:hover {
    text-decoration: none;
}

.outlet-loc-butn {
    float: left;
    width: 73%;
    margin-top: 10px;
}

.outlet-loc-butn a {
    float: left;
    width: 180px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.outlet-loc-butn a .in-rond1 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.outlet-loc-butn a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.outlet-loc-butn a:hover .in-rond1 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.outlet-gallery {
    float: right;
    width: 27%;
    margin-top: -12px;
}

.outlet-gallery a img {
    float: left;
    width: 39px;
    margin-bottom: 5px;
    opacity: 0.5;
}

.outlet-gallery a p {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    color: #60863b;
    margin-bottom: 0px;
    line-height: 16px;
    opacity: 0.5;
}

.outlet-1:hover {
    border: 1px solid #60863b63;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-ful {
    float: left;
    width: 100%;
    padding-bottom: 60px;
}

.contact-addrs {
    float: left;
    width: 100%;
    padding-top: 50px;
}

.contact-addrs h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    margin-bottom: 23px;
}

.contact-addrs p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
}

.contact-location {
    float: left;
    width: 100%;
    margin-top: 40px;
}

.contact-location-img {
    float: left;
    width: 70px;
    height: 70px;
    background: #efa355;
    padding-top: 13px;
    border-radius: 9px;
}

.contact-location-img img {
    float: none;
    width: 44px;
    margin: auto;
    display: block;
}

.contact-location-txt {
    float: left;
    width: 80%;
    margin-left: 18px;
    margin-top: 7px;
}

.contact-location-txt h3 {
    float: left;
    width: 100%;
    color: #505050;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-location-txt p {
    float: left;
    width: 100%;
    color: black;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
}

.contact-mail {
    float: left;
    width: 57%;
    margin-top: 50px;
}

.contact-mail-txt {
    float: left;
    width: 68%;
    padding-left: 25px;
    margin-top: 17px;
}

.contact-mail-txt h3 {
    float: left;
    width: 100%;
    color: #363636;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-mail-txt a {
    float: left;
    width: 100%;
    color: black;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-mail-txt a:hover {
    text-decoration: none;
    color: #efa355;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-call {
    float: left;
    width: 43%;
    margin-top: 50px;
}

.contact-form {
    float: left;
    width: 100%;
    padding-right: 47px;
    margin-top: -138px;
}

.contact-form-hed {
    float: left;
    width: 100%;
    padding: 35px 30px;
    background: #f5f4f7;
    border-radius: 15px 15px 0px 0px;
}

.contact-form-hed-img {
    float: left;
    width: 68px;
    height: 68px;
    background: #efa355;
    padding-top: 10px;
    border-radius: 9px;
    margin-right: 20px;
}

.contact-form-hed-img img {
    float: none;
    width: 44px;
    margin: auto;
    display: block;
}

.contact-form-hed p {
    float: none;
    font-weight: 400;
    font-size: 19px;
    color: black;
    margin-bottom: 0px;
    margin-top: 8px;
}

.contact-form-hed p span {
    font-weight: 700;
    font-size: 19px;
}

.contact-forms {
    float: left;
    width: 100%;
    background: white;
    padding: 35px 25px;
    box-shadow: 3px 25px 42px 8px #f6f6f6;
    border-radius: 0px 0px 15px 15px;
}

.h-form {
    border-bottom: 1px solid #b0aaaa;
    color: black;
    display: block;
    font-weight: 400;
    font-size: 15px;
    /* text-transform: uppercase; */
    height: 70px;
    margin-bottom: 30px;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    border: solid 1px rgb(118 118 118 / 22%);
    /* margin-top: 3px;*/
    width: 100%;
    float: left;
    padding: 10px;
    /* margin-top: 17px;*/
    border-radius: 10px;
}

/*.mct_form:hover {
    border-bottom: 1px solid #72593c;
}*/
.contact-form-snd {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.contact-form-snd a {
    float: left;
    width: 180px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd a .in-rond2 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd a:hover .in-rond2 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd button {
    cursor: pointer;
    float: left;
    width: 180px;
    height: 54px;
    background: #efa355;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    border: none;
}

.contact-form-snd button .in-rond2 {
    width: 14px;
    height: 14px;
    background: #fff;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd button:hover {
    background: #000000;
    text-decoration: none;
    color: white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-form-snd button:hover .in-rond2 {
    background: #ffffff;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.map {
    float: left;
    width: 100%;
    border-radius: 15px;
    margin-top: 70px;
    background-image: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 404px;
}

.brands-ful {
    float: left;
    width: 100%;
    padding-top: 85px;
    padding-bottom: 10px;
}

.brands-logo {
    float: left;
    width: 100%;
    margin-bottom: 70px;
}

.brands-logo img {
    float: none;
    margin: auto;
    display: block;
    width: 215px;
    object-fit: contain;
    height: 110px;
}

.careers-ful {
    float: left;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 75px;
}

.promotion-ful {
    float: left;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 25px;
}

.careers-ful-hed {
    float: left;
    width: 100%;
}

.careers-ful-hed h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    margin-bottom: 25px;
}

.complaints h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    margin-bottom: 23px;
}

.complaints p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 35px;
}

.careers-bx {
    float: left;
    width: 100%;
    padding: 30px 30px;
    border: 1px solid #60863b63;
    border-radius: 14px;
    margin-bottom: 40px;
}

.careers-bx-txt {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.careers-bx-txt h2 {
    float: left;
    width: 100%;
    color: #577434;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.careers-bx-txt h3 {
    float: left;
    width: 100%;
    color: black;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0px;
}

.careers-bx-butn {
    float: left;
    width: 100%;
}

.careers-bx-butn a {
    float: left;
    width: 170px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-butn a .in-rond3 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-butn a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-butn a:hover .in-rond3 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-all-butn {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.careers-bx-all-butn a {
    float: none;
    display: inline-block;
    width: 170px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-all-butn a .in-rond3 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-all-butn a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.careers-bx-all-butn a:hover .in-rond3 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.career-form {
    float: left;
    width: 100%;
    margin-top: 27px;
}

.career-form h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    margin-bottom: 23px;
}

.career-form p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 35px;
}

.contact-labl {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.carer-form {
    border-bottom: 1px solid #b0aaaa;
    color: black;
    display: block;
    font-weight: 400;
    font-size: 15px;
    /* text-transform: uppercase; */
    height: 56px;
    margin-bottom: 25px;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    border: solid 1px rgb(118 118 118 / 22%);
    /* margin-top: 3px;*/
    width: 100%;
    float: left;
    padding: 12px;
    /* margin-top: 17px;*/
    border-radius: 10px;
}

.complaints {
    float: left;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 75px;
}

.complaints-form {
    float: left;
    width: 100%;
}

.in-division {
    float: left;
    width: 100%;
    height: 590px;
    background-image: url(../images/division-bac.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90px;
    position: relative;
}

.in-division h2 {
    float: left;
    width: 100%;
    line-height: 74px;
    font-weight: 700;
    font-size: 75px;
    background: #b3e681;
    background: linear-gradient(to right, #b3e681 0%, #ddf6bf 19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 17px;
}

.in-division p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 0px;
    color: white;
    line-height: 43px;
}

.in-div-breaker {
    float: right;
    width: 100%;
    position: absolute;
    z-index: 11;
    margin-top: 0px;
    bottom: -57px;
}

.in-div-breaker img {
    float: right;
    width: 114px;
}

.division-b1 {
    float: left;
    width: 100%;
    padding-bottom: 30px;
}

.div-b1-bx1 {
    float: left;
    width: 100%;
    padding-left: 30px;
    margin-top: -155px;
}

.div-b1-bx1 img {
    float: left;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    /*box-shadow: 1px 3px 19px 6px #3030303d;*/
}

.div-b1-bx2 {
    float: left;
    width: 100%;
    padding-left: 25px;
    margin-top: -155px;
}

.div-b1-bx2 img {
    float: left;
    /*box-shadow: 1px 3px 19px 6px #3030303d;*/
    max-width: 100%;
    border-radius: 10px;
}

.divs-b1-hed {
    float: left;
    width: 100%;
    margin-top: 95px;
}

.divs-b1-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    color: black;
    line-height: 30px;
    margin-bottom: 23px;
}

.divs-b1-hed h2 {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 80px;
    color: black;
    margin-bottom: 0px;
    line-height: 88px;
}

.divs-b1-para {
    float: left;
    width: 100%;
    margin-top: 43px;
}

.divs-b1-para p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: black;
    margin-bottom: 20px;
}

.divs-b1-patern {
    float: left;
    width: 100%;
}

.divs-b1-patern img {
    float: left;
    width: 104px;
    margin-left: 40px;
    margin-top: 145px;
}

.divs-b2 {
    float: left;
    width: 100%;
    background-image: url(../images/division-b2-bac.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 790px;
}

.div-b2-bx {
    float: right;
    width: 50%;
    background: white;
    height: 245px;
    border-radius: 0px 0px 0px 15px;
    padding-top: 23px;
    padding-left: 90px;
}

.div-b2-bx p {
    float: left;
    width: 100%;
    font-size: 38px;
    font-weight: 400;
    line-height: 46px;
    background: #392A2A;
    background: linear-gradient(to right, #392A2A 0%, #567d27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    margin-top: 25px;
}

.div-b2-bx p span {
    font-weight: 700;
}

.divs-b2-line {
    float: left;
    width: 92px;
    height: 5px;
    background: #899d71;
    border-radius: 35px;
}

.divs-b2-hed {
    float: left;
    width: 100%;
    margin-top: 25px;
}

.divs-b2-hed img {
    float: left;
    width: 115px;
}

.divs-b2-hed h2 {
    float: left;
    width: 100%;
    text-align: right;
    font-weight: 400;
    font-size: 70px;
    color: white;
    line-height: 78px;
    margin-top: -51px;
}

.div-b2-bx2 {
    float: left;
    width: 50%;
    background: white;
    height: 155px;
    border-radius: 0px 15px 0px 0px;
    margin-top: 60px;
}

.div-b3 {
    float: left;
    width: 100%;
}

.div-b3-add {
    float: left;
    width: 100%;
    margin-top: -76px;
    margin-bottom: 50px;
}

.div-b3-add p {
    float: left;
    width: 100%;
    color: black;
    font-weight: 500;
    font-size: 37px;
    line-height: 43px;
    margin-bottom: 0px;
}

.div-b3-img1 {
    float: left;
    width: 50%;
}

.div-b3-img1 img {
    float: left;
    max-width: 100%;
    border-radius: 10px;
}

.div-b3-img2 {
    float: left;
    width: 50%;
    margin-top: 114px;
}

.div-b3-img2 img {
    float: left;
    max-width: 100%;
    border-radius: 10px;
}

.div-b3-hed {
    float: left;
    width: 100%;
    margin-top: 52px;
}

.div-b3-hed h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 40px;
    color: black;
    margin-bottom: 16px;
}

.div-b3-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: black;
    line-height: 26px;
    margin-bottom: 0px;
}

.div-b3-bx1 {
    float: left;
    width: 100%;
    margin-top: 38px;
}

.dble-round {
    float: left;
    width: 23px;
    height: 23px;
    background: #4f6724;
    border-radius: 15px;
    border: 6px solid #bbc4aa;
    margin-right: 12px;
}

.div-b3-bx1 h3 {
    font-weight: 600;
    font-size: 20px;
    color: black;
    margin-bottom: 0px;
}

.div-b3-bx1 p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: black;
    float: left;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0px;
}

.fmcg-slide {
    float: left;
    width: 100%;
    padding-top: 68px;
    padding-left: 2%;
    padding-right: 3%;
}

/*.cntr-sliding{
    padding: 0 5%;
}*/
.s3box {
    float: left;
    width: 93%;
    height: 338px;
    border-radius: 15px;
    margin-top: 135px;
}

.s3box a img {
    float: left;
    width: 100%;
    border-radius: 15px;
    height: 337px;
    object-fit: cover;
}

.slick-slide {
    /*    width: 295px!important;
    max-width: 20%!important;*/
    margin: 0 18px!important;
}

.slick-list {
    height: 807px;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center, .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
    /* background-color: #ffffff; */
}

.slick-center .s3box img {
    border-radius: 15px;
    position: relative;
    height: 386px;
    /*box-shadow: 1px 3px 19px 6px #3030303d;*/
}

.slick-center .s3box {
    height: 386px;
    margin-top: 0px;
    margin-bottom: 75px;
    border-radius: 15px;
}

.center-slider .slick-current.slick-active {
    transform: scale(1.1);
    /* background-color: #ffffff; */
    /*margin-top: -75px;*/
    height: 386px;
    border-radius: 15px;
    width: 440px!important;
    max-width: 35%!important;
    /*margin: 0 60px!important;*/
}

.slick-next, .slick-prev {
    z-index: 5;
    cursor: pointer;
}

.slick-next {
    left: 80px;
    top: 0;
    position: absolute;
    /*background-image: url(../images/division-slide-l.png);
  background-repeat: no-repeat;*/
    height: 65px;
    width: 65px;
    border-radius: 50px;
    outline: none;
    border: none;
    background-color: white;
    margin-top: 50px;
}

.slick-prev:focus {
    outline: none!important;
}

.slick-next:focus {
    outline: none!important;
}

.slick-prev {
    left: 0px;
    height: 65px;
    width: 65px;
    border-radius: 50px;
    outline: none;
    border: none;
    background-color: white;
    position: relative;
    top: 50px;
    /*  background-image: url(../images/division-slide-r.png);
  background-repeat: no-repeat;*/
}

/*.slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}


.slick-prev:before, .slick-next:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     background-image: url(../images/division-slide-l.png);
}
*/
.slick-next img {
    width: 65px;
    height: 65px;
}

.slick-prev img {
    width: 65px;
    height: 65px;
}

/*.slick-next:before {
    content: ' ';
*/
}

.division-callto-hed {
    float: left;
    width: 100%;
}

.division-callto-hed img {
    float: none;
    width: 115px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.division-callto-hed h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 55px;
    background: #FFFFFF;
    background: linear-gradient(to right, #FFFFFF 0%, #bfdc9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.division-callto-hed h2 span {
    font-weight: 500;
    font-size: 60px;
}

.in-bismi {
    float: left;
    width: 100%;
    height: 590px;
    background-image: url(../images/bismi-bac.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90px;
    position: relative;
}

.bismi-b1-patern {
    float: left;
    width: 100%;
}

.bismi-b1-patern img {
    float: left;
    max-width: 100%;
    margin-left: 43px;
    margin-top: 53px;
}

.in-bismi h2 {
    float: left;
    width: 100%;
    line-height: 74px;
    font-weight: 700;
    font-size: 75px;
    background: #b3e681;
    background: linear-gradient(to right, #b3e681 0%, #ddf6bf 19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 17px;
}

.in-bismi p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 0px;
    color: white;
    line-height: 43px;
}

.bismi-b2-line {
    float: left;
    width: 92px;
    height: 5px;
    background: #4c94bd;
    border-radius: 35px;
}

.bismi-dble-round {
    float: left;
    width: 23px;
    height: 23px;
    background: #0c80b3;
    border-radius: 15px;
    border: 6px solid #9cc4db;
    margin-right: 12px;
}

.bismi-callt {
    float: left;
    width: 100%;
    background: rgb(12,105,155);
    background: linear-gradient(180deg, rgba(12,105,155,1) 0%, rgba(21,134,168,1) 100%);
    height: 436px;
    padding-top: 113px;
    margin-top: -435px;
    position: relative;
    z-index: -1;
}

.bismi-callto-hed h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 55px;
    background: #FFFFFF;
    background: linear-gradient(to right, #FFFFFF 25%, #91c8e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
}

.bismi-callto-hed {
    float: left;
    width: 100%;
    text-align: center;
}

.bismi-callto-hed h2 span {
    font-weight: 500;
    font-size: 60px;
}

.bismi-callto-hed a img {
    float: none;
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
    width: 73px;
}

.bismi-callto-hed a img:hover {
    margin-top: -4px;
}

.news-img {
    float: left;
    width: 100%;
}

.news-img img {
    float: left;
    width: 100%;
    border-radius: 9px;
}

.news-hed {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.news-hed h3 {
    float: left;
    width: 100%;
    color: #577434;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-hed h2 {
    float: left;
    width: 100%;
    color: black;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-hed p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: black;
    line-height: 26px;
}

.other-media {
    float: left;
    width: 100%;
    border-radius: 9px;
    padding: 15px;
    background-color: #4e6d29d9;
}

.other-media h2 {
    float: left;
    width: 100%;
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    line-height: 30px;
    background: #bfd52f;
    padding: 15px;
    border-radius: 9px;
}

.news-list {
    float: left;
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    border-radius: 5px;
    background-color: #ffffff;
    color: black;
    text-align: center;
    border: solid 1px white;
}

.news-list:hover {
    text-decoration: none !important;
    border: solid 1px #bfd52f;
}

.news-list img {
    float: left !important;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 8px !important;
    margin-left: 0px !important;
}

.news-list p {
    width: auto;
    float: none;
    text-align: left;
    line-height: 22px !important;
    font-size: 15px !important;
    margin-bottom: 0px;
    font-weight: 400;
    padding: 0px !important;
}

.news-list h4 {
    width: auto;
    float: none;
    text-align: left;
    line-height: 22px !important;
    font-size: 15px !important;
    margin-bottom: 0px;
    font-weight: 400;
    padding: 0px !important;
    color: #577434;
}

.mob-fmcg-slide {
    float: left;
    width: 100%;
    display: none;
    padding-top: 70px;
}

.slide-divsion .owl-nav {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 66px;
}

.slide-divsion .owl-prev img {
    width: 60px!important;
    margin-right: 16px;
}

.slide-divsion .owl-next img {
    width: 60px!important;
}

.promotion-bx {
    float: left;
    width: 100%;
    box-shadow: 3px 7px 13px 8px #f6f6f6;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    margin-bottom: 60px;
}

.promotion-bx:hover {
    border: 1px solid #60863b63;
    box-shadow: 3px 7px 13px 8px transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.pro-bx-img {
    float: left;
    width: 100%;
}

.pro-bx-img img {
    float: left;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.pro-bx-txt {
    float: left;
    width: 100%;
    background: white;
    padding: 25px 15px;
    border-radius: 0px 0px 10px 10px;
}

.pro-bx-txt h2 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 23px;
    color: black;
    margin-bottom: 15px;
}

.pro-bx-txt h4 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 17px;
    color: black;
    margin-bottom: 0px;
}

.pro-bx-butn {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.pro-bx-butn a {
    float: left;
    width: 180px;
    height: 54px;
    background: #60863b;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    padding: 17px 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.pro-bx-butn a .in-rond1 {
    width: 14px;
    height: 14px;
    background: #bfd52f;
    float: none;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -3px;
    margin-left: 20px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.pro-bx-butn a:hover {
    background: #bfd52f;
    text-decoration: none;
    color: black;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.pro-bx-butn a:hover .in-rond1 {
    background: #60863b;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.promotion-menw {
    display: none!important;
}

.navigation {
    width: 100%;
    height: 48px;
    display: table;
    position: relative;
    font-family: inherit;
    background-color: #fff;
}

.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.navigation-portrait {
    height: 0px;
}

.navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
}

.navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.align-to-right {
    float: right;
}

.nav-header {
    float: left;
}

.navigation-hidden .nav-header {
    display: none;
}

.nav-brand {
    line-height: 70px;
    padding: 0;
    color: #343a40;
    font-size: 24px;
    text-decoration: none !important;
}

.nav-brand:hover, .nav-brand:focus {
    color: #343a40;
}

.navigation-portrait .nav-brand {
    font-size: 18px;
    line-height: 48px;
}

.nav-logo > img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
}

.nav-logo:focus > img {
    outline: initial;
}

.navigation-portrait .nav-logo > img {
    height: 36px;
    margin: 6px auto 6px 15px;
    padding: 0;
}

.nav-toggle {
    width: 30px;
    height: 30px;
    padding: 6px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 15px;
    display: none;
    cursor: pointer;
}

.nav-toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #343a40;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #343a40, 0 1em 0 0 #343a40;
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    left: auto;
    right: 0;
}

.nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #343a40;
    font-size: 26px;
    cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    font-size: 0;
}

.navigation-portrait .nav-menu {
    width: 100%;
}

.navigation-landscape .nav-menu.nav-menu-centered {
    float: none;
    text-align: center;
}

.navigation-landscape .nav-menu.nav-menu-centered > li {
    float: none;
}

.nav-menu > li {
    display: inline-block;
    float: left;
    text-align: left;
}

.navigation-portrait .nav-menu > li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu > li:last-child {
    border-bottom: solid 1px #f0f0f0;
}

.nav-menu + .nav-menu > li:first-child {
    border-top: none;
}

.nav-menu > li > a {
    /*height: 70px;*/
    padding: 35px 22px;
    display: inline-block;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: black;
    transition: color 0.3s, background 0.3s;
}

.navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 12px 15px 12px 26px;
}

.nav-menu > li:hover > a, .nav-menu > li.active > a, .nav-menu > li.focus > a {
    color: #dd6922;
}

.nav-menu > li > a > i, .nav-menu > li > a > [class*="ion-"] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    transform: scale(1.4);
}

.nav-menu > li > a > [class*="ion-"] {
    width: 16px;
    display: inline-block;
    transform: scale(1.8);
}

.navigation-portrait .nav-menu.nav-menu-social {
    width: 100%;
    text-align: center;
}

.nav-menu.nav-menu-social > li {
    text-align: center;
    float: none;
    border: none !important;
}

.navigation-portrait .nav-menu.nav-menu-social > li {
    width: auto;
}

.nav-menu.nav-menu-social > li > a > [class*="ion-"] {
    font-size: 12px;
}

.nav-menu.nav-menu-social > li > a > .fa {
    font-size: 14px;
}

.navigation-portrait .nav-menu.nav-menu-social > li > a {
    padding: 15px;
}

.submenu-indicator {
    margin-left: 6px;
    margin-top: 6px;
    float: right;
    transition: all 0.2s;
}

.navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 20000;
}

.submenu-indicator-chevron {
    height: 6px;
    width: 6px;
    display: none;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #70798b #70798b transparent;
    transform: rotate(45deg);
    transition: border 0.2s;
}

.navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron, .nav-menu > .active > a .submenu-indicator-chevron, .nav-menu > .focus > a .submenu-indicator-chevron {
    border-color: transparent #967adc #967adc transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 19999;
}

.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nav-search {
    height: 70px;
    float: right;
    z-index: 19998;
}

.navigation-portrait .nav-search {
    height: 48px;
    padding: 0 10px;
    margin-right: 52px;
}

.navigation-hidden .nav-search {
    display: none;
}

.nav-search-button {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    background-color: #fbfcfd;
}

.navigation-portrait .nav-search-button {
    width: 50px;
    height: 48px;
    line-height: 46px;
    font-size: 22px;
}

.nav-search-icon {
    width: 14px;
    height: 14px;
    margin: 2px 8px 8px 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #343a40;
    text-align: left;
    text-indent: -9999px;
    border: 2px solid;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.nav-search-icon:after, .nav-search-icon:before {
    content: "";
    pointer-events: none;
}

.nav-search-icon:before {
    width: 2px;
    height: 11px;
    top: 11px;
    position: absolute;
    left: 50%;
    border-radius: 0 0 1px 1px;
    box-shadow: inset 0 0 0 32px;
    transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
    color: #ff6b00;
}

.nav-search > form {
    width: 100%;
    height: 100%;
    padding: 0 auto;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 99;
}

.nav-search-inner {
    width: 70%;
    height: 70px;
    margin: auto;
    display: table;
}

.navigation-portrait .nav-search-inner {
    height: 48px;
}

.nav-search-inner input[type="text"], .nav-search-inner input[type="search"] {
    height: 70px;
    width: 100%;
    margin: 0;
    padding: 0 12px;
    font-size: 26px;
    text-align: center;
    color: #343a40;
    outline: none;
    line-height: 70px;
    border: none;
    background-color: transparent;
    transition: all 0.3s;
}

.navigation-portrait .nav-search-inner input[type="text"], .navigation-portrait .nav-search-inner input[type="search"] {
    height: 48px;
    font-size: 18px;
    line-height: 48px;
}

.nav-search-close-button {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: normal;
    color: #343a40;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}

.navigation-portrait .nav-search-close-button {
    top: 10px;
    right: 14px;
}

.nav-button {
    margin: 18px 15px 0;
    padding: 8px 14px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.nav-button:hover, .nav-button:focus {
    color: #fff;
    text-decoration: none;
}

.navigation-portrait .nav-button {
    width: calc(100% - 52px);
    margin: 17px 26px;
}

.nav-text {
    margin: 25px 15px;
    display: inline-block;
    color: #343a40;
    font-size: 14px;
}

.navigation-portrait .nav-text {
    width: calc(100% - 52px);
    margin: 12px 26px 0;
}

.navigation-portrait .nav-text + ul {
    margin-top: 15px;
}

.nav-dropdown {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
}

.nav-menu > li > .nav-dropdown {
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown > li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}

.nav-dropdown > li > a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 13px;
    color: #343a40;
    background-color: #fdfdfd;
}

.nav-dropdown > li:hover > a, .nav-dropdown > li.focus > a {
    color: #ff6b00;
}

.nav-dropdown.nav-dropdown-left {
    right: 0;
}

.nav-dropdown > li > .nav-dropdown-left {
    left: auto;
    right: 100%;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
    text-align: right;
}

.navigation-portrait .nav-dropdown > li > a {
    padding: 12px 20px 12px 30px;
}

.navigation-portrait .nav-dropdown > li > ul > li > a {
    padding-left: 50px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
    padding-left: 70px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
    padding-left: 90px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
    padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
    right: 15px;
    top: 10px;
    position: absolute;
}

.navigation-portrait .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(-45deg);
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(45deg);
}

.nav-dropdown > li:hover > a .submenu-indicator-chevron, .nav-dropdown > .focus > a .submenu-indicator-chevron {
    border-color: transparent #ff6b00 #ff6b00 transparent;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
    left: 10px;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(135deg);
}

.nav-dropdown-horizontal {
    width: 100%;
    left: 0;
    background-color: #fdfdfd;
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
    width: 100%;
    top: 100%;
    left: 0;
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
    border-top: none;
}

.nav-dropdown-horizontal > li {
    width: auto;
    clear: none;
    position: static;
}

.navigation-portrait .nav-dropdown-horizontal > li {
    width: 100%;
}

.nav-dropdown-horizontal > li > a {
    position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
    height: 18px;
    top: 11px;
    transform: rotate(90deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
    height: 42px;
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.megamenu-panel {
    width: 100%;
    padding: 15px;
    display: none;
    position: absolute;
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    border-top: solid 1px #f0f0f0;
    background-color: #fdfdfd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
}

.navigation-portrait .megamenu-panel {
    padding: 25px;
    position: static;
    display: block;
}

.megamenu-panel [class*="container"] {
    width: 100%;
}

.megamenu-panel [class*="container"] [class*="col-"] {
    padding: 0;
}

.megamenu-panel-half {
    width: 50%;
}

.megamenu-panel-quarter {
    width: 25%;
}

.navigation-portrait .megamenu-panel-half, .navigation-portrait .megamenu-panel-quarter {
    width: 100%;
}

.megamenu-panel-row {
    width: 100%;
}

.megamenu-panel-row:before, .megamenu-panel-row:after {
    content: "";
    display: table;
    line-height: 0;
}

.megamenu-panel-row:after {
    clear: both;
}

.megamenu-panel-row [class*="col-"] {
    display: block;
    min-height: 20px;
    float: left;
    margin-left: 3%;
}

.megamenu-panel-row [class*="col-"]:first-child {
    margin-left: 0;
}

.navigation-portrait .megamenu-panel-row [class*="col-"] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
}

.navigation-portrait .megamenu-panel-row:first-child [class*="col-"]:first-child {
    margin-top: 0;
}

.megamenu-panel-row .col-1 {
    width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
    width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
    width: 22.75%;
}

.megamenu-panel-row .col-4 {
    width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
    width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
    width: 48.5%;
}

.megamenu-panel-row .col-7 {
    width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
    width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
    width: 74.25%;
}

.megamenu-panel-row .col-10 {
    width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
    width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
    width: 100%;
}

.megamenu-tabs {
    width: 100%;
    float: left;
    display: block;
}

.megamenu-tabs-nav {
    width: 20%;
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

.navigation-portrait .megamenu-tabs-nav {
    width: 100%;
}

.megamenu-tabs-nav > li > a {
    width: 100%;
    padding: 10px 16px;
    float: left;
    font-size: 13px;
    text-decoration: none;
    color: #343a40;
    border: solid 1px #eff0f2;
    outline: 0;
    background-color: #fff;
}

.megamenu-tabs-nav > li.active a, .megamenu-tabs-nav > li:hover a {
    background-color: #f5f5f5;
}

.megamenu-tabs-pane {
    width: 80%;
    min-height: 30px;
    padding: 20px;
    float: right;
    display: none;
    font-size: 13px;
    color: #343a40;
    border: solid 1px #eff0f2;
    background-color: #fff;
}

.megamenu-tabs-pane.active {
    display: block;
}

.navigation-portrait .megamenu-tabs-pane {
    width: 100%;
}

.megamenu-lists {
    width: 100%;
    display: table;
}

.megamenu-list {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
}

.megamenu-list:last-child {
    margin: 0;
    border: none;
}

.navigation-landscape .megamenu-list {
    margin: -15px 0;
    padding: 20px 0;
    border-right: solid 1px #f0f0f0;
}

.navigation-landscape .megamenu-list:last-child {
    border: none;
}

.megamenu-list > li > a {
    width: 100%;
    padding: 10px 15px;
    display: inline-block;
    color: #343a40;
    text-decoration: none;
    font-size: 13px;
}

.megamenu-list > li > a:hover {
    background-color: #ff6b00;
    color: #fff;
}

.megamenu-list > li.megamenu-list-title > a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #343a40;
}

.megamenu-list > li.megamenu-list-title > a:hover {
    background-color: transparent;
}

.navigation-landscape .list-col-2 {
    width: 50%;
}

.navigation-landscape .list-col-3 {
    width: 33%;
}

.navigation-landscape .list-col-4 {
    width: 25%;
}

.navigation-landscape .list-col-5 {
    width: 20%;
}

.nav-menu > li > a {
    /*color: #343a40;*/
    /*text-transform: uppercase;*/
}

.nav-dropdown > li > a {
    color: black;
    padding: 10px 20px;
    border-bottom: 1px solid #f6f6f6;
    font-size: 16px;
    font-weight: 500;
}

.nav-dropdown > li > a:hover, .nav-dropdown > li > a:focus {
    color: #dd6922;
}

.main_header_area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 10px 10px 10px 30px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .nav-dropdown > li > a, .megamenu-list > li > a {
        width: 65%;
    }
}

.mob-hdr {
    /* display: none; */
}

.mob-logo {
    display: none;
}

.stable {
    border-bottom: 2px solid #bfd52f;
    position: relative;
    /*top: 67px;*/
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 30px;
}

@media (max-width: 1024px) {
    .hdr-promo:hover {
        background: none;
        transition: all ease-in-out 0.5s;
        -o-transition: all ease-in-out 0.5s;
        -ms-transition: all ease-in-out 0.5s;
        -moz-transition: all ease-in-out 0.5s;
        -webkit-transition: all ease-in-out 0.5s;
    }

    .hdr-promo:hover img {
        filter: none;
        transition: all ease-in-out 0.5s;
        -o-transition: all ease-in-out 0.5s;
        -ms-transition: all ease-in-out 0.5s;
        -moz-transition: all ease-in-out 0.5s;
        -webkit-transition: all ease-in-out 0.5s;
    }

    .hdr-promo:hover a {
        color: #5aa907;
        transition: all ease-in-out 0.5s;
        -o-transition: all ease-in-out 0.5s;
        -ms-transition: all ease-in-out 0.5s;
        -moz-transition: all ease-in-out 0.5s;
        -webkit-transition: all ease-in-out 0.5s;
    }
}

@media (max-width: 1024px) {
    .submenu-indicator-chevron {
        display: block;
    }

    .stable {
        display: none!important;
    }
}

@media(min-width: 992px) and (max-width: 1000px) {
    .center-slider .slick-current.slick-active {
        width: 311px!important;
    }

    .fmcg-slide {
        padding-left: 2%;
        padding-right: 4%;
    }
}

@media(min-width: 1001px) and (max-width: 1020px) {
    .center-slider .slick-current.slick-active {
        width: 311px!important;
    }

    .fmcg-slide {
        padding-left: 2%;
        padding-right: 3%;
    }
}

@media(min-width: 1021px) and (max-width: 1050px) {
    .center-slider .slick-current.slick-active {
        width: 311px!important;
    }

    .fmcg-slide {
        padding-left: 2%;
        padding-right: 2%;
    }
}

@media(min-width: 1051px) and (max-width: 1080px) {
    .center-slider .slick-current.slick-active {
        width: 311px!important;
    }

    .fmcg-slide {
        padding-left: 2%;
        padding-right: 1%;
    }
}

@media(min-width: 1081px) and (max-width: 1120px) {
    .center-slider .slick-current.slick-active {
        width: 311px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1121px) and (max-width: 1160px) {
    .center-slider .slick-current.slick-active {
        width: 330px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1161px) and (max-width: 1210px) {
    .center-slider .slick-current.slick-active {
        width: 345px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1211px) and (max-width: 1260px) {
    .center-slider .slick-current.slick-active {
        width: 360px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1261px) and (max-width: 1300px) {
    .center-slider .slick-current.slick-active {
        width: 375px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1301px) and (max-width: 1332px) {
    .center-slider .slick-current.slick-active {
        width: 390px!important;
    }

    .fmcg-slide {
        padding-left: 3%;
        padding-right: 1%;
    }
}

@media(min-width: 1400px) and (max-width: 1460px) {
    .fmcg-slide {
        padding-left: 3%;
    }
}

@media(min-width: 1460px) and (max-width: 1500px) {
    .s3box {
        width: 96%;
    }
}

@media(min-width: 1501px) and (max-width: 1600px) {
    .s3box {
        width: 96%;
    }

    .fmcg-slide {
        padding-left: 5%;
        padding-right: 5%;
    }

    .slick-slide {
        margin: 0 20px!important;
    }
}

@media(min-width: 1601px) and (max-width: 1700px) {
    .s3box {
        width: 96%;
    }

    .fmcg-slide {
        padding-left: 6%;
        padding-right: 6%;
    }

    .slick-slide {
        margin: 0 22px!important;
    }
}

@media(min-width: 1701px) and (max-width: 1800px) {
    .s3box {
        width: 96%;
    }

    .fmcg-slide {
        padding-left: 7%;
        padding-right: 7%;
    }

    .slick-slide {
        margin: 0 26px!important;
    }
}

@media(min-width: 1801px) and (max-width: 1900px) {
    .s3box {
        width: 98%;
    }

    .fmcg-slide {
        padding-left: 8%;
        padding-right: 8%;
    }

    .slick-slide {
        margin: 0 32px!important;
    }
}

@media(min-width: 1901px) and (max-width: 2000px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 9%;
        padding-right: 9%;
    }

    .slick-slide {
        margin: 0 36px!important;
    }
}

@media(min-width: 2001px) and (max-width: 2100px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 10%;
        padding-right: 10%;
    }

    .slick-slide {
        margin: 0 41px!important;
    }
}

@media(min-width: 2101px) and (max-width: 2200px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 11%;
        padding-right: 11%;
    }

    .slick-slide {
        margin: 0 46px!important;
    }
}

@media(min-width: 2201px) and (max-width: 2300px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 12%;
        padding-right: 12%;
    }

    .slick-slide {
        margin: 0 50px!important;
    }
}

@media(min-width: 2301px) and (max-width: 2400px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 13%;
        padding-right: 13%;
    }

    .slick-slide {
        margin: 0 54px!important;
    }
}

@media(min-width: 2401px) and (max-width: 2500px) {
    .s3box {
        width: 100%;
    }

    .fmcg-slide {
        padding-left: 14%;
        padding-right: 14%;
    }

    .slick-slide {
        margin: 0 58px!important;
    }
}

@media (max-width: 767px) {
    .header_menu_area > ul {
        top: 186px;
    }
}

@media (max-width: 991px) {
    .fmcg-slide {
        display: none;
    }

    .mob-fmcg-slide {
        display: block;
    }

    .s3box {
        width: 100%;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .b2-slide {
        width: 60%!important;
    }

    .b2-txt {
        width: 40%!important;
    }

    .b6-slide {
        width: 60%!important;
    }

    .b6-txt {
        width: 40%!important;
    }
}

@media (max-width: 465px) {
    .contact-form-hed p {
        font-size: 17px;
        margin-top: 0px;
    }
}

@media(min-width: 412px) and (max-width: 575px) {
    .banner {
        height: 500px;
    }

    .banner:before {
        height: 500px!important;
        top: 137px;
    }

    #myVideo {
        height: 500px!important;
    }

    .baner-hed {
        padding-top: 0px;
        position: relative;
        margin-top: 143px;
    }
}

@media(min-width: 546px) and (max-width: 575px) {
    .fullscreen-video {
        bottom: -124px;
    }
}

@media(min-width: 412px) and (max-width: 545px) {
    .fullscreen-video {
        bottom: -64px;
    }
}

@media(min-width: 401px) and (max-width: 411px) {
    .fullscreen-video {
        bottom: -83px;
    }
}

@media(min-width: 374px) and (max-width: 400px) {
    .fullscreen-video {
        bottom: -62px;
    }
}

@media(min-width: 371px) and (max-width: 373px) {
    .fullscreen-video {
        bottom: -110px;
    }
}

@media(min-width: 355px) and (max-width: 370px) {
    .fullscreen-video {
        bottom: -65px;
    }
}

@media(min-width: 320px) and (max-width: 354px) {
    .fullscreen-video {
        bottom: -63px;
    }
}

@media(max-width: 319px) {
    .fullscreen-video {
        bottom: -89px;
    }
}

@media(min-width: 401px) and (max-width: 411px) {
    .banner {
        height: 500px;
    }

    .banner:before {
        height: 500px!important;
        top: 137px;
    }

    #myVideo {
        height: 500px!important;
    }

    .baner-hed {
        padding-top: 0px;
        position: relative;
        margin-top: 124px;
    }
}

@media (max-width: 319px) {
    .baner-hed h2 {
        font-size: 38px!important;
    }

    .baner-hed {
        margin-top: 124px!important;
    }
}

@media (max-width: 400px) {
    .in-division h2 br {
        display: none;
    }

    .in-division p br {
        display: none;
    }

    .in-bismi h2 br {
        display: none;
    }

    .in-bismi p br {
        display: none;
    }

    .banner {
        height: 450px!important;
    }

    .banner:before {
        height: 450px!important;
        top: 74px;
    }

    #myVideo {
        height: 450px!important;
    }

    .baner-hed {
        padding-top: 0px;
        position: relative;
        margin-top: 120px;
    }

    .baner-hed h2 {
        font-size: 39px!important;
    }
}

@media (max-width: 380px) {
    /*.b2-txt h2{*/ /*    font-size: 26px!important;*/ /*}*/ /*.b2-hed h2{*/ /*    font-size: 26px!important;*/ /*}*/ /*.b6-txt h2{*/ /*    font-size: 26px!important;*/ /*}*/ /*.b6-hed h2{*/ /*    font-size: 26px!important;*/ /*}*/
}

@media (max-width: 373px) {
    .ab-year h2 {
        font-size: 90px!important;
    }

    .ab-year h3 {
        font-size: 20px!important;
        line-height: 27px!important;
        margin-top: 37px!important;
    }

    .ab-his-hed {
        margin-bottom: 0px!important;
    }

    .baner-hed h2 br {
        display: none;
    }

    .baner-hed h2 {
        font-size: 38px!important;
    }

    .baner-hed {
        margin-top: 150px;
    }
}

@media (max-width: 323px) {
    /*.b2-txt h2{*/ /*    font-size: 22px!important;*/ /*}*/ /*.b2-hed h2{*/ /*    font-size: 22px!important;*/ /*}*/ /*.b6-txt h2{*/ /*    font-size: 22px!important;*/ /*}*/ /*.b6-hed h2{*/ /*    font-size: 22px!important;*/ /*}*/ .outlet-gallery {
        width: 100%;
    }

    .outlet-gallery a p {
        width: auto;
        margin-left: 7px;
        margin-top: 5px;
    }

    .outlet-loc-butn {
        width: 100%;
    }
}

@media (max-width: 515px) {
    .b2-hed h2 {
        font-size: 28px!important;
    }

    .b2-txt h2 {
        font-size: 28px!important;
    }
}

@media (max-width: 494px) {
    .b2-hed h2 {
        font-size: 27px!important;
    }

    .b2-txt h2 {
        font-size: 27px!important;
    }
}

@media (max-width: 474px) {
    .b2-hed h2 {
        font-size: 26px!important;
    }

    .b2-txt h2 {
        font-size: 26px!important;
    }
}

@media (max-width: 454px) {
    .b2-hed h2 {
        font-size: 25px!important;
    }

    .b2-txt h2 {
        font-size: 25px!important;
    }
}

@media (max-width: 434px) {
    .b2-hed h2 {
        font-size: 23px!important;
    }

    .b2-txt h2 {
        font-size: 23px!important;
    }
}

@media (max-width: 414px) {
    .b2-hed h2 {
        font-size: 22px!important;
    }

    .b2-txt h2 {
        font-size: 22px!important;
    }
}

@media (max-width: 394px) {
    .b2-hed h2 {
        font-size: 21px!important;
    }

    .b2-txt h2 {
        font-size: 21px!important;
    }

    .b5-hed h2 br {
        display: block!important;
    }
}

@media (max-width: 374px) {
    .b2-hed h2 {
        font-size: 20px!important;
    }

    .b2-txt h2 {
        font-size: 20px!important;
    }
}

@media (max-width: 354px) {
    .b2-hed h2 {
        font-size: 19px!important;
    }

    .b2-txt h2 {
        font-size: 19px!important;
    }
}

@media (max-width: 335px) {
    .b2-hed h2 {
        font-size: 18px!important;
    }

    .b2-txt h2 {
        font-size: 18px!important;
    }
}

@media (max-width: 319px) {
    .b2-hed h2 {
        font-size: 17px!important;
    }

    .b2-txt h2 {
        font-size: 17px!important;
    }
}

@media (max-width: 302px) {
    .b2-hed h2 {
        font-size: 16px!important;
    }

    .b2-txt h2 {
        font-size: 16px!important;
    }
}

@media (max-width: 515px) {
    .b6-hed h2 {
        font-size: 28px!important;
    }

    .b6-txt h2 {
        font-size: 28px!important;
    }
}

@media (max-width: 494px) {
    .b6-hed h2 {
        font-size: 27px!important;
    }

    .b6-txt h2 {
        font-size: 27px!important;
    }
}

@media (max-width: 474px) {
    .b6-hed h2 {
        font-size: 26px!important;
    }

    .b6-txt h2 {
        font-size: 26px!important;
    }
}

@media (max-width: 454px) {
    .b6-hed h2 {
        font-size: 25px!important;
    }

    .b6-txt h2 {
        font-size: 25px!important;
    }
}

@media (max-width: 434px) {
    .b6-hed h2 {
        font-size: 23px!important;
    }

    .b6-txt h2 {
        font-size: 23px!important;
    }
}

@media (max-width: 414px) {
    .b6-hed h2 {
        font-size: 22px!important;
    }

    .b6-txt h2 {
        font-size: 22px!important;
    }
}

@media (max-width: 394px) {
    .b6-hed h2 {
        font-size: 21px!important;
    }

    .b6-txt h2 {
        font-size: 21px!important;
    }
}

@media (max-width: 374px) {
    .b6-hed h2 {
        font-size: 20px!important;
    }

    .b6-txt h2 {
        font-size: 20px!important;
    }
}

@media (max-width: 354px) {
    .b6-hed h2 {
        font-size: 19px!important;
    }

    .b6-txt h2 {
        font-size: 19px!important;
    }

    .hdr-lan h2 {
        display: none!important;
    }

    .header-logo {
        padding-bottom: 6px;
    }
}

@media (max-width: 335px) {
    .b6-hed h2 {
        font-size: 18px!important;
    }

    .b6-txt h2 {
        font-size: 18px!important;
    }
}

@media (max-width: 319px) {
    .b6-hed h2 {
        font-size: 17px!important;
    }

    .b6-txt h2 {
        font-size: 17px!important;
    }
}

@media (max-width: 302px) {
    .b6-hed h2 {
        font-size: 16px!important;
    }

    .b6-txt h2 {
        font-size: 16px!important;
    }
}

@media (max-height: 800px) {
    .preloader {
        margin-top: 300px !important;
    }
}

@media (min-height: 801px) and (max-height: 900px) {
    .preloader {
        margin-top: 350px !important;
    }
}

@media (min-height: 901px) and (max-height: 1000px) {
    .preloader {
        margin-top: 400px !important;
    }
}

@media (max-width: 575px) {
    .fullscreen-video {
        margin-top: 30px;
    }

    .hdr-mail {
        display: none;
    }

    .hdr-phone {
        display: none;
    }

    .header-logo {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        padding-top: 15px;
    }

    .preloaderBg {
        padding-top: 0%!important;
        z-index: 99999 !important;
        vertical-align: middle;
        display: inline-grid;
        align-items: center;
    }

    .preloader {
        float: left;
        /* margin: auto; */
        margin-right: auto;
        margin-left: auto;
        background: url(../images/load-logo.png) no-repeat center;
        background-size: contain;
        width: 100px;
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
        height: 100px;
        position: relative;
        margin-top: 245px;
    }

    .preloader2 {
        border: 5px solid #e98923;
        border-top: 5px solid #fff;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        animation: spin 1s ease-in-out infinite;
        position: relative;
        margin: auto;
        margin-bottom: 86%;
        z-index: 999999;
    }

    .header-logo a img {
        display: none;
    }

    .mob-hdr {
        /* display: block; */
        /* width: auto; */
        float: right;
    }

    .mob-promo {
        display: block;
        width: auto;
        float: left;
    }

    .hdr-promo {
        float: left;
        padding: 5px 0px 0px 20px;
        border-right: none;
        height: auto;
    }

    .header-logo {
        border-bottom: 1px solid #f1f1f1;
        height: 63px;
    }

    .hdr-lan {
        padding-left: 0px;
        width: 100%;
        text-align: center;
        height: auto;
        padding-bottom: 12px;
    }

    .hdr-lan h2 {
        float: none;
        display: inline-block;
        margin-top: 0px;
    }

    .hdr-swch {
        float: none;
        display: inline-block;
        margin-top: 0px;
        margin-bottom: -18px;
    }

    .header-con {
        /* display: none; */
        margin-top: -114px;
        padding-right: 10px;
    }

    .header2 {
        width: 100%;
        padding-bottom: 7px;
        padding-top: 7px;
        border-left: none;
    }

    .mob-logo {
        display: block;
        float: left;
        width: auto;
        margin-left: 15px;
    }

    .nav-toggle {
        margin-top: -45px;
    }

    .mob-logo img {
        float: left;
        width: auto;
        max-width: 215px;
        height: 61px;
    }

    .header_menu_area > .mob_nav {
        margin-top: 5px!important;
    }

    .body1 {
        padding-top: 55px;
        height: auto;
        padding-bottom: 60px;
    }

    .b1-hed h2 br {
        display: none;
    }

    .b1-hed h2 {
        font-size: 18px;
        text-align: justify;
    }

    .baner-hed h2 {
        font-size: 50px;
    }

    .b1-hed p br {
        display: none;
    }

    .b1-hed p {
        margin-top: 18px;
    }

    .b1-hed {
        margin-bottom: 45px;
    }

    .b1-bx {
        margin-bottom: 15px;
    }

    .b1-butn {
        width: 100%;
        margin-top: 55px;
        text-align: center;
    }

    .b1-butn a {
        float: none;
        display: inline-block;
    }

    .b2-butn {
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }

    .b2-butn a {
        float: none;
        display: inline-block;
        width: 200px;
    }

    .b1-breaker {
        display: none;
    }

    .body2 {
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .b2-slide {
        width: 60%;
    }

    .b2-hed h2 {
        font-size: 29px;
    }

    .b2-txt {
        width: 40%;
        padding-right: 15px;
    }

    .b2-txt h2 {
        font-size: 29px;
        text-align: right;
    }

    .b3-bx {
        text-align: center;
        margin-bottom: 18px;
    }

    .b3-bx h3 {
        float: none;
        display: table-caption;
        margin-right: 0px;
        position: absolute;
        right: 39px;
    }

    .b3-1 {
        padding: 50px 15px;
    }

    .b3 img {
        max-width: 100%;
    }

    .body4 {
        padding-top: 55px;
        padding-bottom: 8px;
    }

    .b4-hed h2 {
        font-size: 50px;
        text-align: center;
    }

    .b4-bx-txt {
        text-align: center;
    }

    .b4-bx-butn {
        text-align: center;
    }

    .b4-bx-butn a {
        float: none;
        display: inline-block;
    }

    .b4-bx-txt p br {
        display: none;
    }

    .b4-bx1 img {
        height: auto;
    }

    .b4-bx2 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .b4-bx-txt2 {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        margin-top: 25px;
    }

    .b5-breaker {
        display: none;
    }

    .body5 {
        padding: 55px 15px 60px 15px;
    }

    .b5-1 h2 {
        margin-top: 0px;
        padding-right: 15px;
        text-align: center;
    }

    .b5-1 img {
        display: none;
    }

    .b5-hed {
        padding-left: 0px;
    }

    .b5-hed {
        margin-top: 55px;
    }

    .b5-hed h2 {
        font-size: 53px;
        text-align: center;
    }

    .b5-hed p br {
        display: none;
    }

    .b5-hed p {
        text-align: center;
    }

    .b5-bx-txt p br {
        display: none;
    }

    .b5-bx-img img {
        max-width: 100%;
    }

    .b5-2 h3 {
        width: 5%;
        display: none;
    }

    .b5-bx {
        height: auto;
        padding: 0px 0px;
        width: 100%;
    }

    .b5-bx-img {
        width: 100%;
        margin: auto;
        float: none;
        margin-top: 25px;
    }

    .b5-bx-txt {
        width: 100%;
        padding: 15px 15px 20px 15px;
        text-align: center;
    }

    .body6 {
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .b6-txt {
        width: 40%;
        padding-right: 15px;
    }

    .b6-txt h2 {
        font-size: 29px;
        text-align: right;
    }

    .b6-slide {
        width: 60%;
    }

    .b6-hed h2 {
        font-size: 29px;
    }

    .b7-bx {
        padding: 0px 15px;
    }

    .body7 {
        padding-top: 20px;
        padding-bottom: 55px;
    }

    .b7-bx-img img {
        height: auto;
    }

    .b7-butn {
        margin-top: 15px;
    }

    .body8 {
        padding: 60px 0px;
    }

    .b8-hed {
        padding: 0px 0px;
    }

    .b8-hed h2 {
        text-align: center;
        font-size: 26px;
    }

    .footer {
        padding-top: 50px;
    }

    .ft-emoji {
        margin-top: 0px;
    }

    .ft-emoji img {
        float: none;
        width: auto;
        max-width: 250px!important;
        margin: auto;
        display: block;
    }

    .quicklink {
        text-align: center;
        padding-left: 0px;
        margin-top: 25px;
    }

    .quicklink1 {
        width: 50%;
    }

    .quicklink2 {
        width: 50%;
    }

    .ft-connect {
        padding-left: 0px;
        text-align: center;
        margin-top: 38px;
    }

    .ft-connect h3 {
        float: none;
        display: inline-block;
    }

    .conect-img {
        display: inline-block;
    }

    .conect-img a img {
        margin-top: -8px;
    }

    .locate {
        text-align: center;
    }

    .locate {
        margin-top: 25px;
    }

    .locate h2 {
        margin-bottom: 10px;
    }

    .quicklink h2 {
        margin-bottom: 10px;
    }

    .locate a {
        float: left;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 2px;
    }

    .locate p {
        margin-bottom: 8px;
        text-align: center;
    }

    .ft-logo a img {
        float: none;
        margin: auto;
        display: block;
    }

    .in-ban-breaker {
        display: none;
    }

    .in-baner {
        height: auto;
    }

    .in-baner h2 {
        font-size: 38px;
    }

    .in-baner p br {
        display: none;
    }

    .in-baner p {
        font-size: 28px;
    }

    .complaints h2 {
        font-size: 30px;
    }

    .complaints h2 br {
        display: none;
    }

    .complaints p br {
        display: none;
    }

    .brands-ful {
        padding-top: 60px;
    }

    .brands-logo {
        margin-bottom: 20px;
    }

    .brands-logo img {
        max-width: 100%;
    }

    .career-form h2 br {
        display: none;
    }

    .career-form h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .career-form {
        margin-top: 30px;
    }

    .career-form p br {
        display: none;
    }

    .contact-addrs h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .contact-addrs h2 br {
        display: none;
    }

    .contact-addrs p br {
        display: none;
    }

    .contact-form {
        margin-top: 50px;
    }

    .contact-location-img {
        width: 50px;
        height: 50px;
        padding-top: 6px;
        margin-right: 6px;
    }

    .contact-location-img img {
        max-width: 75%;
    }

    .contact-location-txt {
        margin-left: 0px;
        margin-top: 0px;
        float: none;
    }

    .contact-location-txt h3 {
        float: none;
    }

    .contact-location-txt p {
        float: none;
    }

    .contact-mail {
        width: 100%;
        margin-top: 40px;
    }

    .contact-mail-txt {
        margin-top: 0px;
        padding-left: 0px;
        float: none;
        width: auto;
    }

    .contact-mail-txt h3 {
        float: none;
    }

    .contact-mail-txt a {
        float: none;
    }

    .contact-call {
        width: 100%;
        margin-top: 40px;
    }

    .contact-form {
        padding-right: 0px;
    }

    .contact-form-hed {
        padding: 30px 15px;
    }

    .contact-forms {
        padding: 30px 15px;
    }

    .in-about {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .news-hed h2 {
        font-size: 30px;
    }

    .other-media {
        margin-top: 40px;
        margin-bottom: 45px;
    }

    .news-list img {
        width: 130px;
        margin-right: 12px!important;
    }

    .news-list p {
        font-size: 18px!important;
    }

    .about-hed {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .about-hed h2 {
        font-size: 35px;
        color: #eb9338;
    }

    .about-hed h3 br {
        display: none;
    }

    .about-hed h3 {
        font-size: 28px;
        margin-top: 2px;
        margin-bottom: 9px;
    }

    .about-hed p {
        margin-bottom: 10px;
    }

    .about-quote {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0px;
    }

    .about-quote h3 br {
        display: none;
    }

    .about-quote-img {
        padding-right: 0px;
        margin-top: 18px;
        margin-bottom: 45px;
    }

    .about-slide {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .ab-s-hed h2 {
        font-size: 40px;
    }

    .ab-s-hed {
        margin-bottom: 40px;
    }

    .ab-slider.owl-carousel {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ab-slider .owl-nav {
        margin-top: 50px;
    }

    .ab-directors {
        padding: 55px 0px;
    }

    .ab-dir-hed h2 {
        font-size: 40px;
    }

    .ab-dir-hed {
        margin-bottom: 40px;
    }

    .ab-d-bx {
        padding: 0px;
    }

    .ab-direct.owl-carousel {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ab-direct .owl-nav {
        margin-top: 17px;
        text-align: center;
        width: 100%;
    }

    .ab-direct .owl-prev img {
        margin-left: 0px;
        margin-right: 15px;
    }

    .ab-direct .owl-next img {
        margin-left: 0px;
        margin-top: 0px;
    }

    .ab-d-img {
        width: 100%;
    }

    .ab-d-img img {
        max-width: 300px;
        float: none;
        margin: auto;
        display: block;
    }

    .ab-d-txt {
        width: 100%;
        text-align: center;
        padding-left: 0px;
    }

    .ab-d-txt p {
        font-size: 23px;
    }

    .ab-breaker {
        padding: 60px 0px 57px 0px;
    }

    .ab-breaker h2 {
        font-size: 28px;
        padding: 0px;
    }

    .ab-history {
        padding: 65px 0px;
    }

    .ab-his-hed h2 {
        font-size: 40px;
    }

    .ab-his-hed p {
        font-size: 20px;
    }

    .ab-his-hed {
        margin-bottom: 15px;
    }

    .ab-year {
        margin-top: 0px;
    }

    .ab-year h3 {
        float: left;
    }

    .ab-histry.owl-carousel {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ab-histry .owl-nav {
        margin-top: 55px;
    }

    .mission-txt {
        width: 100%;
    }

    .mission-txt h2 {
        font-size: 35px;
        margin-bottom: 9px;
    }

    .mission-txt h3 br {
        display: none;
    }

    .mission-txt h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .mission-img {
        width: 100%;
        padding-top: 40px;
    }

    .mission-img img {
        float: left;
        width: 100%;
        max-width: 70%;
    }

    .mision-breaker-hed {
        padding: 0px;
    }

    .mision-breaker {
        height: auto;
        padding: 55px 0px;
    }

    .mision-breaker-hed h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .mision-breaker-logo {
        display: none;
    }

    .m-object-hed {
        width: 100%;
    }

    .mision-object {
        padding-top: 60px;
        padding-bottom: 25px;
    }

    .m-obj-bx {
        margin-bottom: 55px;
    }

    .in-division {
        padding-top: 70px;
        height: 490px;
    }

    .in-division h2 {
        font-size: 48px;
        line-height: 57px;
        margin-bottom: 15px;
    }

    .in-division p {
        font-size: 30px;
    }

    .in-div-breaker {
        display: none;
    }

    .div-b1-bx1 {
        padding-left: 0px;
    }

    .div-b1-bx2 {
        padding-left: 0px;
        margin-top: 45px;
    }

    .div-b1-bx2 img {
        width: 100%;
    }

    .divs-b1-hed {
        margin-top: 60px;
    }

    .divs-b1-hed p br {
        display: none;
    }

    .divs-b1-hed p {
        margin-bottom: 16px;
    }

    .divs-b1-hed h2 br {
        display: none;
    }

    .divs-b1-hed h2 {
        font-size: 50px;
        line-height: 64px;
    }

    .divs-b1-patern {
        display: none;
    }

    .divs-b1-para {
        margin-top: 15px;
    }

    .divs-b1-para p {
        margin-bottom: 10px;
    }

    .div-b2-bx {
        width: 90%;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 15px;
        padding-bottom: 35px;
        height: auto;
    }

    .div-b2-bx p br {
        display: none;
    }

    .div-b2-bx p {
        font-size: 30px;
        line-height: 37px;
    }

    .divs-b2 {
        background-position: center;
        height: auto;
    }

    .divs-b2-hed img {
        width: 75px;
    }

    .divs-b2-hed h2 br {
        display: none;
    }

    .divs-b2-hed h2 {
        font-size: 50px;
        line-height: 60px;
        margin-top: -31px;
        margin-bottom: 55px;
        position: relative;
    }

    .div-b2-bx2 {
        display: none;
    }

    .div-b3-add p {
        background: white;
        padding: 20px 20px;
        font-size: 30px;
        line-height: 37px;
        text-align: center;
        border-radius: 15px 15px 0px 0px;
        position: relative;
        margin-top: -36px;
    }

    .div-b3-add p br {
        display: none;
    }

    .div-b3-add {
        margin-top: 0px;
        position: relative;
        margin-bottom: 40px;
    }

    .div-b3-img1 {
        padding-right: 8px;
    }

    .div-b3-img2 {
        padding-left: 8px;
    }

    .div-b3-hed {
        padding-left: 15px;
    }

    .div-b3-bx1 {
        padding-left: 15px;
    }

    .slide-divsion .owl-nav {
        text-align: left;
        margin-top: -421px;
    }

    .slide-divsion.owl-carousel {
        padding-top: 54px;
    }

    .division-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .division-callto-hed h2 br {
        display: none;
    }

    .division-callto-hed h2 {
        font-size: 45px;
    }

    .division-callto-hed h2 span {
        font-size: 50px;
    }

    .division-callto-hed img {
        width: 100px;
    }

    .bismi-b1-patern {
        display: none;
    }

    .bismi-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .bismi-callto-hed h2 {
        font-size: 45px;
    }

    .bismi-callto-hed h2 br {
        display: none;
    }

    .bismi-callto-hed h2 span {
        font-size: 50px;
    }

    .in-bismi {
        padding-top: 70px;
        height: 490px;
    }

    .in-bismi h2 {
        font-size: 47px;
        line-height: 57px;
        margin-bottom: 15px;
    }

    .in-division p {
        font-size: 30px;
    }

    .header_menu_area > ul {
        top: 139px;
    }

    .careers-ful-hed h2 {
        font-size: 30px;
    }

    .careers-ful-hed h2 br {
        display: none;
    }
}

@media(min-width: 576px) {
    .header2 {
        float: right;
        /*margin-top: -125px;}*/
    }
}

@media(min-width: 576px) and (max-width: 767px) {
    .header-logo {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        padding-top: 15px;
    }

    .preloaderBg {
        padding-top: 30%!important;
    }

    .header-logo a img {
        display: none;
    }

    .mob-promo {
        display: block;
        width: 50%;
        float: left;
    }

    .hdr-promo {
        float: left;
        padding: 3px 0px 0px 20px;
        border-right: none;
        height: auto;
    }

    .header-logo {
        border-bottom: 1px solid #f1f1f1;
        height: 63px;
    }

    .mob-hdr {
        /*display: block;*/
        /*width: auto;*/
        float: right;
    }

    .hdr-lan {
        padding-left: 0px;
        width: 100%;
        text-align: center;
        height: auto;
        padding-bottom: 12px;
    }

    .hdr-lan h2 {
        float: none;
        display: inline-block;
        margin-top: 0px;
    }

    .hdr-swch {
        float: none;
        display: inline-block;
        margin-top: 0px;
        margin-bottom: -18px;
    }

    .hdr-mail {
        display: none;
    }

    .hdr-phone {
        display: none;
    }

    .header-con {
        /*display: none;*/
        margin-top: -161px;
        padding-right: 10px;
    }

    .header2 {
        width: 100%;
        padding-bottom: 7px;
        padding-top: 7px;
        border-left: none;
    }

    .nav-toggle {
        margin-top: -69px;
    }

    .mob-logo {
        display: block;
        float: left;
        width: auto;
        margin-left: 15px;
    }

    .mob-logo img {
        float: left;
        width: auto;
        max-width: 383px;
    }

    .header_menu_area > .mob_nav {
        margin-top: -21px!important;
    }

    .body1 {
        padding-top: 55px;
        height: auto;
        padding-bottom: 60px;
    }

    .b1-hed h2 br {
        display: none;
    }

    .b1-hed h2 {
        font-size: 40px;
    }

    .b1-hed p br {
        display: none;
    }

    .b1-hed p {
        margin-top: 18px;
    }

    .b1-hed {
        margin-bottom: 45px;
    }

    .b1-bx {
        margin-bottom: 15px;
    }

    .b1-butn {
        width: 50%;
        margin-top: 55px;
    }

    .complaints h2 br {
        display: none;
    }

    .complaints p br {
        display: none;
    }

    .b2-butn {
        margin-top: 55px;
    }

    .b1-breaker {
        display: none;
    }

    .body2 {
        padding-right: 0px;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .b2-slide {
        width: 65%;
    }

    .b2-hed h2 {
        font-size: 29px;
    }

    .b2-txt {
        width: 35%;
        padding-right: 5px;
    }

    .b2-txt h2 {
        font-size: 29px;
        text-align: left;
    }

    .b3-bx p br {
        display: none;
    }

    .b3-1 {
        padding: 50px 15px;
    }

    .b3-bx {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .b3 img {
        max-width: 100%;
    }

    .body4 {
        padding-top: 55px;
        padding-bottom: 8px;
    }

    .b4-hed h2 {
        font-size: 50px;
        text-align: center;
    }

    .b4-bx-txt {
        text-align: center;
    }

    .b4-bx-butn {
        text-align: center;
    }

    .b4-bx-butn a {
        float: none;
        display: inline-block;
    }

    .b4-bx-txt p br {
        display: none;
    }

    .b4-bx1 img {
        height: auto;
    }

    .b4-bx2 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .b4-bx-txt2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 25px;
        text-align: center;
    }

    .b5-breaker {
        display: none;
    }

    .body5 {
        padding: 55px 15px 60px 15px;
    }

    .b5-1 h2 {
        margin-top: 0px;
        padding-right: 15px;
        text-align: center;
    }

    .b5-1 img {
        display: none;
    }

    .b5-hed {
        padding-left: 0px;
    }

    .b5-hed {
        margin-top: 55px;
    }

    .b5-hed h2 {
        font-size: 53px;
        text-align: center;
    }

    .b5-hed p br {
        display: none;
    }

    .b5-hed p {
        text-align: center;
    }

    .b5-bx-txt p br {
        display: none;
    }

    .b5-bx-txt {
        padding: 29px 0px 27px 20px;
    }

    .b5-2 h3 {
        display: none;
    }

    .b5-bx {
        width: 100%;
    }

    .body6 {
        padding-right: 0px;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .b6-slide {
        width: 65%;
    }

    .b6-hed h2 {
        font-size: 29px;
    }

    .b6-txt {
        width: 35%;
        padding-right: 5px;
    }

    .b6-txt h2 {
        text-align: left;
        font-size: 29px;
    }

    .b7-bx-img img {
        height: auto;
    }

    .b8-hed {
        padding: 0px 0px;
    }

    .body8 {
        padding: 70px 0px;
    }

    .b8-hed h2 {
        font-size: 42px;
        text-align: center;
    }

    .footer {
        padding-top: 50px;
    }

    .ft-emoji {
        margin-top: 0px;
    }

    .ft-emoji img {
        float: none;
        width: 250px;
        max-width: 100%!important;
        margin: auto;
        display: block;
    }

    .quicklink {
        text-align: center;
        padding-left: 0px;
        margin-top: 25px;
    }

    .quicklink1 {
        width: 50%;
    }

    .quicklink2 {
        width: 50%;
    }

    .ft-connect {
        padding-left: 0px;
        text-align: center;
        margin-top: 38px;
    }

    .ft-connect h3 {
        float: none;
        display: inline-block;
    }

    .conect-img {
        display: inline-block;
    }

    .conect-img a img {
        margin-top: -8px;
    }

    .locate {
        text-align: center;
    }

    .locate {
        margin-top: 25px;
    }

    .locate h2 {
        margin-bottom: 10px;
    }

    .quicklink h2 {
        margin-bottom: 10px;
    }

    .locate a {
        float: left;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 2px;
    }

    .locate p {
        margin-bottom: 8px;
    }

    .ft-logo a img {
        float: none;
        margin: auto;
        display: block;
    }

    .brands-ful {
        padding-top: 60px;
    }

    .brands-logo {
        margin-bottom: 40px;
    }

    .in-ban-breaker {
        display: none;
    }

    .career-form h2 br {
        display: none;
    }

    .career-form h2 {
        font-size: 31px;
        margin-bottom: 15px;
    }

    .career-form {
        margin-top: 30px;
    }

    .career-form p br {
        display: none;
    }

    .contact-location-txt {
        margin-left: 17px;
    }

    .contact-mail {
        width: 100%;
        margin-top: 40px;
    }

    .contact-mail-txt {
        padding-left: 17px;
    }

    .contact-call {
        width: 100%;
        margin-top: 40px;
    }

    .contact-form {
        margin-top: 55px;
        padding-right: 0px;
    }

    .in-about {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .other-media {
        margin-top: 40px;
        margin-bottom: 45px;
    }

    .news-list img {
        width: 130px;
        margin-right: 12px!important;
    }

    .news-list p {
        font-size: 18px!important;
    }

    .about-hed {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .about-hed p {
        margin-bottom: 10px;
    }

    .about-quote {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0px;
    }

    .about-quote h3 br {
        display: none;
    }

    .about-quote-img {
        padding-right: 0px;
        margin-top: 18px;
        margin-bottom: 45px;
    }

    .about-slide {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .ab-s-hed h2 {
        font-size: 40px;
    }

    .ab-s-hed {
        margin-bottom: 40px;
    }

    .ab-slider .owl-nav {
        margin-top: 50px;
    }

    .ab-directors {
        padding: 55px 0px;
    }

    .ab-dir-hed h2 {
        font-size: 40px;
    }

    .ab-dir-hed {
        margin-bottom: 40px;
    }

    .ab-d-bx {
        padding: 0px;
    }

    .ab-direct .owl-nav {
        margin-top: 17px;
        text-align: center;
        width: 100%;
    }

    .ab-direct .owl-prev img {
        margin-left: 0px;
        margin-right: 15px;
    }

    .ab-direct .owl-next img {
        margin-left: 0px;
        margin-top: 0px;
    }

    .ab-d-img {
        width: 100%;
    }

    .ab-d-img img {
        max-width: 300px;
        float: none;
        margin: auto;
        display: block;
    }

    .ab-d-txt {
        width: 100%;
        text-align: center;
        padding-left: 0px;
    }

    .ab-d-txt p {
        font-size: 23px;
    }

    .ab-breaker {
        padding: 60px 0px 57px 0px;
    }

    .ab-breaker h2 {
        font-size: 28px;
        padding: 0px;
    }

    .ab-history {
        padding: 65px 0px;
    }

    .ab-his-hed h2 {
        font-size: 40px;
    }

    .ab-his-hed p {
        font-size: 20px;
    }

    .ab-his-hed {
        margin-bottom: 15px;
    }

    .ab-year {
        margin-top: 0px;
    }

    .ab-year h3 {
        float: left;
    }

    .ab-histry .owl-nav {
        margin-top: 55px;
    }

    .mission-txt {
        width: 100%;
    }

    .mission-txt h3 br {
        display: none;
    }

    .mission-img {
        width: 100%;
        padding-top: 40px;
    }

    .mission-img img {
        float: left;
        width: 100%;
        max-width: 70%;
    }

    .mision-breaker-hed {
        padding: 0px;
    }

    .mision-breaker {
        height: auto;
        padding: 55px 0px;
    }

    .mision-breaker-hed h2 {
        font-size: 40px;
        line-height: 46px;
    }

    .mision-breaker-logo {
        display: none;
    }

    .m-object-hed {
        width: 100%;
    }

    .mision-object {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .m-obj-bx {
        margin-bottom: 55px;
    }

    .in-division {
        padding-top: 70px;
        height: 500px;
    }

    .in-division h2 {
        font-size: 60px;
        line-height: 70px;
        margin-bottom: 15px;
    }

    .in-division p {
        font-size: 30px;
    }

    .in-div-breaker {
        display: none;
    }

    .div-b1-bx1 {
        padding-left: 0px;
        margin-top: -138px;
    }

    .div-b1-bx2 {
        padding-left: 0px;
        margin-top: 45px;
    }

    .div-b1-bx2 img {
        width: 100%;
    }

    .divs-b1-hed {
        margin-top: 60px;
    }

    .divs-b1-hed p {
        margin-bottom: 16px;
    }

    .divs-b1-hed h2 br {
        display: none;
    }

    .divs-b1-hed h2 {
        font-size: 55px;
        line-height: 66px;
    }

    .divs-b1-patern {
        display: none;
    }

    .divs-b1-para {
        margin-top: 15px;
    }

    .divs-b1-para p {
        margin-bottom: 10px;
    }

    .div-b2-bx {
        width: 90%;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 15px;
        padding-bottom: 35px;
        height: auto;
    }

    .div-b2-bx p br {
        display: none;
    }

    .div-b2-bx p {
        font-size: 30px;
        line-height: 37px;
    }

    .divs-b2 {
        background-position: center;
        height: auto;
    }

    .divs-b2-hed img {
        width: 75px;
    }

    .divs-b2-hed h2 br {
        display: none;
    }

    .divs-b2-hed h2 {
        font-size: 50px;
        line-height: 60px;
        margin-top: -31px;
        margin-bottom: 65px;
        position: relative;
        padding-left: 75px;
    }

    .div-b2-bx2 {
        display: none;
    }

    .div-b3-add p {
        background: white;
        padding: 20px 20px;
        font-size: 30px;
        line-height: 37px;
        text-align: center;
        border-radius: 15px 15px 0px 0px;
        position: relative;
        margin-top: -46px;
    }

    .div-b3-add p br {
        display: none;
    }

    .div-b3-add {
        margin-top: 0px;
        position: relative;
        margin-bottom: 40px;
    }

    .div-b3-img1 {
        padding-right: 8px;
    }

    .div-b3-img2 {
        padding-left: 8px;
    }

    .div-b3-hed {
        padding-left: 15px;
    }

    .div-b3-bx1 {
        padding-left: 15px;
    }

    .slide-divsion .owl-nav {
        text-align: left;
        margin-top: -421px;
    }

    .slide-divsion.owl-carousel {
        padding-top: 54px;
    }

    .division-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .division-callto-hed h2 br {
        display: none;
    }

    .division-callto-hed h2 {
        font-size: 45px;
    }

    .division-callto-hed h2 span {
        font-size: 50px;
    }

    .division-callto-hed img {
        width: 100px;
    }

    .in-bismi {
        padding-top: 70px;
        height: 500px;
    }

    .in-bismi h2 {
        font-size: 60px;
        line-height: 70px;
        margin-bottom: 15px;
    }

    .in-bismi p {
        font-size: 30px;
    }

    .bismi-b1-patern {
        display: none;
    }

    .bismi-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .banner {
        height: 500px;
    }

    .banner:before {
        height: 500px!important;
        top: 186px;
    }

    #myVideo {
        height: 500px!important;
    }

    .baner-hed {
        padding-top: 100px;
        position: relative;
    }

    .fullscreen-video {
        bottom: -35px;
    }

    .preloaderBg {
        padding-top: 0%!important;
        z-index: 99999 !important;
        vertical-align: middle;
        display: inline-grid;
        align-items: center;
    }

    .preloader {
        float: left;
        /* margin: auto; */
        margin-right: auto;
        margin-left: auto;
        background: url(../images/load-logo.png) no-repeat center;
        background-size: contain;
        width: 100px;
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
        height: 100px;
        position: relative;
        margin-top: 245px;
    }

    .preloader2 {
        border: 5px solid #e98923;
        border-top: 5px solid #fff;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        animation: spin 1s ease-in-out infinite;
        position: relative;
        margin: auto;
        margin-bottom: 86%;
        z-index: 999999;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .divs-b2 {
        position: relative;
    }

    .div-b2-bx2 {
        margin-top: 0px;
        position: absolute;
        bottom: -75px;
    }

    .nav-toggle {
        margin-top: -48px;
    }

    .b1-hed h2 br {
        display: none;
    }

    .b1-hed p br {
        display: none;
    }

    .b1-hed p {
        margin-top: 21px;
    }

    .b1-hed {
        margin-bottom: 50px;
    }

    .b1-bx {
        margin-bottom: 18px;
    }

    .b1-butn {
        margin-top: 25px;
    }

    .b2-butn {
        margin-top: 25px;
    }

    .b1-breaker img {
        width: 200px;
        padding-left: 0px;
    }

    .b1-breaker {
        margin-top: -16px;
    }

    .b2-hed h2 {
        font-size: 35px;
    }

    .b2-txt h2 {
        font-size: 35px;
    }

    .b3-bx {
        margin: 12px 0px;
    }

    .b3 img {
        max-width: 100%;
    }

    .b4-bx2 {
        padding-left: 15px;
        padding-right: 0px;
    }

    .b4-bx-txt2 {
        padding-left: 0px;
        padding-right: 15px;
    }

    .b4-bx1 img {
        height: 240px;
        object-fit: cover;
    }

    .b4-bx-txt h2 {
        font-size: 31px;
    }

    .b4-bx-txt2 {
        margin-top: 0px;
    }

    .b4-bx-txt2 h2 {
        font-size: 31px;
    }

    .b5-breaker img {
        width: 150px;
        right: 0px;
    }

    .b5-breaker {
        margin-top: -39px;
    }

    .b5-hed h2 {
        font-size: 50px;
    }

    .b5-1 h2 {
        font-size: 35px;
    }

    .b5-hed p br {
        display: none;
    }

    .b5-bx-img {
        width: 30%;
        padding: 40px 0px;
    }

    .b5-bx-txt {
        width: 70%;
        padding: 15px 0px 15px 15px;
    }

    .b5-bx-txt p br {
        display: none;
    }

    .b5-bx-img img {
        width: 91px;
    }

    .b5-bx {
        float: right;
        width: 95%;
    }

    .b5-bx-txt p {
        font-size: 15px;
    }

    .b5-bx-txt h2 {
        font-size: 24px;
    }

    .body5 {
        padding: 0 15px 90px 0;
    }

    .b6-hed h2 {
        font-size: 35px;
    }

    .b6-txt h2 {
        font-size: 35px;
    }

    .b7-bx-img img {
        height: auto;
    }

    .body8 {
        padding: 80px 0px;
    }

    .b8-hed {
        padding: 0px 0px;
    }

    .b8-hed h2 {
        font-size: 48px;
    }

    .quicklink {
        padding-left: 0px;
    }

    .ft-connect {
        padding-left: 0px;
    }

    .footer {
        padding-top: 50px;
    }

    .ft-emoji {
        margin-top: 0px;
        margin-bottom: 25px;
    }

    .ft-emoji img {
        float: none;
        width: 250px;
        max-width: 100%!important;
        margin: auto;
        display: block;
    }

    .header-logo {
        width: 35%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 23px;
    }

    .header-logo a img {
        max-width: 239px;
    }

    .header2 {
        width: 64%;
    }

    .header-con {
        padding-right: 0px;
        margin-top: 0px;
        /*border-left: 1px solid #f1f1f1;*/
    }

    .hdr-lan {
        padding-right: 15px;
    }

    .hdr-mail {
        /*margin-right: 30px;*/
        border-right: none;
        border-top: 1px solid #f1f1f1;
        padding: 24px 15px 24px 15px;
        text-align: left;
    }

    .hdr-phone {
        text-align: right;
        border-top: 1px solid #f1f1f1;
        padding: 24px 15px;
    }

    .hdr-promo {
        padding: 20px 15px;
    }

    .brands-logo {
        margin-bottom: 55px;
    }

    .brands-logo img {
        max-width: 100%;
    }

    .careers-bx {
        padding: 30px 15px;
    }

    .career-form p br {
        display: none;
    }

    .contact-form {
        margin-top: 55px;
        padding-right: 0px;
    }

    .in-about {
        padding-bottom: 20px;
    }

    .news-list img {
        width: 100%;
    }

    .news-list p {
        width: 100%;
        float: left;
        text-align: center;
    }

    .news-list h4 {
        width: 100%;
        float: left;
        text-align: center;
    }

    .about-hed {
        margin-top: -48px;
        margin-bottom: 50px;
    }

    .about-hed h3 br {
        display: none;
    }

    .about-quote {
        padding: 0px;
    }

    .about-quote h3 br {
        display: none;
    }

    .about-quote h3 {
        font-size: 29px;
        margin-top: 0px;
    }

    .about-quote-img img {
        height: 165px;
        object-fit: cover;
        margin-bottom: 40px;
    }

    .ab-dir-hed {
        margin-bottom: 59px;
    }

    .ab-d-txt {
        padding-left: 20px;
        padding-top: 0px;
    }

    .ab-d-bx {
        padding: 0px 70px;
    }

    .ab-d-txt p {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .ab-d-txt h3 {
        font-size: 21px;
        margin-bottom: 7px;
    }

    .ab-direct .owl-nav {
        margin-top: -133px;
    }

    .ab-direct .owl-prev img {
        margin-left: 0px;
    }

    .ab-direct .owl-next img {
        margin-left: 662px;
        margin-top: -84px;
    }

    .ab-breaker h2 {
        padding: 0px;
    }

    .ab-year h2 {
        font-size: 80px;
        margin-top: 55px;
    }

    .ab-year h3 {
        font-size: 18px;
        line-height: 23px;
        margin-top: 88px;
    }

    .mission-img {
        width: 26%;
    }

    .mission-txt {
        width: 74%;
    }

    .mission-txt h3 br {
        display: none;
    }

    .mission-txt h2 {
        margin-bottom: 7px;
    }

    .mission-txt h3 {
        margin-bottom: 7px;
    }

    .mision-breaker-hed {
        padding: 0px;
    }

    .mision-breaker-hed h2 {
        font-size: 45px;
    }

    .mision-breaker {
        padding: 86px 0px;
    }

    .mision-breaker-logo {
        margin-top: 47px;
    }

    .m-obj-bx {
        margin-bottom: 55px;
    }

    .mision-object {
        padding-bottom: 50px;
    }

    .in-div-breaker {
        display: none;
    }

    .div-b1-bx1 {
        padding-left: 0px;
    }

    .div-b1-bx2 {
        padding-left: 15px;
    }

    .divs-b1-hed h2 {
        font-size: 70px;
        line-height: 78px;
    }

    .divs-b1-patern img {
        width: 120px;
        margin-left: 40px;
        margin-top: 206px;
    }

    .div-b2-bx p br {
        display: none;
    }

    .div-b2-bx p {
        font-size: 33px;
        line-height: 41px;
    }

    .div-b2-bx {
        padding-left: 25px;
        padding-right: 15px;
        width: 60%;
        height: 210px;
    }

    .div-b2-bx2 {
        width: 60%;
    }

    .divs-b2-hed h2 {
        font-size: 61px;
        line-height: 67px;
        padding-left: 80px;
    }

    .divs-b2-hed h2 br {
        display: none;
    }

    .div-b3-add p br {
        display: none;
    }

    .div-b3-add p {
        width: 60%;
        font-size: 33px;
        line-height: 41px;
    }

    .div-b3-add {
        margin-top: -55px;
    }

    .div-b3-hed {
        margin-top: 0px;
    }

    .div-b3-hed h2 {
        font-size: 33px;
        margin-bottom: 8px;
    }

    .div-b3-bx1 p {
        margin-top: 10px;
    }

    .div-b3-bx1 {
        margin-top: 20px;
    }

    .div-b3-img1 {
        padding-right: 7px;
        margin-top: 45px;
    }

    .div-b3-img2 {
        margin-top: 160px;
        padding-left: 7px;
    }

    .slide-divsion .owl-nav {
        text-align: left;
        margin-top: -421px;
    }

    .slide-divsion.owl-carousel {
        padding-top: 54px;
    }

    .division-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .bismi-b1-patern img {
        margin-left: 15px;
        margin-top: 145px;
    }

    .bismi-callt {
        margin-top: -60px;
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }

    .baner-hed {
        padding-top: 185px;
    }

    .banner:before {
        top: 131px;
    }

    .fullscreen-video {
        bottom: -118px;
    }
}

@media(min-width: 992px) and (max-width: 1024px) {
    .nav-toggle {
        margin-top: -49px;
    }

    .header-logo {
        width: 35%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 23px;
    }

    .header-logo a img {
        max-width: 317px;
    }

    .header2 {
        width: 65%;
    }

    .header-con {
        padding-right: 0px;
        margin-top: 0px;
        border-left: 1px solid #f1f1f1;
    }

    .hdr-lan {
        padding-right: 15px;
    }

    .hdr-mail {
        /*margin-right: 30px;*/
        border-right: none;
        border-top: 1px solid #f1f1f1;
        padding: 24px 15px 24px 15px;
        text-align: left;
        width: 50%;
    }

    .hdr-phone {
        width: 50%;
        text-align: right;
        border-top: 1px solid #f1f1f1;
        padding: 24px 15px;
    }

    .hdr-promo {
        padding: 20px 15px;
    }

    .banner:before {
        top: 131px;
    }

    .fullscreen-video {
        bottom: -92px;
    }

    .preloaderBg {
        padding-top: 25%!important;
    }
}

@media(min-width: 992px) and (max-width: 1199px) {
    .ab-direct .owl-next img {
        margin-left: 878px;
    }

    .divs-b2 {
        position: relative;
    }

    .div-b2-bx2 {
        margin-top: 0px;
        position: absolute;
        bottom: -69px;
    }

    .b1-breaker {
        margin-top: -76px;
    }

    .b1-breaker img {
        width: 300px;
        padding-left: 15px;
    }

    .b2-txt {
        width: 35%;
    }

    .b2-txt h2 {
        font-size: 45px;
    }

    .b2-slide {
        width: 65%;
    }

    .b2-hed h2 {
        font-size: 45px;
    }

    .b3-bx p br {
        display: none;
    }

    .b3-bx p {
        font-size: 15px;
    }

    .b3-bx h3 {
        margin-right: 6px;
    }

    .b3-1 {
        padding: 50px 18px;
    }

    .b3 img {
        max-width: 100%;
    }

    .b4-bx-txt p br {
        display: none;
    }

    .b4-bx1 img {
        height: 350px;
        object-fit: cover;
    }

    .b4-bx2 {
        padding-left: 15px;
    }

    .b4-bx-txt2 {
        padding-right: 15px;
        margin-top: 16px;
    }

    .b5-breaker img {
        right: 15px;
        width: 220px;
    }

    .b5-breaker {
        margin-top: -58px;
    }

    .b5-hed p br {
        display: none;
    }

    .b5-bx-txt p br {
        display: none;
    }

    .b5-1 h2 {
        font-size: 46px;
    }

    .b6-txt {
        width: 35%;
    }

    .b6-txt h2 {
        font-size: 45px;
    }

    .b6-slide {
        width: 65%;
    }

    .b6-hed h2 {
        font-size: 45px;
    }

    .b7-bx-img img {
        height: auto;
    }

    .b8-hed {
        padding: 0px 55px;
    }

    .brands-logo img {
        max-width: 100%;
    }

    .contact-brek {
        display: none!important;
    }

    .contact-addrs p br {
        display: none;
    }

    .contact-location-txt {
        margin-left: 18px;
        float: left;
        width: auto;
    }

    .contact-location-txt h3 {
        float: none;
    }

    .contact-mail {
        width: 100%;
        margin-top: 40px;
    }

    .contact-mail-txt {
        padding-left: 18px;
    }

    .contact-call {
        width: 100%;
        margin-top: 40px;
    }

    .contact-form {
        padding-right: 0px;
        margin-top: -149px;
    }

    .contact-form-hed p {
        margin-top: -7px;
    }

    .ab-year h2 {
        font-size: 109px;
        margin-top: 28px;
    }

    .ab-year h3 {
        font-size: 25px;
        line-height: 27px;
        margin-top: 82px;
    }

    .about-hed {
        margin-top: -78px;
    }

    .about-quote h3 br {
        display: none;
    }

    .about-quote {
        padding-top: 4px;
    }

    .mision-breaker-hed {
        padding: 0px 40px;
    }

    .div-b2-bx {
        height: 230px;
        padding-left: 45px;
    }

    .div-b2-bx p {
        font-size: 35px;
    }

    .div-b3-add p {
        width: 50%;
        font-size: 35px;
    }

    .div-b3-add {
        margin-top: -49px;
    }

    .div-b3-img1 {
        padding-right: 7px;
    }

    .div-b3-img2 {
        padding-left: 7px;
    }

    .div-b3-hed {
        margin-top: 0px;
    }

    .bismi-callt {
        padding-top: 146px;
    }
}

@media(min-width: 768px) and (max-width: 790px) {
    .hdr-mail {
        width: 52%;
    }

    .hdr-phone {
        width: 48%;
    }
}

@media(min-width: 791px) and (max-width: 991px) {
    .hdr-mail {
        width: 50%;
    }

    .hdr-phone {
        width: 50%;
    }
}

@media(min-width: 992px) and (max-width: 1150px) {
    .in-div-breaker {
        display: none;
    }
}

@media(min-width: 1151px) and (max-width: 1199px) {
    .in-div-breaker img {
        width: 100px;
    }

    .in-div-breaker {
        bottom: -50px;
    }
}

@media(min-width: 1200px) and (max-width: 1270px) {
    .in-div-breaker img {
        width: 83px;
    }

    .in-div-breaker {
        bottom: -42px;
    }
}

@media(min-width: 1025px) and (max-width: 1359px) {
    .header-logo {
        width: 119%;
        padding-right: 15px;
        padding-top: 12px;
    }

    .header-logo a img {
        max-width: 240px;
    }

    .header2 {
        width: 72%;
    }

    .hdr-lan {
        padding-left: 8px;
    }

    .hdr-promo {
        padding: 20px 8px;
    }

    .hdr-mail {
        padding: 24px 8px;
    }

    .hdr-phone {
        padding: 25px 8px 23px 8px;
    }

    .header_menu_area > ul {
        padding-right: 6px;
    }

    .header_menu_area > ul > li > a {
        padding: 24px 24px 22px 24px;
    }

    .nav-menu > li > a {
        /* height: 70px; */
        padding: 10px 14px;
    }
}

@media(min-width: 1334px) and (max-width: 1365px) {
    .hdr-phone {
        padding: 25px 22px 23px 30px;
    }
}

@media(min-width: 1400px) and (max-width: 1440px) {
    .hdr-promo {
        width: 21%;
        text-align: center;
        padding: 17px 22px;
    }

    .hdr-promo img {
        float: none;
        margin-top: -5px;
    }

    .hdr-mail {
        width: 29%;
        text-align: center;
    }

    .hdr-phone {
        width: 26%;
        text-align: center;
    }
}

@media(min-width: 1200px) and (max-width: 1333px) {
    .b2-hed h2 {
        font-size: 55px;
    }

    .b2-txt h2 {
        font-size: 55px;
    }

    .b3-bx p br {
        display: none;
    }

    .b3 img {
        max-width: 100%;
    }

    .b6-txt h2 {
        font-size: 55px;
    }

    .b6-hed h2 {
        font-size: 55px;
    }
}

.sz1 {
    width: 24px;
}

.dark h1 {
    color: #fff;
    padding: 0px;
    margin: 0;
    font-size: 66px;
    font-weight: 900;
    text-align: center;
    color: #14131300;
    background-repeat: no-repeat;
    background-size: cover;
    BACKGROUND-POSITION: right;
    background-clip: text;
    -webkit-background-clip: text;
    /* FONT-FAMILY: 'aaaa'; */
    letter-spacing: 5px;
    opacity: 1;
    background-attachment: fixed;
    background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIQf3W0v3_f8W3Wt2sC88KnGCMGQBOMxe4_trwEOCnYw&s);
    text-transform: uppercase;
    margin: 0 0 10px;
}

.mb-40 {
    margin-bottom: 40px
}

.kode_welcome {
    float: left;
    width: 100%;
    position: relative;
}

.kode_welcome:before {
    content: "";
    position: absolute;
    top: -35px;
    left: -20px;
    width: 100%;
    height: 100%;
    /* border: 3px solid #cad4df; */
    /* background-color: #fff; */
    /* border-radius: 12px; */
    z-index: -1;
}

.kode_welcome:after {
    content: "";
    position: absolute;
    /* border: 3px solid #dfdfdf; */
    height: 104%;
    left: -35px;
    top: -24px;
    width: 100%;
    z-index: -2;
    /* border-radius: 12px; */
}

.kode_welcome figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 4px 4px 6px 6px #eeeeee;
}

@media(min-width: 1025px) and (max-width: 1099px) {
    .banner:before {
        top: 139px;
    }
}

@media(min-width: 1025px) and (max-width: 1199px) {
    .fullscreen-video {
        bottom: -92px;
    }
}

@media(min-width: 1025px) and (max-width: 1100px) {
    .nav-menu > li > a {
        padding: 24px 25px 21px 25px;
    }
}










@media only screen and (max-width:768px) {

    .dark h1 {
        font-size: 35px;
    }
    .header {
    float: left;
    width: auto;
    display: none;
}


    .about-content{
        margin:20px 0 0
    }
    p {
   
    text-align: justify;
}










}


 

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.about-content  p{
    text-align:justify
}

.about-content .section-title h2{
    margin: 0 0 30px;
    font-weight: 600;
    color: #ec9944;
}

.rd{

border: 1px solid orange;

padding: 3px 17px;

margin: 22px 0 0;
}


.about-hed p{
    text-align:justify
}

.mission-txt p{
    text-align:justify
}