/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */
/*   01 - General & Basic Styles   */
/*   02 - Accessibility            */
/*   03 - Header                   */
/*   04 - Navigation               */
/*   05 - Front Page Styles        */
/*   07 - Search Styles            */
/*   08 - Form Styles              */
/*   09 - Single Page Styles       */
/*   10 - Single post Styles       */
/*   11 - Blog Styles              */
/*   12 - Comments Styles          */
/*   13 - Sidebar Styles           */
/*   14 - Footer Styles            */
/*   15 - 404 Page Styles          */
/*   16 - Media Styles             */


/*------------------------------------------*/
/*   General & Basic Styles
/*------------------------------------------*/
html {
  overflow-y:scroll;
  overflow-x: hidden;
}
body {
  font-family: "proxima-nova",sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  background: linear-gradient(180deg, #040e21 14%, #010000 100%);
}

@keyframes pulse {
  0%, 100% {
    background: radial-gradient(circle, rgba(1,0,0,1) 0%, rgba(1,0,0,1) 96%);
  }
  50% {
    background: radial-gradient(circle, rgba(6,43,107,1) 0%, rgba(1,0,0,1) 96%);
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova",sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
}
h1 {
  font-size: 64px;
  line-height: 74px;
}
h2 {
  font-size: 36px;
  line-height: 42px;
}
h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  line-height: 34px;
}
h5 {
  font-size: 20px;
  line-height: 24px;
}
h6 {
  font-size: 18px;
  line-height: 24px;
}
a {
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  text-decoration: none;
  color: #ECECFF;
  cursor:pointer;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
img{
  border-style:none;
  vertical-align:middle;
  max-width:100%;
  height:auto;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  -moz-backface-visibility:hidden;
  -ms-backface-visibility:hidden;
}
li::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
strong, b {
  font-weight: 700;
}
i {
  font-size: 1.1em;
  padding-right:5px;
}
object{
  max-width:100%;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
iframe[src="about:blank"] {
  display: none;
}
.widget {
  list-style-type: none;
}
/*.row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
[class^="col"] div {
    flex-grow: 1;
}*/
.text-blue {
  color: #0d1e51 !important;
}
.text-yellow {
  color: #ffb706 !important;
}
.text-grey {
  color: #ececff !important;
}
/*------------------------------------------*/
/*   Animations
/*------------------------------------------*/
@keyframes yellow {
  0% {
    color: #ffffff;
  }
  50% {
    color: #ffb706;
  }
  100% {
    color: #ffffff;
  }
}

@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}

.fade-in {
  opacity: 0;
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(100px);
}
.fade-in.in-viewport {
    opacity: 1;
    transform: none;
}

/*------------------------------------------*/
/*   Accessibility
/*------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #000;
  color: #ffd200;
  clip: auto !important;
  display: block;
  font-size: 14px;
  font-size: 18px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/*------------------------------------------*/
/*   Buttons
/*------------------------------------------*/
.button {
  text-transform: capitalize;
  font-weight: normal;
  color: #ffffff !important;
  background-color: #0d1e51;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
button:hover, button:focus {
  opacity: 0.8;
}
.button-secondary {
    color: #0d1e51 !important;
    background-color: #ffffff;
}
.button-rounded {
    border-radius: 50px;
    padding: 10px 16px 10px 16px;
    border: 1px solid #0d1e51;
}
.button i { padding-left: 5px; }
.link-more {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
}
.link-more:after {
    display: inline-block;
    vertical-align: bottom;
    background: url("../images/arrow-right.png") no-repeat center center;
    width: 24px;
    height: 24px;
    content: '';
    margin-left: 10px;
    transition: transform .3s;
  }

.link-more:hover:after {
    transform: translateX(8px);
}


/*------------------------------------------*/
/*   Header
/*------------------------------------------*/
header {
  background: #000;
  width: 100%;
  padding: 16px 0;
}
header .main-header {
  max-width: none;
  padding: 0 40px;
}
/**** Sticky Header ****/
header.sticky {
  position: fixed;
  z-index: 100;
  width: 100%;
  top:0;
}
.apat-nav { justify-content: flex-end; text-transform: uppercase; }
.navbar-light .navbar-nav .nav-link {
  color: #ECECFF;
  font-size: 16px;
  padding: 0 26px;
  display: block;
  font-weight: 300;
  transition: color .3s;
  letter-spacing: 2px;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .current-menu-item a, .navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #ffb706;
}
.navbar-light .navbar-nav .nav-link:focus{
  color: #ffb706;
}
.header-right {  
  justify-content: center;
}
.header-right a {  
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #ECECFF;
  transition: color .3s;
}
.header-right a img {
  width:19px;
  margin-left: 5px;
}
.header-right span{
  padding-bottom: 5px;
  border-bottom: 1px solid;
}
/*------------------------------------------*/
/*   Forms
/*------------------------------------------*/
.searchform input {
  border: 1px solid #ececec;
  height: 35px;
}
.searchform #s {
  float: left;
  margin-right: 15px;
}
.searchform #searchsubmit {
  float: left;
}
#searchbar {
  display: none;
  float: left;
  width: 100%;
  height: 62px;
  padding: 12px;
  z-index: 9999;
  background: #d3e9e4;
  -webkit-box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
  box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
  position: absolute;
}
#searchbar .searchform #s {
  width: 320px;
}
#searchbar form {
  max-width: 450px;
  margin: 0 auto;
}
#searchsubmit {
  display: block;
  background: #13334c !important;
  color: #ffffff !important;
  outline: none;
  cursor: pointer;
  border: 0 !important;
}
input[type="submit"] {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  border-radius: 0;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border:0;
  height: 35px;
}
/*------------------------------------------*/
/*   Page
/*------------------------------------------*/
/**************** HOME PAGE *****************/
.hero-home {
  height: calc(80vh - 65px);
  flex-flow: row wrap;
  justify-content: center !important;
  align-items: center !important;
  color: #fff;
}
.hero-home-content {
  text-align: center;
  position: relative;
}
.page-loaded .hero-home-content h1,
.page-loaded .hero-home-content h4 {
    opacity: 1;
    transform: translateY(0);
}
.hero-home-content h1,
.hero-home-content h4 {
  opacity: 0;
  transition: transform 1s cubic-bezier(.645,.045,.355,1),opacity 1s cubic-bezier(.645,.045,.355,1);
  transform: translateY(100px);
}
.hero-home-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background: url("../images/arrow.png") no-repeat 50%/17px 27px;
  opacity: 0;
  transition: transform 1s cubic-bezier(.645,.045,.355,1) .4s,opacity 1s cubic-bezier(.645,.045,.355,1) .4s;
  transform: translateY(100px);
}
.page-loaded .hero-home-scroll {
  opacity: 1;
  transform: translateY(0);
  -webkit-animation: arrow .6s ease-in-out 1.5s infinite alternate;
  animation: arrow .6s ease-in-out 1.5s infinite alternate;
}
.work-callout-aside h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.work-icon, .work-callout  h2 {
 margin-bottom: 17px;
}
.work-icon img {
 width: auto;
 height: 35px;
 margin-bottom: 0 !important;
}
.work-callout  {
	min-height: 320px;
}
.work-callout  h2 a {
 transition: color .3s;
}
.work-callout  h2 a:hover {
 color: #ffb706;
}
.section-clients-content ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 100px;
}
.client-study-image {
    position: relative;
}
.client-study-image .service-tags {
  position: absolute;
  width: 220px;
  left: -15px;
  bottom: 30px;
  text-align: left;
}
.service-tags a {
 display: inline-block;
 text-decoration: none;
 font-weight: 700;
 font-size: 14px;
 line-height: 20px;
 background: #fff;
 border: 1.5px solid #0d1e51;
 padding: 5px 12px;
 margin-bottom: 13px;
 transition: background .3s,border-radius .3s;
}
.service-tags a.is-active,
.service-tags a:hover {
  background: #ffb706;
  border-radius: 20px;
}
.service-tags,
.section-case-studies-filter {
  display: none !important;
}
.logo-soup img { 
  width:200px;
}
/********* Inner Pages ************/
.hero-content {
  padding: 110px 20px;
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
}
#post-12 .hero-content {
  padding-bottom: 15vw;
}
.hero-content h1 {
	font-size: 36px;
	line-height: 42px;
		color: #ffffff; 
}

.hero-content p { 
	font-size: 24px;
	line-height: 36px;
	color: #ffffff; 
}
.hero-category {
  margin-bottom: 15px;
}
.hero-category a, .hero-category span {
    display: block;
    font-size: 16px;
    text-decoration: none;
    transition: color .3s;
}
.hero-category a::before, .hero-category span::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #ffb706;
  content: "";
  display: inline-block;
  vertical-align: sub;
  margin-right: 7px;
}

.feature-content h3 {
    margin-bottom: 15px;
}
.section-features {
    margin-top: -13vw;
}
.section-team-cta {
  position: relative;
}
.section-team-cta-content {
  position: absolute;
  left: -10vw;
  background: #0d1e51;
  color: #fff;
  padding: 30px 50px;
  bottom: 10vw;
  width: 90%;
  top: auto;
}
.section-team-cta-content h4 { margin-bottom: 0; }

.section-join-team {
    display: flex;
    flex-flow: row wrap;
}
.section-join-team p, .section-join-team ul {
    flex: 1;
    font-size: 24px;
}
.section-join-team a::before {
    background: url("../images/arrow-left-yellow.png") no-repeat 0 0/contain;
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: bottom;
    content: "";
    margin-right: 10px;
    transition: transform .3s;
}
.section-join-team a:hover::before {
    transform: translateX(8px);
}
/***** Section Team Members *********/
.section-team-category::before,
.section-services-category::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #0d1e51;
    background: #ffb706;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 8px;
    content: "";
}
.team-member {
  position: relative;
  margin-bottom: 50px;
  perspective: 1000px;
  padding: 0 25px;
}
.member-flip {
  position: relative;
  padding-bottom: 240px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.team-member:hover .member-flip {
    transform: rotateY(180deg);
}
.member-image {
  background: no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.member-image i {
  display: block;
  bottom: 30px;
  right: 27px;
  font-size: 32px;
  position: absolute;
  color: #ffb706;
}
.member-content {
  padding: 10px 0;
  position: relative;
}
.member-content h4 {
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 400;
	font-size: 18px;
}
.member-content h5 {
    line-height: 1.2;
    font-weight: 400;
	font-size: 14px;
}
.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
  border: 1.5px solid #0d1e51;
  color: #0d1e51;
  padding: 15px;
  transform: rotateY(180deg);
}

.member-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.43;
}

.team-member > a {
  position: absolute;
  top: 0;
  right: 25px;
  left: 25px;
  bottom: 0;
}
.section-nav {
    height: 64px;
    position: relative;
    background: #0d1e51;
    display: none;
}
.section-nav ul {
    list-style: none outside none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px 0;
    background: #0d1e51;
}
.section-nav.is-fixed ul {
    position: fixed;
    top: 75px;
}
.section-nav a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
    transition: color .3s;
    padding-right: 30px;
}
.section-nav .is-current > a,
.section-nav a:hover {
    color: #ffb706;
}
.section-services {
    padding-top: 80px;
    position: relative;
    z-index: 0;
}
.section-services img {
    margin-bottom: 8px;
}
.section-services-bottom p {
    margin-left: auto;
    margin-bottom: 10px;
}

.section-services-bottom .textwidget {
    display: flex;
    flex-flow: row wrap;
}

.section-services .swiper-slide {
    width: 296px;
}
.service {
    width: 100%;
    padding-bottom: 7px;
}

.service-image > a {
    display: block;
    background: no-repeat 50%/cover;
    transition: border-radius .3s;
}

.service-image .service-tags {
    position: absolute;
    left: -15px;
    bottom: 15px;
}
.section-services .swiper-container::before {
    position: absolute;
    top: 110px;
    bottom: 0;
    left: 50%;
    width: 3000px;
    margin-left: -1500px;
    background: #ececff;
    content: "";
    z-index: -1;
}
.section-services .swiper-container {
    overflow: visible;
}

.workpage-content {
    padding-bottom: 142px;
}
.section-case-studies-filter {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 8px;
    border-bottom: 8px solid #0d1e51;
}
.section-case-studies-filter ul {
    width: 100%;
    max-height: 0;
    visibility: hidden;
    list-style: none outside none;
    transition: max-height .3s,visibility .3s;
}
.section-case-studies-filter li {
    padding: 0 8px;
}
.section-case-studies-filter a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    background: #fff;
    border: 1.5px solid #0d1e51;
    padding: 4px 12px;
    margin-bottom: 15px;
    transition: background .3s,border-radius .3s;
}
.section-case-studies-filter a.is-active,
.section-case-studies-filter a:hover {
    background: #ffb706;
    border-radius: 20px;
}
.case-study {
    padding: 30px 25px 30px 30px;
}
.case-study-image {
    position: relative;
}
.case-study-image > a {
    display: block;
    transition: border-radius .3s;
}
.case-study-image img {
    display: block;
    width: 100%;
    margin: 0;
}
.case-study-image .service-tags {
    position: absolute;
    width: 260px;
    left: -15px;
    bottom: 30px;
}
.case-study-content {
    padding: 35px 0 2px;
    overflow: hidden;
}
.case-study-content h5 a::after {
    display: none;
    vertical-align: bottom;
    background: url("../images/arrow-right.png") no-repeat 50%;
    width: 24px;
    height: 24px;
    content: "";
    margin-left: 10px;
    transition: transform .3s;
}
.case-study-tall h3:after, 
.case-study-short h3:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	color: #ffb706;
	margin-left: 10px;
	transition: transform .3s;
	font-size: 15px;
	vertical-align: middle;
}
.case-study-content h5 {
    line-height: 1.2;
    margin-bottom: 15px;
}
.case-study-content h5 a:hover::after {
    transform: translateX(8px);
}

/*------------------------------------------*/
/*   Single
/*------------------------------------------*/
.single-header {
  border-bottom: 20px solid #0d1e51;
}
.single-content {
  padding: 60px 0;
}
.single-content h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}
.post-category {
  padding: 50px 0;
}
.post-category p {
  text-transform: uppercase;
}
.blog-post-links i {
  position: relative;
  top: 2px;
}
/**** Case studies page ********/
.link-back {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

.link-back:hover::before {

    transform: translateX(-8px) scaleX(-1);

}
.section-single-head h1 {
    line-height: 1;
    margin-bottom: 0;
}
.section-single-category {
    font-size: 16px;
    margin-bottom: 6px;
}

.section-single-category::before {
}
.section-single-services h3 a {
    display: block;
    text-decoration: none;
}
.section-single-services h3 a:hover {
    color: #ffb706;
}

.share {
    position: relative;
}
.section-single-share > * {
    margin-right: 20px;
}
.section-single-share a {
    transition: opacity .3s;
}
.share .socials {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s;
}
.socials ul {
    list-style: none outside none;
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
}
.socials li {
   padding: 0 10px;
}
.socials a {
    display: block;
    font-size: 22px;
    transition: opacity .3s;
}
.socials a:hover {
    opacity: .75;
}
.section-single-share a {
    transition: opacity .3s;
}
.share:hover .socials {
    opacity: 1;
    visibility: visible;
}
.section-single-body {
    padding: 13px 0;
    display: flex;
    flex-flow: row wrap;
}
.section-single-services {
    max-width: 530px;
    margin-bottom: 64px;
}
.section-single-content {
    width: 100%;
    margin-bottom: 35px;
    line-height: 1.15
}
.section-single-content h2 {
    margin-bottom: 17px;
}
.section-single-content p {
    margin-bottom: 28px;
}
.section-single-content ul { margin-left: 50px; }
.section-single-content li { list-style: disc; line-height: 36px; }
.section-paging {
    padding: 4px 0 64px;
    width: 100%;
}
.section-paging a {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    color: rgba(40,48,69,.5);
}
.section-paging strong {
    font-weight: 700;
    color: #0d1e51;
}
.section-paging-next {
  float: right;
}
.section-paging-prev:hover::before {
    transform: translateX(-8px) scaleX(-1);
}

.section-paging-next:hover::after {
    transform: translateX(8px);
}
/*------------------------------------------*/
/*   Archives
/*------------------------------------------*/
.blog-content {
  padding: 30px 0;
}
.blog-content a, .post-category a {
  color: #494a52;
}
.blog-content a:hover, .post-category a:hover {
  color: #000;
}
.blog-header {
  background-color: #0d1e51;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}
.blog-header h1 {
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}
.archive-title {
  color: #ffffff;
}
.blog-category {
  padding: 20px 0 5px;
}
.blog-category a, .post-category a {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .01rem;

}
h2.blog-heading {
  font-size: 18px;
  line-height: 26px;
  padding: 0;
  margin:  0;
}
.blog-meta a, .blog-meta {
  font-size:12px;
}
.blog-text p {
  color: #0d1e51;
}
.blog-text p.blog-readmore {
  text-align: right;
  padding: 20px 0;
  margin: 0;
}
.blog-content p.blog-readmore a {
  font-size: 14px;
}
.blog-content p.blog-readmore a::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  padding-left:10px;
  color: #000;
  position: relative;
  top: 2px;
}
/*------------------------------------------*/
/*       12 - Comments Styles
/*------------------------------------------*/
.post-commententry {
  border-top: 1px dashed #ccc;
  padding-top: 30px;
  margin: 30px 0;
}
.apat-comments {
    margin: 0;
    width: 100%;
    overflow: hidden;
}
.apat-comments .comments-title {
    margin: 0;
    line-height: 100% !important;
    padding: 0 0 20px;
    font-size: 16px;
    color: #666;
    font-weight: 400;
}
.apat-comments  ol.comment-list {
    list-style: none outside none;
    margin: 0;
    position: relative;
    padding: 0;
}
.apat-comments ol.comment-list > li {
    list-style-position: outside;
    float: none;
    clear: both;
    display: block;
    border: 0;
    padding: 0;
    margin: 0 0 20px;
}
.apat-comments .comment-holder {
    background: none repeat scroll 0 0 #fff;
    border-color: #EFEFEF;
    border-style: solid;
    border-width: 1px;
    padding: 20px;
    position: relative;
    z-index: 2;
    -o-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -o-box-shadow: 0 4px 2px rgba(0,0,0,0.02);
    -webkit-box-shadow: 0 4px 2px rgba(0,0,0,0.02);
    -moz-box-shadow: 0 4px 2px rgba(0,0,0,0.02);
    box-shadow: 0 4px 2px rgba(0,0,0,0.02);
}
.apat-comments ol.comment-list li .comment-avatar {
    float: left;
    padding: 0;
    width: 75px;
}
.apat-comments ol.comment-list  li .comment-avatar img {
    display: block;
    border: 1px solid #e8e8e8;
}
.apat-comments ol.comment-list li .comment-body {
    margin-left: 80px;
    position: relative;
}
.apat-comments ol.comment-list li .comment-body .comment-author {
    font-size: 16px;
}
.apat-comments .comment-author {
    display: block;
    height: 30px;
}
.apat-comments ol.comment-list li .comment-body .author-name {
    font-size: 16px;
    float: left;
    font-weight: bold;
    color: #203f6d;
}
.apat-comments ol.comment-list li .comment-body .comment-meta, #cancel-comment-reply-link {
    position: relative;
    float: right;
}
.apat-comments ol.comment-list li .comment-body .comment-meta, .cancel-reply {
    color: #818181;
}
.apat-comments ol.comment-list li a, .rt_comments ol.comment-list li a:hover {
    text-decoration: none;
}
.apat-comments ol.comment-list li a, .cancel-reply a {
    color: #203f6d;
}
.apat-comments ol.comment-list li .comment-body .comment-meta .comment-reply {
    padding: 4px 8px;
    margin: 0 0 0 5px;
    background: #E4E4E4;
    text-decoration: none;
}
.apat-comments ol.comment-list li .comment-body .comment-meta a, #cancel-comment-reply-link {
    color: #9F9F9F;
    font-weight: 700;
}
.apat-comments ol.comment-list li p {
    color: #818181;
}
.apat-comments .comment-text {
    display: inline-block;
    padding: 10px 0 0 0;
}
#respond {
    clear: both;
    display: block;
    margin: 20px 0;
}
#respond h3#reply-title {
    margin: 0;
    line-height: 100% !important;
    padding: 0 0 20px;
}
.comment-notes {
    font-style: italic;
    color: #aaa;
    padding: 0 0 16px 0;
    font-weight: 700;
}
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form textarea,
.comment-form input[type="url"] {
    position: relative;
    outline: none;
    padding: 14px 10px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #8C8C8C;
    border: 1px solid #eee;
    background: #fff;
    -moz-box-box-shadow: inset 0 0 0 1px #fff, 1px 2px 0px #eee;
    -webkit-box-shadow: inset 0 0 0 1px #fff, 1px 2px 0px #eee;
    box-shadow: inset 0 0 0 1px #fff, 1px 2px 0px #eee;
    width: 100%;
    margin: 10px 0;
}
.comment-form .form-submit input {
  padding: 0px 15px;
  font-family: 'proxima-nova', sans-serif;
  color: #ffffff !important;
  font-size: 18px !important;
  background-color: #13334c;
  border: 0;
}
.comment-form .form-submit input:hover { opacity: 0.8; }

/*------------------------------------------*/
/*   Sidebar
/*------------------------------------------*/

/*------------------------------------------*/
/*   Footer
/*------------------------------------------*/
.pre-footer {
  background: #0d1e51;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

footer {
  padding: 50px 0;
}
footer .col-widget  {
  align-items: flex-end;
  flex-flow: row wrap !important;
  justify-content: flex-start;
}
footer .col-widget a:hover {
  text-decoration: underline;
}
.footer-widget-section p, .footer-widget-section h6 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}
.social-networks {
  align-items: flex-end;
  justify-content: flex-start;
}
.social-networks li {
  padding: 0 7px;
  font-size: 20px;
}
.social-networks li {
  padding: 0 7px;
  font-size: 24px;
}
.social-networks li a:hover {
  color: #ffb706;
}
/*------------------------------------------*/
/*   404 Page Styles
/*------------------------------------------*/
.error-page {
  padding: 90px 0;
  text-align: center;
}
.error-banner {
  background: #efefef;
  height: 90px;
  padding: 30px;
}
.error-banner h2 {
  padding: 0 30px;
  margin: 0;
  color: #000000;
}
.error-page h1 {
  font-size: 120px;
  line-height: 120px;
  font-weight: 700;
  color: #000000;
}
.error-page h3 {
  padding: 30px 0;
}
.section-gradient {
  background: linear-gradient(180deg, rgba(230,230,230,1) 14%, rgba(245,245,245,1) 100%);
}