/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #003e5b;
}

a {
  color: #003e5b;
  text-decoration: none;
}

a:hover {
  color: #003e5b;
  text-decoration: none;
}

a:visited {color:inherit }

.white-links a {
	color: #fff;
	border-bottom: 0.5px solid #fff;
	padding-bottom: 1px;
	transition: all 0.25s linear;
}
.white-links a:hover,
.white-links a:focus  {
	color: #eee;
	border-bottom: 0.5px solid transparent;
	padding-bottom: 1px;
}

@keyframes coverUp {
    0% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.045, 1);
    }
}

.link-decor::after {
    content: '';
    transition: opacity 0.3s;
}

.link-decor:hover::after {
    opacity: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

.invisible {
	display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #003e5b;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #222135;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #003e5b;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
}

#header .logo a {
  color: #003e5b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #003e5b;
  white-space: nowrap;
  transition: 0.3s;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	  margin: 10px 0 10px 25px;
text-transform: uppercase;
	padding: 0;
	border-bottom: 1px solid #fff;
	letter-spacing: 0.5px;
}

.navbar a:hover, 
.navbar .active, 
.navbar .active:focus, 
.navbar li:hover > a {
	  color: #222135 !important;
	border-bottom: 1px solid #222135;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #2487ce;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #003e5b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1.5rem;
  color: #003e5b;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #222135;
}


@media screen and (max-width: 768px) {
.navbar a, .navbar a:focus {
	border-bottom: 1px solid #D8DDDF;
	font-weight: 400;
	margin-right: 25px;
}
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
	border-bottom: 1px solid #D8DDDF;
	padding: 5rem 0 5rem;
}

#hero::after {
      width:100%;
      height:100%;
      content: '';
      position:absolute;
      z-index:10;
      top:0;
      left:0;
      background:rgba(255,255,255,0)
}

.vimeo-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
}
.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#hero .container {
  padding: 100px 0 70px;
	position:relative;
	z-index:20;
}

#hero p {
	font-size: 2.5rem;
	letter-spacing: 2.5px;
	font-weight: 300;
	text-transform: uppercase;
	margin-left: 10px;
	font-family: 'Roboto', sans-serif;
}

#hero h1 {
	line-height: 160%;
	font-size: 3rem;
	letter-spacing: 2.5px;
	font-weight: 300;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
}

#hero .small-heading {
	line-height: 160%;
	font-size: 2rem;
	letter-spacing: .5px;
	font-weight: 300;
	text-transform: none;
	font-family: 'Roboto', sans-serif;
}

#hero .tiny-heading {
	line-height: 200%;
	font-size: 1.4rem;
	letter-spacing: 1px;
	font-weight: 300;
	text-transform: none;
	font-family: 'Roboto', sans-serif;
	max-width: 620px;
	margin: 0 auto;
}

#hero h3 {
	font-weight: 300;
	letter-spacing: 1px;
	margin-bottom: 0;
	font-size: 2.5rem;
}

#hero hr {
	border-top: 1px solid #fff;
	width: 60%;
	margin: 2.5rem auto;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }

}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }

}

@media (max-width: 800px) {
.vimeo-wrapper iframe {
   top: 50%;
   left: 100%;
   transform: translate(-50%, -50%);
}
}

@media screen and (max-width: 768px) {
#hero p {
	font-size: 1.6rem;
	letter-spacing: 2px;
}
#hero hr {
	border-top: 1px solid #fff;
	width: 60%;
	margin: 1.5rem auto;
}
#hero h1 {
	font-size: 2rem;
}
#hero h3 {
	font-size: 1.5rem;
}
}


/*--------------------------------------------------------------
# Arrow Scroll
--------------------------------------------------------------*/
.arrow-container {
position: absolute;
	bottom: 5%;
	left: 50%;
	z-index: 30;
	overflow: visible;
}

.arrow,
.arrow:before {
  position: absolute;
  left: 50%;
}

.arrow {
  width: 60px;
  height: 60px;
  margin: 0 0 0 -30px;
  -webkit-transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #003e5b solid;
  border-bottom: 2px #003e5b solid;
}
.arrow:hover {
  border-right: 2px #222135 solid;
  border-bottom: 2px #222135 solid;
}

.arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 2px #003e5b solid;
  border-bottom: 2px #003e5b solid;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 8rem 0;
  overflow: hidden;
}

.section-bg {
	padding: 5rem 0;
	background-color: #f7f8f9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
	max-width: 680px; 
	margin: 0 auto;
}

.section-title h1,
.section-title h2,
.section-title h3 {
  font-size: 2em;
  font-weight: 400 !important;
  padding-bottom: 0;
  color: #003e5b;
	letter-spacing: 1px;
	line-height: 150%;
}

.section-title p {
  font-size: 1.8em;
  font-weight: 400 !important;
  padding-bottom: 0;
  color: #003e5b;
	letter-spacing: 0;
}

.h2-small {
  font-size: 1.3em;
  font-weight: 500 !important;
  padding: 10px 20px;
  color: #003e5b;
  letter-spacing: 0;
  text-align: left;
	background: #eee;
	margin-bottom: 30px;
}

.h3-small {
  font-size: 1.3em;
  font-weight: 500 !important;
  color: #003e5b;
  letter-spacing: 0;
	margin: 50px 0 20px;
}

section a,
footer a {
	color: #003e5b;
	border-bottom: 1px solid #003e5b;
	padding-bottom: 1px;
	transition: all 0.25s linear;
}
section a:hover,
section a:focus,
footer a:hover,
footer a:focus {
	color: #222135;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
}

@media screen and (max-width: 768px) {
section {
  padding: 6rem 0;
  overflow: hidden;
}
.section-bg {
	padding: 3rem 0;
	background-color: #f7f8f9;
}
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about-us .icon-boxes {
	margin: 3rem auto 0 auto;
}

.about-us .icon-box {
  padding: 2.5rem 1rem 2rem;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 1;
	width: 100%;
}

.about-us .icon-box .title {
  font-weight: 300;
  font-size: 2.1rem;
font-family: 'Roboto', sans-serif;
	line-height: 140%;
}

.about-us .border-right  {
  border-right: 1px solid #D8DDDF;
}
.about-us .border-bottom {
  border-bottom: none !important;
}

.about-us hr {
	border-top: 1px solid #999;
	width: 100%;
	margin: 2rem 0 2rem;
}

.about-us .ciqs-logo {
	width: 80%;
	margin-bottom: 5rem;
}

.about-us .gs-logo {
	width: 40%;
	margin-bottom: 5rem;
}

.about-us .ciqs-logo img,
.about-us .gs-logo img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  filter: grayscale(100);
}

.about-us .ciqs-logo img:hover,
.about-us .gs-logo img:hover {
  filter: none;
  transform: scale(1.08);
}

.about-us li {
	margin: 5px 0;
}


@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {

.about-us .icon-boxes {
	margin: 4rem auto -4rem auto;
}

.about-us .icon-box {
  padding: 0rem 1rem 1rem;
}
	
.about-us .border-right {
  border-bottom: 1px solid #D8DDDF;
	border-right: none;
}

.about-us .border-bottom {
  border-bottom: 1px solid #D8DDDF !important;
}
	.about-us .border-margin {
		margin-top: -70px;
	}
}


 @media only screen and (min-width: 769px) and (max-width: 1024px) {

.about-us .icon-box p {
  font-weight: 400;
  font-size: 1.5rem !important;
}
	 .about-us .icon-boxes {
	margin: 4rem auto -4rem auto;
}
	 .about-us .icon-box .title {
    font-size: 1.6rem !important;
}
}

@media screen and (max-width: 1024px) {
.about-us .ciqs-logo {
	width: 50%;
	margin: 0 auto 3rem;
}
.about-us .gs-logo {
	width: 30%;
	margin: 0 auto 3rem;
}
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-size: cover;
  padding: 7rem 0;
  position: relative;
  background: url("../img/bg-cta.jpg") bottom center;
}

.cta p {
    font-weight: 300;
  font-size: 2.1rem;
  color: #fff;
	max-width: 80%;
	margin: 0 auto;
	  font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 768px) {
.cta {
  padding: 3rem 0;
}
.cta p {
  font-size: 1.5rem;
	max-width: 100%;
}
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 7rem 0;
  position: relative;
  background-color: #003e5b;
}

.team hr {
	color: #fff;
	width: 70%;
	margin: 1rem auto;
}


.team h4 {
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
  	font-weight: 400;
}

.team p {
  font-weight: 400;
  font-size: 1rem;
	line-height: 160%;
	color: #fff;
	text-align: center;
}

.team a {
  color: #fff;
  text-decoration: none;
	border-bottom: 1px solid #fff;
}

.team a:hover,
.team a:active {
  color: #fff;
  text-decoration: none;
	border-bottom: 1px solid transparent;

}

.team .degree {
  font-size: 0.8rem;
}

.team .linkedin {
	color: #fff;
	margin: 0 auto;
	text-align: center;
}

.team .linkedin span {
	margin-top: 0.5rem;
}

.team .linkedin i {
	margin-right: 0.5rem;
}

.team p span {
  font-weight: 400;
  font-size: 0.8rem;
	line-height: 150% !important;
	color: #fff;
	text-align: center;
	display: block;
	margin: 1rem 0.5rem 0;
	
}

.team .project-img {
  position: relative;
  overflow: hidden;
	width: 300px;
	height: 300px;
	margin: 0 auto 1rem;
	border-radius: 5px;
}

.team .project .project-img img {
  transition: all 1s ease-in-out;
  display: inline-block;
}

.team .project .project-img img:hover {
  filter: none;
  transform: scale(1.05);
}

/******** FIlter *******/

.team .filter-target {
  transition: filter 1s ease-out;
  background: #003E5B;
}

.team .filter-target img {
  display: block;
  filter: grayscale(100%) brightness(120%);
  opacity: 0.7;
  transition: filter 0.5s ease-out, opacity 0.5s ease-out;
}

.team .filter-target img:hover {
  opacity: 1; 
  filter: grayscale(0);
}


@media screen and (max-width: 768px) {
.team {
  padding: 3rem 0;
}

}


/*--------------------------------------------------------------
# Company
--------------------------------------------------------------*/
.company {
  padding: 7rem 0;
  position: relative;
}

.company p {
  font-weight: 400;
  font-size: 1.2rem;
	line-height: 180%;
	color: #003E5B;
}

.company p span {
  font-weight: 400;
  font-size: 1rem;
	line-height: 160% !important;
	color: #003E5B;
	display: block;
	margin: 1rem 0.5rem 0;	
}

.company-text {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 200%;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

@media screen and (max-width: 768px) {
.company {
  padding: 3rem 0;
}
.company p span {
	margin: 1rem 0rem 0;
	
}

}


/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects .project {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.projects a {
  font-size: 0.8rem !important;
  font-weight: 400;
}

.projects .project .project {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.projects .project .project-info {
  padding: 15px 10px;
}

.projects .project .project-info span h6 {
  display: block;
  font-size: 0.8rem !important;
  font-weight: 400;
  color: #003E5B;
}

.projects p {
	font-weight: 300;
	font-size: 2.1rem;
	line-height: 140%;
	color: #003e5b;
	font-family: 'Roboto', sans-serif;
	padding-top: 0;
}

.projects .project .project-img {
  position: relative;
  overflow: hidden;
}

.projects .project .project-img img {
  transition: all 1s ease-in-out;
  display: inline-block;
}

.projects .project .project-img img:hover {
  filter: none;
  transform: scale(1.05);
}

/******** FIlter *******/

.projects .filter-target {
  transition: filter 1s ease-out;
  background: #003E5B;
}

.projects .filter-target img {
  display: block;
  filter: grayscale(100%) brightness(120%);
  opacity: 0.7;
  transition: filter 0.5s ease-out, opacity 0.5s ease-out;
}

.projects .filter-target img:hover {
  opacity: 1; 
  filter: grayscale(0);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 0;
  text-align: center;
}

.clients p {
  font-weight: 300;
  font-size: 2.1rem;
  color: #003e5b;
	font-family: 'Roboto', sans-serif;
}

.clients img {
  max-width: 95%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

.clients hr {
	border-top: 1px solid #999;
	width: 20%;
	margin: 2.5rem auto;
}

@media (max-width: 768px) {
  .clients img {
    max-width: 65%;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 1.4rem;
  color: #003E5B;
  float: left;
  width: 4.5rem;
  height: 4.5rem;
  background: #D8DDDF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.contact .info h4 {
  padding: 0 0 0 90px;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 3px;
  color: #003e5b;
}

.contact .info p {
  padding: 0 0 0 90px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #003e5b;
}

.contact .info .email, .contact .info .phone {
  margin-top: 50px;
}

.contact .info .address {
	margin-bottom: -10px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .alert-warning {
    color: #c8000d;
    background-color: #fff;
    border-color: #c8000d;
}

.contact .alert-success {
    color: #003E5B;
    background-color: #fff;
    border-color: #003E5B;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  text-align: left;
  padding: 0;
  font-weight: 400;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #003E5B;
  background: #f7f8f9;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #003E5B;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #003E5B;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #003e5b;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #222135;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #003e5b;
  font-size: 0.8rem;
  background: #D8DDDF;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .credits {
  padding-top: 5px;
  font-size: 0.7rem;
}

/*--------------------------------------------------------------
# Power Page
--------------------------------------------------------------*/

html {
  scroll-padding-top: 4rem;
}

.power-page-container .cta-power-page {
	margin: 0;
	padding: 3rem;
}

.power-page-container .power-page {
	margin: 0;
	padding: 4rem 0 6rem;
  	position: relative;
}

.power-page-container .cta-power-page-2 {
	margin: 0;
	padding: 2rem;
}

.power-page-container .power-page-2 {
	margin: 0;
	padding: 3rem 0 3rem;
  	position: relative;
}

.power-page p,
.power-page li  {
  font-weight: 400;
  font-size: 1.1rem;
	line-height: 180%;
	color: #003E5B;
	text-align: left;
}

.power-page span {
  font-weight: 300;
  font-size: 0.8rem;
	line-height: 160% !important;
	display: block;
}

.power-page ol {
	margin: 1rem 0;
}

.power-page li {
	margin-bottom: 1rem;
}

.cta-power-page,
.cta-power-page-2 {
  position: relative;
  background: #f5f5f5;
}

.cta-power-page p,
.cta-power-page h2,
.cta-power-page-2 p,
.cta-power-page-2 h2{
    font-weight: 300;
  font-size: 1.8rem;
	line-height: 140%;
	max-width: 860px;
	margin: 0 auto;
	  font-family: 'Roboto', sans-serif;
}

.cta-power-page-2 .small p  {
    font-weight: 400;
  font-size: 1.5rem;
	line-height: 180%;
	max-width: 860px;
	margin: 0 auto;
	  font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 768px) {
.cta-power-page {
  padding: 1rem 0;
}
.cta-power-page p {
  font-size: 1.5rem;
	max-width: 100%;
}
.cta-power-page-2 .small p  {
  font-size: 1.3rem;
	line-height: 170%;
}
}


/*--------------------------------------------------------------
# Case Study Penticton 1
--------------------------------------------------------------*/
.case-study-penticton h1 {
	font-size: 12px;
	text-transform: uppercase;
	background: #003e5b;
	color: #fff;
	margin-bottom: 20px;
	padding: 5px 10px;
	letter-spacing: 1px;
}
.case-study-penticton-1 {
  background-size: cover;
  padding: 12rem 0;
  position: relative;
  background: url("../img/bg-penticton-1.jpg") center center;
}

@media screen and (max-width: 768px) {
.case-study-penticton-1 {
  padding: 7rem 0;
}

}

/* Maps */
.google-map {
	background: #003e5b;
	height: 400px;
	margin:  0;
	width: 100%;
}

.google-map.small {
	height: 250px;
	border-radius: 6px;
	margin: 0;
	clear: both;
}

.google-map img {
	max-width: 9999px;
}

.google-map-borders {
	border: 1px solid #DDD;
	padding: 4px;
	border-radius: 4px;
}

.gmap_marker {
	font-size: 16px !important;
	padding-right: 20px;
}
