html,
body {
  width: 100%;
  height: 100%;
  background: white;
  margin: 0;
  padding: 0;
  color: black;
  overflow: hidden;
}

.blue1 {
  color: #00bceb;
}

.blue2 {
  color: #0d274d;
}

.blue3 {
  color: #0051af;
}

@font-face {
  font-family: "CiscoSans, Fallback, sans-serif";
  font-weight: 300;
  font-style: normal;
  src: url("/styles/fonts/ciscosans-thin.woff2") format("woff2"), url("/styles/fonts/ciscosans-thin.woff") format("woff");
}
@font-face {
  font-family: "CiscoSans, Fallback, sans-serif";
  font-style: bold;
  src: url("/styles/fonts/ciscosans-thin.woff2") format("woff2"), url("/styles/fonts/ciscosans-thin.woff") format("woff");
}
p,
a,
button,
ul,
li,
label {
  font-family: "CiscoSans, Fallback, sans-serif";
  font-style: normal;
  font-weight: 300;
}
@media (max-height: 650px) {
  p,
a,
button,
ul,
li,
label {
    font-size: 0.9em;
  }
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "CiscoSans, Fallback, sans-serif";
  font-style: bold;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.one-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 60px;
}
@media (max-height: 650px) {
  .two-line {
    min-height: 50px;
  }
}

.three-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 75px;
}
@media (max-height: 650px) {
  .three-line {
    min-height: 65px;
  }
}

#cookie {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 12px;
  z-index: 2;
}
#cookie .blocker {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00bceb;
  opacity: 0.5;
}
#cookie .cookie_container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top: 1px solid #000;
  padding: 10px;
}
#cookie .cookie_container a {
  color: #0d274d;
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
}
#cookie .cookie_container button {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: inherit;
  padding: 10px 20px;
  border-radius: 20px;
}
#cookie .cookie_container button.btn-outline-danger {
  border-width: 1px;
  border-style: solid;
}

html.cookie-deny #cookie,
html.cookie-deny .cookie-required {
  display: none;
}

html.cookie-allow #cookie {
  display: none;
}

@-webkit-keyframes animation1 {
  0% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
  50% {
    transform: rotate(23deg) translate(0, -50px);
    -webkit-transform: rotate(23deg) translate(0, -50px);
    -moz-transform: rotate(23deg) translate(0, -50px);
  }
  100% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
}
@keyframes animation1 {
  0% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
  50% {
    transform: rotate(23deg) translate(0, -50px);
    -webkit-transform: rotate(23deg) translate(0, -50px);
    -moz-transform: rotate(23deg) translate(0, -50px);
  }
  100% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
}
@-webkit-keyframes animation2 {
  0% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
  50% {
    transform: rotate(-23deg) translate(50px, 0);
    -webkit-transform: rotate(-23deg) translate(50px, 0);
    -moz-transform: rotate(-23deg) translate(50px, 0);
  }
  100% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
}
@keyframes animation2 {
  0% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
  50% {
    transform: rotate(-23deg) translate(50px, 0);
    -webkit-transform: rotate(-23deg) translate(50px, 0);
    -moz-transform: rotate(-23deg) translate(50px, 0);
  }
  100% {
    transform: rotate(2deg) translate(0, 0px);
    -webkit-transform: rotate(2deg) translate(0, 0);
    -moz-transform: rotate(2deg) translate(0, 0px);
  }
}
@-webkit-keyframes animation3 {
  0% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
  50% {
    transform: rotate(0) translate(-50px, 0);
    -webkit-transform: rotate(0) translate(-50px, 0);
    -moz-transform: rotate(0) translate(-50px, 0);
  }
  100% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
}
@keyframes animation3 {
  0% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
  50% {
    transform: rotate(0) translate(-50px, 0);
    -webkit-transform: rotate(0) translate(-50px, 0);
    -moz-transform: rotate(0) translate(-50px, 0);
  }
  100% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
}
@-webkit-keyframes animation4 {
  0% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
  50% {
    transform: rotate(30deg) translate(0, 50px);
    -webkit-transform: rotate(30deg) translate(0, 50px);
    -moz-transform: rotate(30deg) translate(0, 50px);
  }
  100% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
}
@keyframes animation4 {
  0% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
  50% {
    transform: rotate(30deg) translate(0, 50px);
    -webkit-transform: rotate(30deg) translate(0, 50px);
    -moz-transform: rotate(30deg) translate(0, 50px);
  }
  100% {
    transform: rotate(0) translate(0, 0px);
    -webkit-transform: rotate(0) translate(0, 0);
    -moz-transform: rotate(0) translate(0, 0px);
  }
}
nav {
  width: 100%;
  position: fixed;
  background: transparent;
  z-index: 3;
  padding: 20px 0 0 0;
  text-align: center;
}
@media (max-width: 450px) {
  nav {
    padding: 10px 0 0 0;
  }
}
nav svg#cisco-logo {
  height: 60px;
  fill: #00bceb;
  -webkit-transition: 0.7s ease-out;
  transition: 0.7s ease-out;
}
body.fp-viewing-home-0 nav svg#cisco-logo {
  fill: white !important;
  height: 85px;
}
@media (max-height: 800px) {
  body.fp-viewing-home-0 nav svg#cisco-logo {
    height: 70px;
  }
}
@media (max-height: 650px) {
  body.fp-viewing-home-0 nav svg#cisco-logo {
    height: 60px;
  }
}
@media (max-width: 992px) {
  body.fp-viewing-home-0 nav svg#cisco-logo {
    height: 70px;
  }
}
@media (max-width: 450px) {
  body.fp-viewing-home-0 nav svg#cisco-logo {
    height: 60px;
  }
}
@media (max-width: 350px) {
  body.fp-viewing-home-0 nav svg#cisco-logo {
    height: 50px;
  }
}
@media (max-height: 800px) {
  nav svg#cisco-logo {
    height: 50px;
  }
}
@media (max-height: 650px) {
  nav svg#cisco-logo {
    height: 40px;
  }
}
@media (max-width: 992px) {
  nav svg#cisco-logo {
    height: 50px;
  }
}
@media (max-width: 450px) {
  nav svg#cisco-logo {
    height: 50px;
  }
}
@media (max-width: 375px) {
  nav svg#cisco-logo {
    height: 40px;
  }
}
@media (max-width: 350px) {
  nav svg#cisco-logo {
    height: 40px;
  }
}
nav a.link {
  font-size: 13px;
  letter-spacing: 2px;
}
@media (max-width: 600px) {
  nav a.link {
    font-size: 10px;
  }
}

.form-contact {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 2;
  text-align: center;
}
@media (max-height: 800px) {
  .form-contact {
    bottom: 5px;
    right: 10px;
  }
}
@media (max-height: 650px) {
  .form-contact {
    bottom: 5px;
    right: 0;
  }
}
@media (max-width: 992px) {
  .form-contact {
    bottom: 5px;
    right: 10px;
  }
}
@media (max-width: 350px) {
  .form-contact {
    bottom: 0;
    right: 5px;
  }
}
.form-contact .contact {
  background: white;
  width: 110px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  padding: 10px;
}
@media (max-width: 450px) {
  .form-contact .contact {
    padding: 5px;
    width: auto;
    border-radius: 5px;
  }
}
.form-contact .contact:hover p {
  color: #fbab2c;
}
.form-contact .contact:hover svg#contact-btn {
  fill: #fbab2c;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.form-contact .contact p {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.form-contact .contact svg#contact-btn {
  width: 40px;
  fill: #0d274d;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin: 0 0 2.5px 0;
}
@media (max-height: 650px) {
  .form-contact .contact p {
    font-size: 0.7em;
  }
  .form-contact .contact svg#contact-btn {
    width: 30px;
    margin: 0 0 1px 0;
  }
}
@media (max-width: 450px) {
  .form-contact .contact p {
    font-size: 0.7em;
  }
  .form-contact .contact svg#contact-btn {
    width: 30px;
    margin: 0 0 1px 0;
  }
}
body.fp-viewing-home-0 .form-contact .contact {
  background: transparent;
}
body.fp-viewing-home-0 .form-contact .contact p {
  color: white;
  font-size: 1.2em;
}
body.fp-viewing-home-0 .form-contact .contact svg#contact-btn {
  fill: white;
  width: 50px;
  margin: 0 0 4px 0;
}
@media (max-height: 800px) {
  body.fp-viewing-home-0 .form-contact .contact p {
    font-size: 1em;
  }
  body.fp-viewing-home-0 .form-contact .contact svg#contact-btn {
    width: 40px;
  }
}
@media (max-width: 992px) {
  body.fp-viewing-home-0 .form-contact .contact p {
    font-size: 1em;
  }
  body.fp-viewing-home-0 .form-contact .contact svg#contact-btn {
    width: 40px;
  }
}
@media (max-width: 450px) {
  body.fp-viewing-home-0 .form-contact .contact {
    padding: 0;
  }
  body.fp-viewing-home-0 .form-contact .contact p {
    font-size: 0.9em;
    margin: 0 0 2px 0;
  }
  body.fp-viewing-home-0 .form-contact .contact svg#contact-btn {
    width: 35px;
    margin: 0 0 2px 0;
  }
}

.menu {
  position: absolute;
  z-index: 20;
  top: 20px;
  left: 20px;
}
@media (max-width: 450px) {
  .menu {
    left: 10px;
    top: 10px;
  }
}
.menu svg#menu {
  fill: #0d274d;
  -webkit-transition: 0.7s ease-out;
  transition: 0.7s ease-out;
  width: 45px;
  cursor: pointer;
}
.menu svg#menu:hover {
  fill: #74bf4b;
}
body.fp-viewing-home-0 .menu svg#menu {
  fill: white;
  width: 55px;
}
@media (max-height: 800px) {
  body.fp-viewing-home-0 .menu svg#menu {
    width: 50px;
  }
}
@media (max-height: 650px) {
  body.fp-viewing-home-0 .menu svg#menu {
    width: 40px;
  }
}
@media (max-width: 992px) {
  body.fp-viewing-home-0 .menu svg#menu {
    width: 50px;
  }
}
@media (max-width: 450px) {
  body.fp-viewing-home-0 .menu svg#menu {
    width: 30px;
  }
}
@media (max-height: 800px) {
  .menu svg#menu {
    width: 40px;
  }
}
@media (max-height: 650px) {
  .menu svg#menu {
    width: 30px;
  }
}
@media (max-width: 992px) {
  .menu svg#menu {
    width: 30px;
  }
}
@media (max-width: 450px) {
  .menu svg#menu {
    width: 40px;
  }
}
@media (max-width: 350px) {
  .menu svg#menu {
    width: 30px;
  }
}

div.dropdown {
  position: absolute;
  z-index: 20;
  top: 20px;
}
@media (max-width: 450px) {
  div.dropdown {
    top: 10px;
  }
}
div.dropdown a.btn-dropdown,
div.dropdown button.btn-dropdown {
  color: #0d274d;
}
div.dropdown#language {
  right: 110px;
}
div.dropdown#legal {
  right: 30px;
}
div.dropdown .dropdown-menu {
  background: white;
}
div.dropdown .dropdown-menu a {
  font-size: 0.9em;
}
div.dropdown button {
  color: #0d274d;
  -webkit-transition: color 0.7s ease-out;
  transition: color 0.7s ease-out;
}
body.fp-viewing-home-0 div.dropdown button {
  color: white;
}
@media (max-width: 600px) {
  div.dropdown#language {
    right: 80px;
  }
  div.dropdown#legal {
    right: 20px;
  }
  div.dropdown button {
    font-size: 10px;
  }
}
@media (max-width: 450px) {
  div.dropdown#language {
    right: 70px;
  }
  div.dropdown#legal {
    right: 10px;
  }
  div.dropdown button {
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  div.dropdown#language {
    right: 60px;
  }
  div.dropdown#legal {
    right: 10px;
  }
  div.dropdown button {
    font-size: 9px;
  }
}

#menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#menu-bar.shown {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#bg-dark-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 998;
}

.menu-bar {
  background: white;
  position: fixed;
  width: 375px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 20px;
  text-align: left;
  border-right: 1px solid #e2e2e2;
}
@media (max-width: 992px) {
  .menu-bar {
    width: 100%;
  }
}
.menu-bar ul.links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu-bar ul.links a {
  display: block;
  color: #0051af;
  font-size: 1.5em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 0 10px 0;
}
.menu-bar ul.links a.active_section {
  color: #00bceb;
}
.menu-bar ul.links a:hover {
  color: #00bceb;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media (max-width: 350px) {
  .menu-bar ul.links a {
    font-size: 1.2em;
  }
}
.menu-bar:hover ul.links a {
  color: #0051af;
}
.menu-bar h2 {
  margin: 10px 0 0 0;
}
@media (max-height: 650px) {
  .menu-bar h2 {
    font-size: 1.5em;
    margin: 5px 0 0 0;
  }
}
@media (max-width: 350px) {
  .menu-bar h2 {
    font-size: 1.5em;
    margin: 5px 0 0 0;
  }
}

div#close-menu {
  position: absolute;
  top: 25px;
  right: 10px;
  z-index: 3;
}
div#close-menu svg.menu-close {
  cursor: pointer;
  width: 40px;
  fill: #0d274d;
}
div#close-menu svg.menu-close:hover {
  fill: #fbab2c;
}
@media (max-width: 350px) {
  div#close-menu svg.menu-close {
    width: 30px;
  }
}

img.top-logo {
  width: 200px;
  text-align: center;
}
@media (max-height: 650px) {
  img.top-logo {
    width: 175px;
  }
}
@media (max-width: 375px) {
  img.top-logo {
    width: 175px;
  }
}
@media (max-width: 350px) {
  img.top-logo {
    width: 150px;
  }
}

a,
button {
  outline: none;
  border: none;
}
a.btn-dropdown,
button.btn-dropdown {
  color: white;
  background: none;
  border-radius: 0;
  font-size: 12px;
  padding: 0;
  text-align: center;
  outline: none;
  text-transform: uppercase;
}
a.btn-fact,
button.btn-fact {
  background: white;
  color: #0051af;
  font-size: 1em;
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid #0051af;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}
a.btn-fact:hover,
button.btn-fact:hover {
  background: #0051af;
  color: white;
}
@media (max-height: 800px) {
  a.btn-fact,
button.btn-fact {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}
@media (max-height: 650px) {
  a.btn-fact,
button.btn-fact {
    font-size: 0.8em;
    padding: 7.5px 15px;
  }
}
@media (max-width: 450px) {
  a.btn-fact,
button.btn-fact {
    font-size: 0.8em;
    padding: 10px 20px;
  }
}
@media (max-width: 350px) {
  a.btn-fact,
button.btn-fact {
    font-size: 0.7em;
    padding: 7.5px 15px;
  }
}
a.btn-social i,
button.btn-social i {
  color: #0051af;
  font-size: 20px;
  margin: 0 0 0 10px;
}
a.btn-social i:hover,
button.btn-social i:hover {
  color: #00bceb;
}
@media (max-width: 350px) {
  a.btn-social i,
button.btn-social i {
    font-size: 15px;
    margin: 0 0 0 5px;
  }
}
.section-bar a.focus,
.section-bar button.focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #0d274d;
}
a:hover {
  color: #0d274d;
  text-decoration: none;
}
a.active {
  color: #0d274d;
}

/* Owl Carousel */
.owl-nav {
  padding: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-height: 810px) {
  .owl-nav .owl-next {
    margin: 0 10px;
  }
  .owl-nav .owl-next i {
    font-size: 14px;
  }
  .owl-nav .owl-prev i {
    font-size: 14px;
  }
}
.owl-nav .owl-prev {
  outline: none;
}
.owl-nav .owl-prev:hover i {
  color: #00bceb;
}
.owl-nav .owl-next {
  margin: 0 10px;
  outline: none;
}
.owl-nav .owl-next:hover i {
  color: #74bf4b;
}

.owl-dots button.owl-dot {
  outline: none;
}
.owl-dots button.owl-dot span {
  background: none repeat scroll 0 0 gray;
  border-radius: 20px;
  display: block;
  height: 12px;
  margin: 5px 7px;
  opacity: 0.5;
  width: 12px;
}
.owl-dots button.owl-dot span:hover {
  background: none repeat scroll 0 0 #74bf4b;
  opacity: 1;
}
.owl-dots button.owl-dot.active span {
  background: none repeat scroll 0 0 #00bceb;
  opacity: 1;
}
.owl-dots button.owl-dot:nth-child(n+6) {
  display: none !important;
}
.owl-carousel.long .owl-dots .owl-dot {
  display: none;
}
.owl-carousel.long .owl-dots .owl-dot.active {
  display: block;
}

/* FullPage.js */
.fp-controlArrow.fp-next {
  right: 20px;
  border-width: 12.5px 0 12.5px 12.5px;
  border-color: transparent transparent transparent grey;
}
@media (max-width: 992px) {
  .fp-controlArrow.fp-next {
    right: 10px;
    border-width: 10px 0 10px 10px;
  }
}

.fp-controlArrow.fp-prev {
  left: 20px;
  border-width: 12.5px 12.5px 12.5px 0;
  border-color: transparent grey transparent transparent;
}
@media (max-width: 992px) {
  .fp-controlArrow.fp-prev {
    left: 10px;
    border-width: 10px 10px 10px 0;
  }
}

.scroll {
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  cursor: pointer;
  z-index: 100;
  width: 100%;
  text-shadow: 0 0 5px #1a1a1a;
  color: white;
}
.scroll.black {
  color: black;
  text-shadow: none;
}
.scroll:hover {
  opacity: 0.6;
}
.scroll p {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}
.scroll i {
  font-size: 20px;
}
@media (max-width: 600px) {
  .scroll p {
    font-size: 10px;
    margin: 0;
    text-transform: uppercase;
  }
  .scroll i {
    font-size: 15px;
  }
}

.modal-backdrop {
  background-color: #0051af;
}

.modal-content {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(26, 26, 26, 0.1450980392);
          box-shadow: 0 0 20px rgba(26, 26, 26, 0.1450980392);
  border: 1px solid white;
  background: white;
}
.modal-content .modal-header {
  padding: 20px 30px;
  border-bottom: none;
}
@media (max-width: 450px) {
  .modal-content .modal-header {
    padding: 10px 30px 5px 30px;
  }
}
@media (max-width: 350px) {
  .modal-content .modal-header {
    padding: 10px 20px 5px 20px;
  }
}
.modal-content .modal-header h5.modal-title {
  color: #0051af;
}
@media (max-width: 450px) {
  .modal-content .modal-header h5.modal-title {
    font-size: 1.3em;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 350px) {
  .modal-content .modal-header h5.modal-title {
    font-size: 1em;
    margin: 0 0 5px 0;
  }
}
.modal-content .modal-body {
  padding: 20px 30px;
}
@media (max-width: 450px) {
  .modal-content .modal-body {
    padding: 0 10px;
  }
}
@media (max-width: 350px) {
  .modal-content .modal-body {
    padding: 0 5px;
  }
}
.modal-content .modal-footer {
  padding: 0 15px 20px;
  border-top: none;
}
.modal-content .modal-footer > * {
  margin: 0;
}
@media (max-width: 450px) {
  .modal-content .modal-footer {
    padding: 0 15px 10px;
  }
}
@media (max-width: 350px) {
  .modal-content .modal-footer {
    padding: 0 10px 10px;
  }
}
.modal-content a {
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: unset;
  text-decoration: underline;
  font-weight: unset;
}
.modal-content label {
  font-size: 1em;
}
@media (max-width: 450px) {
  .modal-content label {
    font-size: 0.8em;
  }
}
@media (max-width: 350px) {
  .modal-content label {
    font-size: 0.7em;
  }
}

#addIdeaModal form textarea.form-control,
#addIdeaModal form input.form-control {
  background: white;
  border: 1px solid #e2e2e2;
  color: #0d274d;
  font-family: "CiscoSans, Fallback, sans-serif";
  outline: none;
  font-size: 1em;
}
@media (max-width: 450px) {
  #addIdeaModal form textarea.form-control,
#addIdeaModal form input.form-control {
    font-size: 0.9em;
  }
}
@media (max-width: 350px) {
  #addIdeaModal form textarea.form-control,
#addIdeaModal form input.form-control {
    font-size: 0.8em;
  }
}
#addIdeaModal form textarea.form-control::-webkit-input-placeholder, #addIdeaModal form input.form-control::-webkit-input-placeholder {
  color: #414344;
  font-size: 1em;
}
#addIdeaModal form textarea.form-control::-moz-placeholder, #addIdeaModal form input.form-control::-moz-placeholder {
  color: #414344;
  font-size: 1em;
}
#addIdeaModal form textarea.form-control:-ms-input-placeholder, #addIdeaModal form input.form-control:-ms-input-placeholder {
  color: #414344;
  font-size: 1em;
}
#addIdeaModal form textarea.form-control::-ms-input-placeholder, #addIdeaModal form input.form-control::-ms-input-placeholder {
  color: #414344;
  font-size: 1em;
}
#addIdeaModal form textarea.form-control::placeholder,
#addIdeaModal form input.form-control::placeholder {
  color: #414344;
  font-size: 1em;
}
@media (max-width: 450px) {
  #addIdeaModal form textarea.form-control::-webkit-input-placeholder, #addIdeaModal form input.form-control::-webkit-input-placeholder {
    font-size: 0.9em;
  }
  #addIdeaModal form textarea.form-control::-moz-placeholder, #addIdeaModal form input.form-control::-moz-placeholder {
    font-size: 0.9em;
  }
  #addIdeaModal form textarea.form-control:-ms-input-placeholder, #addIdeaModal form input.form-control:-ms-input-placeholder {
    font-size: 0.9em;
  }
  #addIdeaModal form textarea.form-control::-ms-input-placeholder, #addIdeaModal form input.form-control::-ms-input-placeholder {
    font-size: 0.9em;
  }
  #addIdeaModal form textarea.form-control::placeholder,
#addIdeaModal form input.form-control::placeholder {
    font-size: 0.9em;
  }
}
@media (max-width: 350px) {
  #addIdeaModal form textarea.form-control::-webkit-input-placeholder, #addIdeaModal form input.form-control::-webkit-input-placeholder {
    font-size: 0.75em;
  }
  #addIdeaModal form textarea.form-control::-moz-placeholder, #addIdeaModal form input.form-control::-moz-placeholder {
    font-size: 0.75em;
  }
  #addIdeaModal form textarea.form-control:-ms-input-placeholder, #addIdeaModal form input.form-control:-ms-input-placeholder {
    font-size: 0.75em;
  }
  #addIdeaModal form textarea.form-control::-ms-input-placeholder, #addIdeaModal form input.form-control::-ms-input-placeholder {
    font-size: 0.75em;
  }
  #addIdeaModal form textarea.form-control::placeholder,
#addIdeaModal form input.form-control::placeholder {
    font-size: 0.75em;
  }
}
@media (max-width: 450px) {
  #addIdeaModal form .form-group {
    margin-bottom: 0.6em;
  }
}
#addIdeaModal form .form-group:last-child {
  margin-bottom: 0;
}
#addIdeaModal span.help-block {
  color: #e3241b;
  font-weight: bold;
  display: none;
}

#showIdeaModal .modal-body .ideaMeta {
  text-align: right;
  font-style: italic;
}
#showIdeaModal .modal-footer span.ideaElement::after {
  content: ", ";
}
#showIdeaModal .modal-footer span.ideaElement:last-child::after, #showIdeaModal .modal-footer span.ideaElement:empty::after {
  content: "";
}

#addIdeaSuccessModal .fa-check-circle {
  font-size: 13em;
  color: #74bf4b;
}

#videoModal .modal-content {
  background: #111;
  border: 1px solid #000;
}
#videoModal #cisco_video {
  max-width: 100%;
  position: relative;
}
#videoModal #cisco_video > div {
  padding-top: 56.25%;
}
#videoModal #cisco_video > div > video-js {
  top: 0;
  position: absolute;
  /* max-height: 56.25%; */
}

header {
  text-align: center;
}
@media (max-width: 600px) {
  header a.btn-fact.blue,
header button.btn-fact.blue {
    font-size: 10px;
    margin: 0 0 10px;
  }
}
header .tilte {
  z-index: 1;
  color: white;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-shadow: 0 0 10px rgba(26, 26, 26, 0.0156862745);
}
header .tilte h1 {
  font-size: 3.5em;
  margin: 0 0 20px 0;
}
header .tilte p {
  font-size: 1.2em;
}
@media (max-height: 800px) {
  header .tilte h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
  }
}
@media (max-height: 650px) {
  header .tilte p {
    font-size: 1em;
  }
}
@media (max-width: 992px) {
  header .tilte h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  header .tilte h1 {
    font-size: 2.5em;
  }
  header .tilte p {
    font-size: 1em;
  }
}
@media (max-width: 400px) {
  header .tilte h1 {
    font-size: 1.8em;
  }
  header .tilte p {
    font-size: 0.9em;
  }
}

.bg-grey {
  background-color: white;
}
body.fp-viewing-home-0 .bg-grey {
  background-color: #e2e2e2;
}

#video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
#video-bg video {
  /* background: $Blue3; */
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#video-bg .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

section.facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
  position: relative;
}
section.facts .circle-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  section.facts .circle-img {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media (max-width: 450px) {
  section.facts .circle-img {
    left: 30px;
  }
}
section.facts .circle-img img.info {
  width: 45%;
  z-index: 2;
  position: relative;
  border-radius: 50%;
  padding: 0;
}
@media (max-height: 650px) {
  section.facts .circle-img img.info {
    width: 35%;
  }
}
@media (max-width: 992px) {
  section.facts .circle-img img.info {
    width: 35%;
    margin: 0 0 35px 10px;
  }
}
@media (max-width: 450px) {
  section.facts .circle-img img.info {
    width: 35%;
    margin: 0 0 15px 0;
  }
}
section.facts .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.facts .pattern img {
  width: 85%;
  max-width: 500px;
  margin: 0 0 0 20px;
}
@media (max-height: 650px) {
  section.facts .pattern img {
    width: 70%;
    margin: 0 0 0 10px;
  }
}
@media (max-width: 992px) {
  section.facts .pattern img {
    display: none;
  }
}
section.facts .fact-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.facts .fact-text .heading__topic {
  color: #00bceb;
}
section.facts .fact-text h1 {
  color: #0051af;
  font-size: 2.5em;
}
@media (max-height: 800px) {
  section.facts .fact-text h1 {
    font-size: 2em;
  }
}
@media (max-height: 650px) {
  section.facts .fact-text h1 {
    font-size: 1.6em;
  }
}
section.facts .fact-text p.source {
  margin-top: 1em;
  font-size: 0.8em;
  font-weight: 300;
  font-style: italic;
  text-align: right;
  color: #414344;
}
@media (max-height: 800px) {
  section.facts .fact-text p.source {
    margin-top: 0.5em;
    font-size: 0.7em;
  }
}
@media (max-height: 650px) {
  section.facts .fact-text p.source {
    margin-top: 0.25em;
    font-size: 0.6em;
  }
}
@media (max-width: 992px) {
  section.facts .fact-text {
    padding: 0 30px 0 30px;
  }
  section.facts .fact-text h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 450px) {
  section.facts .fact-text {
    padding: 0 40px 0 40px;
  }
  section.facts .fact-text h1 {
    font-size: 1.5em;
  }
  section.facts .fact-text p {
    font-size: 0.8em;
  }
  section.facts .fact-text p.heading__section, section.facts .fact-text p.source {
    font-size: 0.6em;
  }
}
@media (max-width: 400px) {
  section.facts .fact-text {
    padding: 0 40px 0 40px;
  }
  section.facts .fact-text h1 {
    font-size: 1.3em;
  }
  section.facts .fact-text p {
    font-size: 0.75em;
  }
  section.facts .fact-text p.heading__section, section.facts .fact-text p.source {
    font-size: 0.5em;
  }
}
@media (max-width: 350px) {
  section.facts .fact-text {
    padding: 0 30px 0 30px;
  }
  section.facts .fact-text h1 {
    font-size: 1.1em;
  }
  section.facts .fact-text p {
    font-size: 0.7em;
  }
  section.facts .fact-text p.heading__section, section.facts .fact-text p.source {
    font-size: 0.4em;
  }
}

.bg-pattern {
  position: absolute;
  z-index: 0;
  text-align: center;
  right: 0;
  width: 600px;
}
@media (max-width: 600px) {
  .bg-pattern {
    opacity: 0.25;
  }
}

.bg-pattern-2 {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.bg-pattern-2 img {
  width: 1100px;
}
@media (max-height: 800px) {
  .bg-pattern-2 img {
    width: 900px;
  }
}
@media (max-height: 650px) {
  .bg-pattern-2 img {
    width: 700px;
  }
}
@media (max-width: 996px) {
  .bg-pattern-2 img {
    width: 900px;
  }
}
@media (max-width: 450px) {
  .bg-pattern-2 img {
    width: 700px;
  }
}
@media (max-width: 350px) {
  .bg-pattern-2 img {
    width: 600px;
  }
}

.ideas {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.ideas .btn-fact {
  margin: 0 0 20px 0;
}
@media (max-height: 800px) {
  .ideas .btn-fact {
    margin: 0 0 15px 0;
  }
}
@media (max-height: 650px) {
  .ideas .btn-fact {
    margin: 0 0 10px 0;
  }
}
.ideas p.tag {
  font-size: 1em;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  font-weight: normal;
  color: #0051af;
}
@media (max-height: 800px) {
  .ideas p.tag {
    font-size: 0.9em;
  }
}
@media (max-height: 650px) {
  .ideas p.tag {
    font-size: 0.7em;
  }
}
@media (max-width: 450px) {
  .ideas p.tag {
    font-size: 0.75em;
  }
}
@media (max-width: 350px) {
  .ideas p.tag {
    font-size: 0.6em;
  }
}
.ideas h1 {
  font-size: 1.5em;
  margin: 0 0 20px 0;
  color: #414344;
}
@media (max-height: 800px) {
  .ideas h1 {
    font-size: 1.2em;
    margin: 0 0 15px 0;
  }
}
@media (max-height: 650px) {
  .ideas h1 {
    font-size: 1.1em;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .ideas h1 {
    font-size: 1em;
  }
}
@media (max-width: 450px) {
  .ideas h1 {
    font-size: 1em;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 350px) {
  .ideas h1 {
    font-size: 0.8em;
    margin: 0 0 7.5px 0;
  }
}
.ideas .answers p {
  font-size: 10px;
}

.answers .owl-nav .owl-prev i {
  padding: 5px 10px;
  border-radius: 5px;
  background: white;
}
.answers .owl-nav .owl-next i {
  padding: 5px 10px;
  border-radius: 5px;
  background: white;
}
.answers .owl-carousel {
  z-index: 10;
  position: relative;
  overflow: visible;
}
.answers .answer {
  padding: 20px 15px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 10px;
  cursor: pointer;
  background: white;
  border: 1px solid rgb(231, 231, 231);
}
@media (max-width: 450px) {
  .answers .answer {
    padding: 10px 15px;
  }
}
.answers .answer:hover {
  background: #0d274d;
  color: white !important;
}
.answers .answer:hover p span {
  color: #00bceb;
}
.answers .answer:hover hr {
  border-top: 1px solid white;
}
.answers .answer p {
  font-size: 15px;
}
@media (max-height: 650px) {
  .answers .answer p {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .answers .answer p {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .answers .answer p {
    font-size: 12px;
  }
}
.answers .answer .fa-heart {
  display: inline;
}
.answers .answer .fa-heart.fas {
  display: none;
  color: #e3241b;
}
.answers .answer.votedFor .fa-heart.fas {
  display: inline;
}
.answers .answer.votedFor .fa-heart.far {
  display: none;
}
.answers .owl-dot {
  display: none;
}
.answers .owl-dot.active {
  display: unset;
}

.six-line {
  min-height: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines to show */
  line-clamp: 6;
  -webkit-box-orient: vertical;
}
@media (max-height: 800px) {
  .six-line {
    min-height: 80px;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
  }
}
@media (max-height: 650px) {
  .six-line {
    min-height: 60px;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
  }
}
@media (max-width: 450px) {
  .six-line {
    min-height: 80px;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
  }
}
@media (max-width: 350px) {
  .six-line {
    min-height: 60px;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
  }
}

.section.pillar .solutions,
.section.pillar .discover {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
      .owl-dot {
              display: none;
              &.active {
                      display: unset;
              }
      }
  */
}
.section.pillar .solutions .owl-nav .owl-prev i,
.section.pillar .solutions .owl-nav .owl-next i,
.section.pillar .discover .owl-nav .owl-prev i,
.section.pillar .discover .owl-nav .owl-next i {
  padding: 5px 10px;
  border-radius: 5px;
  background: white;
}
.section.pillar .solutions .owl-carousel,
.section.pillar .discover .owl-carousel {
  z-index: 10;
  position: relative;
  overflow: visible;
}
.section.pillar .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
  position: relative;
}
.section.pillar .hero .center-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .section.pillar .hero .center-img {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media (max-width: 450px) {
  .section.pillar .hero .center-img {
    left: 30px;
  }
}
.section.pillar .hero .center-img video.info.hero {
  width: 100%;
  z-index: 2;
  position: relative;
  padding: 0;
}
@media (max-height: 800px) {
  .section.pillar .hero .center-img video.info.hero {
    width: 80%;
  }
}
@media (max-height: 650px) {
  .section.pillar .hero .center-img video.info.hero {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .section.pillar .hero .center-img video.info.hero {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .section.pillar .hero .center-img video.info.hero {
    width: 70%;
  }
}
@media (max-width: 350px) {
  .section.pillar .hero .center-img video.info.hero {
    width: 60%;
  }
}
.section.pillar .hero .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section.pillar .hero .pattern img {
  width: 85%;
  max-width: 500px;
  margin: 0 0 0 20px;
}
@media (max-width: 992px) {
  .section.pillar .hero .pattern img {
    display: none;
  }
}
.section.pillar .hero .fact-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section.pillar .hero .fact-text .heading__topic {
  color: #00bceb;
}
.section.pillar .hero .fact-text h1 {
  color: #0051af;
  font-size: 3em;
}
.section.pillar .hero .fact-text p {
  margin-top: 20px;
}
.section.pillar .hero .fact-text .text-left {
  margin-top: 30px;
}
@media (max-height: 800px) {
  .section.pillar .hero .fact-text h1 {
    font-size: 2.2em;
  }
}
@media (max-height: 650px) {
  .section.pillar .hero .fact-text p {
    margin-top: 10px;
  }
  .section.pillar .hero .fact-text .text-left {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .section.pillar .hero .fact-text {
    padding: 0 30px 0 30px;
  }
  .section.pillar .hero .fact-text h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 450px) {
  .section.pillar .hero .fact-text {
    padding: 0 40px 0 40px;
  }
  .section.pillar .hero .fact-text h1 {
    font-size: 1.5em;
  }
  .section.pillar .hero .fact-text p {
    font-size: 0.8em;
  }
  .section.pillar .hero .fact-text p.heading__section, .section.pillar .hero .fact-text p.source {
    font-size: 0.6em;
  }
}
@media (max-width: 400px) {
  .section.pillar .hero .fact-text {
    padding: 0 40px 0 40px;
  }
  .section.pillar .hero .fact-text h1 {
    font-size: 1.3em;
  }
  .section.pillar .hero .fact-text p {
    font-size: 0.75em;
  }
  .section.pillar .hero .fact-text p.heading__section, .section.pillar .hero .fact-text p.source {
    font-size: 0.5em;
  }
}
@media (max-width: 350px) {
  .section.pillar .hero .fact-text {
    padding: 0 30px 0 30px;
  }
  .section.pillar .hero .fact-text h1 {
    font-size: 1.1em;
  }
  .section.pillar .hero .fact-text p {
    font-size: 0.7em;
  }
  .section.pillar .hero .fact-text p.heading__section, .section.pillar .hero .fact-text p.source {
    font-size: 0.4em;
  }
}
.section.pillar .solutions .solution-card {
  padding: 0 20px;
  width: 100%;
}
.section.pillar .solutions .solution-card h2 {
  color: #0051af;
  font-size: 1.7em;
}
@media (max-height: 800px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.5em;
  }
}
@media (max-height: 650px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.4em;
  }
}
@media (max-width: 992px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 600px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.4em;
  }
}
@media (max-width: 450px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.3em;
  }
}
@media (max-width: 350px) {
  .section.pillar .solutions .solution-card h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 450px) {
  .section.pillar .solutions .solution-card p {
    font-size: 0.9em;
  }
}
@media (max-width: 350px) {
  .section.pillar .solutions .solution-card p {
    font-size: 0.8em;
  }
}
.section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
  width: 100px;
  margin: 0 0 30px 0;
}
@media (max-height: 800px) {
  .section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
    width: 90px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 600px) {
  .section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
    width: 90px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 450px) {
  .section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
    width: 120px;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 380px) {
  .section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
    width: 100px;
  }
}
@media (max-width: 350px) {
  .section.pillar .solutions .solution-card img.icon,
.section.pillar .solutions .solution-card object.icon {
    width: 75px;
  }
}
.section.pillar .discover .discover-card {
  padding: 0 20px;
  width: 100%;
}
.section.pillar .discover .discover-card h2 {
  color: #0d274d;
  font-size: 1.4em;
  margin: 0 0 10px 0;
}
@media (max-height: 800px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.3em;
    margin: 0 0 5px 0;
  }
}
@media (max-height: 650px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.1em;
    margin: 0 0 5px 0;
  }
}
@media (max-width: 992px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 600px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.4em;
    margin: 0 0 10px;
  }
}
@media (max-width: 450px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.3em;
    margin: 0 0 5px;
  }
}
@media (max-width: 350px) {
  .section.pillar .discover .discover-card h2 {
    font-size: 1.2em;
  }
}
.section.pillar .discover .discover-card p.blue {
  color: #00bceb;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
@media (max-height: 800px) {
  .section.pillar .discover .discover-card p.blue {
    margin: 0 0 5px 0;
  }
}
@media (max-width: 450px) {
  .section.pillar .discover .discover-card p.blue {
    font-size: 0.8em;
    margin: 0 0 5px 0;
  }
}
@media (max-width: 350px) {
  .section.pillar .discover .discover-card p.blue {
    font-size: 0.6em;
  }
}
@media (max-width: 450px) {
  .section.pillar .discover .discover-card p {
    font-size: 0.9em;
  }
}
@media (max-width: 350px) {
  .section.pillar .discover .discover-card p {
    font-size: 0.8em;
  }
}
.section.pillar .discover .discover-card img.thumb {
  width: 275px;
  margin: 0 0 20px 0;
  border-radius: 5px;
}
@media (max-height: 800px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 225px;
    margin: 0 0 10px 0;
  }
}
@media (max-height: 650px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 150px;
    margin: 0 0 5px 0;
  }
}
@media (max-width: 600px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 250px;
  }
}
@media (max-width: 450px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 225px;
  }
}
@media (max-width: 380px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 210px;
  }
}
@media (max-width: 350px) {
  .section.pillar .discover .discover-card img.thumb {
    width: 200px;
    margin: 0 0 10px 0;
  }
}
.section.pillar .discover .discover-card .btn-discover {
  display: block;
  margin: 20px 0;
}
@media (max-height: 650px) {
  .section.pillar .discover .discover-card .btn-discover {
    margin: 10px 0;
  }
}
.section.pillar .discover .discover-card a img {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.section.pillar .discover .discover-card a img:hover {
  opacity: 0.8;
}
.section.pillar .bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  /*
          &.left {
              .circle {
                  width: 90px;
                  bottom: 20px;
                  left: 200px-50px;
                  animation: animation3 10s ease-in-out infinite;
              }
              .square-1 {
                  width: 50px;
                  bottom: 120px;
                  left: 190px-50px;
                  animation: animation4 10s ease-in-out infinite;
              }
              .square-2 {
                  width: 125px;
                  bottom: 20px;
                  left: 20px-50px;
                  animation: animation1 10s ease-in-out infinite;
              }
              .traingle {
                  width: 100px;
                  bottom: 80px;
                  left: 80px-50px;
                  animation: animation2 10s ease-in-out infinite;
              }
          }
          &.right {
              .circle {
                  width: 90px;
                  top: 20px+50px;
                  right: 200px-50px;
                  animation: animation3 10s ease-in-out infinite;
              }
              .square-1 {
                  width: 50px;
                  top: 120px+50px;
                  right: 190px-50px;
                  animation: animation4 10s ease-in-out infinite;
              }
              .square-2 {
                  width: 125px;
                  top: 20px+50px;
                  right: 20px-50px;
                  animation: animation1 10s ease-in-out infinite;
              }
              .traingle {
                  width: 100px;
                  top: 80px+50px;
                  right: 80px-50px;
                  animation: animation2 10s ease-in-out infinite;
              }
          }
  */
}
.section.pillar .bg-shapes img {
  position: absolute;
  mix-blend-mode: multiply;
}
@media (max-height: 800px) {
  .section.pillar .bg-shapes img {
    display: none !important;
  }
}
.section.pillar .section-bar {
  position: absolute;
  width: 100%;
  top: 120px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 30;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
@media (max-height: 800px) {
  .section.pillar .section-bar {
    top: 80px;
  }
}
@media (max-height: 650px) {
  .section.pillar .section-bar {
    top: 70px;
  }
}
@media (max-width: 992px) {
  .section.pillar .section-bar {
    top: 100px;
  }
}
@media (max-width: 450px) {
  .section.pillar .section-bar {
    top: 80px;
  }
}
@media (max-width: 380px) {
  .section.pillar .section-bar {
    top: 70px;
  }
}
@media (max-width: 350px) {
  .section.pillar .section-bar {
    top: 65px;
  }
}
.section.pillar .section-bar .btn-group,
.section.pillar .section-bar .btn-group-vertical {
  border: 1px solid #e2e2e2;
  border-radius: 20px !important;
  background: white;
}
.section.pillar .section-bar .btn {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 20px !important;
  width: 150px;
  color: #0d274d;
  outline: none;
}
.section.pillar .section-bar .btn:focus, .section.pillar .section-bar .btn.focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-height: 800px) {
  .section.pillar .section-bar .btn {
    font-size: 0.8em;
    width: 120px;
  }
}
@media (max-height: 650px) {
  .section.pillar .section-bar .btn {
    font-size: 0.7em;
    width: 105px;
  }
}
@media (max-width: 992px) {
  .section.pillar .section-bar .btn {
    font-size: 0.9em;
    width: 125px;
  }
}
@media (max-width: 450px) {
  .section.pillar .section-bar .btn {
    font-size: 0.8em;
    width: 117.5px;
  }
}
@media (max-width: 380px) {
  .section.pillar .section-bar .btn {
    font-size: 0.75em;
    width: 110px;
  }
}
@media (max-width: 350px) {
  .section.pillar .section-bar .btn {
    font-size: 0.65em;
    width: 95px;
  }
}
.section.pillar .section-bar .btn:hover {
  background-color: #e2e2e2;
}
.section.pillar .section-bar .btn.active {
  background-color: #0051af;
  color: white;
}
.section.pillar:nth-child(even) {
  background: red;
}
.section.pillar:nth-child(even) .bg-shapes .circle {
  width: 90px;
  bottom: 20px;
  left: 150px;
  -webkit-animation: animation3 10s ease-in-out infinite;
          animation: animation3 10s ease-in-out infinite;
}
.section.pillar:nth-child(even) .bg-shapes .square-1 {
  width: 50px;
  bottom: 120px;
  left: 140px;
  -webkit-animation: animation4 10s ease-in-out infinite;
          animation: animation4 10s ease-in-out infinite;
}
.section.pillar:nth-child(even) .bg-shapes .square-2 {
  width: 125px;
  bottom: 20px;
  left: -30px;
  -webkit-animation: animation1 10s ease-in-out infinite;
          animation: animation1 10s ease-in-out infinite;
}
.section.pillar:nth-child(even) .bg-shapes .traingle {
  width: 100px;
  bottom: 80px;
  left: 30px;
  -webkit-animation: animation2 10s ease-in-out infinite;
          animation: animation2 10s ease-in-out infinite;
}
@media (min-width: 992px) {
  .section.pillar:nth-child(even) .hero__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section.pillar:nth-child(even) .hero__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.section.pillar:nth-child(odd) {
  background: blue;
}
.section.pillar:nth-child(odd) .bg-shapes .circle {
  width: 90px;
  top: 70px;
  right: 150px;
  -webkit-animation: animation3 10s ease-in-out infinite;
          animation: animation3 10s ease-in-out infinite;
}
.section.pillar:nth-child(odd) .bg-shapes .square-1 {
  width: 50px;
  top: 170px;
  right: 140px;
  -webkit-animation: animation4 10s ease-in-out infinite;
          animation: animation4 10s ease-in-out infinite;
}
.section.pillar:nth-child(odd) .bg-shapes .square-2 {
  width: 125px;
  top: 70px;
  right: -30px;
  -webkit-animation: animation1 10s ease-in-out infinite;
          animation: animation1 10s ease-in-out infinite;
}
.section.pillar:nth-child(odd) .bg-shapes .traingle {
  width: 100px;
  top: 130px;
  right: 30px;
  -webkit-animation: animation2 10s ease-in-out infinite;
          animation: animation2 10s ease-in-out infinite;
}
/*# sourceMappingURL=main.css.map */