@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Poppins:300,400,600,700');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:300,400,500,600,700');

:root {
  --navy: #232c40;
  --blue: #225aa8;
  --dktan: #cdc3b0;
  --lttan: #f2efe9;

}
html {
  scroll-behavior: smooth;
}
.anchor {
  display: block;
  position: relative;
  top: -250px;
  visibility: hidden;
  height: 100px;
  width: 100px;
}
body {
  line-height: 1.5;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
}
.container {
	max-width: 1400px;
  position: relative;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, blockquote {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 500;
    color: var(--navy);
}

h1 ,.h1{
  font-size: 58px;
  
}

h2,.h2 {
  font-size: 60px;
  line-height: 42px;
  margin-bottom: 45px;
}

h3,.h3 {
  font-size: 1.5rem;
}

h4,.h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5,.h5 {
  font-size: 1.25rem;
}

h6,.h6 {
  font-size: 1rem;
}


p{
  line-height: 30px;
}
section {
	padding-top: 150px
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
}
section.slider, div.slider {
  background-color: var(--lttan);
}
section.slider pre, div.slider pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: justify;
}
section.slider pre h1, div.slider pre h1{
  text-align: center;
}
.visible-sm {
  display: none;
}

.top-bar {
	background: var(--navy);
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.5;
  letter-spacing: 1.68px;
  text-align: right;
  color: #fff;
}
.top-bar .container {
  padding-right: 24px;
}
#navbar {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#navbar li {
  padding-left: 24px;
}

#navbar .nav-link {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: .5px;
  transition: all .25s ease;
  position: relative;
  z-index: 1;
}

#navbar .nav-link:hover::before, #navbar .nav-link:active::before {
  content: "";
  position: absolute;
  height: 29%;
  /* top: 41px; */
  left: -3px;
  right: -3px;
  bottom: 8px;
  background: var(--lttan);
  z-index: -1;
  display: inline-block;
}

#navbar .btn {
  padding: 13px 11px;
  color: #fff;
}

section.hero, section.about, section.quote {
	background-color: var(--lttan);
	position: relative;
	z-index: -2;
	padding-top: 0;
}
section h2 + p, section h1 + p {
  max-width: 679px !important;
}
section.hero .text {
  min-width: 535px;
}
section.hero .text h1 {
  margin-bottom: 30px;
}
section.hero .hero-img {
	position: relative;
	padding: 25px 0;
}
#lady, #spark {
  z-index: 2;
  animation: fadeInAnimation ease 1200ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(10vh);
    }
    100% {
        transform: translateY(0vh);
        opacity: 1;
     }
}
#squiggly {
	position: absolute;
    top: 14px;
    z-index: 1000;
    right: 332px;

}
#spark {
	position: absolute;
	z-index: 1000;
  top: 85px;
  left: 13px;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.half-baked{
	position: relative;
}
.half-baked::before{
	content: "";
  position: absolute;
  height: 52%;
  top: 41px;
  left: -10px;
  right: -7px;
  bottom: -10px;
  background: var(--lttan);
  z-index: -1;
  display: inline-block;
}
.half-baked.white::before{
	background: white;
}
.half-baked.blue::before{
	background: var(--blue);
}
.row.title {
	margin-bottom: 150px;
}
article {
	margin-bottom: 250px;
}

article .content-title {
	position: relative;
	z-index: 2;
	font-size: 36px;
  line-height: 46px;
  background-color: var(--lttan);
  padding: 14px 90px 18px 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
article .content-title img{
	height: 100px;
	width: 121px;
}
article .inset-border {
	position: relative;
}
article .inset-border::before {
	position: absolute;
	content: '';
	top: 25px;
	bottom: 25px;
	left: 25px;
	right: 50px;
	border: 2px solid;
}
article .inset-border.blue::before{
	border-color: var(--blue);
}
article .inset-border.white::before{
	border-color: var(--lttan);
}
article .inset-border.navy::before{
	border-color: var(--navy);
}
article .inset-border.dktan::before{
	border-color: var(--dktan);
}
@media only screen and (min-width: 1100px) {
  article .flex > img {
    max-width: 48%;
    flex-grow: 0;
  }
  article .flex > .text {
    width: 50%;
  }
  article .content-title + div {
    padding-left: 100px !important;
  }
}

.expertise, .counter-item h4{
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

section.about {
	padding: 150px 0 200px;
}

.counter-item {
  border: 1px solid;
  color:  #fff;
  padding: 20px 30px;
  width: 275px;
  margin-right: 25px;
}
.counter-item::last-of-type{
	margin-right: 0;
}

.counter-item .counter-stat {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.counter-text {
  font-size: 14px;
  letter-spacing: .84px;
  line-height: 18px;
  color: var(--navy);
}

.counter-item p {
  margin-bottom: 0px;
}

.counter-image {
  float: left;
  width: 30%;
  height: 65px;
  margin-right: 30px;
  background-size: contain !important;
}

.campaigns-image {
  background: url("../images/campaigns@2x.png") no-repeat; 
}
.lines-image {
  background: url("../images/code@2x.png") no-repeat; 
}

.sparks-image { 
  background: url("../images/wireframes@2x.png") no-repeat;
}
.flex-list-center{
	display: flex;
	justify-content: center;
}

.blog-item-meta{
	font-size: 16px;
	margin: 8px 0;
}
.blog-item-project{
	color: var(--blue);
}
.card h4, .card h6{
	font-family: "proxima-nova", Helvetica, Arial, sans-serif !important;
	margin-bottom: 0;
}
.card p {
  font-size: 16px;
  line-height: 1.6em;
}
section.service{
  padding-bottom: 150px;
}
section.service h2{
  margin-bottom: 150px;
}

section.team {
	position: relative;
	z-index: -1;
	background-color: var(--navy);
  padding-bottom: 150px;
}
ol.employees {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
ol.employees li{ 
  max-width: 22%;
  margin-bottom: 5rem;
  margin-right: 1%;
}
ol.employees li:nth-of-type(4n + 1){
  margin-right: 0;
} 
section.team .section-title p {
  margin: 0 auto 100px;
}
footer {
	padding-top: 100px;
}
footer .footer-text {
	text-align: right;
	line-height: .78;
	padding-bottom: 0;
  font-weight: 500;
  font-size: 15px;
}
.footer-menu {
	margin-top:20px;
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}
.footer-links {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  color: var(--blue);
  font-weight: 600 !important;
  text-decoration: normal;
  margin-top: 10px;new dots are in
  padding-right: 0;
  font-size: 15px;
}
.footer-links:first-of-type {
  padding-left: 10px;
}

.footer-links:hover, #navbar .footer-links:active {
	text-decoration: none;
    color: var(--navy);
    display: absolute;
}

.footer-btm {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.brown-dots-mid { 
  position: absolute;
  width: 50%;
  height: 308px;
  margin-top: 90px;
  margin-bottom: -10px;
  background: url("/images/browndots.svg") no-repeat; 
  background-size: cover;
}

.blue-dots-mid { 
  position: absolute;
  width: 50%;
  z-index: -2000;
  height: 308px;
  left: -90px;
  bottom: 390px;
  background: url("/images/bluedots-midsection.svg") no-repeat; 
  background-size: cover;
}


.brown-dots-bottom { 
  position: absolute;
  width: 1000px;
  height: 208px;
  right: -50px;
  bottom: -190px;
  background: url("../images/about/tandots.svg") no-repeat; 
  background-size: cover;
  z-index: -1;
}

.blue-dots-top { 
  position: absolute;
  width: 80%;
  height: 258px;
  right: -20px;
  bottom: -88px;
  background: url("/images/bluedots-hero.svg") no-repeat; 
  background-size: cover;
  z-index: 1;
}
.copyright {
  font-size: 16px;
	padding: 15px 0 15px 0;
}
.copyright .footer-links{
  font-size: 16px;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20vh);
  visibility: hidden;
  transition: opacity 1200ms ease-out, transform 600ms ease-out, visibility 1200ms ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.team-text {
  color:  var(--dktan) !important;
  letter-spacing: 1.8px;
  font-size: 15px;
}
.blog-item-meta h3 {
  font-size: 28px;
}
footer .widget img {
  max-width: 242px;
}
footer {
  padding-bottom: 50px;
}

.footnoted {
	font-weight: 200;
	font-size: 12px;
	color: inherit;
}

footer .footnote {
	font-size: 16px;
	padding: 0;
	margin: 0;
	line-height: 1.2rem;
}

@media only screen and (max-width: 1500px) {
  .container {
    overflow: hidden;
  }
}
@media only screen and (max-width: 1100px) {
  .hidden-sm {
    display: none;
  }
  .visible-sm {
    display: block;
  }
	#lady{
		width: 100%;
	}
  .flex, .flex-list-center {
    flex-direction: column;
  }
  .flex.sm-left{
    align-items: flex-start;
  }
  #spark {
    height: 50px;
    top: 55px;
    left: 10px;
  }
  h1 {
    font-size: 50px;
  }
  header img {
    max-width: 242px;
    width: calc(100vw - 83px);
  }
  section.hero .text {
    min-width: 100%;
  }
  section.hero .text {
    padding-left: 24px;
  }
  article {
    margin-bottom: 50px;
  }
  article:nth-child(2n + 1) .flex {
    flex-direction: column-reverse;
  }
  article:nth-child(2n + 1) .content-title {
    margin-right: 10px;
    margin-left: -10px;
    flex-direction: column-reverse;
  }
  article .text {
    width: 100%;
  }
  article .inset-border::before {
    display: none;
  }
  article img {
    width: 100%;
  }
  article .content-title img {
    display: none;
  }
  article .content-title {
    padding:  14px 10px 18px 23px;
    margin-left: 10px;
    margin-right: -10px;
    margin-top: -40px;
    font-size: 33px;
  }
  section.quote blockquote {
    font-size: 44px;
  }
  section.quote .quote-name {
    font-size: 24px;
  }
  .counter-item {
    margin-bottom: 20px !important;
  }
  .brown-dots-bottom {
    margin-right: 0;
    margin-top: -268px;
  }
  .flex-list-center {
    align-items: center;
  }
  .flex-list-center .counter-item{
    margin-right: 0;
  }
  ol.employees{
    justify-content: space-evenly;
  } 
  ol.employees li{ 
    max-width: 40%;
    margin-right: 0;
  }
  footer .footer-text{
    text-align: left;
  }
  footer .footer-links{
    padding-left: 0 !important;
  }
  .copyright {
    padding-bottom: 10px;
  }
  section.team .row > div {
    width:  50%;
  }
  section.team .row > div.col-lg-7 {
    width:  100%;
  }
  .blue-dots-mid {
    display: none;
  }
}

ol.policy-items {
	list-style-type: lower-alpha;
}
