/**
* 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;
}


/*--------------------------------------------------------------
# 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;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
}

.hero-section .item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    background: #ffffff;
}
.hero-section {
    position: relative;
}

.hero-section .caption{
    margin-top: 40px;
}

.hero-section .item.bg-img img {
    width: 100%;
    min-height: 120px;
    object-fit: cover;
    object-position: left;
}

.hero-section .caption {
    z-index: 9;
    position: absolute;
    width: 100%;
    top: 70%;
    -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: #222222;
    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: 85px;
    letter-spacing: 4px;
    color: #309f49;
    background: #ffffffcf;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-section .caption p {
    position: relative;
    position: relative;
    color: #222222;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}

.hero-section .item .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;
}

.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%;
}

.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-img {}

.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;
}

.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%;}
.coming-page .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    /* background: transparent; */
}

.coming-page .logo {
    margin-bottom: 40px;
    display: inline-block;
}

.coming-page .logo img {
    max-width: 368px;
    width: 100%;
}


@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;
}
}

@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;
}

.hero-section .item:before {
    width: 100%;
}
.hero-section .caption {
    width: 100%;
}
}