@import url('https://fonts.googleapis.com/css2?family=Manjari&display=swap');

@font-face {
    font-family: 'Baskerville';
    src: url('../font/BASKVL.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sukhumvit';
    src: url('../font/Sukhumvit.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heart Affairs Script Demo';
    src: url('../font/Heart Affairs Script Demo.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family: 'Baskerville', 'Sukhumvit';
    --font-body: 'Sukhumvit', 'Sukhumvit';
    --font-handwriting: 'Heart Affairs Script Demo', 'Sukhumvit';
    --color-primary: #023C61;
    --color-secondary: #D2CBBA;
    --color-light: #9EB4D0;
    --color-body: #494949;

    --rgb-color-primary: 60, 97, 100;
    --rgb-color-secondary: 210, 203, 186;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

}

h1, h2, h3 {
    color: var(--color-primary);
    font-family: var(--font-family);
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: bold;
    margin: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

h4 {
    color: rgba(var(--rgb-color-secondary), 0.6);
    font-family: var(--font-handwriting);
    text-transform: none;
    line-height: 1.3;
    font-weight: lighter;
    margin: 0;
}

p {
    font-weight: lighter;
    margin: 15px 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .5s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}

::-moz-selection {
    background-color: var(--color-primary);
    color: #fff;
}


::selection {
    background-color: var(--color-primary);
    color: #fff;
}

/**********************************/
/* HEADER  */
/**********************************/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    transition: all .6s;
    font-family: var(--font-family);
    color: #000;
    text-transform: uppercase;
    padding: 0 100px;
    z-index: 9;
}

.navbar-brand {
    position: relative;
    z-index: 9;
}

.navbar-brand img {
    position: relative;
    height: 50px;
    display: block;
    object-fit: cover;
    margin: 25px 0;
    transition: all .4s;
}

.menu {
    position: absolute;
    width: 100%;
    top: 0;
    color: #000;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 6;
}

.menu-scroll {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-scroll li {
    list-style: none;
    padding: 0 10px;
    display: inline;
}

.menu-scroll li a {
    line-height: 100px;
}

.menu-scroll li a:hover {
    color: var(--color-primary);
}

.menu .btn_main {
    margin: 26px 0;
}

.scroll {
    position: fixed;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}

.scroll .navbar-brand img {
    height: 30px;
    margin: 20px 0;
}

.scroll .menu-scroll li a, .scroll .nav-lang a {
    line-height: 70px;
}

.scroll .menu .btn_main {
    margin: 16px 0;
}
.pull-right > div {
    display: inline-block;
}


/**********************************/
/* LANG */
/**********************************/
.nav-lang {
    position: relative;
    z-index: 7;
}

.nav-lang a {
    position: relative;
    padding: 0 15px;
    line-height: 100px;
    color: rgba(0, 0, 0, 0.5);
}

.nav-lang a.active {
    color: #000;
}

.nav-lang a:last-child {
    padding: 0 0 0 15px;
}

.nav-lang a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: rotate(25deg);
}

.nav-lang a:last-child:before {
    display: none;
}

.nav-lang a:hover {
    color: var(--color-primary);
}

/**********************************/
/* HAMBURGER */
/**********************************/
.iconnav {
    position: relative;
    width: 35px;
    height: 15px;
    cursor: pointer;
    right: 0;
    top: 0;
    transition: all .6s;
    display: none !important;
    z-index: 9;
    bottom: 0;
    padding: 0 !important;
}

.icon-box {
    position: relative;
    width: 100%;
    height: 100%;
}

#icon1, #icon2, #icon3 {
    position: relative;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 3px;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

#icon1 {
    top: 0;

}

#icon2 {
    top: 5px;
    right: 0;
}

#icon3 {
    top: 10px;
}

.icon-box.open #icon1 {
    top: 8px;
    background: #fff;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);

}

.icon-box.open #icon2 {
    right: -30px;
    opacity: 0;
}

.icon-box.open #icon3 {
    top: 4px;
    background: #fff;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.iconnav.active {
    right: -95px;
}

/**********************************/
/* SLIDE SHOW  */
/**********************************/
.slide_show {
    position: relative;
}

.slide_show:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    left: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.text_slide {
    position: absolute;
    width: 50%;
    bottom: 50px;
    padding: 0 100px;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

.text_slide ul {
    padding: 0;
    list-style: none;
}

.text_slide ul li:nth-child(1) {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: bold;
}

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

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

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

.text_slide li:nth-child(3) {
    animation-delay: 0.9s;
}

.text_slide .btn_primary {
    margin: 25px 0 0;
}

/**********************************/
/* BODY  */
/**********************************/
main {
    position: relative;
    width: 100%;
    padding: 0 0 100px;
}

main section {
    position: relative;
    display: inline-block;
    width: 100%;
}

figure {
    margin: 0;
}

.container {
    width: 1280px;
    padding: 0;
    margin: auto;
}

.btn_primary {
    position: relative;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    font-family: var(--font-family);
    text-transform: uppercase;
    color: #fff;
}

.btn_primary:hover {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);

}

.box_primary {
    padding: 100px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.bg,footer {
    color: #fff;
    background-image: url("../images/icon/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg h1, .bg h2 {
    color: #fff;
}
.bg .slick-dots button {
    background: #fff;
}
.lg-sub-html{
    display: none !important;
}

.lg-sub-html h4 {
    font-family: var(--font-family);
    color: #fff;
    font-size: 16px;
    font-weight: lighter;
    text-transform: uppercase;
}
.item_box {
    padding-top: 30px;
}
.slider_item4 {
    margin-right: -13px;
    margin-left: -13px;
}

/* PROMOTION  */
.promotion h2 {
    font-size: 28px;
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid rgba(4,60,97,0.25);
}
.show_promotion {
    padding: 30px 0 0;
}

.show {
    visibility: visible !important;
}

.card-header {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 10px;
    display: inline-block;
    cursor: pointer;
    transition: all .6s;
}


.card-header > div:hover {
    color: var(--color-secondary);
}

.card-header div.collapsed {
    color: var(--color-body);
}


.card-body {
    text-transform: uppercase;
    /*color: var(--color-primary);*/
}

.card-body figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.card-body figure > div {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-body figure > div a {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    padding: 10px 13px;
    background: var(--color-secondary);
    display: inline-block;
    width: fit-content;
    text-align: center;
    margin: auto;
    color: #fff;
    font-size: 14px;
    transition: all .6s;
    opacity: 0;
    font-family: var(--font-family);
}

.card-body figure > div a:hover {
    background: var(--color-primary);
}

.card-body img {
    width: 100%;
    height: 288px;
    object-fit: cover;
    transition: all .6s;
    transform: scale(1);
    object-position: top;
    display: block;
}

.card-body figure:hover img {
    transform: scale(1.05);
}

.card-body figure:hover a {
    bottom: 15px;
    opacity: 1;
}

.card-body figcaption {
    padding: 15px 0 0;
}

.card-body figcaption p {
    margin: 0;
    font-size: 14px;
    color: var(--color-primary);
    font-family: var(--font-body);
}

.card-body figcaption .name_item {
    font-size: 16px;
    text-transform: uppercase;
}
.card-body figcaption .name_item span,
.card-body figcaption .price label{
    font-size: 18px;
    font-weight: bold;
}

.card-body figcaption .price {
    margin: 10px 0 0;
    color: #c40909;
    font-size: 18px;
    font-weight: bold;

}

.card-body figcaption .price span {
    font-size: 14px;
    color: #b2b2b2;
    text-decoration: line-through;
    font-weight: lighter;
}


.card-body .slick-track {
    margin: auto;
}

.filter-controls {
    position: relative;
    padding: 30px 0 0;
    font-family: var(--font-family);
    text-transform: uppercase;
    font-size: 16px;
}
.filter-controls ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.filter-controls li {
    display: inline-block;
    padding: 0 15px;
    cursor: pointer;
}
.filter-controls li:hover {
    color: var(--color-primary);
}

/* ABOUT  */
#about .box_primary {
    padding: 0 100px 100px
}

.description {
    position: relative;
}

.row_description {
    margin-left: -25px;
    margin-right: -25px;
}

.row_description [class*=col-xs-] {
    padding: 0 25px;
}

.description img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: top;
}
.description .row_description > div:nth-child(1) {
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
}
.description .row_description > div:nth-child(even) [class*=col-xs-]:nth-child(1){
    float: right;
}

.content_about {
    position: relative;
    height: 700px;
    text-align: center;
    /*display: flex;*/
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.content_about .logo_about {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: auto;
}


.name_gems {
    position: relative;
}

.name_gems label {
    position: relative;
    width: 100%;
    font-family: var(--font-handwriting);
    color: rgba(var(--rgb-color-secondary), 0.6);
    font-size: 60px;
    font-weight: lighter;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
}

/* NEW ARRIVALS  */
#newarrivals h2 + h3 {
    font-family: var(--font-body);
    font-size: 16px;
    margin: 0;
    color: #fff;
}

.item_newarrivals {
    padding: 50px 0 0;
}

.item_newarrivals figure > div {
    position: relative;
    overflow: hidden;
}

.item_newarrivals img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all .6s;
    transform: scale(1);
    object-position: top;
}

.item_newarrivals figure:hover img {
    transform: scale(1.05);
}

.item_newarrivals .name_item {
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 1px;
    margin: 25px 0 0;
}

.item_newarrivals figure > div span {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    padding: 10px 13px;
    background: var(--color-secondary);
    display: inline-block;
    width: fit-content;
    text-align: center;
    margin: auto;
    color: #fff;
    font-size: 14px;
    transition: all .6s;
    opacity: 0;
    font-family: var(--font-family);
    text-transform: uppercase;
    cursor: pointer;
}

.item_newarrivals figure > div span:hover {
    background: var(--color-primary);
}

.item_newarrivals .item:hover span {
    bottom: 15px;
    opacity: 1;
}

/* CATALOG  */
.item_catalog {
    padding: 50px 0 0;
}

.item_catalog figure {
    position: relative;
    cursor: pointer;
}

.item_catalog figure > div {
    position: relative;
    overflow: hidden;

}

.item_catalog img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all .6s;
    transform: scale(1);
}

.item_catalog figure:hover img {
    transform: scale(1.05);
}

.item_catalog figcaption {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 25px;
    bottom: 0;
}

.item_catalog figcaption:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.item_catalog figcaption h3 {
    position: relative;
    color: #fff;
    margin: 0;
    font-size: 22px;
    z-index: 2;
    bottom: 0;
    transition: all .6s;
    font-weight: lighter;
}

.item_catalog figure:hover figcaption h3 {
    bottom: 20px;
}

.item_catalog .slider_item4 .item:nth-child(even) {
    margin-top: 50px;
}

/* NEWS  */
#news .box_primary {
    padding: 0
}

.item_news {
    padding: 50px 0 0;
}

.item_news > div {
    position: relative;
    padding: 60px 0;
}

.item_news > div:nth-child(odd) {
    background: var(--color-secondary);
}
.item_news > div:nth-child(even)  [class*=col-xs-]{
   float: right;
}

.item_news img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.item_news .slick-slide {
    padding: 0;
}

.item_news .row_news {
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 100px;
}

.item_news [class*=col-xs-] {
    padding: 0 15px;
}

.item_news [class*=col-xs-]:nth-child(2) {
    text-align: left;
    text-indent: 30px;
}
.certification_logo {
    padding: 100px 0 0;
}
.certification_logo figure {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.06);

}
.certification_logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: auto;
}
.certification_logo .slick-track {
    margin: auto;
}

/**********************************/
/* FOOTER  */
/**********************************/
footer svg {
    display: block;
}
.icon {
    width: 600px;
    margin: auto;
}
.icon > div {
    position: relative;
    display: inline-block;
    padding: 0 15px;
}
.icon span {
    font-size: 30px;
    vertical-align: middle;
    margin-right: 5px;
}
.icon .icon-shipped {
    font-size: 40px;
}
.contact {
    padding: 50px 0 0;
}
.contact > div {
    margin: 0 0 30px;
}
.contact h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    color: #e0e0e0;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: bold;
}
.contact a:hover {
    color: var(--color-secondary);
}
.social a {
    padding: 0 5px;
}
.social span {
    font-size: 26px;
}
.copyright {
    margin: 30px 0 0;
    color: rgba(255,255,255,0.5);
}
.copyright  p {
    margin: 0;
}

