/*
 Theme Name: Orantech
 Version: 1.3
 Text Domain: theme
 */
/* mobile menu - mn */
div#mn-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: fixed;
  z-index: 9999;
  top: 25px;
  right: 5px;
  width: 60px;
  height: 50px;
  cursor: pointer;
  border-radius: 5px;
  background: #002564;
}
div#mn-trigger div#mn-icon {
  position: relative;
  width: 50px;
  height: 40px;
  cursor: pointer;
}
div#mn-trigger div#mn-icon span {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 7px;
  opacity: 1;
  border-radius: 9px;
  background: white;
}
div#mn-trigger div#mn-icon span:nth-child(1) {
  top: 0;
}
div#mn-trigger div#mn-icon span:nth-child(2), div#mn-trigger div#mn-icon span:nth-child(3) {
  top: 16px;
}
div#mn-trigger div#mn-icon span:nth-child(4) {
  top: 32px;
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(1), body.mn-active div#mn-trigger div#mn-icon span:nth-child(4) {
  top: 16px;
  left: 50%;
  width: 0;
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.mn-active div#mn-menu {
  left: 0;
}
div#mn-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: -255px;
  width: 250px;
  height: 100%;
  padding: 20px;
  background: #002564;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .75);
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .75);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .75);
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  overflow: scroll;
}
div#mn-menu ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
div#mn-menu ul li:last-child {
  border-bottom: none;
}
div#mn-menu ul li a {
  font-size: 20px;
  color: #fff;
}
div#mn-menu ul ul.sub-menu {
  display: none;
}
div#mn-menu ul ul.sub-menu li a {
  font-size: 14px;
}
/* ==========================================================================
 Reset - http://meyerweb.com/eric/tools/css/reset/ 
 ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* ==========================================================================
 Universal Box Sizing with Inheritance + Vendor Prefixes
 ========================================================================== */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
/* ==========================================================================
 Clearfix
 ========================================================================== */
.clearfix:before, .clearfix:after {
  display: table;
  content: ' ';
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
 Forms
 ========================================================================== */
input[type='button'], input[type='reset'], input[type='submit'], button {
  font-family: 'Assistant', sans-serif;
  width: 100%;
  cursor: pointer;
  color: #fff;
  border: 1px solid #eee;
  background-color: #000;
  cursor: pointer;
}
button:hover, input[type='button']:hover, input[type='reset']:hover, input[type='submit']:hover {
  opacity: 0.9;
}
input[type='text'], input[type='email'], input[type='url'], input[type='password'], input[type='search'], input[type='number'], input[type='tel'], input[type='range'], input[type='date'], input[type='month'], input[type='week'], input[type='time'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input[type='submit'], select, textarea {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Assistant', sans-serif;
  width: 100%;
  padding: 10px 15px;
  color: #000;
  border: 1px solid #eee;
}
input[type='submit'], button {
  color: #fff;
  font-family: 'Assistant', sans-serif;
}
button {
  border: none;
}
::-webkit-input-placeholder {
  color: #000;
}
:-moz-placeholder {
  color: #000;
}
::-moz-placeholder {
  color: #000;
}
:-ms-input-placeholder {
  color: #000;
}
/* ==========================================================================
 Embeds
 ========================================================================== */
embed, iframe, object, img {
  max-width: 100%;
}
/* ==========================================================================
 Layout
 ========================================================================== */
html {
  font-size: 62.5%;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  direction: rtl;
  font-family: 'Assistant', sans-serif;
  color: #002564;
  -webkit-appearance: none;
}
#site-wrap {
  position: relative;
  min-height: 100%;
  padding-top: 100px;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.post-edit-link {
  position: absolute;
  z-index: 1;
}
.main-section {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
}
/* ==========================================================================
 Helpers and Misc
 ========================================================================== */
.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#map_canvas {
  float: left;
  width: 100%;
  max-width: 670px;
  height: 340px;
  border: 1px solid #002564;
  border-radius: 5px;
}
.trans {
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
}
.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.mobile_only {
  display: none !important;
}
.desktop_only {
  display: block !important;
}
.fade-in {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.hidden-more {
  display: none !important;
}
/* ==========================================================================
 Titles
 ========================================================================== */
h1, h2, h3, h4, h5 {
  font-weight: bold;
  margin-bottom: 20px;
  color: #002564;
}
h1 {
  font-size: 36px;
  font-size: 3.6rem;
}
h2 {
  font-size: 28px;
  font-size: 2.8rem;
}
h3 {
  font-size: 24px;
  font-size: 2.4rem;
}
h4 {
  font-size: 20px;
  font-size: 2rem;
}
h5 {
  font-size: 18px;
  font-size: 1.8rem;
}
/* ==========================================================================
 Alignments
 ========================================================================== */
.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}
.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-left: auto;
}
/* ==========================================================================
 Text Styles
 ========================================================================== */
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
/* ==========================================================================
 Links
 ========================================================================== */
a {
  text-decoration: none;
  color: inherit;
}
/* ==========================================================================
 Entry Content
 ========================================================================== */
.entry-content {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.3;
}
.entry-content p, .entry-content ul, .entry-content ol {
  margin-bottom: 20px;
}
.entry-content ul, .entry-content ol {
  padding-right: 40px;
  list-style-position: outside;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content a {
  color: #428bca;
}
.entry-content img {
  height: auto;
}
.entry-content strong {
  font-weight: bold;
}
/* ==========================================================================
 Icons
 ========================================================================== */
.sprite {
  display: inline-block;
  background-image: url(assets/img/sprite.png);
  background-repeat: no-repeat;
}
/* ==========================================================================
 Skiplinks
 ========================================================================== */
.skiplinks a {
  font-weight: bold;
  position: absolute;
  top: -3em;
  color: #fff;
}
.skiplinks a:focus {
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 150px;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 75%;
  max-width: 550px;
  height: 150px;
  margin: auto;
  padding: 0 30px;
  text-align: center;
  background: rgba(0, 0, 0, .8);
}
/* ==========================================================================
 Header
 ========================================================================== */
.admin-bar #site-header .header_top {
  top: 32px;
}
#site-header .header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 100px;
  background: #fff;
}
#site-header .header_top .container {
  max-width: 1800px;
}
#site-header #header_image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 530px;
  background-position: center center;
  background-size: cover;
}
#site-header #header_image h1 {
  font-size: 70px;
  font-size: 7rem;
  text-align: center;
  color: #fff;
}
#site-header .site-logo {
  float: left;
}
#site-header .site-logo img {
  max-width: 100%;
}
.page-template-default #site-header #header_image {
  margin-bottom: 40px;
}
.page-template-challenges #site-header, .page-template-thankyou #site-header {
  margin-bottom: 30px;
}
.page-template-challenges #site-header .header_top, .page-template-thankyou #site-header .header_top {
  background: url(assets/img/bg-header.png) #fff bottom repeat-x;
}
/* ==========================================================================
 Main Menu
 ========================================================================== */
#site-navigation {
  float: right;
  margin-top: 7px;
}
#site-navigation ul li {
  position: relative;
  float: right;
  margin-left: 40px;
  padding-bottom: 15px;
}
#site-navigation ul li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
#site-navigation ul li ul.sub-menu {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  top: calc(100%);
  right: 0;
  display: block;
  visibility: hidden;
  float: none;
  width: auto;
  margin: auto;
  padding: 15px 0 5px;
  white-space: nowrap;
  opacity: 0;
  border: 1px solid #999;
  border-radius: 30px;
  background: #fff;
}
#site-navigation ul li ul.sub-menu li {
  position: relative;
  float: none;
  width: 100%;
  margin: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
}
#site-navigation ul li ul.sub-menu li a {
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
  display: block;
  float: none;
  width: 100%;
  padding: 0 15px 5px;
}
#site-navigation ul li ul.sub-menu li:last-child {
  border-bottom: none;
}
#site-navigation ul li ul.sub-menu:before {
  position: absolute;
  top: -6px;
  right: 35px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  background: #fff;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
}
#site-navigation ul li.btn-contact {
  margin-left: 0;
  padding: 2px 10px 5px;
  border-radius: 10px;
  background: #002564;
}
#site-navigation ul li.btn-contact a {
  color: #fff;
}
#site-navigation ul li.btn-contact a:hover {
  color: #fff;
}
#site-navigation ul li.current-menu-item {
  padding: 2px 10px 5px;
  border-radius: 10px;
  background: #002564;
}
#site-navigation ul li.current-menu-item:hover > a {
  color: #fff;
}
#site-navigation ul li.current-menu-item > a {
  color: #fff;
}
#site-navigation ul li a {
  font-size: 25px;
  font-size: 2.5rem;
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  font-weight: bold;
  color: #999;
}
#site-navigation ul li a:hover {
  color: #333;
}
/* ==========================================================================
 Contact Forms
 ========================================================================== */
.wpcf7 .wpcf7-response-output {
  clear: both;
  margin: 0;
  padding: 0;
  border: none;
}
.wpcf7 .wpcf7-not-valid {
  border: 1px solid red !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-validation-errors {
  color: red;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: green;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 5px;
}
.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
  padding: 10px;
}
/* ==========================================================================
 Sliders
 ========================================================================== */
.slider-wrap li .slide {
  position: relative;
}
/* ==========================================================================
 Home Slider
 ========================================================================== */
.slider-home {
  width: 100%;
}
.slider-home .slick-arrow {
  font-size: 80px;
  font-size: 8rem;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  height: 15px;
  margin: auto;
  background: none;
}
.slider-home .slick-arrow:focus {
  outline: none;
}
.slider-home .slick-arrow.slick-prev {
  right: 0;
}
.slider-home .slick-arrow.slick-next {
  left: 0;
}
.slider-home .image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 650px;
}
.slider-home .caption {
  position: absolute;
  top: 36%;
  width: 100%;
  text-align: center;
}
.slider-home .caption .caption-in {
  font-weight: bold;
}
.slider-home .caption .caption-in .title {
  font-size: 60px;
  font-size: 6rem;
  display: inline-block;
  margin-bottom: 0;
  padding: 10px 30px 25px;
  color: #fff;
  border-radius: 20px;
  background: rgba(29, 29, 27, .75);
}
.slider-home .caption .caption-in .btn-wrap {
  position: relative;
  display: inline-block;
  padding: 10px 20px 20px;
  background: rgba(29, 29, 27, .75);
}
.slider-home .caption .caption-in .btn-wrap:after, .slider-home .caption .caption-in .btn-wrap:before {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  display: inline-block;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
}
.slider-home .caption .caption-in .btn-wrap:before {
  left: 100%;
  border-width: 75px 15px 0 0;
  border-color: rgba(29, 29, 27, .75) transparent transparent transparent;
}
.slider-home .caption .caption-in .btn-wrap:after {
  right: 100%;
  border-width: 0 15px 75px 0;
  border-color: transparent rgba(29, 29, 27, .75) transparent transparent;
}
.slider-home .caption .caption-in .btn-wrap a {
  font-size: 25px;
  font-size: 2.5rem;
  position: relative;
  display: block;
  padding: 8px 30px 12px;
  color: #fff;
  border-radius: 10px;
  background: #ffc200;
}
/* ==========================================================================
 Breadcrumbs
 ========================================================================== */
.breadcrumbs a span {
  color: #000;
}
.breadcrumbs span {
  color: #000;
}
.companies {
  width: 100%;
  padding: 50px 40px;
}
.companies .slider-companies-wrap .slider-companies .slide {
  margin: 0 13%;
}
.companies .slider-companies-wrap .slider-companies .slide .image-wrap {
  position: relative;
  height: 85px;
}
.companies .slider-companies-wrap .slider-companies .slide .image-wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  max-height: 85px;
  margin: auto;
}
.services .services-row {
  padding: 70px 0 0;
  background: #002564;
}
.services .services-row .services-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
.services .services-row .services-wrap .service {
  margin-bottom: 80px;
}
.services .services-row .services-wrap .service .image-wrap {
  margin-bottom: 50px;
}
.services .services-row .services-wrap .service .image-wrap img {
  width: auto;
  margin: auto;
}
.services .services-row .services-wrap .service .title {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}
.services .all-services-row {
  padding: 50px 45px 50px 30px;
  text-align: center;
  background: #19233e;
}
.services .all-services-row a.btn {
  font-size: 30px;
  font-size: 3rem;
  line-height: 46px;
  display: inline-block;
  margin: 0 20px 20px;
  padding: 0 10px;
  text-align: center;
  color: #ffc200;
  border: 1px solid #ffc200;
}
.services .all-services-row a.btn:hover {
  opacity: 0.8;
}
.testimonials .slider-testimonials-wrap {
  padding: 40px 0 50px;
  text-align: center;
  color: #002564;
}
.testimonials .slider-testimonials-wrap .slider-testimonials {
  font-size: 20px;
  font-size: 2rem;
}
.testimonials .slider-testimonials-wrap .slider-testimonials .image-wrap {
  margin-bottom: 40px;
}
.testimonials .slider-testimonials-wrap .slider-testimonials .image-wrap img {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
}
.testimonials .slider-testimonials-wrap .slider-testimonials .text {
  line-height: 24px;
  margin-bottom: 40px;
}
.testimonials .slider-testimonials-wrap .slider-testimonials .name {
  font-weight: bold;
}
.home .testimonials {
  background: #eee;
}
.quote-wrap {
  position: relative;
  margin-bottom: 55px;
}
.quote-wrap:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  content: '';
  background: #002564;
}
.quote-wrap .quote {
  position: relative;
  z-index: 1;
  display: block;
  width: 86px;
  height: 41px;
  margin: auto;
  background: url(assets/img/bg-quotes-blue.png) center center #eee no-repeat;
}
.numbers {
  padding: 55px 0 45px;
  background-size: cover;
}
.numbers .title {
  font-size: 50px;
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 65px;
  text-align: center;
  color: #fff;
}
.numbers .numbers-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  max-width: 1024px;
  margin: auto auto 80px;
}
.numbers .numbers-in .number-wrap {
  text-align: center;
}
.numbers .numbers-in .number-wrap .numerator {
  font-size: 70px;
  font-size: 7rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  color: #ffc200;
}
.numbers .numbers-in .number-wrap .caption {
  font-size: 30px;
  font-size: 3rem;
  display: block;
  display: block;
  color: #fff;
}
.numbers .about-wrap {
  text-align: center;
}
.numbers .about-wrap .btn-about {
  font-size: 30px;
  font-size: 3rem;
  display: inline-block;
  padding: 6px 12px 9px;
  color: #fff;
  border: 1px solid #fff;
}
.numbers .about-wrap .btn-about:hover {
  opacity: 0.8;
}
.page-template-about .container-about {
  max-width: 1500px;
}
.page-template-about .numbers {
  margin-bottom: 120px;
  padding: 100px 0;
}
.page-template-about .numbers .title {
  font-size: 70px;
  font-size: 7rem;
  font-weight: 700;
}
.page-template-about .numbers .numbers-in {
  margin-bottom: 0;
}
.partners {
  padding: 80px 0 85px;
  background-size: cover;
}
.partners .title {
  font-size: 50px;
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 85px;
  text-align: center;
  color: #363636;
}
.partners .slider-wrap {
  max-width: 840px;
  margin: auto;
}
.partners .slider-wrap .slider .slide {
  margin: 0 15px;
}
.partners .slider-wrap .slider .slide .image-wrap img {
  width: auto;
  margin: auto;
}
.case_studies {
  padding: 70px 0 60px;
}
.case-studies-widget {
  padding: 40px 30px 30px;
  background: #eee;
}
.case-studies-widget .title {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 35px;
  text-align: center;
  color: #002564;
}
.case-studies-widget .slider-for-wrap {
  margin-bottom: 25px;
}
.case-studies-widget .slider-nav-wrap .slider-nav .slide {
  margin: 0 12px;
  cursor: pointer;
}
.fb-page-wrap {
  float: left;
  width: 400px;
  max-width: 100%;
}
.fb-page-wrap .title {
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
  color: #333;
}
/* ==========================================================================
 Footer
 ========================================================================== */
footer {
  padding: 40px 0 25px;
  text-align: center;
  background: #eee;
}
footer .newsletter-wrap {
  margin-bottom: 40px;
}
footer .newsletter-wrap .contact_form {
  width: 415px;
  max-width: 100%;
  margin: auto;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap {
  float: right;
  width: 250px;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #333;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #333;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #333;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #333;
}
footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap input {
  font-size: 20px;
  font-size: 2rem;
  height: 41px;
  padding: 0 13px;
  color: #333;
  border: 1px solid #333;
  border-radius: 10px;
  background: transparent;
}
footer .newsletter-wrap .contact_form .wpcf7-submit {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  float: left;
  width: 150px;
  height: 41px;
  padding: 0;
  color: #fff;
  border-radius: 10px;
  background: #002564;
}
footer .socials {
  margin-bottom: 25px;
  text-align: center;
}
footer .socials a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 20px;
  font-size: 2rem;
  width: 38px;
  height: 38px;
  margin-left: 5px;
  color: #fff;
  border-radius: 50%;
}
footer .socials a:hover {
  opacity: 0.85;
}
footer .socials a.facebook {
  background: #3b5998;
}
footer .socials a.pinterest-p {
  background: #cb2027;
}
footer .socials a.instagram {
  background: #517fa4;
}
footer .socials a.twitter {
  background: #00aced;
}
footer .socials a.google-plus {
  background: #dd4b39;
}
footer .socials a.linkedin {
  background: #007ab9;
}
footer .contact {
  font-size: 20px;
  font-size: 2rem;
  color: #333;
}
footer .contact .title {
  font-weight: normal;
  margin-bottom: 0;
  margin-bottom: 5px;
}
footer .contact .sep {
  margin: 0 5px;
}
.sec-title {
  position: relative;
  margin-bottom: 60px;
}
.sec-title span {
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-bottom: 15px;
  color: #002564;
}
.sec-title:after {
  top: 100%;
  display: block;
  width: 90px;
  height: 5px;
  content: '';
  background: #ffc200;
}
.row-content {
  margin-bottom: 100px;
}
.row-staff {
  margin-bottom: 170px;
}
.row-staff .staff-members-wrap .members-row .staff-member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 50px;
}
.row-staff .staff-members-wrap .members-row .staff-member .image-wrap {
  flex: 0 0 270px;
  width: auto;
}
.row-staff .staff-members-wrap .members-row .staff-member .info {
  padding: 0 15px 0 10px;
}
.row-staff .staff-members-wrap .members-row .staff-member .info .title {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 100;
  margin-bottom: 25px;
}
.row-staff .staff-members-wrap .members-row .staff-member .info .desc {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 28px;
}
.container-challenges {
  max-width: 1680px;
}
.challenges .challenge {
  margin-bottom: 150px;
}
.challenges .challenge .sec-title {
  margin-bottom: 50px;
}
.challenges .challenge .entry-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
.challenges .challenge .entry-content .content-col {
  flex: 0 1 830px;
  padding-right: 75px;
}
.challenges .challenge .entry-content .content-col h5 {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 100;
  margin-bottom: 0;
}
.challenges .challenge:nth-child(even) {
  margin-bottom: 35px;
}
.challenges .challenge:nth-child(even) .entry-content {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
}
.challenges .challenge:nth-child(even) .entry-content .content-col {
  padding-right: 0;
  padding-left: 75px;
}
.video-col {
  flex: 0 1 850px;
}
.video-col .image-wrap {
  position: relative;
  margin-bottom: 22px;
}
.video-col .image-wrap .btn-play {
  font-size: 30px;
  font-size: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  color: #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
}
.video-col .testimonial .icon-quote-wrap {
  margin-bottom: 30px;
}
.video-col .testimonial .icon-quote-wrap .icon-quote {
  display: block;
  width: 45px;
  height: 40px;
  background: url(assets/img/bg-quotes-yellow.png);
}
.video-col .testimonial .text {
  margin-bottom: 20px;
}
.video-col .testimonial .name {
  font-weight: bold;
  display: block;
}
.page-template-services .container-services {
  max-width: 1300px;
}
.page-template-services header, .page-template-career header {
  margin-bottom: 120px;
}
.services-list {
  margin-bottom: 50px;
}
.services-list .service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-size: 25px;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.services-list .service .image-wrap {
  flex: 0 1 200px;
  margin-left: 20px;
}
.services-list .service .info {
  flex: 0 1 445px;
  margin-top: 50px;
}
.services-list .service .info .sec-title {
  margin-bottom: 10px;
}
.services-list .service .info .sec-title span {
  font-size: 25px;
  font-size: 2.5rem;
}
.services-list .service .info .text {
  line-height: 30px;
  margin-bottom: 10px;
}
.services-list .service .info .link {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffc200;
}
.services-list .service .info .link:hover {
  opacity: 0.7;
}
.page-template-career header {
  margin-bottom: 50px;
}
.page-template-career .cf-wrap {
  text-align: center;
}
.page-template-career .cf-wrap .wpcf7-response-output {
  font-size: 16px;
  font-size: 1.6rem;
}
.page-template-career .cf-wrap .title {
  font-weight: normal;
  margin-bottom: 40px;
}
.page-template-career .cf-wrap .cf {
  overflow: hidden;
  max-width: 325px;
  margin: auto;
  color: #c6c6c6;
}
.page-template-career .cf-wrap .cf ::-webkit-input-placeholder {
  color: #c6c6c6;
}
.page-template-career .cf-wrap .cf :-moz-placeholder {
  color: #c6c6c6;
}
.page-template-career .cf-wrap .cf ::-moz-placeholder {
  color: #c6c6c6;
}
.page-template-career .cf-wrap .cf :-ms-input-placeholder {
  color: #c6c6c6;
}
.page-template-career .cf-wrap .cf .wpcf7-form-control-wrap, .page-template-career .cf-wrap .cf .file-input-wrap {
  margin-bottom: 10px;
}
.page-template-career .cf-wrap .cf input, .page-template-career .cf-wrap .cf .file-input-wrap {
  font-size: 20px;
  font-size: 2rem;
  height: 45px;
  padding: 0 10px;
  text-align: right;
  border: 1px solid #002564;
  border-radius: 10px;
}
.page-template-career .cf-wrap .cf input .filepath, .page-template-career .cf-wrap .cf .file-input-wrap .filepath {
  position: relative;
  top: -1px;
}
.page-template-career .cf-wrap .cf input .btn-upload, .page-template-career .cf-wrap .cf .file-input-wrap .btn-upload {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: bold;
  position: relative;
  top: -2px;
  float: right;
  margin-left: 10px;
  padding: 4px 5px;
  color: #fff;
  background: #9d9d9d;
}
.page-template-career .cf-wrap .cf input .btn-upload:hover, .page-template-career .cf-wrap .cf .file-input-wrap .btn-upload:hover {
  background: #000;
}
.page-template-career .cf-wrap .cf input[type='file'] {
  position: absolute;
  right: -9999px;
}
.page-template-career .cf-wrap .cf input[type='submit'] {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  width: 190px;
  height: 45px;
  margin: auto;
  padding: 0;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 10px;
  background: #ffc200;
}
.page-template-career .testimonials {
  background: #002564;
}
.page-template-career .testimonials .slider-testimonials-wrap {
  color: #fff;
}
.page-template-career .testimonials .quote-wrap .quote {
  background: url(assets/img/bg-quotes-white.png) center center #002564 no-repeat;
}
.page-template-career .testimonials .quote-wrap:after {
  background: #fff;
}
.row-careers {
  margin-bottom: 130px;
}
.accordion-wrap .accordion li {
  font-size: 20px;
  font-size: 2rem;
}
.accordion-wrap .accordion li .title {
  position: relative;
}
.accordion-wrap .accordion li .title a {
  font-weight: bold;
  display: block;
  margin-bottom: 0;
  padding: 14px 15px;
  border: 1px solid #002564;
}
.accordion-wrap .accordion li .title a .fa {
  position: absolute;
  left: 15px;
}
.accordion-wrap .accordion li .acc_content {
  display: none;
  padding: 15px 15px 20px;
  border: 1px solid #002564;
}
.accordion-wrap .accordion li .fa-minus {
  display: none;
}
.accordion-wrap .accordion li .fa-plus {
  display: inline;
}
.accordion-wrap .accordion li.active .fa-minus {
  display: inline;
}
.accordion-wrap .accordion li.active .fa-plus {
  display: none;
}
.page-template-clients .container-clients {
  max-width: 1100px;
}
.page-template-clients #header_image {
  margin-bottom: 25px;
}
.page-template-clients .clients .entry-title {
  font-size: 50px;
  font-size: 5rem;
  margin-bottom: 35px;
}
.page-template-clients .clients .client-list {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}
.page-template-clients .clients .client-list li {
  float: right;
  width: 20%;
  margin-bottom: 75px;
  padding: 0 15px;
}
.page-template-clients .clients .client-list li .image-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 70px;
}
.page-template-clients .clients .client-list li .image-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.more-sec {
  padding: 50px 0;
  background: #19233e;
}
.more-sec .btn-more {
  font-size: 30px;
  font-size: 3rem;
  display: block;
  width: 200px;
  margin: auto;
  padding: 5px 10px;
  color: #ffc200;
  border: 1px solid #ffc200;
  background: transparent;
}
.page-template-videos .container-videos {
  max-width: 1500px;
}
.page-template-videos .container-videos .entry-title {
  margin-bottom: 60px;
}
.page-template-videos .videos-wrap {
  margin-bottom: 140px;
}
.page-template-videos .videos-wrap .video-col {
  margin-bottom: 30px;
}
.page-template-videos .videos-wrap .video-col .image-wrap {
  margin-bottom: 0;
}
.category .container-categories {
  max-width: 1640px;
}
.category .posts-row .post-item {
  position: relative;
  height: 340px;
}
.category .posts-row .post-item .date-wrap .date-box {
  float: right;
  width: 80px;
  height: 80px;
  text-align: center;
  border: 2px solid #ffc200;
}
.category .posts-row .post-item .date-wrap .date-box .day-wrap .day {
  font-size: 50px;
  font-size: 5rem;
  font-weight: bold;
}
.category .posts-row .post-item .date-wrap .date-box .month-year-wrap {
  font-size: 16px;
  font-size: 1.6rem;
}
.category .posts-row .post-item .details {
  padding-right: 80px;
}
.category .posts-row .post-item .details .entry-title {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.category .posts-row .post-item .details .entry-excerpt {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.category .posts-row .post-item .details .entry-permalink .proceed {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #ffc200;
}
.category .posts-row .post-item .details .entry-permalink .proceed:hover {
  opacity: 0.7;
}
.category .row-all-articles {
  text-align: center;
}
.category .row-all-articles .btn-more {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  width: 150px;
  height: 42px;
  margin-bottom: 65px;
  color: #fff;
  border-radius: 10px;
  background: #002564;
}
.category .row-all-articles .btn-more:hover {
  opacity: 0.9;
}
.category #header_image, .page-template-videos #header_image {
  margin-bottom: 80px;
}
.single .main-section {
  padding-top: 80px;
  background-position: top center;
}
.single footer {
  margin-top: 100px;
}
.page-template-thankyou .main-section {
  max-width: 850px;
  min-height: 820px;
  margin: auto;
  padding-top: 240px;
  text-align: center;
  background-image: center center;
  background-size: 100% 100%;
}
.page-template-thankyou .main-section .title {
  font-size: 200px;
  font-size: 20rem;
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}
.page-template-thankyou .main-section .ty-message {
  font-weight: bold;
}
.page-template-thankyou .main-section .ty-message .fb {
  text-align: center;
}
.page-template-thankyou .main-section .ty-message .fb a {
  font-size: 50px;
  font-size: 5rem;
  color: #3b5998;
}
.page-template-thankyou .main-section .ty-message .fb a:hover {
  opacity: 0.9;
}
.page-template-thankyou footer {
  margin-top: 170px;
}
.page-template-contact .main-section {
  padding-top: 40px;
}
.page-template-contact .container-contact {
  max-width: 1360px;
}
.page-template-contact .contact-details {
  margin-bottom: 70px;
}
.page-template-contact .contact-details .details-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.page-template-contact .contact-details .details-row .icon {
  margin-left: 15px;
}
.page-template-contact .contact-details .details-row .icon img {
  width: 45px;
  height: 45px;
}
.page-template-contact .contact-details .details-row .text {
  font-size: 25px;
  font-size: 2.5rem;
  color: #002564;
}
.page-template-contact .form-wrap {
  width: 100%;
  max-width: 540px;
}
.page-template-contact .form-wrap .field-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 10px;
}
.page-template-contact .form-wrap .field-wrap label {
  font-size: 25px;
  font-size: 2.5rem;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  align-self: flex-start;
  -ms-flex-item-align: start;
  flex: 0 0 150px;
  margin-top: 10px;
}
.page-template-contact .form-wrap .field-wrap label[for='message'] {
  margin-top: 5px;
}
.page-template-contact .form-wrap .field-wrap input, .page-template-contact .form-wrap .field-wrap textarea {
  height: 45px;
  border: 1px solid #002564;
  border-radius: 10px;
  background: none;
}
.page-template-contact .form-wrap .field-wrap textarea {
  height: 135px;
  resize: none;
}
.page-template-contact .form-wrap .field-wrap .required {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  float: left;
  width: 8px;
  height: 8px;
  margin: 9px 0 0 30px;
  color: red;
  border: 1px solid red;
}
.page-template-contact .form-wrap .field-wrap .required span {
  position: relative;
  top: -1px;
}
.page-template-contact .form-wrap .submit-wrap {
  position: relative;
}
.page-template-contact .form-wrap .submit-wrap input[type='submit'] {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  float: right;
  width: 190px;
  height: 45px;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 0;
  color: #fff;
  border: none;
  border-radius: 10px;
  background: #ffc200;
}
.page-template-contact .form-wrap .submit-wrap .ajax-loader {
  position: absolute;
  top: 100%;
  right: 0;
}
.page-template-contact footer {
  margin-top: 100px;
}
.group {
  padding: 60px 0 100px;
  background-size: cover;
}
.group .container {
  max-width: 1500px;
}
.group .title {
  font-size: 50px;
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 65px;
  text-align: center;
  color: #fff;
}
.group .entry-box {
  position: relative;
  width: 380px;
  max-width: 100%;
  margin-bottom: 55px;
}
.group .entry-box .frame {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 3px solid #ffc100;
}
.group .entry-box .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: relative;
  height: 380px;
  margin: auto;
  background: #e8e8e8;
}
.group .entry-box .box .entry-image img {
  max-width: 100%;
}
.group .entry-box .box-hover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 70px 25px 30px;
  background: #19233e;
}
.group .entry-box .box-hover .entry-text {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #fff;
}
.group .entry-box .box-hover .entry-btn {
  text-align: center;
}
.group .entry-box .box-hover .entry-btn .btn {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 50px;
  display: inline-block;
  margin: auto;
  padding: 0 25px;
  color: #fec200;
  border: 2px solid #fec200;
}
.flip-container {
  perspective: 1000px;
}
.flip-container:hover .flipper, .flip-container.hover .flipper {
  transform: rotateY(180deg);
}
.flipper {
  position: relative;
  transition: 0.6s;
  transform-style: preserve-3d;
}
.front, .back {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}
.front {
  z-index: 2;
  transform: rotateY(0deg);
}
.back {
  -webkit-transform: rotateY(180deg) translateZ(1px);
  -moz-transform: rotateY(180deg);
}
/* end width 1366px */
/* end width 1280px */
/* end width 1024px */
@media only screen and (max-width: 768px) {
  .mobile_only {
    display: block !important;
  }
  .desktop_only {
    display: none !important;
  }
  #site-header #header_image {
    height: 200px;
  }
  .slider-home .caption .caption-in .title {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .numbers .numbers-in {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .numbers .numbers-in .number-wrap {
    flex: 0 1 48%;
    margin-bottom: 30px;
  }
  .fb-page-wrap {
    float: none;
    margin: 30px auto;
  }
  .page-template-services header, .page-template-career header {
    margin-bottom: 30px;
  }
  .challenges .challenge .entry-content {
    display: block;
  }
  .video-col {
    margin-bottom: 25px;
  }
  .challenges .challenge .entry-content .content-col {
    padding: 0;
  }
  .challenges .challenge {
    margin-bottom: 40px;
  }
  .row-staff {
    margin-bottom: 0;
  }
  .row-staff .staff-members-wrap .members-row .staff-member, .row-staff .staff-members-wrap .members-row .staff-member:nth-child(odd), .row-staff .staff-members-wrap .members-row .staff-member:nth-child(even) {
    display: block;
    float: none;
    width: 100%;
  }
  .row-staff .staff-members-wrap .members-row:nth-child(odd), .row-staff .staff-members-wrap .members-row:nth-child(even) {
    padding: 0;
  }
  .row-staff .staff-members-wrap .image-wrap {
    margin-bottom: 25px;
  }
  .row-staff .staff-members-wrap .image-wrap img {
    max-width: 260px;
    margin: auto;
  }
  .wpcf7 .field-wrap .wpcf7-form-control-wrap {
    width: 100%;
  }
  .page-template-contact .contact_form {
    margin-bottom: 30px;
  }
  #map_canvas {
    float: none;
    max-width: 100%;
  }
  .sec-title span {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
/* end width 768px */
@media only screen and (max-width: 480px) {
  #site-header #header_image {
    height: 110px;
  }
  #site-header #header_image h1 {
    font-size: 26px;
  }
  .slider-home .caption .caption-in .title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 5px;
  }
  .slider-home .caption .caption-in .btn-wrap a {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 8px 30px;
  }
  .slider-home .caption {
    top: 10px;
  }
  .page-template-contact .form-wrap .field-wrap label {
    font-size: 16px;
    flex: 0 0 100px;
  }
  .page-template-contact .form-wrap .field-wrap .required {
    margin: 5px 0 0 20px;
  }
  .page-template-contact .form-wrap .submit-wrap input[type='submit'] {
    float: none;
    width: 100%;
    margin-top: 0;
  }
  footer .newsletter-wrap .contact_form .wpcf7-form-control-wrap {
    float: none;
    width: 100%;
  }
  footer .newsletter-wrap .contact_form .wpcf7-submit {
    float: none;
    width: 100%;
  }
  .services-list .service {
    display: block;
    margin-bottom: 40px;
  }
  .services-list .service .image-wrap {
    margin-left: 0;
  }
  .services-list .service .image-wrap img {
    width: 100px;
    margin: auto;
  }
  .services-list .service .info {
    margin-top: 20px;
  }
  .challenges .challenge:nth-child(even) .entry-content .content-col {
    padding-left: 0;
  }
  .row-content {
    margin-bottom: 40px;
  }
  .row-careers {
    margin-bottom: 30px;
  }
  .page-template-clients .clients .client-list li {
    width: 33.333%;
    margin-bottom: 20px;
  }
  .page-template-about .numbers {
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .page-template-about .numbers .title {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 25px;
  }
  .numbers .numbers-in .number-wrap .numerator {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .numbers .numbers-in .number-wrap .caption {
    font-size: 20px;
    font-size: 2rem;
  }
  .companies {
    padding: 25px 10px;
  }
  .services .services-row .services-wrap {
    display: block;
  }
  .services .services-row .services-wrap .service {
    margin-bottom: 30px;
  }
  .services .services-row .services-wrap .service .image-wrap {
    margin-bottom: 20px;
  }
  .services .services-row {
    padding: 40px 0;
  }
  .numbers {
    padding: 35px 0;
  }
  .numbers .title {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .numbers .numbers-in {
    margin-bottom: 10px;
  }
  .case_studies {
    padding: 30px 0;
  }
  .partners {
    padding: 30px 0;
  }
  .partners .title {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
}
/* end width 480px */
@media only screen and (max-width: 375px) {
  .site-logo {
    width: 220px;
  }
}
/* end width 375px */
/* end width 360px */
/* end width 320px */
