
@font-face {
    font-family: 'Helvetica Neue Light';
    src: local('O'), url('/assets/fonts/HelveticaNeue-Light.woff') format('woff'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Medium';
    src: local('O'), url('/assets/fonts/HelveticaNeueMed.woff') format('woff'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: local('O'), url('/assets/fonts/HelveticaNeue.woff') format('woff'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*Start Settings*/
:root {
    --main_color: #BFA87F;
    --second_color: #1C1C22;
    --hover_color: #000;
    --second_hover_color: #fff;
    --title_color: #48443B;
    --text_color: #000;
    --bg_color: #F7F6F4;
    --font_title:'Helvetica Neue Medium', sans-serif;
    --font: 'Helvetica Neue', sans-serif;
}
body{
    font: 400 15px/1.22 var(--font);
    color: var(--text_color);
    margin: 0;
}
h1 {
    font: 500 42px var(--font_title);
    color: var(--title_color);
}
h2 {
    font: 500 34px var(--font_title);
    color: var(--title_color);
}
h3 {
    font: 400 24px var(--font_title);
    color: var(--title_color);
}
h4 {
    font: 400 28px var(--font_title);
    color: var(--title_color);
    font-weight: 700;
}
h5 {
    font: 400 24px var(--font_title);
    color: var(--title_color);
}
h6 {
    font: 400 18px var(--font_title);
    color: var(--title_color);
}
@media(max-width: 767px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    body {
        font-size: 14px;
    }
}
h1.page-title{
    text-align: center;
    text-transform: lowercase;
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    color: #000;
    margin: 50px 0;
}
.button_basic{
    display: inline-block;
    padding: 13px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    background-color: var(--main_color);
    color: var(--text_color);
    cursor: pointer;
}
input.form-control::-moz-placeholder,
textarea::-moz-placeholder{
    color: #7D7D7D;
    opacity: 1!important;
}
input.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color: #7D7D7D;
}
a,
a:hover,
a:focus{
    text-decoration: none;
}
ul,
ol{
    list-style-position: inside;
}
header ul,
header ol,
footer ul,
footer ol{
    padding: 0;
    margin: 0;
}
header ul,
footer ul{
    list-style: none;
}
/*End Start Settings*/

/*Standart Settings*/

.container{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1220px;
}
.container-inner{
    margin: 0 auto;
    max-width: 860px;
    padding-bottom: 50px;
}
.container-inner ul{
    list-style-position: outside;
}
.container-inner ol{
    padding-left: 0;
}

*,
:after,
:before{
    box-sizing: border-box;
}
body > .content{
    /*min-height: 650px;*/
    width: 100%;
    clear: both;
}

.customClear:before,
.customClear:after{
    content:"";
    display:block;
    height:0;
    overflow:hidden;
    clear:both;
}
a,
button,
input[type="submit"],
a img{
    transition:all 0.3s linear;
}
input:not([type="checkbox"]),
select{
    -moz-appearance: none;
    -webkit-appearance: none;
}
iframe,
img{
    max-width: 100%;
}
img{
    vertical-align: middle;
}
a img{
    border: none;
}
input,
textarea,
select{
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.caret {
    display: none;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.logo:hover img{
    opacity: 0.7;
}
header .logo img{
    width: 212px;
    height: 30px;
}
/*End Standart Settings*/

/* Header Styles */
header{
    position: relative;
    width: 100%;
    z-index: 999;
    background: #fff;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 26px;
}
header nav ul {
    display: flex;
}
header nav li{
    position: relative;
}

header nav li a{
    padding: 13px 26px;
    color: var(--text_color);
    display: block;
    text-decoration: none!important;
    font-size: 18px;
    line-height: 1.16;
    font-weight: 500;
    position: relative;
}
header nav li a:hover{
    color: var(--main_color);
}
header nav .menu-header-menu-container > ul > li{
    display: inline-block;
}
header nav .menu-header-menu-container > ul > li > a{
    text-transform: uppercase;
}
header nav .menu-item-has-children .sub-menu{
    position: absolute;
    top: calc(100% + 10px);
    max-width: 100%;
    left: 0;
    padding-top: 0;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    display: block;
    overflow: hidden;
    height: 0;
    transition: .4s;
}


header nav .menu-item-has-children .sub-menu li{
    width: 100%;
    max-width: 100%;
}
header nav .menu-item-has-children .sub-menu li a{
    padding: 12px 25px;
    display: block;
    background: #F7F6F4;
    color: var(--text_color);
    margin-top: 0;
    text-align: center;
    border-top: 1px solid rgba(22, 46, 58, 0.2);
    font-size: 14px;
}
header nav .menu-item-has-children .sub-menu li:first-child a{
    border-top: 9px solid var(--text_color);
}
header nav .menu-item-has-children .sub-menu li a:hover{
    color: var(--text_color);
}
header nav .menu-item-has-children .sub-menu .sub-menu{
    top: 0;
    left: 100%;
}
header nav .menu-item-has-children .sub-menu .caret{
    margin-left: 4px;
}
.openMenu{
    display: block!important;
}
/*sticky header*/
.fixing{
    top: -70px;
    transition: top 0.3s
}
.fixing.activated{
    position: fixed;
    width: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.16)
}
.fixing.activated .container{
    padding-top: 10px;
    padding-bottom: 10px;
}
/*end sticky header*/
/*Front Page*/
body > .content{
    min-height:450px;
}
body.home > .content{
    height:calc(100vh - 315px);
}
body.home > .content .container{
    height: 100%;
}
.home .flex-container{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home .flipper{
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}
.home .flipper .front{
    padding-top:15px;
    padding-bottom:10px;
    cursor:pointer;
    background: #fff;
    transition:0.3s;
    position:relative;
    z-index: 99;
}
.home .flipper .back{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 30px;
    left: 0;
    bottom:0;
   /* -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);*/
    background: #fff;
    text-align: center;
}
.home .flipper .back .close-img{
    position: relative;
    z-index: 22;
    cursor:pointer;
}
.home .click-effect.active .front{
    pointer-events:none;
    opacity:0;
}
.home .click-effect{
    width: 280px;
    perspective:350px;
}
.home h1{
    text-align: center;
    text-transform: lowercase;
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    margin-top: 10px;
    color: #000;
}
.home h1 > span{
    color: #000;
    padding: 0 5px;
    transition:0.4s;
}
.home h1 span{
    transition:0.4s;
}
.home h1 > span{
    position: relative;
}
.click-effect span.positioned{
    background-image: repeating-linear-gradient(90deg, rgba(206,5,255,1) 0%, rgba(0,5,255,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 5px;
    position: relative;
    transition:0.4s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
/*.home h1 > span:first-child{
    margin-right: -5px;
}
.home h1 > span:last-child{
    margin-left: -5px;
}*/
.click-effect.active span.positioned{
    /*background-image: repeating-linear-gradient(90deg, rgba(206,5,255,1) 0%, rgba(0,5,255,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 5px;
    position: relative;
    transition:0.4s;*/
    opacity: 1;
}
.click-effect.active span.black{
    opacity: 0;
}
.home .gradient-area{
    width: 180px;
    height: 180px;
    display: flex;
    flex-wrap:wrap;
    margin: 0 auto;
    background-image:url('/assets/lut-icon.svg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.home .flipper h3{
    text-align: center;
    text-transform: lowercase;
    font-family:'Helvetica Neue Light';
    font-style: italic;
    font-weight: 300;
    font-size: 30px;
    color: #000;
    margin: 15px 0;
}
.home .flipper h2{
    text-align: center;
    text-transform: lowercase;
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    margin-top:0;
}
.home .flipper h2 span{
    background-image:  repeating-linear-gradient(90deg, rgba(206,5,255,1) 0%, rgba(0,5,255,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 5px;
  position: relative;
}
.home .flipper h2 span:first-child{
    margin-right: -5px;
}
.home .flipper h2 span:last-child{
    margin-left:-5px;
}
/*End  Front Page*/


/*Responsivness*//*Responsivness*//*Responsivness*/
@media(max-width:600px){
    .fixing.activated{
        top:0!important;
    }
}


/* Footer */


footer{
    font-family:'Helvetica Neue Light';
    font-style: italic;
    padding: 20px 0;
}
/*footer .footer-container{
    padding: 0 60px;
}*/
footer .copyright-footer{
    margin-top: 20px;
}
footer .copyright-footer p{
    margin: 0;
    font-size: 13px;
    line-height:1.5;
}
footer nav li{
    text-transform: lowercase;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 5px;
}
footer nav li a{
    color:#000;
}
footer nav li a:hover{
    color: #F455DD;
}

/* Legal pages */
.wpContent article { line-height: 1.4; }
.wpContent article p { margin: 0 0 1em; }
.wpContent article a { color: #5021DE; }
.wpContent article a:hover { color: #F455DD; }
/* Contact */
.contact-line { text-align: center; font-size: 20px; margin: 0 0 60px; }
.contact-line a { color: #5021DE; }
.contact-line a:hover { color: #F455DD; }
