/**
* Template Name: One Brick
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Fonts */
:root {
  --primary-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --secondary-font: "Oswald",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --primary-color: #797370; /* Background color for the entire website, including individual sections */
  --secondary-color:  #c5a47e; /* Default color used for the majority of the text content across the entire website */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


 /* Container */
  .onebrick-preloader {
    position: fixed;
    inset: 0;                       /* full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;            /* dark backdrop - change as needed */
    z-index: 9999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Brick wrapper to control size */
  .onebrick {
    width: 100px;                   /* overall size - change to scale */
    height: 100px;
    display: grid;
    place-items: center;
    perspective: 800px;             /* 3D depth */
  }

  /* The brick itself (a rounded rectangle) */
  .onebrick__brick {
    width: 64px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg,#ff6b6b 0%, #ffb86b 100%);
    box-shadow:
      0 10px 18px rgba(2,6,23,0.55),
      0 2px 6px rgba(0,0,0,0.35) inset;
    transform-origin: 50% 50%;
    animation:
      drop 1.2s cubic-bezier(.2,.9,.3,1) infinite,
      wobble 1.8s ease-in-out infinite 0.15s,
      hue 3.5s linear infinite;
  }

  /* little mortar lines to make it look like a brick */
  .onebrick__brick::before,
  .onebrick__brick::after{
    content: "";
    position: absolute;
    width: 36px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.12);
    border-radius: 2px;
    top: 11px;
    mix-blend-mode: multiply;
    pointer-events: none;
  }
  .onebrick__brick::after { top: 22px; opacity: .9; }

  /* shadow beneath brick - scales and fades with bounce */
  .onebrick__shadow {
    width: 64px;
    height: 10px;
    margin-top: 10px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.45), rgba(0,0,0,0.18));
    filter: blur(2px);
    transform-origin: 50% 50%;
    animation: shadowScale 1.2s cubic-bezier(.2,.9,.3,1) infinite;
  }

  /* Label (optional) */
  .onebrick__label {
    margin-top: 12px;
    color: #cbd5e1;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    opacity: .95;
  }

  /* Animations */
  @keyframes drop {
    0%   { transform: translateY(-40px) rotateX(20deg) rotate(-18deg) scale(0.95); }
    45%  { transform: translateY(6px) rotateX(0deg) rotate(4deg) scale(1.02); }
    70%  { transform: translateY(-6px) rotate(-2deg) scale(0.99); }
    100% { transform: translateY(0) rotate(0) scale(1); }
  }

  @keyframes shadowScale {
    0%   { opacity: .08; transform: scaleX(.5) translateY(0); }
    45%  { opacity: .5; transform: scaleX(1.05) translateY(-2px); }
    70%  { opacity: .28; transform: scaleX(.75) translateY(0); }
    100% { opacity: .18; transform: scaleX(.9) translateY(0); }
  }

  @keyframes wobble {
    0%   { transform: rotate(0) translateX(0); }
    10%  { transform: rotate(-2deg) translateX(-2px); }
    30%  { transform: rotate(2deg) translateX(2px); }
    50%  { transform: rotate(-1deg) translateX(-1px); }
    70%  { transform: rotate(1deg) translateX(1px); }
    100% { transform: rotate(0) translateX(0); }
  }

  /* gentle hue shift for interest */
  @keyframes hue {
    0%   { filter: hue-rotate(0deg); }
    50%  { filter: hue-rotate(18deg); }
    100% { filter: hue-rotate(0deg); }
  }

  /* small responsive scale so preloader doesn't dominate tiny screens */
  @media (max-width:420px){
    .onebrick { width: 72px; height: 72px; }
    .onebrick__brick { width: 56px; height: 32px; }
    .onebrick__shadow { width: 56px; height: 8px; }
    .onebrick__label { font-size: 11px; }
  }

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--primary-color);
  background-color: var(--background-color);
  font-family: var(--primary-font);
   line-height: 1.95em;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-weight: 300;
  margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.hero-section .item {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-section {
    position: relative;
}

.hero-section .item:before {
    content: '';
    position: absolute;
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
    background: #000;
    transition: all 1s ease;
}

.hero-section .swiper-slide-active .item:before{
  width: 100%;
}

.hero-section .caption {
    z-index: 9;
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.header-banner-sub-title {
    position: relative;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.header-banner-title {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-section .caption p {
    position: relative;
    padding-left: 70px;
    margin-left: 5px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}

.hero-section .caption p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    background: #fff;
    width: 40px;
    height: 1px;
}

.hero-section  .button-1 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-right: 15px;
}

.button-1 {
    display: inline-block;
    height: auto;
    padding: 14px 35px;
    border: 1px solid #c5b172;
    border-radius: 40px;
    background-color: #c5b172;
    color: #fff;
    text-align: center;
    font-size: 17px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.button-1:hover{
      border: 1px solid #fff;
    background-color: #fff;
    color: #101010;
    transform: translate3d(0px, -6px, 0.01px);
}

.hd-btn {
    padding: 8px 25px;
    background: transparent;
}


/* Initial state for slide text */

.hero-section .swiper-slide-active{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.swiper-slide .fadeUp {
  opacity: 0;
  transform: translateY(20px);
}

/* Animate when slide becomes active */
.swiper-slide-active .fadeUp {
  animation: fadeUp 0.8s forwards;
}

.header-inner {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.header-inner .logo img {
    width: 207px;
    text-align: center;
}

.navmenu > ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navmenu > ul > li > a {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #fff;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Keyframes for fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-pagination-bullet {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 15px;
    height: 15px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #c5b172;
    border: 1px solid #c5b172;
    opacity: 1;
}

.navmenu .dropdown > ul > li {
    padding: 9px 0;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #101010;
    position: relative;
    background-color: transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    display: block;
    -webkit-transition: all 500ms 
ease;
    transition: all 500ms 
ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
    white-space: nowrap;
    clear: both;
}

.navmenu .dropdown > ul > li:hover {
    color: #c5b172;
    padding-left: 5px;
}

.navmenu .dropdown > ul > li > a {
    color: inherit;
}

.about-us {
    padding: 110px 0;
}

.section-subtitle {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 15px;
    color: #c5a47e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title {
    font-size: 50px;
    font-family: "Oswald", sans-serif;
    color: #000;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.list-style1 {
    list-style: none;
    padding: 0;
}

.list-style1 li {
    position: relative;
    display: flex;
    align-items: center;
}

.list-icon {
    display: grid;
}

.list-icon span {
    font-size: 26px;
    color: #c5a47e;
}

.list-text {
    margin-left: 15px;
}

.list-text p {
    font-size: 17px;
    margin: 0;
    color: #797370;
}

.button-2 {
    display: inline-block;
    height: auto;
    padding: 14px 35px;
    border: 1px solid #c5a47e;
    border-radius: 40px;
    background-color: #c5a47e;
    color: #fff;
    text-align: center;
    font-size: 17px;
    transition: border-color 300ms 
ease, transform 300ms 
ease, background-color 300ms 
ease, color 300ms 
ease;
    transform-style: preserve-3d;
}

.button-2:hover {
    color: #fff;
    background: #000;
    border: 1px solid #101010;
    background-color: #101010;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}


.about {
    padding-left: 10%;
}

.about .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.about .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms 
ease;
    max-width: 100%;
}

.bottom-fade {
    width: 100%;
    top: 0;
    height: 100%;
    float: left;
    position: absolute;
     background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
    z-index: 0;
    border-radius: 20px 20px 0 20px;
}

.about .item .icon {
    position: absolute;
    bottom: -6px;
    left: -6px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-top-right-radius: 50%;
    padding: 15px;
}

.about .item .icon::before {
    position: absolute;
    content: "";
    bottom: 6px;
    right: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.about .item .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    left: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.about .item .title {
    position: absolute;
    bottom: 20px;
    padding: 0;
    z-index: 1;
    left: 105px;
}

.about .item .title .img-video-title {
    color: #fff;
    font-size: 21px;
    margin-bottom: 5px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
}

.about .item .icon .arrow {
    position: absolute;
    background: #c5a47e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.about .item .icon .arrow span {
    color: #fff;
    font-size: 27px;
    line-height: 1;
}

.about .item:hover img {
    transform: scale(1.05);
}

.about .item:hover .icon .arrow {
    color: #fff;
    background: #101010;
}

.about .item:hover .icon .arrow {
    transform: scale(1.05);
}

/* services item */
.service-item {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.service-item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    transform: scale(1);
    transition: transform 500ms 
ease;
}

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

.service-item .bottom-fade {
    z-index: 1;
}

.service-item .con {
    position: relative;
    z-index: 2;
    opacity: 0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 85% 15%;
    align-items: center;
}

.service-item .con.active {
    visibility: visible;
    opacity: 1;
}

.service-item .con .title {
    position: absolute;
    bottom: 0px;
    padding: 20px 90px 20px 20px;
    width: 100%;
}

.service-item .con .title h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-item .con .title h4 a {
    color: inherit;
}

.service-item .con .title h6 {
    font-family: "Outfit", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 0;
}

.service-item .con .title h6 span {
    color: #c5a47e;
    margin-right: 2px;
}

.service-item .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #fff;
    border-top-left-radius: 50%;
    padding: 15px;
}

.service-item .icon:before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}

.service-item .icon:after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #fff;
}

.service-item .icon .arrow {
    position: absolute;
    background: #c5a47e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    visibility: visible;
    opacity: 1;
    text-align: -webkit-right;
    transform: rotate(0);
}

.service-item:hover .img img {
    transform: scale(1.05);
}

.service-item:hover .icon .arrow {
    color: #fff;
    background: #101010;
    transform: scale(1.05);
}

/* testimonials */

.testimonials {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}

.testimonials .item {
    position: relative;
    padding: 40px 40px 0px;
    border-radius: 20px 20px 20px 0;
    background: #f9f6f3;
    margin-bottom: 15px
}

.testimonials .item i.bi-quote {
    color: #c5a47e;
    font-size: 60px;
    margin-bottom: 0px
}

.testimonials .item .text h5 {
    border-radius: 20px;
    font-family: "Outfit",sans-serif;
    color: #c5a47e;
    font-weight: 300;
    font-size: 17px
}

.testimonials .item .text p {
    color: #797370
}

.testimonials .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px
}

.testimonials .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden
}

.testimonials .item .info .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.testimonials .item .info h6 {
    color: #101010;
    font-size: 17px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px
}

.testimonials .item .info p {
    font-size: 15px;
    line-height: 1.5em;
    color: #797370;
    margin-bottom: 0
}

.testimonials .item .img-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: #fff
}

.testimonials .item .img-curv .shap-left-top {
    position: absolute;
    top: -22px;
    left: -4px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.testimonials .item .img-curv .shap-left-top svg {
    width: 24px;
    height: 20px
}

.testimonials .item .img-curv .shap-right-bottom {
    position: absolute;
    bottom: -5px;
    right: -21px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.testimonials .item .img-curv .shap-right-bottom svg {
    width: 24px;
    height: 24px
}
.ml-30 {
    margin-left: 30px !important;
}

.testimonials .swiper,
.our-services .swiper{
    padding-bottom: 50px;
}

.footer {
    position: relative;
    background-color: #101010;
    color: #fff;
}

.mb-30 {
    margin-bottom: 30px;
}

.footer-logo {
    width: 216px;
    margin-bottom: 15px;
}

.footer .top {
    padding: 100px 0 20px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer .bottom p {
    margin: 0;
}

.footer .top .social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border-radius: 100%;
    font-size: 17px;
    color: #101010;
    background: #c5a47e;
}

.social-icons a {
    color: #000;
}

.social-icons ul {
    margin: 0;
}

.ft-menu-wrap {
    display: flex;
    justify-content: center;
}

.footer .top .item h3 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ft-menu > li {
    margin-bottom: 5px;
}
.ft-menu > li:hover {
    color: #c5a47e;
}
.ft-menu {
    list-style: none;
    padding: 0;
}

.ft-menu > li > a {
    color: inherit;
}
.ft-email-form .form-control {
    height: 60px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #fff;
    outline: none;
    padding: 0 90px 0 20px;
    border: 1px solid #c5a47e;
    border-radius: 30px;
    margin-bottom: 15px;
    line-height: 1.5em;
    font-family: "Outfit", sans-serif;
}

.ft-email-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.form-input-group {
    position: relative;
}

.ft-email-form button {
    height: 50px;
    width: 50px;
    border: none;
    background: #c5a47e;
    font-size: 16px;
    font-weight: 700;
    color: #1b1b1b;
    outline: none;
    padding: 0px 16px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 5px;
    border-radius: 100%;
    line-height: 55px;
    outline: none;
    transform: rotate(0);
    -webkit-transition: all 0.7s 
linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s 
linear;
}

.ft-email-form:hover button {
    background: #fff;
    color: #1b1b1b;
    outline: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.7s 
linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s 
linear;
}

#scroll-top {
position: fixed;
bottom: 10%;
right: 2%;
width: 50px;
height: 50px;
background: conic-gradient(#0d6efd 0%, #e0e0e0 0%);
color: white;
border-radius: 50%; / Make it circular */
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
cursor: pointer;
z-index: 9999;
transition: transform 0.3s ease, background 0.2s linear;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#scroll-top {
transform: scale(1.1);
}

/* Icon inside button */
#scroll-top i {
pointer-events: none;
}

.about-content .section-title span {
    color: #c5b172;
}

.full-width-banner {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    padding: 110px 0;
}

.full-width-banner:before {
    content: "";
    background: linear-gradient(108deg, #000000 40%, #00000061 60%);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    top: 0;
    opacity: 0.8;
}

.full-width-banner .about {
    padding: 0;
}

.full-width-banner .about .section-title {
    color: #fff;
}
.main-services .upper-box {
    position: relative;
    padding: 85px 0 270px;
    background-attachment: fixed;
}

.main-services .service-slider {
    position: relative;
    margin-top: -270px;
    padding-bottom: 100px;
}

.main-services .upper-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    content: "";
    opacity: .5;
}

.main-services .upper-box .section-title {
    color: #fff;
}

.why-choose {
    padding-bottom: 110px;
}

.why-choose-img .img2 {
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: transform 500ms 
ease;
    border-radius: 20px;
}

.why-choose-img .img2 .text {
    position: absolute;
    top: 50%;
    right: -5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    width: auto;
    padding: 12px 24px;
    border-radius: 30px 30px 0 0;
    -webkit-transform: rotate(-90deg) scaleX(-1) translateX(50%) translateY(-100%);
    -ms-transform: rotate(-90deg) scaleX(-1) translateX(50%) translateY(-100%);
    transform: rotate(-90deg) scaleX(-1) translateX(50%) translateY(-100%);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    background: #fff;
}

.why-choose-img .img2 .text h4 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 15px;
    color: #c5a47e;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.why-choose-img .img2  .shap-left-bottom {
    position: absolute;
    bottom: 0px;
    left: -29px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.why-choose-img .img2 .shap-right-bottom {
    position: absolute;
    bottom: 0px;
    right: -28px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.why-choose-img .img2 .shap-right-bottom svg {
    width: 30px;
    height: 30px;
}

.why-choose-img .img2 .shap-left-bottom svg {
    width: 30px;
    height: 30px;
}

.why-content {padding-left: 15%;}

/* .swiper-button-next, .swiper-button-prev {
    color: #000000;
    background: #fff;
    font-size: 20px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    text-align: center;
    box-shadow: 0 0 5px #cdbebe;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
} */

.lp-banner {
    background: #101010;
}

.lp-banner .bg-img {
    height: 70vh;
    position: relative;
    padding: 120px 0;
}

.lp-banner .caption {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 9;
}

.lp-banner .bg-img:before {
    opacity: 0.5;
    background: #000;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.lp-banner .header-banner-sub-title {
    color: #c5a47e;
}

.lp-banner .header-banner-title {
    font-size: 50px;
}

/* about page css */

.about-page .why-choose {
    padding-bottom: 110px;
}


.why-choose.core-balue .why-content {
    padding-left: 0;
}

.why-choose.core-balue .why-choose-img {
    height: 100%;
    box-shadow: 0 0 10px #aca2a2;
    border-radius: 20px;
}

.why-choose.core-balue .img2 {
    height: 100%;
}

.why-choose.core-balue .img2 img {
    object-fit: cover;
    height: 100%;
}

.why-choose.core-balue li {
    align-items: start;
}

.why-choose.core-balue li .list-icon span {
    font-size: 40px;
}

.why-choose.core-balue li h4 {
    margin-bottom: 0;
    font-size: 20px;
}

.why-choose.core-balue li p {
    font-size: 15px;
}

.why-choose.core-balue li {
    margin-bottom: 8px;
}


/* contact us */

.contact-info-card {
    margin-top: -120px;
}

.con-box {
    background: #f9f6f3;
    padding: 45px 30px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms 
ease, transform 300ms 
ease, color 300ms 
ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.con-box:hover {
    background: #c5a47e;
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.con-box .icon {
    font-size: 45px;
    color: #c5a47e;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}

.con-box:hover .icon {
    color: #fff;
}

.con-box .arx-info-box-title {
    font-size: 21px;
    color: #101010;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.con-box:hover .arx-info-box-title {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}

.con-box p {
    color: #797370;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 15px;
}

.con-box:hover p {
    color: #fff;
}

.con-box .numb {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: rgba(0, 0, 0, 0.15);
    opacity: .2;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}

.con-box:hover .numb {
    color: rgba(0, 0, 0, 0.2);
}

.contact-form {
    padding-right: 100px;
    margin-bottom: 30px;
}

.contact-form form {}

.contact-form form .filed-group {
    margin-bottom: 15px;
}

.contact-form form .filed-group .form-control {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 18.5px 20px;
    height: auto;
    background-color: #f9f6f3;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #797370;
    background-image: none;
    border: none;
    border-radius: 30px;
}

::-webkit-input-placeholder {
    color: #797370;
    /* font-family: "Outfit", sans-serif; */
    font-size: 17px;
    font-weight: 300;
}

.contact-form form .filed-group textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 18.5px 20px;
    height: auto;
    background-color: #f9f6f3;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #797370;
    background-image: none;
    border: none;
    border-radius: 30px;
    max-height: 120px;
}

.location-box {
    border-radius: 15px;
    overflow: hidden;
}

.location-box iframe {
    width: 100%;
    border-radius: 16px;
}

/* Our Services */
.our-services {
    padding: 80px 0;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
    padding: 80px 0;
}

.portfolio .section-title-wrap {
    margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

.full-width-banner .quiery-form {
    position: relative;
    padding: 0;
    margin: 0;
}

.full-width-banner .quiery-form .form-btn {
    text-align: center;
}

.full-width-banner .quiery-form h3 {
    text-align: center;
    /* color: #fff; */
    text-transform: uppercase;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

@media(min-width:990px){
  .navmenu .dropdown > ul {
    position: absolute;
    width: 260px;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    width: 210px;
    padding: 20px 30px;
    border-radius: 15px;
    border: 0;
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-shadow: 0 16px 50px rgb(27 27 27 / 7%);
}

.navmenu .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrolled .header {
    background: #fff;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
}

.scrolled .navmenu > ul > li > a {
    color: #000;
}

.scrolled .navmenu > ul > li > a.active {
    color: #c5a47e;
}

.scrolled .hd-btn {
    color: #000;
}
}

@media(min-width:1200px){
    .container {
        max-width: 1140px !important;
    }
}


@media(max-width:991px){
  .header-banner-title {
    font-size: 40px;
}

.navmenu {
    position: absolute;
    background: #1b1b1b;
    top: 90px;
    right: -20px;
    width: 75%;
    z-index: 50;
    max-height: 100vh;
    min-height: 100vh;
    padding: 50px 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 200px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s 
ease-in-out;
    transition: all 0.4s 
ease-in-out;
}


.mobile-nav-active .navmenu {
    opacity: 1;
    right: 0;
    visibility: visible;
}

.header {
    background: #1b1b1b;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 10;
    /* padding: 0 20px 0 200px; */
    -webkit-transform: translate3d(0, 0, 0);
}

.navmenu > ul {
    flex-direction: column;
}

.navmenu > ul > li > a {
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.25em;
    color: #fff;
    display: block;
    letter-spacing: 2px;
    margin: 11px 0 0 0;
    padding: 0 0 11px 0;
    list-style: none;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-transform: uppercase;
    padding-left: 10px;
}
.navmenu .dropdown > ul {
    width: 100%;
    display: none;
}
.navmenu .dropdown > ul {
    background: #fff;
}

.navmenu > ul > li > a > i {
    float: right;
}

.mobile-nav-toggle {
    font-size: 32px;
    margin-left: 16px;
}
.contact-form {
    padding-right: 30px;
}

}

@media(max-width:767px){
  .hd-btn {
    display: none;
}
.about {
    padding: 0;
    margin-top: 30px;
}
.section-title {
    font-size: 38px;
}
.why-content {padding-left: 0;
}

.ft-menu-wrap {
    justify-content: start;
}
.contact-form {
    padding-right: 0px;
}

.testimonials {
    padding: 80px 0;
}

.main-services .service-slider {
    padding-bottom: 0;
}

.about-us {
    padding-bottom: 0;
}

.about-us {
    padding: 80px 0 0 0;
}

.hero-section .caption {
    text-align: center;
}

.hero-section .caption p {
    padding-left: 10px;
}

.hero-section .caption p:after {
    display: none;
}

.hero-section .item {
    height: 90vh;
}
.hero-section .btn-wrap .button-1 {
    margin-bottom: 20px;
}
.why-choose-img {
    margin-bottom: 20px;
}
.full-width-banner .quiery-form {
    margin-top: 30px;
}

.service-page .why-choose .row {
    flex-direction: column-reverse;
}
.about-page .why-choose-img {
    margin-bottom: 0;
    margin-top: 80px;
}

.about-page .why-choose {
    padding-bottom: 80px;
}
.about-us {
    padding-bottom: 80px;
}
.why-choose.core-balue .why-choose-img {
    height: auto;
}
}

@media(max-width:480px){
.hero-section .btn-wrap {
    text-align: center;
}

.hero-section {
    padding-top: 80px;
}

.header-banner-title {
    font-size: 32px;
}

.section-title {
    font-size: 30px;
}

.lp-banner .bg-img {
    height: 50vh;
    /* padding-bottom: 80px; */
    /* padding-top: 105px; */
}

.lp-banner .caption {
    -webkit-transform: translate(0%, -26%);
    transform: translate(0%, -26%);
}

.full-width-banner .about {
    text-align: center;
}

.full-width-banner {
    padding: 60px 0;
}
.about-page .full-width-banner .about {
    margin: 0;
}
}