/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
}
body {
  font: 400 20px/1.4 "Calibri", "Trebuchet", sans-serif;
  color: #004470;
  background-color: rgba(65, 178, 242, 0.1);
  background-repeat: repeat-y;
}
.background {
  position: fixed;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-image: url("./img/bg.png");
  opacity: 0.1;
  z-index: 0;
  animation: rotate 10s infinite ease;
}

@keyframes rotate {
  0% {
    transform: rotate3d(0);
  }
  50% {
    transform: rotate3d(1, 0, 0, 45deg);
  }
  100% {
    transform: rotate3d(0);
  }
}

/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a {
  color: #444;
  text-decoration: none;
}
a:hover {
  color: #444;
}
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
input:focus {
  outline: 0;
  border: 1px solid #04a4cc;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

main {
  padding-top: 100px;
}

/* header */
.header {
  height: 120px;
  padding: 25px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
/* logo */
.logo {
  margin-bottom: -55px;
}
.logo-img {
  position: relative;
  z-index: 99;
}
/* nav */
.nav {
  float: right;
}
.nav li {
  float: left;
  list-style: none;
  margin-right: 35px;
}

ul {
  list-style-type: square;
}

.nav li a {
  color: #005a91;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  text-decoration: none;
}
.nav a:hover:after,
.nav li.current_page_item a:after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  position: absolute;
  bottom: -15px;
  height: 5px;
  width: 100%;
  background-color: #ffed00;
}

.nav a:after {
  content: "";
  width: 0;
  transition: width 0.3s ease;
}

.nav a:hover:after {
  width: 100%;
  transition: width 0.3s ease;
}

/* sidebar */
.sidebar {
  float: right;
  width: 25%;
}

.sidebar h3 {
  font-size: 28px;
}
.sidebar h3:after {
  width: 50px;
}

h1 {
  position: relative;
}

.post h1 {
  margin-bottom: 80px;
  margin-top: 40px;
}

.loop h1:after,
.wpb_text_column h1:after {
  content: "";
  left: 0;
  border-radius: 10px;
  position: absolute;
  bottom: -15px;
  height: 5px;
  width: 150px;
  background-color: #ffed00;
}
.vc_single_image-wrapper {
  padding: 25px;
  background-color: #fff;
}

/* footer */
.footer {
  text-align: center;
  margin: 0;
  padding: 25px;
  background-color: #004470;
  color: #fff;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.footer li {
  list-style: none;
  text-align: left;
}

.footer li a {
  text-decoration: none;
}

.footer li a {
  text-decoration: underline;
}

.footer-menu {
  float: right;
  max-width: 250px;
  text-align: left;
}
.footer a {
  color: #fff;
}

.footer-head {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-head:after {
  clear: both;
}

.logo-footer {
  max-width: 800px;
  float: left;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.loop article {
  width: 70%;
  margin-bottom: 100px;
}

.loop article img {
  width: 100%;
  height: auto;
}

.loop h2 a {
  text-decoration: none;
  font-size: 40px;
  margin-top: 30px;
  display: inline-block;
}

.sidebar-widget {
  margin-top: 50px;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

#flow {
  position: absolute;
  animation: flow 30s infinite;
  max-width: none;
  opacity: 0.5;
  left: 0;
  top: -700px;
  transition: all 1s ease !important;
}

.flow-bg {
  background: linear-gradient(
    to top,
    #004570 0%,
    #006e9e 26%,
    #0091c6 51%,
    #0091c6 77%,
    #00afe7 100%
  );
}

@keyframes flow {
  0% {
    transform: rotate3d(0);
  }
  50% {
    transform: rotate3d(1, 1, 1, -20deg);
  }
  100% {
    transform: rotate3d(0);
  }
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

a {
  color: #004470;
  text-decoration: underline;
}

.big {
  font-size: 28px;
  color: #004470;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #004470;
}

h1 {
  font-size: 60px;
}

h3 {
  position: relative;
  font-size: 40px;
  margin-bottom: 50px;
}

h3:after {
  content: "";
  height: 5px;
  width: 150px;
  background-color: #ffed00;
  position: absolute;
  bottom: -20px;
  left: 0px;
  border-radius: 10px;
}
.bg-darkblue h3:after,
.bg-blue h3:after {
  transform: translateX(-50%);
  left: 50%;
}
.bg-darkblue h3,
.bg-blue h3 {
  color: #fff;
}
.bg-darkblue.vc_col-sm-6 .wpb_content_element,
.bg-blue.vc_col-sm-6 .wpb_content_element {
  max-width: 60%;
  margin: 0 auto;
}

.bg-darkblue a {
  color: #ffed00;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}

.bg-darkblue a:hover {
  color: #41b2f2;
}

.bg-darkblue h1 {
  color: #fff;
}

.removeYellowh3 h3 {
  margin-bottom: 0;
}

.vc_col-sm-12 h3:after {
  left: 0;
  transform: none;
}

.removeYellowh3 h3:after {
  display: none;
}

.big:after {
  content: "";
  height: 5px;
  width: 150px;
  background-color: #ffed00;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.vc_single_image-wrapper {
  padding: 0px;
  background-color: transparent;
}

.btn-more,
.btn a {
  background-color: #41b2f2;
  color: #fff;
  box-sizing: border-box;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 5px;
  box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-more:hover,
.btn a:hover {
  color: #fff;
  background-color: #004470;
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

input,
textarea {
  padding: 10px 10px;
  border-radius: 5px;
  appearance: none;
  border: 0px;
  width: 80%;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #ffffff;
}

.search-submit {
  background-color: #41b2f2;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  appearance: none;
  border: 0px;
  padding: 5px 10px;
  margin-top: 10px;
  box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
}

input[type="submit"] {
  background-color: #004470;
  color: #fff;
  font-weight: bold;
}

label {
  color: #666;
}

/* SUBMENU */

.sub-menu {
  position: absolute;
  width: 300px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  top: 25px;
  z-index: 1000;
  display: none;
}

.sub-menu li a:hover:after,
.sub-menu li.current_page_item a:after {
  display: none;
}

.sub-menu li a:hover {
  color: #41b2f2;
}

.sub-menu li:last-child {
  margin-bottom: 0px;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.sub-menu li {
  float: none;
  margin-bottom: 20px;
}

.sub-menu {
  margin: 0;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width: 320px) {
}
@media only screen and (min-width: 480px) {
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (min-width: 1140px) {
}
@media only screen and (min-width: 1280px) {
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 144dpi) {
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

.bg-blue {
  background-color: #41b2f2;
  color: #fff;
}

.bg-blue.vc_col-sm-6 .vc_column-inner {
  min-height: 50vh;
}
.bg-darkblue.vc_col-sm-6 .vc_column-inner {
  min-height: 50vh;
}

.bg-blue p {
  color: #fff;
}

.bg-darkblue {
  background-color: #005f95;
  color: #fff;
}

.bg-darkblue p {
  color: #fff;
}

.big-yellow p {
  font-size: 250px;
  margin-top: 0;
  line-height: 0px;
  height: 140px;
  color: #ffed00;
  text-align: center;
}

.bg-gradient {
  background: linear-gradient(#005f95 0%, #41b2f2 100%);
  color: #fff;
}

.bob-intro {
  padding-top: 200px;
  min-height: 50vh;
  background-color: #005f95;
  color: #fff;
  background-image: url("./img/flow.png"),
    linear-gradient(#41b2f2 0%, #005f95 100%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;

  color: #fff;
}

.bob-intro h1 {
  color: #fff;
}

.y {
  color: #ffed00;
}

.tech-detail {
  position: absolute;
}

.detail-1 {
  bottom: 25%;
  left: 10%;
  top: auto;
}

.detail-2 {
  left: 70%;
  bottom: 50%;
}

.detail-3 {
  left: 30%;
  bottom: 30%;
}

.detail-4 {
  left: 50%;
  bottom: 30%;
}

.bob-slide h1 {
  font-size: 100px;
  line-height: 110px;
  color: #fff;
  font-weight: bold;
}

.bob-img-slide {
}

.bob-slide.center {
  text-align: center;
}

.bob-slide h3 {
  background-color: #004470;
  display: inline;
  padding: 10px 20px;
  line-height: 55px;
  color: #ffed00;
  font-weight: bold;
  font-size: 50px;
  margin: 0 auto;
  border-radius: 10px;
}

.bob-slide h3:after {
  display: none;
}

.bob-slide h2 {
  color: #ffed00;
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
}

.tech-detail h2 {
  color: #fff;
}

.tech-detail .wpb_wrapper {
  background-color: #004470;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  display: none;
  position: absolute;
  width: 350px;
}
.tech-detail:before {
  height: 30px;
  width: 30px;
  background-color: #ffed00;
  content: " ";
  border-radius: 50%;
  display: block;
  cursor: pointer;
  animation: pulse 2s infinite;
}
#oe-app a {
  text-decoration: none;
}

.copyright {
  font-size: 14px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(65, 178, 242, 0);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0px 0px 0px 20px rgba(65, 178, 242, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(65, 178, 242, 0);
  }
}
.tech-detail:active .wpb_wrapper,
.tech-detail:hover .wpb_wrapper {
  display: block;
}

.detal

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
.sticky {
}
.bypostauthor {
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

@media (max-width: 800px) {
  .bg-darkblue.vc_col-sm-6 .wpb_content_element,
  .bg-blue.vc_col-sm-6 .wpb_content_element {
    max-width: 80%;
  }
  h1 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .big {
    font-size: 20px;
  }

  .vc_custom_1576589765610 {
    padding-right: 0 !important;
  }

  .loop h2 a {
    font-size: 32px;
    line-height: 38px;
  }

  .footer img {
    max-width: 100%;
  }
  .sidebar {
    float: none;
    width: 100%;
  }

  .loop article {
    width: 100%;
  }

  .bob-slide h1 {
    font-size: 45px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
  }
  .bob-slide h3 {
    font-size: 30px;
    line-height: 50px;
  }
  .bob-slide h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .ms-layer {
    text-align: center !important;
    transform: translateX(-50%) !important;
    left: 50% !important;
  }
}

.show-nav .header nav ul:not(.sub-menu) {
  display: block;
}

.show-nav .hamburger {
  display: none;
}

.hamburger {
  display: none;
}
.page-id-2 .wpb_single_image {
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.post h1 {
  font-size: 40px;
  line-height: 48px;
}

@media (max-width: 1000px) {
  header nav {
  }
  .hamburger {
    display: block;
  }
  .header nav ul:not(.sub-menu) {
    top: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    overflow-y: scroll;
    position: fixed;
    height: 100%;
    width: 80%;
    background-color: #41b2f2;
    margin-top: 0;
    z-index: 100;
    display: none;
  }
  .hamburger {
    cursor: pointer;
    content: "";
    float: right;
    height: 50px;
    width: 50px;
    background: red;
    display: block;
    display: inline-block;

    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4Igp3aWR0aD0iNTAiIGhlaWdodD0iNTAiCnZpZXdCb3g9IjAgMCAxNzEgMTcxIgpzdHlsZT0iIGZpbGw6IzAwMDAwMDsiPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJidXR0IiBzdHJva2UtbGluZWpvaW49Im1pdGVyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1kYXNoYXJyYXk9IiIgc3Ryb2tlLWRhc2hvZmZzZXQ9IjAiIGZvbnQtZmFtaWx5PSJub25lIiBmb250LXdlaWdodD0ibm9uZSIgZm9udC1zaXplPSJub25lIiB0ZXh0LWFuY2hvcj0ibm9uZSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOiBub3JtYWwiPjxwYXRoIGQ9Ik0wLDE3MS45ODQzOHYtMTcxLjk4NDM3aDE3MS45ODQzOHYxNzEuOTg0Mzh6IiBmaWxsPSJub25lIj48L3BhdGg+PGcgZmlsbD0iIzAwNDQ3MCI+PHBhdGggZD0iTTAsMjUuNjV2MTcuMWgxNzF2LTE3LjF6TTAsNzYuOTV2MTcuMWgxNzF2LTE3LjF6TTAsMTI4LjI1djE3LjFoMTcxdi0xNy4xeiI+PC9wYXRoPjwvZz48L2c+PC9zdmc+")
      50% 50% no-repeat;
    background-size: contain;
  }

  header .nav ul li {
    float: none;
    width: 100%;
    text-align: left;
    font-size: 24px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    z-index: 101;
  }

  .header nav ul li a:after {
    display: none;
  }

  .header nav ul .current-menu-item a {
    color: #ffed00;
  }
  .detail-2 .wpb_wrapper {
    z-index: 1000;
    transform: translateX(-50%);
  }
  .nav {
    width: 100%;
  }

  .logo img {
    max-width: none;
  }
}

.widgettitle {
  color: #fff !important;
  font-size: 20px;
  text-align: left !important;
  text-decoration: underline;
}

.footer .wpb_single_image img {
  height: auto !important;
  max-width: 100% !important;
  vertical-align: top !important;
}
.caption {
  font-size: 12px;
}

.lightblue {
  background-color: rgba(255, 255, 255, 0.2);
}
