/* -----------------------------------------
   Home page slider
----------------------------------------- */
#home-slider .slick-slide {
  position: relative;
  min-height: 500px;
  /*define the height of slide*/
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

#home-slider .slider-caption {
  position: absolute;
  top: 68.35%;
  left: 50%;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#home-slider .slider-caption p, #home-slider .slider-caption h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    min-height: 400px;
    /*define the height of slide*/
  }
}
@media only screen and (max-width: 640px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/
  }
}

.row {
  max-width: 1000px;
}

.column, .columns{
  min-height: 1px;
}

/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  /* Image does not overflow the content area */
  padding: 5px 5px 10px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  margin-bottom: 10px;
}
.wp-caption p {
  margin-bottom: 0;
  font-size: 14px;
}

.gallery-caption {
  font-size: 12px;
}

#wpadminbar {
  opacity: 0.3;
  transition: 0.2s opacity linear;
  -webkit-transform: translateZ(0);
}
#wpadminbar:hover, #wpadminbar:focus {
  opacity: 1;
}

/* -----------------------------------------
    Contact Form
----------------------------------------- */
/*basic Gravity Form styles and fixes, if you dont need/use this comment or delete styles below*/
.gform_wrapper ul {
  list-style: none;
}

.gform_fields {
  margin: 0;
}

.gfield {
  list-style: none;
  margin-bottom: 20px;
}

.gfield_label {
  display: none;
}

.ginput_container ul {
  margin-left: 0;
}

.gfield_error input, .gfield_error textarea {
  border-color: red;
}

.gfield_description {
  margin-top: 10px;
}

.gform_confirmation_message {
  margin-bottom: 15px;
}

.gform_footer {
  text-align: right;
  /*aligning of submit button*/
}

.validation_error {
  margin-bottom: 15px;
  padding: 5px;
  color: #990000;
  border: 1px solid red;
}

.validation_message {
  margin-bottom: 10px;
  color: #990000;
}

.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font-size: 11px;
  z-index: 9999 !important;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker thead {
  background: #f7f7f7;
  border-bottom: 1px solid #bbb;
}
.ui-datepicker thead th {
  padding: 3px;
  text-align: center;
  border: 1px solid #ddd;
}
.ui-datepicker tbody {
  border: none;
}
.ui-datepicker tbody td {
  padding: 0;
  border: 1px solid #bbb;
}
.ui-datepicker tbody th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666;
}
.ui-datepicker tbody td span, .ui-datepicker tbody td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666;
}

.ui-datepicker-header {
  background-color: #666;
  /* set the header background color */
  color: #fff;
  font-weight: 700;
  border: none;
}
.ui-datepicker-header:after {
  content: '';
  clear: both;
  display: table;
}

.ui-datepicker-month,
.ui-datepicker-year {
  width: 50%;
  float: left;
  padding: 5px 20px 5px 5px;
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  font-size: 12px;
  color: #fff;
  padding: 5px;
  line-height: 1.4;
  width: 50%;
  float: left;
}

.ui-datepicker-next {
  text-align: right;
}

.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}
.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
}
.ui-datepicker-calendar .ui-state-hover {
  background: #fff;
}
.ui-datepicker-calendar .ui-state-active {
  background: #fff2aa;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  position: relative;
  margin: -1px;
  height: 32px;
  width: 32px;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}

/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  position: static;
}

/* Placeholder styling */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555;
}

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0;
}

textarea[rows] {
  /*Styles for TextArea*/
  height: 150px;
  max-width: 100%;
}

[type=number]{
  -moz-appearance:textfield;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type=checkbox],
[type=file],
[type=radio] {
  margin-bottom: 0;
}

button, .button, input[type='submit'], input[type='reset'] {
  border: none;
  padding: 10px 20px;
  margin-bottom: 0;
  background-color: #1a608b;
  color: #fff;
  font-family: "Lato", sans-serif;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
button:hover, button:focus, .button:hover, .button:focus, input[type='submit']:hover, input[type='submit']:focus, input[type='reset']:hover, input[type='reset']:focus {
  background-color: #124260;
}

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  color: #333;
  font-family: "Lato", sans-serif;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: inherit;
  color: inherit;
}

h1 {
  /*basic heading styles*/
}

h2 {
  /*basic heading styles*/
}

h3 {
  /*basic heading styles*/
}

h4 {
  /*basic heading styles*/
}

h5 {
  /*basic heading styles*/
}

h6 {
  /*basic heading styles*/
}

p {
  /*basic paragraph styles*/
}
p:empty {
  display: none;
}
p a {
  text-decoration: underline;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  color: #1a608b;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  /*basic hover and focus effects*/
  color: #0a2535;
}

/* ------------------------------------
    Basic Styles
------------------------------------- */

/* Preloader */

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  color: #000;
  z-index: 100000000;
  opacity: 1;
  visibility: visible;
  -moz-transition: opacity 0.4s ease, visibility 0.4s ease;
  -o-transition: opacity 0.4s ease, visibility 0.4s ease;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.preloader__icon:before {
  display: block;
  content: '\f1ce';
  font-size: 50px;
  font-family: FontAwesome;
  -moz-animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
}
.preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* Button additional styles */
.button {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover, .button:focus {
  /*basic hover and focus effects*/
}

/* Align Middle */
.align-middle {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Pagination */
ul.pagination {
  margin: 1rem 0;
}
ul.pagination .pagination {
  margin: 0;
}
ul.pagination .pagination.current {
  color: #fff;
  background: #1a608b;
  display: block;
}

/* Search form */
#searchform {
  position: relative;
}

#s {
  padding-right: 75px;
}

#searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: .5rem;
  cursor: pointer;
}
#searchsubmit:after {
  font-family: FontAwesome;
  font-size: 20px;
}

#home-slider .slick-slide {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* ------------------------------------
    Header Styles
------------------------------------- */

.header{
  /*margin-bottom: 30px;*/
  /*overflow: hidden;*/
}

.logo img {
  max-height: 150px;
}

/* Main menu */
ul li{
  list-style: none;
  margin-bottom: 20px;
}


#main-menu{
  width: 326px;
  max-width: 100%;
  height: 100vh;
  min-height: 600px;
  position: absolute;
  right: -100%;
  top: 0;
  background-color: #000;
  -webkit-transition: right .4s ease-in-out;
  transition: right .4s ease-in-out;
}
#main-menu.active{
  right: 0;
  -webkit-transition: right .4s ease-in-out;
  transition: right .4s ease-in-out;
}
#main-menu ul{
  margin-top: 230px;
  margin-left: 45px;
}
#main-menu ul li {
  margin-bottom: 70px;
  padding-right: 25px;
}
ul li a{
  color: white;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
ul li a:hover, ul li a:focus{
  color: #f05a29;
  /*text-decoration: underline;*/
}
ul li.current-menu-item a{
  color: #f05a29;
  /*text-decoration: underline;*/
}
.burger{
  z-index: 12;
  position: absolute;
  right: 70px;
  display: inline-block;
  padding: 0;
  top: 70px;
  width: 42px;
  height: 42px;
  background-color: transparent;
  vertical-align: top;
  cursor: pointer;
  border: 2px solid #bbb;
  cursor: pointer;
}
.burger:after{
  content: '';
  position: absolute;
  display: block;
  border-radius: 0;
  width: 100%;
  height: 0px;
  top: 50%;
  left: 0;
  padding-bottom: 4px;
  margin-top: -17px;
  -moz-box-shadow: 0px 8px 0px 0px #bbb, 0 22px 0 #bbb;
  -webkit-box-shadow: 0px 8px 0px 0px #bbb, 0 22px 0 #bbb;
  box-shadow: 0px 8px 0px 0px #bbb, 0 22px 0 #bbb;
}

.close:before, .close:after {
  position: absolute;
  left: 18px;
  top: -6px;
  content: '';
  height: 52px;
  width: 2px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  box-shadow: none;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}


/* ------------------------------------
    Content Styles
------------------------------------- */
/* Blog page */
.posts-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
}
.posts-list .entry-meta {
  margin-bottom: 0;
}
.posts-list #searchform {
  margin-bottom: 40px;
}

.entry-meta {
  color: #666;
  font-size: 14px;
}

.thumbnail {
  margin-bottom: 20px;
}

/* Comments block */
.comment-list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.comment-meta {
  font-size: 14px;
}

.comment-metadata {
  color: #666;
}

.comment-content {
  font-size: 14px;
  padding-left: 25px;
  margin-top: 20px;
  border-left: 1px solid #ddd;
}

.reply {
  text-align: right;
}

.comment-reply-link {
  display: inline-block;
  padding: .33333rem .5rem;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0;
  background: #777;
  color: #fefefe;
}

/* 404 page */
.not-found {
  padding-top: 180px;
  padding-bottom: 100px;
}
.not-found .label {
  text-decoration: none;
  cursor: pointer;
  background-color: #1a608b;
}
.not-found .label:hover {
  background-color: #144869;
  color: #fff;
}

/* Sidebar */
.widget {
  margin-bottom: 20px;
}

/*---------------------------------------
  TMPL: Home page
---------------------------------------*/
/* ------------------------------------
    Footer Styles
------------------------------------- */

.footer{
  margin-top: 50px;
}

.sticky-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 0;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li a {
  display: block;
  padding: 5px 10px;
}


header{
  position: absolute;
  z-index: 999;
  width: 100%;
  margin-bottom: 0;
}
.home header{
    /*height: 300px;*/
}
.logo img {
    max-height: none;
    max-width: 111px;
}
.clearfix{
  clear: both;
}
.home .logo{
    margin-top: 121px;

}
.home .logo img{
    margin-top: 0px;
    max-width: none;
    max-width: 600px;
    margin-top: 2%;
}
#home-slider .slick-slide{
  min-height: 1088px;
}


.home h1{
  color: white;
  font-size: 55px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.home .slick-slide p{
  font-size: 27px;
  font-family: "Lato", sans-serif;
}

section.team{
  min-height:600px;
  position: relative;
  z-index: 1;
  margin-top: -3px;
}
section.team:after{
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  background-color: #fafafa;
}
section.team .content{
  min-height: 100%;
  background-color: #fafafa;
  padding-left: 7.6%;
  padding-top: 4%;
}
section.team .content h2{
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  color: #f05a29;
  text-transform: uppercase;
  margin-bottom: 43px;
}
section.team .content p{
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 27px;
  line-height: 1.24;
  letter-spacing: -0.2px;
  color: #000;
  margin-bottom: 42px;
  padding-right: 20px;
}
section.team .content p strong{
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 65px;
  color: #000;
  text-transform: uppercase;
}

section.team .content h2{
  font-size: 25px;
}
.team__content {
    padding-left: 5.51%;
    max-width: 92%;
  }
section.numbers{
  padding-top: 58px;
  padding-bottom: 16px;
}
section.numbers .item{
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 16.6%;
  margin: 0px 8.06%;
}
section.numbers .item h2{
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: -10px;
}
section.numbers .item img{
  display: block;
}
section.numbers .item  p{
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 70px;
  color: #000;
  white-space: nowrap;
  text-transform: uppercase;
}
section.numbers .item  p span{
  font-family: "Lato", sans-serif;
  font-size: 48px;
  vertical-align: top;
  margin-top: 19px;
  display: inline-block;
}
section.numbers .item .image{
  vertical-align: middle;
  position: relative;
  margin-bottom: 15px;
}
section.numbers .item .image img{
  position: relative;
/*   left: 50%;
top: 50%;
transform: translate(-50%,-50%); */
  /* max-width: 150px; */
  max-width: 100%;
  margin: 0 auto;
}



section.portfolio .element{
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 888px;
  z-index: 1;
  padding-left: 7.6%;
}
section.portfolio .element:before{
  position: absolute;
  z-index: -1;
  left:0 ;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: url('../images/home-portfolio-after.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.portfolio .element h2{
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  margin-bottom: 28px;
  color: #fff;
  text-transform: uppercase;
}
section.portfolio .element p strong{
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
section.portfolio .element p{
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 1.4;
  margin-bottom: 27px;
  /* font-size: 30px; */
  color: #fff;
}
section.portfolio .element:hover h2{
}
section.portfolio a:focus .element h2{
}
section.portfolio .element .image{
  height: 48.5%;
  position: relative;
}
section.portfolio .element .image img{
  position: relative;
  left: -8px;
  top: 49.3%;
  content: '';
  transform: translate(0%,-50%);
}




section.news .element{
  display: inline-block;
  max-width: 28%;
  vertical-align: bottom;
  margin: 0 30px;
  text-align: left;
}
section.news{
  background: url('../images/news-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 160px;
  padding-bottom: 160px;
  clear: both;
  text-align: center;
}
section.news h2{
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 25px;
  color: #f05a29;
  text-transform: uppercase;
  padding-bottom: 106px;
  margin-bottom: 0;
  text-align: left;
}
section.news.inner h2{
  padding-left: calc((100% - (28%*3 + 24px*4)) / 2);
}
section.news p{
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  color: #000;
  line-height: 1.16;
  text-align: left;
  margin-bottom: 29px;
}
section.news p.text{
  overflow-y: hidden;
}
section.news p.date{
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 35px;
}
section.news a{
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-align: left;
  font-size: 30px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 47px;
  position: relative;
}
section.news a.link_to_news:after, a.ctf-twitterlink:after{
  content: '';
  background: url(../images/plane_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 28px;
  position: absolute;
  right: -40px;
  top: 6px;
  display: block;
  transition: 0.3s all;
}
a.ctf-twitterlink:after{
  top: 12px;
}
section.news a:hover:after{
  transform: scale(1.1);
}
.img-background.img{
  position: absolute;
  top: 0;
  left: 0;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}
.img-background.img.right{
  left: auto;
  right: 0;
}
.bg:after{
  content: '';
  display: block;
  padding-bottom: 100%;
  width: 100%;
}





section.team_people {
  clear: both;
}
section.team_people .element{
  height: 444px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
section.team_people .element:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: -1;
}
section.team_people div > .element:before{
  display: none;
}
section.team_people .element h2{
  position: absolute;
  bottom: 8%;
  letter-spacing: -1px;
  line-height: 1.15;
  left: 22.2%;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
.hover_info{
  /* display: none; */
}
section.team_people .element:hover > h2{
  display: none;
  opacity: 1;
}
section.team_people .element:hover .hover_info{
  display: block;
  opacity: 1;
}
section.team_people .element .hover_info:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: -1;
}
section.team_people .element .hover_info h2{
  position: absolute;
  bottom: auto;
  top: 8%;
  letter-spacing: -1px;
  line-height: 1.15;
  left: 22.2%;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
section.team_people .element .hover_info p{
  color: white;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 36px;
}
.fa{
  font-size: 72px;
  color: white;
}
.fa-twitter:before {
  content: "";
  background: url('../images/twitter.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  width: 62px;
  height: 52px;
  bottom: 0;
  display: block;
  position: absolute;
}
.fa-linkedin{
  font-size: 70px;
  display: inline-block;
  vertical-align: bottom;
}
.fa-linkedin:before {
  content: "";
  background: url('../images/linkedin.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 50px;
  height: 54px;
  bottom: 0;
  display: block;
}
.twitter-follow .fa-twitter{
  font-size: 36px;
  color: inherit;
  margin-right: 15px;
  display: inline-block;
}
.twitter-follow .fa-twitter:before {
  content: "\f099";
  background: none;
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
}
section.news .twitter-follow h2 {
  color: #000;
}
section.news .twitter-follow:hover h2{
  color: #f05a29;
}
section.team_people a.button{
  background-color: #000;
  color: white;
  font-size: 24px;
  margin-top: calc(50% - 75px);
  letter-spacing: -0.6px;
  padding: 18.5px 40px;
  padding-left: 38px;
  text-align: left;
  padding-right: 49px;
}


section.connect{
  clear: both;
  position: relative;
}
section.connect .left{
  background-color: #fafafa;
}
section.connect .title h3{
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  padding-left: 5.5%;
  font-size: 40px;
  color: #f05a29;
  padding-top: 70px;
  padding-bottom: 53px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  z-index: 1;
}
section.connect .title h3:before{
  content: '';
  position: absolute;
  z-index: -1;
  width: 50%;
  height: calc(100% + 1px);
  left: 0;
  top: 0;
  background-color: #fafafa;
}
section.connect p{
  color: #000;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 30px;
  margin-bottom: 0;
  padding-bottom: 45px;
  line-height: 1.35;
  padding-right: 10px;
}
html,body{
  overflow-x: hidden;
}
section.connect a{
  color: #f05a29;
  font-weight: 800;
  text-decoration: none;
}
section.connect a:hover, section.connect a:focus{
}
section.connect h2{
  font-size: 65px;
  letter-spacing: 0px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 42px;
  color: #000;
  padding-right: 20px;
  text-transform: uppercase;
}
section.connect a.button{
  background-color: #000;
  color: white;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.6px;
  padding: 17px 36px;
  padding-left: 96px;
  text-align: left;
  padding-right: 87px;
  margin-left: 11%;
}
.connect .data{
  display: inline-block;
}
section.connect .right a.button{
  margin-left: 15%;
}
section.connect .right a.button{
  background-color: #f05a29;
}
section.connect .content{
  max-width: 70%;
  margin-left: 11%;
}
section.connect .right .content{
  margin-left: 15%;
}
section.connect .left, section.connect .right{
  padding-bottom: 99px
}





.footer{
  margin-top: 0;
  padding-bottom: 128px;
}
.footer .left{
  padding-top: 6%;
  padding-left: 5.2% !important;
}
.footer .element{
  display: inline-block;
  padding-right: 11.4%;
}
.footer .element h2{
  color: #676767;
  font-size: 33px;
  margin-bottom: 28px;
}
.footer img{
  display: block;
  margin-bottom: 80px;
}
.footer a{
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.8;
}
.footer a.mail{
  color: #f09729;
}
.footer .socials{
  margin-right: 0;
  float: right;
  position: relative;
  padding-top: 10.6%;
}
.footer .socials a{
  display: inline-block;
  margin-right: 130px;
}
.footer .socials a:nth-last-of-type(1){
  margin-right: 126px;
}
.gform_wrapper {
  clear: both;
  padding-top: 20.6%;
}
.gform_wrapper h3.gform_title{
  color: #676767;
  font-size: 30px !important;
  margin-bottom: -30px !important;
  letter-spacing: 0px !important;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium{
  width: calc(90% - 22px) !important;
}
[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea{
  height: 85px;
  background-color: #212121;
  border-color: #212121;
}
form{
  position: relative;
}

.gform_wrapper .gform_footer {
  position: absolute;
  right: 11%;
  bottom: 8%;
}
.gform_footer.top_label{
}
.gform_footer.top_label:before{
  content:'';
  position: absolute;
  right: 42px;
  top: -48px;
  background: url('../images/form_submit.png');
  width: 32px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.gform_footer.top_label:hover:before{
  background: url('../images/plane_orange.png');
}
.gform_footer input[type=submit]{
  background-color: transparent;
  outline: none;
  position: absolute;
  right: 39px;
  bottom: 18px;
  color: #212121;
  font-size: 0 !important;
  width: 32px !important;
  height: 28px !important;
  margin: 0 !important;
  z-index: 999;
}
form img{
  position: absolute;
}
input{
}
.ctf-tweet-content{
  margin-bottom: 20px;
  overflow-y: hidden;
  max-width: 100% ;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 90px #212121 inset !important;
  background-color: #212121 !important;
  -webkit-text-fill-color: white !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
  background-color: #212121;
  color: white;
}
.gform_wrapper .top_label .gfield_label{
  display: none !important;
}
.gform_wrapper .gform_heading{
  margin-bottom: 49px !important;
}
.gform_wrapper div.validation_error{
  color: red !important;
  text-align: left !important;
  border: none !important;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning{
  background-color: transparent !important;
  border-color: transparent !important;
}
.gform_wrapper .validation_message{
  color: red !important;
}
.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea{
  border: 2px solid red !important;
}
.gform_wrapper .field_description_below .gfield_description{
  position: absolute;
}
.gform_wrapper h3.gform_title{
  letter-spacing: 0px !important;
}


.about_us{
  background: url(../images/news-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 10.73%;
  padding-left: 5.51%;
  padding-bottom: 1.47%;
}
.about_us h1{
  font-size: 65px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  color: #000;
}
.about_us p{
  font-size: 36px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #000;
  line-height: 1.4;
  padding-top: 10px;
  padding-left: 0px;
  max-width: 92%;
  letter-spacing: -0.8px;
}





.info{
  min-height: 718px;
  padding-top: 10.27%;
  padding-left: 5.9%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.info:after{
  content: '';
  position: absolute;
  z-index: -1;
  width: 50%;
  height: calc(100% + 1px);
  left: 0;
  top: -1px;
  background-color: #fff;
}
.info .element{
  width: 16%;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  margin-bottom: 45px;
}
.info p{
  color: #fff;
}
section.info h2{
  font-size: 22px;
  margin-bottom: 38px;
  color: #000;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
section.info{
  color: #000;
}
section.info p{
  color: #000;
  font-size: 30px;
  max-width: 46%;
  line-height: 1.35;
  letter-spacing: -0.7px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}
section.info .element p{
  font-size: 36px;
  color: black;
  font-weight: 800;
  line-height: 1.4;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}



section.our_team{
  padding-top: 103px;
  padding-bottom: 60px;
}
.ajax_container{
  clear: both;
  padding-top: 0;
  text-align: left;
}
section.our_team .ajax_container a.button{
  padding: 18.5px 96px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin-top: 0;
}
section.our_team > div > p{
  font-size: 22px;
  padding-right: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin-bottom: 55px;
  line-height: 1.3;
}
section.our_team > div > p b{
  float: none;
  letter-spacing: 1px;
  display: block;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #f05a29;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: left;
}
section.our_team .element{
  margin-left: -4.5px;
  height: 444px;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
section.our_team .element:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: -1;
  transition: all .4s ease;
}
section.our_team .element h2{
  position: absolute;
  bottom: 8%;
  letter-spacing: -1px;
  text-align: left;
  line-height: 1.15;
  left: 22.2%;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
.hover_info{
  /* display: none; */
  opacity: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
section.our_team .element:hover > a h2{
  opacity: 0;
  bottom: -100%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
section.our_team .element:hover .hover_info{
  display: block;
  opacity: 1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
section.our_team .element .hover_info:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: -1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
section.our_team .element .hover_info h2{
  position: absolute;
  bottom: auto;
  top: 18.1%;
  letter-spacing: -1px;
  line-height: 1.15;
  left: 12.2%;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
section.our_team .element .hover_info p{
  color: white;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-size: 36px;
  text-align: left;
  position: absolute;
  top: 48%;
  transform: translate(0,-50%);
  padding-left: 12.6%;
  margin-top: 0%;
}
.hover_info a.social:nth-of-type(2){
  position: absolute;
  left: 13.7%;
  bottom: 12%;
}
.hover_info a.social:nth-of-type(3){
  position: absolute;
  left: 39.7%;
  bottom: 12%;
}
.fa-twitter:hover:before {
  background-image: url('../images/twitter_hover.png');
}
.fa-linkedin:hover:before {
  background-image: url('../images/linkedin_hover.png');
}
section.our_team a.button{
  background-color: #000;
  color: white;
  font-size: 22px;
  margin-top: calc(50% - 75px);
  letter-spacing: -0.6px;
  padding: 18.5px 40px;
  padding-left: 38px;
  text-align: left;
  padding-right: 49px;
}
section.our_team a.button:hover {
  background-color: #4a4a4a;
}
section.our_team .element:nth-last-of-type(1):before{
  display: none;
}


.ajax_container .element .hover_info a:hover h2, .ajax_container .element .hover_info a:focus h2{
}


input::-ms-clear {
  display: none;
}


.invest_top{
  background: url(../images/news-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 10%;
  padding-left: 5.2%;
  padding-bottom: 3.17%;
}
.invest_top h1{
  font-size: 65px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  color: #000;
}
.invest_top p{
  font-size: 36px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #000;
  line-height: 1.4;
  padding-top: 10px;
  max-width: 92%;
  letter-spacing: -0.8px;
}





.invest_info{
  min-height: 718px;
  padding-top: 3.7%;
  position: relative;
  z-index: 1;
  padding-left: 5.9%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.invest_info .element{
  width: 275px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  margin-bottom: 40px;
}
.invest_info p{
  color: #fff;
}
section.invest_info .item h2{
margin-bottom: -2px;
}
section.invest_info p{
  color: #000;
  font-size: 36px;
  max-width: 46%;
  line-height: 1.4;
  letter-spacing: -1.4px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}
section.invest_info .element p{
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.invest_info:after{
  content: '';
  position: absolute;
  z-index: -1;
  width: 50%;
  height: calc(100% + 1px);
  left: 0;
  top: -1px;
  background-color: #fff;
}
.invest_info .numbers{
  max-width: 100%;
  margin-left: -6.25%;
  padding-top: 82px;
}
.invest_info .numbers .item .image {
  margin-bottom: 36px;
}
.invest_info .numbers .item{
  text-align: center;
}
section.numbers .item p{
  max-width: 210%;
  width: 200%;
  position: relative;
  left: 50%;
  transform: translate(-50%,0);
}
section.numbers .item p sup {
  font-size: 40px;
}

section.portfolio_text{
  padding-top: 5.2%;
  padding-left: 5.7%;
}
section.portfolio_text p{
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  padding-right: 40px;
  margin-bottom: 55px;
  line-height: 1.3;
}
section.portfolio_text p strong{
  color: #f25f27;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
.portfolio_text .filters{
  text-align: right;
  margin-right: 10%;
}




section.portfolio_collection .element{
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 444px;
  z-index: 1;
  padding-left: calc(4.5% + 5px);
}
section.portfolio_collection a:hover h2, section.portfolio_collection a:focus h2{
}
section.portfolio_collection .element:before{
  position: absolute;
  z-index: -1;
  left:0 ;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: url('../images/home-portfolio-after.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.portfolio_collection .element h2{
  margin-top: 20%;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}





.logo{
  padding-left: 19%;
  padding-top: 10.6%;
}
.home .logo{
  padding: 0;
}
section.inner_header{
  min-height: 521px;
  background: url('../images/news-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 10.76%;
  padding-left: 5.5%;
}
section.inner_header.single-post{
  min-height: 320px;
}
section.inner_header.team-member{
  min-height: 220px;
}
section.inner_header h2,  section.inner_header h1{
  font-weight: 800;
  font-size: 65px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  padding-right: 20px;
  color: #000;

}
section.inner_header p{
  font-weight: 400;
  font-size: 36px;
  font-family: "Lato", sans-serif;
  color: #000;
  padding-left: 0px;
  padding-top: 8px;
  max-width: 60%;
  line-height: 1.44;
  letter-spacing: -0.9px;
}

section.inner_data{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  min-height: 718px;
  position: relative;
  z-index: 1;
  padding-left: 5.85%;
}
section.inner_data:before{
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #000;
}

section.inner_data.full:before{
  width: 100%;
}

section.inner_data .image{
  position: relative;
  display: block;
}
section.inner_data  .image img{
  position: relative;
  max-width: 19%;
  margin-top: 5.8%;
  margin-bottom: 5.3%;
}
section.inner_data h1{
  padding-top: 35px;
  margin-bottom: 25px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  color: white;
}
section.inner_data.single-post h1{
  padding-top: 60px;
}
section.inner_data.team-member{
  padding-top: 35px;
}
.single-team_member .inner_info .bottom,
.single-team_member .inner_info .middle,
.single-team_member .inner_info .top{
  padding: 30px 0;
}
section.inner_data p strong{
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
}
section.inner_data p{
  font-weight: 400;
  font-family: "Lato", sans-serif;
  max-width: 780px;
  font-size: 30px;
  color: #fff;
  padding-right: 12px;
  margin-bottom: 0;
  line-height: 1.4;
  padding-bottom: 80px;
}

.inner_info{
  padding-left: 5.33%;
  padding-top: 5.86%;
  padding-bottom: 56px;
}
.inner_info p{
  font-size: 30px;
  font-weight: 400;
  padding-left: 5px;
  font-family: "Lato", sans-serif;
  max-width: 97%;
  letter-spacing: -0.68px;
  margin-bottom: 41px;
  line-height: 1.36;
}
.inner_info p strong{
  display: inline-block;
  color: #f25f27;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 100%;
}
.inner_info img{
  float: left;
  padding-top: 6px;
  padding-left: 8px;
  padding-right: 5.6%;
}
.inner_info .middle{
  padding-top: 74px;
  position: relative;
}
.inner_info a{
  text-decoration: none;
  color: #f05a29;
}
.inner_info a:hover {
  color: #000;
}
.inner_info a.web-link{
  text-decoration: none;
  background-color: #f05a29;
  color: white;
  font-size: 22px;
  padding: 14px 46px;
  display: inline-block;
  margin-top: 18px;
  margin-left: 5px;
}
.inner_info .bottom{
  clear: both;
  padding-top: 156px;
}
.inner_info .bottom p strong{
  margin-bottom: 12px;
}
.news.inner
{
  background: none;
  background-color: #fafafa;
  padding-top: 120px;
  padding-bottom: 120px;
}



.filters{
  float: right;
  margin-right: 3%;
}
/* filter checkboxes */
.container {
  margin-left: 36px;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  color: #000;
  font-size: 27px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 12px;
  left: -6px;
  height: 26px;
  width: 26px;
  background-color: transparent;
  border: 2px solid #b2b2b2;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ddd;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {

}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  background-color: #f25f27;
  border-radius: 2px;
}
/* end filter checkboxes */


body{
  overflow-x: hidden;
}
section.numbers .item{
  width: 28.6%;
}
.home section.numbers .item{
  width: 16.6%;
}
.portfolio_collection {
  clear: both;
}




#ctf .ctf-item{
  display: inline-block;
  width: 28%;
  /*overflow: visible;*/
  vertical-align: top;
  margin: 0 24px;
  text-align: left;
  border: none;
  padding: 0;
}
#ctf .ctf-tweet-actions {
  min-height: 35px;
}
#ctf a.ctf-tweet-date{
  font-family: "Lato", sans-serif;
  color: #000;
  line-height: 1.16;
  text-align: left;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 30px;
  display: inline-block;
}
#ctf a.ctf-twitterlink{
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-align: left;
  font-size: 30px !important;
  text-transform: uppercase;
  margin-bottom: 0px;
}
#ctf p.ctf-tweet-text, #ctf p.ctf-media-link{
  margin-bottom: 29px !important;
}
.ctf-author-box{
  text-align: left;
}
#ctf .ctf-out-of-tweets {
    display: inline-block;
    width: 28%;
    margin: 30px 0;
}


.title-bar{
  display: none !important;
}

section.team_people a.button:hover , section.team_people a.button:focus{
}
section.our_team .ajax_container a.button:hover ,section.our_team .ajax_container a.button:focus{
}
section.connect a.button:hover , section.connect a.button:focus{
  transform: scale(1.1);
}
.inner_info a:hover , .inner_info a:focus {
  transform: scale(1.1);
}
section.news a:hover, section.news a:focus{
}
.footer a:hover , .footer a:focus {
  text-decoration: underline;
}
footer{
  background: url('../images/footer_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.gform_confirmation_wrapper {
  color: #fff;
  font-size: 28px;
  clear: both;
  padding-top: 20.6%;
}


@media screen and (max-width: 4800px) {
  .news.inner{
  }
  .inner_info p{
    font-size: 26px;
  }
  section.portfolio .element{
    padding-left: 4.2%;
  }
  section.portfolio_text p br{
    display: none;
  }
}

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

  section.team_people .element{
    height: 363px;
  }
  section.our_team .element{
    height: 350px;
  }
  section.portfolio_collection .element{
    height: 363px;
  }
  section.team .content p strong{
    font-size: 46px;
  }
  section.team .content{
    padding-left: 4.2%;
  }
  section.team{
    min-height: 701px;
  }
  section.portfolio .element .image{
    height: 40%;
  }
  section.portfolio .element p strong{
    font-size: 28px;
  }
  section.portfolio .element{
    min-height: 700px;
  }
  section.news{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .footer a{
    font-size: 22px;
  }
  .gform_confirmation_message{
   font-size: 22px;
  }
  section.info .element p{
    font-size: 26px;
  }
  .footer{
    padding-bottom: 60px;
  }
  section.news p{
    font-size: 38px;
  }
  #ctf p.ctf-tweet-text, #ctf p.ctf-media-link{
    margin-bottom: 29px !important;
    font-size: 38px;
    overflow-y: hidden;
  }
  section.news{
  }
  .news.inner{
  }
  section.team_people .element h2{
    left: 12%;
  }
  section.team_people .element .hover_info h2{
    left: 12%;
  }
  section.invest_info p{
    font-size: 26px;
  }
  section.numbers .item{
    width: 26.6%;
    margin: 0px 2.06%;
  }
  .home  section.numbers .item{
    width: 18.6%;
    margin: 0px 7.06%;
  }
  section.inner_data{
    padding-left: calc(5.33% + 5px);
  }
  section.inner_data p{
    max-width: 630px;
    padding-bottom: 40px;
  }
  section.inner_data p strong{
    font-size: 30px;
  }
  section.our_team .element h2{
    left: 12.6%;
  }
  section.our_team .element .hover_info h2{
    left: 12.6%;
  }
  .inner_info{
    padding-top: 2.8%;
  }
  .inner_info p strong{
    margin-bottom: 0;
  }
  .inner_info p{
    font-size: 19px;
  }
  .inner_info .middle{
    padding-top: 0;
  }
  .inner_info img{
    max-width: 46%;
  }
  .inner_info .bottom{
    padding-top: 0;
  }

  section.team_people a.button{
    background-color: #000;
    color: white;
    font-size: 18px;
    margin-top: 0;
    letter-spacing: -0.6px;
    padding: 18.5px 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 202px;
    max-width: 100%;
    transform: translate(-50%,-50%);
    margin-top: 0;
  }
  section.team_people a.button:hover {
    background-color: #4a4a4a;
  }
}



@media screen and (max-width: 4800px) {
  .home .logo{
    margin-top: 40px;
  }
  #home-slider .slick-slide{
    min-height: 690px;
  }
  .home h1{
    font-size: 45px;
  }
  section.team{
    min-height: 540px;
  }
  section.team .content p strong{
    font-size: 34px;
  }
  .home section.numbers .item{
    width: 26.6%;
    margin: 0px 2.06%;
  }
  section.info .element p{
    font-size: 20px;
  }
  section.news a.link_to_news:after{
    top: -3px;
  }
  a.ctf-twitterlink:after{
    top: 3px !important;
  }
  section.portfolio .element .image img{
    max-height: 100%;
    padding: 3% 0;
    max-width: 51%;
    margin-left: 2%;
  }
  section.portfolio .element .image{
    height: 20%;
  }
  section.portfolio .element p {
    font-size: 20px;
  }
  section.portfolio .element p strong{
    font-size: 18px;
  }
  section.portfolio .element{
    min-height: 480px;
  }
  section.news{
    padding-top: 20px;
    padding-bottom: 86px;
  }
  section.news h2{
    padding-top: 52px;
    padding-bottom: 53px;
  }
  section.news .element{
    max-width: 27%;
  }
  section.news p.date{
    font-size: 18px;
  }

  section.news p{
    font-size: 26px;
  }
  #ctf p.ctf-tweet-text, #ctf p.ctf-media-link{
    font-size: 26px;
  }
  #ctf a.ctf-tweet-date{
    font-size: 17px;
  }
  #ctf a.ctf-twitterlink{
    font-size: 0px !important;
  }
  #ctf .ctf-item{
    max-width: 27%;
  }
  section.news.inner h2{
    padding-left: calc((100% - (27%*3 + 24px*4)) / 2);
  }
  section.news a{
    font-size: 18px;
  }
  section.news{
  }
  section.team_people .element h2{
    font-size: 24px;
  }
  section.team_people .element .hover_info h2{
    font-size: 24px;
  }
  section.our_team .element h2{
    font-size: 25px;
  }
  section.our_team .element .hover_info h2{
    font-size: 24px;
  }
  section.our_team .element .hover_info p{
    font-size: 23px;
  }
  .hover_info a.social:nth-of-type(3){
    left: 60%;
  }
  .footer a{
    font-size: 16px;
  }
  .gform_confirmation_message{
    font-size: 16px;
  }

  .about_us h1{
    font-size: 41px;
    padding-top: 20px;
  }
  .about_us p{
    font-size: 24px;
  }
  .info{
    min-height: 365px;
    padding-top: 3.27%;
    padding-left: 5.51%;
    position: relative;
    z-index: 1;
  }

  section.info p{
    font-size: 20px;
  }
  section.our_team{
    padding-top: 68px;
  }
  section.our_team > div > p{
    padding-left: 5%;
    text-align: left;
  }
  section.our_team .ajax_container a.button{
    padding: 14px 60px;
  }
  .invest_top h1{
    font-size: 41px;
    padding-top: 20px;
  }
  .invest_top p{
    font-size: 24px;
  }
  section.invest_info p{
    font-size: 18px;
  }
  .invest_info{
    padding-top: 1.5%;
    padding-left: 5.2%;
    min-height: 440px;
  }
  .invest_info .numbers{
    margin-left: -4%;
    padding-top: 20px;
  }
  section.numbers .item h2{
    font-size: 17px;
  }
  section.portfolio_text p{
    font-size: 22px;
    padding-right: 20px;
  }
  section.portfolio_collection .element h2{
    font-size: 24px;
  }
  section.inner_header h2 ,  section.inner_header h1{
    font-size: 41px;
    padding-top: 15px;
  }
  section.inner_header p{
    font-size: 26px;
  }
  section.inner_header{
    min-height: 200px;
    padding-bottom: 40px;
  }
  section.inner_data p{
    font-size: 22px;
  }
  section.inner_data p br{
    display: none;
  }
  section.inner_data p strong{
    font-size: 20px;
  }
  section.inner_data h2 {
    font-size: 24px;
    color: #fff;
  }
  section.inner_data p{
    max-width: 536px;
    padding-bottom: 20px;
  }
  section.inner_data{
    min-height: 540px;
    padding-top: 35px;
  }
  section.inner_data .image img{
    max-height: 77%;
  }
  .inner_info p{
    margin-bottom: 20px;
  }
  .inner_info img{
    padding-right: 2.6%;
  }
  .inner_info{
    padding-bottom: 20px;
  }
  .news.inner{
    padding-top: 18px;
    padding-bottom: 80px;
  }
  section.news h2{
  }
  section.inner_data .image{
  }
  section.connect .title h3{
    font-size: 25px;
  }
  section.connect h2{
    font-size: 33px;
    margin-bottom: 20px;
  }
  section.connect p{
    font-size: 19px;
  }
  section.connect .content{
  }
}
@media screen and (max-width: 1400px){
  section.team_people .element{
    height: 300px;
  }
  section.our_team .element{
    height: 300px;
  }
  section.portfolio_collection .element{
    height: 300px;
  }
}



@media screen and (max-width: 1200px) {
  section.team_people .element{
    height: 256px;
  }
  section.our_team .element{
    height: 256px;
  }

  section.our_team .element h2{
    font-size: 22px;
  }
  section.our_team .element .hover_info h2{
    font-size: 22px;
  }
  section.portfolio_collection .element{
       height: 256px;
  }
  section.inner_data p{
    max-width: 460px;
    padding-bottom: 20px;
  }
}




@media screen and (max-width: 1024px) {
  .home .logo img{
    max-width: 50%;
  }
  .home h1{
    font-size: 26px;
  }
  section.inner_data.single-post h1{
    padding-top: 30px;
  }
  .inner_info a{
    font-size: 22px;
    padding: 12px 36px;
  }
  .inner_info .text a{
    font-size: inherit;
    padding: 0;
  }
  .home .slick-slide p{
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.news{
    padding-bottom: 56px;
  }
  .news.inner{
    padding-bottom: 56px;
  }
  section.news h2{
    padding-top: 36px;
    padding-bottom: 39px;
  }
  section.connect .title h3{
    padding-top: 48px;
    padding-bottom: 39px;
  }
  section.connect .left, section.connect .right {
    padding-bottom: 60px;
  }
  section.news a.link_to_news:after{
    top: -4px;
  }
  a.ctf-twitterlink:after{
    top: -3px !important;
  }
  #home-slider .slider-caption{
    top: 68%;
  }
  #home-slider .slick-slide{
    min-height: 540px;
  }

  section.team .content p strong{
    font-size: 24px;
  }
  section.team .content p{
    font-size: 20px;
  }
  section.team{
    min-height: 520px;
  }
  section.portfolio .element p strong{
    font-size: 12px;
  }
  section.portfolio .element p{
    font-size: 14px;
  }
  section.portfolio .element{
    min-height: 440px;
  }
  section.news .element{
    max-width: 26%;
    margin: 0 20px;
  }
  section.news p{
    font-size: 18px;
  }
  section.news a{
    font-size: 12.9px;
  }
  section.news{
  }

  #ctf p.ctf-tweet-text, #ctf p.ctf-media-link{
    font-size: 22px;
  }
  #ctf a.ctf-tweet-date{
    font-size: 18px;
  }
  #ctf a.ctf-twitterlink{
    font-size: 12.9px !important;;
  }
  #ctf .ctf-item{
    max-width: 26%;
    margin: 0 20px;
  }
  section.news.inner h2{
    padding-left: calc((100% - (26%*3 + 20px*4)) / 2);
  }
  section.team_people .element{
    height: 206px;
  }
  section.our_team .element{
    height: 206px;
  }
  section.portfolio_collection .element{
     height: 206px;
   }
  section.team_people .element h2{
    font-size: 16px;
  }
  section.team_people .element .hover_info h2{
    font-size: 16px;
  }
  section.team_people a.button{
    background-color: #000;
    color: white;
    font-size: 14px;
    margin-top: 0;
    letter-spacing: -0.6px;
    padding: 18.5px 6px;
    padding-left: 28px;
    text-align: left;
    padding-right: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    transform: translate(-50%,-50%);
    margin-top: 0;
  }
  section.connect h2{
    font-size: 26px;
    margin-bottom: 20px;
  }
  section.connect p{
    font-size: 18px;
  }
  section.connect a.button{
    background-color: #000;
    color: white;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.6px;
    padding: 18.5px 20px;
    padding-left: 46px;
    text-align: left;
    padding-right: 47px;
    margin-left: 11%;
  }
  .footer .element h2{
    font-size: 24px;
  }
  .footer a{
    font-size: 12px;
  }
  .gform_confirmation_message{
    font-size: 12px;
  }
  .gform_wrapper h3.gform_title{
    font-size: 21px !important;
    letter-spacing: 0px !important;
  }
  .footer .socials a:nth-last-of-type(1){
    margin-right: 86px;
  }
  [type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea{
    height: 60px;
  }
  .gform_footer input[type=submit]{
    bottom: 10px;
  }
  .gform_footer.top_label:before{
    top: -38px;
  }
  .about_us{
    padding-top: 20%;
  }
  .info .element{
    max-width: 200px;
  }
  section.info .element p{
    font-size: 20px;
  }
  section.our_team > div > h2 p strong{
    font-size: 20px;
  }
  .container{
    font-size: 18px;
    margin-left: 20px;
  }
  .checkmark{
    top: 2.9px;
  }
  section.our_team .element h2{
    font-size: 16px;
  }
  section.our_team .element .hover_info h2{
    font-size: 16px;
  }
  section.our_team .element .hover_info p{
    font-size: 16px;
  }
  .fa-twitter:before {
    width: 35px;
    height: 29px;
  }
  .fa-linkedin:before {
    width: 27px;
    height: 29px;
  }
  section.our_team .ajax_container a.button{
    padding: 16.5px 34px;
    font-size: 14px;
  }
  .invest_top{
    padding-top: 17%;
  }
  section.info h2{
    font-size: 16px;
  }
  section.info .element p{
    font-size: 14px;
  }
  section.invest_info p{
    font-size: 14px;
    letter-spacing: 0;
  }
  section.numbers .item p{
    font-size: 30px;
  }
  section.numbers .item p sup{
    font-size: 18px;
    margin-top: 0;
  }
  section.inner_header{
    padding-top: 17%;
  }
  section.inner_data{
    min-height: 380px;
  }
  section.inner_data h1{
    margin-bottom: 10px;
  }
  section.inner_data p{
    max-width: 320px;
    font-size: 14px;
    padding-bottom: 16px;
  }
  section.inner_data p strong{
    font-size: 14px;
  }
  .news.inner{
  }
  section.portfolio_collection .element h2{
    font-size: 16px;
  }
  section.inner_data p{
    max-width: 290px;
  }
}


@media screen and (max-width: 820px) {
  section.team_people .element{
      height: 160px;
    }
  section.our_team .element{
    height: 160px;
  }
  section.portfolio_collection .element{
    height: 160px;
  }
  #main-menu {
    width: 100%;
  }
  #main-menu ul{
    margin-top: 100px;
    margin-left: 25px;
  }
  #main-menu ul li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 640px) {
  .inner_info p strong{
    font-size: 29px;
  }
  .home .logo img{
    max-width: 326px;
    margin-top: 171px;
  }
  .inner_bg_before{
    min-height: 420px;
    background-position: center;
    background-size: cover;
    background-position: center;
  }
  section.team{
    min-height: 0;
  }
  section.team:after{
    width: 100%;
  }
  section.inner_header.team-member{
    min-height: 190px;
  }
  .img-background.img{
    /* width: 0; */
  }
  .invest_info .numbers {
    max-width: 100%;
  }
  .invest_info .img-background.img {
    display: none;
  }
  .info .img-background.img {
    background-image: none!important;
  }
  .inner_info {
    padding-bottom: 0;
  }
  .inner_info a{
    font-size: 18px;
    padding: 10px 26px;
  }
  .inner_info .text a {
    padding: 0;
  }
  .footer .socials a{
    margin-right: 80px;
  }
  .footer .socials a:nth-last-of-type(1) {
    margin-right: 0px;
  }
  .footer .left{
    padding-top: 60px;
  }
  .footer img{
    margin-bottom: 60px;
  }
  .footer .socials{
    float: left;
    margin-left: 5.7%;
  }
  .home .img-background.img{
    /* display: none; */
    min-height: 340px;
    position: relative;
  }
  .single .img-background.img{
    display: none;
  }
  .invest_info{
    min-height: 0px;
  }
  .burger {
    top: 30px;
    right: 30px;
    width: 32px;
    height: 30px;
  }
  .burger:after {
    margin-top: -15px;
    -moz-box-shadow: 0px 8px 0px 0px #bbb, 0 18px 0 #bbb;
    -webkit-box-shadow: 0px 8px 0px 0px #bbb, 0 18px 0 #bbb;
    box-shadow: 0px 8px 0px 0px #bbb, 0 18px 0 #bbb;
  }
  .close:before, .close:after {
    position: absolute;
    left: 13px;
    top: -3px;
    content: '';
    height: 32px;
    width: 2px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-shadow: none;
  }

  .portfolio_text .filters {
      text-align: center;
      float: none;
  }

  section.inner_data p{
    max-width: 99%;
  }
  section.news a{
    font-size: 8px;
    letter-spacing: 0.4px;
  }
  section.news a.link_to_news:after{
    /*display: none;*/
    width: 20px;
    height: 18px;
    right: -26px
  }
  a.ctf-twitterlink:after{
    /*display: none;*/
    width: 24px;
    height: 22px;
    right: -25px
  }
  .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
    width: 94% !important;
  }
  .footer .socials a:nth-last-of-type(1){
    margin-right: 0px;
  }
  section.numbers .item{
    width: 28%;
    margin: 0px 2%;
  }
  section.numbers .item .image img{
    max-width: 77%;
  }
  .invest_info .numbers .item .image{
    margin-bottom: 20px;
  }
  section.numbers .item p{
    font-size: 22px;
    margin-top: 5px;
  }
  section.numbers .item p sup{
    font-size: 14px;
  }
  section.team_people .element{
    height: 320px;
  }
  section.our_team .element{
    height: 320px;
  }
  section.portfolio_collection .element{
    height: 320px;
  }
  .logo {
    padding-left: 6%;
    padding-top: 3.6%;
  }
  section.numbers .item h2{
    font-size: 11.6px;
  }
  section.portfolio .element h2{
    font-size: 16px;
    margin-bottom: 10px;
  }
  section.portfolio .element .image{
    height:16%;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  section.portfolio .element{
    min-height: 320px;
  }
  section.portfolio .element .image img{
    max-width: 32%;
    transform: none;
  }
  section.portfolio .element h2{
    font-size: 14px;
  }
  section.news .element{
    margin: 0 10px;
  }
  section.news p.date{
    font-size: 14px;
    margin-bottom: 20px;
  }
  section.news p{
    font-size: 14px;
    margin-bottom: 6px;
  }

  #ctf p.ctf-tweet-text, #ctf p.ctf-media-link{
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }
  #ctf a.ctf-tweet-date{
    font-size: 14px;
    margin-bottom: 20px;
  }
  #ctf a.ctf-twitterlink{
    font-size: 8px !important;;
  }
  #ctf .ctf-item{
    margin: 0 10px;
  }
  section.news.inner h2{
    padding-left: calc((100% - (26%*3 + 11px*4)) / 2);
  }
  section.connect h2{
    font-size: 14px;
  }
  section.connect .title h3{
    font-size: 16px;
  }
  section.connect .content{
    max-width: 86%;
    margin-left: 7%;
    margin-left: 11%;
  }
  section.connect p{
    font-size: 14px;
  }
  section.connect a.button{
    padding-left: 4px;
    padding-right: 4px;
  }
  .footer img{
    max-width: 80%;
  }
  .gform_wrapper{
    padding-left: 6%;
  }
  .about_us{
    padding-top: 140px;
  }
  .invest_top{
    padding-top: 140px;
  }
  .about_us h1{
    font-size: 32px;
  }
  .invest_top h1{
    font-size: 32px;
  }
  section.inner_header h2,  section.inner_header h1{
    font-size: 32px;
  }
  section.inner_header{
    padding-top: 140px;
  }
  section.inner_header p{
    max-width: 96%;
  }
  .info .element{
    margin-bottom: 30px;
    display: inline-block;
  }
  section.info h2{
    font-size: 14px;
    margin-bottom: 10px;
  }
  section.info .element p{
    font-size: 14px;
  }
  section.info p{
    max-width: 96%;
    font-size: 16px;
  }
  section.invest_info p{
    max-width: 96%;
  }
  section.inner_data:before{
    width: 100%;
  }
  .invest_info .numbers{
    max-width: 94%;
    margin-left: 0;
  }
  .info .element{
    width: 32%;
  }
  .info{
    min-height: 30px;
  }
}


@media screen and (max-width: 540px) {
  section.team_people .element{
    height: 240px;
  }
  section.our_team .element{
    height: 240px;
  }
  section.portfolio_collection .element{
    height: 240px;
  }
}


@media screen and (max-width: 480px) {
  section.team_people .element{
    height: 200px;
  }
  section.our_team .element{
    height: 200px;
  }
  section.portfolio_collection .element{
    height: 200px;
  }
}


@media screen and (max-width: 400px) {
  section.team_people .element{
    height: 160px;
  }
  section.our_team .element{
    height: 160px;
  }
  section.portfolio_collection .element{
    height: 160px;
  }
  section.news .element {
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
}
@media screen and (max-width: 348px) {
  .home .logo img{
    max-width: 275px;
    margin-top: 178px;
  }
}
