/*** Color /***/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  overflow-x: hidden;
  color: #1E1E1E;
}
main{
  margin: 0;
  overflow: hidden;
}
.container {
  max-width: 1180px;
  padding: 0 20px;
}

a {
  color: #001a53;
  transition: all ease 0.5s;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

a:not([href]):not([class]) {
  color: #c6c6c6;
}
a:not([href]):not([class]):hover {
  color: #c6c6c6;
}

a:hover,
a:active,
a:focus {
  color: #001a73;
  outline: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}
h2{
  font-weight: 300;
}
p {
  padding: 0;
  margin: 0;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.48px;
  font-weight: 200;
}

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

/** Mixin **/
.primary-btn {
  border-radius: 3px;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 600;
  padding: 16px 30px;
  position: relative;
  transition: all ease 0.5s;
  letter-spacing: 0.32px;
  box-shadow: none;
  background: #ff841b;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-btn:hover {
  background: #ff941b;
  color: #ffffff;
  box-shadow: none;
}

.btn-link {
  color: #B7946F;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline;
}

.btn-link:hover,
.btn-link:focus {
  color: #006633;
}

.form-group {
  margin-bottom: 30px;
}
.form-group .form-control {
  background: #ffffff;
  border: 1px solid #eaeaea;
  height: 54px;
  padding: 16px;
  font-size: 16px;
  line-height: 20px;
  color: #676767;
  box-shadow: none;
  outline: none;
}
.form-group textarea.form-control {
  height: auto;
  resize: none;
}

/** header **/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  padding: 15px 0;
}
.header.is-sticky{
  position: fixed;
  background: #ffffff;
  top: 0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
} 
.header.header-hide{
  animation: slideUp 0.35s ease-out;
  transform: translateY(-100%)
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
      transform: translateY(0);
  }
}
@keyframes slideUp{
  0% {
    transform: translateY(0%);
  }
  100% {
      transform: translateY(-100%) !important;
  }
}
header nav .nav-menu {
  margin: 0 0 0 auto;
}
header .navbar-brand{
  display: flex;
  align-items: center;
}
header .navbar-brand img{
  max-width: 180px;
}
header nav .nav-menu li {
  padding: 0 0 0 60px;
  line-height: 35px;
}
header nav .nav-menu li a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 20px;
  color: #B7946F;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
header nav .nav-menu li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 8px;
  left: 0;
  background: #B7946F;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.5s ease-in-out 0s;
}
header nav .nav-menu li a:hover::before, header nav .nav-menu li.active a::before {
  visibility: visible;
  transform: scaleX(1);
}

header .login-btn {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: 3px;
  padding: 10px 13px;
  position: relative;
  border: 1px solid transparent;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: 65px;
  max-width: 170px;
}

header .login-btn::before {
  border-radius: 100px;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg,rgb(255, 255, 255),rgba(183, 148, 111, 0)); 
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; 
  padding: 1px;
}

header .login-btn:hover {
  background: #fff;
  border: 1px solid #f9f9f9;
  color: #006633;
}

/** hero section **/
.hero-section {
  width: 100%;
  height: 100vh;
  max-height: 835px;
  position: relative;
  border-bottom: 4px solid #B7946F;
}
.hero-section::before, .portfolio-section::before{
  content: "";
  background: linear-gradient(0deg, #F3EDE7 39.98%, rgba(243, 237, 231, 0.00) 95.47%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
  max-height: 435px;
  z-index: -1;
}

.hero-video-clipped-shapelogo::before{
  content: "";
  background: url('../assets/video-line-shape.svg')no-repeat;
  width: 460px;
  height: 460px;
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 250px;
  z-index: 1;
  opacity: 0.3;
}

.hero-section .hero-container {
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
}
.hero-text-contant{
  width: 660px;
  max-width: 100%;
}
.hero-text-contant h1 {
  padding: 0 0 10px 0;
  font-size: 43px;
  line-height: 65px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
}

.hero-text-contant h1 span {
  position: relative;
}

.hero-text-contant h1 span::before {
  content: "";
  border-radius: 4px;
  margin: 0 auto;
  background: #006633;
  display: inline-block;
  height: 4px;
  width: 100%;
  max-width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0;
}

.hero-text-contant h3 {
  color: #000;
  max-width: 740px;
  font-size: 33px;
  line-height: 53px;
  font-weight: 300;
}

.hero-text-contant .btn-link {
  font-size: 19px;
  line-height: 22px;
  letter-spacing: 4.75px;
  margin-top: 32px;
}

.hero-container .video-block {
  position: absolute;
  top: 0;
  right: 0;
}

.hero-video-clipped {
  min-height: 100vh;
  max-height: 100vh;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 795px;
  margin: 0 0 0 auto;
  position: relative;
  bottom: 4px;
}

.hero-video-clipped::before {
  content: "";
  background: linear-gradient(206deg, rgba(183, 148, 111, 0.42) 44.73%, rgba(0, 102, 51, 0.42) 85.88%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-video-clipped video {
  position: relative;
  left: -50%;
}
.hero-video-clipped:after {
  content: "";
  width: 12px;
  height: 125%;
  position: absolute;
  background: linear-gradient(180deg, #063 0%, #00341A 100%);;
}


/** section header **/
.section-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-header .section-title-name h2 {
  color: #000;
  font-size: 32px;
  line-height: 40px;
  padding-bottom: 18px;
  font-weight: 300;
  letter-spacing: 0.96px;
}

.section-text-link {
  color: #B7946F;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 3px;
  text-decoration: underline;
  text-transform: uppercase;
  position: relative;
}
.section-text-link svg{
  position: absolute;
  top: 4px;
  right: -16px;
  transition: all ease 0.3s;
}
.section-text-link:hover,
.section-text-link:focus {
  color: #006633;
}
.section-text-link:hover svg{
  transform: rotate(45deg);
}

/** typography **/
.title h4,
.title h4 a {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #1e1e1e;
  text-transform: capitalize;
}

.title h4 a:hover,
.title h5 a:hover {
  color: #00341A;
}

.title h5,
.title h5 a {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.54px;
  font-weight: 400;
  color: #1e1e1e;
}

/** our approach section **/
.our-approach-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
}

.our-approach-section::before {
  background: linear-gradient(0deg, #F3EDE7 39.98%, rgba(243, 237, 231, 0.00) 95.47%);
  transform: rotate(180deg);
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.our-approach-section .section-header {
  padding-bottom: 48px;
}

.approach-items-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  position: relative;
  z-index: 1;
}

.our-approach-section .section-header .section-heading {
  padding-bottom: 34px;
}

.our-approach-section .approach-col-contant .img-block {
  height: 255px;
  max-height: 255px;
  background: transparent;
  margin-bottom: 20px;
  position: relative;
}

.our-approach-section .approach-col-contant .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: bottom left;
}

.our-approach-section .approach-col-contant .img-block::before {
  content: "";
  background: rgba(183, 148, 111, 0.30);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: bottom left;
  z-index: 1;
}

.our-approach-section .approach-col-contant .img-block::after {
  content: "";
  background: linear-gradient(118deg, #063 1.08%, #00341A 99.48%);;
  position: absolute;
  bottom: 0;
  top: -5px;
  left: 20px;
  right: -5px;
  z-index: -1;
  height: 95%;
  width: 95%;
}

.our-approach-section .approach-col-contant .title {
  padding-bottom: 8px;
}

.our-approach-section .approach-col-contant:hover .img-block img,
.our-approach-section .approach-col-contant:hover .img-block::before  {
  transform: scale(1);
}

/** our team section **/

.our-team-section {
  padding: 105px 0;
  background: #fff;
  position: relative;
  border-bottom: 4px solid #B7946F;
  border-top: 4px solid #B7946F;
}

.our-team-section::before {
  background:url(../assets/team-bg-img.png) no-repeat 0 0;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.our-team-section .section-header {
  padding-bottom: 32px;
}

.our-team-section .section-header .section-title-name h2 {
  color: #D9D9D9;
}

.our-team-section .section-header .section-text-link:hover {
  color: #E8E8E8;
}

.our-team-contant {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.our-team-contant .img-block {
  height: 441px;
  max-height: 441px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.our-team-contant .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: top right;
}

.our-team-contant .img-block::before {
  content: "";
  background: rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: top right;
  z-index: 1;
}

.our-team-contant .img-block::after {
  content: "";
  background: linear-gradient(118deg, #2E251C 1.08%, #705C47 99.48%);
  position: absolute;
  top: 20px;
  left: 30px;
  right: -10px;
  z-index: -1;
  bottom: -3px;
}

.our-team-contant:hover .img-block img,
.our-team-contant:hover .img-block::before  {
  transform: scale(1);
}




/* slick slider */
.slick-list {
  margin: 0 -15px !important;
}
.slick-slide {
  margin: 0 35px;
}
.slick-slide img {
    width: 100%;
}
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 38px;
  text-align: center;
}
.slick-dots li button {
  background-color: #E8E8E8;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  margin-right: 11px;
  margin-left: 11px;
  font-size: 0;
  box-shadow: none;
  border: none;
  padding: 0;
  outline: none;
}
.slick-dots li.slick-active button {
  background-color: #B4B4B4;
}

.slick-slider button.slick-prev,
.slick-slider button.slick-next {
  display: none !important;
}

.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0px;
  position: relative;
  z-index: 1;
}

.slick-arrow button {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.slick-arrow button.slick-disabled svg path {
  fill: #DFDFDF;
}

.slick-arrow #prev-btn {
  position: absolute;
  left: 0;
}

.slick-arrow #next-btn {
  position: absolute;
  right: 0;
}

/** our media section **/
.our-media-section {
  padding: 40px 0 60px;
  background: #fff;
  position: relative;
  margin-top: 150px;
}
.our-media-section::before, .our-media-section::after{
  content: "";
  background: url('../assets/border-line.png')no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-position: center center;
  background-size: 100%;
}
.our-media-section::after{
  bottom: 0;
  top: inherit;
}
.our-media-section .section-header{
  text-align: left;
  padding-left: 20px;
}
.our-media-section .slick-dots{
  bottom: -70px;
  top: inherit;
}
.our-media-section .slick-arrow{
  margin: 62px auto 0px;
}
.media-box {
  padding: 21px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: all ease 0.5s;
  position: relative;
}
.our-media-section .item:hover .media-box:before,
.our-media-section .slick-item:hover .media-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgb(183, 148, 111, 0),rgba(228, 215, 201, 25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px 1px 0px 1px;
}
.our-media-section .item .media-box:after,
.our-media-section .slick-item .media-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(183, 148, 111, 0.00);
  background: linear-gradient(180deg, #F3EDE7 54.03%, rgba(243, 237, 231, 0.00) 108.72%);
  opacity: 0;
  transition: all ease 0.5s;
}
.our-media-section .item:hover .media-box:after,
.our-media-section .slick-item:hover .media-box:after {
  opacity: 1;
}
.our-media-section .slick-item:hover  .media-box .img-block:after{
  opacity: 0;
}
/* .our-media-section .item:hover .media-box,
.our-media-section .slick-item:hover .media-box {
  padding: 21px;
} */

.media-box .img-block {
  height: 175px;
  max-height: 175px;
  background: transparent;
  position: relative;
}

.media-box .img-block:after {
  content: "";
  background: rgba(183, 148, 111, 0.25);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media-box .img-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.media-box .media-tag {
  color: #FFF;
  font-size: 10px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.5px;
  background: linear-gradient(90deg, #063 5.75%, #00341A 125.29%);
  padding: 3px 13px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all ease 0.5s;
  text-transform: uppercase;
}
.our-media-section .item:hover  .media-tag,
.our-media-section .slick-item:hover  .media-tag {
  opacity: 1;
}
.media-box .media-contant {
  padding: 23px 0;
  z-index: 2;
}

.media-box .media-contant .medid-label-date {
  padding-bottom: 15px;
  color: #929292;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 3px;
}

.media-box .media-contant .title {
  padding-bottom: 12px;
}

.media-box .media-contant .description {
  padding-bottom: 11px;
}
.media-box .media-contant .description p{
  font-weight: 200;
}
.media-box .media-contant .btn-link {
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
}

/* portfolio **/
.portfolio-section{
  position: relative;
  padding-top: 170px;
}
.portfolio-section .section-header{
  text-align: left;
  padding-left: 20px;
}
.portfolio-section:after{
  content: "";
  background: url('../assets/logo-shape.svg')no-repeat;
  width: 400px;
  height: 400px;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 30px;
}
.portfolio-section .portfolio-box .img-block{
  width: 100%;
  height: 533px;
  overflow: hidden;
  position: relative;
}
.portfolio-section .portfolio-box .img-block:before {
  content: "";
  background: rgba(183, 148, 111, 0.30);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: top right;
}
.portfolio-section .slick-slide {
    margin: 0 15px;
}
.portfolio-section .slick-carousel-portfolio:after{
  content: "";
  background: linear-gradient(118deg, #063 1.08%, #00341A 99.48%);
  position: absolute;
  bottom: 0;
  top: -20px;
  right: -20px;
  z-index: -1;
  width: 90%;
  height: 89%;
  left: 13%;
}
.portfolio-section .slick-carousel-portfolio:before{
  content: "";
  background: url('../assets/slider-pattern.svg')no-repeat;
  width: 135px;
  height: 65px;
  background-size: cover;
  position: absolute;
  right: -38px;
  bottom: 27px;
}
.portfolio-section .line-draw{
  background: linear-gradient(180deg, rgba(183, 148, 111, 0.30) -0.15%, rgba(183, 148, 111, 0.00) 100%);
  transform: rotate(35deg);
  width: 8px;
  height: 1000px;
  background-size: cover;
  position: absolute;
  right: 0;
  left: 0;
  top: -92px;
  margin: 0 auto;
  z-index: -1;
}
.portfolio-section .portfolio-box .img-block img{
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transform: scale(0.975);
  transition: 0.5s ease transform;
  transform-origin: top right;
}

.portfolio-section .portfolio-box:hover .img-block img,
.portfolio-section .portfolio-box:hover .img-block:before  {
  transform: scale(1);
}

.portfolio-box .img-block .portfolio-logo{
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 1;
}
.portfolio-box .portfolio-contant{
  margin: 0;
  padding-left: 15px;
}
.portfolio-box .portfolio-contant p{
  font-size: 13px;
  font-weight: 300;
  color: #1E1E1E;
  font-style: italic;
  letter-spacing: 2.47px;
}

#slickportfolioCarousel .slick-dots {
  text-align: left;
  margin: 0 55px;
  top: 26px;
  z-index: 1;
  justify-content: flex-start;
}

.portfolio-slick-arrow {
  margin: 18px 0 0 8px;
}

/* footer **/
footer {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 90px 0 0;
}
footer::before {
  content: "";
  background: linear-gradient(0deg, #F3EDE7 39.98%, rgba(243, 237, 231, 0.00) 95.47%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
footer .container {
  position: relative;
}
footer .footer-logo {
  cursor: pointer;
}
footer .footer-logo img{
  max-width: 260px;
}
.footer-inner{
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.footer-left{
  width: 40%;
  text-align: left;
}
.footer-left p{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #B7946F;
  margin-top: 27px;
}
.footer-right{
  width: 60%;
  display: flex;
  flex-direction: row;
}
.footer-right .contact-us{
  text-align: left;
  padding-left: 100px;
}
.footer-right .contact-us h6{
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 28px;
  color: #B7946F;
}
.footer-right .contact-us h5{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-bottom: 28px;
  color: #1E1E1E;
}
.footer-right .contact-us p{
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-bottom: 28px;
  color: #1E1E1E;
}
.footer-right .contact-us ul li img{
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 1px solid #B7946F;
  padding: 5px;
  margin-right: 10px;
}
.footer-right .contact-us ul li{
  margin-bottom: 20px;
}
.footer-right .contact-us ul li:last-child{
  margin-bottom: 0;
}
.footer-right .contact-us ul li a{
  font-size: 16px;
  color: #B7946F;
  letter-spacing: 0.48px;
  font-weight: 400;
}
.footer-right .contact-us ul li a:hover{
  color: #0C2D1C;
}
footer nav {
  text-align: left;
  padding-left: 100px;
}
footer nav .nav-menu li{
  margin-bottom: 32px;
}
footer nav .nav-menu li a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5.4px;
  color: #B7946F;
  text-transform: uppercase;
  white-space: nowrap;
}
footer nav .nav-menu li a:hover{
  color: #0C2D1C;
}
footer .bottom-footer{
  background: #0C2D1C;
  padding: 18px 0;
  position: relative;
}
footer .bottom-footer ul{
  display: flex;
  justify-content: center;
}
footer .bottom-footer ul li{
  margin: 0 15px;
}
footer .bottom-footer ul li a{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.62;
  color: #B7946F;
}
footer .bottom-footer ul li a:hover{
  opacity: 1;
}
/* portfolio page **/
.inner-page-body header .login-btn, .header.is-sticky .login-btn{
  color: #000;
}
.inner-page-body header .login-btn:hover, .header.is-sticky .login-btn:hover{
  background: #fff3e7;  
}

.inner-page-body header .login-btn::before, .header.is-sticky .login-btn:before {
  border-radius: 100px;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg,rgba(183, 148, 111, 61%), rgb(244, 238, 232, 100%)); 
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; 
  padding: 1px;
}
.green-bg{
  background: url('../assets/team-bg-img.png')no-repeat;
  background-size: cover;
  width: 100%;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #B7946F;
  border-bottom: 4px solid #B7946F;
}

.green-bg .section-text-link:hover, .green-bg h1, .green-bg h2{
  color: #ffffff;
}
.inner-banner{
  margin-top: 86px;
  display: flex;
  align-items: center;
  height: 195px;
}
.inner-banner::before{
  content: "";
  width: 165px;
  height: 165px;
  background: url('../assets/inner-logo-shape.png')no-repeat;
  mix-blend-mode: soft-light;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-banner::after{
  content: "";
  background: url('../assets/inner-banner-line.png');
  width: 660px;
  height: 310px;
  position: absolute;
  right: -290px;
  left: 0;
  top: -120px;
  margin: 0 auto;
  mix-blend-mode: soft-light;
}
.inner-banner h1{
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.72px;
}
.inner-banner p{
  color: rgba(255, 255, 255, 0.71);
  font-size: 21px;
  margin-top: 5px;
  letter-spacing: 0.63px;
}
.current-portfolio{
  padding-top: 92px;
  position: relative;
}
.current-portfolio:before, .our-team-list:before, .approach-team:before{
  background: linear-gradient(0deg, #F3EDE7 39.98%, rgba(243, 237, 231, 0.00) 95.47%);
  transform: rotate(180deg);
  height: 50%;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.current-portfolio:after{
  background: linear-gradient(0deg, rgba(243, 237, 231, 0.00) 39.98%, #F3EDE7 95.47%);
  transform: rotate(180deg);
  content: "";
  position: absolute;
  height: 50%;
  bottom: -90px;
  left: 0;
  right: 0;
  z-index: -1;
}
.current-portfolio h2{
  margin-bottom: 93px;
  font-size: 32px;
}
.portfolio-list{
  margin-bottom: 155px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.portfolio-list:last-child{
  margin-bottom: 0;
}
/* .portfolio-list .portfolio-image{
  width: 50%;
  position: relative;
}
.portfolio-list .portfolio-image::before{
  content: "";
  width: 500px;
  height: 375px;
  background: linear-gradient(118deg, #063 1.08%, #00341A 99.48%);
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 0;
} */
.portfolio-image{
  padding-top: 30%;
  width: 45%;
  background: linear-gradient(118deg, #063 1.08%, #00341A 99.48%);
  position: relative;
  height: 0px;
  left: 20px;
  top: -20px;
  min-height: 375px;
}
.portfolio-image .img-block > img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  bottom: 0;
  left: 0;
}
.portfolio-list .portfolio-image::after{
  content: "";
  background: url('../assets/slider-pattern.svg')no-repeat;
  width: 135px;
  height: 65px;
  background-size: cover;
  position: absolute;
  right: -15px;
  bottom: -55px;
}
.portfolio-list .portfolio-image .img-block{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  bottom: -20px;
  left: -20px;
  transform: scale(1);
  transition: all ease 0.5s;
}
.portfolio-list .portfolio-image .img-block:after{
  content: "";
  background: rgba(183, 148, 111, 0.30);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.portfolio-list:hover .portfolio-image .img-block{
  transform: scale(1.05);
}
.portfolio-list .portfolio-image .portfolio-logo{
  position: absolute;
  bottom: 0px;
  right: 20px;
  z-index: 11;
}
.portfolio-list .portfolio-content{
  padding-left: 95px;
  width: 55%;
  overflow: auto;
}
.teammodal .portfolio-list .portfolio-content{
  height: 500px;
}
.portfolio-list .portfolio-content h3{
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 17px;
}
.portfolio-list .portfolio-content p{
  margin-bottom: 26px;
}
.portfolio-list:nth-child(odd) .portfolio-image{
  order: 2;
}
.portfolio-list:nth-child(odd) .portfolio-content{
  order: 1;
  padding-right: 95px;
  padding-left: 0;
}
.portfolio-list:nth-child(odd) .portfolio-image .portfolio-logo{
  left: 0;
  right: 0;
}
.past-portfolio{
  padding: 83px 0;
  position: relative;
  min-height: 358px;
  margin-top: 90px;
}
.past-portfolio .map-img{
  position: absolute;
  top: 0;
  right: 0;
}
.logos-portfolio{
  width: 60%;
  margin-top: 40px;
  position: relative;
}
.logos-portfolio img{
  max-height: 100px;
}
.logos-portfolio .slick-slide{
  margin: 0 40px;
}
.logos-portfolio .slick-list{
  position: relative;
}
.logos-portfolio .slick-list::before, .logos-portfolio .slick-list::after{
  content: "";
  position: absolute;
  width: 35px;
  height: 45px;
  top: 50%;
  left: -1px;
  background: linear-gradient(270deg, rgb(5 77 41 / 43%) 3.12%, #054f29 55%);
  z-index: 11;
  transform: translateY(-50%);
}
.logos-portfolio .slick-list::after{
  right: -1px;
  left: auto;
  transform: translateY(-50%) rotate(180deg);
  background: linear-gradient(270deg, rgba(9, 67, 37, 0.43) 3.12%, #0a4025 55%);
}
.approach-team{
  margin-top: 74px;
  margin-bottom: 30px;
  position: relative;
}
.approach-team:before{
  margin-top: -90px;
}
.approach-wrapper{
  display: flex;
  justify-content: space-between;
  gap: 96px;
}
.approach-wrapper .box-view{
  width: 50%;
}
.approach-wrapper .box-view .heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.approach-wrapper .box-view .img-block{
  height: 238px;
  overflow: hidden;
}
.approach-wrapper .box-view .img-block img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center center;
  transform: scale(1);
  transition: 0.5s ease transform;
}
.approach-wrapper .box-view .img-block:hover img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center center;
  transform: scale(1.05);
}
.overlay{
  position: relative;
}
.overlay:before{
  content: "";
  background: rgba(183, 148, 111, 0.30);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.section-shade-bg::before{
  background: linear-gradient(0deg, #F3EDE7 39.98%, rgba(243, 237, 231, 0.00) 95.47%);
  transform: rotate(180deg);
  height: 50%;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.modal-content{
  border-radius: 0;
  border: 0;
  height: 100%;
}
.modal-body{
  padding: 50px 60px 50px 50px;
}
.modal-header{
  border: 0;
  padding: 30px;
}
.modal-header .btn-close{
  width: 17px;
  height: 17px;
  border-radius: 100px;
  border: 1px solid #B7946F;
  background: url('../assets/close-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  opacity: 1;
  transition: all ease 0.5s;
  transform: rotate(0deg);
  background-size: 22px;
}
.modal-header .btn-close:hover{
  transform: rotate(180deg);
}
.portfoliomodal .portfolio-list{
  margin-top: 0;
}
.portfoliomodal .portfolio-content .founders{
  margin-top: 50px;
}
.portfoliomodal .portfolio-content .founders h4{
  color: #606060;
  font-size: 18px;
  font-weight: 300;
  border-bottom: 1px solid #B7946F;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.portfoliomodal .portfolio-content .founders a{
  font-size: 16px;
  color: #B7946F;
  text-decoration: underline;
}
.portfoliomodal .portfolio-content .founders a:hover{
  color: #006633;
}
.approach-team.green-bg{
  margin-top: 95px;
  padding: 85px 0;
}
.media-list-wrapper{
  margin-top: 60px;
  margin-bottom: 150px;
}
.media-list-wrapper .media-box{
  padding: 0;
  background: transparent;
}
.media-list-wrapper .media-box a{
  display: flex;
  background: #ffffff;
  border: 1px solid #EFE7DF;
  padding: 35px;
  flex-direction: row;
  gap: 5%;
  position: relative;
  margin-bottom: 35px;
  color: #1E1E1E;
}
.media-list-wrapper .media-box a:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(-90deg, #F3EDE7 11.25%, rgba(243, 237, 231, 0.00) 72.19%);
  opacity: 0;
  transition: all ease 0.5s;
}
.media-list-wrapper .media-box a:hover:before{
  opacity: 1;
}
.media-list-wrapper .media-box a:hover .media-tag{
  opacity: 1;
}
.media-list-wrapper .media-box .media-img{
  flex: 0 0 20%;
  position: relative;
  z-index: 1;
}
.media-list-wrapper .media-box .media-img img{
  min-width: 275px;
  max-width: 275px;
}
.media-list-wrapper .media-box .media-title{
  flex: 0 0 30%;
  position: relative;
  z-index: 1;
}
.media-list-wrapper .media-box .media-title span{
  color: #929292;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 14px;
}
.media-list-wrapper .media-box .media-title h5{
  font-size: 18px;
  line-height: 25px;
}
.media-list-wrapper .media-box .media-detail{
  flex: 0 0 30%;
  position: relative;
  z-index: 1;
}
.media-detail-wrapper{
  margin-top: 95px;
  text-align: center;
}
.media-detail-wrapper .section-text-link{
  margin-bottom: 24px;
}
.media-detail-wrapper .img-block{
  width: 100%;
  height: 500px;
  margin-bottom: 33px;
}
.media-detail-wrapper .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.media-content{
  text-align: center;
}
.media-content span{
  color: #B6B6B6;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 14px;
}
.media-content h1{
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 32px;
}
.media-content p{
  text-align: left;
  font-size: 22px;
  font-weight: 200;
  margin-bottom: 40px;
}
.media-detail .our-media-section{
  margin-top: 60px;
}

/* Our team page */
.our-team-wrapper .our-team-img{
  height: 666px;
  overflow: hidden;
  border-bottom: 4px solid #B7946F;
}
.our-team-img.overlay::before{
  background: rgba(0,0,0,0.36);
}
.our-team-wrapper .our-team-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.our-team-list{
  position: relative;
  padding-top: 60px;
}
.our-team-list .team-member a{
  width: 100%;
  height: 475px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.our-team-list .team-member a .team-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  transition: all ease 0.5s;
}
.our-team-list .team-member a:hover .team-img img{
  transform: scale(1.1);
}
.our-team-list .col-lg-4{
  padding: 0 15px;
}
.team-member .team-info{
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 9;
}
.team-member .team-info:before{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.00) 100%);
  transform: rotate(180deg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.team-member .team-info span{
  font-size: 14px;
  color: #B7946F;
  font-weight: 700;
  letter-spacing: 6.423px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.team-member .team-info h5{
  font-size: 21px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.642px;
  position: relative;
  z-index: 1;
}
.team-member .overlay:before {
  content: "";
  background: rgba(183, 148, 111, 0.20);
}
.our-team-page .approach-team.green-bg{
  margin-top: 0;
}
/* Scroll css start */
* {
  scrollbar-width: auto;
  scrollbar-color: #B7946F #18040e;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background: #dfdfdf;
}

*::-webkit-scrollbar-thumb {
  background-color: #B7946F;
  border-radius: 0;
  border: 2px solid #B7946F;
}
/* Scroll css end */
.teammodal .portfolio-list .portfolio-content{
  width: 60%;
}
.teammodal .portfolio-image{
  width: 418px;
  min-height: 465px;
}
.teammodal .portfolio-content span{
  font-size: 12px;
  color: #B7946F;
  text-transform: uppercase;
  letter-spacing: 5.4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
}
.teammodal .portfolio-content h3{
  display: flex;
  align-items: center;
}
.teammodal .portfolio-content h3 a{
  width: 32px;
  height: 32px;
  border-radius: 100px;
  border: 1px solid #B7946F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.approach-page  .current-portfolio h2{
  display: none;
}
.approach-page .current-portfolio:after{
  display: none;
}
/** New banner css start **/
.hero-banner{
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #B7946F;
}
.hero-banner::after{
  content: "";
  background: url('../assets/video-line-shape.svg')no-repeat;
  width: 450px;
  height: 450px;
  background-size: cover;
  position: absolute;
  left: 60%;
  top: 50%;
  z-index: 1;
  opacity: 0.3;
  transform: translateY(-50%);
}
.hero-banner::before{
  content: "";
  background: url('../assets/banner-shape.svg') no-repeat;
  background-size: 76%;
  width: 100%;
  height: calc(100% + 10px);
  right: 0;
  top: -10px;
  display: inline-block;
  position: absolute;
  z-index: 2;
}
.hero-content{
  z-index: 99;
  position: relative;
  width: 70%;
  max-width: 100%;
}
.hero-banner .hero-video{
  position: absolute;
  top: 0;
  right: -18%;
}
.hero-banner .hero-video video{
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
}
.hero-banner .hero-video:before{
  content: "";
  background: linear-gradient(206deg, rgba(183, 148, 111, 0.42) 34.73%, rgba(0, 102, 51, 0.6) 47.88%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-content h1 {
  padding: 0 0 10px 0;
  font-size: 43px;
  line-height: 65px;
  font-weight: 700;
  color: #000;
}

.hero-content h1 span {
  position: relative;
}

.hero-content h1 span::before {
  content: "";
  border-radius: 4px;
  margin: 0 auto;
  background: #006633;
  display: inline-block;
  height: 4px;
  width: 100%;
  max-width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0;
}

.hero-content h3 {
  color: #000;
  max-width: 740px;
  font-size: 33px;
  line-height: 53px;
  font-weight: 200;
}
/** New banner css end **/


.teammodal .modal-body {
  padding: 20px 60px 50px 50px;
}
