@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900);/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/

/*
==============================================
slideDown
==============================================
*/

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    50%{
        -webkit-transform: translateY(8%);
                transform: translateY(8%);
    }
    65%{
        -webkit-transform: translateY(-4%);
                transform: translateY(-4%);
    }
    80%{
        -webkit-transform: translateY(4%);
                transform: translateY(4%);
    }
    95%{
        -webkit-transform: translateY(-2%);
                transform: translateY(-2%);
    }
    100% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    50%{
        -webkit-transform: translateY(8%);
    }
    65%{
        -webkit-transform: translateY(-4%);
    }
    80%{
        -webkit-transform: translateY(4%);
    }
    95%{
        -webkit-transform: translateY(-2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
slideUp
==============================================
*/

@keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    50%{
        -webkit-transform: translateY(-8%);
                transform: translateY(-8%);
    }
    65%{
        -webkit-transform: translateY(4%);
                transform: translateY(4%);
    }
    80%{
        -webkit-transform: translateY(-4%);
                transform: translateY(-4%);
    }
    95%{
        -webkit-transform: translateY(2%);
                transform: translateY(2%);
    }
    100% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
    }
    50%{
        -webkit-transform: translateY(-8%);
    }
    65%{
        -webkit-transform: translateY(4%);
    }
    80%{
        -webkit-transform: translateY(-4%);
    }
    95%{
        -webkit-transform: translateY(2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
slideLeft
==============================================
*/

@keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
                transform: translateX(150%);
    }
    50%{
        -webkit-transform: translateX(-8%);
                transform: translateX(-8%);
    }
    65%{
        -webkit-transform: translateX(4%);
                transform: translateX(4%);
    }
    80%{
        -webkit-transform: translateX(-4%);
                transform: translateX(-4%);
    }
    95%{
        -webkit-transform: translateX(2%);
                transform: translateX(2%);
    }
    100% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
    }
    50%{
        -webkit-transform: translateX(-8%);
    }
    65%{
        -webkit-transform: translateX(4%);
    }
    80%{
        -webkit-transform: translateX(-4%);
    }
    95%{
        -webkit-transform: translateX(2%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

/*
==============================================
slideRight
==============================================
*/

@keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%);
                transform: translateX(-150%);
    }
    50%{
        -webkit-transform: translateX(8%);
                transform: translateX(8%);
    }
    65%{
        -webkit-transform: translateX(-4%);
                transform: translateX(-4%);
    }
    80%{
        -webkit-transform: translateX(4%);
                transform: translateX(4%);
    }
    95%{
        -webkit-transform: translateX(-2%);
                transform: translateX(-2%);
    }
    100% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%);
    }
    50%{
        -webkit-transform: translateX(8%);
    }
    65%{
        -webkit-transform: translateX(-4%);
    }
    80%{
        -webkit-transform: translateX(4%);
    }
    95%{
        -webkit-transform: translateX(-2%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

/*
==============================================
slideExpandUp
==============================================
*/

@keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(0.5);
                transform: translateY(100%) scaleX(0.5);
    }
    30%{
        -webkit-transform: translateY(-8%) scaleX(0.5);
                transform: translateY(-8%) scaleX(0.5);
    }
    40%{
        -webkit-transform: translateY(2%) scaleX(0.5);
                transform: translateY(2%) scaleX(0.5);
    }
    50%{
        -webkit-transform: translateY(0%) scaleX(1.1);
                transform: translateY(0%) scaleX(1.1);
    }
    60%{
        -webkit-transform: translateY(0%) scaleX(0.9);
                transform: translateY(0%) scaleX(0.9);
    }
    70% {
        -webkit-transform: translateY(0%) scaleX(1.05);
                transform: translateY(0%) scaleX(1.05);
    }
    80%{
        -webkit-transform: translateY(0%) scaleX(0.95);
                transform: translateY(0%) scaleX(0.95);
    }
    90% {
        -webkit-transform: translateY(0%) scaleX(1.02);
                transform: translateY(0%) scaleX(1.02);
    }
    100%{
        -webkit-transform: translateY(0%) scaleX(1);
                transform: translateY(0%) scaleX(1);
    }
}

@-webkit-keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(0.5);
    }
    30%{
        -webkit-transform: translateY(-8%) scaleX(0.5);
    }
    40%{
        -webkit-transform: translateY(2%) scaleX(0.5);
    }
    50%{
        -webkit-transform: translateY(0%) scaleX(1.1);
    }
    60%{
        -webkit-transform: translateY(0%) scaleX(0.9);
    }
    70% {
        -webkit-transform: translateY(0%) scaleX(1.05);
    }
    80%{
        -webkit-transform: translateY(0%) scaleX(0.95);
    }
    90% {
        -webkit-transform: translateY(0%) scaleX(1.02);
    }
    100%{
        -webkit-transform: translateY(0%) scaleX(1);
    }
}

/*
==============================================
expandUp
==============================================
*/


.expandUp{
    animation-name: expandUp;
    -webkit-animation-name: expandUp;

    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    visibility: visible !important;
}

@keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
                transform: translateY(100%) scale(0.6) scaleY(0.5);
    }
    60%{
        -webkit-transform: translateY(-7%) scaleY(1.12);
                transform: translateY(-7%) scaleY(1.12);
    }
    75%{
        -webkit-transform: translateY(3%);
                transform: translateY(3%);
    }
    100% {
        -webkit-transform: translateY(0%) scale(1) scaleY(1);
                transform: translateY(0%) scale(1) scaleY(1);
    }
}

@-webkit-keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
    }
    60%{
        -webkit-transform: translateY(-7%) scaleY(1.12);
    }
    75%{
        -webkit-transform: translateY(3%);
    }
    100% {
        -webkit-transform: translateY(0%) scale(1) scaleY(1);
    }
}

/*
==============================================
fadeIn
==============================================
*/

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

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;

    visibility: visible !important;
}

@keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0.0;
    }
    60% {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
    80% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    60% {
        -webkit-transform: scale(1.1);
    }
    80% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

/*
==============================================
expandOpen
==============================================
*/

@keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8);
                transform: scale(1.8);
    }
    50% {
        -webkit-transform: scale(0.95);
                transform: scale(0.95);
    }
    80% {
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
    }
    90% {
        -webkit-transform: scale(0.98);
                transform: scale(0.98);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@-webkit-keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8);
    }
    50% {
        -webkit-transform: scale(0.95);
    }
    80% {
        -webkit-transform: scale(1.05);
    }
    90% {
        -webkit-transform: scale(0.98);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

/*
==============================================
bigEntrance
==============================================
*/

@keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
                transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }
    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
                transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
                transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
                transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    75% {
        -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
                transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    90% {
        -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
                transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
                transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }
    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    75% {
        -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    90% {
        -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

/*
==============================================
hatch
==============================================
*/

@keyframes hatch {
    0% {
        -webkit-transform: rotate(0deg) scaleY(0.6);
                transform: rotate(0deg) scaleY(0.6);
    }
    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05);
                transform: rotate(-2deg) scaleY(1.05);
    }
    35% {
        -webkit-transform: rotate(2deg) scaleY(1);
                transform: rotate(2deg) scaleY(1);
    }
    50% {
        -webkit-transform: rotate(-2deg);
                transform: rotate(-2deg);
    }
    65% {
        -webkit-transform: rotate(1deg);
                transform: rotate(1deg);
    }
    80% {
        -webkit-transform: rotate(-1deg);
                transform: rotate(-1deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
}

@-webkit-keyframes hatch {
    0% {
        -webkit-transform: rotate(0deg) scaleY(0.6);
    }
    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05);
    }
    35% {
        -webkit-transform: rotate(2deg) scaleY(1);
    }
    50% {
        -webkit-transform: rotate(-2deg);
    }
    65% {
        -webkit-transform: rotate(1deg);
    }
    80% {
        -webkit-transform: rotate(-1deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}


/*
==============================================
bounce
==============================================
*/

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0%) scaleY(0.6);
                transform: translateY(0%) scaleY(0.6);
    }
    60%{
        -webkit-transform: translateY(-100%) scaleY(1.1);
                transform: translateY(-100%) scaleY(1.1);
    }
    70%{
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
                transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }
    80%{
        -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
                transform: translateY(0%) scaleY(1.05) scaleX(1);
    }
    90%{
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
                transform: translateY(0%) scaleY(0.95) scaleX(1);
    }
    100%{
        -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
                transform: translateY(0%) scaleY(1) scaleX(1);
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0%) scaleY(0.6);
    }
    60%{
        -webkit-transform: translateY(-100%) scaleY(1.1);
    }
    70%{
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }
    80%{
        -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
    }
    90%{
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
    }
    100%{
        -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
    }
}


/*
==============================================
pulse
==============================================
*/

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}

/*
==============================================
floating
==============================================
*/

.floating{
    animation-name: floating;
    -webkit-animation-name: floating;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
    50% {
        -webkit-transform: translateY(8%);
                transform: translateY(8%);
    }
    100% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }
    50% {
        -webkit-transform: translateY(8%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
tossing
==============================================
*/

@keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg);
                transform: rotate(-4deg);
    }
    50% {
        -webkit-transform: rotate(4deg);
                transform: rotate(4deg);
    }
    100% {
        -webkit-transform: rotate(-4deg);
                transform: rotate(-4deg);
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg);
    }
    50% {
        -webkit-transform: rotate(4deg);
    }
    100% {
        -webkit-transform: rotate(-4deg);
    }
}

/*
==============================================
pullUp
==============================================
*/

@keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
                transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
                transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
                transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
                transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
                transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
                transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
    }
}

/*
==============================================
pullDown
==============================================
*/

.pullDown{
    animation-name: pullDown;
    -webkit-animation-name: pullDown;

    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;

    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;

    transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
                transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
                transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
                transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
                transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
                transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
                transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
    }
}

/*
==============================================
stretchLeft
==============================================
*/

@keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(0.3);
                transform: scaleX(0.3);
    }
    40% {
        -webkit-transform: scaleX(1.02);
                transform: scaleX(1.02);
    }
    60% {
        -webkit-transform: scaleX(0.98);
                transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
                transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(0.98);
                transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
                transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
    }
}

@-webkit-keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(0.3);
    }
    40% {
        -webkit-transform: scaleX(1.02);
    }
    60% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(1);
    }
}

/*
==============================================
stretchRight
==============================================
*/

@keyframes stretchRight {
    0% {
        -webkit-transform: scaleX(0.3);
                transform: scaleX(0.3);
    }
    40% {
        -webkit-transform: scaleX(1.02);
                transform: scaleX(1.02);
    }
    60% {
        -webkit-transform: scaleX(0.98);
                transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
                transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(0.98);
                transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
                transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
    }
}

@-webkit-keyframes stretchRight {
    0% {
        -webkit-transform: scaleX(0.3);
    }
    40% {
        -webkit-transform: scaleX(1.02);
    }
    60% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(1);
    }
}@charset "UTF-8";
/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-arrow-alt-circle-up:before {
  content: "\F35B";
}

.fa-calendar-alt:before {
  content: "\F073";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-chart-bar:before {
  content: "\F080";
}

.fa-chart-pie:before {
  content: "\F200";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-clock:before {
  content: "\F017";
}

.fa-cloud-download-alt:before {
  content: "\F381";
}

.fa-code-branch:before {
  content: "\F126";
}

.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-cut:before {
  content: "\F0C4";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-download:before {
  content: "\F019";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-facebook:before {
  content: "\F09A";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-file-code:before {
  content: "\F1C9";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-hand-holding-usd:before {
  content: "\F4C0";
}

.fa-hands-helping:before {
  content: "\F4C4";
}

.fa-hdd:before {
  content: "\F0A0";
}

.fa-id-card:before {
  content: "\F2C2";
}

.fa-images:before {
  content: "\F302";
}

.fa-info:before {
  content: "\F129";
}

.fa-js:before {
  content: "\F3B8";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-laptop-code:before {
  content: "\F5FC";
}

.fa-laravel:before {
  content: "\F3BD";
}

.fa-linkedin:before {
  content: "\F08C";
}

.fa-magento:before {
  content: "\F3C4";
}

.fa-mailchimp:before {
  content: "\F59E";
}

.fa-mobile-alt:before {
  content: "\F3CD";
}

.fa-money-check:before {
  content: "\F53C";
}

.fa-money-check-alt:before {
  content: "\F53D";
}

.fa-newspaper:before {
  content: "\F1EA";
}

.fa-php:before {
  content: "\F457";
}

.fa-project-diagram:before {
  content: "\F542";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-search:before {
  content: "\F002";
}

.fa-search-dollar:before {
  content: "\F688";
}

.fa-server:before {
  content: "\F233";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-shield-alt:before {
  content: "\F3ED";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-sign-language:before {
  content: "\F2A7";
}

.fa-slack:before {
  content: "\F198";
}

.fa-stream:before {
  content: "\F550";
}

.fa-stripe:before {
  content: "\F429";
}

.fa-symfony:before {
  content: "\F83D";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-user-check:before {
  content: "\F4FC";
}

.fa-user-tie:before {
  content: "\F508";
}

.fa-users-cog:before {
  content: "\F509";
}

.fa-utensils:before {
  content: "\F2E7";
}

.fa-vuejs:before {
  content: "\F41F";
}

.fa-wordpress:before {
  content: "\F19A";
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 aside, figcaption, footer, header, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}


code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

img {
  vertical-align: middle;
  border-style: none;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

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

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

 .col-xl-8, .col-xl-2, .col-lg-6, .col-lg-4, .col-lg-3, .col-lg-2, .col-md-12, .col-md-10, .col-md-8, .col-md-6, .col-md-4, .col-md-3, .col-sm-12, .col-sm-9, .col-sm-6, .col-12, .col-11, .col-6, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

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

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.order-1 {
  order: 1;
}

@media (min-width: 576px) {

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

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

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {

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

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

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

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

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

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
}
@media (min-width: 992px) {

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

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

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }
}
@media (min-width: 1200px) {

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table-active,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled {
  pointer-events: none;
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}


.custom-file-label {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  
.custom-file-label {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}

.carousel {
  position: relative;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

.border {
  border: 1px solid #dee2e6 !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 992px) {

  .d-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {

  .d-xl-block {
    display: block !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.w-50 {
  width: 50% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

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

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

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

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}


.mx-auto {
  margin-right: auto !important;
}


.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 768px) {

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  
.px-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
}

.text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
}
@media (min-width: 1200px) {

  .text-xl-right {
    text-align: right !important;
  }
}

.text-uppercase {
  text-transform: uppercase !important;
}

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

.text-white {
  color: #fff !important;
}

.visible {
  visibility: visible !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td {
    background-color: #fff !important;
  }
}
/*
** General Styles for HTML tags
*/
html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

::-moz-selection {
  color: #ffffff;
  background-color: #63B3ED;
}

::selection {
  color: #ffffff;
  background-color: #63B3ED;
}

::-moz-selection {
  color: #ffffff;
  background-color: #63B3ED;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  background-color: #ffffff;
  overflow: visible;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 15px;
}

h1 {
  font-size: 56px;
  line-height: 60px;
}

h2 {
  font-size: 48px;
  line-height: 52px;
}

h3 {
  font-size: 42px;
  line-height: 56px;
}

h4 {
  font-size: 36px;
  line-height: 40px;
}

h5 {
  font-size: 30px;
  line-height: 34px;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 991px) {
  h6 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  h5 {
    font-size: 1.2rem;
  }

  h6 {
    font-size: 1.1rem;
  }
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

p {
  margin-bottom: 10px;
}

ul:last-child,
ol:last-child,
p:last-child {
  margin-bottom: 0;
}

p:last-child:after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
}

figcaption {
  font-size: 0.95em;
  line-height: 1.4;
  padding: 10px 0 7px;
}
figcaption p {
  margin-bottom: 0;
}

b, strong {
  font-weight: 600;
}

label {
  color: #323232;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
  color: #323232;
}
a:hover {
  color: #63B3ED;
  text-decoration: none;
  transition: all 0.15s linear 0s;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
  outline: medium none;
  text-decoration: none;
}

a > img {
  transition: all 0.15s ease-in-out 0s;
}

a:hover > img {
  opacity: 0.8;
}

a.btn:active,
a.button:active,
button:active,
input[type=submit]:active {
  position: relative;
  top: 1px !important;
}

hr {
  border-color: #e1e1e1;
  margin-left: 0;
  margin-right: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

iframe {
  border: none;
  max-width: 100%;
}

table {
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}
table td {
  padding: 13px 8px;
  line-height: 1.6;
  vertical-align: top;
}

canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.media h3 {
  text-transform: uppercase;
}

ul, ol {
  padding-left: 1.15rem;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

ul.list {
  padding-right: 2rem;
}

.list li {
  padding-top: 14px;
  list-style: none;
  padding-bottom: 15px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.list li :before {
  font-family: "Font Awesome 5 Free";
  content: "\F111";
  font-size: 5px;
  color: #63B3ED;
  position: relative;
  padding-right: 15px;
  top: -2px;
}
.list li + li {
  border-top: none;
}

.wrap ol {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media (max-width: 767px) {
  .wrap ol {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

/*
** Bootstrap Overrides
*/
/* bootstrap breadcrumbs*/

/* forms */
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
textarea,
select,
.form-control {
  text-align: center;
  height: 60px;
  background-color: #f4f4f5;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  color: #7f7f7f;
  padding-left: 28px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 11px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.1em;
}

select {
  color: #808080;
  text-align: center;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 3px !important;
  font-weight: bold !important;
}

input[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

input[type=submit],
button {
  cursor: pointer;
}

input[type=submit],
button {
  cursor: pointer;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: #63B3ED;
  border: 4px solid #63B3ED;
  border-radius: 50px;
  padding: 26px 40px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
input[type=submit]:hover,
button:hover {
  color: #63B3ED;
  background-color: transparent;
}
.ds input[type=submit]:not([class]), .cs input[type=submit]:not([class]),
.ds button:not([class]),
.cs button:not([class]) {
  border-color: #ffffff;
  color: #ffffff;
}
textarea,
textarea.form-control {
  padding-top: 20px;
  height: auto;
}

.form-group {
  position: relative;
}
[class*=col-] > .form-group {
  margin-bottom: 0;
}
[class*=col-] > .form-group + .form-group {
  margin-top: 10px;
}

/* select styling */
select[multiple] {
  height: auto;
}

select option,
.form-control option {
  background-color: #ffffff;
  color: #808080;
  font-size: 14px;
}

textarea::-webkit-input-placeholder {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

textarea:-ms-input-placeholder {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

textarea::-ms-input-placeholder {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

textarea::placeholder {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

.form-control, .form-control:focus {
  box-shadow: none;
}

.form-control.invalid {
  box-shadow: 0 0 0 2px #63B3ED;
}

.form-control:focus {
  border-color: #dedfe1;
  background-color: #f4f4f5;
  color: #7f7f7f;
}

.form-control:-moz-placeholder {
  color: #808080;
  opacity: 1;
}

.form-control::-moz-placeholder {
  font-style: italic;
  color: #808080;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  font-style: italic;
  color: #808080;
}

.form-control::-webkit-input-placeholder {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

.form-control:focus:-moz-placeholder {
  color: transparent;
}

.form-control:focus::-moz-placeholder {
  color: transparent;
}

.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

/*icons for forms */
form label + [class*=fa-] {
  position: absolute;
  font-size: 16px;
  left: 28px;
  top: 60px;
  width: 1em;
  text-align: center;
}

form label + [class*=fa-] + .form-control {
  padding-left: 60px;
}

.custom-file {
  height: 50px;
}

.custom-file-input {
  height: 50px;
}
.custom-file-input:focus {
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #dedfe1 !important;
}

.custom-file-label {
  color: #808080;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #f4f4f5;
  height: 50px;
  padding: 1rem 0.75rem;
}
@media (max-width: 767px) {
  .custom-file-label {
    padding: 1rem 8.5rem 1rem 1rem;
  }
}
.custom-file-label:after {
  color: #ffffff;
  height: 48px;
  padding: 1rem 1rem;
  background-color: #969fab;
}
.custom-file-label:focus {
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #dedfe1 !important;
}

label {
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.checkbox label, .radio label {
  font-weight: inherit;
}
.checkbox label[for], .radio label[for] {
  font-weight: inherit;
}

.checkbox label[for] + input[type=checkbox],
.checkbox label[for] + input[type=radio],
.radio label[for] + input[type=checkbox],
.radio label[for] + input[type=radio] {
  left: 20px;
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  margin-top: 8px;
}

/*styled checkbox */
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox label + input[type=checkbox],
.checkbox label > input[type=checkbox] {
  display: inline-block;
}

input[type=checkbox] + label {
  padding-left: 0;
  color: #63b3ed;
}

input[type=checkbox] + label > a {
  color: #323232;
}

input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 1px 10px 4px 0;
  text-align: center;
  padding-right: 0.1em;
  width: 16px;
  height: 16px;
  line-height: 14px;
  font-size: 15px;
  border: 1px solid #e1e1e1;
  font-family: "Font Awesome 5 Free";
}

input[type=checkbox]:checked + label:before {
  content: "\F00C";
  color: #63b3ed;
}

input[type=checkbox]:disabled + label:before {
  background-color: #e1e1e1;
}

/*styled radio*/
.radio input[type=radio] {
  display: none;
}
.radio label + input[type=radio],
.radio label > input[type=radio] {
  display: inline-block;
}

input[type=radio] + label {
  padding-left: 0;
}

input[type=radio] + label > a {
  color: #999999;
}

input[type=radio] + label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e1e1e1;
}

input[type=radio]:checked + label:before {
  padding: 3px;
  background-color: #63B3ED;
  background-clip: content-box;
}

input[type=radio]:disabled + label:before {
  background-color: #e1e1e1;
}

/* carousel */

/* bootstrap tabs*/
.nav-tabs {
  border-bottom: none;
}

.tab-content {
  padding: 40px 40px;
}

.tab-pane .media img {
  max-width: 40%;
}
.tab-pane .media img:first-child {
  margin-right: 10px;
}
.tab-pane .media h3, .tab-pane .media h4, .tab-pane .media h5 {
  font-weight: 900;
}

/* bootstrap collapse*/
[data-toggle=collapse] {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  margin-bottom: 18px;
}
[data-toggle=collapse]:after {
  position: absolute;
  right: 100%;
  top: 0;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  content: "-";
  width: 20px;
  height: 60px;
}
[data-toggle=collapse].collapsed:after {
  content: "+";
}
[role=tablist] .media img {
  max-width: 80px;
}

/* bootstrap dropdown menu */

@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
/* modal */

/* bootstrap buttons */
.btn {
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 26px 61px;
  border-radius: 50px;
  border: 4px solid;
  letter-spacing: 0.2em;
  transition: all 0.2s linear 0s;
}
.btn.btn-small {
  padding: 16px 41px;
}
.btn.round {
  padding: 23px;
  line-height: 1;
}

.btn.no-hover:hover {
  color: #fff;
  background-color: #63B3ED;
}

.btn:hover.hover-light {
  color: #fff;
}

/* media elements */
.media > img {
  display: block;
}

.embed-placeholder:after {
  transition: all 0.2s ease-in-out 0s;
  content: "";
  background: url("../img/video.png");
  position: absolute;
  color: #fff;
  font-size: 14px;
  line-height: 56px;
  width: 60px;
  height: 42px;
  text-align: center;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
}
.embed-placeholder:hover:after {
  opacity: 1;
}

.alert {
  border-radius: 0;
  border-width: 0 0 0 4px;
  padding: 30px;
  margin-bottom: 40px;
}

.mark, mark {
  background-color: transparent;
}

button.close {
  min-width: 0;
}

/* small in headings */
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  color: inherit;
  font-weight: 300;
}

/* labels */

/*
progressbar*/

/*
**plugins
*/
/*
** Flexslider
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/
/* Browser Resets */

.flexslider a:active,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
}

/* FlexSlider Necessary Styles */
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

/* Clearfix for the .slides element */
.slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme */
.flexslider {
  margin: 0 0;
  position: relative;
  zoom: 1;
}

.flexslider .slides {
  zoom: 1;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 80px;
  height: 80px;
  margin: -40px 0 0;
  position: absolute;
  border-radius: 50% 0 0 50%;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  font-size: 0;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.flex-direction-nav a:before {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  content: "\F104";
  position: absolute;
  top: 23px;
  right: 20px;
  left: auto;
}

/* Pause/Play */

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 10;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.flex-control-nav li {
  text-align: center;
  display: inline-block;
  padding: 0 14px;
  zoom: 1;
  *display: inline;
}

/* custom nav for flex slider*/

/* sidebar scroll plugin */

/*
** Bootstrap Addons
*/
/*
** Horizontal padding (gutters) for columns and rows
*/
/* columns
.c - columns
px-* - horizontal padding value
*/

.c-gutter-60 [class*=col-],
.row.c-gutter-60 > [class*=col-] {
  padding-right: 30px;
  padding-left: 30px;
}

/*same as bootstrap .no-gutters class*/

/* rows */

.c-gutter-60 .row,
div.row.c-gutter-60 {
  margin-left: -30px;
  margin-right: -30px;
}

/* containers */

/*
** Vertical margins and padding for sections and columns
*/
/* Vertical padding for sections
.s - section
pt-* - padding top value
pb-* - padding bottom value
py-* - same value for top and for bottom padding
*/

.s-pt-30 > [class*=container] {
  padding-top: 30px;
}

.s-pt-50 > [class*=container] {
  padding-top: 50px;
}

.s-pt-75 > [class*=container] {
  padding-top: 75px;
}

.s-pt-100 > [class*=container] {
  padding-top: 100px;
}

.s-pb-0 > [class*=container] {
  padding-bottom: 0px;
}

.s-pb-3 > [class*=container] {
  padding-bottom: 3px;
}

.s-pb-20 > [class*=container] {
  padding-bottom: 20px;
}

.s-pb-30 > [class*=container] {
  padding-bottom: 30px;
}

.s-pb-50 > [class*=container] {
  padding-bottom: 50px;
}

.s-pb-100 > [class*=container] {
  padding-bottom: 100px;
}

.s-py-20 > [class*=container] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.s-py-25 > [class*=container] {
  padding-top: 25px;
  padding-bottom: 25px;
}

.s-py-50 > [class*=container] {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {

  .s-pt-md-50 > [class*=container] {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {

  .s-pt-lg-30 > [class*=container] {
    padding-top: 30px;
  }

  .s-pt-lg-50 > [class*=container] {
    padding-top: 50px;
  }

  .s-pt-lg-130 > [class*=container] {
    padding-top: 130px;
  }

  .s-pb-lg-10 > [class*=container] {
    padding-bottom: 10px;
  }

  .s-pb-lg-50 > [class*=container] {
    padding-bottom: 50px;
  }

  .s-py-lg-5 > [class*=container] {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1200px) {

  .s-pt-xl-25 > [class*=container] {
    padding-top: 25px;
  }

  .s-pb-xl-50 > [class*=container] {
    padding-bottom: 50px;
  }
}
/* Vertical margins for columns in sections and rows
.c - columns
mt-* - margin top value
mb-* - margin bottom value
my-* - same value for top and for bottom margin
*/

.c-mb-20 [class*=col-],
.row.c-mb-20 > [class*=col-] {
  margin-bottom: 20px;
}

.c-mb-50 [class*=col-],
.row.c-mb-50 > [class*=col-] {
  margin-bottom: 50px;
}
@media (min-width: 768px) {

  .c-mb-md-60 [class*=col-],
.row.c-mb-md-60 > [class*=col-] {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {

  .c-mb-lg-0 [class*=col-],
.row.c-mb-lg-0 > [class*=col-] {
    margin-bottom: 0px;
  }

  .c-mb-lg-60 [class*=col-],
.row.c-mb-lg-60 > [class*=col-] {
    margin-bottom: 60px;
  }
}
form[class*=c-mb-] .row:last-child [class^=col-],
[class*=c-mb-] form .row:last-child [class^=col-] {
  margin-bottom: 0 !important;
}

/* overlap featured image on top section (for big screens) */
/* full height section */

/* Vertical dividers - use them with Bootstrap responsive utilities - http://getbootstrap.com/docs/4.1/utilities/display/#hiding-elements */
[class*=divider-] {
  width: 100%;
  clear: both;
}
[class*=divider-]:last-child {
  order: 10000;
}

.divider-10 {
  margin-top: 10px;
}

.divider-20 {
  margin-top: 20px;
}

.divider-25 {
  margin-top: 25px;
}

.divider-30 {
  margin-top: 30px;
}

.divider-40 {
  margin-top: 40px;
}

.divider-50 {
  margin-top: 50px;
}

.divider-70 {
  margin-top: 70px;
}
/*
** Common Sections Styles
*/
section {
  position: relative;
}

img {
  max-width: 100%;
}

/*parallax*/
.s-parallax,
.cover-image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.cover-image {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .cover-image {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-position: 50% 50%;
    z-index: 2;
  }
  .cover-image > img {
    visibility: hidden;
  }
  .cover-image > a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .cover-image + [class*=container] [class*=col-] > img, .cover-image + [class*=container] [class*=col-] > a:after, .cover-image + [class*=container] [class*=col-] > a > img {
    visibility: hidden;
  }
}


.s-parallax {
  background-attachment: fixed;
  background-position: 50% 0;
}

@media (max-width: 767px) {
  .s-parallax {
    background-size: auto auto;
  }
}
/*additional overlay for parallax sections*/

.s-parallax > *,
.gradient-background > * {
  z-index: 4;
  position: relative;
}

.s-parallax:before,
.gradient-background:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


.s-parallax:before {
  opacity: 1;
}

.gradient-background:before {
  background: #63B3ED;
  background: linear-gradient(to right, #63b3ed 0%, #a0ce4e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$colorMain", endColorstr="$colorMain2", GradientType=1);
}

/*page preloader*/

/* animated elements */
.animate {
  visibility: hidden;
}
.no-js .animate, .lt-ie9 .animate {
  visibility: visible;
}

.animated {
  visibility: visible !important;
}

/* boxed layout */
#box_wrapper,
#canvas {
  overflow: hidden;
  position: relative;
}

#box_wrapper > section,
#box_wrapper > div > section {
  position: relative;
  clear: both;
}

#canvas.boxed {
  padding: 1px 0;
}

body.boxed {
  position: static;
  width: auto;
  height: auto;
}

.boxed .container {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 500px) {
  .boxed .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.boxed #box_wrapper.container {
  padding: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  margin-top: 120px;
}
@media (min-width: 1600px) {
  .boxed #box_wrapper.container {
    max-width: 1560px;
  }
}

/*common background sections*/

/*bordered columns*/

/* Media Items - Common Side and Top Image Items */
.item-content p:last-child {
  margin-bottom: -0.7em;
}

/* side and vertical items paddings */
/*side item*/

/*-xs- -sm- side-item paddings and margins*/
/*-md- side-item paddings and margins*/
/*-lg- side-item paddings and margins*/
/*-xl- side-item paddings and margins*/
/* vertical media item */
.vertical-item .item-media + .item-content {
  padding-top: 50px;
}
@media (max-width: 650px) {
  .vertical-item .item-media + .item-content {
    padding-top: 30px;
  }
}

/* item meta */

/* item media & item links */
.item-media {
  position: relative;
  overflow: hidden;
}
.item-media img {
  width: 100%;
  z-index: 3;
}
.item-media.cover-image {
  height: 100%;
}

/* item icons */

/*
** Buttons
 */
.btn:hover {
  cursor: pointer;
}

.btn.focus,
.btn:focus {
  box-shadow: 0 0 3px 0 rgba(100, 100, 100, 0.75);
}

/*color background buttons*/
.btn-maincolor {
  color: #ffffff;
}

.btn-maincolor {
  background-color: #63B3ED;
  border: 4px solid #63B3ED;
}

/*color outline buttons*/
.btn-outline-maincolor {
  background-color: transparent;
}

.btn-outline-maincolor {
  color: #1f2732;
  border-color: #63B3ED;
}

/*
** Dark Section background and Dark Muted background sections - .ds and .ds.ms
*/
/* dark grey background section - .ds */
.ds {
  background-color: #1f2732;
  color: #9a9a9a;
}
.ds * .ds {
  background-color: #252525;
}

/* dark background section - .ds.ms */
.ds.ms {
  background-color: #252525;
}
.ds.ms .ds.ms {
  background-color: #2a2a2a;
}

/* dark section blue - .ds.bs */
.ds.bs {
  background-color: #2f3e47;
}

.ds a:not(.btn) {
  color: #ffffff;
}
.ds a:not(.btn):hover {
  color: #63B3ED;
}
.ds h1,
.ds h2,
.ds h3,
.ds h4,
.ds h5,
.ds h6 {
  color: #ffffff;
}
.ds h1 a,
.ds h2 a,
.ds h3 a,
.ds h4 a,
.ds h5 a,
.ds h6 a {
  color: #ffffff;
}
.ds h1 a:hover,
.ds h2 a:hover,
.ds h3 a:hover,
.ds h4 a:hover,
.ds h5 a:hover,
.ds h6 a:hover {
  opacity: 0.8;
}
.ds .ls {
  background-color: #ffffff;
  color: #808080;
}
.ds .ls h1,
.ds .ls h2,
.ds .ls h3,
.ds .ls h4,
.ds .ls h5,
.ds .ls h6 {
  color: #323232;
}
.ds .ls h1 a,
.ds .ls h2 a,
.ds .ls h3 a,
.ds .ls h4 a,
.ds .ls h5 a,
.ds .ls h6 a {
  color: inherit;
}
.ds .ls h1 a:hover,
.ds .ls h2 a:hover,
.ds .ls h3 a:hover,
.ds .ls h4 a:hover,
.ds .ls h5 a:hover,
.ds .ls h6 a:hover {
  color: #63B3ED;
}
.ds .ls a:not(.btn) {
  color: #323232;
}
.ds .ls a:not(.btn):hover {
  color: #63B3ED;
}
.ds label {
  color: #ffffff;
}
.ds hr {
  border-color: #454545;
  background-color: #454545;
}
.ds .color-main {
  color: #63B3ED;
}
.ds .color-main2 {
  color: #a0ce4e;
}

.ds .color-darkgrey {
  color: #ffffff;
  border-color: #ffffff;
}
.ds .btn-maincolor:hover,
.ds .btn-outline-maincolor:hover {
  color: #ffffff;
}
.ds .btn-outline-maincolor:hover,
.ds .btn-maincolor:hover {
  background-color: #fff;
  color: #63B3ED;
}

/* USED */

/*
** Helper Utilities
*/
/* layout */
.clear {
  clear: both;
}

.round {
  border-radius: 50%;
}

/* paddings for .*-bg, .bg-* and .bordered */

/* text helpers */


.thin {
  font-weight: 300;
}


.bold {
  font-weight: 900;
}

/*alignment helpers*/

.overflow-visible {
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* borders, colors and backgrounds */

.response,
.color-main {
  color: #63B3ED !important;
  border-color: #63B3ED;
}

.color-main2 {
  color: #a0ce4e !important;
  border-color: #a0ce4e;
}

.color-main3 {
  color: #00bea3 !important;
  border-color: #00bea3;
}

.color-main4 {
  color: #f1894c !important;
  border-color: #f1894c;
}

.color-darkgrey {
  color: #323232;
  border-color: #323232;
}

.required {
  color: #dc5753;
}

[class*=bg-] {
  color: #ffffff;
}
[class*=bg-] a, [class*=bg-] h1, [class*=bg-] h2, [class*=bg-] h3, [class*=bg-] h4, [class*=bg-] h5, [class*=bg-] h6 {
  color: #ffffff;
}

/*padding for inline elements with theme backgrounds*/
span[class*=bg-] {
  padding-left: 0.37em;
  padding-right: 0.37em;
}

/*Dividers, margins and padding helpers*/
/* margins */
/*top&bottom equal margins - dividers*/

/*left&right equal margins*/

/*top margins*/

/*bottom margins*/

/*top right bottom left margins*/

/* paddings */
/*top&bottom equal paddings - dividers*/

/*left&right equal paddings*/

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

/*top paddings*/
.pt-10 {
  padding-top: 10px;
}

.pt-30 {
  padding-top: 30px;
}

/*bottom paddings*/

/*top right bottom left paddings*/
.p-10 {
  padding: 10px;
}

/*
** Main Menu styles
*/

/* Desktop menu - (min 1200px) styles */
@media (min-width: 1200px) {
  .top-nav {
    position: relative;
    flex-grow: 10;
    flex-wrap: nowrap;
    align-items: center;
  }

  /* menu layout */
  .sf-menu {
    display: block;
  }

  .sf-menu, .sf-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sf-menu li {
    position: relative;
  }

  .sf-menu li > ul {
    position: absolute;
    display: none;
    top: 100%;
    z-index: 99;
  }

  .sf-menu > li > a:after {
    font-family: "Font Awesome 5 Free";
    color: #fff;
    content: "\F111";
    font-size: 5px;
    position: relative;
    margin-left: 0;
    top: -3px;
    right: -25px;
  }

  .sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
    display: block;
  }

  .sf-menu a {
    display: block;
    position: relative;
  }

  /* menu skin */
  .sf-menu a {
    padding: 10px 0 10px;
    text-decoration: none;
    zoom: 1;
    transition-property: color, background-color, border-color, padding-top, padding-bottom;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  .sf-menu li {
    white-space: nowrap;
    *white-space: normal;
  }

  .sf-menu > li {
    display: inline-block;
    position: relative;
  }

  .sf-menu.nav > li:first-child > a {
    margin-left: 0;
  }

  .sf-menu.nav > li:last-child > a {
    margin-right: 0;
  }

  .sf-menu > li > a {
    line-height: 14px;
    padding-top: 53px;
    padding-bottom: 53px;
    padding-right: 0;
    padding-left: 0;
    margin: 0 15px;
    transition-duration: 0.15s;
  }
  .affix .sf-menu > li > a {
    padding-top: 33px;
    padding-bottom: 33px;
  }

  /* second and next levels */

  /* third level */
}
@media (min-width: 1200px) and (min-width: 1500px) {
  .sf-menu > li > a {
    margin: 0 25px;
  }
}
@media (min-width: 1200px) {
  .sf-menu > li > a:hover,
.sf-menu > li.active > a {
    color: #63B3ED;
  }
}
@media (min-width: 1200px) {
  .cs .sf-menu > li > a {
    color: #ffffff;
  }
  .cs .sf-menu > li > a:hover,
.cs .sf-menu > li.active > a {
    color: #63B3ED;
  }
}
@media (min-width: 1200px) {
  .ds .sf-menu > li > a {
    color: #ffffff;
  }
  .ds .sf-menu > li > a:hover,
.ds .sf-menu > li.active > a {
    color: #63B3ED;
  }
}
@media (min-width: 1200px) {
  .ls .sf-menu > li > a {
    color: #323232;
  }
  .ls .sf-menu > li > a:hover,
.ls .sf-menu > li.active > a {
    color: #63B3ED;
  }
  .ls .sf-menu > li + li:before {
    background-color: #e1e1e1;
  }
}
@media (min-width: 1200px) {
  .sf-menu li:hover,
.sf-menu li.sfHover {
    /* only transition out, not in */
    transition: none;
  }
}
@media (min-width: 1200px) {
  .sf-menu > li .mega-menu,
.sf-menu li > ul {
    margin-top: 5px;
    text-align: center;
    list-style: none;
    padding: 10px 0 10px;
    border-top: 4px solid #63B3ED;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-width: 10em;
    /* allow long menu items to determine submenu width */
    *width: 10em;
    /* no auto sub width for IE7, see white-space comment below */
  }
}
@media (min-width: 1200px) {
  .sf-menu > li .mega-menu {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .sf-menu.nav ul a {
    color: #323232;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1200px) {
  .sf-menu .mega-menu ul {
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
}
@media (min-width: 1200px) {
  .sf-menu .mega-menu ul a {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .sf-menu ul a:hover,
.sf-menu ul li.active > a {
    color: #63B3ED;
  }
}
@media (min-width: 1200px) {
  .sf-menu ul ul {
    margin-top: 0;
    top: -14px;
  }
}
@media (min-width: 1200px) {
  .sf-arrows ul .sf-with-ul:after {
    font-family: "Font Awesome 5 Free";
    padding-left: 7px;
    content: "\F105";
  }
}
.sf-menu i[class] {
  margin-right: 7px;
  font-size: 1.1em;
}

/* hidden menu items */
@media (min-width: 1200px) {
  .sf-menu .sf-xl-hidden {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .sf-more-li {
    display: none;
  }
}
.sf-menu > li:last-child > a:after {
  display: none;
}

/* Mobile menu toggler */
@media (min-width: 1200px) {
  .page_header .toggle_menu,
.page_toplogo .toggle_menu {
    display: none;
  }
}
.toggle_menu {
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: -30px;
  margin-top: -30px;
  padding: 0 !important;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1002;
  visibility: visible;
  opacity: 0.95;
}
.page_header_wrapper .toggle_menu {
  z-index: 1003;
}
.ls .toggle_menu {
  background-color: #ffffff;
}
.ls .toggle_menu:before,
.ls .toggle_menu span,
.ls .toggle_menu span:before,
.ls .toggle_menu span:after {
  background-color: #323232;
}
.page_toplogo .toggle_menu {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  margin: 0;
}
.toggle_menu.mobile-active span:before {
  top: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.toggle_menu.mobile-active span:after {
  top: 13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle_menu:before,
.toggle_menu span,
.toggle_menu span:before,
.toggle_menu span:after {
  display: block;
  width: 31px;
  position: absolute;
  background-color: #ffffff;
  content: "";
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  height: 2px;
}
.toggle_menu:before,
.toggle_menu span {
  left: 13px;
  top: 24%;
  content: "menu";
  width: 0;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}
.toggle_menu span:before {
  opacity: 1;
  top: 0px;
}
.toggle_menu span:after {
  opacity: 1;
  top: 28px;
}
.toggle_menu.mobile-active {
  background-color: #63B3ED;
  border: none;
  left: auto;
  top: 0;
  right: 0;
  position: fixed;
  margin: 0;
  z-index: 3000;
}
.toggle_menu.mobile-active:before {
  background-color: #ffffff;
}
.toggle_menu.mobile-active span {
  background-color: #ffffff;
}
.toggle_menu.mobile-active span:before,
.toggle_menu.mobile-active span:after {
  opacity: 1;
}
.toggle_menu.active span:before,
.toggle_menu.active span:after {
  opacity: 1;
}

.toggle_menu.mobile-active:before {
  top: 32px;
}

.ls .toggle_menu:before, .toggle_menu span {
  color: #fff;
}

.toggle_menu.toggle_menu_side.ds {
  background-color: transparent;
}

/* Mobile Menu (max 991px) styles */
@media (max-width: 1199px) {
  .page_header [class*=col] {
    min-height: 0;
  }

  .top-nav {
    position: fixed;
    visibility: hidden;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: transparent;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .mobile-active .top-nav {
    visibility: visible;
    opacity: 1;
    background-color: #111;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1002;
  }

  .sf-menu {
    display: block;
    position: fixed;
    overflow: auto;
    background-color: #ffffff;
    border-top: 61px solid #63B3ED;
    padding: 20px 10px 20px 20px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 100%;
    text-align: left;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .mobile-active .sf-menu {
    opacity: 1;
    right: 0;
  }
  .sf-menu li {
    position: relative;
  }

  .top-nav .sf-menu a {
    color: #323232;
    z-index: 2;
    display: block;
    padding: 10px 10px;
  }

  .sf-menu ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 0 !important;
  }

  .sf-menu ul li a {
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  .sf-menu ul li a:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    background-color: #63B3ED;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: relative;
    bottom: 3px;
  }

  /* arrows (for all except IE7) */
  .sf-arrows .sf-with-ul {
    padding-right: 3.5em;
  }

  /* styling for both css and generated arrows */
  .sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
  }
  .sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler:after {
    font-family: "Font Awesome 5 Free";
    content: "\F105";
    color: #323232;
  }

  .sfHover > .sf-with-ul + .sf-menu-item-mobile-toggler:after {
    content: "\F107";
  }
}
/* Mega Menu */
@media screen and (min-width: 992px) {
  .top-nav ul .mega-menu ul {
    border: none;
    min-width: auto;
  }

  .top-nav .mega-menu {
    display: none;
    position: absolute;
    width: 940px;
    top: 100%;
    z-index: 10;
  }

  /* row */

  /* column */

  .top-nav ul ul .mega-menu {
    width: auto;
    top: -20px;
    margin-left: 1px;
    display: block;
  }
  .top-nav ul ul .mega-menu li {
    display: block;
    width: auto;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .top-nav .mega-menu {
    width: 1170px;
  }

  .top-nav ul .mega-menu ul {
    min-width: 10em;
  }
}
@media screen and (max-width: 991px) {
  .top-nav .mega-menu {
    position: static;
  }
}
/* side clickable menu styles */
.menu-click {
  padding: 0;
}
.menu-click i {
  width: 1em;
  text-align: center;
  margin-right: 10px;
}
.menu-click .toggle_submenu {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 8px;
  font-size: 8px;
  text-align: center;
  opacity: 0.9;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  transition: 0.25s ease-in-out;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  line-height: 3em;
}
.menu-click .toggle_submenu:before {
  top: 0;
  left: 0;
  position: absolute;
  width: 3em;
  height: 3em;
  line-height: 3em;
  font-family: "Font Awesome 5 Free";
  content: "\F078";
}
.menu-click ul {
  padding: 0;
}
.menu-click li {
  position: relative;
  list-style: none;
  width: 100%;
}
.menu-click > li {
  transition: 0.3s ease-in-out;
}
.menu-click a {
  display: block;
  padding: 10px 40px;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.menu-click a:hover {
  background-color: rgba(150, 150, 150, 0.05);
}
.menu-click .active-submenu > a {
  background-color: rgba(150, 150, 150, 0.05);
}
.menu-click .active-submenu > .toggle_submenu {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.menu-click li.active > a {
  color: #63B3ED;
}
.menu-click ul {
  opacity: 0;
  height: 0;
}
.menu-click ul a {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 50px;
}
.menu-click ul ul a {
  padding-left: 60px;
}
.menu-click ul ul ul a {
  padding-left: 70px;
}
.menu-click ul ul ul ul a {
  padding-left: 80px;
}
.menu-click .active-submenu > div.mega-menu {
  height: auto;
}
.menu-click .active-submenu > ul,
.menu-click .active-submenu > div.mega-menu > ul {
  opacity: 1;
  height: auto;
}
.menu-click ul, .menu-click div.mega-menu {
  height: 0;
  overflow: hidden;
  transition: opacity 0.6s, margin-top 0.4s, margin-bottom 0.4s, height 0.3s ease-in-out;
}
.menu-click ul li.sfHover > .mega-menu ul {
  display: block;
  height: 100%;
}
.menu-click div.mega-menu > ul {
  margin-right: 0;
  height: auto;
}

/*
** Header
*/
.page_header {
  transition: 0.5s ease-in-out;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  margin: 0;
  padding: 0;
  height: auto;
}
.boxed .page_header, .page_header.affix {
  position: fixed !important;
  z-index: 1001;
  box-shadow: 0 2px 15px 0 rgba(100, 100, 100, 0.05);
  opacity: 0.98;
}
.boxed .page_header:after, .page_header.affix:after {
  background-color: transparent;
}
@media (max-width: 991px) {
  .page_header.mobile-active {
    z-index: 1003;
    opacity: 1;
  }
}
.page_header.affix-bottom {
  top: 0 !important;
  position: fixed;
}
.page_header .row {
  min-height: 60px;
}
.page_header a {
  display: inline-block;
}
.page_header .btn {
  margin-bottom: 0;
  padding: 10px 28px;
}

.header_absolute {
  position: relative;
}
.header_absolute .page_header,
.header_absolute .page_header_wrapper {
  z-index: 10;
  position: absolute;
  right: 0;
  left: 0;
}
.header_absolute .page_topline,
.header_absolute .page_toplogo,
.header_absolute .page_header_wrapper,
.header_absolute .page_title {
  background-color: rgba(31, 39, 50, 0.5);
}
#canvas:not(.boxed) .header_absolute .page_header.affix-top {
  background-color: transparent;
}

.page_topline {
  line-height: 1.4;
}
.page_topline ul {
  margin: 0;
  padding: 0;
}
.page_topline ul li {
  display: inline-block;
}
.page_topline .dropdown-language a > img {
  max-width: 16px;
  position: relative;
  bottom: 1px;
  margin-right: 6px;
}

@media (min-width: 992px) {
  .page_toplogo .media + .media {
    margin-left: 60px;
  }
}
@media (max-width: 991px) {
  .page_toplogo .media {
    margin: 10px;
  }
}

@media (min-width: 1500px) {
  .page_topline .container-fluid,
.page_toplogo .container-fluid,
.page_header .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/*header includes*/

/*logo*/
a.logo {
  display: flex;
  align-items: center;
}
a.logo img {
  display: inline-block;
  max-height: 80px;
}
.text-center a.logo {
  justify-content: center;
  align-items: center;
}
.header_logo_center a.logo {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  z-index: 2;
}
.header_logo_center.affix a.logo {
  padding: 5px 0;
}
/*search modal*/

/*
** Side Header
*/
/* side header layout */
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
}

body,
body:after,
#canvas,
.page_header_side {
  transition: 0.5s ease-in-out;
}

#canvas {
  left: 0;
  transition-property: left, margin-left;
}

body.active-side-header {
  overflow: hidden;
}
body.active-side-header #canvas {
  left: 310px;
}
body.active-side-header .page_header_side {
  left: 0;
}
body.active-side-header:after {
  visibility: visible;
  opacity: 1;
}

html.html-active-push-header {
  overflow: hidden;
}

.page_header_side {
  z-index: 1002;
  position: fixed;
  width: 310px;
  left: -310px;
  top: 0;
  bottom: 0;
}
.page_header_side.active-slide-side-header {
  box-shadow: 0 0 4px 3px rgba(50, 50, 50, 0.05);
}
.page_header_side ~ .page_toplogo .toggle_menu {
  display: none;
}
.page_header_side a.logo {
  padding: 10px 20px;
  margin-bottom: 20px;
}
.page_header_side a.logo img {
  max-width: 100%;
}
.page_header_side .widget {
  margin-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .page_header_side ~ .page_topline .container-fluid, .page_header_side ~ .page_toplogo .container-fluid, .page_header_side ~ div .page_header .container-fluid {
    padding-left: 65px;
    padding-right: 65px;
  }
}
@media (max-width: 1199px) {
  .page_header_side ~ .page_topline [class*=container], .page_header_side ~ .page_toplogo [class*=container], .page_header_side ~ div .page_header [class*=container] {
    padding-left: 65px;
    padding-right: 65px;
  }
}

.toggle_menu_side {
  transition: right 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: -60px;
  margin: 0;
}
@media (max-width: 370px) {
  .toggle_menu_side.active {
    right: 0;
    opacity: 0.4;
  }
}
.toggle_menu_side:before, .toggle_menu_side span:before, .toggle_menu_side span:after, .toggle_menu_side span {
  background-color: #ffffff !important;
}
.ds .toggle_menu_side {
  background-color: #63B3ED;
}
.bs .toggle_menu_side {
  background-color: #63B3ED;
}
.ls .toggle_menu_side {
  background-color: transparent;
}

.page_header_side.header_side_sticked .toggle_menu_side {
  transition: 0.5s ease-in-out;
  right: -60px;
  top: 0;
}

.page_header_side.active-slide-side-header {
  left: 0;
}

.page_header_side.header_side_right {
  left: auto;
  right: -310px;
}
.page_header_side.header_side_right.active-slide-side-header {
  right: 0;
}
.page_header_side.header_side_right .toggle_menu_side {
  right: auto;
  transition: left 0.3s ease-in-out;
  left: -60px;
}
@media (max-width: 370px) {
  .page_header_side.header_side_right .toggle_menu_side.active {
    left: 0;
  }
}

body.active-side-header.slide-right #canvas {
  left: -310px;
}
body.active-side-header.slide-right .page_header_side {
  left: auto;
  right: 0;
}

@media (min-width: 600px) {
  .page_header_side.header_side_sticked.active-slide-side-header {
    left: 0;
  }

  .header_side_sticked ~ * {
    transition: margin 0.5s ease-in-out;
  }
  .header_side_sticked ~ * .container-fluid {
    padding-left: 80px;
  }

  .header_side_sticked ~ div .page_header {
    width: auto;
  }

  .header_side_sticked.active-slide-side-header ~ *,
.header_side_sticked.active-slide-side-header ~ div .page_header {
    margin-left: 310px;
  }

  .boxed .header_side_sticked.active-slide-side-header ~ *,
.boxed .header_side_sticked.active-slide-side-header ~ div .page_header {
    margin-left: 0;
  }

  .header_side_sticked ~ .page_header_wrapper {
    margin: 0 !important;
  }

  .page_header_side.header_side_sticked.header_side_right.active-slide-side-header {
    left: auto;
  }

  .header_side_sticked.header_side_right.active-slide-side-header ~ *,
.header_side_sticked.header_side_right.active-slide-side-header ~ div .page_header {
    margin-left: 0;
    margin-right: 310px;
  }
}
/* /* 
** Intro Section Styles
*/
.page_slider {
  position: relative;
  overflow: hidden;
  clear: both;
}
.page_slider > img {
  width: 100%;
}
.page_slider h2 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 95px;
  line-height: 1;
}
.page_slider h3 {
  font-weight: 300;
  line-height: 40px;
}
.page_slider h4 {
  font-size: 1.5em;
  margin: 0;
}
.page_slider p {
  font-size: 1.2em;
  margin: 0;
}
@media (min-width: 992px) {
  .page_slider h2 {
    font-size: 6em;
  }
  .page_slider h3 {
    font-size: 80px;
  }
  .page_slider h4 {
    font-size: 2.5em;
  }
  .page_slider p {
    font-size: 1.7em;
  }
}
.page_slider .flexslider .slides .intro_slider {
  z-index: 10;
}
.page_slider .flexslider:before, .page_slider .flexslider:after {
  content: "";
  display: block;
  clear: both;
}
.page_slider .flexslider .intro_layer img {
  width: auto;
  display: inline-block;
}
.page_slider .intro_layers_wrapper {
  display: flex;
}
.page_slider .intro_after_featured_word {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8em;
  text-transform: uppercase;
}
.page_slider .intro_layers {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
@media (min-width: 991px) {
  .page_slider .intro_layers {
    padding: 150px 0 20px 0;
  }
}
.page_slider .flex-control-nav {
  position: absolute;
  width: 100%;
  bottom: 55px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .page_slider .flex-control-nav {
    display: none;
  }
}
.page_slider .flex-control-nav li {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
}
.page_slider .flex-control-nav li a {
  border-color: #ffffff;
  background: #ffffff;
  opacity: 0.5;
}
.page_slider .flex-control-nav li a.flex-active {
  opacity: 1;
}
@media (min-width: 767px) {
  .page_slider .cs,
.page_slider .ds {
    background-color: transparent;
  }
  .page_slider .container-fluid,
.page_slider .container,
.page_slider img + .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .page_slider [class*=col-] {
    position: static;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .page_slider .intro_layers_wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    left: 15px;
    height: 107%;
    z-index: 5;
  }
}
@media (min-width: 767px) and (min-width: 600px) {
  .boxed .page_slider .intro_layers_wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 767px) {
  .page_slider .intro_before_featured_word {
    line-height: 0.8;
    font-size: 37px;
    margin: 0;
    padding: 0 0.2em;
    text-align: center;
    font-weight: 200;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 767px) {
  .page_slider .intro_featured_word {
    line-height: 0.9;
    white-space: nowrap;
    font-size: 80px;
    margin: 10px 0;
    text-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 767px) {
  .page_slider .intro_after_featured_word {
    margin-top: 60px;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8em;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 767px) {
  .page_slider .embed-responsive {
    display: none !important;
  }
  .page_slider .intro_layers {
    margin-top: 100px;
  }
  .page_slider .intro_featured_word {
    font-size: 56px;
    margin-top: 6px;
  }
  .page_slider .intro_before_featured_word {
    font-size: 24px;
    font-weight: 200;
    margin-top: 0;
  }
  .page_slider .intro_after_featured_word {
    color: #fff;
    font-size: 12px;
    margin-top: 39px;
    letter-spacing: 0.8em;
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  .page_slider .intro_layers_wrapper {
    padding: 100px 0;
  }
  .page_slider .intro_before_featured_word {
    font-size: 28px;
  }
  .page_slider .intro_featured_word {
    font-size: 70px;
  }
  .page_slider .intro_after_featured_word {
    font-size: 12px;
    letter-spacing: 0.8em;
    margin-bottom: 31px;
    color: #fff;
  }
}
@media (min-width: 1600px) {
  .page_slider .intro_before_featured_word {
    font-size: 30px;
  }
  .page_slider .intro_featured_word {
    font-size: 110px;
    white-space: nowrap;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .container .page_slider .intro_featured_word {
    font-size: 138px;
  }
}
@media (max-width: 991px) {
  .page_slider {
    text-align: center;
  }
}

.page_slider .flexslider .slides li:before {
  content: "";
  background-image: url("../img/pattern.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 432px;
  height: 432px;
  z-index: 4;
  top: 46%;
  left: 50%;
  margin-top: -216px;
  margin-left: -230px;
}
@media (max-width: 991px) {
  .page_slider .flexslider .slides li:before {
    display: none;
  }
}

.flexslider-overlay {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 39, 50, 0.7);
  z-index: 3;
}

.flexslider-bottom:before {
  content: "";
  background-color: #ffffff;
  width: 50%;
  height: 70px;
  position: absolute;
  bottom: -35px;
  left: 0;
  -webkit-transform: skewY(3deg);
  transform: skewY(3deg);
  z-index: 4;
}
.flexslider-bottom:after {
  content: "";
  background-color: #ffffff;
  width: 50%;
  height: 70px;
  position: absolute;
  bottom: -35px;
  right: 0;
  -webkit-transform: skewY(-3deg);
  transform: skewY(-3deg);
  z-index: 4;
}

.flexslider-bottom .mouse-button {
  content: "";
  background-image: url("../img/mouse_icon.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 40px;
  height: 60px;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  margin-left: -20px;
}

@media (min-width: 767px) {
  .page_slider .slide2 .embed-responsive {
    min-width: 1400px;
  }
}
@media (min-width: 1000px) {
  .page_slider .slide2 .embed-responsive {
    min-width: 1700px;
  }
}
.page_slider .slide2 .intro_before_featured_word {
  font-size: 60px;
}
@media (max-width: 767px) {
  .page_slider .slide2 .intro_before_featured_word {
    font-size: 29px;
    font-weight: 200;
    margin-top: 44px;
  }
}
@media (min-width: 768px) {
  .page_slider .slide2 .intro_before_featured_word {
    margin-top: 0px;
    font-size: 30px;
  }
}
.page_slider .slide2 .intro_featured_word {
  margin-top: 19px;
  font-weight: 200;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .page_slider .slide2 .intro_featured_word {
    font-size: 56px;
    margin-top: 7px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .page_slider .slide2 .intro_featured_word {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.page_slider .slide2 .page-bottom {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .page_slider .slide2 .page-bottom {
    margin: 50px 0 60px;
  }
}
.page_slider .slide2 .intro_layers_wrapper {
  height: 100%;
}
.page_slider .slide2 .intro_after_featured_word {
  letter-spacing: 0.8em;
  margin-left: 27px;
}
@media (max-width: 767px) {
  .page_slider .slide2 .intro_after_featured_word {
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    letter-spacing: 0.8em;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  .page_slider .slide2 .intro_after_featured_word {
    margin-top: 10px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .page_slider .slide2 .btn {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) {
  .page_slider .slide2 .btn {
    padding: 15px 30px;
  }
}
@media (min-width: 1100px) {
  .page_slider .slide2 .btn {
    padding: 15px 30px;
  }
}
.page_slider .slide2 .tp-reviews {
  margin-top: 70px;
}
.page_slider .slide2 .tp-reviews .tp-review {
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .page_slider .slide2 .tp-reviews .tp-review.hide-mobile {
    display: none;
  }
}
.page_slider .slide2 .tp-reviews .tp-review .tp-stars {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}
.page_slider .slide2 .tp-reviews .tp-review h4 {
  font-size: 18px;
  font-weight: 400;
}
.page_slider .slide2 .tp-reviews .tp-review p {
  font-size: 13px;
  color: #fff;
  font-style: italic;
}

.page_slider .flexslider .slides li.slide2:before {
  margin-left: -215px;
}

.intro_layers {
  z-index: 10;
}

/* 
** Template Specific Styles
*/
#box_wrapper > section,
#box_wrapper > div > section {
  overflow: hidden;
}

#box_wrapper > section.page_topline,
#box_wrapper > section.page_toplogo,
#box_wrapper > section.overflow-visible,
#box_wrapper > div > section.overflow-visible {
  overflow: visible;
}

a.btn {
  min-width: 230px;
}

.mb-25 {
  margin-bottom: 25px;
}

.divider-5 {
  margin-top: 5px;
}

.divider-35 {
  margin-top: 35px;
}

.divider-45 {
  margin-top: 45px;
}

.divider-75 {
  margin-top: 75px;
}

.divider-85 {
  margin-top: 85px;
}

.page_title h1,
.page_title h2 {
  line-height: 1;
}
@media (min-width: 992px) {
  .page_title h1,
.page_title h2 {
    font-size: 54px;
  }
  .page_title h1:last-child,
.page_title h2:last-child {
    margin-bottom: 0;
  }
}

/*footer social buttons that hidden on half of their height*/
.page_footer {
  /*overriding Bootstrap Addons buttons*/
}
.page_footer.s-parallax {
  background-image: url("../img/parallax/footer_bg.png");
}
@media (min-width: 576px) {
  .page_footer a.border-icon:before {
    width: 4.2em;
    height: 4.2em;
    line-height: 4.2em;
  }
}
.page_footer .col-md-12 .widget_social_buttons {
  margin-bottom: 30px;
}
.page_footer .col-md-12 .widget_social_buttons a {
  margin: 0 10px 70px;
}
@media (min-width: 1200px) {
  .page_footer .col-md-12 .widget_social_buttons a {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    margin-bottom: 0;
  }
  .page_footer .col-md-12 .widget_social_buttons a:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.margin {
  margin-top: -120px;
  margin-left: 12px;
}

.page_copyright {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2em;
}
 .page_copyright.s-parallax {
  background-color: #63B3ED;
}

@media (max-width: 991px) {
  .service-item2 h6 {
    margin-bottom: 5px;
    font-size: 25px;
  }
}
.service-item2 img {
  max-width: 90px;
}
.service-item2 .vertical-item .item-content {
  padding-top: 23px;
}
@media (max-width: 767px) {
  .service-item2 .vertical-item .item-content {
    padding-top: 10px;
  }
}

.btn-link {
  color: #63B3ED;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn-link:hover {
  color: #1f2732;
  text-decoration: none;
}

.form-group .btn-maincolor {
  margin-top: 6px;
}

.header_phone {
  margin-left: 10px;
}
.header_phone h6 {
  font-size: 24px;
  font-weight: 200;
}
.header_phone span {
  color: #63B3ED;
}

.testimonials-btn {
  margin-bottom: -80px;
}
@media (max-width: 767px) {
  .testimonials-btn {
    margin-bottom: -85px;
  }
}
.testimonials-btn a {
  position: relative;
  text-align: center;
  background-color: #63B3ED;
  border: 3px solid #63B3ED;
  border-radius: 50%;
  z-index: 100;
  padding: 25px;
}
@media (max-width: 767px) {
  .testimonials-btn a {
    top: 25px;
  }
}
.testimonials-btn a:hover {
  border: 3px solid #63B3ED;
}
.testimonials-btn a i {
  line-height: 70px;
  font-size: 30px;
}
.team h6 {
  margin-bottom: 10px;
}

.teaser-icon img {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .teaser-icon img {
    margin-top: 35px;
  }
}

.white-button {
  display: block;
  position: relative;
  bottom: -40px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .white-button {
    margin-bottom: 3px;
  }
}
.white-button .white-btn {
  background-color: #fff;
  color: #1f2732;
  border: none;
  padding: 30px 61px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.white-button .white-btn:hover {
  background-color: #63B3ED;
  color: #fff;
}

h4.margin {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  h4.margin {
    margin: 35px 0 7px;
  }
}

.process-part.layout-2 {
  background: none;
}
.process-part.layout-2 .step-center-part img {
  max-width: 190px;
  border: 10px solid rgba(31, 39, 50, 0.05);
  border-radius: 50%;
}
.process-part.layout-2 h2.step-title {
  font-size: 24px;
  margin-top: 24px;
  margin-right: -7px;
}
.process-part.layout-2 h1.step-title {
  width: 100%;
  font-size: 120px;
  font-weight: 600;
  letter-spacing: -12px;
}
.process-part.layout-2 .step-right-part {
  position: relative;
  left: -19%;
}
@media (max-width: 991px) {
  .process-part.layout-2 .step-right-part {
    left: 0%;
  }
}
.process-part.layout-2 .step-right-part .step-text {
  margin: 0;
}
.process-part.layout-2 .step-left-part {
  position: relative;
  top: 13px;
  left: 16%;
}
@media (max-width: 991px) {
  .process-part.layout-2 .step-left-part {
    left: 0%;
  }
}
.process-part.layout-2 .right .step-left-part {
  margin: 0;
  left: -11%;
}
@media (max-width: 991px) {
  .process-part.layout-2 .right .step-left-part {
    left: 0%;
  }
}
.process-part.layout-2 .right .step-left-part h1.step-title {
  letter-spacing: -8px;
}
.process-part.layout-2 .right .step-left-part h2.step-title {
  margin-left: -23px;
}
.process-part.layout-2 .right .step-right-part {
  position: relative;
  left: 21%;
}
@media (max-width: 991px) {
  .process-part.layout-2 .right .step-right-part {
    left: 0%;
  }
}
.process-part.layout-2 .right .step-right-part .step-text {
  margin: 0;
}
.process-part.layout-2 .part3 h1.step-title {
  letter-spacing: -9px;
}
@media (max-width: 991px) {
  .process-part.layout-2 .part3 h1.step-title {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .process-part.layout-2 .step-title {
    margin-top: 65px;
  }
}

.introduction-section h5 {
  font-size: 31px;
  padding: 0 80px;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 34px;
}
@media (max-width: 1199px) {
  .introduction-section h5 {
    font-size: 26px;
    padding: 0;
    margin-bottom: 23px;
    line-height: 25px;
  }
}
.introduction-section p strong {
  color: #1f2732;
}

.text-section {
  overflow: visible !important;
  margin-bottom: -39px;
}
@media (max-width: 767px) {
  .text-section {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .text-section {
    margin-bottom: -30px;
  }
}
.text-section .content h1 {
  line-height: 50px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .text-section .content h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.text-section .img-wrap {
  position: relative;
  top: 10px;
  z-index: 9;
}

.page_footer.corner-footer:before {
  content: "";
  background-color: #1f2732;
  background-image: url("../img/texture_dark.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 290px;
  position: absolute;
  top: -30px;
  left: 0;
  -webkit-transform: skewY(3deg);
          transform: skewY(3deg);
}

.page_footer.corner-footer:after {
  content: "";
  background-color: #1f2732;
  background-image: url("../img/texture_dark.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 290px;
  position: absolute;
  top: -30px;
  right: 0;
  opacity: 1;
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
}

.about h5 {
  font-weight: 300;
  line-height: 36px;
}

@media (max-width: 1199px) {
  .page_slider.layout-2 {
    margin-top: -20px;
  }
}

.light-copy p {
  color: #fff;
  font-weight: 700;
}

.page_topline {
  z-index: 3;
}

.ds .page-bottom {
  margin-top: 77px;
}
@media (max-width: 991px) {
  .ds .page-bottom {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.ds .page-bottom a.btn-maincolor:hover {
  background-color: transparent;
  color: #fff;
}
.ds .page-bottom a.btn-outline-maincolor {
  color: #fff;
}
.ds .page-bottom a.btn-outline-maincolor:hover {
  background-color: #63B3ED;
}

.s-parallax.copyright {
  background-repeat: repeat;
}

.process-part {
  background-image: url("../img/texture_dark.jpg");
}
.process-part.skew_right {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  margin-left: -100px;
  margin-right: -100px;
  z-index: 5;
}
@media (max-width: 767px) {
  .process-part.skew_right {
    margin: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.process-part.skew_right .container {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
@media (max-width: 767px) {
  .process-part.skew_right .container {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.process-part .step-center-part img {
  max-width: 270px;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.process-part .step-title {
  font-size: 54px;
  margin-right: -30px;
}
@media (max-width: 991px) {
  .process-part .step-title {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 0px;
    text-align: center;
  }
}
.process-part .step-title span {
  position: absolute;
  top: 1px;
  width: 100%;
  font-size: 200px;
  font-weight: 600;
  z-index: -1;
  letter-spacing: 1px;
  left: -48%;
}
@media (max-width: 991px) {
  .process-part .step-title span {
    position: relative;
    top: 1px;
    width: 100%;
    font-size: 80px;
    font-weight: 600;
    z-index: -1;
    letter-spacing: 5px;
    left: 0;
    top: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1600px) {
  .process-part .step-title span {
    font-size: 180px;
  }
}
.process-part .step-text {
  margin-left: -30px;
}
@media (max-width: 991px) {
  .process-part .step-text {
    margin: 0;
    text-align: center;
  }
}
.process-part .right .step-title {
  margin-left: -30px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .process-part .right .step-title {
    margin-top: 40px;
    margin-left: 0;
  }
}
.process-part .right .step-title span {
  position: absolute;
  top: 1px;
  left: 36%;
}
@media (max-width: 991px) {
  .process-part .right .step-title span {
    position: relative;
    top: 1px;
    left: 0;
    top: 10px;
  }
}
.process-part .right .step-text {
  margin-right: -30px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .process-part .right .step-text {
    margin: 0;
  }
}
.process-part .right .part4 span {
  left: 32%;
}
@media (max-width: 991px) {
  .process-part .right .part4 span {
    position: relative;
    top: 1px;
    left: 0;
    top: 10px;
  }
}
.process-part .right .step-center-part:after {
  background-image: url("../img/left_arrow.png");
  right: auto;
  left: 55px;
}
@media (max-width: 991px) {
  .process-part .right .step-center-part:after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .process-part .right .step-center-part:after {
    left: 19px;
  }
}
@media (max-width: 991px) {
  .process-part .part3 {
    margin-top: 40px;
  }
}
.process-part .part3 span {
  left: -34%;
}
@media (max-width: 991px) {
  .process-part .part3 span {
    position: relative;
    left: 0;
    top: 10px;
  }
}
.process-part .step-center-part:after {
  content: "";
  background-image: url("../img/right_arrow.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 34px;
  height: 136px;
  z-index: 4;
  bottom: -97px;
  right: 55px;
}
@media (max-width: 991px) {
  .process-part .step-center-part:after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .process-part .step-center-part:after {
    right: 19px;
  }
}

section.top_white_line_big .container:before {
  content: "";
  background-image: url("../img/white_line_big.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 4px;
  height: 134px;
  z-index: 4;
  top: 0;
  left: 50%;
  margin-left: -2px;
}

.step-center-part.last:after {
  display: none;
}

.sf-menu > li.sf-logo-li > a:after {
  display: none;
}

.maintenance {
  margin-top: -60px;
}

.search-box {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 40px;
  height: 60px;
  padding: 0 10px;
}
.search-box i {
  color: #1f2732;
}
.search-box i:hover {
  color: #63B3ED;
}
@media (max-width: 991px) {
  .search-box {
    display: none;
  }
}

.search-btn {
  color: #e74c3c;
  float: right;
  width: 40px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.search-box:hover > .search-text {
  width: 240px;
  transition: 0.8s;
}

.search-box:hover > .search-btn {
  background: white;
}

input[type=text].search-text {
  border: none;
  background: none;
  outline: none;
  color: #7f7f7f;
  font-size: 12px;
  transition: 0.4s;
  line-height: 40px;
  width: 0px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.page_header.ds.affix .search-box {
  display: none;
}

.margin-negative {
  margin-top: -120px;
  margin-left: 12px;
}
@media (max-width: 767px) {
  .margin-negative {
    margin-left: 10px;
  }
}

h1.sub-page-title {
  font-weight: 400;
  color: white;
}

h2.sub-page-subtitle {
  color: white;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 5px;
}

.embed-responsive {
  margin-top: -60px;
}

#cta_section .personal-image {
  max-width: 170px;
  border-radius: 50% !important;
}
#cta_section .teaser-icon img {
  height: 45px;
  margin: 0 auto;
}

#trustpilot a {
  background-color: #3ab67b;
  color: #fff;
  border: none;
  padding: 18px 40px;
}
#trustpilot .tp-reviews .tp-review {
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 991px) {
  #trustpilot .tp-reviews .tp-review.hide-mobile {
    display: none;
  }
}
#trustpilot .tp-reviews .tp-review .tp-stars {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}
#trustpilot .tp-reviews .tp-review h4 {
  font-size: 18px;
  font-weight: 400;
}
#trustpilot .tp-reviews .tp-review p {
  font-size: 13px;
  color: #323232;
  font-style: italic;
}

.sub-page {
  margin-top: 150px;
}

.page_title.sub-page:before {
  content: "";
  background-image: url("../img/texture_dark.jpg");
  width: 50%;
  height: 400px;
  position: absolute;
  bottom: 30px;
  left: 0;
  -webkit-transform: skewY(3deg);
          transform: skewY(3deg);
  z-index: 0;
}

.page_title.sub-page:after {
  content: "";
  background-image: url("../img/texture_dark.jpg");
  width: 50%;
  height: 400px;
  position: absolute;
  bottom: 30px;
  right: 0;
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
  z-index: -1;
}

#accordion .faq-items .faq-item h4 {
  color: #63B3ED;
  cursor: pointer;
}
#accordion .faq-items .faq-item h4.collapsed {
  color: #212529;
}
#accordion .faq-items .faq-item h4::after {
  top: -3px;
}

.page_footer {
  margin-top: 100px;
}

.service-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.font-size-xs {
  font-size: 16px !important;
}

.font-size-sm {
  font-size: 26px !important;
}

.font-size-md {
  font-size: 30px !important;
}

.font-size-xl {
  font-size: 48px !important;
}

@media (max-width: 1199px) {
  .font-size-xs {
    font-size: 14px !important;
  }

  .font-size-sm {
    font-size: 20px !important;
  }

  .font-size-md {
    font-size: 24px !important;
  }

  .font-size-xl {
    font-size: 44px !important;
  }

  .sub-page {
    margin-top: 100px;
  }

  .page_title.sub-page:before {
    height: 350px;
  }

  .page_title.sub-page:after {
    height: 350px;
  }

  a.logo img {
    max-height: 40px !important;
  }
}
@media (max-width: 767px) {
  .sub-page {
    margin-top: 50px;
  }

  .page_title.sub-page:before {
    height: 300px;
  }

  .page_title.sub-page:after {
    height: 300px;
  }
}
.case-item .case-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 5px;
  margin: 0;
  text-transform: uppercase;
  line-height: normal;
}
.case-item .case-subtitle {
  margin-bottom: 5px;
}
.case-item hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 2px solid #63b3ed;
}

.item-media {
  color: #5c6c77;
}

hr.primary {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 2px solid #63b3ed;
}

.tech-badges .badge {
  background-color: rgba(99, 179, 237, 0.69019);
  font-weight: 600;
  padding: 0.5em 0.6em;
  letter-spacing: 0.1rem;
  font-size: 11px;
}

.tech-logo {
  width: 48px !important;
  height: 48px !important;
}

.hovereffect {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: #63B3ED;
}

.hovereffect .overlay {
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 20px);
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hovereffect:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hovereffect h4 {
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  overflow: hidden;
  padding: 10px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.4);
}

.hovereffect h4:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  content: "";
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.hovereffect:hover h4:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hovereffect p {
  color: #FFF;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.hovereffect:hover p {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.submit-animate:after {
  content: "Send besked";
}

.submit-clicked {
  padding: 20px !important;
  border-color: #63B3ED;
  border-width: 3px;
  font-size: 0;
  border-left-color: #a0ce4e;
  -webkit-animation: rotating 2s 0.25s linear infinite;
          animation: rotating 2s 0.25s linear infinite;
}
.submit-clicked:after {
  content: "";
}
.submit-clicked:hover {
  color: #63B3ED;
  background: white;
}

.submit-validate {
  font-size: 13px;
  color: white;
  background: #63B3ED;
}
.submit-validate:after {
  font-family: "Font Awesome 5 Free";
  content: "\F00C";
}

.submit-validate-failed {
  font-size: 13px;
  color: white;
  border-color: #fc8181;
  background: #fc8181;
}
.submit-validate-failed:after {
  font-family: "Font Awesome 5 Free";
  content: "\F00D";
}
.submit-validate-failed:hover {
  border-color: #fc8181 !important;
  background: #fc8181 !important;
}

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

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.flex-direction-nav {
  display: none !important;
}

#toTop {
  display: none;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: fixed;
  text-decoration: none;
  z-index: 9999;
  font-size: 0;
  color: transparent;
  background-color: #63b3ed;
  border-radius: 50%;
  opacity: 0.7;
}
#toTop i {
  color: #fff;
  font-size: 16px;
  line-height: 47px;
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.2s linear;
}

#toTop:hover {
  bottom: 3px;
  opacity: 1;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}