@font-face {
	font-family: Georgetown;
	src:url(../fonts/Georgetown/Georgetown-regular.eot);
	src:url(../fonts/Georgetown/Georgetown-regular-1.eot) format("embedded-opentype"),
	url(../fonts/Georgetown/Georgetown-regular.woff2) format("woff2"),
	url(../fonts/Georgetown/Georgetown-regular.woff) format("woff");
	font-weight:400;
	font-style:normal;
	text-rendering:optimizeLegibility
}
@font-face {
	font-family:Georgetown;
	src:url(../fonts/Georgetown/Georgetown-bold.eot);
	src:url(../fonts/Georgetown/Georgetown-bold-1.eot) format("embedded-opentype"),
	url(../fonts/Georgetown/Georgetown-bold.woff2) format("woff2"),
	url(../fonts/Georgetown/Georgetown-bold.woff) format("woff");
	font-weight:700;
	font-style:normal;
	text-rendering:optimizeLegibility
}
@font-face {
	font-family: Georgetown;
	src:url(../fonts/Georgetown/Georgetown-medium.eot);
	src:url(../fonts/Georgetown/Georgetown-medium-1.eot) format("embedded-opentype"),
	url(../fonts/Georgetown/Georgetown-medium.woff2) format("woff2"),
	url(../fonts/Georgetown/Georgetown-medium.woff) format("woff");
	font-weight:500;
	font-style:normal;
	text-rendering:optimizeLegibility
	}
@font-face {
    font-family: 'Georgetown';
    src: local('Georgetown Light'), local('Georgetown-Light'),
        url('../fonts/Georgetown/Georgetown-Light.woff2') format('woff2'),
        url('../fonts/Georgetown/Georgetown-Light.woff') format('woff'),
        url('../fonts/Georgetown/Georgetown-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
@font-face {
    font-family: 'kaushan';
    src: /*url('../fonts/kaushan/kaushan.woff2') format('woff2'),
         url('../fonts/kaushan/kaushan.woff') format('woff'),*/
         url('../fonts/kaushan/kaushan.ttf') format('truetype')/*,
         url('../fonts/kaushan/kaushan.svg') format('svg')*/;
    font-weight: normal;
    font-style: normal;

}
@font-face {
	font-family: 'kabut';
	src: /*url('../fonts/kaushan/kaushan.woff2') format('woff2'),
         url('../fonts/kaushan/kaushan.woff') format('woff'),*/
	url('../fonts/kabut/marker.ttf') format('truetype') /*,
         url('../fonts/kaushan/kaushan.svg') format('svg')*/;
	font-weight: normal;
	font-style: normal;
}

/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

:root{

  --color-light: #FFA54F;

  --color-medium: #FF9834;

  --color-dark: #FF8919;

  --color-darkest: #FF7C00;

  --animation-speed: 8s;

  --animation-loop: infinite;

}



@keyframes loader {

  0%{

    background: var(--color-dark);

    width:0%;

  }20%{

    width:100%;

  }39%{

    background: var(--color-dark);

  }40%{

    background: var(--color-light);

    width: 0%

  }60%{

    width: 100%;

  }80%{

    width:0%;

  }100%{

    background: var(--color-light);

    width: 0%;

  }

}



@keyframes loaderAlt {

  0%{

    background: var(--color-darkest);

    width:100%;

  }19%{

    background: var(--color-darkest);

  }20%{

    background: var(--color-medium);

    width: 0%;

  }40%{

    width: 100%;

  }59%{

    background: var(--color-medium);

  }60%{

    background: var(--color-darkest);

    width: 0;

  }80%{

    width: 100%;

  }100%{

    background: var(--color-darkest);

    width: 100%

  }

}



.loader{

  display: flex;

  flex-direction: column;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999999999;

  background: #2c2631;

}



.loader__bar{

  display: flex;

  flex: 1;

  position: relative;

  width: 100%;

  height: 100%;

  z-index: 9999999999;

}



.loader__bar:before{

  animation: loader ease var(--animation-speed) var(--animation-loop);

  animation-delay: 100ms;

  background: var(--color-darkest);

  background-size: 200% 200%;

  content: "";

  height:100%;

  width: 0%;

}



.loader__bar:after{

  animation: loaderAlt ease var(--animation-speed) var(--animation-loop);

  animation-delay: 100ms;

  background: var(--color-darkest);

  background-size: 200% 200%;

  content: "";

  height: 100%;

  width: 100%;

}



.loader__bar--delay-1:before,

.loader__bar--delay-1:after{

  animation-delay: 200ms;

}



.loader__bar--delay-2:before,

.loader__bar--delay-2:after{

  animation-delay: 300ms;

}



.loader__bar--delay-3:before,

.loader__bar--delay-3:after{

  animation-delay: 400ms;

}



.loader__bar--delay-4:before,

.loader__bar--delay-4:after{

  animation-delay: 500ms;

}



.loader__bar--delay-5:before,

.loader__bar--delay-5:after{

  animation-delay: 600ms;

}

.browser-screen-loading-content {

  text-align: center;

  height: 2em;

  max-width: 100%;

  position: absolute;

  top: 0;

  right: 0;

  bottom: 3em;

  left: 0;

  margin: auto;

}

.loading-dots {

  margin-left: -1.5em;

  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  filter: alpha(opacity=0);

  -webkit-animation: loading-dots-fadein .5s linear forwards;

  -moz-animation: loading-dots-fadein .5s linear forwards;

  -o-animation: loading-dots-fadein .5s linear forwards;

  -ms-animation: loading-dots-fadein .5s linear forwards;

  animation: loading-dots-fadein .5s linear forwards;

}

.loading-dots i {

  width: .5em;

  height: .5em;

  display: inline-block;

  vertical-align: middle;

  background: #e0e0e0;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  margin: 0 .125em;

  -webkit-animation: loading-dots-middle-dots .5s linear infinite;

  -moz-animation: loading-dots-middle-dots .5s linear infinite;

  -o-animation: loading-dots-middle-dots .5s linear infinite;

  -ms-animation: loading-dots-middle-dots .5s linear infinite;

  animation: loading-dots-middle-dots .5s linear infinite;

}

.loading-dots.dark-gray i {

  background: #28AE61;

}

.loading-dots i:first-child {

  -webkit-animation: loading-dots-first-dot .5s infinite;

  -moz-animation: loading-dots-first-dot .5s linear infinite;

  -o-animation: loading-dots-first-dot .5s linear infinite;

  -ms-animation: loading-dots-first-dot .5s linear infinite;

  animation: loading-dots-first-dot .5s linear infinite;

  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  filter: alpha(opacity=0);

  -webkit-transform: translate(-1em);

  -moz-transform: translate(-1em);

  -o-transform: translate(-1em);

  -ms-transform: translate(-1em);

  transform: translate(-1em);

}

.loading-dots i:last-child {

  -webkit-animation: loading-dots-last-dot .5s linear infinite;

  -moz-animation: loading-dots-last-dot .5s linear infinite;

  -o-animation: loading-dots-last-dot .5s linear infinite;

  -ms-animation: loading-dots-last-dot .5s linear infinite;

  animation: loading-dots-last-dot .5s linear infinite;

}





@-moz-keyframes loading-dots-fadein{100%{opacity:1;-ms-filter:none;filter:none}}

@-webkit-keyframes loading-dots-fadein{100%{opacity:1;-ms-filter:none;filter:none}}

@-o-keyframes loading-dots-fadein{100%{opacity:1;-ms-filter:none;filter:none}}

@keyframes loading-dots-fadein{100%{opacity:1;-ms-filter:none;filter:none}}



@-moz-keyframes loading-dots-first-dot{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em);opacity:1;-ms-filter:none;filter:none}}

@-webkit-keyframes loading-dots-first-dot{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em);opacity:1;-ms-filter:none;filter:none}}

@-o-keyframes loading-dots-first-dot{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em);opacity:1;-ms-filter:none;filter:none}}

@keyframes loading-dots-first-dot{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em);opacity:1;-ms-filter:none;filter:none}}





@-moz-keyframes loading-dots-middle-dots{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em)}}

@-webkit-keyframes loading-dots-middle-dots{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em)}}

@-o-keyframes loading-dots-middle-dots{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em)}}

@keyframes loading-dots-middle-dots{100%{-webkit-transform:translate(1em);-moz-transform:translate(1em);-o-transform:translate(1em);-ms-transform:translate(1em);transform:translate(1em)}}





@-moz-keyframes loading-dots-last-dot{100%{-webkit-transform:translate(2em);-moz-transform:translate(2em);-o-transform:translate(2em);-ms-transform:translate(2em);transform:translate(2em);opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}}

@-webkit-keyframes loading-dots-last-dot{100%{-webkit-transform:translate(2em);-moz-transform:translate(2em);-o-transform:translate(2em);-ms-transform:translate(2em);transform:translate(2em);opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}}

@-o-keyframes loading-dots-last-dot{100%{-webkit-transform:translate(2em);-moz-transform:translate(2em);-o-transform:translate(2em);-ms-transform:translate(2em);transform:translate(2em);opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}}

@keyframes loading-dots-last-dot{100%{-webkit-transform:translate(2em);-moz-transform:translate(2em);-o-transform:translate(2em);-ms-transform:translate(2em);transform:translate(2em);opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}}

body{

	color: #000;

	background: #fff;

    transition: background-color 1s ease;

	font-family: 'Georgetown',Helvetica,Arial,serif;
	overflow-x: hidden;

}

a {

  color: inherit;

  background-color: transparent;

 -webkit-text-decoration-skip: objects;

}



a:hover, a:active, a:focus,.btn:focus {

  color: currentColor;

  outline: none;

  text-decoration: none;

  box-shadow: none;

}





ul,ol{

	list-style: none;

	padding: 0;

	margin: 0;

}

img{

	max-width: 100%;

	height: auto;

}

.btn ,button {

	-webkit-transition: all 0.5s;

    -o-transition: all 0.5s;

    -moz-transition: all 0.5s;

}



@media (min-width: 992px) {

	

}

@media (min-width: 1200px) {

  .container {

    max-width: 1170px;

  }

}

@media (min-width: 1240px) {

  .container {

    max-width: 1200px;

  }

}

@media (min-width: 1340px) {

  .container {

    max-width: 1280px;

  }

}

@media (min-width: 1680px) {

  .container {

    max-width: 90%;

  }

}



.u-fade-in {

    opacity: 0;

    transform: translate3d(0,30px,0);

    transition-duration: 2.5s;

    transition-property: opacity,transform;

    transition-timing-function: cubic-bezier(.165,.84,.44,1);

    will-change: opacity,transform;

}

.u-fade-in.is-visible, .is-visible .u-fade-in {

    opacity: 1;

    transform: translate3d(0,0,0);

}

.work-item:first-cild .u-fade-in.is-visible{

	transition-delay: 0;

}

.work-item:nth-child(3n+2) .u-fade-in.is-visible{

	transition-delay: 250ms;

}

.work-item:nth-child(3n+3) .u-fade-in.is-visible{

	transition-delay: 450ms;

}

.work-item:nth-child(3n+4) .u-fade-in.is-visible{

	transition-delay: 650ms;

}

.floating--image {

	 opacity:0;

	 transition: all linear 500ms;

	 -webkit-transition: all linear 500ms;

	 -moz-transition: all linear 500ms;

	 -o-transition: all linear 500ms;

	 -ms-transition: all linear 500ms;

	 transition-delay:0

}

 .floating--image.swipe{

	 opacity: 1;

	 transition-delay:500ms

}

.reveal-box{

 opacity: 0;

  -webkit-transform: translate3d(0, 50px, 0);

          transform: translate3d(0, 50px, 0);

  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;

  transition: opacity 0.8s, -webkit-transform 0.8s;

  transition: opacity 0.8s, transform 0.8s;

  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;

}

.reveal_visible{

opacity: 1;

  -webkit-transform: translate3d(0, 0, 0);

          transform: translate3d(0, 0, 0);

}



/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

.headroom {

  position: fixed;

  z-index: 999999;

  right: 0;

  left: 0;

  top: 0;

  padding: 10px 0;

  transition: all .25s ease-in-out;

  backface-visibility: hidden;

  z-index: 100;

  *zoom: 1;

}

.headroom:before, .headroom:after {

  content: " ";

  display: table;

}

.headroom:after {

  clear: both;

}



.headroom--pinned {

  transform: translateY(0%);

  

}

.headroom--unpinned {

  transform: translateY(-100%);

}

.headroom--not-top {

  padding: 10px 0;

  background-color: #2C2631;

}

.header-fixed .headroom--not-top {

   background-color: transparent;

}

.header-fixed .headroom--unpinned{

	transform: translateY(0)!important;

}

.custom-logo-md{

	display: none;

}

.custom-logo-sm {

	display: flex;

	align-items: center;

	margin: 0;

	color: #fff;

	font-weight: 400;

	font-size: 40px;

}

.header-custom .custom-logo-sm i{

	color:  #2C2631;

	font-style: normal;

}

.header-fixed .header-custom .custom-logo-sm i{

	color:  #fff;

	font-style: normal;

}

.custom-logo-sm span{

	display: flex;

	align-items: center;

	justify-content: center;

	width: 50px;

	height: 50px;

	font-size: 30px;

	margin: 0 0 0 10px;

	border-radius : 50%;

	background-color: #28AE61;

}

.visible-light {

	transition: all 0.5s;

}

.headroom--not-top .logo-full,

.header-fixed .logo-full {

	display: none;

}

.header-custom.headroom--not-top .site-logo-img svg #text-fill path,

.header-fixed .header-custom .site-logo-img svg #text-fill path

 {

	fill: #fff!important;

}

.logo-small {

	display: none;

	transition: all 0.5s;

	margin-top: -2px;

}

.headroom--not-top .logo-small {

	display: block;

	transition: all 0.5s;

}

.header-fixed .logo-small {

	display: block;

	transition: all 0.5s;

}

.header-custom .custom-logo-sm {

	

}

.header-custom .custom-logo-sm .st0{fill:#2D2935;}

.header-custom .custom-logo-sm .st1{fill:#EB621A;}

.header-custom .custom-logo-sm .st2{fill:#FFFFFF;}



.header-custom.headroom--not-top .custom-logo-sm .st0{fill:#fff;}

@media (min-width: 992px) {

	.site-header{

		padding: 10px 0;

	}

	.custom-logo-md	{

		display: block;

	}

	.custom-logo-sm {

		display : none;

	}

	.headroom--not-top {

	  padding: 30px 0;

	}

	.header-fixed .headroom--not-top {

		padding: 50px 0;

	}

}

.burger-menu{

	line-height: 1;

	font-size : 0;

	position: relative;

	z-index: 5

}

#header .hamburger {

  width: 25px;

  height: 25px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  cursor: pointer;

}

#header .hamburger.is-active .bar-1 {

  transform: translate3d(-5px, 3px, 0) rotate(-45deg);

}

#header .hamburger.is-active .bar-2 {

  transform: translate3d(-5px, -3px, 0) rotate(45deg);

}

#header .hamburger .bar {

  width: 100%;

  height: 3px;

  background-color: #fff;

  transition: background-color 400ms cubic-bezier(0.8, 0, 0.55, 0.94), transform 400ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

#header #header_gray .bar {

   background-color: #2C2631; 

}



#header.headroom--not-top #header_gray .bar {

   background-color: #fff; 

}

.page-contact #header .hamburger .bar ,

.error404 #header .hamburger .bar {

	background-color: #2C2631; 

}

.page-contact #header.headroom--not-top .hamburger .bar ,

.error404 #header.headroom--not-top .hamburger .bar {

	background-color: #fff; 

}

.header-fixed #header #header_gray .bar {

  background-color: #fff;

}

#header .hamburger .bar-1 {

  transform-origin: 100% 0;

  transform: translate3d(0, 5px, 0);

}

#header .hamburger .bar-2 {

  transform-origin: 100% 100%;

  transform: translate3d(0, -5px, 0);

}

.menu-logo{

	display: none;

	transition: all 0.5s;

}

.header-fixed .menu-logo{

	display: block;

}

.header-logo{

	display: block;

	transition: all 0.5s;

}

.header-fixed .header-logo{

	display: none;

}

.menu-overlay {
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, -100%, 0);
	width: 100%;
	height: 100%;
	background-color: #2C2631;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 90px 0;
	overflow: auto;
	transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
	overflow-y: hidden;
}

.menu-overlay.is-active {

  opacity: 1;

  visibility: visible;

  transform: translate3d(0, 0, 0);

  transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

.menu-overlay.is-active .menu-links {

  opacity: 1;

  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;

}

.menu-overlay.has-hovered-link .link {

  color: rgba(255, 255, 255, 1);

}

.menu-overlay.has-hovered-link .link:hover {

  color: #28AE61;

  text-shadow: none;

}

.menu-overlay .menu-links {

  opacity: 0;

  position: relative;

  font-size: 25px;

  font-weight: 400;

  letter-spacing: -0.03em;

  line-height: 1.05em;

  width: 100%;

  padding-left: 0;

  list-style: none;

  padding-top: 0;

  transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94);
  margin-top: 4vh;

}
@media(max-height: 854px) {
	.menu-overlay .menu-links {
		margin-top: 9vh !important;
	}
}
.menu-overlay .menu-bottom {

  opacity: 0;

  position: relative;

  font-size: 17px;

  font-weight: 300;

  color: #fff;

  width: 100%;

  padding-top: 20px;

  transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

.menu-overlay.is-active .menu-bottom {

  opacity: 1;

  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;

}

.menu-overlay .menu-links li{

	display: block;

	margin: 0 0 5px;

  color: #fff;

}



.menu-overlay .link {

  display: inline-block;

  color: #FFF;

  user-select: none;

  cursor: pointer;

  margin-top: 0em;  

  transition: text-shadow 400ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms, color 400ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;

}

.has-menu-overlay .menu-overlay .link {

  transition: text-shadow 400ms cubic-bezier(0.8, 0, 0.55, 0.94), color 400ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

.menu-overlay .link.current_page_item a{

  color: #28AE61;

}

.menu-overlay .link a {

  text-decoration: none;

  line-height: 0.6;

  color: #fff;

}

.menu-overlay .link a:hover {

  text-decoration: none;

  color: #28AE61!important;

}

.menu-bottom h2{

	margin-bottom: 20px;

}

@media all and (max-width: 568px) {

	.site-logo-img .logo-full{

		width: 220px;

	}	

	.site-logo-img .logo-small{

		width: 78px;

	}

}

@media all and (max-width: 767.69px) {

	.menu-overlay .menu-links li {

		margin-bottom:20px;

		line-height:1.2;

	}

	.menu-overlay .menu-bottom {

		font-size: 19px;

	}

	.menu-bottom ul li {

		margin-bottom: 5px;

	}

	.site-logo-img svg	{

		width: 190px!important;

	}

}

@media(max-width:768px) {

	.menu-overlay .menu-links li {

		font-size:25px;

	}

}

@media all and (min-width: 768px) {

	.menu-overlay .menu-bottom .address{

		padding-right: 150px;

	}

	.menu-bottom h2{

		margin-bottom: 30px;

	}

	.menu-overlay .menu-bottom {

		padding-top: 20px;

	}	

	.menu-overlay  {

		padding: 150px 0;

	}

}

@media all and (min-width: 600px) {

  .menu-overlay .menu-links {

    margin: 5vmin auto;

  }

}

@media all and (min-width: 1024px) {

  .menu-overlay .menu-links {

    width: 100%;

    font-size: 25px;

    margin-top: 0;

  }

}

@media all and (min-width: 1200px) {

	.menu-overlay .menu-links {
		font-size: 25px;
		margin-top: 8vh;
	}

}

@media(min-height:1200px) {

	.menu-overlay {

		display: flex;

		align-items: center;

	}

}

/*----------------------

  HOME HERO

----------------------*/

.home-hero{

	height: 100vh;

	background-image:url('../images/women-1591452225881-39.jpg');

	background-repeat: no-repeat;

	background-size: cover;

	background-color: rgba(44,38,49);

}

.hero-text-widget h1 {

  color: #fff;

  font-size: 40px;

  letter-spacing: 0;

  line-height: 50px;

  text-align: center;

  font-weight: 400;

}

.hero-text-widget h1 span {

  color: #28AE61;

  font-size: 70px;

  line-height: 1;

  display: block;

  font-family: 'kaushan';

}

.hero-text-widget p {

  color: #FFFFFF;

  font-size: 14px;

  letter-spacing: 0;

  line-height: 22px;

  text-align: center;

  max-width: 750px;

  margin: 0 auto;

  font-weight: 400;

}

.hero-text-widget p span{

	font-size: 18px;

	font-family: 'kaushan';

}

.scroll-down-prop{

	position: absolute;

	bottom: 30px;

	left: 50%;

	display: none;

	z-index: 6;

		left: 50%;

	-webkit-transform: translateX(-50%);

  	-moz-transform: translateX(-50%);

  	-ms-transform: translateX(-50%);

  	-o-transform: translateX(-50%);

	transform: translateX(-50%);

}

.scroll-down-prop span{

	display: block;

	width: 5px;

	height: 5px;

	margin: 6px 0;

	background: #28AE61;

	border-radius: 50%;

}

.scroll-down-prop strong {

  color: #28AE61;

  font-size: 28px;

  letter-spacing: 0;

  line-height: 41px;

  font-weight: 300;

}

@keyframes blink {

    0% {

      opacity: .2;

    }

    20% {

      opacity: 1;

    }

    100% {

      opacity: .2;

    }

}





.scroll-down-prop span{

	display: block;

	width: 5px;

	height: 5px;

	margin: 6px 0;

	background: #28AE61;

	border-radius: 50%;

	animation-name: blink;

	animation-duration: 1.4s;

	 animation-iteration-count: infinite;

	animation-fill-mode: both;

}

.scroll-down-prop span:nth-child(2) {

    animation-delay: .2s;

}



.scroll-down-prop span:nth-child(3) {

    animation-delay: .4s;

}

.scroll-down-prop span:nth-child(4) {

    animation-delay: .6s;

}

.scroll-down-prop span:nth-child(5) {

    animation-delay: .7s;

}

.scroll-down-prop span:nth-child(6) {

    animation-delay: .8s;

}

.scroll-down-prop span:nth-child(7) {

    animation-delay: .9s;

}

.scroll-down-prop span:nth-child(8) {

    animation-delay: 1.1s;

}

.scroll-down-prop span:nth-child(9) {

    animation-delay: 1.2s;

}

.scroll-down-prop span:nth-child(10) {

    animation-delay: 1.3s;

}

.scroll-down-prop span:nth-child(11) {

    animation-delay: 1.5s;

}

.hero-text-widget{

	margin-top: 250px;

}



@media (min-width: 768px) {

	.hero-text-widget h1 {

	  font-size:60px;

	  line-height: 90px;

	}

	.hero-text-widget h1 span {

	  font-size: 90px;

	  display: inline-block;

	}

	.hero-text-widget p {

	  font-size: 21.45px;

	  line-height: 46.22px;

	}

	.hero-text-widget p span{

		font-size: 43px;

	}

	.scroll-down-prop{

		display: block;

	}

	.hero-text-widget{

		margin-top: 300px;

	}

}
.scroll-downs {
	position: absolute;
	top: 86vh;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 34px;
	height: 55px;
}

.mousey {
	width: 3px;
	padding: 10px 15px;
	height: 35px;
	border: 2px solid #28AE61;
	border-radius: 25px;
	opacity: 0.75;
	box-sizing: content-box;
}

.scroller {
	width: 3px;
	height: 10px;
	border-radius: 25%;
	background-color: #28AE61;
	animation-name: scroll;
	animation-duration: 2.2s;
	animation-timing-function: cubic-bezier(.15,.41,.69,.94);
	animation-iteration-count: infinite;
}

@keyframes scroll {
	0% {
		opacity: 0;
	}

	10% {
		transform: translateY(0);
		opacity: 1;
	}

	100% {
		transform: translateY(15px);
		opacity: 0;
	}
}

@media (min-width: 992px) {

	.hero-text-widget h1 {

	  font-size: 70px;

	  line-height: 100px;

	}

	.hero-text-widget h1 span {

	  font-size: 110px;

	}

	.hero-text-widget{

		margin-top: 300px;

	}	

}



@media (min-width: 1200px) {

	.hero-text-widget h1 {

	  font-size: 92.16px;

	  line-height: 110.08px;

	}

	.hero-text-widget h1 span {

	  font-size: 153.6px;

	}

	.hero-text-widget{

		margin-top: 320px;

		padding-bottom: 70px;

	}

}



/*----------------------

  HUMAN MADE HUMAN

----------------------*/

.animate-doddle {

	width: 0;

}

.animate-doddle.viewed {

    -webkit-transition: width 1s ease-in-out;

    -moz-transition: width 1s ease-in-out;

    -o-transition: width 1s ease-in-out;

    transition: width 1s ease-in-out;   

    width: 100%;

}

.human-made-human {

	padding: 40px 0;

	background: #2c2631;

    transition: background-color 1s ease;

}

.human-made-human h3 {

  color: #FFFFFF;

  font-family: 'kaushan';

  font-size: 30px;

  letter-spacing: 0;

  line-height: 36px;

  width: 100%;

  text-align: center;

}

.human-made-human h2 {

  color: #fff;

  font-size: 40px;

  letter-spacing: 0;

  line-height: 50px;

  text-align: center;

  font-weight: 300;

}

.human-made-human h2 span {

  color: #28AE61;

  font-size: 45px;

  line-height: 1;

  display: block;

  font-family: 'kaushan';

}



.center-heading{

	margin: 0px 0 30px;

	position: relative;

}

.center-heading img,.svg-2{

	position: absolute;

	left: 0;

	top: 50px;

}



.svg-line{

	position: relative;

	margin: 10px 0 0 30px;

}

@media(max-width:768px) {

	.svg-line {

		display:none;

	}

}

.circle-svg-box{

	position: relative;

}

.circle-svg-box h3{

	margin: 0 auto;

}

.circle-svg-box:before{

	content: none;

	position: absolute;

	left: -10px;

	top: 0;

	width: 100%;

	height: 100%;

	-webkit-transform:  rotate(180deg) ;

	-moz-transform: rotate(180deg);

	-ms-transform: rotate(180deg);

	-o-transform:  rotate(180deg);

	transform:  rotate(180deg);

	background-image: url('../images/Stroke 1.svg');

	background-repeat: no-repeat;

	background-position: center center;

	background-size: contain

}

#svg-2{

	display: none;

}

.paragraph-one span {
	padding: 5px;
	color: #F87F50;
	display: inline-block;
}

.text-after-doodle h3 {

	position: relative;

}

.text-after-doodle h3 svg{

	position: absolute;

	left: 0;

	top: 28px;

}

@media (max-width: 575.69px) {

	.div-img-xs-small{

		padding: 0 20%;

		margin-top: -15px;

	}

	.div-img-xs-small .svg-line{

		margin: 0;

	}

	.mb-xs{

		margin-bottom: 30px;

	}

	.bg-circle{

		position: absolute;

		left: 0;

		top: 0;

		height: 100%;

		width: 100%;

	}

	.bg-circle svg{

		height: 250px;

		width: 100%;

	}

	.circle-svg-box {

		height: 250px;

		display: flex;

		align-items: center;

		padding-left: 30px;

		justify-content: center;

	}

	.circle-svg-box h3{

		padding: 0 2%;

	}

	.human-made-human{

		text-align: center;

	}

	#svg-1{

		display:none;

	}

	#svg-2 {

		display: block;

	}

}

@media (min-width: 576px) {

	.circle-svg-box{

		padding: 0;

		 margin: 0;

		background-image: none;

	}

	.circle-svg-box:before{

		content: none;

	}

	.human-made-human h3 {

	  font-size: 24px;

	  line-height: 26px;

	  width: 90%;

	}

	.bg-circle {

		position: absolute;

		left: -10px;

		top: 50%;

		display: block;

		text-align: center;

		margin-top: -20px;

		-webkit-transform: translateY(-40%);

		-moz-transform: translateY(-40%);

		-ms-transform: translateY(-40%);

		-o-transform: translateY(-40%);

		transform: translateY(-40%);

	}

	.bg-circle svg{

		width: 200px;

		height: 252px;

		margin-top: -30px;

	}

	.text-after-doodle h3 svg{

		position: absolute;

		left: 20px;

		top: 20px;

		width: 100px

	}	

}

@media (min-width: 768px) {

	.human-made-human {

	  padding: 50px 0;

	}

	.human-made-human h2  {

	  font-size:50px;

	  line-height: 90px;

	}

	.human-made-human h2  span {

	  font-size: 70px;

	  display: inline-block;

	}

	.human-made-human h3 {

	  font-size: 28px;

	  line-height: 30px;

	  width: 90%

	}

	.bg-circle {

		left: 0px;

		margin-top: -20px;

	}

	.bg-circle svg{

		width: 250px;

		height: 252px;

		margin-top: -30px;

	}

	.text-after-doodle h3 svg{

		position: absolute;

		left: 10px;

		top: 23px;

		width: 140px;

	}	

}



@media (min-width: 992px) {

	.human-made-human {

	  padding: 110px 0;

	}

	.human-made-human h3 {

	  font-size: 30px;

	  line-height: 36px;

	}

	.human-made-human h2 {

	  font-size: 70px;

	  line-height: 100px;

	}

	.human-made-human h2 span {

	  font-size: 110px;

	}

	.center-heading{

		margin: 70px 0;

	}

	.center-heading img, .svg-2 svg{

		width: 120px;

	}

	.bg-circle svg{

		width: 300px;

		height: 252px;

		margin-top: -30px;

	}

	.text-after-doodle h3 svg{

		position: absolute;

		left: 20px;

		top: 28px;

		width: auto;

	}	

}



@media (min-width: 1200px) {

	.human-made-human {

	  padding: 170px 0;

	}

	.human-made-human h2 {

	  font-size: 76.16px;

	  line-height: 90.08px;

	}

	.human-made-human h2 span {

	  font-size: 130.6px;

	}	

	.box-around-bg	h3{

		max-width: 350px;

		margin: 0 auto;

	}

	.bg-circle svg{

		width: 400px;

		height: 252px;

		margin-top: 20px;

	}

	.center-heading img, .svg-2 svg{

		width: auto;

	}

	.text-after-doodle h3 svg{

		position: absolute;

		left: 0;

		top: 28px;

	}

}

@media (min-width: 1340px) {

	.human-made-human h2 {

	  font-size: 92.16px;

	  line-height: 110.08px;

	}

	.human-made-human h2 span {

	  font-size: 153.6px;

	}	

}

/*----------------------

  CLIENTS

----------------------*/

.clients{

	padding: 40px 0;

}

.clients .slick-track{  

	display: flex !important; 

	display:-webkit-flex!important;

}

.clients .slick-slide{ 

	height: inherit !important;

	padding: 0 20px;

}



.clients-logo .logo{

	height: 100%;

}

.clients h2 {

  color: #2C2631;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 46px;

  text-align: center;

  font-weight: 400;

}

.clients h3 {

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 35px;

  letter-spacing: 0;

  line-height: 42px;

  text-align: center;

  margin-bottom: 30px;

}

.clients h4 {

  color: #2C2631;

  font-size: 14px;

  letter-spacing: 0;

  line-height: 22px;

  font-weight: 400;

  margin-bottom: 30px;

}

.clients h4 span {

  font-size: 2em;
  line-height: 22px;
  font-family: 'kaushan';
  font-weight: 300;
  color: #28AE61;

}

.clients h5 {

  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  color: #2C2631;

}

.ipa-logo {

  margin: 0 auto;
  display: block;
  max-width: 300px;
}

.authorcpd {

  display: block;
  float: left;
}

.ipa-cushion {

  padding-right: 30px;
  padding-left: 30px;
  }




.credits-logos-sm {

	display: none;

}

@media (max-width: 767px) {

	.clients .clients-logo-sm .slick-slide,

	.credits-logos-sm .slick-slide{

		padding: 0 2px;

		display: flex;

		flex-direction: column;

	}

	.credits-logos-sm .slick-track{

		display: flex;

	}

	.credits-logos-sm .slick-slide{

		height: inherit;

	}

	.clients .clients-logo-sm .slick-slide div,

	.credits-logos-sm .slick-slide div{

		padding: 0;		

		height: 49%;

		display: flex;

		align-items: center;

		justify-content: center;

	}

	.clients .clients-logo-sm .slick-slide div div,

	.credits-logos-sm .slick-slide div div{

		height: 100%;

	}	

	.clients .clients-logo-sm .slick-slide div div div,

	.credits-logos-sm .slick-slide div div div{

		height: 100%;

		padding: 20px 5px;

		display: flex;

		align-items: center;

		justify-content: center;

	}

	.clients .clients-logo-sm .slick-slide  div:last-child,

	.credits-logos-sm .slick-slide  div:last-child{

		margin-top: auto;

	}

	.clients .clients-logo-sm  .slick-dots,

	.credits-logos-sm  .slick-dots {

		margin: 10px;

	}

	.clients h2 {

		margin-bottom:-6px;

	}

}

@media (min-width: 992px) {

	.clients{

		padding: 50px 0 50px;

	}

	.clients h2 {

	  font-size: 39px;

	  line-height: 56px;

	}

	.clients h3 {

	  font-size: 75px;

	  line-height: 56px;

	}	

  .clients h4 {

    font-size: 22px;

    line-height: 40px;

  }

  .clients h5 {

  font-size: 20px;
  line-height: 27px;
  

}

  .clients h4 span {

  font-size: 44px;
  line-height: 1;
  font-family: 'kaushan';
  font-weight: 600;
  color: #28AE61;

  }

  .ipa-logo {

  margin: 0 auto;
  display: block;
  max-width: 300px;
  margin-top: 36px;
  }

  .ipa-cushion {

  padding-right: 0px;
  padding-left: 0px;
  }

      



}

@media (min-width: 1200px) {

	

}

/*--------------------------------------------------------------

# ppac TEAM

--------------------------------------------------------------*/

.relative{

	position: relative;

	z-index: 5;

}



.ppac-team{

	padding-top: 40px;

}

.ppac-team-image{

  background-color: #28AE61;

}

.bg-image img{

	opacity: 0;

	display: none;

}

.ppac-team-image img{

	max-width: 100%;



}

#d-19-team .bg-image img{

	opacity: 0;

	display: block;

}

.cs-featImage img{

	display: block;

}

@media(max-width:767.69px) {

	.cs-featImage {

		height:70vh;

	}

}

.cs-featImage-slider{

	padding: 10%;

}

.cs-featImage-slider img{

	display: none;

}

.bg-image {

	background-repeat: no-repeat;

	background-position: center center;

	background-size: cover;

}

.half-image{

	height: 50%;

	position: relative;

}

.half-image div{

	height: 100%;

}

.ppac-team-image{

	height: 100%;

	position: relative;

	z-index: 9;

}

.ppac-team-title{

	z-index: 56;

	width: 100%;

	margin: 0 0 30px;

	text-align: center;

}

.ppac-team-title{

	position: absolute;

	top: 50%;

	left: 50%;

	margin: 0;

	-webkit-transform: translate(-50%, -50%);

	-moz-transform: translate(-50%, -50%);

	-ms-transform: translate(-50%, -50%);

	-o-transform: translate(-50%, -50%);

	transform: translate(-50%, -50%);

}

.ppac-team-title span{

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 40px;

  letter-spacing: 0;

  line-height: 42px;

  text-align: center;

  margin: 0 15px;

  margin-bottom: -10px;

  display: inline-block;

}

.ppac-team-title strong {

  color: #fff;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 30px;

  font-weight: 400;

  display: inline-block;

  vertical-align: middle;

}

.ppac-team-title img{

	margin-right: 10px;

	width: 70px;

}

.text-image{

	position: relative;

	width: 100%;

	height: 100%;

	z-index: 6;

	background-position: center center;

	background-size: contain;

	background-color: #fff;

}

.img-column{

	position: relative;

}

.img-column a{

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	z-index: 999;

	background: #2C2631;

	opacity: 0.4;

}

.ppac-team-image:after{

	content: '';

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	z-index: 999;

	background: #2C2631;

	opacity: 0.4;

}

.reveal {

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	background: #28AE61;

	transition: transform 480ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

.fadeInDiv{

  opacity: 0;

  visibility: hidden;

  z-index: 5;

  overflow: hidden;

  position: relative;

  transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 400ms step-end, z-index 400ms step-end;

}

.triggered {

  opacity: 1;

  visibility: visible;

  transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 400ms step-start, z-index 400ms step-start;

}



@media (max-width: 767.69px) {

	.ppac-team-title img {

		width: 150px;

		margin: 0 0 10px;

	}

	.ppac-team-title strong {

		font-size: 57px;

		line-height: 50px;

		margin-bottom: 15px;

	}

	.ppac-team-title span {

		font-size: 70px;

		line-height: 70px;

	}

	.ppac-team-title .d-flex {

		flex-direction: column;

	}	

}

@media (max-width: 480.69px) {

	.ppac-team-title img {

		width: 100px;

		margin: 0 0 10px;

	}	

}

@media (min-width: 768px) {

	.ppac-team-title span{

	  font-size: 70px;

	  line-height: 70px;

	}

	.ppac-team-title strong {

	  font-size: 50px;

	  line-height: 55px;

	  color: #fff;

	}

	.ppac-team-title img{

		width: auto;

		margin-right: 20px;

	}

	.ppac-team{

		padding-top: 0px;

	}

}

@media (min-width: 992px) {

	.ppac-team-title span{

	  font-size: 100px;

	  line-height: 90px;

	}

	.ppac-team-title strong {

	  font-size: 60px;

	  line-height: 65px;

	}	

}

@media (min-width: 1200px) {

	.ppac-team-title span{

	  font-size: 153.6px;

	  line-height: 110.08px;

	}

	.ppac-team-title strong {

	  font-size: 92px;

	  line-height: 100px;

	}	

}

/*--------------------------------------------------------------

# CASE STUDIES

--------------------------------------------------------------*/

.ppac-case-studies,.cs-featImage{

	position: relative;

}

.cs-featImage a,.absolute-link{

	position: absolute;

	width: 100%;

	height: 100%;

	

}

.absolute-link{

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	z-index: 5;

}

.slider .slick-track{  display: flex !important;}

.slider .slick-slide{  height: inherit !important;}

.cs-featImage{

	height: 100vh;

}





.slider-caption {
	width: 100%;
	position: relative;
	left: 0;
	top: 0;
	padding: 40px 0 30px 0;
	background-color: #28AE61;
}

.center-slide{

	max-width: 657px;

	margin: 0 auto;

	padding: 0 30px

}

.slider-caption h4 {

  color: #FFFFFF;

  font-size: 20px;

  letter-spacing: 0;

  line-height: 24px;

}

.slider-caption p{
	color: #fff;
	float: right;
}

.slider-caption h3 {

  max-width: 657px;

  color: #FFFFFF;

  font-size: 24px;

  line-height: 30px;

  font-weight: 400;

  margin-top: 20px;

  margin-bottom: 0;

}

.slider-caption h3 span{

	font-size: 25px;

	line-height: 40px;

	font-family: 'kaushan';

}

.slick-dots{

	min-height: 20px;

}

.dot-right .slick-dots {

	position: absolute;

	left: 0;

	bottom: 10px;

	height: 50px;

	width: 100%;

	margin: 0;

}



.dot-circle .slick-dots li

{

    position: relative;



    display: inline-block;



    width: auto;

    height: auto;

    margin: 5px 5px;

    padding: 0;



    cursor: pointer;

}

.slick-dots li button

{

    font-size: 0;

    line-height: 0;



    display: block;



    width: 13px;

    height: 13px;

    padding: 0;



    cursor: pointer;



    color: transparent;

    border: 0;

	border-radius: 50%;

    outline: none;

    background: #F87F50;

	opacity: 0.6;

}

.dot-right .slick-dots li button

{

    background: #fff;

	opacity: 1;

}

.slick-dots li button:hover,

.slick-dots li button:focus

{

    outline: none;

}

.slick-dots li button:hover:before,

.slick-dots li button:focus:before

{

    opacity: 1;

}

.slick-dots li button:before

{

    content: none;

}

.slick-dots li.slick-active button

{

    opacity: 1;

	background-color: #F87F50;

}

.dot-right .slick-dots li.slick-active button

{

    width:30px;

	height: 30px;

	background-color: #F87F50;

}



@media (min-width: 576px) {

	.slider-caption {
		width: 50%;
		margin-left: 50vw;
		position: absolute;
	}	

}

@media (min-width: 992px) {

	.slider-caption h4 {

	  font-size: 20px;

	  line-height: 24px;

	}

	.slider-caption h3 {

	  font-size: 30px;

	  line-height: 40px;

	}

	.slider-caption h3 span{

		font-size: 70px;

		line-height: 70px;

	}	

	.slider-caption{

		padding: 50px 0 50px 0;

	}

}

@media (min-width: 1200px) {

	.slider-caption h4 {

	  font-size: 24px;

	  line-height: 32px;

	}

	.slider-caption h3 {

	  font-size: 35px;

	  line-height: 40px;

	}	

	.slider-caption h3 span{

		font-size: 50px;

		line-height: 70px;

	}

	.slider-caption{

		padding: 50px 0 50px 0;

	}

	.caption-inner{

		max-width: 100%;

	}

}





/*--------------------------------------------------------------

# CREDITS

--------------------------------------------------------------*/

.credits{

	padding: 70px 0 60px;

}

.credits-logos .slick-track{  display: flex !important;}

.credits-logos .slick-slide{  height: inherit !important;}

/*--------------------------------------------------------------

# BLOG

--------------------------------------------------------------*/

.section-blog{

	padding: 40px 0;

	background-color: #28AE61;

}

.blog-slide{

	padding: 0 5px;

}

.post-grid{

	/*max-width: 393px;*/
    width: 100%

}

.ppac-featured{

	/*background-color: #28AE61;*/

	padding: 28% 0;

	position: relative;

	overflow: hidden;

}

.image-background{

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	 -webkit-transition:all 1.2s ;

	 -moz-transition:all 1.2s;

	 transition:all 1.2s;

	 transform:scale(1);

	 -webkit-transform:scale(1);

	 -moz-transform:scale(1)

}

.post-grid:hover .ppac-featured::after {

  opacity: 1;

  visibility: visible;

  transition: opacity 480ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 480ms step-start;

}

.ppac-featured::after {

  content: "";

  display: block;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.05);

  opacity: 0;

  visibility: hidden;

  transition: opacity 480ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 480ms step-end;

}

.post-grid:hover .image-background {

  transform: scale(1.09);

}

.ppac-featured a{

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	z-index: 4;

}

.post-grid h3{

  color: #2C2631;

  font-size: 16px;

  font-weight: 500;

  letter-spacing: 0;

  line-height: 20px;

  font-weight: 400;

  margin: 30px 0 0;

  max-width: 96%;

}

.post-grid h3 a{

	color: #2C2631;

	transition: all 0.5s;

}

.post-grid:hover h3 a{

	color: #fff;

}

.get-the-latest h2 {

  color: #2C2631;

  font-size: 40px;

  letter-spacing: 0;

  line-height: 45px;

  font-weight: 400;

  position: relative;

  z-index: 5;

}

.get-the-latest h2 {

	color: #2C2631;

}

.get-the-latest h2:before {

  content: none;

  position: absolute;

  left: 0%;

  top: 0;

  width: 100%;

  height: 100%;

  background-image: url('../images/blog-title-bgh.svg');

  background-repeat: no-repeat;

  background-position: top left;

  background-size: 100% 200px;

}

.get-the-latest h2 span{

  color: #2C2631;

  font-family: 'kaushan';

  font-size: 55px;

  letter-spacing: 0;

  line-height: 55px;

}

.post-paginate_links a,.post-paginate_links span{

	display: inline-block;

	vertical-align: middle;

	margin: 0 5px;

	font-size: 24px;

}

.post-paginate_links a:hover{

	color: #F87F50;

}

.post-paginate_links span{

	text-decoration: underline;

	color: #F87F50;

}

.blog-svg svg{

	width: 315px; 

	height: 302px;

}

.prev.page-numbers{

	position: relative;

	padding-left: 50px;

}

.next.page-numbers{

	position: relative;

	padding-right: 50px;

}

.prev.page-numbers .block-invest{

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

}

.next.page-numbers .block-invest{

	position: absolute;

	right: 0;

	top: 0;

	width: 100%;

	transform: rotate(-180deg);

}

.prev.page-numbers .block-invest .blocks{

	width: 100%;

	height: 40px;

	display: flex;

	align-items: center;

	margin-top: -1px;

}

.next.page-numbers .block-invest .blocks{

	width: 100%;

	height: 40px;

	display: flex;

	align-items: center;

}

.prev.page-numbers .block-invest .blocks span{

	float: left;

}

.next.page-numbers .block-invest .blocks span{

	float: left;

}

@media (max-width: 575.89px) {

	.post-paginate_links .page-numbers{

		display: none!important;

	}	

	.post-paginate_links .prev.page-numbers,.post-paginate_links .next.page-numbers{

		display: flex!important;

		width: 120px;

	}

	.post-paginate_links .next.page-numbers{

		margin-left: auto;

	}

}

@media (max-width: 767.89px) {

	.blog-svg svg {

		transform: rotate(55deg);

		width:185px;

	}

	.section-blog .blog-column:last-child{

		display: none;

	}	

	.relatedPosts-blog .blog-column:last-child{

		display: none;

	}

	.get-the-latest.relative h2 {

		line-height: 45px;

	}

	.get-the-latest.line-height h2 {

		line-height: 175px;

	}

	.get-the-latest h2 br {

		display:none;

	} 

}

@media (max-width: 991.89px) {

	.get-the-latest img{

		width: 200px;

	}	

	.relatedPosts-blog .get-the-latest img{

		display : block;

		margin-bottom: 30px;

	}

}

@media (min-width: 480px) {

	.get-the-latest h2 {

	  font-size: 40px;

	  line-height: 50px;

	}

	.get-the-latest h2 span{

	  font-size: 60px;

	  line-height: 61px;

	}	

}

@media (min-width: 768px) {

	.post-grid h3{

	  font-size: 24px;

	  line-height: 32px;

	}

	.get-the-latest h2 {

	  font-size: 55px;

	  line-height: 60px;

	}

	.get-the-latest h2 span{

	  font-size: 75px;

	  line-height: 81px;

	}

}

@media (min-width: 992px) {

	.section-blog{

		padding: 90px 0;

	}

	.get-the-latest h2:before {

		content: none;

	}

	.get-the-latest h2 {

	  font-size: 66px;

	  line-height: 80px;

	}

	.get-the-latest h2 span{

	  font-size: 90px;

	  line-height: 81px;

	}

	.blog-svg svg{

		width: 250px; 

		height: 352px;

	}

}

@media (min-width: 1200px) {

	.get-the-latest h2 {

	  font-size: 76px;

	  line-height: 80px;

	}

	.get-the-latest h2 span{

	  font-size: 120px;

	  line-height: 81px;

	}

	.blog-svg svg{

		width:300px; 

		height: 472px;

	}

}

@media (min-width: 1280px) {

	.blog-svg svg{

		width:353px; 

		height: 472px;

	}

}

/*--------------------------------------------------------------

# ABOUT US PAGE

--------------------------------------------------------------*/

.color-gray {

  background-color: #2C2631;

}

.color-white {

  background-color: #fff;

}

.page-hero{

	height: 100vh;

	min-height:100vh;

	position: relative;

	overflow: hidden;

	background-color: #2C2631;

	background-position: center center;

}

.page-hero:before{

	content: '';

	width: 100%;

	height: 100%;

	position: absolute;

	left: 0;

	top: 0;

	z-index: 2;

	background: rgba(44, 38, 49 ,0.4);

}

.page-hero:after{

	content: none;

	width: 1px;

	height: 100%;

	position: absolute;

	left: 50%;

	top: 0;

	z-index: 2;

	background: #fff

}

.page-hero .container{

	position: relative;

	z-index : 5;

}

.page-hero .container {

	/* padding-top: 300px; */

}

.page-hero img{

	width: 100%;

	height: 100%;

	object-fit: cover;

	

}

.page-text-widget p{

  max-width: 873px;

  margin: 0 auto;

  color: #FFFFFF;

  font-size: 40px;

  letter-spacing: 0;

  line-height: 50px;

  text-align: center;

}

.page-text-widget p span{

	font-size: 55px;

	font-family: 'kaushan';

}

@media(max-width:768px) {

	.page-hero {

		max-height: 85vh !important;

	}

}

@media (min-width: 768px) {

	.page-text-widget p{

	  font-size: 30px;

	  line-height: 48px;

	}

	.page-text-widget p span{

		font-size: 50px;

	}

}

@media (min-width: 992px) {

	.page-text-widget p{

	  font-size: 40px;

	  line-height: 68px;

	}

	.page-text-widget p span{

		font-size: 60px;

	}

}

@media (min-width: 1200px) {

	.page-text-widget p{

	  font-size: 50px;

	  line-height: 78px;

	}

	.page-text-widget p span{

		font-size: 90px;

	}

}

/* About intro */



.about-intro{

	padding: 40px 0;

	background-color: #2C2631;

}

.intro-container {

  max-width: 910px;

  color: #FFFFFF;  

  font-weight: 300;

  letter-spacing: 0;  

  margin: 0 auto;

}

.intro-container p{

	font-weight: 300;

	margin: 0 0 40px;

	font-size: 20px;

	line-height: 30px;

}

@media (min-width: 768px) {

	.about-intro{

		min-height: 100vh;

	}

	.media-header h2 {

	  font-size: 30px;

	}

	.media-header h3 {

	  font-size: 60.02px;

	}

	.intro-container p{

		font-size: 28px;

		line-height: 40px;

	}

}

@media (min-width: 992px) {

	.intro-container p{

		font-size: 28px;

		line-height: 40px;

	}

	.media-header h2 {

	  font-size: 40px;

	}

	.media-header h3 {

	  font-size: 90.02px;

	}

}

@media (min-width: 1200px) {

	.intro-container p{

		font-size: 32px;

		line-height: 55.08px;

	}

	.media-header h2 {

	  font-size: 50px;

	}

	.media-header h3 {

	  font-size: 102.02px;

	}

}

/* A media agency partner */

.bg-light-pink{

	background-color: #28AE61;

}

.agency-partner{

	padding: 60px 0;

}

.media-header h2 {

  color: #2C2631;

  font-size: 40px;

  letter-spacing: 0;

  line-height: 1.2;

  text-align: center;

  font-weight: 400;

  margin: 0;

}

.media-header h3 {

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 60.02px;

  letter-spacing: 0;

  line-height: 1;

  text-align: center;

}

.text-group{

	padding: 20px 30px;

	background-color: #FFFFFF;

}

.text-group ,.text-group p{

  color: #2C2631;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 30px;

  margin: 0;

}

.text-group{

	margin-bottom: 20px;

}

.b-1{

	background-color: #E95462;

}

.b-2{

	background-color: #F4A692;

}

.b-3{

	background-color: #F9B419;

}

.b-4{

	background-color: #46B9B9;

}

.b-5{

	background-color: #FFFFFF;

}

.client-satisfaction {

	position: absolute;

	top: 50%;

	left: 50%;

	-webkit-transform: translate(-50%, -50%);

	-moz-transform: translate(-50%, -50%);

	-ms-transform: translate(-50%, -50%);

	-o-transform: translate(-50%, -50%);

	transform: translate(-50%, -50%);

}

.partnership-image{

	width: 250px;

	height: 250px;

	position: relative;

	border-radius: 50%;

	background-color: #fff;

}

.circle-shape{

	position: relative;

}

.text-quote{

	color: #2C2631;

	font-family: 'kaushan';

	font-size: 42px;

	letter-spacing: 0;

	line-height: 46px;

	margin-right: 0px;

	z-index: 5;

	margin: 0 auto 40px;

}

.client-Satisfaction-Score{

	margin: 20px 0 0;

	position: relative;

	z-index: 6;

	margin-left: auto;

}

.score {

  height: 276px;

  width: 276px;

  border-radius: 50%;

  background-color: #2C2631;

}

.score strong {

  color: #28AE61;

  font-size: 115.29px;

  line-height: 100.76px;

  font-weight: 400;

  font-family: 'kaushan';

}

.score span {

  display: block;

  color: #28AE61;

  font-size: 25.97px;

  letter-spacing: 0;

  line-height: 30.72px;

  text-align: center;

}

.client-Satisfaction-Score p {

  color: #2C2631;

  font-size: 15px;

  letter-spacing: 0;

  line-height: 32px;

  font-weight: 400;

  margin: 20px 0;

}

@media (min-width: 768px) {

	.media-header h2 {

	  font-size: 30px;

	}

	.media-header h3 {

	  font-size: 60.02px;

	}

	.partnership-image{

		width: 270px;

		height: 270px;

	}

}

@media (min-width: 992px) {

	.media-header h2 {

	  font-size: 40px;

	}

	.media-header h3 {

	  font-size: 90.02px;

	}

	.ml-md-50{

		margin-left: 50px;

	}

	.text-group{

		width: 90%;

		max-width:582px;

	}

	.partnership-image{

		width: 350px;

		height: 350px;

	}

	.client-Satisfaction-Score{

		margin-top: -100px;

	}

	

}

@media (min-width: 1200px) {

	.media-header h2 {

	  font-size: 50px;

	}

	.media-header h3 {

	  font-size: 102.02px;

	}

	.partnership-image{

		width: 400px;

		height: 400px;

	}

	.circle-shape{

		width: 500px;

	}

	.text-quote{

		position: absolute;

		right: 0;

		top: 0;

		margin: 0;

	}

	.text-group ,.text-group p{

	  font-size: 22.4px;

	  line-height: 38.56px;

	}

	.client-Satisfaction-Score{

		margin-top: -200px;

	}

}

@media (min-width: 1240px) {

	.partnership-image{

		width: 450px;

		height: 450px;

	}

	.circle-shape{

		width: 550px;

	}



}

@media (min-width: 1340px) {

	.partnership-image{

		width: 500px;

		height: 500px;

	}

	.circle-shape{

		width: 600px;

	}

}

@media (min-width: 1650px) {

	.partnership-image{

		width: 600px;

		height: 600px;

	}

	.circle-shape{

		width: 670px;

	}

}





/*--------------------------------------------------------------

# OUR SUCCESS

--------------------------------------------------------------*/

.our-success{

	padding: 50px 0 70px;

	position: relative;

	overflow: hidden;

	background-color: #2C2631;

}

.our-success .reveal-image img{

	opacity: 0.3;

}

.our-success:before{

	content:'';

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	z-index: 4;

	background: rgba(44, 38, 49, 0.4)

}

.section-background{

	position: absolute;

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

}

.our-success .container{

	position: relative;

	z-index: 6;

}

.success-header h3,

.success-header h4 {

  color: #FFFFFF;

  font-size: 36px;

  letter-spacing: 0;

  line-height: 50px;

  font-weight: 400;

  text-align: center;

  margin: 0 0 20px;

}

.success-header h3 span,

.success-header h4 span {

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 70px;

  letter-spacing: 0;

  line-height: 63.3px;

}

.text-widget p{

  max-width: 406px;

  margin: 0 auto;

  color: #FFFFFF;

  font-size: 20px;

  letter-spacing: 0;

  line-height: 30px;

  text-align: center;

  font-weight: 400;

}

.text-underline{

	position: relative;

}

.text-underline:after {

  content:'';

  width: 100%;

  height: 4px;

  left: 0;

  bottom: 0;

  position: absolute;

  background: #28AE61;

  transform: rotate(1deg);

}

.text-over-image{

	position: relative;

	margin-top: 5px;

	display: block;

}

.text-over-image:before{

	content: '';

	width: 215px;

	height: 85px;

	position: absolute;

	left: 0px;

	top: -20px;

	background-image: url('../images/Stroke10.svg');

	background-repeat: no-repeat;

	background-position: center center;

	background-size: contain;

}

.text-over-image img{

	position: absolute;

	left:0;

	top: -10px;

}

.text-highlight{

	padding: 5px 10px;

	background-color: #28AE61;

}

.top-text-widget{

	margin: 30px 0 30px;

}

.center-text-row h4{

	font-size: 30px;

	color: #fff;

	font-weight: 400;

}

.center-text-row h4 span {

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 61.21px;

  letter-spacing: 0;

  line-height: 49.98px;

}

.counter-number{

	text-align: center;

}

.counter-number div {

  color: #F87F50;

  font-family: 'kaushan';

  font-size: 70px;

  line-height: 64px;

  letter-spacing: -5px;

}

.counter-number h5 {

  color: #FFFFFF;

  font-size: 20px;

  letter-spacing: 0;

  line-height: 30px;

  text-align: center;

  font-weight: 400;

  margin: 0 0 30px;

}

.bottom-text-widget{

	margin-top: 20px;

}

@media (max-width: 767.89px) {

	.text-highlight{

		background-color: transparent;

	}

	

}

@media (max-width: 575.89px) {

	.mt-xs-4{

		margin-top: 40px;

	}

	.center-text-row h4{

		font-size: 24px;

		line-height: 36px;

		color: #fff;

		font-weight: 400;

	}

	.center-text-row h4 span{

		margin-top: 20px;

	}

	.text-over-image:before{

		content: '';

		width: 215px;

		height: 85px;

		position: absolute;

		top: 50%;

		left: 50%;

		-webkit-transform: translate(-50%, -50%);

		-moz-transform: translate(-50%, -50%);

		-ms-transform: translate(-50%, -50%);

		-o-transform: translate(-50%, -50%);

		transform: translate(-50%, -50%);

	}

}

@media (max-width: 767.89px) {

	.text-highlight-widget{

		margin-top: 40px;

	}

	.center-text-row span{

		display: block;

	}

}

@media (min-width: 768px) {

	.our-success{

		padding: 70px 0 90px;

	}

	.success-header h3,

	.success-header h4 {

	  font-size: 30px;

	  line-height: 40px;

	}

	.success-header h3 span,

	.success-header h4 span {

	  font-size: 60px;

	  line-height: 53.3px;

	}

	.top-text-widget{

		margin: 40px 0 50px;

	}

	.bottom-text-widget{

		margin-top: 40px;

	}

	.text-widget p{

	  font-size: 22px;

	  line-height: 32px;;

	}

	.counter-number h5 {

	  font-size: 22px;

	  line-height: 32px;

	}

	.counter-number h5 {

	  font-size: 24px;

	  line-height: 32px;

	}

	.text-over-image:before{

		width: 220px;

		height: 85px;

		top: -20px;

		background-size: contain;

	}

	.counter-number div {

	  font-size: 70px;

	  line-height: 54px;

	}	

}

@media (min-width: 992px) {

	.our-success{

		padding: 40px 0 10px;

	}

	.success-header h3,

	.success-header h4 {

	  font-size: 40px;

	  line-height: 50px;

	}

	.success-header h3 span,

	.success-header h4 span {

	  font-size: 80px;

	  line-height: 63.3px;

	}

	.top-text-widget{

		margin: 50px 0 50px;

	}

	.bottom-text-widget{

		margin-top: 50px;

	}

	.text-widget p{

	  font-size: 22px;

	  line-height: 32px;;

	}

	.counter-number h5 {

	  font-size: 22px;

	  line-height: 32px;

	}

	.counter-number h5 {

	  font-size: 24px;

	  line-height: 32px;

	}

	.text-over-image:before{

		width: 300px;

		height: 85px;

		top: -20px;

		background-size: contain;

	}	

	.counter-number div {

	  font-size: 90px;

	  line-height: 64px;

	}



}

@media (min-width: 1200px) {

	.our-success{

		padding: 90px 0 100px;

	}

	.success-header h3,

	.success-header h4 {

		font-size: 60.7px;

		line-height: 60px;

	}

	.success-header h3 span,

	.success-header h4 span {

	  font-size: 102.02px;

	  line-height: 83.3px;

	}

	.top-text-widget{

		margin: 90px 0 30px;

	}

	.bottom-text-widget{

		margin-top: 90px;

	}

	.text-widget p{

	  font-size: 27px;

	  line-height: 40px;;

	}

	.counter-number h5 {

	  font-size: 27px;

	  line-height: 40px;

	}

	.counter-number h5 {

	  font-size: 26px;

	  line-height: 40px;

	}

	.text-over-image:before{

		width: 100%;

		height: 85px;

		top: -10px;

		background-size: contain;

	}

	.text-highlight-widget br{

		display: none;

	}

	.counter-number div {

	  font-size: 120px;

	  line-height: 84px;

	}

}

@media (min-width: 1340px) {

	.text-widget p{

	  font-size: 30px;

	  line-height: 50px;;

	}

	.counter-number h5 {

	  font-size: 30px;

	  line-height: 45px;

	}

	.counter-number h5 {

	  font-size: 28px;

	  line-height: 45px;

	}	

}

/*--------------------------------------------------------------

# Our people

--------------------------------------------------------------*/

.our-people{

	padding: 40px 0;

}

.intro-paragraph{

	margin-bottom: 0px;

}

.intro-paragraph p {

  max-width: 910px;

  color: #2C2631;

  font-size: 20px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 32px;

}

.team-row{

	margin: 0 -6px;

}

.team-item{

	margin: 0 6px;

}

.team-item-title {

  color: #2C2631;

  font-size: 32px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 42px;

  margin: 0;

}



.team-item-subtitle {

  color: #2C2631;

  font-size: 24px;

  font-weight: 500;

  letter-spacing: 0;

  line-height: 32px;

  margin: 5px 0 0;

}

@media(max-width:767.69px) {

	.team-item-title {

		font-size:28px;

		line-height: 30px;

	}

	.team-item-subtitle {

		font-size:19px;

		line-height: 22px;

	}

}

.team-col{

	margin-bottom: 30px;

}

.team-item-picture{

}

.team-member-picture-wrapper:hover .team-item-picture img {

 transform:scale(1.1);

 -webkit-transform:scale(1.1);

 -moz-transform:scale(1.1)

}

.team-item-picture {

 overflow:hidden;

 position: relative;

 -webkit-transition:all 1.2s ease-in-out;

 -moz-transition:all 1.2s ease-in-out;

 transition:all 1.2s ease-in-out

}

.team-item-picture:after{

	content: none;

	width: 100%;

	height: 100%;

	position: absolute;

	left: 0;

	top: 0;

	opacity: 0.4;

	background-color: #2C2631;

}

.team-item-picture img {

 width:100%;

 -webkit-transition:all 1.2s;

 -moz-transition:all 1.2s;

 transition:all 1.2s;

 transform:scale(1);

 -webkit-transform:scale(1);

 -moz-transform:scale(1)

}

.js-img{

	overflow: hidden;

	position: relative;

}

.js-img:before {

    content: none;

    position: absolute;

    display: block;

    width: 100%;

    height: 100%;

    transform: scaleY(1);

    top: 0;

    left: 0;

    background: #46B9B9;

    transition: transform 1200ms cubic-bezier(.4, 0, .2, 1);

    transition-delay: 200ms;

    transform-origin: bottom;

    z-index: 1;

}

.ppac-team .js-img:before {

    content: none;

    position: absolute;

    display: block;

    width: 100%;

    height: 100%;

    transform: scaleY(1);

    top: 0;

    left: 0;

    background: #F87F50;

    transition: transform 200ms cubic-bezier(.4, 0, .2, 1);

    transition-delay: 200ms;

    transform-origin: top;

    z-index: 1;

}

.js-img img {

    position: relative;

    transition: top 200ms cubic-bezier(.4, 0, .2, 1);

    transition-delay: 200ms;

    top: -40px;

}

.js-img.is-inview:before {

    transform: scaleY(0);

}

.team-col:nth-child(3n+2) .js-img.is-inview:before {

    transition-delay: 450ms;

}

.team-col:nth-child(3n+3) .js-img.is-inview:before {

    transition-delay: 850ms;

}

.js-img.is-inview img {

	top: 0;

	-webkit-transition:all 1.2s linear;

	-moz-transition:all 1.2s linear;

	transition:all 1.2s linear;

	transform:scale(1);

	-webkit-transform:scale(1);

	-moz-transform:scale(1)

}

.heading-our-people {

  color: #28AE61;

  font-family: kaushan;

  font-size: 47px;

  letter-spacing: 0;

  line-height: 1.2;

  white-space: nowrap;

  text-align:center

}

.heading-our-people span{

	color: #2C2631;

	font-size: 40px;

	font-family: 'Georgetown',Helvetica,Arial,serif;

}



@media (min-width: 992px) {

	.our-people{

		padding: 100px 0;

	}

	.intro-paragraph{

		margin-bottom: 100px;

	}

	.intro-paragraph p {

	  font-size: 32px;

	  line-height: 55.08px;

	}

	.team-col{

		margin-bottom: 70px;

	}

	.heading-our-people {

	  font-size: 100px;

	}

	.heading-our-people span{

		font-size: 80px;

	}

	.rotate-text, .cand-rotate-text {

		text-align: right;

		-webkit-transform: rotate(-90deg);

		-webkit-transform-origin: left top;

		-moz-transform: rotate(-90deg);

		-moz-transform-origin: left top;

		-ms-transform: rotate(-90deg);

		-ms-transform-origin: left top;

		-o-transform: rotate(-90deg);

		-o-transform-origin: left top;

		transform: rotate(-90deg);

		transform-origin: left top;

		position: absolute;

		top: 50%;

		left: 0;

		white-space: nowrap;

	}

}

@media (min-width: 992px) {

	.d-19-team .col-first{

		min-height: 760px;

	}

	.rotate-text, .cand-rotate-text {

		top:500px;

	}

}

/* what we do */

.bg-dark-gray{	

	background-color: #2C2631;

}

.what-we-do{

	padding : 40px 0;

}

.our-work{

	margin: 7px 4px;

	position: relative;

	overflow: hidden;

}

.card-info{

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	color: #fff;

	font-size: 18px;

	line-height: 28px;

	padding: 20px;

	background: #E95462;

	position: absolute;

	top: 0;

	left: 0;

	transform: scaleX(0);

	-webkit-transform: scaleX(0);

	transform-origin: center right;

	-webkit-transform-origin: center right;

	  transition: .6s transform ease-in-out;

  -webkit-transition: .6s transform ease-in-out;

}

.our-work:hover .card-info{

  transform: scaleX(1);

  -webkit-transform: scaleX(1);

  transform-origin: center left;

  -webkit-transform-origin: center left;

}



.section-heading h2{

	color: #fff;

	font-size: 30px;

	line-height: 1;

}

.section-heading h2 span{

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 50px;

  letter-spacing: 0;

  line-height: 45.3px;

  text-align: center;

}

.section-footer{

	margin-top: 40px;

}

.section-footer p{

  max-width: 910px;

  color: #FFFFFF;

  font-size: 20px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 30px;

}

.animate-underline{

	position: relative;

	transition: all 0.5s;

}

.animate-underline:before{

	content:'';

	width: 0;

	height: 2px;

	position: absolute;

	left: 0;

	bottom: 0;

	transition: all 0.5s;

	background: currentColor;

}

.animate-underline:hover:before{

	width: 100%;

}

.primary-color{

  color: #28AE61;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 30px;

}

.primary-color:hover{

  color: #28AE61;	

}

@media (min-width: 992px) {

	.what-we-do{

		padding : 90px 0;

	}

	.section-footer{

		margin-top: 100px;

	}

	.section-footer p{

	  font-size: 32px;

	  line-height: 55.08px;

	}

	.primary-color{

	  font-size: 28px;

	  line-height: 41px;

	}

	.section-heading h2{

		font-size: 50px;

	}

	.section-heading h2 span{

	  font-size: 102.02px;

	  line-height: 83.3px;

	}	

	.our-work{

		margin: 7px;

	}

}

.reveal-image img {

  height: 100%;

  width: 100%;

  object-fit: cover;

}



.reveal-image {

  visibility: hidden;

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

}

.hero-image {

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background-size: cover;

  background-position: center center;

}

/*--------------------------------------------------------------

# CASE STUDIES PAGE

--------------------------------------------------------------*/

.case-studies-wrapper {

	padding-bottom: 120px;

	background-color: #2C2631;

}

@media(max-width:768px) {

	.case-studies-wrapper {

		padding-bottom:0;

	}

}

.case-studies-page-heading {

	padding: 90px 0 35px;

	text-align: center;

}

.case-studies-page-heading h2 {

  max-width: 800px;

  color: #FFFFFF;

  font-size: 50px;

  letter-spacing: 0;

  line-height: 42px;

  text-align: center;

  font-weight: 400;

  margin: 0 auto 20px;

}

.case-studies-page-heading h2 span{

	font-family: 'kaushan';

	font-size: 65px;

	color: #F87F50;

}

@media(max-width:480px) {

	.case-studies-page-heading h2{

		font-size: 45px;

		margin-bottom: 0;

	}

	.case-studies-page-heading h2 span{

		display: block;

		line-height: 85px;

		font-size: 60px;

	}

}

.title-box{

	margin-top: 25px;

}

.title-box h3 {

  color: #FFFFFF;

  font-size: 28px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 40px;

  font-weight: 400;

}

.title-box h4 {

  color: #FFFFFF;

  font-size: 24px;

  font-weight: 500;

  letter-spacing: 0;

  line-height: 32px;

  font-weight: 400;

}

.col-gap-5{

	margin-left: -5px;

	margin-right: -5px;

}

.col-gap-5 .column{

	padding: 0 5px;

}



.featImage img{

	opacity: 0;

}

.post-thumbnail .featImage img{

	opacity: 1;

}





.pic_wrapper {

  position: relative;

  overflow: hidden;

}

.pic_wrapper .bg-image {

  width: 100%;

  padding: 28%;

  opacity: 0;

  -webkit-transform: scale(1.15);

          transform: scale(1.15);

}

.pic_wrapper .size-2 {

  padding: 37.5%;

}

.pic_wrapper .size-3 {

  padding: 50.4%;

}

.pic_wrapper .pic_reveal {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: #F87F50;

  -webkit-transform: translatex(-100%);

          transform: translatex(-100%);

}

.pic_wrapper.isActive .bg-image {

  -webkit-animation: fadeInScale 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;

          animation: fadeInScale 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;

}

.pic_wrapper.isActive .pic_reveal {

  -webkit-animation: moveSlide 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) both;

          animation: moveSlide 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) both;

}



@-webkit-keyframes fadeInScale {

  0% {

    opacity: 0;

    -webkit-transform: scale(1.15);

            transform: scale(1.15);

  }

  100% {

    opacity: 1;

    -webkit-transform: scale(1);

            transform: scale(1);

  }

}



@keyframes fadeInScale {

  0% {

    opacity: 0;

    -webkit-transform: scale(1.15);

            transform: scale(1.15);

  }

  100% {

    opacity: 1;

    -webkit-transform: scale(1);

            transform: scale(1);

  }

}

@-webkit-keyframes moveSlide {

  0% {

    -webkit-transform: translate(-100%);

            transform: translate(-100%);

  }

  50% {

    -webkit-transform: translate(0%);

            transform: translate(0%);

  }

  100% {

    -webkit-transform: translate(100%);

            transform: translate(100%);

  }

}

@keyframes moveSlide {

  0% {

    -webkit-transform: translate(-100%);

            transform: translate(-100%);

  }

  50% {

    -webkit-transform: translate(0%);

            transform: translate(0%);

  }

  100% {

    -webkit-transform: translate(100%);

            transform: translate(100%);

  }

}

@media(max-width:991.69px) {

	.pic_wrapper .size-2, .featImage .pic_wrapper {

		max-height: 40vh;

	}



}

@media(max-width:767.69px) {

	.pic_wrapper .bg-image {

		/* height:60vh; */

	}

}

@media (max-width: 576px) {

	.case-studies-page-heading{

		padding-bottom: 20px;

	}

	.title-box h3{

		display: none;

	}

	.title-box h3,.title-box h4 {

		font-size: 20px;

		font-weight: 300;

		line-height: 30px;

	}

}

@media (min-width: 768px) {

	.case-studies-page-heading h2 {

	  font-size: 40px;

	  line-height: 62px;

	}

	.case-studies-page-heading h2 span{

		font-size: 70px;

	}

	.case-studies-page-heading h2 {

	  font-size: 50px;

	  line-height: 52px;

	}

	.case-studies-page-heading h2 span{

		font-size: 60px;

	}	

}

@media (min-width: 992px) {

	.case-studies-page-heading {

		padding: 100px 0 15px;

		text-align: center;

	}

	.case-studies-page-heading h2 {

	  font-size: 70px;

	  line-height: 82px;

	}

	.case-studies-page-heading h2 span{

		font-size: 90px;

	}	

}

@media (min-width: 1600px) {

	.title-box h3 {

	    font-size: 32px;

	    line-height: 55.08px;

	}

}

/*--------------------------------------------------------------

# SINGLE CASE STUDIES 

--------------------------------------------------------------*/

.single-case-study-header{

	padding: 90px 0 50px;

	background-color: #2C2631;

}

.single-case-study-header h2 {

  color: #FFFFFF;

  font-size: 28px;

  font-weight: 500;

  letter-spacing: 0;

  line-height: 32px;

  text-align: center;

}

.single-case-study-header p {

  max-width: 774px;

  color: #FFFFFF;

  font-family: 'kaushan';

  font-size: 30px;

  letter-spacing: 0;

  line-height: 1;

  text-align: center;

  margin: 20px auto 10px;

}

.credits-item {

	padding: 0 10px;

	text-align: center;

}

.credits-item span,.credits-item  div {

  color: #F87F50;

  font-size: 70px;

  line-height: 80px;

  letter-spacing: -10.5px;

  font-family: 'kaushan';

}

.credits-item h5 {

  max-width: 219px;

  color: #FFFFFF;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 33px;

  margin: 0 auto 0px;

  font-weight: 400;

}



.case-study-content{

	padding: 30px 0 50px;

}

.single-case-studies-sidebar{

	padding: 0 5px;

}

.single-case-studies-sidebar .row{

	margin-left: -5px;

	margin-right: -5px;

}

.single-case-studies-sidebar h3{

    color: #28AE61;

    font-size: 32px;

    line-height: 40px;

    font-weight: 400;

	margin-bottom: 25px;

}

.single-case-studies-sidebar .channel-mix li{

	padding: 0 5px;

	margin-bottom: 20px;

}

.channel-mix li img{

	width: 100%;

	object-fit: cover;

}

.entry-content {

  max-width: 759px;

  color: #2C2631;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 33px;

  font-weight: 400;

}

.entry-content p{

	font-size: 18px;

	line-height: 28px;

	margin: 0 0 4%;

}

.entry-content h3{

  color: #28AE61;

  font-size: 32px;

  line-height: 40px;

  font-weight: 400;

  margin-bottom: 37px;

}

.entry-content ul{

	margin: 0 0 4%;

}

.entry-content .cs-single-content ul li {
    list-style: disc;
    margin-left: 18px;
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 30px;
}

.entry-content .cs-single-content ol li{
    margin-left: 6px;
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 30px;
}

.single-sidebar h3 {

  color: #28AE61;

  font-size: 32px;

  letter-spacing: 0;

  line-height: 56px;

}



.toggle-btn{

  color: #000000;

  font-size: 21.6px;

  letter-spacing: 0;

  line-height: 25.6px;

  text-align: center;

  position: relative;

  padding-right: 40px;

}

.toggle-btn:after{

	content: '';

	position: absolute;

	width: 27px;

	height: 32px;

	right: 0;

	top: 0;

}

.content_show:after{

	top: 5px;

	background-image:url('../images/label-down.png');

	background-repeat: no-repeat;

	background-position: center center;

}

.content_show.hide{

	opacity: 0;

}

.content_hide{

	opacity: 0;

}

.content_hide.show{

	opacity: 1;

}

.content_hide:after{

	top: -12px;

	background-image:url('../images/label-up.png');

	background-repeat: no-repeat;

	background-position: center center;

}

.row-company-testimonial {

	position:relative;

}



.client-testimonial{

	margin: 50px 0 60px 0px; 	

	padding: 0 30px 0 30px; 	

}

.row-company-testimonial .container{

	position: relative;

	z-index: 5;

}

.quote-icon{

	width: 50px;

	position: relative;

}

.quote-icon img{

	position: relative;

	margin-top: 5px;

	transform: rotate(10deg);

}

.quote-icon .img-outer{

	position: absolute;

	right: 0;

	top: 35px;

	margin: 0;

	transform: rotate(15deg);

}

.quote-icon-home {

  margin-bottom: 60px!important;

}

.testimonial-item p {

  max-width: 679px;

  color: #2C2631;

  font-size: 24px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 1.4;

  margin-bottom: 20px;

}

.testimonial-item h5 {

  color: #2C2631;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 28px;

}

.image-circle-center{

	width: 250px;

	height: 250px;

	border-radius: 50%;

}

.company-logo {

  height: 179px;

  width: 179px;

  color: #fff;

  position: relative;

  margin: -70px 0 0;

  text-transform: uppercase;

  border-radius: 50%;

  letter-spacing: 2px;

  background-color: #333333;

  text-align: center;

}

.company-logo img{

	display:none

}

.company-logo {

	background-size: contain;

	background-position: center center;

}

.related-section-title{

	padding: 90px 0 70px;

}

.related-section-title h2 {

  color: #FFFFFF;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 32px;

  margin: 0;

}

.related-wrapper{

	padding-bottom: 50px;

}

.back-to-page{

  color: #000000;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 32px;

  position: relative;

  padding: 0 0 0 0px;

  margin-top: 20px;

  display: block;

  float: left;

  transition: all 0.5s;

}

.back-to-page span{

	display: inline-block;

	width: 41px;

	height: 34px;

	margin-right: 10px;

	vertical-align: middle;

	position: relative;

	overflow: hidden;

}

.back-to-page span:before{

	content : '';

	width: 41px;

	height: 34px;

	position: absolute;

	left: 0;

	top: 0px;

	transition: all 0.5s;

	background-image:url('../images/back.png');

	background-repeat: no-repeat;

	background-position: bottom left;

}

.back-to-page span:after{

	content: '';

	width: 4px;

	height: 20px;

	position: absolute;

	right: 0;

	bottom: 12px;

	background: #000;

  transform: scaleY(1);    

  transform-origin: bottom;

  transition: transform 1s ease;

}

.back-to-page:hover span:after{

	transform: scaleY(0);

}

.back-to-page:hover:before{

	background-image:url('../images/back-hover.png');

}



.bg-orange{

	background-color: #28AE61;

}

@media (max-width: 767.69px) {

	.row-company-testimonial .container{

		max-width: 100%;

		padding: 0;

	}

	.testimonial-item h5 {

		font-size: 16px;

	}

}

	

@media (min-width: 768px) {

	.single-case-study-header{

		padding: 70px 0 70px;

	}

	.row-company-testimonial:after {

		content: '';

		width: 50%;

		height: 100%;

		position: absolute;

		right: 0;

		top: 0;

		background-color: #28AE61;

	}

	.credits-item{

		text-align: left;

	}

	.credits-item h5{

		margin: 0;

	}

	.credits-item span,.credits-item  div {

	  font-size: 100px;

	  line-height: 1;

	}

	.client-testimonial{

		margin: 70px 0 100px 0px; 	

		padding: 0 30px 0 30px; 	

	}

	.testimonial-item p {

	  font-size: 30px;

	}

	.image-circle-center{

		width: 300px;

		height: 300px;

		border-radius: 50%;

	}	

}

@media (min-width: 992px) {

	.case-study-content{

		padding: 90px 0;

	}

	.single-case-study-header{

		padding: 90px 0 70px;

	}

	.single-case-study-header p {

		font-size: 41px;

		 line-height: 46px;

		margin: 50px auto 50px;

	}

	.credits-item span,.credits-item  div {

	  font-size: 140px;

	  line-height: 1;

	}

	.credits-item {

		padding: 0 50px;

	}

	.client-testimonial{

		margin: 70px 0 100px 0px; 	

		padding: 0 0 0 50px; 	

	}	

	.image-circle-center{

		width: 350px;

		height: 350px;

		border-radius: 50%;

	}

	.entry-content p{

		font-size: 21px;

		line-height: 33px;

		margin: 0 0 4%;

	}

}

@media (min-width: 1200px) {

	.single-case-study-header{

		padding: 150px 0 100px;

	}

	.credits-item span,.credits-item  div {

	  font-size: 180px;

	  line-height: 1;

	}

	.client-testimonial{

		margin: 100px 0 200px 0px; 	

		padding: 0 0 0 50px; 	

	}	

	.testimonial-item p {

	  font-size: 38px;

	}

	.cs-single-content{

		width: 90%;

	}

}

/*--------------------------------------------------------------

# BLOG  PAGE

--------------------------------------------------------------*/

.post-page-wrapper{

	position: relative;

	z-index: 2;

	padding: 100px 0 70px;

	background-color: #28AE61;	

}

.blog-page-header h1  {

  color: #2C2631;

  font-size:45px;

  line-height: 50px;

  font-weight: 300;

  position: relative;

  z-index: 2;

  margin-bottom: 0px;

}

.blog-page-header h1 span {

  color: #2C2631;

  font-family: 'kaushan';

  font-size: 65px;

  line-height: 50px;

}





.blog-page-header img{

	position: absolute;

	left: -20px;

	top: -100px;

}



.post-column{

  position: relative;

  width: 100%;

  padding-right: 15px;

  padding-left: 15px;

}

.post-feat-image img{

	opacity: 0;

	display: none;

}

@media(max-width:767.69px) {

	.blog-page-header h1{

		text-align: center;

		margin: 0 0 30px;

	}	

}

@media(max-width:991.69px) {

	.post-feat-image {

		max-height:60vh;

	}

}

.post-feat-image{

	background-color: #fff;

}

.hover-scale{

	transition: all 0.5s;

	transform: scale(1);

}

.pic_wrapper:hover .hover-scale{

	transform: scale(1.1);

}

.post-class-0 .post-feat-image,

.post-class-1 .post-feat-image,

.post-class-2 .post-feat-image,

.post-class-3 .post-feat-image,

.post-class-5 .post-feat-image,

.post-class-6 .post-feat-image,

.post-class-7 .post-feat-image,

.post-class-8 .post-feat-image{

	padding-top: 70%;

	padding-bottom: 70%;

}

.post-class-4 .post-feat-image,

.post-class-9 .post-feat-image{

	padding-top: 70%;

	padding-bottom: 70%;	

}

.post-column{

	margin-bottom: 40px;

}

.post-column h2 {

  color: #2C2631;

  font-size: 24px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 34px;

  margin-top: 30px;

}

.post-column h2 a{

	color: #2C2631;

	transition: all 0.5s;

}

.post-column:hover h2 a{

	color: #28AE61;

}

.short-by h4{

  color: #2C2631;

  font-size: 28px;

  letter-spacing: 0;

  line-height: 41px;

  position: relative;

  padding-right: 40px;

  padding-bottom: 20px;

  cursor: pointer;

  display: inline-block;

  transition: all 0.5s;

}

.short-by h4:after{

	content: '';

	position: absolute;

	width: 27px;

	height: 32px;

	right: 0;

	transition: all 0.5s;

}

.short-by h4:after{

	top: 15px;

	background-image:url('../images/label-down.png');

	background-repeat: no-repeat;

	background-position: center center;

}

.short-by h4.active:after{

	top: 5px;

	background-image:url('../images/label-up.png');

	background-repeat: no-repeat;

	background-position: center center;

}

.short-by li{

	position: relative;

}

.short-by ul{

	position: static;

	left: -10px;

	margin-top: -30px;

	min-width: 260px;

	border-radius: 0px;

	padding: 15px 0;

	display: none;

	float: left; 

	width: 100%;

	background-color: transparent;

}



.short-by ul li{

	display: inline-block;

	padding: 0;

	margin: 0 20px 5px 0;

}

.short-by ul li a{

	font-size: 24px;

	color: #2C2631;

	font-weight: 500;

	display: inline-block;

	position: relative;

	transition: all 0.5s;

}

.short-by ul li a:after{

	content: '';

	width: 100%;

	height: 2px;

	position: absolute;

	left: 0;

	bottom: 0;

	transition: all 0.5s;

	background: #2C2631;

}

.short-by ul li a:hover{

	color: #28AE61;

}

.short-by ul li a:hover:after{

	width: 0;

}

.relative{

	position: relative;

}

.z-index{

	z-index: 99999;

}

@media (min-width: 320px) {

   
   .post-column .bg-image {
    height: 250px!important;
    }


}

@media (min-width: 576px) {

  .post-column{

	  padding-right: 5px;

	  padding-left: 5px;

  }

  .post-class-0,

  .post-class-1,

  .post-class-2,

  .post-class-3,

  .post-class-5,

  .post-class-6,

  .post-class-7,

  .post-class-8 {

    -ms-flex: 0 0 50%;

    flex: 0 0 50%;

    max-width: 50%;

  }

  .post-class-4 ,.post-class-9{

	-ms-flex: 0 0 50%;

	flex: 0 0 50%;

	max-width: 50%;

   }	
   .post-column .bg-image {
    height: 150px!important;
    padding:29%;
    }


}

@media (min-width: 768px) {

  .post-class-0,

  .post-class-1,

  .post-class-2,

  .post-class-3,

  .post-class-5,

  .post-class-6,

  .post-class-7,

  .post-class-8 {

    -ms-flex: 0 0 50%;

    flex: 0 0 50%;

    max-width: 50%;

  }

  .post-class-4 ,.post-class-9{

	-ms-flex: 0 0 50%;

	flex: 0 0 50%;

	max-width: 50%;

   }

	.margin-top-over{

		position: relative;

		margin-top: -50px;

		z-index: 4;

	}

	.short-by ul{

		margin-top: 30px;

		margin-bottom: 30px;

	}
    .post-column .bg-image {
    height: 250px!important;
    }

}



@media (min-width: 992px) {

  .post-class-0,

  .post-class-1,

  .post-class-2,

  .post-class-3,

  .post-class-5,

  .post-class-6,

  .post-class-7,

  .post-class-8 {

    -ms-flex: 0 0 50%;

    flex: 0 0 50%;

    max-width: 50%;

  }

  .post-class-4 ,.post-class-9{

    -ms-flex: 0 0 50%;

    flex: 0 0 50%;

    max-width: 50%;

   }

	.post-class-0 .post-feat-image,

	.post-class-1 .post-feat-image,

	.post-class-2 .post-feat-image,

	.post-class-3 .post-feat-image,

	.post-class-5 .post-feat-image,

	.post-class-6 .post-feat-image,

	.post-class-7 .post-feat-image,

	.post-class-8 .post-feat-image{

		padding-top: 74%;

		padding-bottom: 74%;

	}

	.post-class-4 .post-feat-image,

	.post-class-9 .post-feat-image{

		padding-top: 80%;

		padding-bottom: 67%;	

	}

	.post-column{

		margin-bottom: 70px;

	}

}



@media (min-width: 992px) {

	.post-column h2 {

	  font-size: 30px;

	  line-height: 42px;

	  margin-top: 30px;

	}

}


@media (min-width: 1200px) {

.post-column .bg-image {
height: 360px!important;
}


}

@media (min-width: 1340px) {

  .post-class-0,

  .post-class-1,

  .post-class-2,

  .post-class-3,

  .post-class-5,

  .post-class-6,

  .post-class-7,

  .post-class-8 {

    -ms-flex: 0 0 33.3%;

    flex: 0 0 33.3%;

    max-width: 33.3%;

  }

  .post-class-4 ,.post-class-9{

    -ms-flex: 0 0 66.6%;

    flex: 0 0 66.6%;

    max-width: 66.6%;

   }

    .post-class-0 .post-feat-image,

    .post-class-1 .post-feat-image,

    .post-class-2 .post-feat-image,

    .post-class-3 .post-feat-image,

    .post-class-5 .post-feat-image,

    .post-class-6 .post-feat-image,

    .post-class-7 .post-feat-image,

    .post-class-8 .post-feat-image{

        padding-top: 74%;

        padding-bottom: 74%;

    }

    .post-class-4 .post-feat-image,

    .post-class-9 .post-feat-image{

        padding-top: 80%;

        padding-bottom: 67%;    

    }

    .post-column{

        margin-bottom: 70px;

    }
    .post-column .bg-image {
    height: 250px!important;
    }

    .post-class-4 .bg-image,

    .post-class-9 .bg-image {

    height: 455px!important;
    }

}

@media (min-width: 1680px) {

  .post-class-0,

  .post-class-1,

  .post-class-2,

  .post-class-3,

  .post-class-5,

  .post-class-6,

  .post-class-7,

  .post-class-8 {

    -ms-flex: 0 0 33.3%;

    flex: 0 0 33.3%;

    max-width: 33.3%;

  }

  .post-class-4 ,.post-class-9{

    -ms-flex: 0 0 50%;

    flex: 0 0 50%;

    max-width: 50%;

   }

    .post-class-0 .post-feat-image,

    .post-class-1 .post-feat-image,

    .post-class-2 .post-feat-image,

    .post-class-3 .post-feat-image,

    .post-class-5 .post-feat-image,

    .post-class-6 .post-feat-image,

    .post-class-7 .post-feat-image,

    .post-class-8 .post-feat-image{

        padding-top: 74%;

        padding-bottom: 74%;

    }

    .post-class-4 .post-feat-image,

    .post-class-9 .post-feat-image{

        padding-top: 80%;

        padding-bottom: 67%;    

    }

    .post-column{

        margin-bottom: 70px;

    }
    .post-column .bg-image {
    height: 300px!important;
    }
    .post-class-4 .bg-image,
    .post-class-9 .bg-image {

    height: 455px!important;
    }

}




@media (max-width: 767.69px) {

	.blog-page-header h1 br{

		display: none;

	}

	.blog-page-header img{

		display: none;

	}

}

@media (min-width: 768px) {

	.blog-page-header h1  {

	  font-size: 50px;

	  line-height: 70px;

	  margin-top: -50px

	}

	.blog-page-header h1 span {

	  font-size: 90px;

	  line-height: 70px;

	}

	.blog-page-header img{

		left: -20px;

		top: -100px;

	}	

}

@media (min-width: 992px) {

	.blog-page-header h1  {

	  font-size: 66px;

	  line-height: 80px;

	  margin-top: -20px;

	  margin-left: 20px;

	}

	.blog-page-header h1 span {

	  font-size: 90px;

	  line-height: 80px;

	}

	.blog-page-header img{

		left: -20px;

		top: -100px;

	}	

}

@media (min-width: 1200px) {

	.blog-page-header h1  {

	  font-size: 76px;

	  line-height: 80px;

	  margin-top: 0px;

	  margin-left: 70px;

	}

	.blog-page-header h1 span {

	  font-size: 120px;

	  line-height: 90px;

	}

	.blog-page-header img{

		left: -20px;

		top: -100px;

	}	

}

/*--------------------------------------------------------------

# BLOG Single PAGE

--------------------------------------------------------------*/

.blog-page-wrapper{

	padding: 90px 0 0px;

	background-color: #28AE61;

}

.entry-header-wrap{

	

}

.entry-header{

	margin: 0 0 40px;

}

.list-category li a {

  color: #2C2631;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 33px;

}

.entry-title {

  color: #2C2631;

  font-size: 30px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 40px;

  margin: 10px 0 20px;

}

.post-date {

  color: #2C2631;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 41px;

}

.post-entry-content{

	padding: 40px 0 0;

}

.post-entry-content p {

  max-width: 100%;

  color: #2C2631;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 30px;

  font-weight: 400;

  margin: 0 0 20px;

}

.post-entry-content ul li{

  color: #2C2631;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 30px;

  font-weight: 400;

  margin: 0 0 10px;	

  position: relative;

  padding-left: 20px;

}

.post-entry-content ul {

	margin-bottom: 40px;

}

.post-entry-content ul li:before{

	content : '';

	width: 7px;

	height: 7px;

	position: absolute;

	left: 0;

	top: 12px;

	border-radius: 50%;

	background: #28AE61;

}

.post-entry-content .top-paragraph {

  color: #2C2631;

  font-family: 'kaushan';

  font-size: 40px;

  line-height: 46px;

  margin-bottom: 40px;

}

.post-entry-content .wp-block-quote {

	position: relative;

	padding: 90px 0 50px 20px;

	margin: 40px 0 0;

}

.post-entry-content .wp-block-quote:before {

	content: '';

	width: 40px;

	height: 62px;

	position: absolute;

	left: 0;

	top: 0;

	background-image: url('../images/blockquote.svg');

	background-repeat: no-repeat;

	background-position: top center;

}

.post-entry-content .wp-block-quote:after {

	content: '';

	width: 40px;

	height: 62px;

	position: absolute;

	left: 20px;

	top: 0px;

	margin-top: 30px;

	background-image: url('../images/blockquote.svg');

	background-repeat: no-repeat;

	background-position: top center;

	transform: rotate(5deg);

}

.post-entry-content .wp-block-quote p {

  max-width: 600px;

  color: #2C2631;

  font-size: 24px;

  font-weight: 300;

  letter-spacing: 0;

  line-height: 38px;

  margin: 0 0 30px;

}

.post-entry-content .wp-block-quote cite{

  color: #2C2631;

  font-size: 14px;

  font-weight: bold;

  letter-spacing: 0;

  line-height: 28px;

  font-style: normal;

}

.post-entry-content .wp-block-image{

	margin: 0 0 40px;

}

.post-entry-content .author-meta p{

  color: #2C2631;

  font-size: 18px;

  letter-spacing: 0;

  line-height: 30px;

}

.post-entry-content .author-meta p strong{

	position: relative;

	font-weight: 400;

}

.post-entry-content .author-meta p strong:after {

  content:'';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 3px;

  background: #2C2631;

}

.single-sidebar ul li {

  color: #2C2631;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 30px;

  display: block;

  margin: 0 3px 8px;

  padding-left: 0;

}

.single-sidebar ul li:before{

	content: none;

}



.single-sidebar ul li a{

	color: #2C2631;

	position: relative;

	transition: all 0.5s;

}

.single-sidebar ul li a:after{

  content:'';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 3px;

  background: #2C2631;

  transition: all 0.5s;

}

.single-sidebar ul li a:hover:after{

	background: #28AE61;

	width: 0;

}

.single-sidebar ul li a:hover{

	color: #28AE61;

}

.arrowed-cta{

	display: block;

	margin-top: 5px;

	margin-right: 15px;

	transform: rotate(-180deg);

}

.arrowed-cta .arrow {

 -webkit-transition:transform .5s ease;

 -moz-transition:transform .5s ease;

 -o-transition:transform .5s ease;

 transition:transform .5s ease;

 display:block;

 overflow:visible;

 width: 40px;

 cursor:pointer;

 transform:translateX(0)

}

.arrowed-cta .arrow #downline {

 transition:.5s ease;

 transform:scaleY(1);

 transform-origin:center

}

.arrowed-cta .arrow #sideways {

 transition:.5s ease;

 transform:translateX(0)

}

.block-invest .blocks:hover {

 cursor:pointer

}



.block-invest .blocks:hover .arrow .cls-2,

.block-invest .blocks:hover svg {

 fill:#000

}

.block-invest .blocks:hover .arrow {

 -webkit-transition:transform .4s ease;

 -moz-transition:transform .4s ease;

 -o-transition:transform .4s ease;

 transition:transform .4s ease;

 transform:translateX(0px)

}

.block-invest .blocks:hover .arrow #downline {

 transform:scaleY(0);

 transition:.3s ease

}

.block-invest .blocks:hover .arrow #sideways {

 -webkit-transition:transform .3s ease;

 -moz-transition:transform .3s ease;

 -o-transition:transform .3s ease;

 transition:transform .3s ease;

 transform:translateX(25px)

}

.blocks{

  color: #000000;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 32px;

  position: relative;

  padding: 0 0 0 0px;

  margin-top: 20px;

  transition: all 0.5s;

}

@media (max-width:767.69px) {

	.post-entry-content .wp-block-quote:after, .post-entry-content .wp-block-quote:before {

		width:30px;

		height:30px;

		background-size:contain;

		top: 50px;

	}

	

	.post-entry-content .wp-block-quote:after {

		margin-top:10px;

	}

}

@media (min-width: 768px) {

	.entry-title {

	  font-size: 40px;

	  line-height: 56px;

	  margin: 20px 0 40px;

	}

}

@media (min-width: 992px) {

	.blog-page-wrapper{

		padding: 120px 0 0px;

	}

	.entry-title {

	  font-size: 56px;

	  line-height: 76px;

	}

	.post-entry-content {

		padding: 80px 0 0;

	}

	.post-entry-content .author-meta p {

		font-size: 21px;

		line-height: 30px;

	}

	.post-entry-content p {

	  font-size: 21px;

	  line-height: 33px;

	  margin: 0 0 40px;

	}	

	.post-entry-content ul li {

	  font-size: 21px;

	  line-height: 30px;

	  margin: 0 0 10px;

	}

	.post-entry-content .top-paragraph {

	  font-size: 60px;

	  line-height: 66px;

	  margin-bottom: 70px;

	}

	.post-entry-content .wp-block-quote {

		position: relative;

		padding: 90px 0 50px 40px;

		margin: 70px 0 0;

	}

	.post-entry-content .wp-block-quote p {

	  font-size: 30px;

	  line-height: 46px;

	}

	.post-entry-content .wp-block-quote cite{

	  font-size: 18px;

	  line-height: 32px;

	}

}

@media (min-width: 1200px) {

	.blog-page-wrapper{

		padding: 160px 0 0px;

	}

	.post-entry-content .wp-block-quote p {

	  font-size: 38px;

	  line-height: 58px;

	}

}

/*--------------------------------------------------------------

# Page Contact

--------------------------------------------------------------*/

.page-top-section{

	padding: 160px 0 0px;

}

.default-page-header{

	padding: 70px 0 20px;

}

.page-container{

	padding: 20px 0 50px;

}

.top-title {
	color: #2C2631;
	font-size: 36px;
	letter-spacing: 0;
	line-height: 50px;
	margin-top: 10vh;
	font-weight: 400;
}

.top-title span{

	font-family: 'kaushan';

	font-size: 50px;

	line-height: 1;

}

.contact-row{

	margin-top: 50px;

}

.contact-info {

  color: #363131;

  font-size: 21px;

  letter-spacing: 0;

  line-height: 33px;

  font-weight: 400;

  color: #363131;

  margin-bottom: 40px;

}

.contact-info ul li{

	display: block;

	margin: 0 0 5px;

}

.contact-info ul li a{

	display: inline-block;

	color: #363131;

	position: relative;

}

.contact-info ul li a:after{

	content: '';

	position: absolute;

	width: 0;

	height: 2px;

	position: absolute;

	left: 0;

	bottom: 0;

	transition: all 0.5s;

	background: #28AE61;

}

.contact-info ul li a:hover{

	color: #28AE61;

}

.contact-info ul li a:hover:after{

	width: 100%;

}

.contact-info h4{

	font-weight: 400;

	margin-bottom: 20px;

	color: #28AE61;

}

.map-box {

  position: relative;

  padding: 25%;

}

#map{

	width: 100%;

	height: 100%;

	position: absolute;

	left: 0;

	top :0;

}

@media(max-width:768px) {

	.map-box {

		height:80vh;

	}

}

@media (min-width: 1200px) {

	.page-top-section{

		padding: 250px 0 10px;

	}

	.page-container{

		padding: 50px 0 100px;

	}

	.default-page-header{

		padding: 170px 0 20px;

	}

	.top-title{

	  font-size: 50px;

	  line-height: 82px;

	}

	.top-title span{

		font-size: 90px;

		line-height: 1;

	}

	.contact-row{

		margin-top: 100px;

	}	

}

/*--------------------------------------------------------------

# 404

--------------------------------------------------------------*/

.error-page{

	padding: 20% 0;

}

.error-title{

	font-size: 20vw;

	line-height: 1;

	color: #28AE61;

	font-family:'kaushan';

}

.error-page p{

	font-size: 24px;

	color: #2C2631;

}

.error-page a{

	font-size: 20px;

	position: relative;

	color: #2C2631;

	padding: 0;

	transition: all 0.5s;

}

.error-page a:hover{

	color: #28AE61;

}

.error-page a:after{

	content: '';

	width: 100%;

	height: 2px;

	position: absolute;

	left: 0;

	bottom: 0;

	transition: all 0.5s;

	background-color: #2C2631;

}

.error-page a:hover:after{

	width: 0;

	background-color: #28AE61;

}

/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

.footer-top{

	padding: 50px 0;

	background-color: #2C2631

}

.site-footer h2 ,.menu-bottom h2{

  color: #fff;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 40px;

  text-align: center;

  font-weight: 400;

}

.menu-bottom h2{

	text-align: left;

}

.site-footer h2 span,.menu-bottom h2 span {

  color: #28AE61;

  font-family: 'kaushan';

  font-size: 50px;

  letter-spacing: 0;

  line-height: 50px;

  text-align: center;

}

.site-footer .say-hi {

  color: #FFFFFF;

  font-size: 30px;

  letter-spacing: 0;

  line-height: 43px;

  text-align: center;

  font-weight: 400;

  position: relative;

  display: inline-block;

  margin: 0 auto;

  padding-bottom: 5px;

}

.site-footer .say-hi a{

	 color: #FFFFFF;

	 transition: all 0.5s;

}

.site-footer .say-hi:before{

	content: '';

	position: absolute;

	left: 0;

	bottom: 0;

	width: 100%;

	height: 2px;

	transition: all 0.5s;

	background: currentColor;

}

.site-footer .say-hi:hover:before{

	width: 0;

}

.site-footer .say-hi:hover a{

	color: #28AE61;

}

.footer-wrap {

	margin-top: 50px;

}

.footer-wrap ul {

	margin-bottom: 30px;

}

.footer-wrap ul li{

  color: #FFFFFF;

  font-size: 16px;

  letter-spacing: 0;

  line-height: 1;

  font-weight: 400;

  margin: 0 0 15px;

  display: block;

}

.menu-bottom ul li{

	margin: 0 0 10px;

}

.footer-wrap ul li a,.menu-bottom ul li a{

	color: #fff;

	position: relative;

	transition: all 0.5s;

}

.footer-wrap ul li a:before,.menu-bottom ul li a:before{

	content: '';

	position: absolute;

	left: 0;

	bottom: 0;

	width: 0;

	height: 2px;

	transition: all 0.5s;

	background: currentColor;

}



.footer-wrap ul li a:hover,.menu-bottom ul li a:hover{

	color: #28AE61;

}

.footer-wrap ul li a:hover:before,.menu-bottom ul li a:hover:before{

	width: 100%;

}

.signup h4 {

  color: #28AE61;

  font-size: 16px;

  letter-spacing: 0;

  line-height: 22px;

  font-weight: 400;

}

.signup{

	max-width: 350px;

}

.signup-field{

	position: relative;

	padding: 0 0 10px;

	margin-bottom: 10px;

	border-bottom: 1px solid #FFFFFF;

}

.signup-field input[type="email"],

.signup-field input[type="text"]{

	border: 0;

	color: #fff;

	background-color: transparent;

}

.signup-field input[type="submit"]{

	border: 0;

	color: #fff;

	position: absolute;

	right: 0;

	top: 0;

	background-color: transparent;

	color: #FFFFFF;

	font-size: 15px;

	letter-spacing: 0;

	line-height: 32px;

}

.signup label {

  color: #FFFFFF;

  font-size: 12px;

  letter-spacing: 0;

  line-height: 16px;

  font-weight: 300;

  position: relative;

  padding-left : 20px;

}

.signup label input{

	margin-right: 5px;

	position: absolute;

	left: 0;

	top: 3px;

}

.base-wrap{

	padding: 15px 0 20px;

}

.base-wrap p{

  color: #2C2631;

  font-size: 14px;

  letter-spacing: 0;

  line-height: 20px;

  font-weight: 400;

  margin: 0 0 15px;

}

.base-wrap a {

  color: #2C2631;

  font-size: 15px;

  letter-spacing: 0;

  line-height: 20px;

  font-weight: 400;

}



@media (max-width: 575.69px) {

	.base-wrap p span{

		display: block;

	}

}

@media (min-width: 480px) {

	.base-wrap p{

		margin: 0;

	}

}

@media (min-width: 768px) {

	.site-footer h2,.menu-bottom h2 {

	  font-size: 40px;

	  line-height: 50px;

	}

	.site-footer h2 span,.menu-bottom h2 span {

	  font-size: 80px;

	  line-height: 70px;

	}

	.signup{

		margin-left: auto;

	}

	.footer-wrap ul li,.signup h4 {

		font-size: 19px;

	}

	.base-wrap p{

		font-size: 15px;

	}

}

@media (min-width: 1200px) {

	.footer-top{

		padding: 90px 0;

	}

	.footer-wrap {

		padding: 0 6%;

		margin-top: 150px;

	}

	.site-footer h2,.menu-bottom h2 {

	  font-size: 50px;

	  line-height: 60px;

	}

	.site-footer h2 span,.menu-bottom h2 span {

	  font-size: 102.02px;

	  line-height: 83.3px;

	}

	.site-footer .say-hi {

	  font-size: 38.37px;

	  line-height: 1;

	}	

}
.page-template-template-giving-back .giving-back-container{
	background: #F2F1AE;
	padding-top: 150px;
	padding-bottom: 110px;
}
.page-template-template-giving-back .credits{
	background: #fff;
	padding: 35px 0 60px;
}
.page-template-template-giving-back .site-logo-img #Fill-1,
.page-template-template-giving-back .site-logo-img #Fill-2,
.page-template-template-giving-back .site-logo-img #Fill-3,
.page-template-template-giving-back .site-logo-img #Fill-4,
.page-template-template-giving-back .site-logo-img #Fill-5,
.page-template-template-giving-back .site-logo-img #Fill-6,
.page-template-template-giving-back .site-logo-img #Fill-7,
.page-template-template-giving-back .site-logo-img #Fill-8,
.page-template-template-giving-back .site-logo-img #Fill-9,
.page-template-template-giving-back .site-logo-img #Fill-10,
.page-template-template-giving-back .site-logo-img #Fill-11,
.page-template-template-giving-back .site-logo-img #Fill-12,
.page-template-template-giving-back .site-logo-img #Fill-13,
.page-template-template-giving-back .site-logo-img #Fill-14,
.page-template-template-giving-back .site-logo-img #Fill-15{
	fill: #2C2631;
}
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-1,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-2,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-3,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-4,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-5,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-6,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-7,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-8,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-9,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-10,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-11,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-12,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-13,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-14,
.page-template-template-giving-back .headroom--not-top .site-logo-img #Fill-15{
	fill: #fff;
}
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-1,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-2,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-3,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-4,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-5,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-6,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-7,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-8,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-9,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-10,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-11,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-12,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-13,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-14,
.page-template-template-giving-back.header-fixed .site-logo-img #Fill-15{
	fill: #fff;
}
.page-template-template-giving-back #header .hamburger .bar {
    background-color: #2C2631;
}
.page-template-template-giving-back #header.headroom--not-top  .hamburger .bar {
    background-color: #fff;
}
.page-template-template-giving-back.header-fixed #header .hamburger .bar {
    background-color: #fff;
}
.top-wrap{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}
.svg-shape{
	position: relative;
}
.top-wrap h1 {
  color: #2C2631;
  font-size: 110px;
  line-height: 121.5px;
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 300;
  margin-left: -20px;
  transform: translate(-50% , -50%);
}
.top-wrap h1 span{
  color: #2C2631;
  font-family: 'kaushan';
  font-size: 180px;
  line-height: 121.5px;
}
.site-logo-img a{
	display: block;
}
.gb-text-widget p {
  color: #2C2631;
  font-size: 21px;
  line-height: 33px;
}
.gb-text-widget h2 {
  color: #2C2631;
  font-family: 'kaushan';
  font-size: 60px;
  line-height: 66px;
  margin-top: 50px;
}
.gb-text-widget h2 span{
	position: relative;
}
.gb-text-widget h2 span:after{
	content: '';
	display: block;
	background-image:url(../images/gb-path.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 15px;
	position: absolute;
	left: 0;
	bottom: 20px;
}
@media (max-width: 991.98px) {
	.svg-shape{
		max-width: 320px;
		margin: 0 auto;
	}
	.svg-shape svg{
		width: 100%;
		height: auto;
	}
	.top-wrap h1 {
	  font-size: 60px;
	  line-height: 65px;
	}
	.top-wrap h1 span{
	  font-size: 80px;
	  line-height: 60.5px;
	}
}
.advertising-industries{
	padding: 100px 0 0;
}
.site-content {
	max-width: 1210px;
	margin: 0 auto;
	padding-bottom: 70px;
	position: relative;
}
.site-title{
	padding: 0 25px;
}
.site-title h2{
	color: #2C2631;
	font-size: 30px;
	font-weight: 300;
	line-height: 40px;
	margin: 0 0 50px;
}
.carousel-container .image{
	position: relative;
	padding-top: 61.9%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.carousel-container .image img{
	display: none;
}

.carousel-container .slick-prev {
    left: 15px;
}
.carousel-container .slick-next {
    right: 15px;
}

.carousel-container .slick-prev, .carousel-container .slick-next {
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
	z-index: 999;
	border-radius: 50%;
    background-color: rgba(12,12,12,0.79);
}

.carousel-container .slick-prev::before, .carousel-container .slick-next::before{
	content: none;
}
.carousel-container .slick-next::after{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	left: 50%;
	top: 50%;
	border-bottom: 4px solid;
    border-right: 4px solid;
    transform: rotate(-45deg);
	border-color: #fff;
	margin: -8px 0 0 -10px;
}
.carousel-container .slick-prev::after{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	left: 50%;
	top: 50%;
	border-bottom: 4px solid;
    border-right: 4px solid;
    transform: rotate(130deg);
	border-color: #fff;
	margin: -7px 0px 0 -5px;
}
.slider__counter{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 999;
	border-radius: 13px;
	color: #FFFFFF;
	font-size: 21px;
	line-height: 33px;
	padding: 0 5px;
	font-weight: 300;
	min-width: 80px;
	text-align: center;
	background-color: #000000;
}
.carousel-container{
	position: relative;
}
.site-container{
	padding: 50px 25px 0 25px;
}
.site-text-widget{
	max-width: 770px;
	float: left;
}
.site-text-widget p {
	color: #2C2631;
	font-size: 21px;
	line-height: 33px;
}
.content-share {
	float: left;
	width : 100%;
	margin-top: 30px;
}
.content-share a,.content-share span {
	color: #2C2631;
	font-size: 21px;
	line-height: 41px;
	position: relative;
}
.content-share a:after,
.external-page-link a:after,
.section-header a:after{
	content: '';
	width: 100%;
	height: 3px;
	background: #2C2631;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scaleX(0);    
	transform-origin: right;
	transition: transform 1s ease;
}
.content-share a:hover:after{
	transform: scaleX(1);
	transform-origin: left;
}
.external-page-link span {
	color: #2C2631;
	font-size: 21px;
	line-height: 41px;
	margin-right: 20px;
}
.external-page-link a {
	color: #2C2631;
	font-size: 21px;
	line-height: 41px;
	position: relative;	
}
.external-page-link a:after,
.section-header a:after{
	transform: scaleX(1);
	transform-origin: left;
}
.section-header a:after{
	background: #fff;
}
.external-page-link a:hover:after,
.section-header a:hover:after{
	transform: scaleX(0);
	transform-origin: left;	
}

@media (max-width: 575.98px) {
	.external-page-link span{
		display: block;
	}
}
@media (min-width: 768px) {
	.site-title h2{
		font-size: 46px;
		line-height: 66px;
	}
}
@media (min-width: 992px) {
	.content-share {
		float: left;
		padding-left: 70px;
		width: auto;
		margin: 0;
	}	
}
@media (min-width: 1200px) {
	.site-title{
		padding: 0 106px;
	}
	.site-title h2{
		font-size: 56px;
		line-height: 76px;
	}
	.site-container{
		padding: 90px 0 0 106px;
	}
	.content-share {
		float: left;
		padding-left: 70px;
	}
}
.gb-bottom {
	padding: 90px 0;
	background-color: #2C2631;
}
.section-header{
	padding: 0 15px;
}
.section-header h2{
	color: #F87F50;
	font-family: 'kaushan';
	font-size: 50px;
	line-height: 52px;
	text-align: center;
	position: relative;
	margin: 0 auto;
	padding-left: 70px;
	padding-right : 50px;
	padding-top: 20px;
}
.section-header h2:before{
	content: '';
	width: 70px;
	height: 95px;
	position: absolute;
	left: 0;
	top: 0;
	background-image:url(../images/QUOTE-01.svg);
	background-repeat: no-repeat;
	background-position: center top;
}
.section-header h2:after{
	content: '';
	width: 70px;
	height: 95px;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image:url(../images/QUOTE-001.svg);
	background-repeat: no-repeat;
	background-position: center top;
}
.section-header p {
	max-width: 822px;
	color: #FFFFFF;
	font-size: 21px;
	line-height: 33px;
	margin: 30px auto;
}
.section-header a {
	color: #FFFFFF;
	font-size: 21px;
	line-height: 41px;
	position: relative;
	padding-bottom: 5px;
}
.slider-section{
	max-width: 1600px;
	margin: 0 auto;
}
.slider {
  margin: 20px auto;
  text-align: center;
  padding: 20px;
  color: white;
}
.slider .slide {
  padding: 0;
}
.slider .slide .child-element {
  transition: all 0.2s ease;
  background-color: red;
  width: 96%;
  padding-top: 60%;
  transition: all 0.5s;
  margin: 8% 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slider .slide.slick-center .child-element {
  background-color: yellow;
  margin: 0;
  max-width: initial;
  padding-top: 76%;
}
.slider-section .slick-prev{
	left: 0;
	width: 50%;
	height: 100%;
	z-index: 56;
}
.slider-section .slick-next{
	right: 0;
	width: 50%;
	height: 100%;
}
.slider-section .slick-prev:before,
.slider-section .slick-next:before{
	content: none;
}
.slider .slide .child-element img{
	display: none;
}
@media (min-width: 992px) {
	.section-header h2{
		font-size: 80px;
		line-height: 82px;
	}
	.slider .slide .child-element {
	  
	}
	.slider .slide.slick-center .child-element {
	  
	}
}
.top-section{
	position: relative;
}
.top-section .down-arrow{
	position: absolute;
	width: 100%;
	bottom: 30px;
	left: 0;
}
.down-arrow a{
	-webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
  -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
  animation: ca3_fade_move_down 2s ease-in-out infinite;
}
.down-arrow a svg{
	transform: rotate(90deg)
}
/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}
@-moz-keyframes ca3_fade_move_down {
  0% {
    -moz-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes ca3_fade_move_down {
  0% {
    transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}

.darkbg {
	display: none;
	position: fixed;
	opacity: 0.6;
	background: white; /*#22242a;*/
	width: 100vw;
	height: 100vh;
	z-index: 98;
}

/*candidate modal*/
.profilebox {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white; /*#22242a;*/
	min-height: 218px;
	max-width: 600px;
	width: calc(60% - 120px);
	border-radius: 8px;
	padding: 50px 20px 20px 100px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
	flex-direction: column;
	z-index: 99;
	background-image: url(../images/bgpeach.png);
	background-size: 15vw;
	background-repeat: no-repeat;
	background-position: right;
}

.profpic {
	position: absolute;
	top: 20px;
	left: -70px;
	height: 150px;
	max-width: 100%;
	border-radius: 50%;
	border: 4px solid white;
	background: #22242a;
	display: inline-block;
	box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
}

.prof-close {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 30px;
	line-height: 30px;
	width: 30px;
	background: transparent;
	outline: 0 none;
	border: none;
	border-radius: 50%;
	font-size: 18pt;
	color: rgba(0,0,0,.2);
	cursor: pointer;
	text-align: center;
	transition: all 0.15s ease-in-out;
	
}

	.prof-close:active {
		background: rgba(255,255,255,.02);
		box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
	}

.prof-sm {
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
	top: 180px;
	left: -20px;
	width: 40px;
}

	.prof-sm .sm {
		width: 40px;
		height: 40px;
		margin-bottom: 4px;
		border-radius: 50%;
		background: #22242a;
		transition: all 0.15s ease-in-out;
		box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
	}

		.prof-sm .sm:hover {
			background: #26282E;
		}

		.prof-sm .sm:active {
			background: #31343b;
		}

	.prof-sm a {
		display: inline-block;
		height: 40px;
		width: 40px;
		border-radius: 50%;
	}

	.prof-sm svg {
		width: 30px;
		height: 30px;
		margin: 5px;
		border-radius: 50%;
	}

	.prof-sm path {
		fill: rgba(255,255,255,.2);
	}

.prof-name {
	display: block;
	margin: 0;
	color: #28AE61;
	font-weight: normal;
	font-size: 20pt;
}

.prof-user {
	display: block;
	margin: 0;
	color: #22242a;
	opacity: 0.5;
	font-weight: normal;
	font-size: 11pt;
}


.user-desc {
	color: rgba(255,255,255,.7);
	font-size: 11pt;
	line-height: 12pt;
	flex: 1 0 auto;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;
}

.modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	width: 320px;
	height: 320px;
	text-align: center;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.profilebox.visible {
	display: block;
}

.smicon{
	max-width: 100%;
	height: 5vh;
	margin-right: 9%;
}



@media (orientation : portrait) {
	.profilebox {
		min-height: 200px;
		width: 70vw;
		padding-left: 7% !important;
		padding: 96px 20px 20px 100px;
		background-size: 40vw;
		background-position:bottom right;
	}

	.profpic {
		top: -38%;
		left: 19%;
		height: 20vh
	}

	.smicon {
		max-width: 100%;
		height: 3vh;
	}
	.end-title {
		margin-left: 4%;
	}

	#exampleModalCenter {
		margin-top: 90% !important;
	}

}

#exampleModalCenter {
	margin-left: 50%;
	margin-right: 50%;
	margin-top: 33%;
	background: transparent;
}

.donatebtn{
	    background-color: #28AE61;
    font-size: 20px;
    line-height: 1;
    display: block;
	color: white;
    font-family: 'kaushan';
        text-align: center;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        padding: 0 30px;
        height: 55px;
        border: none;
        width: 100%;
		margin-right: 20px;
		margin-top:22px;
}


 .donatebtn:hover,
       .donatebtn:focus {
            background-color: #F87F50;
        }
 
 .modaldonate{
	    background-color: #fff;
    font-size: 20px;
    line-height: 1;
    display: block;
	color: #28AE61;
    font-family: 'kaushan';
        text-align: center;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        padding: 0 30px;
        height: 55px;
        border: none;
        width: 100%;
		margin-right: 20px;
		margin-top:22px;
}


 .modaldonate:hover,
       .modaldonate:focus {
            background-color: #F87F50;
			color: #fff;
        }

 @media (orientation : portrait) {
	.donatebtn {
		font-size: 10px;
		padding: 0 20px;
		height: 38px;
		border: none;
		width: 80%;
		margin-right: 20px;
		margin-top: 20px;
	}

	#header .hamburger{
		margin-top: 20px;
	}

	.cand-caption{
		text-align: center !important;
		font-size: 0.8em !important;
		justify-content: center !important;
		justify-content: center !important;
	}
	.cand-moreinfo{
	 display:none !important
 }
}

 .cand-caption{
	 margin-top: 15px;
	 font-size: 0.9em;
	 justify-content: space-between;
 }


 .cand-moreinfo{
	 text-align: right;
	 float: right;
	 color: #28AE61;
 }