@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)))
}

.columns {
  display: flex;
}
/* =========================
   GENERAL STYLES 
   NOT RELATED TO THE TUTORIAL
============================ */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  padding: 0px;
  margin: 0px;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.show {
  display: table;
  display: block;
}
.hide {
  display: none;
}
/*.hide.show{ display: table;}*/
.fade {
  background: rgb(0, 0, 0, .6);
}
.desktop {
  display: block !important
}
.desktop.none {
  display: none !important;
}
.mobile {
  display: none !important
}
.one-word {
  white-space: nowrap
}
.none {
  display: none;
}
.block {
  display: block;
}
.mobile-video {
  display: none;
}
.desktop-video {
  display: block;
}
/*
h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: 700;
}
*/
h2 {
  font-size: 60px;
  font-weight: 700;
}
.no-pad {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.no-mar {
  margin: 0px !important
}
.no-bg {
  background: none !important;
}
.plus {
  color: #c1e73e;
  font-size: 100% !important;
  font-weight: 700 !important;
}
/*=====================================================================
========================== Menu CSS ===================================
=====================================================================*/
.menu-open { /*overflow: hidden;*/
}
.menu-open .knowledge-bank ul.stick {
  z-index: 9
}
.topbar {
  position: fixed;
  width: 100%;
  z-index: 9;
  padding-top: 0px;
  background: url("../assets/menu-bg.png") repeat-x left top;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
	  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.fixedmenu {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
  padding-top: 0;
  padding-bottom: 8px;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.menu-open .fixedmenu {
  background: none;
  box-shadow: 0px 0px 0px #999;
	
}
nav {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 888;
	
}
.topbar.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
@keyframes fadeInNav {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    top: -25px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.navWrapper {
  margin: auto;
}
#logo, #logo-w {
  color: #292929;
  font-size: 30px;
  font-weight: normal;
  text-decoration: none;
  margin-top: 10px;
  z-index: 9;
  position: relative;
  max-width: 125px;
  left: 30px;
}
#logo img, #logo-w img {
  width: 100%;
}
.right {
  float: right;
  padding: 0;
  margin: 0;
}
#nav-icon {
  width: 120px;
  height: 45px;
  right: 50px;
  position: relative;
  z-index: 2;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-top: 15px;
  background: #c1e73e;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  line-height: 2.2;
}
#nav-icon.open {
  color: #fff;
  background: #000;
}
.overlay {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(193, 231, 63, 1) 100%);
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100vw;
  height: 100vh;
  transition: all 500ms ease-in-out;
  clip-path: circle(0px at calc(100% - 85px) 35px);
  visibility: hidden;
  z-index: 1;
  display: flex;
}
.overlay.open {
  /*  opacity: 1;*/
  width: 100%;
  visibility: visible;
  clip-path: circle(100%);
}
.overlay li {
  display: block;
  margin: 5px 0;
  opacity: 0;
}
.overlay .overlayContent {
  display: flex;
  align-items: center;
  /*	padding-top: 80px;*/
}
.overlay .overlayContent .menu-left {
  flex: 0 0 65%;
  overflow-y: auto;
  max-height: 100vh;
}
.overlay .overlayContent .menu-right {
  flex: 0 0 35%;
  flex-direction: column;
  color: #000;
}
.overlay .overlayContent .menu-right a {
  color: #000;
  text-decoration: none;
}
.overlay .overlayContent .menu-right a:hover {
  padding: 0px;
  text-decoration: underline;
}
.overlay .overlayContent .menu-right a:hover:after {
  content: "";
  position: static;
  display: none;
}
.overlay li a {
  color: #000;
  font-size: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-right: 50px;
  overflow: hidden;
  line-height: 1.2;
  text-align: left;
  position: relative;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.overlay li ul.submenu {
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
}
.overlay li ul.submenu.menu-open {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
.overlay li ul li a {
  font-size: 30px;
}
.overlay li ul li a.open:hover {
  padding-left: 15px;
}
.overlay li ul li a:hover:after {
  display: none;
  padding: 15px;
}
li.hasmenu a:before {
  content: "+";
  position: absolute;
  right: 0px;
  background: #000;
  color: #fff;
  padding: 0px 6px;
  border-radius: 50px;
  line-height: .8;
  top: 15px;
  font-weight: 400;
  font-size: 90%;
}
li.hasmenu a.smenu-open:before {
  transform: rotate(45deg);
}
ul.submenu a:before {
  content: "";
}
.social {
  margin: 40px 0 20px 0;
}
.social img {
  width: 45px;
}
@keyframes fadeInCopyright {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay a.open:hover, .overlay a.active {
  color: #000;
  padding-left: 60px;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.overlay a.open:after, .overlay a.active:after {
  width: 0px;
}
.overlay a.open:hover:after, .overlay a.active:after {
  position: absolute;
  content: "";
  border: 1px solid #000;
  width: 50px;
  top: 50%;
  left: 0;
  animation: .3s fadeInLinks1 ease;
}
.overlay li.open:nth-child(1) {
  opacity: 1;
  animation: .8s fadeInLinks1 ease;
}
@keyframes fadeInLinks1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay li.open:nth-child(2) {
  opacity: 1;
  animation: 1s fadeInLinks2 ease;
}
@keyframes fadeInLinks2 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay li.open:nth-child(3) {
  opacity: 1;
  animation: 1.2s fadeInLinks3 ease;
}
@keyframes fadeInLinks3 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
/* Link Css */
.overlay li.open:nth-child(4) {
  opacity: 1;
  animation: 1.4s fadeInLinks4 ease;
}
@keyframes fadeInLinks4 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay li.open:nth-child(5) {
  opacity: 1;
  animation: 1.6s fadeInLinks5 ease;
}
@keyframes fadeInLinks5 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay li.open:nth-child(6) {
  opacity: 1;
  animation: 1.8s fadeInLinks6 ease;
}
@keyframes fadeInLinks6 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.overlay li.open:nth-child(7) {
  opacity: 1;
  animation: 2s fadeInLinks7 ease;
}
@keyframes fadeInLinks7 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
.top-menu {
  text-align: center;
  margin: 20px auto;
  width: 100%;
  max-width: 420px;
  padding: 0px;
}
.top-menu li {
  display: inline-block;
  margin: 10px;
}
.fixedmenu .top-menu li a {
  color: #c1e73e;
}
.top-menu li a {
  display: block;
  color: #c1e73e;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.fixedmenu .top-menu {
  margin: 10px auto 0 auto;
}
.top-menu li a:hover {
  color: #c1e73e;
  text-decoration: underline;
}
.fixedmenu #nav-icon {
  margin-top: 10px;
}
/*=====================================================================
======================= Home page  CSS ================================
=====================================================================*/
.none {
  display: none !important
}
main {
  background-position: 50% top;
/*  background-size: cover;*/
  background-color: #f2f2f2;
/*
  background-image: url("../assets/images/work_bg.jpg");
  background-attachment: fixed;
*/
}
.container {
  width: 100%;
  max-width: 1340px;
  position: relative;
}
.hero-banner {
  width: 100%;
  height: 100vh;

  overflow: hidden;
  position: relative;
}
.hero-banner .bgoverlay {
  position: absolute;
  background: rgba(0, 0, 0, .6);
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
	height: 100vh;
  text-align: center;
	margin: 0px;
}
.hero-banner video {
  width: 100%;
  z-index: -100;
	height: 100vh;
	object-fit: cover;

}
.item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 65px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  flex-direction: column
}
.scroll-down a span {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #c1e73e;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll-down a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #c1e73e;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.section-1 {
	padding: 0px 0px;
  display: flex;
  flex-direction: row;
	height: 100vh;
	align-items: center;
	position: relative;
	z-index: 1;
	justify-content: space-around;
}

.section-1 .section1-left {
  display: flex;
  text-align: left;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 55%;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.section-1 .section1-left button {
  font-size: 60px;
  font-weight: 700;
  background: #c1e73e;
  border: 0px;
  width: fit-content;
  padding: 0px 25px;
  border-radius: 60px;
  line-height: 1.4;
  display: flex;
  margin: 20px 0px;
}
.section-1 .section1-left button span {
  font-size: 84px;
  font-weight: 500;
  line-height: 1;
  margin-left: 15px;
}
.section-1 .section1-slider {
  display: block;
  max-width: 45%;
	max-width: 600px;
}
/*
.section-1 .slick-slide{filter: blur(4px); filter: zoom(4px);}
.section-1 .slick-slide.slick-current{ filter: blur(0px);}
*/
/*
.section-1 .section1-slider .slide {
  position: relative;
  margin: 40px 0;
  width: 100%;
  max-width: 350px;
  padding: 70px 30px 50px 30px;
  text-align: left;
  line-height: 1.2;
  border: 2px solid #c8c8c8;
  font-size: 35px;
  font-weight: 500;
  border-radius: 20px;
  background: rgb(210, 210, 210);
  background: -webkit-linear-gradient(220deg, rgba(210, 210, 210, 1) 0%, rgba(237, 237, 237, 1) 16%, rgba(210, 210, 210, 1) 61%, rgba(237, 237, 237, 1) 94%);
  background: -o-linear-gradient(220deg, rgba(210, 210, 210, 1) 0%, rgba(237, 237, 237, 1) 16%, rgba(210, 210, 210, 1) 61%, rgba(237, 237, 237, 1) 94%);
  background: linear-gradient(310deg, rgba(210, 210, 210, 1) 0%, rgba(237, 237, 237, 1) 16%, rgba(210, 210, 210, 1) 61%, rgba(237, 237, 237, 1) 94%);
}
.section-1 .section1-slider .slide h3 {
  position: absolute;
  top: -30px;
  left: 30px;
  background: #000;
  border-radius: 50px;
  color: #c1e73e;
  font-size: 40px;
  padding: 10px 20px;
  font-weight: 700;
}
.section-1 .slick-slide{
	margin: 0px 10px;
}
*/
/*
.section-1 .section1-slider .slick-slide img {
  max-height: 115px;
  margin: 50px 0px;
}
.section-1 .section1-slider .slick-slide img.plus{
	width: 100%;
	margin: 0px;
}
*/
/*
.section-1 .section1-slider .slide p{
	min-height: 220px;
}

.slick-prev, .slick-next{
	display: none !important;
}
*/

.section-1 .slide2{
	width: 850px
}
.section-1 .slide2 img {
  max-width: 100%;
  margin: 0px 0px;
}

.slick-prev:before, .slick-next:before {
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: 'slick';
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: inherit;
  bottom: -70px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 50px;
  overflow: hidden;
}
.slick-next:before {
  content: url(../assets/images/arrowNext.png);
  background: #b0c24f;
  width: 100%;
  height: 100%;
}
.slick-prev:before {
  content: url(../assets/images/arrowPrev.png);
  background: #b0c24f;
  width: 100%;
  height: 100%;
}
.slick-prev {
  left: 10px !important;
  left: inherit;
	top: 50%;
/*	opacity: .2;*/
}
.slick-next {
  right: 10px;
	top: 50%;
  left: inherit;
/*	opacity: .2;*/
}
/*
.slick-list:hover .slick-prev, .slick-list:hover .slick-next{
	opacity: 1 !important; 	
}
*/

/*.slick-list{padding:0 15% 0 0 !important;}*/

/**/
.client-logo {
  position: relative;
  text-align: center;
  background: #fff;
  padding: 50px 20px;
}
.client-logo h4 {
  font-size: 55px;
  color: #a1a1a1;
  font-weight: 700;
  margin-bottom: 50px
}
.client-logo .slide img {
  width: 100%;
}
.cta {
  /*	background-color: #c1e73e;*/
  color: #000;
  font-size: 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 60px 10px 30px;
  clear: both;
  overflow: hidden;
  width: fit-content;
  margin: 50px 0 20px 0;
  display: inline-block;
  background: #c1e73e url("../assets/right-arrow.png") no-repeat 90% 14px;
  background-size: 30px 22px;
}
.cta:hover {
  color: #fff;
  background: #000 url("../assets/right-arrow-h.png") no-repeat 90% 14px;
  background-size: 30px 22px;
	 -moz-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
/* Scroll trigger */
.scroll-top-arrow {
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  position: fixed;
  transition: all .5s ease 0s;
  animation: mymove 2s infinite;
  border-radius: 10%;
  z-index: 9;
  box-shadow: 0 0px 0px 0 #aac234;
}
.scroll-top-arrow div {
  font-size: 25px;
  line-height: 28px;
  color: #000;
  background: rgb(170, 194, 42, .8);
  height: 30px;
  width: 30px;
  padding: 0;
  text-align: center;
  border-radius: 50%;
}
.how-we-do {
  padding: 0px 0;
  font-size: 20px;
  color: #000;
  text-align: center;
  justify-content: space-around;
	position: relative;
}
.how-we-do .bgoverlay, .container2 .bgoverlay {
  position: absolute;
  background: rgba(0, 0, 0, .6);
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
	height: 100vh;
  text-align: center;
	margin: 0px;
}
.how-we-do video, .container2 video {
  width: 100%;
  z-index: 0;
	height: 100vh;
	object-fit: cover;
	position: absolute;
}
.practice-area {
  padding: 60px 50px 60px 50px;
  text-align: center;
  background: rgb(33, 12, 114);
  background: -webkit-linear-gradient(167deg, rgba(33, 12, 114, 1) 0%, rgba(0, 0, 0, 1) 53%, rgba(33, 12, 114, 1) 100%);
  background: -o-linear-gradient(167deg, rgba(33, 12, 114, 1) 0%, rgba(0, 0, 0, 1) 53%, rgba(33, 12, 114, 1) 100%);
  background: linear-gradient(257deg, rgba(33, 12, 114, 1) 0%, rgba(0, 0, 0, 1) 53%, rgba(33, 12, 114, 1) 100%);
}
.practice-area h5 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 60px
}
.practice-area .boxes {
  display: flex;
  justify-content: space-between;
}
.practice-area .boxes .box {
  flex: 0 0 30%;
  position: relative;
	margin: 20px 0 80px 0;
}
.practice-area .boxes .box img {
  width: 100%;
  border-radius: 10px;
}
.practice-area .boxes .box p {
  position: absolute;
  bottom: -60px;
  left: 0px;
  right: 0px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0px;
/*
	background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,1) 28%, rgba(33,12,114,0) 100%);
*/
}
.client-logo-slide{
	width: 90%;
	overflow: hidden;
	margin: 0 auto 40px auto;
}
.client-logo-slide img.left{
	animation: marquee 18s infinite linear;
}
.client-logo-slide img.right{
	animation: marquee2 18s infinite linear;
}
@keyframes marquee {
from {
	   transform: translateX(0);
	}

   to {
	   transform: translateX(-100%);
	}

   }

@keyframes marquee2 {
from {
	   transform: translateX(0);
	}

   to {
	   transform: translateX(100%);
	}

   }
.practice-area .boxes .box p span {
  font-size: 20px;
  font-weight: 400;
}
.practice-area .boxes .box p a {
  color: #fff;
  text-decoration: none;
}
.cta-arrowonly {
  color: #000;
  font-size: 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 40px 5px 20px;
  clear: both;
  overflow: hidden;
  width: fit-content;
  margin: 20px 0 0px 0;
  display: inline-block;
  background: #c1e73e url(../assets/right-arrow.png) no-repeat 53% 9px;
  background-size: 30px 22px;
  line-height: 1.4
}
.practice-area .boxes .box:hover .cta-arrowonly {
  padding: 5px 65px 5px 50px;
}
.practice-area .boxes .box:hover img {
  transform: scale(1.05);
  transform-origin: bottom center;
}
.flexible-models-col{
	display: flex;
	font-size: 24px;
	font-weight: 500;
	text-align: left;
	line-height: 1.3;
	justify-content: space-between;
	align-items: center;
}
.left-col{
	flex: 0 0 50%;
}
.right-col{
	flex: 0 0 45%;
}
.left-col img, .right-col img, .left-col video, .right-col video{
	max-width: 100%;
	width: 100%;
}
.flexible-models h6{
	font-size: 60px;
	color: #ffffff;
	text-align: left;
	font-weight: 700;
	margin-top: 120px;
	margin-bottom: 50px;
}
.flexible-models .cta:hover{
	background-color: #35362d !important;
}
.collaborate{
	background: #fff;
	color: #000;
	padding: 100px 0px;
}
.collaborate .collaborate-inner{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.collaborate .collaborate-inner h2{
	margin-bottom: 30px;
}
.collaborate .collaborate-inner p b{
	display: block;
	margin-bottom: 30px;
}
.collaborate .collaborate-inner .cta{
	margin-top: 30px;
}

/**/


.carousel__slider {
  position: relative;
    width: 100%;
/*    max-height: 440px;*/
    align-items: center;
    display: flex;
    height: 100vh;
}

.carousel__item {
  width: 100%;
/*  max-height: 100%;*/
  padding: 0;
  color: #fff;
  position: absolute;
/*  top: 0%;*/
  opacity: 0;
}
.carousel__item img {
    max-height: 100%;
	width: 100%
}
.carousel__nav {
/*  display: flex;*/
	display: none;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}

section {
  height: 100vh;
}

.our-work {
  display: flex;
  align-items: center;
  background-color: none !important;
	background: none !important;
	inset: 0 !important;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 0px 0;
  font-size: 20px;
  color: #000;
  text-align: center;
  justify-content: space-around;
}
.our-work .bgoverlay{
  position: absolute;
  background: rgba(0, 0, 0, .6);
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
	height: 100vh;
  text-align: center;
	margin: 0px;
}
.our-work video {
  width: 100%;
  z-index: 0;
	height: 100vh;
	object-fit: cover;
	position: absolute;
}


.slider {
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
}
.carousel__nav__item {
  background: #424b58;
  box-shadow: none;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
}
.carousel__nav__item--active {
  background: red;
}

/**/
/*
.how-we-do h2.bounceInLeft{
	opacity: 1;
}
*/
/*=====================================================================
========================== Footer  CSS ================================
=====================================================================*/
footer {
  font-size: 20px;
	line-height: 1.5;
  background: #c1e73e;
  padding: 30px 0;
  display: flex;
  position: relative;
  z-index: 1;
	color: #000;
}
footer p {
  margin: 0;
  line-height: 1.3;
}
footer p br {
  display: none;
}
footer .container {
  display: flex;
  width: 100%;
}
/*footer .footer-plogo*/
footer .col-6 {
  display: flex;
  justify-content: end;
	flex-direction: column;
}
footer .col-6 img {
  max-width: 52px;
  height: 52px;
}
footer .footer-logo {
  display: none;
}
footer a {
  margin-right: 10px;
	color: #000;
}
footer .footer-flex {
  justify-content: left;
  align-items: center
}
footer .footer-right{
	text-align: right;
	flex-direction: column;
}
footer .footer-right .social{
	margin: 0px 0px 15px 0px;
}
footer .footer-right .social a{
	margin-left: 10px;
}
footer .footer-right a{
	margin: 0px;
}
.think-page{ text-align: center;}
.think-page img{ max-width: 100%; width: 100%; text-align: center;}
/*=====================================================================
======================= Contact Page  CSS =============================
=====================================================================*/
.contact {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #000000;
}
.contact h1 {
  font-size: 100px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #7e7e7e
}
.contact .contact-form {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 110px;
}
.contact .contact-form fieldset {
  margin-top: 40px;
}
.contact .contact-form fieldset label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  font-size: 18px;
}
.contact .contact-form fieldset input {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #7e7e7e;
  padding: 5px;
  padding-left: 0;
  color: #b7b7b7;
}
.contact .contact-form fieldset input:active, .contact .contact-form fieldset input:focus {
  outline: none;
}
.contact .contact-form fieldset input.submit {
  width: auto;
  padding: 5px 25px;
  border: 1px solid #888;
  color: #000;
  border-radius: 3px;
  background: #fff;
}
.fit-content {
  width: fit-content
}
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b7b7b7;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #b7b7b7;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #b7b7b7;
}
:-moz-placeholder { /* Firefox 18- */
  color: #b7b7b7;
}
.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #7e7e7e;
  padding: 5px;
  padding-left: 0;
  margin-top: 20px;
  font-size: 18px;
  color: #b7b7b7;
}
.select-styled {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.select-styled:active, .select-styled.active {
  /*background-color: #f5f5f5;*/
}
.select-styled:after {
  top: 9px;
  background-color: #f5f5f5;
}
.select-styled:hover {
  /*background-color: #f5f5f5;*/
}
.select-styled:after {
  content: "";
  border: 7px solid transparent;
  background: url("../img/drop-down.png") no-repeat;
  ;
  position: absolute;
  top: 0px;
  right: 0px;
  background-position: right top;
  width: 30px;
  height: 20px;
}
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f5f5f5;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: #f5f5f5;
}
.select-options li:hover, .select-options li.is-selected {
  background-color: #C8C8C8;
}
.contact-header .row {
  display: flex;
  width: 80%;
  flex-direction: row-reverse;
}
.contact-header .row .col {
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  flex-direction: column;
}
.contact-header .address {
  font-size: 20px;
  color: #000;
  height: 50%;
  padding: 3rem 0;
  margin: 2rem 0rem;
  text-align: center
}
.contact-header .address.ncr {
  border-right: 1px solid #ddd;
}
.contact-header .address h3 {
  font-size: 40px;
  font-weight: 700;
}
.contact-header img, .contact-header iframe {
  max-width: 100%;
  width: 100%
}
.contact-page #nav-icon span {
  background: #ffffff;
}
.contact-page.menu-open #nav-icon span {
  background: #c1e73e !important;
}
.contact-page .fixedmenu #nav-icon span {
  background: #000000;
}
/*=====================================================================
======================= Page Responsive CSS ===========================
=====================================================================*/

@media screen and (max-width: 768px) {}
@media screen and (max-width: 767px) {
  .desktop {
    display: none !important
  }
  .mobile {
    display: block !important
  }
.mobile-video {
  display: block;
}
.desktop-video {
  display: none;
}
	#nav-icon{
		right: 10px;
		margin-top: 10px;
	}
	.slick-list{ padding: 0 !important}
	.row, .carousel__slider, .overlay .overlayContent, .section-1, .practice-area .boxes, .collaborate, .collaborate .collaborate-inner, .flexible-models-col{
		flex-direction: column;
		overflow-x: hidden;
	}
	.overlayContent.container {
		justify-content: space-evenly;
		align-items: center;
		margin: 0px;
	}
	.overlay .overlayContent .menu-left{
		margin-top: 70px;
		max-height: max-content;
	}
	.overlay li a{
		font-size: 25px;
	}
	.overlay li ul li a{
		font-size: 20px;
	}
	li.hasmenu a:before{
		padding: 0px 3px;
		top: 10px;
	}
	.bgoverlay .item{
		font-size: 40px;
	}
	h2, h3, h4, h5, h6, .client-logo h4, .practice-area h5, .flexible-models h6{
		font-size: 35px;
	}
	.section-1{
		height: auto;
	}
	.section-1 .section1-left button{
		font-size: 35px;
		width: 100%;
		text-align: center;
		align-items: center;
		justify-content: center;
	}
	.section1-left p br{
		display: none
	}
	.section-1 .section1-left button span{
		font-size: 45px;
		margin-left: 10px;
	}
	.slick-next, .slick-prev{
		display: none !important;
	}
	.practice-area{
		padding-left: 20px;
		padding-right: 20px;
	}
	.flexible-models .left-col{ margin-bottom: 20px;}
	.collaborate{
		padding: 50px 0px;
	}
	footer .float-start{
		margin-bottom: 40px;
	}
  footer {
    padding: 30px 0;
  }
  footer p br {
    display: block;
  }
  footer .container {
    width: 100%;
    display: block;
    font-size: 10px;
  }
  footer .col-6 {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  footer .col-6 p {
    text-align: left;
    clear: both;
    font-size: 16px;
    margin: 0;
  }
  footer .col-6.footer-flex {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
  }
  footer .col-6 .footer-logo {
    display: none;
  }
  footer .col-6 p br {
    display: none;
  }
  footer .col-6 .footer-logo img {
    max-width: 50px;
    float: left;
    margin-bottom: 0px;
  }
}


@keyframes fill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}