/*Special Styles*/

/*Plugins Start*/

div,
a,
p,
input,
button {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.box-shadow {
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
}

.box-shadow:hover {
    box-shadow: 5px 12px 20px rgba(36, 37, 38, 0.13);
}

.rotate-r90 {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Safari */
    transform: rotate(90deg);
    /* Standard syntax */
}

.rotate-l90 {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari */
    transform: rotate(-90deg);
    /* Standard syntax */
}

.scale-large {
    -ms-transform: scale(1, 1);
    /* IE 9 */
    -webkit-transform: scale(1, 1);
    /* Safari */
    transform: scale(1, 1);
}

.scale-large:hover {
    -ms-transform: scale(1.1, 1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1, 1.1);
    /* Safari */
    transform: scale(1.1, 1.1);
}

.scale-minimize {
    -ms-transform: scale(1, 1);
    /* IE 9 */
    -webkit-transform: scale(1, 1);
    /* Safari */
    transform: scale(1, 1);
}

.scale-minimize:hover {
    -ms-transform: scale(0.9, 0.9);
    /* IE 9 */
    -webkit-transform: scale(0.9, 0.9);
    /* Safari */
    transform: scale(0.9, 0.9);
}

.isometric {
    -ms-transform: skew(40deg, -20deg);
    /* IE 9 */
    -webkit-transform: skew(40deg, -20deg);
    /* Safari */
    transform: skew(40deg, -20deg);
}

.matrix {
    -ms-transform: matrix(1, -0.3, 0, 1, 0, 0);
    /* IE 9 */
    -webkit-transform: matrix(1, -0.3, 0, 1, 0, 0);
    /* Safari */
    transform: matrix(1, -0.3, 0, 1, 0, 0);
    /* Standard syntax */
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

@media (max-width:767px) {
    .mt-0 {
        margin-top: 0;
    }
    
    .mt-10 {
        margin-top: 10px;
    }
    
    .mt-20 {
        margin-top: 20px;
    }
    
    .mt-30 {
        margin-top: 30px;
    }
    
    .mt-40 {
        margin-top: 40px;
    }
    
    .mt-50 {
        margin-top: 50px;
    }
    
    .mt-60 {
        margin-top: 10px;
    }
    
    .mt-70 {
        margin-top: 70px;
    }
    
    .mt-80 {
        margin-top: 80px;
    }
    
    .mt-90 {
        margin-top: 90px;
    }
    
    .mt-100 {
        margin-top: 100px;
    }
    
    .mb-0 {
        margin-bottom: 0;
    }
    
    .mb-10 {
        margin-bottom: 20px;
    }
    
    .mb-20 {
        margin-bottom: 20px;
    }
    
    .mb-30 {
        margin-bottom: 30px;
    }
    
    .mb-40 {
        margin-bottom: 40px;
    }
    
    .mb-50 {
        margin-bottom: 50px;
    }
    
    .mb-60 {
        margin-bottom: 60px;
    }
    
    .mb-70 {
        margin-bottom: 70px;
    }
    
    .mb-80 {
        margin-bottom: 80px;
    }
    
    .mb-90 {
        margin-bottom: 90px;
    }
    
    .mb-100 {
        margin-bottom: 100px;
    }
}
.no-gutter {
    margin-right: 0;
    margin-left: 0;
}

.no-gutter>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.img-gray {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.img-blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.img-brightness {
    -webkit-filter: brightness(250%);
    filter: brightness(250%);
}

.img-cover {
    object-fit: cover;
}

.button {
    padding-left: 30px;
    padding-right: 30px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover {
    padding-left: 20px;
    padding-right: 60px;
}

.button:hover span {
    margin-right: -20px;
}

.button:hover span:after {
    opacity: 1;
    right: -20px;
}

.btn {
    display: inline-block;
    padding: 13px 62px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
@media (max-width:767px) {
    .btn {
        display: inline-block;
        padding: 13px 42px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
    }
}

.btn-primary {
    color: #28240F;
    background-color: #fedd48;
    border-color: #fedd48;
}

.btn-primary:hover {
    color: #28240F;
    background-color: #fedd48;
    border-color: #fedd48;
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
    color: #28240F;
    background-color: #fedd48;
    border-color: #fedd48;
}

.btn-primary.focus,
.btn-primary:focus {
    color: #28240F;
    background-color: #fedd48;
    border-color: #fedd48;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
    color: #28240F;
    background-color: #fedd48;
    border-color: #fedd48;
}

.btn-primary .btn-icon-right-primary {
    height: 10px;
    margin-left: 20px;
    margin-right: -20px;
}

/*Vertical Align Center Div*/

.outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    text-align: center;
}

/*scrollToTop*/

.scrollToTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 9px 16px;
    font-size: 11px;
    border-radius: 99px;
    display: none;
}
@media (max-width:767px) {
    .scrollToTop {
        position: fixed;
        bottom: 10px;
        right: 10px;
        padding: 5px 11px;
        font-size: 11px;
        border-radius: 99px;
        z-index: 999;
        display: none;
    }
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 22px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #284015;
    background-color: #fff;
    background-image: none;
    border: 2px solid rgba(40, 64, 21, 0.6);
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #284015;
    outline: 0;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075), 0 0 0px rgb(60, 82, 43);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075), 0 0 0px rgb(40, 64, 21);
}

/*Plugins End*/

/*Theme Start*/

body {
    font-family: co-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #28240F;
}

.link {
    color: #28240F;
    text-decoration: underline;
}

.link:hover {
    color: #28240F;
    text-decoration: none;
}

.link i {
    margin-left: 15px;
}

.link img {
    margin-left: 15px;
}
.alert {
    padding: 35px;
    margin-bottom: 50px;
    border: 0px solid transparent;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
}
.alert-success {
    color: #274012;
    background-color: #ffdd3c;
    border-color: #ffdd3c;
}
.alert-danger {
    color: #ffffff;
    background-color: #ff6036;
    border-color: #ff6036;
}
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

@media (max-width:767px) {
    .sm-space {
        height: 15px;
    }
}


.page-title h1 {
    border-bottom: #fedd48 3px solid;
    padding-bottom: 25px;
    display: -webkit-inline-box;
    color: #284015;
    font-size: 30px;
    margin-bottom: 80px;
}
.container-compress {
    padding-right: 125px;
    padding-left: 125px;
}
@media (max-width:767px) {
    .page-title h1 {
        border-bottom: #fedd48 3px solid;
        padding-bottom: 15px;
        display: -webkit-inline-box;
        color: #284015;
        font-size: 25px;
        margin-bottom: 30px;
    }
    .container-compress {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.navbar-fixed-top {
    position: absolute;
}

.navbar-brand {
    float: none;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

.navbar-brand img {
    height: 80px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #202513;
}
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 36px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #fedd48;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.top-menu {
    margin-top: 43px;
    background: none;
}

.top-menu .dropdown-menu {
    min-width: 72px;
}

.top-menu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 25px !important;
}

.top-menu .open a,
.nav .open a:focus,
.top-menu .open a:hover {
    background: none !important;
    border: white 1px solid;
}

.top-menu a:hover {
    background: none !important;
    color: #ffea89;
}

.language {
    margin-right: 15px;
}

.top-menu .language .link {
    font-size: 16px;
    font-weight: 700;
    border: white 1px solid;
    padding-top: 9px;
    padding-bottom: 10px;
    margin-top: 3px;
    margin-left: 20px;
    text-decoration: none;
}

.light-menu {
    padding-top: 200px;
}

.light-menu .top-menu a {
    color: #284015;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 25px !important;
}

.light-menu .top-menu a:hover {
    background: none !important;
    color: #576b49;
}

.light-menu .top-menu .language .link {
    font-size: 16px;
    font-weight: 700;
    border: #284015 1px solid;
    padding-top: 9px;
    padding-bottom: 10px;
    margin-top: 3px;
    margin-left: 20px;
    text-decoration: none;
}
@media (max-width:767px) {
    .navbar-brand {
        float: none;
        height: 50px;
        padding: 0px 0px;
        font-size: 18px;
        line-height: 20px;
    }
    .navbar-brand img {
        height: 60px;
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 15px;
    }
    .top-menu {
        padding-bottom: 15px;
        margin-top: 0;
        background: rgba(62, 97, 67, 0.97);
    }
    .navbar-nav .open .dropdown-menu li a {
        background: white !important;
        margin: 0 0px 0 20px;
        line-height: 8px;
        font-size: 13px;
        border-bottom: #efefef 1px solid;
        color: #28240F !important;
        font-weight: 700;
    }
    .light-menu .top-menu a {
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 700;
        padding: 10px 25px !important;
    }
    .light-menu .top-menu .language .link {
        font-size: 16px;
        font-weight: 700;
        border: #ffffff 1px solid !important;
        padding-top: 9px;
        padding-bottom: 10px;
        margin-top: 3px;
        margin-left: 20px;
        text-decoration: none;
    }
    .light-menu {
        padding-top: 120px;
    }
}
/*ERROR-PAGE*/

.error-page {
    background: #FFEB3B;
}

.error-page h1 {
    font-size: 67px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

.error-page p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.8;
    padding-right: 20px;
    margin-bottom: 70px;
}
ul.list {
    padding-left: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}
ul.list li{
    padding-left: 0;
    list-style: none;
}
@media (max-width:767px) {
    ul.list li {
        padding-left: 0;
        list-style: none;
        font-size: 12px;
    }
}

ul.list li:before{
    content: '';
    display: inline-block;
    height: 18px;
    width: 28px;
    background-image: url('/img/ul-icon.svg');
    background-repeat: no-repeat;
 }
/*HOME-PAGE*/

.home-page h2 {
    color: #284015;
}

.home-page h3 {
    color: #28240F;
}

.home-welcome {
    position: relative;
}

.home-welcome::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);
    z-index: 1;
}

.home-welcome .text-wrapper {
    position: absolute;
    bottom: 150px;
    z-index: 2;
}

.home-welcome h1 {
    color: #ffffff;
    font-size: 124px;
    font-weight: 700;
    letter-spacing: -3px;
    margin-left: -7px;
}

.home-welcome p {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 70px;
}

.home-welcome .tel {
    padding: 10px 40px 12px 40px;
    color: #000;
    font-size: 26px;
    font-weight: 700;
    background: #FEDD47;
    border-radius: 3px;
    text-decoration: none;
}

.home-welcome .header-pic {
    width: 100%;
    height: 750px;
    object-fit: cover;
}
@media (max-width:767px) {
    .home-welcome .text-wrapper {
        position: absolute;
        bottom: 40px;
        z-index: 2;
    }
    .home-welcome h1 {
        color: #ffffff;
        font-size: 74px;
        font-weight: 700;
        letter-spacing: -3px;
        margin-left: -7px;
    }
    .home-welcome p {
        color: #ffffff;
        font-size: 31px;
        font-weight: 500;
        line-height: 1.1;
        margin-bottom: 50px;
    }
    .home-welcome .tel {
        padding: 10px 30px 12px 30px;
        color: #000;
        font-size: 17px;
        font-weight: 700;
        background: #FEDD47;
        border-radius: 3px;
        text-decoration: none;
    }
    .home-welcome .header-pic {
        width: 100%;
        height: 570px;
        object-fit: cover;
    }
}
/*HOME-PROCESSES*/

.home-processes {
    padding: 100px 0;
}

.home-processes h2 {
    font-size: 84px;
    font-weight: 700;
    letter-spacing: -3px;
}

.home-processes h3 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 40px;
}

.home-processes p {
    font-size: 28px;
    font-weight: 300;
    padding-right: 40px;
    margin-bottom: 70px;
}
@media (max-width:767px) {
    .home-processes {
        padding: 40px 0;
    }
    .home-processes h2 {
        font-size: 54px;
        font-weight: 700;
        letter-spacing: -3px;
    }  
    .home-processes h3 {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .home-processes p {
        font-size: 24px;
        font-weight: 300;
        padding-right: 40px;
        margin-bottom: 30px;
    }
}
/*HOME-ABOUT-US*/

.home-about-us {
    padding: 100px 0;
}

.home-about-us h2 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 10px;
}

.home-about-us h3 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 40px;
}

.home-about-us p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.8;
    padding-right: 20px;
    margin-bottom: 50px;
}
@media (max-width:767px) {
    .home-about-us {
        padding: 30px 0;
    }
    .home-about-us h3 {
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 30px;
    }
    .home-about-us p {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.8;
        padding-right: 20px;
        margin-bottom: 30px;
    }
}
/*HOME-PRODCUTS*/

.home-products {
    padding-bottom: 100px;
}

.home-products h2 {
    position: absolute;
    top: 20px;
    left: -200px;
    background-color: #ffffff;
    padding: 12px 35px 18px 35px;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -3px;
}

.home-products h3 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 95px;
    display: block;
}

.home-products p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media (max-width:767px) {
    .home-products {
        padding-bottom: 30px;
    }
    .home-products h2 {
        position: relative;
        top: 0;
        left: 0;
        background:none;
        padding: 0;
        font-size: 44px;
        font-weight: 700;
        letter-spacing: -2px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .home-products h3 {
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 5px;
        display: none;
    }
}
/*HOME-INTERNATIONAL-TRADE*/

.home-international-trade {
    background: url('/img/home/international-trade.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0
}

.home-international-trade h2 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 40px;
}

.home-international-trade p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}
@media (max-width:767px) {
    .home-international-trade {
        background: url(/img/home/international-trade.jpg) no-repeat center right;
        background-size: cover;
        padding: 40px 0;
    }
    .home-international-trade h2 {
        font-size: 34px;
        font-weight: 700;
        letter-spacing: -1px;
        color: #ffffff;
        margin-bottom: 40px;
    }
}
/*HOME-MARKET*/

.home-market {
    margin-top: 100px;
}

.home-market h2 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 80px;
}

.home-market p {
    font-size: 22.5px;
    font-weight: 300;
    line-height: 1.8;
}
@media (max-width:767px) {
    .home-market {
        margin-top: 20px;
    }
    .home-market h2 {
        font-size: 34px;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 30px;
    }
    .home-market p {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.8;
    }
}
/*ABOUT US*/

.about-us-page h2 {
    font-size: 47px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.about-us-page p {
    font-size: 21px;
    font-weight: 300;
    line-height: 2;
}

.about-us-page p.lead {
    font-size: 33px;
    font-weight: 400;
    line-height: 1.8;
}

.about-us-page .pic {
    margin: 50px 0;
}

.about-us-page hr {
    border-top: #fedd48 2px solid;
    margin-top: 90px;
    margin-bottom: 90px;
}
@media (max-width:767px) {
    .about-us-page h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .about-us-page p {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.7;
    }
    .about-us-page p.lead {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;
    }
    .about-us-page .pic {
        margin: 20px 0;
    }
    .about-us-page hr {
        border-top: #fedd48 2px solid;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/*PRODUCTS-PAGE*/

.products-page h2 {
    color: #284015;
}

.products-page h3 {
    color: #28240F;
}

.products-page .welcome {
    position: relative;
    background: url(/img/products/header.jpg) center center no-repeat;
    background-size: cover;
    height: 750px;
}

.products-page .welcome::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);
    z-index: 1;
}

.products-page .welcome .content {
    position: relative;
    bottom: -308px;
    z-index: 2;
}

.products-page .welcome .content h1 {
    border-bottom: #fedd48 3px solid;
    padding-bottom: 25px;
    display: -webkit-inline-box;
    color: #fff;
    font-size: 30px;
    margin-bottom: 80px;
}

.products-page .welcome .content .subtext {
    color: #28240F;
    font-size: 29px;
    padding: 70px 90px;
    font-weight: 500;
    background: rgba(254, 220, 71, 1);
    background: -moz-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(254, 220, 71, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fedc47', endColorstr='#ffffff', GradientType=0);
}

.products-page .welcome .content .harvest {
    position: relative;
    bottom: -360px;
}

.products-page .order {
    padding: 90px 0;
    text-align: center;
}

.products-page .order h3 {
    color: #575135;
    font-size: 33px;
    font-weight: 300;
    letter-spacing: -1px;
}

.products-page .order .tel {
    color: #284015;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -1px;
    text-decoration: none;
}

.products-page .products-list {}

.products-page .products-list .product {
    overflow: hidden;
    background: #F7F7F7;
    margin-bottom: 30px;
}

.products-page .products-list .product {}

.products-page .products-list .product .pic {
    padding: 90px 40px 30px 20px;
    display: block;
    -webkit-animation: fadeInUp;
    /* Safari 4+ */
    -moz-animation: fadeInUp;
    /* Fx 5+ */
    -o-animation: fadeInUp;
    /* Opera 12+ */
    animation: fadeInUp;
    /* IE 10+, Fx 29+ */
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.products-page .products-list .product:hover .pic {
    -webkit-animation: fadeOutUp;
    /* Safari 4+ */
    -moz-animation: fadeOutUp;
    /* Fx 5+ */
    -o-animation: fadeOutUp;
    /* Opera 12+ */
    animation: fadeOutUp;
    /* IE 10+, Fx 29+ */
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.products-page .products-list .product .go {
    opacity: 0;
    position: absolute;
    left: 20%;
    top: 50%;
    -webkit-animation: fadeOutUp;
    /* Safari 4+ */
    -moz-animation: fadeOutUp;
    /* Fx 5+ */
    -o-animation: fadeOutUp;
    /* Opera 12+ */
    animation: fadeOutUp;
    /* IE 10+, Fx 29+ */
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.products-page .products-list .product:hover .go {
    -webkit-animation: fadeInUp;
    /* Safari 4+ */
    -moz-animation: fadeInUp;
    /* Fx 5+ */
    -o-animation: fadeInUp;
    /* Opera 12+ */
    animation: fadeInUp;
    /* IE 10+, Fx 29+ */
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.products-page .products-list .product h2 {
    color: #28240F;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.products-page .products-list .product p {
    color: #28240F;
    font-size: 23px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 0;
    margin-bottom: 0;
}
@media (max-width:767px) {
    .products-page .welcome {
        position: relative;
        background: url(/img/products/header.jpg) center center no-repeat;
        background-size: cover;
        height: 470px;
    }
    .products-page .welcome .content {
        position: relative;
        bottom: -178px;
        z-index: 2;
    }
    .products-page .welcome .content h1 {
        border-bottom: #fedd48 3px solid;
        padding-bottom: 25px;
        display: -webkit-inline-box;
        color: #fff;
        font-size: 30px;
        margin-bottom: 30px;
    }
    .products-page .welcome .content .subtext {
        color: #ffffff;
        font-size: 19px;
        padding: 0;
        font-weight: 500;
        background: rgba(254, 220, 71, 1);
        background: -moz-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(254, 220, 71, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: -webkit-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
        background: -o-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
        background: -ms-linear-gradient(top, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(to bottom, rgba(254, 220, 71, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fedc47', endColorstr='#ffffff', GradientType=0);
        background: none;
    }
    .products-page .welcome .content .harvest {
        position: relative;
        bottom: -15px;
    }
    .products-page .order {
        padding: 30px 0;
        text-align: center;
    }
    .products-page .order h3 {
        color: #575135;
        font-size: 20px;
        font-weight: 300;
        letter-spacing: -1px;
    }
    .products-page .order .tel {
        color: #284015;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -1px;
        text-decoration: none;
    }
    .products-page .products-list .product h2 {
        color: #28240F;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -1px;
        padding-left: 0px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .products-page .products-list .product p {
        color: #28240F;
        font-size: 10px;
        font-weight: 400;
        padding-left: 0px;
        padding-right: 15px;
        margin-bottom: 0;
    }
    .products-page .products-list .product .pic {
        padding: 30px 40px 30px 20px;
        display: block;
        -webkit-animation: fadeInUp;
        -moz-animation: fadeInUp;
        -o-animation: fadeInUp;
        animation: fadeInUp;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
    .products-page .products-list .product .go {
        opacity: 0;
        position: absolute;
        left: 20%;
        top: 70%;
        -webkit-animation: fadeOutUp;
        -moz-animation: fadeOutUp;
        -o-animation: fadeOutUp;
        animation: fadeOutUp;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
}

/*PRODUCT-DETAIL-PAGE*/

.product-detail .welcome {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 930px;
    margin: 0 auto;
    z-index: 1;
}
.product-detail .welcome .content {
    margin-top: 220px;
}

.product-detail .welcome .content h1 {
    display: -webkit-inline-box;
    padding-right: 201px;
    padding-bottom: 30px;
    color: #111C09;
    font-size: 100px;
    letter-spacing: -5px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: white 4px 3px 0;
    background: url(/img/products/product-name-bg.svg) center right no-repeat;
}

.product-detail .welcome .content h2 {
    color: #28240F;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.product-detail .welcome .content .tel {
    margin-bottom: 20px;
    display: -webkit-inline-box;
}

.product-detail .welcome .content .tel img {
    width: 310px;
}
.product-detail .welcome .content .order-form-btn {
    margin-bottom: 60px;
}
.product-detail .welcome .content .order-form-btn a {
    font-size: 17px;
}
.product-detail .welcome .content p {
    color: #28240F;
    font-size: 22px;
}

.product-detail h2 {
    color: #284015;
    font-size: 38px;
    font-weight: 700;
    margin-top: 80px;
    margin-bottom: 40px;
}
.product-detail .details {
    position: relative;
    margin-top: -280px;
    z-index: 99;
}

.product-detail .about .box {
    background: #F1F1F1;
}

.product-detail .about .box .text {
    padding: 80px;
    color: #111C09;
    font-size: 25px;
    line-height: 1.8;
    font-weight: 300;
}
.product-detail .about p.small {
    margin: 60px 120px;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}
.product-detail .about p {
    margin-top: 60px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.8;
}
.product-detail .order-bottom {
    margin-top: 80px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.8;
}
@media (max-width:767px) {
    .product-detail .welcome {
        position: relative;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 430px;
        margin: 0 auto;
        z-index: 1;
    }
    .product-detail .welcome .content {
        margin-top: 140px;
    }
    .product-detail .welcome .content h2 {
        color: #28240F;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .product-detail .welcome .content .tel img {
        width: 180px;
    }
    .product-detail .welcome .content .order-form-btn a {
        font-size: 12px;
    }
    .product-detail .welcome .content .order-form-btn a img {
        height: 15px;
    }
    .product-detail .welcome .content h1 {
        display: -webkit-inline-box;
        padding-right: 76px;
        padding-bottom: 11px;
        color: #111C09;
        font-size: 40px;
        letter-spacing: -2px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: white 4px 3px 0;
        background: url(/img/products/product-name-bg.svg) center right no-repeat;
    }
    .product-detail .welcome .content p {
        color: #28240F;
        font-size: 13px;
    }
    .product-detail .welcome .content .order-form-btn {
        margin-bottom: 30px;
    }
    .product-detail .details {
        position: relative;
        margin-top: -21px;
        z-index: 99;
    }
    .product-detail h2 {
        color: #284015;
        font-size: 19px;
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .product-detail .about .box .text {
        padding: 30px;
        color: #111C09;
        font-size: 16px;
        line-height: 1.8;
        font-weight: 300;
    }
    .product-detail .about p.small {
        margin: 20px 15px;
        font-size: 11px;
        font-weight: 300;
        text-align: center;
    }
    .product-detail .about p {
        margin-top: 30px;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.8;
    }
    .product-detail .order-bottom {
        margin-top: 30px;
        font-size: 24px;
        font-weight: 300;
        line-height: 1.8;
    }
}
/*LEMON-PAGE*/
.lemon-page .welcome {
    background-image: url(/img/products/lemon/header.jpg);
}
/*ORANGE-PAGE*/
.orange-page .welcome {
    background-image: url(/img/products/orange/header.jpg);
}
/*MANDARIN-PAGE*/
.mandarin-page .welcome {
    background-image: url(/img/products/mandarin/header.jpg);
}
/*GRAPEFRUIT-PAGE*/
.grapefruit-page .welcome {
    background-image: url(/img/products/grapefruit/header.jpg);
}
/*POMEGRANATE-PAGE*/
.pomegranate-page .welcome {
    background-image: url(/img/products/pomegranate/header.jpg);
}
@media (max-width:767px) {
    .pomegranate-page .welcome .content h1 {
        display: -webkit-inline-box;
        padding-right: 44px;
        padding-bottom: 11px;
        color: #111C09;
        font-size: 40px;
        letter-spacing: -2px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: white 4px 3px 0;
        background: url(/img/products/product-name-bg.svg) center right no-repeat;
    }
}

/*APPLE-PAGE*/
.apple-page .welcome {
    background-image: url(/img/products/apple/header.jpg);
}

/*HARVEST-CALENDAR-PAGE*/

.harvest-calendar-page .welcome {
 
}
.harvest-calendar-page .calendar {
 
}
.harvest-calendar-page .calendar .item {
 margin-top: 50px;
}
@media (max-width:767px) {
    .harvest-calendar-page .calendar .item {
        margin-top: 15px;
    }
}

/*CONTACT US*/

.contact-us-page .welcome {
    margin-top: -50px;
}

.contact-us-page h2 {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 105px;
    color: #284015;
}

.contact-us-page h3 {
    font-size: 27px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #284015;
}

.contact-us-page h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-us-page p {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.5;
}

.contact-us-page p.lead {
    font-size: 33px;
    font-weight: 400;
    line-height: 1.8;
}

.contact-us-page .map {
    margin: 70px 0;
}

.contact-us-page .map .iframe {
    width: 100%;
    height: 200px;
    background: #ececec;
}

.contact-us-page address {
    font-size: 19px;
    margin-top: 10px;
}

.contact-us-page .tel {
    color: #FC9E00;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
}

.contact-us-page .mail {
    color: #28240F;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
}

.contact-us-page .mail:hover {
    text-decoration: none;
}
@media (max-width:767px) {
    .contact-us-page .welcome {
        margin-top: -20px;
    }
    .contact-us-page h2 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 10px;
        color: #284015;
    }
    .contact-us-page h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 30px;
        color: #284015;
    }
    .contact-us-page p {
        font-size: 21px;
        font-weight: 300;
        line-height: 1.3;
    }
    .contact-us-page .map {
        margin: 30px 0;
    }
    .contact-us-page address {
        font-size: 15px;
        margin-top: 0px;
    }
    .contact-us-page .tel {
        color: #FC9E00;
        font-size: 22px;
        font-weight: 700;
        text-decoration: none;
    }
    .contact-us-page .mail {
        color: #28240F;
        font-size: 13px;
        font-weight: 700;
        text-decoration: underline;
    }
}
/*FOOTER*/

footer {
    padding: 30px 0 70px 0;
    color: #797979;
    text-align: left;
}

footer hr {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
    border: 0;
    border-top: 1px solid #eee !important;
}

footer .footer-brand {
    display: block;
    margin-bottom: 40px;
}

footer .footer-brand img {
    width: 120px;
}

footer .copyright {
    font-size: 12px !important;
    color: #bbbbbb;
}

footer .footer-language-menu {
    margin-top: 40px;
    list-style-type: none;
    padding: 0;
}

footer .footer-language-menu img {
    margin-right: 5px;
    margin-left: 0;
}

footer .footer-language-menu a {
    color: #636363;
    text-decoration: none;
}

footer h5 {
    color: #636363;
    font-weight: 700;
    font-size: 14px;
    padding: 0;
    margin: 0;
    margin-top: 0;
    margin-bottom: 30px;
}

footer p {
    color: #797979 !important;
    margin-bottom: 3px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

footer .mail {
    color: #797979 !important;
    line-height: 1.9 !important;
    font-weight: 400 !important;
    text-decoration: underline !important;
    font-size: 13px !important;
}

footer .mail:hover {
    text-decoration: none !important;
}

footer .tel {
    color: #797979 !important;
    line-height: 1.9;
    font-weight: 400 !important;
    text-decoration: none !important;
    font-size: 13px !important;
}

footer .list-unstyled {
    margin-top: -4px;
}

footer .list-unstyled a {
    font-size: 13px;
    color: #797979;
    line-height: 1.9;
    font-weight: 400;
}

footer .social {
    text-align: right;
    margin-top: 0;
}

footer .social img {
    height: 20px;
    margin-left: 10px;
}
@media (max-width:767px) {
    footer {
        padding: 10px 0 40px 0;
        color: #797979;
        text-align: center;
    }
    footer hr {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
        border: 0;
        border-top: 1px solid #eee !important;
    }
    footer h5 {
        color: #636363;
        font-weight: 700;
        font-size: 14px;
        padding: 0;
        margin: 0;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    footer .social {
        text-align: center;
        margin-top: 30px;
    }
}

/*Theme End*/