html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, body,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    position: relative;
    font-family: 'Gotham Pro';
    font-weight: 500;
    /* text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; */
    color: var(--dark);
}
:root{
    --blue: #00557b;
    --dark: #151718;
    --gold: #b09044;
    --red: #bb5454;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
input, textarea {
outline: none;
} 
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.clr{
    clear: both;
}
textarea,
input[type=text],
input[type=mail],
input[type=tel],
input[type=button],
input[type=submit]{
    -webkit-appearance: none;
    border-radius: 0;
}
a{
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
h1{
    font-size: 40px;
}
h2{
    font-size: 36px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 18px;
}
h5{
    font-size: 16px;
}
h6{
    font-size: 14px;
}
header{
    position: relative;
    z-index: 100;
}
.main_page{
    height: 100vh;
    overflow: hidden;
    background-color: #f6f5f4;
}
.flex_container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: stretch;
}
.flex_item{
    position: relative;
    width: 50%;
    height: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 0 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.img_bg{
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.logo{
    width: 200px;
    height: 200px;
    background-color: var(--blue);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;  
    -ms-align-items: center;
    align-items: center;    
    justify-content: center;
    padding: 30px;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;   
    left: 50%;  
    -webkit-transform:  translate(-50%, -50%);
    -ms-transform:  translate(-50%, -50%);
    -o-transform:   translate(-50%, -50%);
    transform:  translate(-50%, -50%);
    box-shadow: 0px 0px 70px rgba(0,0,0,.3);
    z-index: 5;
}
.logo img{
    display: block; 
    width: 100%;
    margin-top: -26px;
    max-width: 300px;
}
.text-right{
    text-align: right;
}
.links_box{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;  
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.aligh_right{
    justify-content: flex-end;
    text-align: right;
}
.flex_item_wrap{
    position: relative;
}
.flex_item_wrap h2{
    font-size: 40px;
    line-height: 1.5;
    color: var(--dark);
    font-weight: bold;   
    margin-bottom: 30px;
    text-transform: uppercase;
}
.flex_item_wrap a{
    color: var(--gold);
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
}
.flex_item_wrap a i{
    display: inline-block;
    vertical-align: middle;
    margin-top: 3px;
    line-height: 1;
}
.aligh_right .flex_item_wrap a i{
    margin-right: 15px;
}
.aligh_left .flex_item_wrap a i{
    margin-left: 15px;
}
.flex_item_wrap a:hover{
    color: var(--dark);
}
.flex_item_wrap a span{
    display: inline-block;
    vertical-align: middle;
/*     border-bottom: 1px solid transparent;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear; */
}
.flex_item_wrap a:hover span{
    /* border-bottom: 1px solid var(--gold); */
}
.icons_box{
    position: absolute;
    top: 50%;
    left: 35%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    font-size: 100px;
    color: #eeebea;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.aligh_right .icons_box{
    right: 35%;
    left: auto;
}
.recall_btn{
    width: 70px;
    height: 70px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 30px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.recall_btn i{
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.recall_btn:hover i{
    -webkit-transform: scale(1.1) rotate(15deg);
    -ms-transform: scale(1.1) rotate(15deg);
    -o-transform: scale(1.1) rotate(15deg);
    transform: scale(1.1) rotate(15deg);
}
.left_ar{
    position: absolute;
    top: 50%;
    left: 10%;
    color: var(--gold);
    font-size: 130px !important;
    line-height: 1 !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
.left_ar:hover{
    color: var(--dark);
}
.right_ar{
    position: absolute;
    top: 50%;
    right: 10%;
    color: var(--gold);
    font-size: 130px !important;
    line-height: 1 !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
.right_ar:hover{
    color: var(--dark);
}


.wrapper{
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px;
}



#products-category{
    background-image: url('../images/title-bg.jpg');
}
.page-title-box{
    padding: 57px 0 71px;
    text-align: center;
}
h1{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--dark);
}
.bredcrumbs ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.bredcrumbs ul li {
    font-size: 14px;
    line-height: .8;
    color: var(--dark);
    font-weight: normal;
}
.bredcrumbs ul li a{
    color: var(--gold);
    text-decoration: none;
}
.bredcrumbs ul li a:hover{
    color: var(--red);
}
.bredcrumbs ul li a:after{
    content: '-';
    color: var(--dark);
    margin: 0 5px;
}

.pagination{
    width: 100%;
    margin-bottom: 100px;
    padding-top: 50px;
}
.pagination ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.pagination ul li a{
    background-color: #f1efec;
    color: #afadaa;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #f1efec;
    text-decoration: none;
    font-size: 14px;
}
.pagination ul li a:hover{
    border-color: var(--red);
    color: var(--red);
}
.pagination ul li{
    margin: 0 2px;
    color: #afadaa;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.pagination ul li a.this-page{
    color: var(--gold);
    border-color: var(--gold);
}






/* Coffee machines - details page  */





.corporate .header-bottom-container{
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 2px solid #eae9e6;
}
.corporate-navigation ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: flex-end;
}

.corporate-navigation ul{
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.corporate-navigation ul li.draft{
    display: none !important;
}
.corporate-navigation ul li a{
    position: relative;
    display: block;
    padding: 48px 24px;
    color: var(--blue);
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
}
.corporate-navigation ul li a:hover,
.current-menu-item a{
    color: var(--gold) !important;
}
.corporate-navigation ul li a:after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.corporate-navigation ul li a:hover:after,
.current-menu-item a:after{
    opacity: 1;
}
.details-container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
}
.details-container .details{
    width: 50%;
    font-weight: normal;
}
.machine-photo{
    width: 50%;
    text-align: right;
    padding-left: 50px;
    margin-top: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.machine-photo img{
    width: 100%;
    display: inline-block;
}
.machine-desc{
    padding: 83px 0 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url('../images/title-bg.jpg');
}
.machine-desc{
    font-size: 14px;
    line-height: 1.5;
}
.machine-desc h1{
    font-size: 36px;
    margin-bottom: 47px;
}
.details-container h4{
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--gold);
    margin: 34px 0px 11px;
}
.technical-info{
    padding: 93px 0 34px;
}
.block-title{
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
}
.technical-info table{
    width: 100%;
    border-top: 1px solid #e2e1de;
    border-right: 1px solid #e2e1de;
    font-size: 14px;
    margin-bottom: 63px;
    margin-top: 20px;
}
.technical-info table tr th:first-child,
.technical-info table tr td:first-child{
    text-align: left;
    width: 535px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.technical-info table tr th{
    padding: 9px 39px;
    font-weight: 500;
}
.technical-info table tr td{
    font-weight: normal;
    padding: 12px 39px;
}
.technical-info table tr th,
.technical-info table tr td{
    text-align: center;
    border-left: 1px solid #e2e1de;
    border-bottom: 1px solid #e2e1de;
    vertical-align: middle;
}
.cofe-desc{
    padding: 103px 0;
    background-color: #f6f5f4;
}
.cofe-desc-container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.cofe-desc-text{
    width: 58%;
    font-weight: normal;
}
.half-box-container li,
.cofe-desc-text li{
    list-style-type: disc;
    list-style-position: inside;
}
.cofe-ilustration{
    position: relative;
    width: 42%;
    padding-left: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.cofe-ilustration:before{
    content: '';
    position: absolute;
    top: 52%;
    left: 0;
    right: -10px;
    height: 80%;
    z-index: -1;
    background-color: var(--blue);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cofe-ilustration img{
    display: block;
    width: 100%;
}
.cofe-desc-text{
    font-size: 14px;
    line-height: 1.5;
}
.cofe-desc-text h2{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 43px;
}
.cofe-desc-text h4{
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}


.top-header-container{
    background-color: var(--dark);
}
.info-pages{
    margin-left: -15px;
}
.info-pages ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.info-pages ul li a{
    display: block;
    text-decoration: none;
    color: var(--gold);
    font-size: 14px;
    font-weight: normal;
    padding: 12px 14px;
}
.info-pages ul li:first-child a,
.info-pages ul li a:hover{
    background-color: var(--red);
    color: #fff;
}
.flex-between{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.tools-block{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.lang-box,
.language-chooser{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.lang-box li a,
.language-chooser li a{
    display: block;
    padding: 5px;
    color: #6a6b6c;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
}
.lang-box li a:hover,
.language-chooser li a:hover{
    color: #fff;
}
.lang-box li a.is-active,
.language-chooser li.active a{
    color: #fff;
}
.search-box{
    position: relative;
    padding: 0 15px;
    color: #6a6b6c;
    cursor: pointer;
}
.tools-block{
    font-size: 14px;
}
.map-link{
    text-decoration: none;
    color: var(--gold);
    white-space: nowrap;
}
.map-link:hover{
    color: var(--red);
}
.header-logo{
    max-width: 171px;
}
.header-logo svg{
    display: block;
    width: 100%;
    height: 50px;
}
.header-bottom-container{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f6f5f4;
    border-bottom: 2px solid #fff;
}
.flex-justify{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.top-header-left{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.header-phone{
    font-size: 24px;
    letter-spacing: 1.4px;
    color: var(--blue);
    margin-left: 98px;
}
.header-phone a{
    text-decoration: none;
    color: inherit;
}
.header-phone:hover{
    color: var(--gold);
}
.mini-cart{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    font-size: 14px;
    /* background-color: #fff; */
    padding: 13px;
    margin-left: 23px;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
    color: inherit;
    text-decoration: none;
}
.mini-cart:hover{
    background-color: #fff;
}
.top-header-right{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.hallo{
    font-size: 14px;
    font-weight: normal;
    color: var(--dark);
    text-align: right;
    margin-bottom: 5px;
}
.hallo:hover{
    color: var(--gold);
}
.hallo a{
    color: inherit; 
}
.free-shiping{
    font-weight: bold;
    font-size: 12px;
    text-align: right;
}
.icon-cart{
    font-size: 35px;
}
.mini-cart .total{
    margin-bottom: 5px;
}
.cart-info {
    display: block;
    margin-left: 14px;
}
.cart-info span{
    display: block;
}
#main-navigation{
    background-color: #f6f5f4;
    border-bottom: 2px solid #eae9e6;
}
#main-navigation ul{
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
#main-navigation ul li{
    /* position: relative; */
}
#main-navigation ul li a{
    position: relative;
    display: block;
    padding: 18px 24px;
    color: var(--blue);
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
}
#main-navigation ul li a:hover{
    color: var(--gold);
}
#main-navigation ul li a:after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
#main-navigation ul li a:hover:after{
    opacity: 1;
}
.dropdown-menu{
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url('../images/navbg1.jpg');
    z-index: 10;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease, top .5s ease;
    -o-transition: opacity .3s ease, top .5s ease;
    transition: opacity .3s ease, top .5s ease;
}
#main-navigation ul li:hover .dropdown-menu{
    top: calc(100% + 2px);
    opacity: 1;
    visibility: visible;
}
#main-navigation ul .dropdown-menu ul{
    display: block;
    width: 290px;
    padding: 50px 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #eae9e6;
    height: 280px;
}
#main-navigation ul .dropdown-menu ul li a{
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: unset;
    font-size: 14px;
}
#main-navigation ul .dropdown-menu .more-about{
    position: relative;
    display: block;
    width: 230px;
    height: 280px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-end;
    align-items: flex-end;
    color: #fff;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
}
#main-navigation ul .dropdown-menu .more-about:hover{
    color: var(--gold);
}
#main-navigation ul .dropdown-menu .more-about:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%;
    background-image: linear-gradient(to bottom, rgba(21, 23, 24, 0.0),rgba(21, 23, 24, 0.9));
    z-index: 3;
}
#main-navigation ul .dropdown-menu .more-about span.menu_bg_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
}
#main-navigation ul .dropdown-menu .more-about:hover span.menu_bg_img{
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
#main-navigation ul .dropdown-menu .more-about span{
    display: block;
    position: relative;
    width: 100%;
    z-index: 3;
}
#main-navigation ul .dropdown-menu .more-about i{
    position: absolute;
    right: 0px;
    top: 0;
}
#main-navigation ul .dropdown-menu a:after{
    display: none;
}
.slide{
    height: 650px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.icon-ar_left:before,
.icon-ar_right:before{
    margin: 0;
    width: auto;
}
.slide .wrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    height: 100%;
}
.blue{
    color: var(--blue);
}
.gold{
    color: var(--gold);
}
.slide-title{
    font-size: 40px;
    line-height: 1.5;
    font-weight: bold;
    text-transform: uppercase;
}
.slide-desc{
    font-size: 18px;
    line-height: 1.5;
    margin-top: 30px;
}
.slider-btn{
    color: var(--gold);
    border: 2px solid var(--gold);
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .75px;
    display: inline-block;
    margin-top: 100px;
    padding: 22px 40px;
}
.slider-btn:hover{
    background-color: var(--gold);
    color: #fff;
}
.slider-btn span{
     display: inline-block;
     margin-right: 27px;
}
.find{
    padding: 65px 0px 60px 0px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.help-finde-box{
    width: 100%;
    margin: 0 auto;
    max-width: 750px;
    background-color: rgba(255, 255, 255, .85);
    text-align: center;
    text-transform: uppercase;
    padding: 35px 0 40px;
}
.help-finde-box h3{
    font-size: 24px;
}
.btn-gold {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    background-color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 22px;
    display: inline-block;
    margin-top: 26px;
    letter-spacing: .6px;
    border: 2px solid var(--gold);
}
.btn-gold:hover{
    background-color: transparent;
    color: var(--gold);
}
#hot{
    padding: 100px 0;
}
.top-items{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
}
.item{
    position: relative;
    width: 33.3333%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.item a{
    display: block;
    color: inherit;
    text-decoration: none;
}
.item .btn-gold{
    display: inline-block;
    color: #fff;
}
.item .btn-gold:hover{
    color: var(--gold);
}
.tovar-name{
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 17px;
}
.tovar-price {
    font-size: 24px;
    margin-bottom: -12px;
}
.tovar-price span{
    font-size: 15px;
    vertical-align: super;
    font-family: 'Gotham Pro';
    font-weight: bold;
}
strong{
    font-family: 'Gotham Pro';
    font-weight: bold;
}
.top-items .btn-gold{
    padding: 17px 37px;
}
.old-price{
    display: inline-block;
    margin-left: 10px;
    color: var(--red);
    text-decoration: line-through;
}
.coffee-label {
    position: absolute;
    top: 12px;
    left: 20px;
    width: 60px;
    height: 60px;
}
.coffee-label img{
    display: block;
    max-width: 100%;
}
.item.sale .item-wrap{
    border-top: 1px solid var(--red);
}
.sale-label{
    position: absolute;
    bottom: 100%;
    left: 20px;
    height: 20px;
    width: 56px;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.sale-label:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    border-radius: 50% 50% 0 0;
    background-color: var(--red);
    z-index: -1;
}
.item.top .item-wrap{
    border-top: 1px solid var(--gold);
}
.top-label{
    position: absolute;
    bottom: 100%;
    left: 20px;
    height: 20px;
    width: 56px;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.top-label:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    border-radius: 50% 50% 0 0;
    background-color: var(--gold);
    z-index: -1;
}
.item.new .item-wrap{
    border-top: 1px solid var(--blue);
}
.new-label{
    position: absolute;
    bottom: 100%;
    left: 20px;
    height: 20px;
    width: 56px;
    color: #fff;
    font-size: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.new-label:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    border-radius: 50% 50% 0 0;
    background-color: var(--blue);
    z-index: -1;
}
.special{
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 136px 0 160px;
}
.special h2{
    line-height: 1.5;
    font-size: 60px;
    text-transform: uppercase;
}
.special .slider-btn{
    margin-top: 48px;
}
footer{
    background-color: #f1efec;
    padding-top: 95px;
    padding-bottom: 10px;
    border-top: 2px solid #fff;
}
footer .wrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
#footer-nav{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    width: 75%;
}
#footer-nav .hide{
    display: none;
}
#footer-nav ul{
    width: 33.3333%;
}
.subscribe-container{
    width: 25%;
}
.footer-logo{
    width: 100%;
}
.footer-logo svg{
    display: block;
    max-width: 205px;
    height: auto;
}
#footer-nav ul li a{
    font-size: 12px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: .6px;
    display: inline-block;
    padding-bottom: 17px;
    display: block;
}
#footer-nav ul li a:hover{
    color: var(--gold);
}
.s-form-title{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 20px;
    color: var(--dark);
}
.subscribe-form form{
    position: relative;
}
.subscribe-form input[type=text],
.subscribe-form input[type=email]{
    width: 100%;
    border: none;
    height: 40px;
    background-color: #fff;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 40px;
    font-size: 14px; 
    font-family: 'Gotham Pro'; 
    font-weight: normal;
}
.subscribe-form button[type=submit]{
    position: absolute;
    top: 2px;
    right: 2px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
    cursor: pointer;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.subscribe-form button[type=submit]:hover{
    background-color: var(--red);
}
.footer-social{
    margin: 50px 0 20px;
}
.footer-social ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.footer-social ul li a{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: var(--gold);
    border: 2px solid var(--gold);
    margin: 0 3px;
}
.footer-social ul li a:hover{
    color: #fff;
    background-color: var(--gold);
}
.copy{
    width: 100%;
    text-align: center;
    color: #a2a2a1;
    font-size: 14px;
    font-weight: normal;
}
.copy a{
    text-decoration: none;
    color: var(--gold);
}
.copy a:hover{
    text-decoration: underline;
}
.isla-link{
    background-color: var(--red);
    color: #fff;
    padding: 5px 15px;
    position: fixed;
    bottom: 15px;
    right: 0;
    text-decoration: none;
    font-size: 12px;
    width: 130px;
    height: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
}
.isla-link:hover{
    background-color: var(--gold);
}
.top-btn{
    z-index: 100;
    color: var(--red);
    position: fixed;
    bottom: 15px;
    right: 130px;
    height: 23px;
    font-size: 18px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 30px;
}
.top-btn:hover{
    background-color: var(--gold);
    color: #fff;
}
::-webkit-input-placeholder {font-size: 14px; color: #a2a2a1; font-family: 'Gotham Pro'; font-weight: normal;}
::-moz-placeholder          {font-size: 14px; color: #a2a2a1; font-family: 'Gotham Pro'; font-weight: normal;}/* Firefox 19+ */
:-moz-placeholder           {font-size: 14px; color: #a2a2a1; font-family: 'Gotham Pro'; font-weight: normal;}/* Firefox 18- */
:-ms-input-placeholder      {font-size: 14px; color: #a2a2a1; font-family: 'Gotham Pro'; font-weight: normal;}

.header-search{
    position: absolute;
    top: 50%;
    right: 15px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: width .3s ease;
            -o-transition: width .3s ease;
            transition: width .3s ease;
}
.header-search input[type=text]{
    border: none;
    width: 100%;
    height: 30px;
    padding-right: 40px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px; 
    font-family: 'Gotham Pro'; 
    font-weight: normal;
}
.header-search button[type=submit]{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
}
.search-btn-activator{
    padding: 0 15px;
}
.header-search.active{
    width: 290px;
    opacity: 1;
    visibility: visible;
}




/* Coffee machines Category */




.machines-title-box{
    padding: 66px 0;
    overflow: hidden;
}
.machines-title-box h1{
    margin-bottom: 40px;
}
.machines-title-box p{
    margin-bottom: 24px;
}
.machines-title-box p.list-title{
    margin-bottom: 0;
}
.img-with-shadow{
    box-shadow: -20px 0px 60px rgba(0, 0, 0, .2)
}
.machine-category {
    padding: 35px 0 64px;
}
.ctegory-list{
    margin-bottom: 48px;    
}
.ctegory-list ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.ctegory-list ul li p{
    display: block;
    padding: 12px 29px;
    border: 2px solid var(--gold);
    text-decoration: none;
    margin: 0 5px;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .6px;
    cursor: pointer;
}
.ctegory-list ul li p:hover,
.ctegory-list ul li.is-active p{
    background-color: var(--gold);
    color: #fff;
}
.machines-list{
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% + 30px);
    margin-left: -15px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
}
.machines-list.is-active{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.machine-item{
    width: 25%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 21px;
}
.machine-item img{
    width: 100%;
    display: block;
    margin-bottom: 25px;
    height: 212px;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: center;
}
.consult-btn{
    display: block;
    width: 100%;
    height: 42px;
    border: 2px solid var(--gold);
    color: var(--gold);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-top: 27px;
    margin-bottom: 10px;
}
.consult-btn:hover{
    color: #fff;
    background-color: var(--gold);
}
.machine-name{
    font-size: 16px;
}
.more-link{
    color: #afadaa;
    font-size: 14px;
    border-bottom: 1px solid #afadaa;
    text-decoration: none;
}
.more-link:hover{
    color: var(--red);
    border-color: var(--red);
}
.half-bg-img{
    padding: 85px 0;
    position: relative;
    background-image: url('../images/title-bg.jpg');
}
.half-bg{
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
}
.half-wrapper{
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.half-bg-img h2{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 43px;
}
.half-bg-img ul,
.half-bg-img p{
    margin-bottom: 24px;
}
.half-bg-img p:last-child{
    margin-bottom: 0;
}
.btn-arrow{
    padding: 17px 37px;
    margin-top: 10px;
}
.btn-arrow i{
    margin-left: 33px;
}
.half-box-container{
    position: relative;
    width: 50%;
    left: 50%;
    right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 113px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}




/* About Us */




.about-us-first-screen{
    padding: 97px 0 148px; 
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
.about-us-first-screen:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f1efec;
    opacity: .8;
}
.about_us_logo{
    width: 282px;
    height: auto;
    margin: 0 auto;
}
.main-about-text{
    padding-top: 25px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark);
}
.main-about-text h1{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
}
.main-about-text .column-text{
    text-align: left;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding-top: 43px;
    font-weight: normal;
}
.main-about-text .column-text p{
    margin-bottom: 24px;
}
.main-about-text .column-text p:last-child{
    margin-bottom: 0;
}
.create-isla{
    padding: 105px 0;
    background-repeat: repeat;
    background-image: url('../images/title-bg.jpg');
}
.isla-thin{
    width: 100%;
    max-width: 555px;   
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}
.isla-thin p{
    margin-bottom: 24px;
}
.isla-thin p:last-child{
    margin-bottom: 0;
}
.isla-thin h2{
    color: var(--gold);
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 43px;
    text-transform: uppercase;
}
.isla-thin img{
    display: block;
    width: 100%;
    margin-top: 50px;
}
section{
    position: relative;
}
.ubout_fabrick{
    overflow: hidden;
    padding-top: 86px;
}
.ubout_fabrick h2{
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 86px;
}
.half-box-about{
    position: relative;
    padding: 170px 0 152px;
}
.half-box-about.img-left .half-about-img{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.half-box-about.img-right .half-about-img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.about-text-box{
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.about-text-box p{
    margin-bottom: 24px;
}
.half-box-about.img-right .about-text-box{
    position: relative;
    width: 50%;
    padding-right: 120px;
}
.half-box-about.img-left .about-text-box{
    position: relative;
    width: 50%;
    left: 50%;
    padding-left: 120px;
}
.justify-start{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}
.diferent-icons-box{
    margin-left: -18px;
    padding-top: 5px;
}
.diferent-icons-box li{
    color: var(--gold);
    text-align: center;
    padding: 0 12px;
}
.diferent-icons-box li i{
    font-size: 40px;
    color: var(--blue);
    margin-bottom: -5px;
    display: inline-block;
}
.word-bg{
    position: absolute;
    top: 50%;
    font-size: 156px;
    letter-spacing: 7.8px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--dark);
    opacity: .07;
    z-index: -1;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}
.half-box-about.img-right .word-bg{
    right: 47%;
}
.half-box-about.img-left .word-bg{
    left: 47%;
}
.why-isla{
    padding: 86px 0 57px;
    background-image: url('../images/title-bg.jpg');
}
.why-isla h2{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
}
.why-list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 29px;
    width: calc(100% + 30px);
    margin-left: -15px;
}
.why-list li{
    width: 33.3333%;
    text-align: center;
    font-size: 14px;
    min-width: 290px;
    line-height: 1.5;
    font-weight: normal;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 41px;
}
.why-icon {
    position: relative;
}
.why-icon img{
    position: relative;
    display: inline-block;
    max-height: 131px;
}
.why-icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 70px;
    color: var(--gold);
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.clients{
    overflow: hidden;
    padding: 86px 0 57px;
}
.clients h2{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
}
.clients-list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 71px;
    width: calc(100% + 30px);
    margin-left: -15px;
}
.clients-list li{
    width: 20%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}
.client-logo{
    height: 136px;
    width: 100%;
    border: 5px solid #f6f5f4;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.client-logo img{
    display: block;
    max-width: 100%;
}
.clients-list li a{
    text-decoration:none;
    color: inherit;
}
.client-name{
    padding: 0 30px;
}
.service-item{
    position: relative;
    padding: 109px 0;
}
.service-item .service-img{
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service-item:nth-child(odd) .service-img{
    left: 0;
    right: 50%;
}
.service-item:nth-child(even) .service-img{
    right: 0;
    left: 50%;
}
.service-item:nth-child(odd) .service-text-box{
    position: relative;
    left: 50%;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 110px;
}
.service-item:nth-child(even) .service-text-box{
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 110px;
}
.service-desc{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 46px;
    font-weight: normal;
}
.service-desc li{
    list-style-type: disc;
    list-style-position: inside;
}
.service-desc p{
    margin-bottom: 24px;
}
.service-desc p:last-child{
    margin-bottom: 0;
}
.service-name{
    font-size: 36px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 45px;
}
.service-name span{
    color: var(--gold);
}
.service-desc h4{
    color: var(--gold);
    /* text-transform: uppercase; */
    margin-bottom: 10px;
}
.service-text-box .btn-arrow{
    margin-top: 0;
}







/* ISLA ON MAP */




.map-container{
    height: 100vh;
    max-height: 780px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
#map{
    height: 100%;
    width: 75%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.map-filter{
    padding: 88px 78px;
    width: 25%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.filter-select{
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}
.map-filter .btn-gold{
    padding: 13px 37px;
    margin-top: 36px;
}
.filter-select input[type=text]{
    width: 100%;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px;
    padding-left: 40px;
    border: 2px solid #e2e1de;
    font-family: 'Gotham Pro';
    color: var(--gold);
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    z-index: 2;
    position: relative;
    background-color: transparent;
}
.filter-active-item{
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
.filter-active-item:before{
    content:  '\F35D';
    position: absolute;
    top: 50%;
    color: var(--gold);
    right: 15px;
    z-index: 1;

    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}
.filter-select-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    z-index: 10;
    background-color: #fff;
    box-shadow: 1px 5px 15px rgba(0, 0, 0, .15);
}
.filter-select-dropdown li{
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 15px;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: background-color .3s ease, color .3s ease;
    -o-transition: background-color .3s ease, color .3s ease;
    transition: background-color .3s ease, color .3s ease;
}
.filter-select-dropdown li.is-active{
    background-color: #ececec;
    color: var(--gold);
}
.filter-select-dropdown li:hover{
    background-color: #ececec;
    color: var(--red);
}
.map-container .filter-title{
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 7px;
}



/* Tea ISLA */




.tea-main{
    padding: 113px 0 80px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}
.tea-main:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .8;
    background-color: #f1efec;
}
.tea-img-box{
    padding-top: 35px;
    width: 49%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.tea-img-box img{
    display: block;
    width: 100%;
}
.tea-title-box{
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 100px;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
    font-weight: normal;
}
.tea-title-box p{
    margin-bottom: 24px;
}
.tea-title-box h1{
    font-size: 54px;
    line-height: 1.3;
    color: var(--gold);
    text-transform: uppercase;
}
.tea-title-box h2{
    text-transform: uppercase;
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 41px;
}
.why-list.four-box{
    padding-top: 0;
}
.why-list.four-box li{
    width: 20%;
}
.why-isla.tea-page-composer{
    padding-top: 70px;
    padding-bottom: 80px;
}
.half-box{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.half-item{
    width: 50%;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 15px;
}
.half-item img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding-right: 15%;
}
.tea-desc-container {
    padding: 33px 0px;
}
.tea-half-desc{
    font-size: 14px;
    line-height: 1.5;
}
.tea-half-desc h2{
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.tea-half-desc h4{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.tea-half-desc p{
    margin-bottom: 24px;
}
.tea-variants{
    padding: 80px 0;
}
.thre-variant-in-row{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-top: 58px;
}
.tea-variants h2{
    font-size: 36px;
    text-transform: uppercase;
}
.variant-item{
    width: 33.3333%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 50px;
}
.variant-item p{
    margin-bottom: 24px;
}
.tea-variant-img img{
    display: inline-block;
    max-width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.tea-variant-title{
    margin-bottom: 20px;
    margin-top: -12px;
}
.tea-variant-title h3{
    font-size: 18px;
    text-transform: uppercase;
}
.tea-variant-title h5{
    color: var(--gold);
    font-size: 14px;
    font-weight: normal;
}
.fasovka-icon-box{
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 16px 8px;
    font-size: 12px;
    color: var(--gold);
}
.fasovka-container i{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: var(--gold);
}
.fasovka-container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.variant-item .fasovka-title{
    flex-grow: 1;
    width: 100%;
    margin-bottom: 0;
}
.fasovka-icon-desc{
    white-space: nowrap;
}





/* Coffee ISLA contrast */





.tea-title-box h4{
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.half-item{
    font-size: 14px;
    line-height: 1.5;
}
.half-item h2{
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.half-item p{
    margin-bottom: 24px;
}
.cofe-box-desc{
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}
.cofe-box-desc p{
    margin-bottom: 24px;
}
.cofe-box-desc a{
    text-decoration: none;
    color: var(--gold);
}
.cofe-box-desc a:hover{
    color: var(--red);
}
.coffe-desc-title{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 18px;
}
.first-desc {
    position: absolute;
    top: calc(100% + 7px);
    left: 146px;
}
.first-desc:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -14px;
    width: 1px;
    height: 210px;
    background-color: var(--dark);
}
.first-desc:after {
    content: '';
    position: absolute;
    bottom: 213px;
    left: -16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--dark);
}
.second-desc {
    position: absolute;
    bottom: calc(100% - 55px);
    right: -88px;
}
.second-desc:before {
    content: '';
    position: absolute;
    top: 3px;
    left: -11px;
    width: 1px;
    height: 208px;
    background-color: var(--dark);
}
.second-desc:after{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--dark);
    top: 209px;
    left: -13px;
}
.coffe-details {
    padding: 144px 0;
}
.half-box:nth-child(odd) .half-desc-c {
    padding-left: 98px;
    padding-top: 69px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.half-box:nth-child(even) .half-desc-c {
    padding-right: 98px;
    padding-top: 69px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.half-desc-c{
    font-weight: normal;
}
.coffe-details .half-box {
    margin-bottom: 185px;
    font-weight: normal;
}
.coffe-details .half-box:last-child{
    margin-bottom: 0;
}
.half-box:nth-child(even) .second-desc {
    position: absolute;
    bottom: calc(100% - 58px);
    right: -13px;
}
.third-desc {
    position: absolute;
    top: 67%;
    right: 53px;
    width: 140px;
    font-weight: normal;
}
.third-desc:before {
    content: '';
    position: absolute;
    right: 3px;
    top: -11px;
    height: 1px;
    width: 270px;
    background-color: var(--dark);
}
.third-desc:after{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--dark);
    right: 272px;
    top: -13px;
}
.half-desc-c h3{
    font-size: 18px;
    text-transform: uppercase;
    margin-top: -20px;
    margin-bottom: 50px;
}
.mt-85{
    margin-top: -85px;
}
.coffe-variants h2{
    font-size: 36px;
    text-transform: uppercase;
}
.coffe-variants{
    padding: 129px 0;
}
.coffe-var-container{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-top: 90px;
}
.coffe-var-item{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 85px;
}
.c-desc-box{
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 30px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
}
.c-desc-box:before{
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    width: 140%;
    height: 1px;
    background-color: var(--dark);
}
.c-desc-box:after{
    content: '';
    position: absolute;
    top: 22px;
    right: 140%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--dark);
}
.c-desc-box .coffe-desc-title{
    margin-bottom: 50px;
}
.c-desc-box p{
    margin-bottom: 24px;
}
.c-desc-box a{
    color: var(--gold);
    text-decoration: none;
}
.c-desc-box a:hover{
    color: var(--red);
}
.c-img-box img{
    display: block;
    max-width: 100%;
}
.c-desc-box,
.c-img-box{
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.c-img-box{
    padding-right: 15px;
}
.half-box.img-right .half-desc-c{
    padding-left: 0;
    padding-right: 98px;
}
.half-box.img-right .half-item img{
    margin-left: 0;
}
.third-desc.th-top{
    top: 0;
}
.third-desc.th-top {
    top: 142px;
    width: 200px;
    right: 64px;
}
.third-desc.th-top:before {
    width: 333px;
}
.third-desc.th-top:after {
    right: 333px;
}
.where-by{
    padding: 186px 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: fixed;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}
.where-by:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    opacity: .85;
}
.where-by h2{
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 44px;
}
.where-by h2 span{
    color: var(--gold);
}
.w750{
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.btn-gold-transparent{
    font-size: 12px;
    color: var(--gold);
    background-color: transparent;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 22px;
    display: inline-block;
    margin-top: 26px;
    letter-spacing: .6px;
    border: 2px solid var(--gold);
}
.btn-gold-transparent:hover{
    background-color: var(--gold);
    color: #fff;
}
.btns-box{
    padding-top: 55px;
}
.btns-box a {
    padding: 16px 37px;
    margin: 0 3px;
}
.map-item-container{
    width: 100%;
    height: 350px;
    -webkit-transition: box-shadow .3s ease;
    -o-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
}
.maps-box{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 85px 0;
}
.map-item{
    position: relative;
    width: 50%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.map-desc{
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.map-desc:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(246, 245, 244, 1), rgba(246, 245, 244, 0.75));
    opacity: .85
}
.m-d-w{
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 71px 59px;
    height: 100%;
    padding-bottom: 0;
}
.map-item.active .map-item-container{
    box-shadow: 0px 10px 50px rgba(0, 0, 0, .15)
}
.office-title{
    font-size: 30px;
    margin-bottom: 30px;
}
.map-desc{
    font-size: 14px;
    line-height: 1.5;
}
.map-desc p{
    margin-bottom: 5px;
}
.map-desc p .mdi{
    margin-right: 11px;
}
.map-desc a{
    color: var(--gold);
    text-decoration: none;
}
.map-desc a:hover{
    color: var(--red);
}
.map-desc-btn{
    position: absolute;
    top: 89px;
    right: 0;
    padding: 12px 38px;
    font-size: 12px;
    color: #fff;
    z-index: 5;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
    cursor: pointer;
}
.map-desc-btn:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gold);
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.map-desc-btn:hover:after{
    background-color: #fff;
}
.map-desc-btn:before {
    content: '';
    position: absolute;
    top: 4px;
    right: 0px;
    width: 13px;
    height: 100%;
    background-color: #8a6f2f;
    -webkit-transform: skew(0deg, -17deg);
    -moz-transform: skew(0deg, -17deg);
    -ms-transform: skew(0deg, -17deg);
    -o-transform: skew(0deg, -17deg);
    transform: skew(0deg, -17deg);
    z-index: -1;
}
.map-desc-btn span{
    position: relative;
    z-index: 1;
}
.map-desc-btn:hover{
    color: var(--gold);
}





/*  BLOG POST  */





.post-main-screen{
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.post-main-screen:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--blue);
    opacity: .8;
}
.post-main-screen .wrapper{
    position: relative;
    z-index: 1;
    padding: 133px 15px 128px;
}
.page-desc{
    padding-right: 480px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}
.full-page-container h1,
.page-desc h1{
    /* font-size: 40px; */
    /* margin-bottom: 50px; */
    color: #fff;
}
.page-desc p{
    margin-bottom: 24px;
}
.page-img{
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    width: 450px;
}
.page-img img{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.blog-page-content {
}
.content-wrapper {
    width: 100%;
    max-width: 780px;
    padding: 73px 15px 55px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    z-index: 1;
    font-weight: normal;
}
.content-wrapper p{
    margin-bottom: 24px;
}
.content-wrapper h2:first-child{
    margin-top: 0;
}
.content-wrapper h2 {
    /* font-size: 24px; */
    line-height: 1.5;
    /* margin-top: 49px; */
    /* margin-bottom: 21px; */
}
blockquote {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    padding: 14px 21px;
    background-color: #f6f5f4;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 39px 0;
}
.content-wrapper ul{
    margin-bottom: 24px;
    list-style: disc inside;
}
.blog-page-content .full-page-container{
    padding: 136px 0 124px;
    position: relative;
    font-weight: normal;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.blog-page-content .full-page-container .wrapper{
    position: relative;
    z-index: 1;
}
.blog-page-content .full-page-container:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--blue);
    opacity: .8;
}
.full-page-container{
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
.full-page-container h2{
    /* font-size: 40px; */
    line-height: 1.5;
    /* margin-bottom: 60px; */
}
.full-page-container p{
    margin-bottom: 24px;
}
.quote .mdi-format-quote-open {
    position: absolute;
    right: calc(100% + 12px);
    top: 36px;
}
.quote .mdi-format-quote-close {
    position: absolute;
    left: calc(100% + 12px);
    bottom: 10px;
}
.quote .content-wrapper i{
    color: var(--gold);
    font-size: 108px;
    line-height: 1;
}
.quote .content-wrapper {
    font-size: 24px;
    font-style: italic;
}
.blog-page-content .full-page-container.quote{
    padding: 118px 0 140px;
}
.post-info{
    padding: 20px 0;
    background-color: #f1efec;
    font-size: 14px;
    line-height: 1.5;
}
.post-info .wrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.post-info-right,
.post-info-left{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: flex-start;
}
.post-info a{
    color: var(--gold);
    text-decoration: none;
}
.post-category{
    margin-left: 27px;
}
.post-category a:hover{
    color: var(--red);
}
.post-info-right p{
    margin-right: 15px;
}
.post-info-right a {
    border: 2px solid var(--gold);
    width: 28px;
    height: 28px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}
.post-info-right a:hover{
    color: #fff;
    background-color: var(--gold);
}
.blog-post-list,
.more-post-list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-top: 16px;
}
.blog-post-list .post-item,
.more-post-list .post-item{
    width: 33.3333%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.post-img{
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
    margin-bottom: 23px;
    cursor: pointer;
}
.post-img img{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.post-title{
    font-size: 18px;
    line-height: 1.5;
}
.post-list-date{
    font-size: 14px;
    color: #afadaa;
    margin-top: 3px;
    font-weight: normal;
}
.post-list-category{
    color: var(--gold);
    font-size: 14px;
}
.post-list-category a:hover{
    color: var(--red);
}
.post-title a,
.post-list-category a{
    color: inherit;
    text-decoration: none;
}
.post-title:hover{
    color: var(--gold);
}
.more-posts {
    padding: 91px 0;
}
.more-posts h2{
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    text-transform: uppercase;
}
.post-img a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 23, 24, 0.8);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--gold);
    overflow: hidden;
    opacity: 0;
}
.post-img:hover a{
    opacity: 1;
}






/* BLOG POST LIST */




.blog-posts {
    padding: 97px 0px;
}
.cat-list ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.cat-list ul li{
    margin: 0 5px;
}
.cat-list ul li a{
    padding: 12px 28px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    display: inline-block;
    text-decoration: none;
}
.cat-list ul li a:hover,
.cat-list ul li.active a{
    background-color: var(--gold);
    color: #fff;
}
.blog-post-list{
    padding-top: 26px;
}
.blog-post-list .post-list-date{
    margin-top: 8px;
    margin-bottom: 8px;
}
.blog-post-list .post-item{
    margin-bottom: 10px;
}
.blog-posts .pagination {
    width: 100%;
    margin-bottom: 0;
    padding-top: 77px;
}






/* NEWS POST PAGE */





.more-news-list{
    padding-top: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    margin-left: -15px;
    width: calc(100% + 30px);
}
.more-news-list .news-item{
    width: 33.3333%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news-img{
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 24px;
}
.news-img img{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.news-img a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 23, 24, 0.8);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--gold);
    overflow: hidden;
    opacity: 0;
}
.news-img:hover a{
    opacity: 1;
}
.text-center{
    text-align: center;
}
.article-post-date{
    position: absolute;
    bottom: 30px;
    display: inline-block;
    right: 0;
    padding: 13px 30px;
    color: var(--gold);
    background-color: #fff;
    font-size: 14px;
    -webkit-transition: color .3s ease, background-color .3s ease;
    -o-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
}
.news-img:hover .article-post-date{
    color: #fff;
    background-color: var(--gold);
}
.news-title{
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 13px;
}
.news-more-link a,
.news-title a{
    text-decoration: none;
    color: inherit;
}
.news-list-desc{
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: normal;
}
.news-more-link{
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: .6px;
}
.news-more-link a{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: flex-start;
}
.news-more-link a:hover{
    color: var(--red);  
}
.news-more-link a i{
    font-size: 20px;
    line-height: 0;
    margin-left: 17px;
}
.news-list-desc{
    font-size: 14px;
    line-height: 1.5;
}
.news-title:hover{
    color: var(--gold);
}






/* NEWS LIST */






.news-list-item .wrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.news-img-box{
    position: relative;
    width: calc(50% - 30px);
    height: 330px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news-img-box img{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.news-img-box a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 23, 24, 0.8);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--gold);
    overflow: hidden;
    opacity: 0;
}
.news-img-box:hover a{
    opacity: 1;
}
.news-img-box:hover .article-post-date{
    color: #fff;
    background-color: var(--gold);
}
.news-item-title{
    font-size: 24px;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 20px;
}
.news-item-title a{
    color: inherit;
    text-decoration: none;
}
.news-item-title a:hover{
    color: var(--gold);
}
.news-desc-item{
    width: calc(50% + 30px);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 44px;
}
.news-item-desc{
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 58px;
}
.news-list-item{
    padding: 47px 0 53px;
}
.news-list-item:nth-child(even){
    background-color: #f9f9f8;
}
.news-img-box .news-more-link{
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: .6px;
}

.main-corporate-page{
    position: relative;
}
.main-corporate-page .slide-item{
    position: relative;
    padding: 200px 0 150px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 1;
}
.main-corporate-page .slide-item .wrapper{
    position: relative;
    z-index: 3;
}
.video_bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.video_bg iframe{
    position: relative;
}
.video_bg #slide-video{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: auto;
    opacity: 0;
    transition: opacity .5s;
}
.video_bg #slide-video.active {
    opacity: 1;
}
.video_thumbnail{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.video_thumbnail.hidden{
    opacity: 0;
}
.main-corporate-page .slide-item:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: .6;
}
.main-corporate-page .main-title{
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    text-align: right;
}
.main-corporate-page .main-title h1{
    color: #fff;
    font-weight: bold;
}
.main-corporate-page .main-title h1 span,
.main-corporate-page .main-title h1 strong{
    color: var(--gold);
}
.main-title h1{
    font-size: 60px;
}
.more-news{
    padding: 91px 0 0;
}
.more-news h2 {
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    text-transform: uppercase;
}
.btn-gold.main{
    font-size: 15px;
    letter-spacing: .75px;
    padding: 22px 40px;
}
.wp-pagenavi span.pages{
    display: none;
}
.wp-pagenavi{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}
.wp-pagenavi a,
.wp-pagenavi span{
     text-decoration: none; 
     border: none !important; 
     padding: 0; 
    margin: 0 2px !important;
    background-color: #f1efec;
    color: #afadaa;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    outline-bottom: 2px solid #f1efec !important; 
    text-decoration: none;
    font-size: 14px;
    position: relative;
}
.wp-pagenavi a:after,
.wp-pagenavi span:after{
    content:"";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #f1efec;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.wp-pagenavi span.extend{
    background:none;
}
.wp-pagenavi span.extend:after{
    display: none;
}
span.current{
    font-weight: normal !important;
    color: var(--gold);
}
span.current:after{
    background-color: var(--gold);
}

.wp-pagenavi a:hover {
    border-color: var(--red);
    color: var(--red);
}
.wp-pagenavi a:hover:after{
    background-color: var(--red);    
}

#kons_form{
    max-width: 500px;
}
#kons_form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.5;
}
#kons_form input[type=text]{
    width: 100%;
    display: block;
    height: 40px;
    margin-bottom: 10px;
    border: 2px solid #e2e1de;
    padding: 0px 15px;
    font-family: 'Gotham Pro';
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#kons_form textarea{
    width: 100%;
    height: 60px;
    display: block;
    margin-bottom: 10px;
    border: 2px solid #e2e1de;
    padding: 10px 15px;
    resize: none;
    font-family: 'Gotham Pro';
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#kons_form label{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}
#kons_form input[type=submit] {
    display: inline-block;
    cursor: pointer;
    margin-left: auto;
    margin-top: 0;
}
#kons_form{
    padding: 40px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    max-width: 600px;
}
.chackbox-container{
    position: relative;
    font-weight: normal;
}
.chackbox-container input[type=checkbox]{
    display: none;
}
.chackbox-container label{
    position: relative;
    font-size: 14px;
    padding-left: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
.chackbox-container label:before{
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid var(--gold);
    position: absolute;
    bottom: 1px;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.chackbox-container label:after{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    bottom: 5px;
    left: 4px;
    opacity: 0;
}
.consalt_form .chackbox-container label:before{
    top: 2px;
    bottom:auto;
}
.consalt_form .chackbox-container label:after{
    top: 6px;
    bottom:auto;
}
.chackbox-container input[type=checkbox]:checked + label:after{
    opacity: 1;
}
::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #fff;
}
::-webkit-scrollbar-track{
    background-color: #fff;
}
::-webkit-scrollbar-thumb{
    background-color: var(--gold);
}
.page-hero{
    background-image: url('../images/title-bg.jpg');
}
.page-content{
    min-height: calc(100vh - 524px);
    font-size: 14px;
    line-height: 1.5;
}
.page-title-box h2 {
    font-size: 40px;
    line-height: 1.5;
    text-transform: uppercase;
}
.search-results-container{
    padding: 100px 0;
}
.search-results-container{
    font-size: 14px;
    line-height: 1.5;
}
.search-results-container ol{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 
    calc(100% + 30px);
    margin-left: -15px;
}
.search-results-container li{
    display: block;
    margin-bottom: 0;
    width: 50%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.search-results-container li a{
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}
.search-results-container li a:hover{
    transform: translate(0, -2px)
}
.search-results-container li a span{
    font-size: 14px;
    display: block;
    color: var(--dark);
}
.search-results-container li a .search-result-title{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.search-results-container li a:hover .search-result-title{
    text-decoration: underline;
}
.nothing_found,
.wrong_request{
    color: var(--red);
    text-align: center;
}
.paralax-wrapp{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}
.paralax-bg{
    position: absolute;
    top: -50%;
    left: 0;
    height: 120%;
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.content-wrapper{
    overflow: hidden;
}
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}




.content-wrapper table{
    width: 100%;
    border-top: 1px solid #e2e1de;
    border-right: 1px solid #e2e1de;
    font-size: 14px;
    margin-bottom: 63px;
    margin-top:20px;
}
.content-wrapper table tr th:first-child,
.content-wrapper table tr td:first-child{
    text-align: left;
    width: 535px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.content-wrapper table tr th{
    padding: 9px 39px;
    font-weight: 500;
}
.content-wrapper table tr td{
    font-weight: normal;
    padding: 12px 39px;
}
.content-wrapper table tr th,
.content-wrapper table tr td{
    text-align: center;
    border-left: 1px solid #e2e1de;
    border-bottom: 1px solid #e2e1de;
    vertical-align: middle;
}


