/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-font: "Saira Condensed", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --third-font: "Roboto", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #D2C1AF;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: #0b0c0c;
    color: var(--black);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 16px;
    color: #0b0c0c;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: #0b0c0c;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 11px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    color: #D2C1AF;
    font-size: 17px;
    font-weight: 600;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    background-color: transparent;
    border: 2px solid #9099a6;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}

.button i {
    margin-right: 12px;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button small {
    font-size: inherit;
    margin-left: 3px;
}

.button:after {
    content: '';
    position: absolute;
    width: calc(100% + 2px);
    height: 2px;
    top: -2px;
    left: -2px;
    z-index: 9;
    background-color: var(--primary-color);
    transform: scale(0);
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.button:before {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: 2px;
    bottom: -2px;
    right: -2px;
    background-color: var(--primary-color);
    transform: scale(0);
    z-index: 1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.button span {
    width: 2px;
    height: calc(100% + 2px);
    top: -2px;
    left: -2px;
    position: absolute;
    background-color: var(--primary-color);
    transform: scale(0);
    z-index: 1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.button span:nth-of-type(2) {
    left: auto;
    right: -2px;
}

.button:hover {
    color: #fff;
}

.button:hover i {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.button:hover::after,
.button:hover::before,
.button:hover span {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

/*=== Header area start ===*/

.header-area {
    padding: 10px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 99;
    background-color: #0b0c0c;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 120px;
}

.header-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    width: 20px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: var(--primary-color);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 3px 0;
}

.hamburger:hover span {
    background: var(--primary-color);
}

/*=== offcanvas start ===*/

.offcanvas {
    width: 300px;
    border: none;
    background: #0b0c0c; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 120px;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--primary-color);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close:hover span {
    background: var(--primary-color);
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.side-menu-link ul li a {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.side-menu-link ul li a:hover {
    color: #d2c18b;
}

.side-menu-link ul li:last-of-type a {
    margin-bottom: 0;
}

/*=== main content start ===*/

.banner-area {
    position: relative;
}

.flex-slider {
    width: 100%;
    position: relative;
}

.flex-slider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 9;
}

.flex-slider .slides {
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.flex-slider .slides li {
    float: left;
    margin-right: -100%;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.flex-slider .flex-direction-nav {
    display: none;
}

.slide-image {
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.flex-active-slide .slide-image {
    animation: zoomout 10s;
    -webkit-animation: zoomout 10s;
}

@keyframes zoomout {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
    }

}

.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.banner-content h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.banner-content h2 span {
    color: #d2c1af;
}

.banner-content p {
    font-size: 16px;
    font-weight: 600;
    color: #D2C1AF;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-content a {
    font-size: 16px;
    font-weight: 600;
    color: #D2C1AF;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.banner-content a span {
    text-decoration: underline;
}

.banner-content a i {
    margin-left: 10px;
}

.banner-content a:hover {
    color: #fff;
}

/*=== precious area start ===*/

.precious-area {
    background-image: url(../images/precious-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 9;
    min-height: 100vh;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.precious-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0b0c0c;
    opacity: .7;
    z-index: -1;
}

.precious-item {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.precious-item h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.precious-item h2 span {
    color: #d2c1af;
}

.precious-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #d2c1af;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.precious-item p {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 400;
    color: #F5F8FF;
    margin-bottom: 40px;
}

.precious-item a {
    width: 197px;
    height: 43px;
}

/*=== gallery area start ===*/

.gallery-area {
    padding: 60px 0 80px;
}

.gallery-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.after-before-box {
    place-content: center;
    position: relative;
    overflow: hidden;
    --position: 50%;
}

.image-container {
    max-width: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider:focus-visible ~ .slider-button {
    
}

.slider-line {
    position: absolute;
    inset: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    font-family: var(--third-font);
    position: absolute;
    background-color: #fff;
    font-size: 16px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/*=== about area start ===*/

.about-area {
    padding: 50px 0;
    background-image: url(../images/about-bg.webp);
    background-repeat: no-repeat;
    background-size: 1370px;
    background-position: top left;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

.about-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0b0c0c;
    opacity: 0.6;
    z-index: -1;
}

.about-item-inner {
    max-width: 513px;
    margin-left: auto;
}

.about-item-inner h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-item-inner h2 span {
    color: #d2c1af;
}

.about-item-inner p {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    color: #F5F8FF;
    margin-bottom: 35px;
}

.about-item-inner p:last-of-type {
    margin-bottom: 0;
}

/*=== service area start ===*/

.service-area {
    padding-top: 95px;
    overflow: hidden;
}

.service-title {
    text-align: center;
    margin-bottom: 100px;
}

.service-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.service-title h2 span {
    color: #d2c1af;
}

.service-area .row {
    --bs-gutter-x: 40px;
}

.service-item {
    background-color: #191b1d;
    margin-bottom: 40px;
}

.service-item-inner {
    padding: 50px 50px 70px;
}

.service-item-inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.service-item-inner h2 i {
    font-size: 18px;
    display: block;
}

.service-item-inner h3 {
    font-size: 52px;
    font-weight: 600;
    color: #D2C1AF;
    text-transform: uppercase;
}

.service-item-inner h3 sup {
    font-size: 24px;
    font-weight: 400;
    vertical-align: top;
    display: inline-block;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    margin-right: -10px;
}

.service-item ul {
    min-height: 395px;
}

.service-item ul li {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    color: #F5F8FF;
    padding: 27px 50px;
    border-top: 1px solid #ebebeb;
}

.service-item-button {
    padding-top: 50px;
}

.service-item-button a {
    width: 100%;
    height: 43px;
}

/*=== proccess area start ===*/

.proccess-area {
    padding-top: 100px;
    padding-bottom: 65px;
}

.proccess-title {
    text-align: center;
    margin-bottom: 40px;
}

.proccess-title h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.proccess-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 160px;
    grid-row-gap: 30px;
    align-items: center;
    position: relative;
}

.proccess-item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #454646;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.proccess-item-image {
    position: relative;
    z-index: 9;
}

.proccess-item-image img {
    width: 100%;
}

.proccess-item-content {
    position: relative;
    z-index: 9;
}

.proccess-item-content h6 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.proccess-item-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #D2C1AF;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.proccess-item-content p {
    font-family: var(--third-font);
    font-size: 16px;
    font-weight: 400;
    color: #F5F8FF;
}

.proccess-item-middle-part {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    right: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #454646;
    transform: translate(50%, -50%) rotate(45deg);
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    -moz-transform: translate(50%, -50%) rotate(45deg);
    -ms-transform: translate(50%, -50%) rotate(45deg);
    -o-transform: translate(50%, -50%) rotate(45deg);
    z-index: 9;
}

.proccess-item-middle-part i {
    font-size: 16px;
    color: #D2C1AF;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.proccess-item-middle-part::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    top: 50%;
    left: 0;
    background-color: #717272;
    transform: rotate(-45deg) translate(-90%, -18px);
    -webkit-transform: rotate(-45deg) translate(-90%, -18px);
    -moz-transform: rotate(-45deg) translate(-90%, -18px);
    -ms-transform: rotate(-45deg) translate(-90%, -18px);
    -o-transform: rotate(-45deg) translate(-90%, -18px);
    z-index: 91;
}

.proccess-item-middle-part::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    top: 50%;
    right: 0px;
    background-color: #717272;
    transform: rotate(-45deg) translate(90%, 18px);
    -webkit-transform: rotate(-45deg) translate(90%, 18px);
    -moz-transform: rotate(-45deg) translate(90%, 18px);
    -ms-transform: rotate(-45deg) translate(90%, 18px);
    -o-transform: rotate(-45deg) translate(90%, 18px);
    z-index: 91;
}

.proccess-item-content-second {
    text-align: right;
}

.proccess-item-second {
    padding-top: 120px;
    text-align: center;
}

.proccess-item-second h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 140px;
}

.proccess-item-second h2 span {
    color: #D2C1AF;
}

.proccess-item-second a {
    font-size: 64px;
    letter-spacing: -2.3px;
    word-spacing: 17px;
    max-width: 960px;
    width: 100%;
    min-height: 120px;
    height: auto;
}

.proccess-item-second a i {
    margin-right: 40px;
}

/*=== footer area start ===*/

.footer-area {
    padding: 80px 0;
    box-shadow: 0px 0px 10px 0px rgba(142.8, 142.8, 142.8, 0.11);
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item img {
    max-width: 192px;
}

.footer-item h3 {
    font-family: var(--third-font);
    font-size: 16px;
    font-weight: 400;
    color: #F5F8FF;
    text-transform: uppercase;
    margin-top: 50px;
}

.footer-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.footer-item p {
    font-family: var(--third-font);
    font-size: 16px;
    font-weight: 400;
    color: #f3f5fb;
    display: flex;
    align-items: center;
}

.footer-item p i {
    color: #D2C1AF;
    margin-right: 16px;
}

.footer-item p a {
    color: #f3f5fb;
}

.footer-item p i:hover {
    color: #fff;
}

.footer-item p a:hover {
    color: #D2C1AF;
}