/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.uk-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.uk-grid:before,
.uk-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.uk-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -25px;
}
.uk-grid > * {
  padding-left: 25px;
}
[class*="uk-width"] {
  box-sizing: border-box;
}
/*
 * Widths
 */
/* Whole */
.uk-width-1-1 {
  width: 100%;
}
/* Halves */
.uk-width-1-2,
.uk-width-2-4,
.uk-width-3-6,
.uk-width-5-10 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3,
.uk-width-2-6 {
  width: 33.333%;
}
.uk-width-2-3,
.uk-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5,
.uk-width-2-10 {
  width: 20%;
}
.uk-width-2-5,
.uk-width-4-10 {
  width: 40%;
}
.uk-width-3-5,
.uk-width-6-10 {
  width: 60%;
}
.uk-width-4-5,
.uk-width-8-10 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: 16.666%;
}
.uk-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.uk-width-1-10 {
  width: 10%;
}
.uk-width-3-10 {
  width: 30%;
}
.uk-width-7-10 {
  width: 70%;
}
.uk-width-9-10 {
  width: 90%;
}

body {
  font-family: Inter, sans-serif;
  color: #1f1f1a;
  font-size: 16px;
  line-height: 20px;
}
p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}
a {
  -webkit-transition: opacity 200ms ease, color 200ms ease;
  transition: opacity 200ms ease, color 200ms ease;
  color: #515148;
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
}
.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.header {
  top: 0;
  z-index: 1000;
  background: #101112;
}
.header.uk-sticky.uk-active.uk-sticky-below.uk-sticky-fixed {
  background: #cbff55;
}
.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}
.logo img {
  max-height: 50px;
  width: 177px;
  object-position: left;
}
.page-header {
  background: #101112;
  margin-top: -85px;
  padding-top: 85px;
  padding-bottom: 40px;
}
.hero-text-box .custom {
  max-width: 1000px;
}
.hero-text-box {
  padding-top: 140px;
}
.menu-text-container {
  float: right;
  display: flex;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}
.header .uk-grid.top1 {
  height: 85px;
  align-items: center;
}
.page-header h1 {
  font-size: 72px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 400;
  letter-spacing: -3px;
  text-transform: none;
}
.menu-circle {
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 2px;
  border-color: #1f1f1a;
  border-radius: 100px;
  background-color: #1f1f1a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-family: Inter;
  margin-bottom: 10px;
}
.project-slider img {
  width: 100%;
}
.project-slider h3 {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  grid-column-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.project-slider h3:before {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #cbff55;
  content: "";
}
.project-slider .container .uk-slideshow {
  position: relative;
}
.uk-slidenav-previous svg,
.uk-slidenav-next svg {
  display: none;
}
.uk-slidenav-previous::after {
  content: "";
  background: url(https://webtech.kiwi/templates/webtech3/img/web-right-arrow-g3.svg);
  width: 35px;
  height: 28px;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  top: -3px;
  position: relative;
}
.uk-slidenav-next::after {
  content: "";
  background: url(https://webtech.kiwi/templates/webtech3/img/web-right-arrow-g3.svg);
  width: 35px;
  height: 28px;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
}
.project-slider .uk-slidenav-next {
  top: 15px;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 11;
}
.project-slider .uk-slidenav-previous {
  top: 15px;
  right: 60px;
  left: auto;
  z-index: 11;
  padding: 0;
  margin: 0;
}
.project-slider {
  padding-top: 40px;
  padding-bottom: 60px;
}
.page-section1 {
  background: #fbfbfb;
  padding: 90px 0;
  background-repeat: no-repeat;
  background-position: 45% 50%;
  background-size: 500px;
}
.page-section1 .uk-width-1-2:first-child .moduletable {
  max-width: 380px;
}
.page-section1 h2 {
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 1.2em;
  margin: 0;
  margin-bottom: 16px;
}
.page-section1 h1 {
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 1.2em;
  margin-top: 0;
}
.page-section1 .uk-width-2-3 {
  padding-left: 100px;
}
.page-section2 .uk-width-1-3 {
  width: 50%;
}
.recentwork-img {
  height: 394px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.page-section2 {
  padding: 90px 0;
}
.proj-item {
  padding-left: 20px;
  display: block;
}
.page-section2 .category-module.uk-grid {
  margin-left: -40px;
}
.page-section2 .category-module.uk-grid .uk-width-1-3 {
  padding-left: 40px;
  padding-bottom: 40px;
}
.page-section2 .recentwork-text,
.page-section2 .recentwork-text strong {
  /* display: none; */
  font-size: 20px;
  font-weight: 400;
}
.page-section2 .recentwork-text:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #e5e6e0;
  transition: 0.2s ease;
}
.custom.image-left .uk-grid + .uk-grid {
	margin-top: 20px;
}
.custom.image-left {
	margin-bottom: 20px;
}
.page-section2 .recentwork-text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.recentwork-item {
  position: relative;
}
.recentwork-item:hover .recentwork-text:after {
  background: #cbff55;
}
.arrow-text-link {
  display: inline-block;
  padding: 12px 48px 12px 16px;
  background-image: url(../img/web-right-arrow.svg);
  background-position: 90% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
  -webkit-transition: background-color 300ms ease, opacity 200ms ease,
    color 200ms ease;
  transition: background-color 300ms ease, opacity 200ms ease, color 200ms ease;
  color: #1f1f1a;
}
.arrow-text-link:hover {
  background-color: #cbff55;
  text-decoration: none;
  color: #1f1f1a;
}
.page-section2 .right-align-content {
  text-align: right;
}
.page-section3 {
  background-color: #1f1f1a;
  /*background-image: url("https://webtech.kiwi/templates/webtech3/img/Black-Block-Shape-1.svg");
  */
  background-position: -10% 150px;
  background-size: auto;
  background-repeat: no-repeat;
  padding: 90px 0;
}
.page-section3 h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.2em;
  margin-bottom: 16px !important;
}
.page-section3 h2 {
  color: #fff;
  font-size: 44px;
  font-weight: normal;
  text-align: left;
  margin-bottom: 40px;
  margin-top: 0;
}
.page-section3 .uk-width-1-2 {
  padding-left: 90px;
}
.page-section3 .arrow-text-link.outline {
  background-color: #fff;
}
.page-section3 .uk-width-1-3 {
  padding-left: 80px;
  margin-bottom: 80px;
}
.page-section3 p {
  color: #fff;
}
.page-section3 .uk-width-1-3 {
  padding-left: 80px;
}
.page-section3 .uk-grid {
  margin-left: -80px;
}
.page-section3 .imagetop-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
.page-section3 .uk-accordion-title {
  font-size: 24px;
  color: #fff;
}
.category-module.uk-accordion li {
  border-bottom: 1px solid #515148;
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 0;
}
.category-module.uk-accordion {
  border-top: 1px solid #515148;
  width: 750px;
  float: right;
}
.uk-accordion-content {
  color: #bdbdb3;
  font-size: 16px;
  font-weight: 400;
}
.uk-accordion-title::before {
  display: none;
}
.uk-accordion-title::after {
  background: url(https://webtech.kiwi/templates/webtech3/img/Plus-Icon-White.svg);
  width: 25px;
  height: 26px;
  display: block;
  content: "";
  float: right;
  transition: 0.4s ease;
}
.uk-open .uk-accordion-title::after {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(135deg) skew(0deg);
}
.page-section4 {
  background-size: auto;
  background-repeat: no-repeat;
  background-color: #cbff55;
  padding: 100px 0;
}
.page-section4 h2 {
  font-size: 55px;
  font-weight: 400;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.page-section5 {
  background: #fbfbfb;
  padding: 90px 0;
}
.page-section5 h2 {
  font-size: 55px;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.2em;
}
.page-section5 h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 400;
}
.arrow-text-link.outline {
  border: 1px solid #dbdbd0;
}
.news-img {
  height: 240px;
  background: #f1f1f1;
  margin-bottom: 16px;
  background-size: cover;
}
.page-section6 h3 {
  font-size: 44px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 0;
}
.blog-card {
  color: #1f1f1a;
  text-align: left;
  text-decoration: none;
}
.page-section6 .uk-width-1-3 h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 12px;
}
.mod-articles-category-introtext {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4em;
}

.mod-articles-category-introtext > p {
  display: inline;
}
.mod-articles-category-date {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4em;
  margin-bottom: 30px;
  display: inline-block;
}
.blog-card:hover {
  text-decoration: none;
  color: #1f1f1a;
}

.category-module .uk-width-1-3 {
  padding-left: 48px;
}
.page-section6 {
  padding: 90px 0;
}
.footer-logo img {
  max-height: 40px;
}
.footer {
  background: #121212;
  padding: 48px 0;
}
.uk-width-1-2.socials {
  text-align: right;
}
.socials a {
  font-size: 23px;
  color: #cbff55;
  margin: 7px 5px;
  display: inline-block;
  transition: 0.4s ease;
}
.socials a:hover {
  opacity: 0.6;
}
.footer-1 {
  border-bottom: 2px solid #cbff55;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.footer-2 {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.2em;
}
.footer-2 h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.footer-2 a {
  color: #ffffff !important;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
  line-height: 20px;
  transition: color 200ms ease, opacity 200ms ease-in-out;
}
.footer-2 a:hover {
  opacity: 1;
  color: #a0b108;
  text-decoration: none;
}
.footer-2 ul {
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}
.footer-2 .uk-grid .uk-grid {
  margin-left: -32px;
}
.footer-2 .uk-grid .uk-width-1-2 {
  padding-left: 32px;
  color: #fff;
}
.nav-container--open .header-c {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  background: #101112;
}
.nav-container {
  position: absolute;
  top: 0;
  width: 100%;
  background: #101112;
  height: 100vh;
  left: 0;
  padding: 85px 0 40px;
  z-index: 100;
  box-sizing: border-box;
  /* display: none; */
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.container.main-header {
  z-index: 200;
  position: relative;
}
.second-header {
  border-top: 1px solid #000;
  padding: 80px 0;
}
.main-menu li a {
  font-size: 96px;
  line-height: 1em;
  color: #fff;
  border-bottom: 1px solid rgba(237, 255, 71, 0);
  transition: opacity 200ms ease, border-color 200ms ease, color 200ms ease;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.main-menu li a::after {
  content: "";
  background: url(https://webtech.kiwi/templates/webtech3/img/web-right-arrow-g3.svg);
  width: 49px;
  height: 34px;
  display: block;
  position: absolute;
  right: -100px;
  top: 40px;
  transition: 0.4s ease;
}
.main-menu li a:hover::after {
  right: -120px;
}
.main-menu li:hover a {
  text-decoration: none;
  opacity: 0.8;
}
.main-menu ul {
  padding: 0;
  list-style: none;
}
.main-menu ul li {
  padding: 20px 0;
}
.second-menu ul {
  padding: 0;
  list-style: none;
  width: 100%;
}
.second-menu ul li a {
  color: #fff;
  font-size: 24px;
  padding: 5px 0;
  line-height: 1em;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid rgba(237, 255, 71, 0);
  transition: opacity 200ms ease, border-color 200ms ease, color 200ms ease;
  margin: 0;
}
.second-menu ul li a:hover {
  /* border-bottom: 1px solid #cbdd1d; */
  text-decoration: none;
  opacity: 0.8;
  color: #cbff55;
}
.second-menu ul li {
  margin: 10px 0;
}
.second-menu h3 {
  margin-bottom: 8px;
  color: #749920;
  font-weight: 600;
  text-align: left;
  font-size: 16px;
  margin-top: 0;
}
.second-menu ul.smaller li a {
  font-size: 16px;
}
.second-menu ul.smaller li {
  margin: 10px 0;
}
.uk-width-1-4.second-menu {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  /* text-align: left; */
  justify-content: flex-end;
  padding-bottom: 20px;
}
.smaller {
  margin-top: 0;
}
.second-header .uk-grid {
  margin-left: -80px;
}
.second-header .uk-width-3-4,
.second-header .uk-width-1-4 {
  padding-left: 80px;
}
.menu-button.menu-button--active .menu-button-text {
  display: none;
}
.menu-button.menu-button--active .menu-close-text {
  display: block !important;
  color: #fff;
}
.menu-button.menu-button--active .menu-circle {
  background-color: rgb(203, 255, 85);
}
.nav-container.nav-container--active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible;
}
.menu-button {
  cursor: pointer;
}
.menu-button {
  font-weight: 500;
}
.nav-container.nav-container--active .second-header {
  opacity: 1;
  transition: 0.4s ease;
}
.second-header {
  opacity: 0;
  transition: 0.4s ease;
}
.inner-header {
  background: #101112;
  margin-top: -85px;
  padding-top: 85px;
  padding-bottom: 40px;
}
.inner-header h1 {
  font-size: 55px;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  color: #fff;
}
.inner-header h3 {
  color: #868677;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 16px;
}
ul.breadcrumb li a:hover {
  color: #92b349;
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
  color: #92b349;
  text-decoration: none;
}
.inner-header .hero-text-box {
  padding-top: 70px;
  color: #fff;
}

.uk-grid.js-filter {
  position: relative;
}
.project-img {
  height: 394px;
  background-size: cover;
  background-position: center;
}
.main {
  padding: 90px 0;
}
.blog3-content2 h2 {
  font-size: 20px;
  font-weight: 400;
}
.blog3-content .project-content,
.blog3-content .project-cat {
  display: none;
}
.uk-subnav.uk-subnav-pill {
  padding-left: 0;
  margin: 0 auto;
}
.blog3-content2::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #e5e6e0;
  transition: 0.2s ease;
  position: absolute;
  right: 0;
  top: 0;
}
.cols3-blog3 {
  position: relative;
  padding-bottom: 20px;
}
.uk-subnav.uk-subnav-pill li a {
  border: 1px solid #dbdbd0;
  text-transform: none;
  padding: 12px 16px 12px 16px;
}
.uk-subnav-pill > .uk-active > a {
  background-color: #cbff55;
  color: #1f1f1a;
}
.blog3-content2 {
  position: relative;
}
.cols3-blog3:hover .blog3-content2::after {
  background-color: #cbff55;
}
.work-v3 .body.articleview {
  background: #eff0eb;
}
.project-main {
}
.work-v3 .articleview .main {
  padding-top: 0;
}
.project-main {
  padding: 70px 0;
}
.project-main h1,
.project-main h3 {
  margin-top: 0;
}
.project-main h1 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 16px;
}
.tags.inline a {
  display: inline-block;
  padding: 2px 12px;
  background-color: #cbff55;
  -webkit-transition: background-color 200ms ease, opacity 200ms ease,
    color 200ms ease;
  transition: background-color 200ms ease, opacity 200ms ease, color 200ms ease;
  color: #1f1f1a;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.4px;
}
.tags.inline a:hover {
  background-color: #b1ff00;
  text-decoration: none;
}
.tags.inline {
  padding: 0;
  list-style: none;
  /* display: inline-block; */
  width: 100%;
}
.tags.inline li {
  display: inline-block;
  margin-right: 5px;
}
.block1,
.block2,
.block3,
.block4,
.block5 {
  margin-top: 40px;
}
.block1 p,
.block2 p,
.block3 p,
.block4 p,
.block5 p {
  margin-top: 40px;
  margin-bottom: 0;
}
a {
  color: #515148;
  text-decoration: none;
}
.pimg img {
  width: 100%;
}
.about-v3 .inner-header {
  background: #f2f2f1;
  /* text-align: center; */
  padding-bottom: 140px;
}
.about-v3 .hero-text-box .custom {
  margin: 0 auto;
  text-align: center;
}
.about-v3 .inner-header h1 {
  font-size: 44px;
}
.about-v3 .inner-header .hero-text-box {
  padding-top: 140px;
}
.about-v3 .main {
  display: none;
}
.about-v3 .about-section1 {
  background: #f2f2f1;
  padding-bottom: 90px;
}
.about-section1 .uk-width-1-2 {
  padding-left: 128px;
}
.about-section1 .uk-grid {
  margin-left: -128px;
}
.about-section2 {
  background-image: url("https://assets.website-files.com/629017ba48143844a919f547/629694917e6e693a1024fe69_Light%20Grey%20Block%20Shape.svg");
  background-position: 75% 50%;
  background-size: auto;
  background-repeat: no-repeat;
  padding: 140px 0;
}
.about-section2 .uk-width-2-3 {
  padding-left: 128px;
}
.about-section2 h3 {
  margin-bottom: 8px;
  color: #868677;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-section2 h2 {
  font-size: 72px;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: -3px;
  text-transform: none;
}
.about-section3 .uk-width-1-2 {
  padding-left: 80px;
}
.about-section3 .uk-grid {
  margin-left: -80px;
}
.about-section3 .uk-width-1-2 .moduletable + .moduletable {
  margin-top: 80px;
}
.cover-1 {
  height: 980px;
  object-fit: cover;
}
.about-slider {
  background: #cbff55;
}
.about-section3 {
  padding-bottom: 90px;
  padding-top: 90px;
}
.cover2 {
  height: 450px;
  object-fit: cover;
}
.about-slider h2 {
  color: #1f1f1a;
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1.25em;
  margin-top: 0;
}
.about-slider {
  background: #f2f2f1;
  padding: 90px 0;
}
.about-slider .uk-slider-items .custom {
  padding-right: 200px;
  overflow: hidden;
}
.about-slider p {
  color: #1f1f1a;
  font-size: 16px;
}
.about-slider .uk-slidenav-previous {
  top: 0;
  right: 75px !important;
  left: auto;
  z-index: 10;
  transition: 0.4s ease;
}
.about-slider .uk-slidenav-previous:hover {
  opacity: 0.6;
}
.about-slider .uk-slidenav-next {
  top: 0;
  z-index: 10;
  right: 0 !important;
  left: auto;
  transition: 0.4s ease;
}
.about-slider .uk-slidenav-next:hover {
  opacity: 0.6;
}
.about-slider .uk-slidenav-previous::after {
  width: 50px;
  height: 34px;
}
.about-slider .uk-slidenav-next::after {
  width: 50px;
  height: 34px;
}
.uk-dotnav > * > * {
  height: 10px;
  width: 10px;
  background-color: rgba(34, 34, 34, 0.4) !important;
  border: none;
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.uk-offcanvas-bar .uk-dotnav > .uk-active > * {
  background-color: #222 !important;
  border-color: transparent;
}
.uk-dotnav > * {
  padding-left: 8px;
}
.uk-dotnav {
  margin-left: -8px;
  margin-top: 20px;
}
.about-section4 {
  padding: 140px 0;
  text-align: center;
  background: #fbfbfb;
}
.about-section4 h2 {
  font-size: 44px;
  font-weight: 400;
}
.partner-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.about-section4 p {
  max-width: 650px;
  margin: 0 auto;
}
.about-section4 .moduletable:first-child {
  margin-bottom: 48px;
}
.about-section6 {
  padding: 90px 0;
}
.about-section6 h2 {
  font-size: 44px;
  font-weight: normal;
  line-height: 1.25em;
}
.about-section6 .uk-width-2-3 {
  padding-left: 100px;
}
.about-section6 img {
  height: 80px;
}
.about-section6 h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 8px;
}
.about-section6 .uk-width-1-3 {
  margin-bottom: 48px;
}
#rsform_6_page_0 {
  padding: 0;
  border: none;
}
.rsform-input-box,
.rsform-text-box,
.rsform-select-box {
  border-bottom: 1px solid #000 !important;
}
#rsform_6_page_0 #Submit {
  background: #1f1f1a;
  border-color: #1f1f1a;
  color: #fff;
  text-transform: none;
  font-size: 18px;
  padding: 8px 32px;
  border-radius: 0;
  display: inline-block;
  margin-top: 40px;
  transition: 0.4s ease;
  line-height: 1.5;
}
#rsform_6_page_0 #Submit:hover {
  background: #515148;
  color: #eff0eb;
}
.text-overline {
  color: #bdbdb3;
  margin-bottom: 8px;
  color: #868677;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.text-link:hover {
  color: #a0b108;
  text-decoration: none;
}
.text-link {
  transition: 0.4s ease;
}
.contact-links-box {
  margin-bottom: 32px;
}
.contact .main .uk-width-2-3,
.contact .main .uk-width-1-3 {
  padding-left: 128px;
}
.contact .main > .container > form > .uk-grid {
  margin-left: -128px;
}
.contact .hero-text-box .custom {
  max-width: 650px;
}
.clients-v3 .main {
  display: none;
}
.services-v3 .main {
  display: none;
}
.services-section1 {
  padding-top: 140px;
}
.services-section3 {
  padding-bottom: 140px;
}
.services-section4 {
  padding-bottom: 140px;
}
.services-section5 {
  padding-bottom: 140px;
}
.services-section6 {
  padding-bottom: 140px;
}
.services-section1 .uk-width-5-10.text .moduletable,
.services-section3 .uk-width-5-10.text .moduletable,
.services-section5 .uk-width-5-10.text .moduletable {
  padding-left: 128px;
}
.services-section2 .uk-width-5-10.text .moduletable,
.services-section4 .uk-width-5-10.text .moduletable,
.services-section6 .uk-width-5-10.text .moduletable {
  padding-right: 128px;
}
.services-section1 .uk-width-5-10,
.services-section2 .uk-width-5-10,
.services-section3 .uk-width-5-10,
.services-section4 .uk-width-5-10,
.services-section5 .uk-width-5-10,
.services-section6 .uk-width-5-10 {
  display: flex;
  align-items: center;
}
.services-section2 {
  padding: 164px 0;
}
.services-section1 h2,
.services-section2 h2,
.services-section3 h2,
.services-section4 h2,
.services-section5 h2,
.services-section6 h2 {
  font-size: 36px;
  font-weight: 400;
}
.services-v3 .inner-header .hero-text-box {
  padding-top: 140px;
}
.blog-card h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 12px;
}
.latest-news-item-v3 .main .container {
  max-width: 100%;
}
.latest-news-item-v3 .main .container {
  max-width: 100%;
}

.latest-news-item-v3 .main .latest-news_item__top .container {
  max-width: 1330px;
  padding: 0 40px;
}
.latest-news_item__top {
  background: #fff;
  padding: 0 0px 50px;
}
.latest-news-item-v3 .main .latest-news_item__top .container {
  max-width: 1330px;
  padding: 0 40px;
}
.latest-news_item__top h1 {
  font-size: 55px;
  font-weight: normal;
}
.latest-news_item__top .uk-grid {
  margin-left: -64px;
}
.latest-news_item__top .uk-grid .uk-width-1-2 {
  padding-left: 64px;
}
.latest-news_item__main {
  padding-top: 0;
}
.latest-news-item-v3 .latest-news_item__main .container {
  max-width: 1330px;
}
.latest-news-item-v3 .header {
  background: #fff;
}
.latest-news-item-v3 .main {
  padding-top: 0;
}
.border-top {
  border-top: 1px solid #000;
  padding-top: 70px;
}
.latest-news_item__top .news-img {
  height: 100vh;
  background-color: #f1f1f1;
}
.form-success p {
  font-size: 16px;
  margin: 0;
}
.form-success {
  background: #f5f7e9;
  color: #515148;
  padding: 32px;
  text-align: center;
  font-size: 16px;
}
.about-team {
  background: #eff0eb;
  padding: 90px 0;
  /* margin-top: 100px; */
}
.about-section1 {
  padding: 90px 0;
}
.about-team .recentwork-img {
  filter: grayscale(1);
  background-position: top;
}
.about-team .mod-articles-category-introtext {
  margin-top: 0;
}
.menu-text-container a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
}
.uk-accordion li {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.work .articleview .inner-header {
  display: none;
}
.work .articleview .main .container {
  max-width: 100%;
  padding: 0;
}
.project-main {
  max-width: 1245px;
  margin: 0 auto;
  /* padding: 0 40px; */
}
.project-banner video {
}
.project-item-img {
  background-size: cover;
  height: 100%;
  background-position: bottom center;
}
.page-section1 p {
  font-size: 24px;
}
.work .articleview .main {
  padding-top: 0;
}
.project-banner {
  height: 80vh;
  overflow: hidden;
}
.project-item-banner {
  background: #101112;
  position: relative;
  justify-content: flex-end;
  display: flex;
}
.project-banner-media {
  width: 60%;
  align-self: flex-end;
}
.project-item-banner .uk-width-4-10 {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-direction: column;
}
.project-item-banner .project-item-intro {
  width: 425px;
}
.project-item-intro h1 {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
}
.project-banner-intro {
  /* max-width: 1245px; */
  /* margin: 0 auto; */
  /* padding: 0 30px; */
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  z-index: 10;
}
.project-item-banner .project-item-intro {
  max-width: 1245px;
  margin: 0 auto;
  width: 100%;
}
.project-item-intro-c {
  max-width: 600px;
}
.project-item-img {
  position: relative;
}
.project-item-img::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.71) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.project-item-banner .project-item-intro p {
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
}
.project-item-img {
  height: 90vh;
}
.project-item-banner .uk-grid {
  align-items: center;
}
.about-section1 p {
  font-size: 20px;
}
.page-section2 .recentwork-text::before {
  content: "View Project";
  position: absolute;
  right: 30px;
  font-size: 18px;
}
.blog3-content2::before {
  content: "View Project";
  position: absolute;
  right: 30px;
  font-size: 18px;
}
.top-menu {
  display: flex;
  float: right;
  gap: 20px;
}
.top-menu a {
  color: #000;
  text-decoration: none;
}
.about .main {
  display: none;
}
.pager.pagenavadasdas {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}
.pager.pagenavadasdas .previous img {
  transform: rotate(180deg);
  height: 20px;
  margin-right: 20px;
}
.pager.pagenavadasdas .next img {
  height: 20px;
  margin-left: 20px;
}
.pager.pagenavadasdas .previous a {
  transition: 0.4s ease;
  color: #000;
  text-decoration: none;
  position: relative;
  left: 0;
}
.pager.pagenavadasdas .next a {
  transition: 0.4s ease;
  color: #000;
  text-decoration: none;
  position: relative;
  right: 0;
}
.pager.pagenavadasdas .previous a:hover {
  left: -40px;
  position: relative;
}
.pager.pagenavadasdas .next a:hover {
  /* margin-right: -40px; */
  position: relative;
  right: -40px;
}
.services .main {
  display: none;
}
.services .page-section3 {
  background: #fff;
}
.services .page-section3 h2 {
  color: #000;
}
.services .page-section3 .uk-accordion-title {
  color: #000;
}
.services .uk-accordion-content {
  color: #000;
}
.services .uk-accordion-title::after {
  background: url(https://webtech.kiwi/templates/webtech3/img/Plus-Icon-Black.svg);
  width: 25px;
  height: 26px;
  display: block;
  content: "";
  float: right;
  transition: 0.4s ease;
}
.uk-accordion-content a {
  color: #cbff55;
  font-weight: 500;
}
.services .page-section3 p {
  color: #000;
}
.services .uk-accordion-content a {
  color: #868677;
  font-weight: 500;
}
.hero-text-box .uk-grid {
  margin-top: 60px;
  margin-bottom: 50px;
}
.hero-text-box .uk-grid .uk-width-1-2 {
  padding-left: 90px;
  width: 100%;
  margin-bottom: 40px;
  font-size: 20px;
}
.hero-text-box .uk-grid .uk-width-1-2 p {
  font-size: 20px;
}
.hero-text-box .uk-grid {
  margin-left: -90px;
}
.inverted:not(.nav-container--open) .header:not(.uk-active) .logo img {
  display: block;
}
.inverted:not(.nav-container--open)
  .header:not(.uk-active)
  .logo
  img.hidden-revert {
  display: none;
}
.inverted:not(.nav-container--open) .header:not(.uk-active) .menu-button-text {
  color: #000;
}
.inverted:not(.nav-container--open) .header:not(.uk-active) .top-menu a {
  color: #000;
}
.inverted:not(.nav-container--open) .header:not(.uk-active) .menu-circle {
  color: #000;
}
.inverted:not(.nav-container--open) .header:not(.uk-active) .menu-circle {
  background-color: #000;
  border-color: #000;
}
.item-page .page-header {
  background: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.item-page .page-header h2 {
  color: #000;
  font-size: 60px;
  font-weight: 400;
}
.top-menu2 {
  margin-right: 200px;
}
.top-menu2 a {
  margin: 0 15px;
  font-weight: 500;
}
.top-menu2 a {
  color: #fff;
}
.menu-button-text {
  color: #fff;
}
.home.nav-container--open {
  overflow: hidden;
}
.menu-circle {
  background: #cbff55;
  border-color: #cbff55;
}
.clients-v3 .about-section4 {
  background: #f1f1f1;
}
.partner-logo img {
  max-height: 50px !important;
  width: auto !important;
}
.partner-logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-curtain {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 5000;
  transition: left 3s ease-in-out;
  animation: curtainloading 2s ease-in-out 200ms 1 normal forwards;
}
.greenbg {
  background: #cbff55;
}
.hidden-revert {
  display: none;
}
.logo img {
  display: none;
}
.logo .hidden-revert {
  display: block;
}
.header.uk-sticky.uk-active.uk-sticky-below.uk-sticky-fixed {
  background: #101112;
}
.projects .category-item .cat-img {
  position: relative;
  width: 0;
  height: 391px;
  z-index: 10;
  background-size: cover;
  margin-left: 120px;
  margin-top: 15px;
  background-position: center;
  transition: 1s ease;
}
.projects .mod-articles-category-title {
  /* font-family: Barlow; */
  font-weight: 400;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  max-width: 100%;
  display: inline-block;
  z-index: 10;
  position: relative;
  transition: 0.4s ease;
}
.sliderp-text p {
  font-size: 20px;
  color: #fff;
}
.sliderp-text .btn {
  color: #fff;
}
.projects .mod-articles-category-introtext {
  font-size: 19px;
  max-width: 290px;
  color: #fff !important;
  position: relative;
  transition: 0.4s ease;
  opacity: 1;
}
.page-section6 .category-module.uk-grid {
  margin-left: -48px;
}
.projects .uk-scrollspy-inview .category-item:hover .cat-img {
  opacity: 1;
}
.cat-num {
  font-size: 97px;
  font-weight: bold;
  position: absolute;
  right: 70px;
  color: #000;
  opacity: 0.8;
  top: 100px;
  width: 77px;
  text-align: center;
  z-index: 100;
}
#Message {
  padding-top: 5px !important;
}
.section2.projects::after {
  content: "";
  background-color: #131313;
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-image: url(../img/pattern-grey.png);
}
.aside.move .fa.fa-chevron-down {
  display: none;
}
.aside.move .scrolltop {
  display: block !important;
}
.items-leading.clearfix.uk-grid.category-module {
  margin-left: -48px;
}
/*
.projects a:hover .mod-articles-category-introtext, .projects a:hover .mod-articles-category-title {
	color: #101112 !important;
}*/
.projects .category-item {
  position: relative;
  margin-bottom: 100px !important;
}
.sliderp-img {
  position: relative;
  overflow: hidden;
  padding-left: 0;
}
.sliderp-img .uk-child-width-1-1\@m > * {
  width: 65%;
}
.projects .category-item-content {
  position: absolute;
  top: 100px;
  z-index: 10;
}
.projects .uk-scrollspy-inview .category-item .cat-img {
  width: 80%;
  opacity: 0.5;
}
/*
.proj-item:hover .category-item-content::before {
	width: calc(100% + 40px);
}
.proj-item .category-item-content::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	width: 0;
	height: calc(100% + 40px);
	transition: .4s ease;
	background: #CBFF55;
}*/
ul#uk-slider-1-items {
  margin-left: 0;
}
.sliderp-container {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-direction: column;
}
.sliderp-text {
  max-width: 300px;
  position: relative;
  z-index: 10;
}
.sliderp-text .uk-slidenav-previous {
  top: auto;
  bottom: -100px;
  padding: 0;
  margin: 0;
}
.sliderp-text .uk-slidenav-next {
  bottom: -100px;
  top: auto;
  margin: 0;
  padding: 0;
  /* transform: rotate(180deg); */
  left: 60px;
}
.section2.projects {
  padding-top: 100px;
  background: #101112;
  position: relative;
}
.sliderp-img {
  position: relative;
  z-index: 10;
}
.sliderp-text h3 {
  font-size: 52px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 40px;
}
.aside {
  position: fixed;
  left: 0;
  top: 0;
  width: 60px;
  white-space: normal;
  word-break: break-all;
  background: #000;
  height: 100%;
  z-index: 99;
}
.asidemenu {
  position: absolute;
  top: 15px;
  left: 15px;
}
.asidemenu::before {
  content: "";
  display: block;
  width: 0;
  transition: 0.4s ease;
  height: 3px;
  background: #fff;
}
.asidemenu::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #fff;
  transition: 0.6s ease;
  margin-top: 5px;
}
.closemenu {
  display: none;
}
.closemenu {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    top 0.2s ease-in-out;
  -webkit-animation: fadeDown 4s cubic-bezier(0.8, 0, 0.2, 1);
  animation: fadeDown 4s cubic-bezier(0.8, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  animation-delay: 0s;
}
.aside.move img {
  opacity: 1;
}
.aside img {
  top: 30%;
  position: relative;
  max-width: 80%;
  margin: 5px;
}
.move .asidemenu::after,
.move .asidemenu::before {
  width: 30px;
}
.aside .fa.fa-chevron-down {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #fff;
}
.aside .fa.fa-chevron-up {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #fff;
}
.aside .fa-chevron-down {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    top 0.2s ease-in-out;
  -webkit-animation: fadeDown 4s cubic-bezier(0.8, 0, 0.2, 1) infinite;
  animation: fadeDown 4s cubic-bezier(0.8, 0, 0.2, 1) infinite;
  animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  display: block;
}
.aside img {
  opacity: 0;
  transition: 0.4s ease;
}
.hero-text-box ul li:before {
  content: "";
}
.hero-text-box ul li {
  list-style: ;
  list-style-image: url(../img/white-arrow.svg);
  margin-bottom: 10px;
  width: 40%;
}
.hero-text-box ul {
  /* padding-left: 0; */
  column-count: 2;
  display: flex;
  column-gap: 2vw;
  flex-wrap: wrap;
  /* width: 40%; */
}
.hero-text-box .uk-grid .uk-width-1-2 {
  padding-left: 90px;
  width: 100%;
  margin-bottom: 40px;
}

.main-menu .menu2 li a {
  font-size: 40px;
  transition: 0.4s ease;
}
.main-menu .menu2 ul li {
  padding: 15px 0;
}
.main-menu-container {
  position: relative;
}

.menu2 h3 {
  color: #fff;
  border-bottom: 1px solid #749920;
  padding-bottom: 20px;
}
.main-menu .menu2 li a:after {
  content: none;
}
.menu2.open {
  transform: translateY(0);
  transition: 0.4s ease;
}
.menu2 {
  transform: translateY(-100%);
  transition: 0.4s ease;
  /* opacity: 0; */
  position: absolute;
  top: 0;
}
.main-menu .menu2 li a:hover {
  padding-left: 20px;
}
.menu1.close {
  /* opacity: 0; */
  transform: translateY(-100%);
}
.menu2.open {
  transform: translateY(0);
  transition: 0.4s ease;
  opacity: 1;
  top: 0;
}
.main-menu-container {
  overflow: hidden;
}
.menu1 {
  transition: 0.4s ease;
  transform: translateY(0);
}
@keyframes curtainloading {
  0% {
    left: 0;
    transition: left 3s ease-in-out;
  }
  100% {
    left: 300%;
    transition: left 3s ease-in-out;
  }
}

@keyframes fadeDown {
  0% {
    -webkit-transform: translateY(-1rem) rotate(0deg);
    transform: translateY(-1rem);
    opacity: 0;
  }
  3%,
  87% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  90% {
    opacity: 0;
    -webkit-transform: translateY(1rem) rotate(0deg);
    transform: translateY(1rem) rotate(0deg);
  }
}

.services-2b .uk-width-1-2.img-border img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.services-2b h3 {
  font-weight: 500;
  /* text-transform: uppercase; */
}
.services-2b .learn-more {
	width: 100%;
	display: block;
	border: 1px solid #000;
	color: #000;
	text-align: center;
	padding: 10px;
	border-radius: 100px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	font-wee: b;
	font-weight: bold;
	text-transform: uppercase;
}
.services-2b .imagelefttext {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-2b .moduletable {
  border-top: 1px solid #000;
  margin-bottom: 100px;
  padding-top: 50px;
}
.services-2b .mod-title {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 35px;
}
.services-2b .imagelefttext ul {
	column-count: 2;
  -webkit-column-count: 2;
	list-style: none;
	padding: 0;
	column-gap: 20px;
}
.services-2b .imagelefttext ul li {
	margin-bottom: 10px;
}
.services-2b .image-left img {
	height: 500px;
	object-fit: cover;
	width: 100%;
}
.inner-header.inner-pageheader2 .uk-width-1-2 {
	padding-left: 100px;
}
.inner-header.inner-pageheader2 .uk-grid {
	margin-left: -100px;
}
.inner-header.inner-pageheader2 img {
	height: 100%;
	object-fit: cover;
	object-position: left;
}
.inner-header.inner-pageheader2 .uk-width-1-2:nth-child(2) .custom, .inner-header.inner-pageheader2 .uk-width-1-2:nth-child(2) p {
	height: 100%;
}
.inner-header.inner-pageheader2 {
	padding-bottom: 0;
}
.services-2 .main {
  display: none;
}
.services-2a.page-section2 {
  padding-bottom: 0;
}
.services-2a.page-section2 .moduletable:last-child {
  border-top: 1px solid #000;
  margin-top: 40px;
}
.services-2a.page-section2 p {
  font-size: 30px;
  line-height: 1.4;
}
.services-2a.page-section2 h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 40px;
}
.services-2b .brand .mod-title::before {
  content: "";
  background: url(../img/webtech-icon1.svg);
  width: 50px;
  height: 50px;
  display: block;
  background-size: cover;
  margin-bottom: 20px;
  float: left;
}
.services-2b .cloud .mod-title::before {
  content: "";
  background: url(../img/webandcloudhosting.svg);
  width: 70px;
  height: 50px;
  display: block;
  background-size: cover;
  margin-bottom: 20px;
  float: left;
}
.services-2b .creative-prod .mod-title::before {
  content: "";
  background: url(../img/creative-prod.svg);
  width: 50px;
  height: 50px;
  display: block;
  background-size: cover;
  margin-bottom: 20px;
  float: left;
}
.services-2b .web .mod-title::before {
	content: "";
	background: url(../img/web.svg);
	width: 71px;
	height: 50px;
	display: block;
	background-size: cover;
	margin-bottom: 20px;
	float: left;
  }
  .services-2b .marketing .mod-title::before {
	content: "";
	background: url(../img/mark.svg);
	width: 50px;
	height: 50px;
	display: block;
	background-size: cover;
	margin-bottom: 20px;
	float: left;
  }  
.services-2b .learn-more::before {
	content: "";
	background: url(../img/black-dash.svg);
	display: inline-block;
	height: 15px;
	width: 10px;
	background-size: cover;
	margin-right: 10px;
	transition: .4s ease
}
.services-2b .learn-more:hover::before {
	content: "";
	background: url(../img/green-dash.svg);
	background-position: center;
	background-size: cover;
}
.announcement {
	background: #cbff55;
	padding: 10px 0;
}
.announcement p {
	color: #000;
	padding: 0;
	margin: 0;
	font-weight: 500;
	text-align: center;
}
.single .page-header h1 {
	color: #000;
	font-size: 50px;
	margin-bottom: 40px;
}

.project-item-img2 {
  height: 752px;
  background-position: center;
  background-size: cover;
}
.project-banner-intro2 {
  max-width: 1245px;
  margin: 0 auto;
}
.project-main2 {
  max-width: 1245px;
  margin: 0 auto;
}
.project-banner-intro2 h1 {
  font-size: 101px;
  font-weight: 500;
}
.categoy-tag .tags.inline a {
	background: #CCFF55;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	padding: 0 9px;
}
.projdesc {
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
}
.projdesc h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
.projdesc h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 0;
}
.projdesc p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.projdesc h4 {
  font-size: 14px;
  margin-top: 0;
  font-weight: bold;
}
.projdesc a {
  color: #515148;
  font-size: 14px;
  text-decoration: underline;
}
.projdesc .tags.inline a {
  background: none;
  padding: 0;
}
.projdesc .tags.inline a:after {
  content: ",";
  margin-left: -2px;
}
.projdesc .tags.inline a {
  background: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  letter-spacing: 0;
}
.projdesc .tags.inline li:last-child a:after {
  content: none;
}
.projblocks {
  max-width: 1245px;
  margin: 0 auto;
}
.ph_base1 {
	background: #242424;
	display: flex;
	flex-direction: row;
}
.ph_basea {
	width: 55%;
	align-items: center;
	justify-content: center;
	display: flex;
}
.ph_baseb {
	width: 45%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.ph_basea video {
	max-width: 534px;
}
.ph_baseb img {
	max-width: 484px;
}