.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.slideUp {
  overflow: hidden;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@-webkit-keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.slideDown {
  overflow: hidden;
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

img,
video,
audio {
  max-width: 100%;
}

img,
video {
  height: auto;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  font-size: 110%;
  position: relative;
  margin-right: 3px;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

body {
  font-family: "Poppins", Helvetica, sans-serif;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

a {
  color: #255bbd;
}

a:hover {
  color: #f34248;
}

h1.title, h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  color: #000;
  margin-bottom: 12px;
}

h1.title {
  font-size: 60px;
  line-height: 64px;
}

h1,
.h1 {
  font-size: 48px;
  line-height: 52px;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 40px;
}

h3,
.h3 {
  font-size: 24px;
  line-height: 32px;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 24px;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
dl + h2,
dl + h3,
dl + h4,
dl + h5,
dl + h6,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
hr + h2,
hr + h3,
hr + h4,
hr + h5,
hr + h6,
pre + h2,
pre + h3,
pre + h4,
pre + h5,
pre + h6,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
form + h2,
form + h3,
form + h4,
form + h5,
form + h6,
figure + h2,
figure + h3,
figure + h4,
figure + h5,
figure + h6 {
  margin-top: 32px;
}

.subheading {
  margin-top: -8px;
  margin-bottom: 8px;
  font-weight: 300;
}

ul, ol,
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0 0 0 24px;
}

ol ol li {
  list-style-type: lower-alpha;
}

ol ol ol li {
  list-style-type: lower-roman;
}

nav ul, nav ol {
  margin: 0;
  list-style: none;
}

dl dt {
  font-weight: 700;
}

dd {
  margin-left: 24px;
}

p, blockquote, hr, pre, ol, ul, dl, table, fieldset, figure, address, form {
  margin-bottom: 16px;
}

hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

blockquote {
  padding-left: 24px;
  border-left: 2px solid rgba(0, 0, 0, 0.125);
  font-style: italic;
  color: rgba(0, 0, 0, 0.65);
}

pre, code, samp, var, kbd {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 14px;
}

pre {
  color: rgba(0, 0, 0, 0.85);
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
  line-height: 20px;
  overflow: none;
  white-space: pre-wrap;
}

.small, time, cite, small, figcaption {
  font-size: 12px;
  line-height: 16px;
}

cite {
  color: rgba(0, 0, 0, 0.5);
}

figcaption {
  font-style: italic;
  padding-top: 4px;
  padding-bottom: 4px;
}

figure figcaption {
  position: relative;
  top: -4px;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
}

mark, code, samp, kbd {
  padding: 4px 8px 2px 8px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.85);
}

pre code {
  font-size: 100%;
  white-space: pre;
  padding: 0;
  background: none;
  line-height: 24px;
}

mark {
  background-color: #fed443;
}

code {
  background: #f4f4f4;
}

var {
  color: rgba(0, 0, 0, 0.6);
  font-style: normal;
}

strong, b {
  line-height: 1;
}

samp {
  color: #fff;
  background: #5a89df;
}

kbd {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

sub,
sup {
  font-size: x-small;
  line-height: 0;
  margin-left: 4px;
  position: relative;
}

sup {
  top: -4px;
}

sub {
  bottom: -2px;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.centered {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.row.centered .col {
  padding-left: 1.06383%;
  padding-right: 1.06383%;
}

.row.right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.row.bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.row.around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.row.between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.row.equal .col {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.row.equal .col > div {
  -ms-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.row.splice {
  margin-left: 0;
}

.row.splice .col {
  padding-left: 0;
}

.col {
  -ms-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col.first {
  order: -1;
}

.col.last {
  order: 1;
}

@media (max-width: 768px) {
  .col.first-on-small {
    order: -1;
  }
  .col.last-on-small {
    order: 1;
  }
}

.pull-right {
  margin-left: auto;
}

.col-1 {
  flex-basis: 8.33333%;
  max-width: 8.33333%;
  width: 8.33333%;
}

.col-2 {
  flex-basis: 16.66667%;
  max-width: 16.66667%;
  width: 16.66667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
  width: 25%;
}

.col-4 {
  flex-basis: 33.33333%;
  max-width: 33.33333%;
  width: 33.33333%;
}

.col-5 {
  flex-basis: 41.66667%;
  max-width: 41.66667%;
  width: 41.66667%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
  width: 50%;
}

.col-7 {
  flex-basis: 58.33333%;
  max-width: 58.33333%;
  width: 58.33333%;
}

.col-8 {
  flex-basis: 66.66667%;
  max-width: 66.66667%;
  width: 66.66667%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
  width: 75%;
}

.col-10 {
  flex-basis: 83.33333%;
  max-width: 83.33333%;
  width: 83.33333%;
}

.col-11 {
  flex-basis: 91.66667%;
  max-width: 91.66667%;
  width: 91.66667%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.row-layout {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.col-fluid {
  -ms-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 100%;
}

@media (max-width: 768px) {
  .row-layout {
    display: block;
  }
  .col-fixed {
    -ms-flex: 1 !important;
    -webkit-flex: 1 !important;
    flex: 1 !important;
  }
  .row-layout > .col-fixed {
    order: 1;
  }
  .row-layout > .col-fluid {
    order: 2;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
  }
  .col,
  [class^="col-"],
  [class*=" col-"] {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
  .col {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
  }
  .pull-right,
  [class^="offset-"],
  [class*=" offset-"] {
    margin-left: 0;
  }
}

.label {
  font-size: 10px;
  font-weight: normal;
  display: inline;
  line-height: 1;
  top: -1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  color: #000;
  background: #f4f4f4;
  padding: 2px 8px;
  letter-spacing: .01em;
}

.label a,
.label a:hover {
  color: #000;
  text-decoration: none;
}

.label.primary {
  background: #3c74d9;
}

.label.primary,
.label.primary a {
  color: #fff;
}

.label.primary.outline {
  border-color: #3c74d9;
}

.label.primary.outline,
.label.primary.outline a {
  color: #3c74d9;
}

.label.primary.tag {
  background: none;
}

.label.primary.tag,
.label.primary.tag a {
  color: #3c74d9;
}

.label.error {
  background: #f34248;
}

.label.error,
.label.error a {
  color: #fff;
}

.label.error.outline {
  border-color: #f34248;
}

.label.error.outline,
.label.error.outline a {
  color: #f34248;
}

.label.error.tag {
  background: none;
}

.label.error.tag,
.label.error.tag a {
  color: #f34248;
}

.label.success {
  background: #60ae4d;
}

.label.success,
.label.success a {
  color: #fff;
}

.label.success.outline {
  border-color: #60ae4d;
}

.label.success.outline,
.label.success.outline a {
  color: #60ae4d;
}

.label.success.tag {
  background: none;
}

.label.success.tag,
.label.success.tag a {
  color: #60ae4d;
}

.label.warning {
  background: #fed443;
}

.label.warning,
.label.warning a {
  color: #000;
}

.label.warning.outline {
  border-color: #fed443;
}

.label.warning.outline,
.label.warning.outline a {
  color: #fed443;
}

.label.warning.tag {
  background: none;
}

.label.warning.tag,
.label.warning.tag a {
  color: #fed443;
}

.label.inverted {
  background: #fff;
}

.label.inverted,
.label.inverted a {
  color: #000;
}

.label.inverted.outline {
  border-color: #fff;
}

.label.inverted.outline,
.label.inverted.outline a {
  color: #fff;
}

.label.inverted.tag {
  background: none;
}

.label.inverted.tag,
.label.inverted.tag a {
  color: #fff;
}

.label.outline {
  background: none;
  padding: 1px 7px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.label.outline,
.label.outline a {
  color: rgba(0, 0, 0, 0.65);
}

.badge {
  padding: 2px 6px;
  border-radius: 24px;
}

.badge.outline {
  padding: 1px 5px;
}

.label.tag {
  padding: 0;
  background: none;
  font-weight: bold;
  letter-spacing: .02em;
}

.label.tag.primary,
.label.tag.primary a {
  color: #3c74d9;
}

.label.tag.error,
.label.tag.error a {
  color: #f34248;
}

.label.tag.success,
.label.tag.success a {
  color: #60ae4d;
}

.label.tag.warning,
.label.tag.warning a {
  color: #fed443;
}

.label.tag.inverted,
.label.tag.inverted a {
  color: #fff;
}

.button:hover .badge {
  opacity: .6;
}

h6 .label {
  top: -3px;
}

.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 200;
}

.modal {
  position: relative;
  margin: auto;
  margin-top: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #000;
}

@media (max-width: 768px) {
  .modal input[type="text"],
  .modal input[type="password"],
  .modal input[type="email"],
  .modal input[type="url"],
  .modal textarea {
    font-size: 16px;
  }
}

.modal-header {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header:empty {
  display: none;
}

.modal-body {
  padding: 36px 56px;
}

.modal .close {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px;
  position: absolute;
  top: 18px;
  right: 16px;
  opacity: .3;
}

.modal .close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .modal-header,
  .modal-body {
    padding: 24px;
  }
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.end {
  margin-bottom: 0 !important;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
}

@media (max-width: 768px) {
  .float-right {
    float: none;
  }
}

.float-left {
  float: left;
}

@media (max-width: 768px) {
  .float-left {
    float: none;
  }
}

.text-right {
  text-align: right;
}

.text-center,
.text-centered {
  text-align: center;
}

.hide {
  display: none;
}

@media (max-width: 768px) {
  .hide-on-small {
    display: none !important;
  }
}

.show-on-small {
  display: none !important;
}

@media (max-width: 768px) {
  .show-on-small {
    display: block !important;
  }
}

@media print {
  .hide-on-print {
    display: none !important;
  }
  .show-on-print {
    display: block !important;
  }
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.muted {
  color: rgba(0, 0, 0, 0.5) !important;
}

.soft-muted {
  color: rgba(0, 0, 0, 0.7) !important;
}

a.muted:hover,
a.soft-muted:hover {
  color: #000 !important;
}

.error {
  color: #f34248;
}

.success {
  color: #60ae4d;
}

.upper {
  text-transform: uppercase;
  letter-spacing: .08em;
}

.normal {
  font-weight: normal !important;
}

.light {
  font-weight: 300 !important;
}

.italic {
  font-style: italic !important;
}

.bold {
  font-weight: bold !important;
}

.highlight {
  background-color: rgba(60, 116, 217, 0.075);
}

.round {
  border-radius: 56px;
}

input.round {
  border-radius: 24px;
}

.nowrap,
.nowrap td {
  white-space: nowrap;
}

.req {
  font-weight: bold;
  color: #f34248;
  font-size: 1.1em;
  text-transform: none;
}

.close {
  font-weight: normal;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  opacity: 0.5;
  border: none;
  line-height: 25.2px;
  height: 28px;
  width: 28px;
  font-size: 28px;
}

.close:before {
  content: '\00D7';
}

.close:hover {
  opacity: 1;
  text-decoration: none !important;
}

.close.inverted {
  color: #fff;
}

.close.small {
  line-height: 18px;
  height: 20px;
  width: 20px;
  font-size: 20px;
}

.close.big {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px;
}

@media (min-width: 768px) {
  .fullwidth {
    -ms-flex: auto;
    -webkit-flex: auto;
    flex: auto;
  }
  .fullwidth ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .fullwidth li {
    -ms-flex: auto;
    -webkit-flex: auto;
    flex: auto;
    text-align: center;
  }
  .fullwidth li em,
  .fullwidth li a {
    display: block;
  }
}

.width-100 {
  width: 100%;
}

.width-50 {
  width: 50%;
}

@media (max-width: 768px) {
  .width-50 {
    width: 100% !important;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}

.overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.search-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 18px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  position: relative;
  top: -1px;
  font-weight: bold;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.search-icon:before {
  content: "\26B2";
}

.search-icon.inverted {
  color: #fff;
}

button .search-icon {
  top: 0;
}

button:hover .search-icon {
  opacity: .6;
}

.menu-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 15px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  font-weight: normal;
}

.menu-icon:before {
  content: "\2630";
}

.menu-icon.inverted {
  color: #fff;
}

button:hover .menu-icon {
  opacity: .6;
}

.caret {
  position: relative;
  display: inline-block;
  height: 0;
  vertical-align: middle;
  width: 0;
  margin-left: 2px;
}

.caret:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.caret.down:before {
  border-top: 4px solid #000;
}

.caret.up:before {
  border-bottom: 4px solid #000;
}

.caret.down.inverted:before {
  border-top-color: #fff;
}

.caret.up.inverted:before {
  border-bottom-color: #fff;
}

.button:hover .caret {
  opacity: .6;
}

.offcanvas {
  background: #fff;
  position: fixed;
  padding: 24px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 300;
  overflow-y: scroll;
}

.offcanvas .close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.offcanvas-left {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-right {
  left: auto;
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-push-body {
  position: relative;
}

.idesign-bgcolor-1 {
  background-color: #242424;
}

.idesign-bgcolor-2 {
  background-color: #FFBB00;
}

.border-r-20 {
  border-right: 20px solid #171717;
}

.border-b-20 {
  border-bottom: 0px;
}

@media (max-width: 768px) {
  .border-r-20 {
    border-right: 0px;
  }
  .border-b-20 {
    border-bottom: 20px  solid #171717;
  }
}

.idesign-color-2 {
  color: #FFBB00;
}

html {
  width: 100%;
}

body {
  background-color: #171717;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

#global_holder {
  max-width: 1520px;
  margin: auto;
}

#global_holder_in {
  margin: 20px;
}

#top-holder h2 {
  margin-top: 50px;
  line-height: 140%;
  font-weight: 700;
  font-size: 50px;
}

#top-holder h3 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
}

#top-holder .top-part-left h2 {
  color: #FFF;
}

#top-holder .top-part-left h3 {
  color: #FFF;
}

#top-holder .in-content-holder {
  padding: 20px 40px;
}

#top-holder .top-part-right {
  background-image: url("../../img/clock2.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 40%;
}

#top-holder .top-part-right h2 {
  color: #303030;
}

#top-holder .top-part-right h3 {
  color: #303030;
}

#top-holder .intro-icons {
  padding-top: 50px;
}

#top-holder .intro-icons div {
  float: left;
  margin-right: 24px;
}

#top-holder .intro-icons img {
  width: 50px !important;
  border-radius: 50%;
  padding: 10px;
  border: 3px solid #fff;
  opacity: .8;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-style: dashed;
}

@media (max-width: 768px) {
  #top-holder h2 {
    font-size: 30px;
  }
  #top-holder h3 {
    font-size: 24px;
  }
}

.intro {
  margin: 20px 0 0 0;
}

.intro .intro-img {
  background-image: url("../../img/clock1.png");
  background-size: 50%;
  background-position: center;
  background-color: #242424;
  background-repeat: no-repeat;
  opacity: .8;
}

.intro .intro-img-1 {
  background-image: url("../../img/contact.png");
}

.intro h2 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 10px;
}

.intro .intro-text {
  padding: 30px 40px;
  font-size: 1px;
  font-size: 14px;
  opacity: .8;
}

.experience {
  margin: 20px 0 0 0;
  padding: 20px 40px;
  /* From https://css.glass */
}

.experience .experience-part {
  padding-bottom: 10px;
  padding-right: 20px;
}

.experience h2 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 10px;
}

.experience .experience-part div:nth-child(1) {
  font-size: 12px;
  opacity: .6;
  margin-bottom: 5px;
}

.experience .experience-part div:nth-child(2) {
  font-size: 18px;
  color: #FFBB00;
  font-weight: 500;
}

.experience .experience-part div:nth-child(3) {
  font-size: 12px;
  opacity: .8;
}

@media (max-width: 768px) {
  .experience div:nth-child(3) {
    margin-bottom: 10px;
  }
}

.portfolio {
  margin: 20px 0 0 0;
  padding: 10px;
}

.portfolio h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.portfolio h3 {
  color: #FFF;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
}

.portfolio .desc-title {
  position: absolute;
  top: 243px;
  transition: all 0.3s;
  left: 60px;
  width: 80%;
}

.portfolio .desc-desc {
  position: absolute;
  top: 520px;
  font-size: 14px;
  transition: all 0.3s;
  left: 60px;
  width: 80%;
  opacity: 0;
}

.portfolio .portfolio-part:hover .desc-title {
  position: absolute;
  top: 150px;
  transition: all 0.3s cubic-bezier(0.23, 0.93, 0.77, 1) 0.03s;
}

.portfolio .portfolio-part:hover .desc-desc {
  position: absolute;
  top: 250px;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.77, 1) 0.06s;
  opacity: 1;
}

.portfolio .portfolio-part {
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background-color: #000;
}

.portfolio .portfolio-bg-1::before {
  content: "";
  background-image: url("../../img/cybersecurity.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.77, 1) 0.06s;
}

.portfolio .portfolio-bg-2::before {
  background-image: url("../../img/Innovation.jpg");
}

.portfolio .portfolio-bg-3::before {
  background-image: url("../../img/websites_buikder.jpg");
}

.portfolio .portfolio-bg-4::before {
  background-image: url("../../img/websites.jpg");
}

.portfolio .portfolio-part:hover .portfolio-bg-1::before {
  opacity: .3;
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.06s;
}

.footer {
  text-align: center;
  font-size: 11px;
  position: relative;
}

.footer .footer-contact {
  color: #FFBB00;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
  display: block;
  width: 150px;
  margin: 0 auto;
}

.footer img {
  width: 20px;
  float: left;
  padding-top: 2px;
}

.footer .footer-text {
  opacity: .7;
  padding-top: 10px;
}

.skills {
  margin-top: 20px;
}

.skills .skills-part {
  padding: 20px 40px;
}

.skills .skills-part .row .col {
  font-size: 14px;
  margin-bottom: 10px;
}

.skills h3 {
  font-size: 15px;
  color: #FFBB00;
  font-weight: 500;
}

.skills li {
  margin-bottom: 10px;
}

.skills li::marker {
  color: #FFBB00;
}

.skills .skills-bar-1,
.skills .skills-bar-2,
.skills .skills-bar-3,
.skills .skills-bar-4,
.skills .skills-bar-5,
.skills .skills-bar-6 {
  height: 16px;
  background-color: #FFBB00;
}

.skills .skills-bar-1 {
  max-width: 100%;
}

.skills .skills-bar-2 {
  max-width: 80%;
}

.skills .skills-bar-3 {
  max-width: 60%;
}

.skills .skills-bar-4 {
  max-width: 50%;
}

.skills .skills-bar-5 {
  max-width: 45%;
}

.skills .skills-bar-6 {
  max-width: 30%;
}

.skills .skills-part-r-border {
  border-right: 10px solid #171717;
}

.skills .skills-part-l-border {
  border-left: 10px solid #171717;
}

.skills h2 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .skills .skills-part-r-border {
    border-right: 0px solid #171717;
  }
  .skills .skills-part-l-border {
    border-left: 0px solid #171717;
  }
}

.page-holder {
  max-width: 100%;
}

.page-holder .page-holder-in {
  margin-top: 70px !important;
  max-width: 1840px;
  margin: auto;
}

@media (max-width: 768px) {
  .page-holder .page-holder-in {
    margin-top: 70px !important;
    max-width: 100%;
    margin: 0 20px;
  }
}

.page-holder .page-header {
  background-color: #171717;
  border-bottom: 1px solid #303030;
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
}

.page-holder .page-header img {
  float: right;
  margin-right: 20px;
  margin-top: 24px;
  cursor: pointer;
}

.page-holder .page-header h2 {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  padding-top: 12px;
  padding-left: 26px;
}

.page-holder .page-div-pos-rel {
  position: relative;
}

.page-holder .page-item-desc {
  background: #242424;
  margin-right: 20px;
  padding: 15px 30px 30px 30px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 20px;
  position: sticky;
  top: 80px;
}

.page-holder .page-item-desc h3 {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding-top: 12px;
  margin: 0;
  opacity: .7;
  margin-bottom: 10px;
}

.page-holder .page-item-desc h4 {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}

.page-holder .page-item-desc p {
  opacity: .7;
}

.page-holder .page-content-holder {
  margin: 20px;
}

.page-holder .page-content-holder img {
  margin-bottom: 10px;
}

.page-holder .page-note {
  font-size: 12px;
  color: #ff9898;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.7);
}

#wave-holder canvas {
  width: 100%;
  height: 100px;
}

#portfolio-popup {
  display: none;
}

.portfolio-popup-show {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  overflow-y: auto;
  background: #000;
}

.open_portfolio_item {
  cursor: pointer;
}

/* 
  You want a simple and fancy tooltip?
  Just copy all [data-tooltip] blocks:
*/
[data-tooltip] {
  --arrow-size: 5px;
  position: relative;
  z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: calc(100% + var(--arrow-size));
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-size: 14px;
  background-color: rgba(59, 72, 80, 0.9);
  background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  transform: translate(-50%, calc(0px - var(--arrow-size))) scale(0.5);
}

/* Tooltip arrow */
[data-tooltip]:after {
  content: '';
  border-style: solid;
  border-width: var(--arrow-size) var(--arrow-size) 0px var(--arrow-size);
  /* CSS triangle */
  border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
  transition-duration: 0s;
  /* If the mouse leaves the element, 
                                the transition effects for the 
                                tooltip arrow are "turned off" */
  transform-origin: top;
  /* Orientation setting for the
                                slide-down effect */
  transform: translateX(-50%) scaleY(0);
}

/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before {
  transition-delay: 0.3s;
  transform: translate(-50%, calc(0px - var(--arrow-size))) scale(1);
}

/* 
    Arrow slide down effect only on mouseenter (NOT on mouseleave)
  */
[data-tooltip]:hover:after {
  transition-delay: 0.5s;
  /* Starting after the grow effect */
  transition-duration: 0.2s;
  transform: translateX(-50%) scaleY(1);
}

/*
    That's it for the basic tooltip.
  
    If you want some adjustability
    here are some orientation settings you can use:
  */
/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
  left: auto;
  right: calc(100% + var(--arrow-size));
  bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
  transform: translate(calc(0px - var(--arrow-size)), 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
  transform: translate(calc(0px - var(--arrow-size)), 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
  border-width: var(--arrow-size) 0px var(--arrow-size) var(--arrow-size);
  border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
  transform-origin: left;
  transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
  transform: translateY(50%) scaleX(1);
}

/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
  left: calc(100% + var(--arrow-size));
  bottom: 50%;
}

[data-tooltip-location="right"]:before {
  transform: translate(var(--arrow-size), 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
  transform: translate(var(--arrow-size), 50%) scale(1);
}

[data-tooltip-location="right"]:after {
  border-width: var(--arrow-size) var(--arrow-size) var(--arrow-size) 0px;
  border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
  transform-origin: right;
  transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
  transform: translateY(50%) scaleX(1);
}

/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
  top: calc(100% + var(--arrow-size));
  bottom: auto;
}

[data-tooltip-location="bottom"]:before {
  transform: translate(-50%, var(--arrow-size)) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
  transform: translate(-50%, var(--arrow-size)) scale(1);
}

[data-tooltip-location="bottom"]:after {
  border-width: 0px var(--arrow-size) var(--arrow-size) var(--arrow-size);
  border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
  transform-origin: bottom;
}

.loader-holder {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
}

.loader-holder-hide {
  left: 0;
  top: -100%;
  transition: all 0.3s;
  width: 100%;
  height: 100vh;
  z-index: 500;
}

.loader-holder-show {
  top: 0;
  width: 100%;
  height: 100vh;
  top: 0;
  transition: all 0.3s;
  z-index: 500;
}

.loader-holder-in {
  position: absolute;
  left: calc(50% - 68px);
  top: calc(50% - 68px);
}

.loader {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 6px solid #FFBB00;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 4px;
  top: 4px;
  border: 4px solid #FFF;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
