/* Minification failed. Returning unminified contents.
(706,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(707,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(708,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(709,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(710,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(711,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(712,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(713,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(714,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(715,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(716,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(717,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(718,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(719,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(720,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(721,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(722,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(723,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(724,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(725,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(726,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(727,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(728,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(729,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(730,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(731,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(732,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(733,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4718,1): run-time error CSS1019: Unexpected token, found '@import'
(4718,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap")'
(4719,1): run-time error CSS1019: Unexpected token, found '@import'
(4719,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap")'
(4839,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(4840,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(4846,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(4847,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(5411,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(5412,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(5428,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(5429,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(5806,82): run-time error CSS1046: Expect comma, found '163'
(5806,90): run-time error CSS1046: Expect comma, found '/'
(5807,74): run-time error CSS1046: Expect comma, found '163'
(5807,82): run-time error CSS1046: Expect comma, found '/'
(6054,78): run-time error CSS1046: Expect comma, found '163'
(6054,86): run-time error CSS1046: Expect comma, found '/'
(6055,70): run-time error CSS1046: Expect comma, found '163'
(6055,78): run-time error CSS1046: Expect comma, found '/'
(6302,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(6303,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(6310,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(6311,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(6318,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(6319,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(6326,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(6327,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(6334,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(6335,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
 */
@charset "UTF-8";

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@font-face {
    font-family: "flaticon";
    src: url("../fonts-31/") format("truetype"),
url("../fonts-31/flaticon.woff?bdee1994ba87c3b53fda49286cf3f509") format("woff"),
url("../fonts-31/flaticon.woff2?bdee1994ba87c3b53fda49286cf3f509") format("woff2"),
url("../fonts-31/flaticon.eot?bdee1994ba87c3b53fda49286cf3f509#iefix") format("embedded-opentype"),
url("../fonts-31/flaticon.svg?bdee1994ba87c3b53fda49286cf3f509#flaticon") format("svg");
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flaticon-menu:before {
    content: "\f101";
}

.flaticon-right-arrow:before {
    content: "\f102";
}

.flaticon-fast-forward:before {
    content: "\f103";
}

.flaticon-bank:before {
    content: "\f104";
}

.flaticon-phone-call:before {
    content: "\f105";
}

.flaticon-team:before {
    content: "\f106";
}

.flaticon-left-arrow:before {
    content: "\f107";
}

.flaticon-customer:before {
    content: "\f108";
}

.flaticon-add:before {
    content: "\f109";
}

.flaticon-idea:before {
    content: "\f10a";
}

.flaticon-project-management:before {
    content: "\f10b";
}

.flaticon-link:before {
    content: "\f10c";
}

.flaticon-home:before {
    content: "\f10d";
}

.flaticon-tax:before {
    content: "\f10e";
}

.flaticon-investment:before {
    content: "\f10f";
}

.flaticon-bank-1:before {
    content: "\f110";
}

.flaticon-menu-1:before {
    content: "\f111";
}

.flaticon-ui:before {
    content: "\f112";
}

.flaticon-design:before {
    content: "\f113";
}

.flaticon-concept:before {
    content: "\f114";
}

.flaticon-app:before {
    content: "\f115";
}

.flaticon-projects:before {
    content: "\f116";
}

.flaticon-planet-earth:before {
    content: "\f117";
}

.flaticon-team-1:before {
    content: "\f118";
}

.flaticon-happy:before {
    content: "\f119";
}

.flaticon-download:before {
    content: "\f11a";
}

.flaticon-customize:before {
    content: "\f11b";
}

.flaticon-ux-design:before {
    content: "\f11c";
}

.flaticon-responsive-design:before {
    content: "\f11d";
}

.flaticon-quotes:before {
    content: "\f11e";
}

.flaticon-user:before {
    content: "\f11f";
}

.flaticon-calendar:before {
    content: "\f120";
}

.flaticon-telephone-call:before {
    content: "\f121";
}

.flaticon-store:before {
    content: "\f122";
}

.flaticon-review:before {
    content: "\f123";
}

.flaticon-speedometer:before {
    content: "\f124";
}

.flaticon-rating:before {
    content: "\f125";
}

.flaticon-customer-service:before {
    content: "\f126";
}

.flaticon-achievement:before {
    content: "\f127";
}

.flaticon-medical-result:before {
    content: "\f128";
}

.flaticon-management:before {
    content: "\f129";
}

.flaticon-right-arrow-1:before {
    content: "\f12a";
}

.flaticon-coding:before {
    content: "\f12b";
}

.flaticon-right-arrow-2:before {
    content: "\f12c";
}

.flaticon-play-button:before {
    content: "\f12d";
}

.flaticon-tag:before {
    content: "\f12e";
}

.flaticon-user-1:before {
    content: "\f12f";
}

.flaticon-price-tag:before {
    content: "\f130";
}

.flaticon-content-writing:before {
    content: "\f131";
}

.flaticon-user-experience:before {
    content: "\f132";
}

.flaticon-social-media-marketing:before {
    content: "\f133";
}

.flaticon-research:before {
    content: "\f134";
}

.flaticon-repair:before {
    content: "\f135";
}

.flaticon-programming:before {
    content: "\f136";
}

.flaticon-bubble-chat:before {
    content: "\f137";
}

.flaticon-website:before {
    content: "\f138";
}

.flaticon-email:before {
    content: "\f139";
}

.flaticon-profit:before {
    content: "\f13a";
}

.flaticon-choose:before {
    content: "\f13b";
}

.flaticon-video-camera:before {
    content: "\f13c";
}

.flaticon-camera:before {
    content: "\f13d";
}

.flaticon-share:before {
    content: "\f13e";
}

.flaticon-scan:before {
    content: "\f13f";
}

.flaticon-check-mark:before {
    content: "\f140";
}

.flaticon-crop:before {
    content: "\f141";
}

.flaticon-steps:before {
    content: "\f142";
}

.flaticon-audio-waves:before {
    content: "\f143";
}

.flaticon-megaphone:before {
    content: "\f144";
}

.flaticon-home-1:before {
    content: "\f145";
}

.flaticon-twitter:before {
    content: "\f146";
}

.flaticon-instagram:before {
    content: "\f147";
}

.flaticon-link-1:before {
    content: "\f148";
}

.flaticon-cyber-security:before {
    content: "\f149";
}

.flaticon-customer-support:before {
    content: "\f14a";
}

.flaticon-security:before {
    content: "\f14b";
}

.flaticon-quote:before {
    content: "\f14c";
}

.flaticon-account:before {
    content: "\f14d";
}

.flaticon-pin:before {
    content: "\f14e";
}

.flaticon-time:before {
    content: "\f14f";
}

.flaticon-feedback:before {
    content: "\f150";
}

.flaticon-facebook-logo:before {
    content: "\f151";
}

.flaticon-website-1:before {
    content: "\f152";
}

.flaticon-ux-design-1:before {
    content: "\f153";
}

.flaticon-right-arrows:before {
    content: "\f154";
}

.flaticon-help:before {
    content: "\f155";
}


/*.fa, .fas, .far, .fal, .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;
}*/
.fa,
.fas,
.far,
.fal,
.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;
}
.fa-check-circle:before {
    content: "\f058";
}

.fa-instagram:before {
    content: "\f16d";
}

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

.fa-home:before {
    content: "\f015";
}
.fa-location-arrow:before {
    content: "\f124";
}
.fa-phone:before {
    content: "\f095";
}
.fa-times:before {
    content: "\f00d";
}
.fa-youtube:before {
    content: "\f167";
}
.fab {
    font-family: 'Font Awesome 5 Brands';
}
.fa, .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
    font-family: 'Font Awesome 5 Brands';
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-facebook-f:before {
    content: "\f39e";
}
.fa-chevron-up:before {
    content: "\f077";
}
.fa-bars:before {
    content: "\f0c9";
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left
}

    .cd-words-wrapper b {
        display: inline-block;
        position: absolute;
        white-space: nowrap;
        left: 0;
        top: 0
    }

        .cd-words-wrapper b.is-visible {
            position: relative
        }


.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top
}

    .cd-headline.clip .cd-words-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 100%;
        background-color: #aebcb9
    }

.cd-headline.clip b {
    opacity: 0
}

    .cd-headline.clip b.is-visible {
        opacity: 1
    }



: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, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}



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

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



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

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





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



b,
strong {
    font-weight: bolder;
}



a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}


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



table {
    border-collapse: collapse;
}


th {
    text-align: inherit;
}


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

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

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

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


.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;
    }
}



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



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



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



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


@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

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

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

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

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

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

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

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

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

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

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

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

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

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

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

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

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

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

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

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

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

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

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

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

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

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

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

    .offset-md-2 {
        margin-left: 16.666667%;
    }

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

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

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

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

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

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

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

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

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

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

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

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

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

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

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

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

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

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

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

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

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

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

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

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

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

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

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

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

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

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

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

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

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

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

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

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

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

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

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

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table td,
    .table th {
        padding: 0.35rem;
        vertical-align: top;
        border-top: 3px solid #bfc1c3;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 3px solid #bfc1c3;
    }



.table-bordered {
    border: 1px solid #bfc1c3;
}

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #bfc1c3;
    }

    .table-bordered thead td,
    .table-bordered thead th {
        border-bottom-width: 2px;
    }


@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-sm > .table-bordered {
            border: 0;
        }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-md > .table-bordered {
            border: 0;
        }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-lg > .table-bordered {
            border: 0;
        }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-xl > .table-bordered {
            border: 0;
        }
}



@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

@media (min-width: 576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-plaintext {
        display: inline-block;
    }

    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto;
    }

    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }

    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }

    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}


@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}


.fade {
    transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}


@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

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

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #007bff;
    }



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

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


@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .navbar-expand-sm .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

        .navbar-expand-sm > .container,
        .navbar-expand-sm > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

        .navbar-expand-sm .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
        }

        .navbar-expand-sm .navbar-toggler {
            display: none;
        }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .navbar-expand-md .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

        .navbar-expand-md > .container,
        .navbar-expand-md > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

        .navbar-expand-md .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
        }

        .navbar-expand-md .navbar-toggler {
            display: none;
        }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .navbar-expand-lg .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-expand-lg .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

        .navbar-expand-lg > .container,
        .navbar-expand-lg > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

        .navbar-expand-lg .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
        }

        .navbar-expand-lg .navbar-toggler {
            display: none;
        }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .navbar-expand-xl .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

        .navbar-expand-xl > .container,
        .navbar-expand-xl > .container-fluid {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

        .navbar-expand-xl .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
        }

        .navbar-expand-xl .navbar-toggler {
            display: none;
        }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (min-width: 576px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

        .card-deck .card {
            display: -ms-flexbox;
            display: flex;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px;
        }
}


@media (min-width: 576px) {
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .card-group > .card {
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:first-child {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:first-child .card-header,
                .card-group > .card:first-child .card-img-top {
                    border-top-right-radius: 0;
                }

                .card-group > .card:first-child .card-footer,
                .card-group > .card:first-child .card-img-bottom {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:last-child {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:last-child .card-header,
                .card-group > .card:last-child .card-img-top {
                    border-top-left-radius: 0;
                }

                .card-group > .card:last-child .card-footer,
                .card-group > .card:last-child .card-img-bottom {
                    border-bottom-left-radius: 0;
                }

            .card-group > .card:only-child {
                border-radius: 0.25rem;
            }

                .card-group > .card:only-child .card-header,
                .card-group > .card:only-child .card-img-top {
                    border-top-left-radius: 0.25rem;
                    border-top-right-radius: 0.25rem;
                }

                .card-group > .card:only-child .card-footer,
                .card-group > .card:only-child .card-img-bottom {
                    border-bottom-right-radius: 0.25rem;
                    border-bottom-left-radius: 0.25rem;
                }

            .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
                border-radius: 0;
            }

                .card-group > .card:not(:first-child):not(:last-child):not(:only-child)
                .card-footer,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child)
                .card-header,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child)
                .card-img-bottom,
                .card-group > .card:not(:first-child):not(:last-child):not(:only-child)
                .card-img-top {
                    border-radius: 0;
                }
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

@media screen and (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.active.carousel-item-right,
.carousel-item-next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

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

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

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

    .d-sm-inline {
        display: inline !important;
    }

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

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

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

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

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

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

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

    .d-lg-inline {
        display: inline !important;
    }

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

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

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

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

    .d-xl-inline {
        display: inline !important;
    }

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

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

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

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

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

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

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

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

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

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

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

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

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }

    .float-sm-right {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }

    .float-md-right {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }

    .float-lg-right {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }

    .float-xl-right {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

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

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

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

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

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

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

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

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

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

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

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

    .m-sm-2 {
        margin: 0.5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .m-sm-4 {
        margin: 1.5rem !important;
    }

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

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

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

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

    .m-sm-5 {
        margin: 3rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-sm-1 {
        padding: 0.25rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-sm-3 {
        padding: 1rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-sm-5 {
        padding: 3rem !important;
    }

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

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

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

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

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

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

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

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

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

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

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

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

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

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

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

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

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

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

    .m-md-2 {
        margin: 0.5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .m-md-4 {
        margin: 1.5rem !important;
    }

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

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

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

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

    .m-md-5 {
        margin: 3rem !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .p-md-3 {
        padding: 1rem !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

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

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

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

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

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

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

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

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

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

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

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

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

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

    .m-lg-2 {
        margin: 0.5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .m-lg-4 {
        margin: 1.5rem !important;
    }

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

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

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

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

    .m-lg-5 {
        margin: 3rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-lg-1 {
        padding: 0.25rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-lg-3 {
        padding: 1rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-lg-5 {
        padding: 3rem !important;
    }

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

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

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

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

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

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

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

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

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

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

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

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

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

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

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

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

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

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

    .m-xl-2 {
        margin: 0.5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .m-xl-4 {
        margin: 1.5rem !important;
    }

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

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

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

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

    .m-xl-5 {
        margin: 3rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-xl-1 {
        padding: 0.25rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-xl-3 {
        padding: 1rem !important;
    }

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

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

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

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

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

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

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

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

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

    .p-xl-5 {
        padding: 3rem !important;
    }

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

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

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

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

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

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

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

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

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

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

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

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

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

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

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

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

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

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

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

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

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

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

.text-primary {
    color: #007bff !important;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");

.apldg2-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.556;
    color: #666666;
    font-family: "Roboto", sans-serif;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: #ffffff;
    /*background-color: #b956fe;*/
    background-color: #0093fe;
}

.container {
    max-width: 1240px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul li {
        list-style: none;
    }


a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}


img {
    width: auto;
    height: auto;
}

section {
    overflow: hidden;
}


.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}


@media (max-width: 1199.98px) {
    .apldg2-headline h1 {
        font-size: 50px;
    }
}

@media (max-width: 767.98px) {
    .apldg2-headline h1 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .apldg2-headline h2 {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .apldg2-headline h2 {
        font-size: 30px;
    }
}

.apldg2-headline h3 {
    font-size: 36px;
}

@media (max-width: 767.98px) {
    .apldg2-headline h3 {
        font-size: 30px;
    }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    margin-left: 0;
    line-height: 0;
}


@-webkit-keyframes animate24 {
    50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes animate24 {
    50% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@media (max-width: 460px) {
    a.apihu-port-primary-btn,
    button.apihu-port-primary-btn {
        width: 150px;
    }
}

@media (max-width: 360px) {
    a.apihu-port-primary-btn,
    button.apihu-port-primary-btn {
        width: 130px;
    }
}


.apihu-port-scroll-top {
    width: 50px;
    height: 50px;
    color: #ffffff !important;
    background-color: #0093fe;
    font-size: 24px;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    border-radius: 50%;
    display: none;
    -webkit-transition: initial;
    transition: initial;
}

/********* Layout **************/
.apihu-port-header-area {
    background-image: linear-gradient(179deg, #e3edf7 0%, white 100%);
    -webkit-box-shadow: -5.657px -5.657px 10px 0px rgba(245, 249, 252, 0.004), 4.096px 2.868px 15px 0px rgba(127, 163, 199, 0.3);
    box-shadow: -5.657px -5.657px 10px 0px rgba(245, 249, 252, 0.004), 4.096px 2.868px 15px 0px rgba(127, 163, 199, 0.3);
}

    .apihu-port-header-area .apihu-port-logo {
        padding: 5px 0 5px;
    }

    .apihu-port-header-area .apihu-port-main-navigation {
        padding: 35px 0;
    }

        .apihu-port-header-area .apihu-port-main-navigation ul li {
            display: inline-block;
            margin-right: 30px;
        }

            .apihu-port-header-area .apihu-port-main-navigation ul li:last-child {
                margin-right: 0;
            }

            .apihu-port-header-area .apihu-port-main-navigation ul li a {
                font-size: 15px;
                font-family: "Roboto", sans-serif;
                color: #08203a;
                font-weight: 700;
                line-height: 1;
                -webkit-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }


    .apihu-port-header-area .apihu-port-header-cta {
        padding: 20px 0;
    }

        .apihu-port-header-area .apihu-port-header-cta a {
            background: #001236;
            /*padding: 19px 23px 19px 23px;*/
            padding: 14px 20px 14px 20px;
            border-radius: 5px;
            display: inline-block;
            color: #ffffff;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            line-height: 1;
            -webkit-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

@media (max-width: 1199.98px) {
    .apihu-port-header-area .apihu-port-header-cta a {
        padding: 19px 15px 19px 15px;
    }
}

@media (max-width: 320px) {
    .apihu-port-header-area .apihu-port-header-cta a {
        padding: 19px 10px 19px 11px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-header-area .apihu-port-header-cta {
        display: inline-block;
        margin-right: 30px;
    }
}

@media (max-width: 320px) {
    .apihu-port-header-area .apihu-port-header-cta {
        margin-right: 0;
    }
}

.apihu-port-header-area .apihu-port-mobile-menu-hamburger {
    text-align: right;
    display: none;
}

    .apihu-port-header-area .apihu-port-mobile-menu-hamburger a {
        width: 40px;
        /*height: 40px;*/
        height: 54px;
        background-color: #00163b;
        display: inline-block;
        border-radius: 3px;
        text-align: center;
        /*line-height: 40px;*/
        line-height: 50px;
        color: #ffffff;
        /*font-size: 20px;*/
        font-size: 18px;
    }

@media (max-width: 991.98px) {
    .apihu-port-header-area .apihu-port-mobile-menu-hamburger {
        display: inline-block;
        position: relative;
        top: 0;
        color: #ffffff;
        font-size: 25px;
        right: 0;
    }
}



.apihu-port-mobile-menu {
    background-color: #00163b;
    width: 290px;
    height: 100vh;
    overflow-y: scroll;
    padding: 60px 0px 0px 0px;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 100;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .apihu-port-mobile-menu a.apihu-port-menu-close {
        color: #fd5900;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .apihu-port-mobile-menu a.apihu-port-logo-wrapper {
        width: 140px;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .apihu-port-mobile-menu ul li {
        position: relative;
    }

        .apihu-port-mobile-menu ul li + li {
            border-top: 1px solid #ffffff;
        }

        .apihu-port-mobile-menu ul li a {
            display: block;
            padding: 8px 12px;
            color: #ffffff;
            font-weight: 500;
        }

.apihu-port-hero-area {
    background: linear-gradient(103deg, #e3edf7, #ffffff);
    position: relative;
}

@media (width: 5120px) {
    .apihu-port-hero-area .apihu-port-hero-shape-1 {
        left: 36vw;
    }
}

@media (width: 2560px) {
    .apihu-port-hero-area .apihu-port-hero-shape-1 {
        left: 22vw;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-shape-1 {
        top: 8vw;
        left: 7vw;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-hero-area .apihu-port-hero-shape-1 {
        display: none;
    }
}

@media (width: 5120px) {
    .apihu-port-hero-area .apihu-port-hero-shape-2 {
        right: 45.5vw;
    }
}

@media (width: 2560px) {
    .apihu-port-hero-area .apihu-port-hero-shape-2 {
        right: 41vw;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-shape-2 {
        right: 38vw;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-hero-area .apihu-port-hero-shape-2 {
        display: none;
    }
}

@media (width: 5120px) {
    .apihu-port-hero-area .apihu-port-hero-shape-3 {
        right: 47vw;
    }
}

@media (width: 2560px) {
    .apihu-port-hero-area .apihu-port-hero-shape-3 {
        right: 44vw;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-shape-3 {
        bottom: 15vw;
        right: 39vw;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-hero-area .apihu-port-hero-shape-3 {
        display: none;
    }
}

@media (width: 5120px) {
    .apihu-port-hero-area .apihu-port-hero-shape-4 {
        right: 32vw;
    }
}

@media (width: 2560px) {
    .apihu-port-hero-area .apihu-port-hero-shape-4 {
        right: 14vw;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-shape-4 {
        bottom: 15vw;
        right: 3vw;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-hero-area .apihu-port-hero-shape-4 {
        display: none;
    }
}

.apihu-port-hero-area .apihu-port-hero-side-style-text {
    position: absolute;
    top: 32%;
    left: -12%;
    font-size: 158px;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    color: #e9f1f9;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 5px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    background: #e6eff8;
    text-shadow: -6px -6px 10px #f5f9fc, 4px 3px 15px rgba(127, 163, 199, 0.3);
}

@media (width: 5120px) {
    .apihu-port-hero-area .apihu-port-hero-side-style-text {
        left: -4%;
    }
}

@media (width: 2560px) {
    .apihu-port-hero-area .apihu-port-hero-side-style-text {
        left: -9%;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-side-style-text {
        left: -10%;
        font-size: 95px;
    }
}

@media (max-width: 1280px) {
    .apihu-port-hero-area .apihu-port-hero-side-style-text {
        display: none;
    }
}

.apihu-port-hero-area .apihu-port-hero-left {
    padding-top: 260px;
    padding-bottom: 237px;
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-left {
        padding-top: 165px;
    }
}

@media (max-width: 767.98px) {
    .apihu-port-hero-area .apihu-port-hero-left {
        padding-top: 160px;
    }
}

.apihu-port-hero-area .apihu-port-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #001236;
    line-height: 1;
    margin-bottom: 27px;
}

@media (max-width: 1199.98px) {
    .apihu-port-hero-area .apihu-port-hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .apihu-port-hero-area .apihu-port-hero-subtitle {
        font-size: 18px;
    }
}

.apihu-port-hero-area .apihu-port-hero-title {
    font-size: 60px;
    color: #001236;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-title {
        font-size: 60px;
    }
}

@media (max-width: 1280px) {
    .apihu-port-hero-area .apihu-port-hero-title {
        font-size: 60px;
    }
}

@media (max-width: 1024.98px) {
    .apihu-port-hero-area .apihu-port-hero-title {
        font-size: 60px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .apihu-port-hero-area .apihu-port-hero-title {
        font-size: 48px;
    }
}

.apihu-port-hero-area .apihu-port-hero-title .apihu-port-hero-title-color {
    color: #0093fe;
    padding: 0px;
}

.apihu-port-hero-area .apihu-port-hero-title .apihu-port-hero-title-small-text {
    font-size: 48px;
    display: block;
}

@media (max-width: 1024.98px) {
    .apihu-port-hero-area .apihu-port-hero-title .apihu-port-hero-title-small-text {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .apihu-port-hero-area .apihu-port-hero-title .apihu-port-hero-title-small-text {
        font-size: 32px;
    }
}

.apihu-port-hero-area .apihu-port-hero-text {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #7888a2;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 1024.98px) {
    .apihu-port-hero-area .apihu-port-hero-text {
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .apihu-port-hero-area .apihu-port-hero-btn-white {
        width: 165px;
    }
}


@media (max-width: 767.98px) {
    .apihu-port-hero-area .apihu-port-hero-btn-wrap li {
        margin-right: 15px;
    }
}

@media (max-width: 320px) {
    .apihu-port-hero-area .apihu-port-hero-btn-wrap li {
        margin-bottom: 30px;
    }
}


@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-social {
        top: 50px;
        right: -70px;
    }
}

@media (max-width: 1280px) {
    .apihu-port-hero-area .apihu-port-hero-social {
        top: 26px;
        right: 65px;
    }
}


.apihu-port-hero-area .apihu-port-hero-right {
    margin-top: 80px;
    position: relative;
}

@media (max-width: 1024.98px) {
    .apihu-port-hero-area .apihu-port-hero-right {
        margin-top: 130px;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-hero-area .apihu-port-hero-right {
        display: none;
    }
}

.apihu-port-hero-area .apihu-port-hero-right .apihu-port-hero-right-img {
    margin-left: -70px;
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-right .apihu-port-hero-right-img {
        margin-left: -78px;
    }
}

@media (max-width: 1540px) {
    .apihu-port-hero-area .apihu-port-hero-right .apihu-port-hero-right-img img {
        height: 530px;
    }
}

@media (max-width: 1024.98px) {
    .apihu-port-hero-area .apihu-port-hero-right .apihu-port-hero-right-img img {
        height: 425px;
    }
}

@media (max-width: 991.98px) {
    .apldg2-footer-widget {
        margin-bottom: 40px;
    }
}

.apihu-port-section-heading {
    margin-bottom: 50px;
}

    .apihu-port-section-heading .apihu-port-section-subtitle {
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        font-family: "Roboto", sans-serif;
        color: #0093fe;
        margin-bottom: 13px;
    }

    .apihu-port-section-heading .apihu-port-section-title {
        font-size: 48px;
        font-weight: 700;
        color: #08203a;
        font-family: "Poppins", sans-serif;
        line-height: 1.25;
    }

@media (max-width: 767.98px) {
    .apihu-port-section-heading .apihu-port-section-title {
        font-size: 32px;
    }
}

.apihu-port-about-area {
    padding: 110px 0 0;
    background: #e3edf7;
    position: relative;
}

@-webkit-keyframes apihuPortUpsDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes apihuPortUpsDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.apihu-port-about-area .apihu-port-about-shape {
    position: absolute;
    top: 95px;
    left: 270px;
    -webkit-animation: apihuPortUpsDown 3s infinite linear alternate;
    animation: apihuPortUpsDown 3s infinite linear alternate;
}

.apihu-port-about-area .apihu-port-about-left {
    position: relative;
}

    .apihu-port-about-area .apihu-port-about-left .apihu-port-about-img {
        position: relative;
    }

        .apihu-port-about-area .apihu-port-about-left .apihu-port-about-img img {
            max-width: 100%;
        }

@media (max-width: 991.98px) {
    .apihu-port-about-area .apihu-port-about-left .apihu-port-about-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 460px) {
    .apihu-port-about-area .apihu-port-about-left img {
        width: 100%;
    }
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-subtitle {
    font-size: 24px;
    color: #001236;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    margin-bottom: 17px;
}

    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-subtitle:after {
        left: 16px;
        right: px;
        top: 29px;
        height: 3px;
        width: 86px;
        content: "";
        margin: 0 auto;
        position: absolute;
        background-image: linear-gradient(125deg, #6407c1 0%, #324add 49%, #008df9 100%);
    }


@media (max-width: 1024.98px) {
    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-subtitle {
        font-size: 18px;
    }
}


@media (max-width: 1024.98px) {
    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-title {
        font-size: 36px;
    }
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-text {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 26px;
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-pills {
    margin-bottom: 28px;
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-item {
    margin-right: 30px;
}

    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-item:last-child {
        margin-right: 0;
    }

@media (max-width: 460px) {
    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-item {
        margin-bottom: 30px;
    }
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-link {
    width: 170px;
    height: 50px;
    line-height: 18px;
    text-align: center;
    font-size: 13px;
    color: #08203a;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    background: linear-gradient(103deg, #e3edf7, #ffffff);
    -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
    box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
}

@media (max-width: 1024.98px) {
    .apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-link {
        /*width: 135px;*/
        width: 200px;
    }
}

.apihu-port-about-area .apihu-port-about-right .apihu-port-about-expertise .nav-link.active {
    background-image: -webkit-gradient(linear, left top, right top, from(#001236), to(#0093fd));
    background-image: linear-gradient(to right, #001236 0%, #0093fd 100%);
    color: #ffffff;
}

.apihu-port-about-area .apihu-port-about-expertise .tab-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

    .apihu-port-about-area .apihu-port-about-expertise .tab-content ul li:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 16px;
        height: 16px;
        border: 1px solid #0093fe;
        content: "";
        border-radius: 50%;
    }

    .apihu-port-about-area .apihu-port-about-expertise .tab-content ul li:after {
        position: absolute;
        content: "";
        top: 6px;
        left: 6px;
        height: 4px;
        width: 4px;
        background: #6f0dae;
        text-align: center;
        border-radius: 50%;
    }

.apihu-port-about-area .apihu-port-about-expertise .apihu-port-expertise-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #08203a;
    font-family: "Poppins", sans-serif;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .apihu-port-service-area {
        padding-bottom: 0;
    }
}


@media (max-width: 991.98px) {
    .apihu-port-service-area .apihu-port-single-service {
        margin-bottom: 30px;
    }
}


.apihu-port-cta-area {
    background: #e3edf7;
    padding: 85px 0 110px;
    position: relative;
}


    .apihu-port-cta-area .apihu-port-cta-content-wrap {
        background: linear-gradient(103deg, #e3edf7, #ffffff);
        -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
        box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
        border-radius: 5px;
        padding: 0 40px;
        position: relative;
    }

        .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-container-shape {
            position: absolute;
            bottom: 0;
            right: 0;
        }

        .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text {
            padding: 70px 0;
        }

            .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text p {
                font-size: 22px;
                font-weight: 700;
                color: #e30281;
                font-family: "Roboto", sans-serif;
                line-height: 1.1;
            }

            .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text h2 {
                font-size: 48px;
                color: #08203a;
                font-family: "Poppins", sans-serif;
                line-height: 1;
                font-weight: 700;
                margin-bottom: 40px;
            }

@media (max-width: 1024.98px) {
    .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text h2 {
        font-size: 36px;
    }
}

.apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text a {
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(-141deg, #001236, #0093fd);
    width: 150px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text a:before {
        background: -webkit-gradient(linear, left bottom, right top, from(#001236), to(#0093fd));
        background: linear-gradient(to top right, #001236, #0093fd);
        /* -webkit-box-shadow: -4px -3px 8px 0px rgba(122, 247, 169, 0.25), 5px 5px 15px 0px rgba(100, 14, 179, 0.3); */
        /* box-shadow: -4px -3px 8px 0px rgba(122, 247, 169, 0.25), 5px 5px 15px 0px rgba(100, 14, 179, 0.3); */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        z-index: -1;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text a:hover:before {
        width: 0;
    }

    .apihu-port-cta-area .apihu-port-cta-content-wrap .apihu-port-cta-content-text a:hover {
        background: -webkit-gradient(linear, left top, right bottom, from(#e4eef7), to(#ffffff));
        background: linear-gradient(to bottom right, #e4eef7, #ffffff);
        -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, -4px 3px 15px 0px #7fa3c7;
        box-shadow: -6px -6px 10px 0px #f5f9fc, -4px 3px 15px 0px #7fa3c7;
        color: #08203a;
    }

.apihu-port-cta-area .apihu-port-cta-content-img {
    position: absolute;
    top: -81px;
}

@media (max-width: 1024.98px) {
    .apihu-port-cta-area .apihu-port-cta-content-img {
        top: -93px;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-cta-area .apihu-port-cta-content-img {
        display: none;
    }
}


@media (max-width: 991.98px) {
    .apihu-port-portfolio-area .apihu-port-single-portfolio .apihu-port-portfolio-img {
        margin-top: 30px;
    }
}


.apihu-port-pricing-area {
    padding: 10px 0;
    background: #e3edf7;
    position: relative;
}

@media (max-width: 991.98px) {
    .apihu-port-pricing-area {
        padding-bottom: 60px;
    }
}

@media (max-width: 991.98px) {
    .apihu-port-pricing-area .apihu-port-single-pricing {
        margin-bottom: 30px;
    }
}


@media (max-width: 460px) {
    .apihu-port-testimonial-area .apihu-port-testimonial-slider .owl-nav {
        display: none;
    }
}


@media (max-width: 991.98px) {
    .apihu-port-clients-area .apihu-port-single-client-box {
        height: auto;
    }
}


@media (max-width: 1199.98px) {
    .apihu-port-contact-area .apihu-port-contact-left {
        margin-bottom: 50px;
    }
}


.applghu-features-area {
    padding: 50px 0 80px;
    background: #e3edf7;
}

    .applghu-features-area .applghu-feature-container {
        position: relative;
    }



    .applghu-features-area .applghu-single-features {
        text-align: center;
        /* background: #ffffff;
  -webkit-box-shadow: -3px 10px 50px 0px rgba(88, 88, 88, 0.2);
          box-shadow: -3px 10px 50px 0px rgba(88, 88, 88, 0.2);*/


        background: linear-gradient(119deg, #e3edf7, #ffffff);
        -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgb(127 163 199 / 30%);
        box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgb(127 163 199 / 30%);
        padding: 28px 30px;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        margin-bottom: 30px;
        margin-top: 40px;
        height: 245px;
    }

@media (max-width: 1199.98px) {
    .applghu-features-area .applghu-single-features {
        margin-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .applghu-features-area .applghu-single-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.applghu-features-area .applghu-single-features .applghu-feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    background: -webkit-gradient(linear, left top, right bottom, from(#001236), to(#0093fd));
    background: linear-gradient(to bottom right, #001236, #0093fd);
    top: -70px;
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .applghu-features-area .applghu-single-features .applghu-feature-icon-box i {
        font-size: 40px;
        color: #ffffff;
        line-height: 90px;
    }

.applghu-features-area .applghu-single-features h3 {
    font-size: 20px;
    color: #171366;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    margin-top: -55px;
    margin-bottom: 10px;
}

.applghu-features-area .applghu-single-features p {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 22px;
}


.apihu-port-Features-subtitle {
    font-size: 24px;
    color: #001236;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    margin-bottom: 17px;
}

    .apihu-port-Features-subtitle:after {
        left: 0px;
        right: 0px;
        top: 35px;
        height: 3px;
        width: 86px;
        content: "";
        margin: 0 auto;
        position: absolute;
        background-image: linear-gradient(125deg, #6407c1 0%, #324add 49%, #008df9 100%);
    }


.cta-info-item {
    position: relative;
}

    .cta-info-item:before {
        top: 0;
        right: -55px;
        width: 2px;
        content: "";
        height: 22px;
        position: absolute;
        background-color: #ebedf0;
    }

    .cta-info-item i {
        color: #054ada;
        margin-right: 10px;
    }

    .cta-info-item:last-child:before {
        display: none;
    }

.xis-footer-menu-content {
    padding: 35px 0px;
    border-bottom: 1px solid #ebedf0;
}

    .xis-footer-menu-content .footer-menu a {
        color: #061844;
        font-size: 14px;
        font-weight: 500;
        margin-left: 40px;
    }


.xis-dia-footer-newslatter-section {
    z-index: 1;
}


    .xis-dia-footer-newslatter-section .xis-footer-social-text {
        padding: 30px 0px;
    }



.xis-footer-menu-content .footer-menu a {
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .xis-dia-footer-newslatter-text {
        padding-left: 0;
        padding-bottom: 25px;
    }

    .xis-dia-about-counter-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .xis-dia-about-text-wrapper {
        padding-left: 0;
    }
}

.xis-footer-menu-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


    .xis-footer-menu-content .footer-menu a {
        margin-left: 0;
        margin-right: 15px;
    }

.xis-dia-footer-newslatter-section .xis-footer-social-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.xis-dia-footer-newslatter-section .xis-footer-social {
    margin-top: 15px;
}

    .xis-dia-footer-newslatter-section .xis-footer-social li a {
        margin-left: 0;
        margin-right: 10px;
    }



.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.apihu-port-header-area .apihu-port-header-cta {
    padding: 20px 0;
}

    .apihu-port-header-area .apihu-port-header-cta a {
        background: #001236;
        /*padding: 19px 23px 19px 23px;*/
        padding: 14px 20px 14px 20px;
        border-radius: 5px;
        display: inline-block;
        color: #ffffff;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        line-height: 1;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

@media (max-width: 1199.98px) {
    .apihu-port-header-area .apihu-port-header-cta a {
        padding: 19px 15px 19px 15px;
    }
}

@media (max-width: 320px) {
    .apihu-port-header-area .apihu-port-header-cta a {
        padding: 19px 10px 19px 11px;
        font-size: 14px;
    }
}

.apihu-port-header-area .apihu-port-header-cta a i {
    margin-left: 10px;
}

.apihu-port-header-area .apihu-port-header-cta a:hover {
    background: linear-gradient(103deg, #e3edf7, #ffffff);
    -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
    box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
    color: #08203a;
}

@media (max-width: 991.98px) {
    .apihu-port-header-area .apihu-port-header-cta {
        display: inline-block;
        margin-right: 0px;
    }
}

@media (max-width: 320px) {
    .apihu-port-header-area .apihu-port-header-cta {
        margin-right: 0;
    }
}

.applghu-features-area .applghu-single-features {
    text-align: center;
    /* background: #ffffff;
  -webkit-box-shadow: -3px 10px 50px 0px rgba(88, 88, 88, 0.2);
          box-shadow: -3px 10px 50px 0px rgba(88, 88, 88, 0.2);*/
    background: linear-gradient(119deg, #e3edf7, #ffffff);
    -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgb(127 163 199 / 30%);
    box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgb(127 163 199 / 30%);
    padding: 28px 30px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: 30px;
    margin-top: 40px;
    height: 245px;
}

@media (max-width: 1199.98px) {
    .applghu-features-area .applghu-single-features {
        margin-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .applghu-features-area .applghu-single-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.applghu-features-area .applghu-single-features .applghu-feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    background: -webkit-gradient(linear, left top, right bottom, from(#001236), to(#0093fd));
    background: linear-gradient(to bottom right, #001236, #0093fd);
    top: -70px;
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .applghu-features-area .applghu-single-features .applghu-feature-icon-box i {
        font-size: 40px;
        color: #ffffff;
        line-height: 90px;
    }

.applghu-features-area .applghu-single-features h3 {
    font-size: 20px;
    color: #171366;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    margin-top: -50px;
    margin-bottom: 10px;
}

.applghu-features-area .applghu-single-features p {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 22px;
}

.applghu-features-area .applghu-single-features:hover {
    -webkit-box-shadow: -5px 19px 100px 0px rgba(151, 151, 151, 0.5);
    box-shadow: -5px 19px 100px 0px rgba(151, 151, 151, 0.5);
}

    .applghu-features-area .applghu-single-features:hover .applghu-feature-icon-box {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

.apihu-port-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 70;
    -webkit-box-shadow: 0px 15px 50px 0px rgba(11, 11, 11, 0.08);
    box-shadow: 0px 15px 50px 0px rgba(11, 11, 11, 0.08);
    -webkit-animation: 1s slideInDown;
    animation: 1s slideInDown;
}

.apihu-port-mobile-menu {
    background-color: #00163b;
    width: 290px;
    height: 100vh;
    overflow-y: scroll;
    padding: 60px 0px 0px 0px;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 100;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .apihu-port-mobile-menu a.apihu-port-menu-close {
        color: #fd5900;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .apihu-port-mobile-menu a.apihu-port-logo-wrapper {
        width: 140px;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .apihu-port-mobile-menu ul li {
        position: relative;
    }

        .apihu-port-mobile-menu ul li + li {
            border-top: 1px solid #ffffff;
        }

        .apihu-port-mobile-menu ul li a {
            display: block;
            padding: 8px 12px;
            color: #ffffff;
            font-weight: 500;
        }


        .apihu-port-mobile-menu ul li.has-submenu::after {
            content: '+';
            position: absolute;
            top: 8px;
            right: 10px;
            z-index: -1;
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
            -webkit-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

        .apihu-port-mobile-menu ul li.has-submenu ul {
            display: none;
        }

            .apihu-port-mobile-menu ul li.has-submenu ul li a {
                padding-left: 25px;
            }

            .apihu-port-mobile-menu ul li.has-submenu ul li ul li a {
                padding-left: 35px;
            }

        .apihu-port-mobile-menu ul li.apihu-port-submenu-icon-rotate::after {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .apihu-port-mobile-menu.apihu-port-mobile-menu-on {
        left: 0;
    }

.loading-preloader {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
}

#loading-preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotateX(180deg);
    transform: translate(-50%, 0%) rotateX(180deg);
    height: 10px;
    visibility: visible;
    z-index: 1000;
}

.loading-text {
    position: fixed;
    top: 52%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    height: 10px;
    visibility: visible;
    z-index: 1000;
    font-weight: bolder;
    color: #0093fe;
}

.line1 {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    background-color: #0093fe;
    animation: animate1 2.0s linear infinite;
    float: left;
    opacity: 1;
}

.line2 {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    background-color: #0042e5;
    animation: animate1 2.3s linear infinite;
    float: left;
    opacity: 1;
}

.line3 {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    background-color: #0093fe;
    animation: animate1 2.5s linear infinite;
    float: left;
    opacity: 1;
}

.line4 {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    background-color: #0042e5;
    animation: animate1 2.7s linear infinite;
    float: left;
    opacity: 1;
}

.line5 {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    background-color: #0093fe;
    animation: animate1 2.9s linear infinite;
    float: left;
    opacity: 1;
}

@keyframes animate1 {
    50% {
        background-color: #0042e5;
        top: 100px;
        height: 60px;
    }
}

@keyframes animate2 {
    50% {
        background-color: #0093fe;
        top: 50px;
        height: 80px;
    }
}

@keyframes animate3 {
    50% {
        background-color: #0042e5;
        top: 10px;
        height: 100px;
    }
}

@keyframes animate4 {
    50% {
        background-color: #0093fe;
        top: 100px;
        height: 60px;
    }
}

@keyframes animate5 {
    50% {
        background-color: #0042e5;
        top: 50px;
        height: 80px;
    }
}


.saasio-breadcurmb-section {
    background-color: #0093fe;
    padding: 70px 0px 50px;
}

.breadcurmb-title h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Poppins';
    padding-bottom: 20px;
}

.saasio-page-breadcurmb li a {
    color: #fff;
    margin: 0px 10px;
    position: relative;
}

    .saasio-page-breadcurmb li a:after {
        top: 5px;
        right: -17px;
        content: '\f054';
        font-weight: 900;
        font-size: 12px;
        position: absolute;
        font-family: 'Font Awesome 5 Free';
    }

.saasio-page-breadcurmb li:last-child a::after {
    display: none;
}

.saas_two_section_title {
    margin: 0 auto;
    max-width: 465px;
}

    .saas_two_section_title .title_tag {
        padding: 5px 30px;
    }

    .saas_two_section_title h2 {
        font-size: 40px;
        padding-top: 15px;
    }

.sa_fq_question_content {
    padding-top: 60px;
}

    .sa_fq_question_content .faq-feed-item {
        margin-bottom: 20px;
    }

        .sa_fq_question_content .faq-feed-item h3 {
            color: #000000;
            font-size: 20px;
            font-weight: 600;
            padding-bottom: 15px;
        }
.pr1-footer-section {
    padding: 9px 0 0 0;
}

    .pr1-footer-section .pr1-footer-top .pr1-title-area {
        margin: 0;
    }

@media (max-width: 991.98px) {
    .pr1-footer-section .pr1-footer-top .pr1-title-area {
        margin-bottom: 30px;
    }
}

.pr1-footer-section .spacer {
    margin-top: 5px;
}

    .pr1-footer-section .spacer hr {
        border: 0;
        border-top: 2px solid #c9e2fa;
        margin: 0;
    }

.pr1-footer-contents {
    margin-top: 60px;
}

.pr1-footer-newsletter form {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0px 23px 40px 0px rgba(135, 135, 135, 0.15);
    box-shadow: 0px 23px 40px 0px rgba(135, 135, 135, 0.15);
}

    .pr1-footer-newsletter form input[type="email"] {
        width: 100%;
        padding: 12px 30px 12px 18px;
        background-color: #ffffff;
        border: 0;
    }

    .pr1-footer-newsletter form button {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
        width: 65px;
        height: 100%;
        background-color: #2782f9;
        color: #fff;
        font-size: 25px;
        text-align: center;
    }

.pr1-footer-contents .pr1-footer-widget {
    margin-bottom: 40px;
}

    .pr1-footer-contents .pr1-footer-widget .logo {
        width: 120px;
        display: inline-block;
        margin-bottom: 5px;
    }

    .pr1-footer-contents .pr1-footer-widget .pr1-pera-txt {
        margin-bottom: 10px;
    }

    .pr1-footer-contents .pr1-footer-widget .pr1-footer-btn a {
        width: 150px;
        height: 45px;
        background: #ff6c00;
        display: inline-block;
        text-align: center;
        line-height: 45px;
        border-radius: 3px;
        color: #ffffff;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .pr1-footer-contents .pr1-footer-widget .pr1-footer-btn a:hover {
            background-color: #2782f9;
        }

    .pr1-footer-contents .pr1-footer-widget .pr1-headline {
        margin-bottom: 30px;
    }

@media (max-width: 991.98px) {
    .pr1-footer-contents .pr1-footer-widget .pr1-headline {
        margin-bottom: 20px;
    }
}

.pr1-footer-contents .pr1-footer-widget .pr1-footer-links li + li {
    margin-top: 6px;
}

.pr1-footer-contents .pr1-footer-widget .pr1-footer-links li a {
    color: #010148;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .pr1-footer-contents .pr1-footer-widget .pr1-footer-links li a:hover {
        margin-left: 5px;
    }

    .pr1-footer-contents .pr1-footer-widget .pr1-footer-links li a::before {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: -2px;
    }

.pr1-footer-contents .pr1-footer-widget .pr1-ft-contact ul li {
    font-weight: 500;
    color: #010148;
}

    .pr1-footer-contents .pr1-footer-widget .pr1-ft-contact ul li + li {
        margin-top: 8px;
    }

    .pr1-footer-contents .pr1-footer-widget .pr1-ft-contact ul li i {
        margin-right: 8px;
    }

.pr1-footer-copyright {
    padding: 30px 0;
}

    .pr1-footer-copyright p {
        color: #010148;
        font-weight: 500;
        font-size: 15px;
    }

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