:root {
  --bg-color: #100f0f;
  --theme-color: #1e1d1e;
  --main-color: #6b9071;
}

/* --------------- header --------------- */
.header-ca {
  padding: 180px 0 140px;
}
.main-img .bg-img {
  width: 100% !important;
}
.header-ca .main-img {
  height: 80vh;
  background-position: center;
  border-radius: 15px;
  position: relative;
  -webkit-clip-path: inset(0% 12% 0% 12%);
  clip-path: inset(0% 12% 0% 12%);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.header-ca .main-img .vid-butn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0d0d0d;
  padding: 10px 0 0 10px;
  border-radius: 20px 0 0 0;
}
.header-ca .main-img .vid-butn a {
  padding: 12px 25px;
}
.header-ca .main-img .vid-butn a .icon {
  line-height: 40px;
}
.header-ca .main-img .vid-butn a span {
  background: var(--theme-color);
  color: #fff;
}
.header-ca .main-img .vid-butn .shap-right-top {
  position: absolute;
  top: -1.45rem;
  right: -1px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  line-height: 1;
}
.header-ca .main-img .vid-butn .shap-right-top svg {
  width: 1.5rem;
  height: 1.5rem;
}
.header-ca .main-img .vid-butn .shap-left-bottom {
  position: absolute;
  left: -1.45rem;
  bottom: -1px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  line-height: 1;
}
.header-ca .main-img .vid-butn .shap-left-bottom svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 480px) {
  .header-ca h1 {
    font-size: 35px;
  }
  .header-ca .pin-spacer {
    height: 300px !important;
    position: static !important;
    -webkit-transform: translate(0, 0) scale(1) !important;
    -ms-transform: translate(0, 0) scale(1) !important;
    transform: translate(0, 0) scale(1) !important;
    padding: 80px 0 !important;
  }
  .header-ca .pin-spacer .main-img,
  .header-ca .pin-spacer .imgWrapper {
    height: 300px !important;
    position: static !important;
    -webkit-transform: translate(0, 0) scale(1) !important;
    -ms-transform: translate(0, 0) scale(1) !important;
    transform: translate(0, 0) scale(1) !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }
}

/* --------------- Intro --------------- */
.intro h2 {
  font-size: 55px;
  font-weight: 400;
  text-wrap: pretty;
  position: relative;
  z-index: 4;
}
.intro h2 span {
  font-weight: 600;
}

.intro .img {
  width: 150px;
  height: 165px;
  border-radius: 5px;
  position: absolute;
}

.intro .img1 {
  bottom: -30px;
  left: -30px;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.intro .img2 {
  top: -15px;
  right: -30px;
  -webkit-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  transform: rotate(8deg);
}

.marquee-text {
  overflow: hidden;
}
.marquee-text .item {
  padding: 0 80px !important;
}
.marquee-text .item h2 {
  font-size: 10vw;
  letter-spacing: -0.3rem;
  color: transparent !important;
  -webkit-text-stroke: 1px #fff;
}

@media screen and (max-width: 768px) {
  .intro {
    overflow: hidden;
    padding: 100px 0 !important;
  }
  .intro h2 {
    font-size: 30px;
  }
  .intro .img {
    display: none;
  }
}

/* --------------- Works --------------- */
.work-ca {
  position: relative;
  padding-top: 240px;
}
.work-ca .sec-lg-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.work-ca .sec-lg-head h2 {
  font-size: 14vw;
}
.work-ca .item {
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.work-ca .item:after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--theme-color)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    var(--theme-color),
    transparent
  );
  background-image: -o-linear-gradient(bottom, var(--theme-color), transparent);
  background-image: linear-gradient(to top, var(--theme-color), transparent);
  opacity: 0.5;
}
.work-ca .item:hover .cont {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.work-ca .item .img {
  border-radius: 15px;
  overflow: hidden;
}
.work-ca .item .cont {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.work-ca .item .cont span {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .work-ca .sec-lg-head h2 {
    font-size: 22vw;
  }
}

@media screen and (max-width: 480px) {
  .work-ca {
    padding: 100px 0 !important;
    overflow: hidden;
  }
  .work-ca .pin-spacer {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
    position: static !important;
    -webkit-transform: translate(0, 0) scale(1) !important;
    -ms-transform: translate(0, 0) scale(1) !important;
    transform: translate(0, 0) scale(1) !important;
    padding: 0 !important;
  }
  .work-ca .sec-lg-head {
    position: static;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    margin-bottom: 50px !important;
  }
  .work-ca .item {
    margin: 10px 0;
  }
  .work-ca .item .img {
    height: 280px;
  }
  .work-ca .item .cont {
    left: 20px;
    bottom: 20px;
  }
}

/* --------------- Services --------------- */
.services-cst {
  position: relative;
  z-index: 3;
}
.services-cst .item {
  padding: 25px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.services-cst .item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.services-cst .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--main-color);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}
.services-cst .item > div {
  width: 100%;
}
.services-cst .item h2 {
  font-size: 65px;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 15px;
}
.services-cst .item .icon img {
  width: 30px;
}
.services-cst .item.active {
  color: #111;
}
.services-cst .item.active:after {
  height: 100%;
}
.services-cst .item.active .invert img {
  -webkit-filter: invert(0) !important;
  filter: invert(0) !important;
}
.services-cst .item.active p {
  color: #1e1d1e;
}

.numbers-dm .item h2 {
  font-size: 120px;
  font-weight: 200;
}
.numbers-dm .item h2 span {
  font-size: 50px;
}

.numbers-dm .item h6 {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .services-cst .item p {
    margin-top: 20px;
  }
  .services-cst .item .ml-auto {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}

/* --------------- Clients --------------- */
.header-cst .brands .item .img {
  max-height: 80px;
  text-align: center;
  margin: auto;
}
.header-cst .brands .item .img img {
  width: auto;
}

/* --------------- Testimonials --------------- */
.testimonials-ca .sec-head {
  padding: 140px 0 80px !important;
}

.testimonials-ca .item {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: var(--theme-color);
}
.testimonials-ca .item h5 {
  font-weight: 100;
}
.testimonials-ca .item h6 {
  font-size: 18px;
}
.testimonials-ca .item h6 span {
  font-weight: 300;
}

.testimonials-ca .pin-spacer:nth-of-type(even) .item {
  -webkit-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
}

.testimonials-ca .pin-spacer:nth-of-type(odd) .item {
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

.testimonials-ca .pin-spacer:first-of-type .card-item {
  top: 140px !important;
}

.testimonials-ca .pin-spacer:first-of-type .item {
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
}

@media screen and (max-width: 992px) {
  .testimonials-ca .cards {
    padding-top: 0 !important;
  }
  .testimonials-ca .cards .item .qoute-icon {
    margin-bottom: 15px;
  }
  .testimonials-ca .cards .item .qoute-icon img {
    height: 50px;
    width: 50px;
  }
  .testimonials-ca .cards .item .ml-40 {
    margin-left: 0 !important;
  }
}

/* --------------- Awards --------------- */
.team-ca .bord {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.team-ca .item {
  position: relative;
}
.team-ca .item:hover .img {
  opacity: 1;
  visibility: visible;
}
.team-ca .item:hover .cont {
  opacity: 0;
  visibility: hidden;
}
.team-ca .item .img {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-ca .item .img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--main-color)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    var(--main-color),
    transparent
  );
  background-image: -o-linear-gradient(bottom, var(--main-color), transparent);
  background-image: linear-gradient(to top, var(--main-color), transparent);
  opacity: 0.7;
}
.team-ca .item .img .social-icons {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-ca .item .img .social-icons a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #0d0d0d;
  font-size: 13px;
}
.team-ca .item .img .social-icons a:hover {
  background: #0d0d0d;
  color: #fff;
}
.team-ca .item .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-ca .item .cont h6 {
  font-size: 60px;
}
.team-ca .item .cont span {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

@media screen and (max-width: 480px) {
  .team-ca .item {
    margin-bottom: 15px;
  }
  .team-ca .item .img {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------- Blogs --------------- */
.blog-cst .item .img {
  height: 400px;
  border-radius: 15px;
}

.blog-cst .item .cont h5 {
  font-weight: 400;
  text-wrap: pretty;
  margin-bottom: 10px;
}

.blog-cst .item .cont span {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.3;
}

@media screen and (max-width: 480px) {
  .blog-cst {
    overflow: hidden;
  }
  .blog-cst .item {
    margin-bottom: 50px;
  }
  .blog-cst .item .img {
    margin-bottom: 20px;
  }
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  background-color: #0d0d0d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 36px;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 22px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #a4a4a4;
  margin: 0;
}

.sub-bg {
  background: var(--bg-color);
}

.light-bg {
  background: #fff;
  color: #0e0f11;
}
.light-bg .butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.light-bg .butn.butn-bord img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.light-bg .butn.butn-bord:hover {
  background: var(--main-color);
  color: #212121;
}

.main-color {
  color: var(--main-color);
}

.sub-head {
  font-size: 20px;
}

.title-font {
  font-family: "Six Caps", sans-serif;
  letter-spacing: normal;
}

.bract {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.bract span {
  padding: 0 10px;
}

.sec-lg-head h2 {
  font-size: 130px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5rem;
}

.sec-head h2 {
  font-size: 64px;
  line-height: 1.2;
}

.gray-box {
  background: #6b9071;
  border-radius: 30px;
  color: #0e0f11;
}
.gray-box .butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.gray-box .butn.butn-bord img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.gray-box .butn.butn-bord:hover {
  background: var(--main-color);
  color: #212121;
}
.gray-box p {
  color: #4d4949;
}
.gray-box .sec-head .sub-head:after {
  background: #111;
}

.text-indent {
  text-indent: 20%;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.crv-butn span {
  background: var(--main-color);
  color: #0e0f11;
}

.crv-butn .text {
  line-height: 40px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 30px;
  position: relative;
}
.crv-butn .text:after {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--main-color);
  position: absolute;
  top: 5px;
  right: -15px;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.crv-butn .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-left: -10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.crv-butn .icon img {
  width: 15px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.crv-butn:hover .text:after {
  border-radius: 50%;
  top: calc(50% - 5px);
  right: 0;
  height: 10px;
}

.crv-butn:hover .icon {
  margin-left: 5px;
}
.crv-butn:hover .icon img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.butn.butn-bord:hover {
  background: #fff;
  color: #212121;
}

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

footer {
  background: var(--theme-color);
}

/* --------------- Redes --------------- */
