
@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');

body{
    font-family: "Alegreya Sans", sans-serif;
    background:#fff;
    font-weight:500;
    color:#000;
    overflow-x: hidden;
    }
a:focus{
    outline:none;
}
.container{
    max-width:1170px;
}

a {
    color: #000;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

ol,
ul {
padding: 0;
margin: 0;
list-style-type: none;
}

h1 {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 30px;
    text-transform: uppercase;
    line-height: 83px;
    font-family: "Alegreya Sans SC", sans-serif;
}

h2 {
    font-size: 40px;
    font-weight: 500;
    margin: 0 0 20px;
    text-transform: uppercase;
    line-height: 48px;
    font-family: "Alegreya Sans SC", sans-serif;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 30px;
    text-transform: uppercase;
    font-family: "Alegreya Sans SC", sans-serif;
}

h4 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgb(180, 120, 120);
    font-family: "Alegreya Sans SC", sans-serif;
}

p {
    margin: 0 0 40px;
    color: #000;
    line-height: 26px;
    font-weight: 400;
    font-size: 16px;
}
input {
    margin: 10px 0;
}

.navbar-brand{
    padding:0px;
}

.default_btn a {
    background: transparent;
    padding: 12px 16px;
    color: #fff;
    display: inline-block;
    letter-spacing: 1px;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Alegreya Sans SC", sans-serif;
    font-weight: 400;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    display: inline-block;
}
.default_btn a:nth-child(2){
    margin-left: 10px;
}
.default_btn a:hover {
    background: #fff;
    color: #000;
}

.default_btn.btn_dark a {
    background: transparent;
    padding: 12px 16px;
    color: #000;
    display: inline-block;
    letter-spacing: 1px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Alegreya Sans SC", sans-serif;
    font-weight: 400;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    display: inline-block;
}
.default_btn.btn_dark a:hover {
    background: #000;
    color: #fff;
}

.default_btn.btn_darkbg a {
    background: #000;
    padding: 12px 16px;
    color: #fff;
    display: inline-block;
    letter-spacing: 1px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Alegreya Sans SC", sans-serif;
    font-weight: 400;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    display: inline-block;
}
.default_btn.btn_darkbg a:hover {
    background: #505050;
    color: #fff;
}
.bttn a{
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration:.15s;
  transition-property: all;
  margin-left: 0;
}
.bttn a:hover{
  color: rgba(255, 255, 255, 1);
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration:.15s;
  transition-property: all;
  margin-left: 10px;
}

section {
    padding: 100px 0;
}
img{
    max-width: 100%;
    /* height: 100%; */
}


/*---------------------Header---------------------*/
.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 5px;
}

.marquee-content {
    display: flex;
    animation: marquee 67s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    display: inline;
    padding-right: 0.5em;
    color: rgb(255 255 255 / 40%);
    font-size: 13px;
    font-weight: 400;
}

@keyframes marquee {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-33.333%);
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}


header{
    background: linear-gradient(rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
}
#myHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
header .container{
    padding: 20px 15px;
}
.logo img {
    height: 50px;
    object-fit: contain;
}

.mainmenu {
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: center;
}

header nav {
  position: absolute;
  top: 70px;
  right: 0;
  width: 230px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transform: translateX(400px);
  transition: transform 260ms ease-in-out;
  z-index: 99999999;
  display: none;
}
header nav ol {
  margin: 0;
  padding: 20px;
}
header nav ol li {
  list-style: none;
  padding: 0 10px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.25s;
  text-align: center;
  line-height: 30px;
}
header nav ol li span {
  display: block;
  font-size: 14px;
  color: #353535;
}
header nav ol li a {
  text-decoration: none;
  color: #bbbbbb;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}
header nav ol li a:hover {
  text-decoration: none;
  color: #fff;
}
header input[type=checkbox] {
  display: none;
}
header input[type=checkbox]:checked ~ nav {
  transform: translateX(0%);
  display: block;
}

header .menuIconToggle {
  width: 24px;
  height: 14px;
  margin: 0;
  margin-top: 10px;
}
header .menuIconToggle .hamb-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: all 0.25s;
}
header .menuIconToggle .hor {
  position: relative;
  margin-top: 5px;
}
header .menuIconToggle .dia.p-1 {
  position: relative;
}
header .menuIconToggle .dia.p-2 {
  position: relative;
  margin-top: 5px;
}

header input[type=checkbox]:checked ~ .menuIconToggle .hor {
  opacity: 0;
}
header input[type=checkbox]:checked ~ .menuIconToggle .dia.p-1 {
  transform: rotate(135deg);
  margin-top: 8px;
}
header input[type=checkbox]:checked ~ .menuIconToggle .dia.p-2 {
  transform: rotate(-135deg);
  margin-top: -9px;
}

@media (max-width: 640px) {
  header nav {
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
  }
}


.MobileBottomHeader {
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    z-index: 99999999;
    width: 100%;
    color: #fff;
    justify-content: center;
    gap: 20px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    display: none; 
}
.MobileBottomHeader a {
    color: #fff;
}
.MobileBottomHeader .default_btn a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    height: 40px;
    background: rgb(139, 69, 69);
    border-radius: 2px;
    border: none;
}

/* Hamburger Button */
.menu-btn{
    width: 26px;
    height: 18px;
    position:relative;
    cursor:pointer;
}

.menu-btn span{
    position:absolute;
    left:0;
    width: 26px;
    height: 1px;
    background:#fff;
    border-radius:10px;
    transition:.35s ease;
}

.menu-btn span:nth-child(1){
    top:0;
}

.menu-btn span:nth-child(2){
    top: 8px;
}

.menu-btn span:nth-child(3){
    top: 16px;
}

/* Hamburger Animation */
.menu-btn.active span:nth-child(1){
    transform: translateY(11px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-5px) rotate(-45deg);
}

/* Navigation */
#menu{
    position:fixed;
    bottom: 70px;
    left:0;
    width:100%;
    overflow:hidden;
    max-height:0;
    transition:max-height .4s ease;
    box-shadow:0 -5px 20px rgba(0,0,0,.08);
    border-bottom: 1px solid rgb(255 255 255 / 24%);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
}

#menu.active{
    max-height:400px;
}

#menu ul{
    list-style:none;
    padding: 40px 20px 20px;
}

#menu li{
    border-bottom: none;
    text-align: center;
    margin: 0 0 20px;
}

#menu a{
    display:block;
    padding: 0;
    text-decoration:none;
    color: #ffffff;
    font-weight: 300;
    transition:.3s;
    font-size: 16px;
    text-transform: uppercase;
}

#menu a:hover{
    background:#f7f7f7;
}
/*---------------------Home Banner-------------------*/
.HomeBanner{
    padding: 0;
    height: 100vh;
    max-height: 100vh;
    color: #fff;
  position: relative;
}
.heroArea {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    width: 100%;
    bottom: 0;
    transform: translate(-50%, -50%);
    z-index: 99;
    align-items: center;
}
.heroArea h3 {
  color: #fff;
    margin: 0 0 10px;
}
.hero-text{
    width: 100%;
}
.hero-text h4 {
    color: rgba(255, 255, 255, 0.5);
}
.hero-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    width: 70%;
}
.hero-card{
    overflow: hidden;
    width: 35%;
    position: relative;
    height: 400px;
    background: #000;
    opacity: 0.8;
  overflow: hidden;
}
.hero-card img {
    opacity: 0.7;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: all;
}
.hero-card:hover img {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: all;
    transform: scale(1.1);
}
.card-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

/* ==== Main CSS === */
.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
    min-height: 100vh;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: nnone;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* ==== Slick Slider Css Ruls === */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left /* If RTL Make This Right */;
  height: 100%;
  min-height: 1px;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.Modern-Slider .item.slick-active:nth-child(odd) img {
  animation: slideInfiZoomIn 20s both;
}

.Modern-Slider .item.slick-active:nth-child(even) img {
  animation: slideInfiZoomOut 20s both;
}

/* ==== Slider Image Transition === */
@keyframes slideInfiZoomIn {
  0% {
    transform: scale(1)  translate(0px);
  }
  100% {
    transform: scale(1.5)  translate(60px);
  }
}
@keyframes slideInfiZoomOut {
  0% {
    transform: scale(1.5)  translate(60px);
  }
  100% {
    transform: scale(1)  translate(0px);
  }
}
.slick-slider button {
    display: none !important;
}



.hero-bottom {
    bottom: 0px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}


/*---------------------HomeAbout--------------------*/

.HomeAbout {
    background: #000;
    color: #fff;
    padding-bottom: 0;
    border-top: 4px solid #632937;
}
.AboutArea {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.aboutText{
    width: 100%;
}
.aboutImg{
    width: 100%;
}
.AboutArea p{
    color: rgba(224, 224, 224, 0.7);
}
.AboutArea h3{
    color: rgb(180, 120, 120);
}
/*---------------------WhatWeDo--------------------*/

.WhatArea {
    display: flex;
    justify-content: space-between;
    background: #F9FAFB;
    margin: 0 0 40px;
}
.WhatArea .bttn a{
  color: rgb(180, 120, 120);
}
.WhatArea .bttn a:hover{
  color: rgb(0, 0, 0);
}
.WhatText {
    width: 100%;
    padding: 60px;
    padding-right: 160px;
}
.WhatImg {
    width: 85%;
}
.WhatImg img {
    object-fit: cover;
    object-position: center;
    min-height: 330px;
    max-height: 330px;
    width: 100%;
    height: 100%;
}


/*---------------------HowWeWork---------------------*/

.HowWeWork {
    background: #000;
    color: #fff;
    border-top: 4px solid #632937;
}
.WeWorktArea {
    display: flex;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.HowWeWork p{
    color:rgba(255, 255, 255, 0.50);
}
.Numb {
    width: 150px;
}
.WeWorkText {
    width: 100%;
}
.WorkText h3 {
    color: #fff;
    margin: 0 0 10px;
}
.WorkText p {
    margin: 0;
    font-size: 14px;
    color:rgba(255, 255, 255, 0.50);
}

/*---------------------Landscaping Project---------------------*/
.LandscapingProject{
    padding: 0;
}
.LandscapingProject img{
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}


/*---------------------OurWork---------------------*/
.OurWork{
    background: #fbf9fa;
}
.WorkBox{
    margin: 0 0 20px;
    position: relative;
  background: #000;
  overflow: hidden;
}
.WorkBox img {
    max-height: 370px;
    min-height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: all;
}
.WorkBox:hover img {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: all;
    transform: scale(1.1);
}
.WorkText {
    flex-direction: column;
    display: flex;
    z-index: 10;
    position: absolute;
    bottom: 30px;
    top: auto;
    left: 30px;
}
.default_btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/*---------------------Footer---------------------*/
footer {
    background: #000;
    color: #fff;
    padding: 70px 0 40px;
}
footer a{
    color: rgba(255, 255, 255, 0.50);
}
footer a:hover{
    color: rgb(255, 255, 255);
}
.FootCont {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
}
.MenuBox {
    width: 100%;
}

.LogoArea {
    width: 40%;
}
.FootMenus {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    width: 100%;
}
.LogoArea img {
    height: 60px;
    margin: 0 0 15px;
}
.CopyRights {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 40px;
    margin-top: 60px;
}
footer p {
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    text-transform: uppercase;
    font-size: 11px;
}
footer h4 {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0;
    margin: 0 0 20px;
}
footer ul li{
    line-height: 30px;
    font-weight: 300;
}


/*------------------------------media------------------------------------*/
@media (min-width:1200px) and (max-width: 1300px) {
  .HomeBanner h1 {
    font-size: 52px;
    margin: 0 0 20px;
    line-height: 54px;
    width: 70%; 
  } 
  .hero-card {
    height: 360px;
  }
}
@media (min-width:992px) and (max-width: 1199px) {
  .HomeBanner h1 {
    font-size:48px;
    margin: 0 0 15px;
    line-height: 50px;
    width: 70%; 
  } 
  .hero-card {
    height: 340px;
  }
}
@media (min-width:768px) and (max-width: 991px) {
  .HomeBanner h1 {
    font-size: 40px;
    margin: 0 0 10px;
    line-height: 50px;
    width: 80%;
  } 
  .hero-card {
    height: 340px;
    width: 45%;
  }
  .hero-text p {
    width: 80%;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .AboutArea {
    display: block;
    text-align: center;
  }
  .aboutImg img {
    max-width: 80%;
    margin: 30px auto 0;
  }
  .WhatText {
    width: 100%;
    padding: 30px;
    padding-right: 30px;
  }
  .WorkBox img {
    max-height: 260px;
    min-height: 260px;
  }
  h2 {
    font-size: 32px;
    margin: 0 0 10px;
    line-height: 38px;
  }
  .FootMenus {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  section{
    padding: 60px 0;
  }
  .MobileBottomHeader {
    display: flex; 
  }
  h1 {
    font-size: 38px;
    margin: 0 0 20px;
    line-height: 44px;
    }
  .logo  {
    text-align: center;
  }
  .logo img {
    height: 50px;
    margin: 0 auto;
  }
  .logo a {
    display: block;
  }
  .MobileBottomHeader a i{
    font-size: 24px;
  }
  .heroArea {
    display: block;
    text-align: center;
    top: 45%;
  }
  .hero-text  {
    margin: 0 0 30px;
  }
  .hero-text p {
    width: 70%;
    margin: 0 auto 20px;
  }
  .HomeBanner{
    overflow: hidden;
    height: 120vh;
    max-height: 120vh;
  }
  .img-fill img {
    min-height: 120vh;
    max-height: 120vh;
  }
  .hero-card {
    width: 300px;
    margin: 0 auto;
    height: 220px;
  }
  .card-content {
    left: 0;
    right: 0;
    text-align: center;
  }
  .WhatArea {
    display: block;
    margin: 0 0 30px;
  }
  .WhatImg {
    width: 100%;
  }
  .HowWeWork h2{
    margin: 0 0 40px;
  }
  .WeWorktArea {
    display: block;
  }
  .HowWeWork p {
    margin: 0;
  } 
  .WorkBox img {
    max-height: 400px;
    min-height: 400px;
  }
  .FootCont {
      width: 100%;
      display: contents;
  }
  .LogoArea {
      width: 100%;
      text-align: center;
      margin: 0 0 30px;
  }
  .CopyRights {
    padding: 20px 0 40px;
  }

}
@media (max-width: 600px) {
  h1 {
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 10px;
  }
  h4 {
    letter-spacing: 2px;
  } 
  .hero-text p {
    width: 100%;
    line-height: 25px;
    font-size: 16px;
  }
  .hero-bottom {
    display: block;
  }
  .hero-bottom > span{
    display: block;
    margin: 0 0 5px;
  }
  .hero-bottom span:nth-child(2),
  .hero-bottom span:nth-child(4){
    display: none;
  }
  .WhatImg img {
    min-height: 250px;
    max-height: 250px;
  }
  .WeWorktArea {
    padding: 20px;
    margin: 0 ;
  }
  .WorkBox img {
    max-height: 280px;
    min-height: 280px;
  }
  .FootMenus {
    display: block;
    float: left;
  }
  .MenuBox {
    width: 50%;
    float: left;
    margin: 0 0 30px;
  }
  .CopyRights {
    padding-top: 20px;
    margin-top: 0;
    float: left;
    width: 100%;
  }
}
@media (max-width: 360px) {
}









