:root {
    --primary: #3fc77d;
    --primary-hover: #3cba75;
    --cta: #3fc77d;
    --cta-hover: #4296eb;
}

@font-face {
    font-family: "Roboto";
    src: url("/template/fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    src: url("/template/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    overflow-x: hidden !important;
    font-size: 16px;
    color: #202020;
    background-color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    font-weight: 600 !important;
    letter-spacing: -0.05em;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-14 {
    font-size: 12px !important;
}

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

::-moz-selection {
    background: #465467;
    color: #ffffff;
}

::selection {
    background: #465467;
    color: #ffffff;
}

a {
    text-decoration: none !important;
    color: var(--primary);
}

a:hover {
    color: var(--primary-hover);
}

p {
    line-height: 1.6;
}

.cookie-box {
    position: fixed;
    bottom: 0;
    max-width: 950px;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background: #fff;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
    display: inline-block;
}

.cookie-box p {
    display: inline-block;
}

@media (min-width: 900px) {
    .cookie-box {
        left: 50%;
        transform: translateX(-50%);
    }
}

.cookie-box--hide {
    opacity: 0;
    bottom: -100%;
}

.cookie-button {
    display: inline-block;
    cursor: pointer;
    padding: 0.65rem 0.85rem;
    margin-left: 0.45rem;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background: var(--primary);
}

/*Cookie melding*/

/*Stijl voor de notificatie*/
.cookie-img {
    width: 13px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparante zwarte achtergrond */
    z-index: 9999;
    /* Zorg ervoor dat het bovenop alle andere inhoud staat */
    display: none;
    /* Standaard verbergen */
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-two {
    padding: 60px 0;
    position: relative;
}

.bg-overlay {
    background-color: rgba(60, 72, 88, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bg-overlay-white {
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-overlay-primary {
    background-color: rgba(27.5, 97.5, 75.0, 0.65);
}

.title-heading {
    line-height: 26px;
}

.title-heading .heading {
    font-size: 40px !important;
    letter-spacing: 1px;
}

.title-heading .para-desc {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.section-title {
    position: relative;
}

.section-title .title {
    letter-spacing: 0.5px;
    font-size: 35px;
}

.para-desc {
    max-width: 600px;
}

.mt-100 {
    margin-top: 100px;
}

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

.shape {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: -1px;
    left: 0;
}

.shape>svg {
    -webkit-transform: scale(2);
    transform: scale(2);
    width: 100%;
    height: auto;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

.feature-posts-placeholder {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 66.6%;
}

.feature-top {
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: -170px 0 0px;
}

.mover {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@media (min-width: 768px) {
    .margin-top-100 {
        margin-top: 100px;
    }
}

@media (max-width: 425px) {
    .shape {
        bottom: -3px;
    }

    .feature-posts-placeholder {
        height: 80%;
    }
}

.display-1 {
    font-size: 80px;
}

.display-2 {
    font-size: 72px;
}

.display-3 {
    font-size: 64px;
}

.display-4 {
    font-size: 56px;
}

.display-5 {
    font-size: 48px;
}

.display-6 {
    font-size: 40px;
}

.display-7 {
    font-size: 32px;
}

.display-8 {
    font-size: 24px;
}

.display-9 {
    font-size: 16px;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-soft-primary {
    background-color: rgba(27.5, 97.5, 75.0, 0.2) !important;
}

.text-primary {
    color: var(--primary) !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: --primary-hover !important;
}

.bg-secondary {
    background-color: #eeeeee !important;
}

.bg-soft-secondary {
    background-color: rgba(239, 239, 247, 0.2) !important;
}

.text-secondary {
    color: #eeeeee !important;
}

.text-secondary-dark {
    color: #767676 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #dedeef !important;
}

.bg-success {
    background-color: #3fc77d !important;
}

.bg-soft-success {
    background-color: rgba(25, 192, 145, 0.2) !important;
}

.text-success {
    color: #3fc77d !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #16a980 !important;
}

.bg-warning {
    background-color: #f5a958 !important;
}

.bg-soft-warning {
    background-color: rgba(245, 169, 88, 0.2) !important;
}

.text-warning {
    color: #f5a958 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #f49d40 !important;
}

.bg-info {
    background-color: #6492e7 !important;
}

.bg-soft-info {
    background-color: rgba(100, 146, 231, 0.2) !important;
}

.text-info {
    color: #6492e7 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #4e82e4 !important;
}

.bg-danger {
    background-color: #f53565 !important;
}

.bg-soft-danger {
    background-color: rgba(245, 53, 101, 0.2) !important;
}

.text-danger {
    color: #f53565 !important;
}

.text-black {
    color: #000 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #f41d52 !important;
}

.bg-dark-blue {
    background-color: #08083d !important;
}

.bg-soft-dark-blue {
    background-color: rgba(8, 8, 61, 0.2) !important;
}

.text-dark-blue {
    color: #08083d !important;
}

a.text-dark-blue:hover,
a.text-dark-blue:focus {
    color: #050526 !important;
}

.bg-dark {
    background-color: #202020 !important;
}

.bg-soft-dark {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.text-dark {
    color: #202020 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #323c49 !important;
}

.bg-muted {
    background-color: #3f4958 !important;
}

.bg-soft-muted {
    background-color: rgba(132, 146, 166, 0.2) !important;
}

.text-muted {
    color: #3f4958 !important;
}

a.text-muted:hover,
a.text-muted:focus {
    color: #75859b !important;
}

.bg-light {
    background-color: rgb(250, 250, 250) !important;
}

.bg-soft-light {
    background-color: rgba(249, 252, 255, 0.2) !important;
}

.text-light {
    color: rgb(250, 250, 250) !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #e0efff !important;
}

.bg-footer {
    background-color: #151414 !important;
}

.bg-footer2 {
    background-color: #202020 !important;
}

.bg-soft-footer {
    background-color: rgba(53, 64, 78, 0.2) !important;
}

.text-footer {
    color: #35404E !important;
}

a.text-footer:hover,
a.text-footer:focus {
    color: #2b343f !important;
}

.list-inline-item:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 5px;
}

.rounded {
    border-radius: 6px !important;
}

.rounded-top {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.rounded-left {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.rounded-bottom {
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.rounded-right {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.rounded-pill {
    border-radius: 30px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 30px !important;
}

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

.border-top {
    border-top: 1px solid #e9ecef !important;
}

.border-bottom {
    border-bottom: 1px solid #e9ecef !important;
}

.border-left {
    border-left: 1px solid #e9ecef !important;
}

.border-right {
    border-right: 1px solid #e9ecef !important;
}

.modal-open {
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .title-heading .para-desc {
        font-size: 15px;
    }

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

    .section-title .title {
        font-size: 25px;
    }
}

@media (min-width: 576px) {
    .modal-sm {
        max-width: 400px;
    }
}

.btn {
    border-radius: 2px !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #fff !important;
}

.signUpBtn,
.demoBtn {
    background-color: var(--cta) !important;
    color: #fff;
}

.signUpBtnOutline,
.demoBtnOutline {
    background-color: white !important;
    border: 0px solid var(--cta) !important;
    color: var(--cta);
}

.signUpBtn:hover {
    background-color: var(--primary-hover) !important;
    color: #fff !important;
}

.demoBtn:hover {
    background-color: var(--primary-hover) !important;
    color: #fff !important;
}

.btn-soft-primary {
    background-color: rgba(27.5, 97.5, 75.0, 0.15) !important;
    border: 1px solid rgba(27.5, 97.5, 75.0, 0.1) !important;
    color: var(--primary) !important;
    -webkit-box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.2);
    box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.2);
}

.btn-soft-primary:hover,
.btn-soft-primary:focus,
.btn-soft-primary:active,
.btn-soft-primary.active,
.btn-soft-primary.focus {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.5);
    box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.5);
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.5);
    box-shadow: 0 3px 7px rgba(27.5, 97.5, 75.0, 0.5);
}

.btn-secondary {
    background-color: #eeeeee !important;
    border: 1px solid #eeeeee !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
    box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.focus {
    background-color: #dedeef !important;
    border-color: #dedeef !important;
    color: #ffffff !important;
}

.btn-soft-secondary {
    background-color: rgba(239, 239, 247, 0.15) !important;
    border: 1px solid rgba(239, 239, 247, 0.1) !important;
    color: #eeeeee !important;
    -webkit-box-shadow: 0 3px 7px rgba(239, 239, 247, 0.2);
    box-shadow: 0 3px 7px rgba(239, 239, 247, 0.2);
}

.btn-soft-secondary:hover,
.btn-soft-secondary:focus,
.btn-soft-secondary:active,
.btn-soft-secondary.active,
.btn-soft-secondary.focus {
    background-color: #eeeeee !important;
    border-color: #eeeeee !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
    box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
}

.btn-outline-secondary {
    border: 1px solid #eeeeee;
    color: #eeeeee;
    background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    background-color: #eeeeee;
    border-color: #eeeeee;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
    box-shadow: 0 3px 7px rgba(239, 239, 247, 0.5);
}

.btn-success {
    background-color: #3fc77d !important;
    border: 1px solid #3fc77d !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
    box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus {
    background-color: #16a980 !important;
    border-color: #16a980 !important;
    color: #ffffff !important;
}

.btn-soft-success {
    background-color: rgba(25, 192, 145, 0.15) !important;
    border: 1px solid rgba(25, 192, 145, 0.1) !important;
    color: #3fc77d !important;
    -webkit-box-shadow: 0 3px 7px rgba(25, 192, 145, 0.2);
    box-shadow: 0 3px 7px rgba(25, 192, 145, 0.2);
}

.btn-soft-success:hover,
.btn-soft-success:focus,
.btn-soft-success:active,
.btn-soft-success.active,
.btn-soft-success.focus {
    background-color: #3fc77d !important;
    border-color: #3fc77d !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
    box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
}

.btn-outline-success {
    border: 1px solid #3fc77d;
    color: #3fc77d;
    background-color: transparent;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.focus,
.btn-outline-success:not(:disabled):not(.disabled):active {
    background-color: #3fc77d;
    border-color: #3fc77d;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
    box-shadow: 0 3px 7px rgba(25, 192, 145, 0.5);
}

.btn-warning {
    background-color: #f5a958 !important;
    border: 1px solid #f5a958 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
    box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus {
    background-color: #f49d40 !important;
    border-color: #f49d40 !important;
    color: #ffffff !important;
}

.btn-soft-warning {
    background-color: rgba(245, 169, 88, 0.15) !important;
    border: 1px solid rgba(245, 169, 88, 0.1) !important;
    color: #f5a958 !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 169, 88, 0.2);
    box-shadow: 0 3px 7px rgba(245, 169, 88, 0.2);
}

.btn-soft-warning:hover,
.btn-soft-warning:focus,
.btn-soft-warning:active,
.btn-soft-warning.active,
.btn-soft-warning.focus {
    background-color: #f5a958 !important;
    border-color: #f5a958 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
    box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
}

.btn-outline-warning {
    border: 1px solid #f5a958;
    color: #f5a958;
    background-color: transparent;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.focus,
.btn-outline-warning:not(:disabled):not(.disabled):active {
    background-color: #f5a958;
    border-color: #f5a958;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
    box-shadow: 0 3px 7px rgba(245, 169, 88, 0.5);
}

.btn-info {
    background-color: #6492e7 !important;
    border: 1px solid #6492e7 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
    box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus {
    background-color: #4e82e4 !important;
    border-color: #4e82e4 !important;
    color: #ffffff !important;
}

.btn-soft-info {
    background-color: rgba(100, 146, 231, 0.15) !important;
    border: 1px solid rgba(100, 146, 231, 0.1) !important;
    color: #6492e7 !important;
    -webkit-box-shadow: 0 3px 7px rgba(100, 146, 231, 0.2);
    box-shadow: 0 3px 7px rgba(100, 146, 231, 0.2);
}

.btn-soft-info:hover,
.btn-soft-info:focus,
.btn-soft-info:active,
.btn-soft-info.active,
.btn-soft-info.focus {
    background-color: #6492e7 !important;
    border-color: #6492e7 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
    box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
}

.btn-outline-info {
    border: 1px solid #6492e7;
    color: #6492e7;
    background-color: transparent;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.focus,
.btn-outline-info:not(:disabled):not(.disabled):active {
    background-color: #6492e7;
    border-color: #6492e7;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
    box-shadow: 0 3px 7px rgba(100, 146, 231, 0.5);
}

.btn-danger {
    background-color: #f53565 !important;
    border: 1px solid #f53565 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
    box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.focus {
    background-color: #f41d52 !important;
    border-color: #f41d52 !important;
    color: #ffffff !important;
}

.btn-soft-danger {
    background-color: rgba(245, 53, 101, 0.15) !important;
    border: 1px solid rgba(245, 53, 101, 0.1) !important;
    color: #f53565 !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 53, 101, 0.2);
    box-shadow: 0 3px 7px rgba(245, 53, 101, 0.2);
}

.btn-soft-danger:hover,
.btn-soft-danger:focus,
.btn-soft-danger:active,
.btn-soft-danger.active,
.btn-soft-danger.focus {
    background-color: #f53565 !important;
    border-color: #f53565 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
    box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
}

.btn-outline-danger {
    border: 1px solid #f53565;
    color: #f53565;
    background-color: transparent;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.focus,
.btn-outline-danger:not(:disabled):not(.disabled):active {
    background-color: #f53565;
    border-color: #f53565;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
    box-shadow: 0 3px 7px rgba(245, 53, 101, 0.5);
}

.btn-dark-blue {
    background-color: #08083d !important;
    border: 1px solid #08083d !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
    box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
}

.btn-dark-blue:hover,
.btn-dark-blue:focus,
.btn-dark-blue:active,
.btn-dark-blue.active,
.btn-dark-blue.focus {
    background-color: #050526 !important;
    border-color: #050526 !important;
    color: #ffffff !important;
}

.btn-soft-dark-blue {
    background-color: rgba(8, 8, 61, 0.15) !important;
    border: 1px solid rgba(8, 8, 61, 0.1) !important;
    color: #08083d !important;
    -webkit-box-shadow: 0 3px 7px rgba(8, 8, 61, 0.2);
    box-shadow: 0 3px 7px rgba(8, 8, 61, 0.2);
}

.btn-soft-dark-blue:hover,
.btn-soft-dark-blue:focus,
.btn-soft-dark-blue:active,
.btn-soft-dark-blue.active,
.btn-soft-dark-blue.focus {
    background-color: #08083d !important;
    border-color: #08083d !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
    box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
}

.btn-outline-dark-blue {
    border: 1px solid #08083d;
    color: #08083d;
    background-color: transparent;
}

.btn-outline-dark-blue:hover,
.btn-outline-dark-blue:focus,
.btn-outline-dark-blue:active,
.btn-outline-dark-blue.active,
.btn-outline-dark-blue.focus,
.btn-outline-dark-blue:not(:disabled):not(.disabled):active {
    background-color: #08083d;
    border-color: #08083d;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
    box-shadow: 0 3px 7px rgba(8, 8, 61, 0.5);
}

.btn-dark {
    background-color: #202020 !important;
    border: 1px solid #202020 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
    box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus {
    background-color: #323c49 !important;
    border-color: #323c49 !important;
    color: #ffffff !important;
}

.btn-soft-dark {
    background-color: rgba(60, 72, 88, 0.15) !important;
    border: 1px solid rgba(60, 72, 88, 0.1) !important;
    color: #202020 !important;
    -webkit-box-shadow: 0 3px 7px rgba(60, 72, 88, 0.2);
    box-shadow: 0 3px 7px rgba(60, 72, 88, 0.2);
}

.btn-soft-dark:hover,
.btn-soft-dark:focus,
.btn-soft-dark:active,
.btn-soft-dark.active,
.btn-soft-dark.focus {
    background-color: #202020 !important;
    border-color: #202020 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
    box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
}

.btn-outline-dark {
    border: 1px solid #202020;
    color: #202020;
    background-color: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.focus,
.btn-outline-dark:not(:disabled):not(.disabled):active {
    background-color: #202020;
    border-color: #202020;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
    box-shadow: 0 3px 7px rgba(60, 72, 88, 0.5);
}

.btn-muted {
    background-color: #3f4958 !important;
    border: 1px solid #3f4958 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
    box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
}

.btn-muted:hover,
.btn-muted:focus,
.btn-muted:active,
.btn-muted.active,
.btn-muted.focus {
    background-color: #75859b !important;
    border-color: #75859b !important;
    color: #ffffff !important;
}

.btn-soft-muted {
    background-color: rgba(132, 146, 166, 0.15) !important;
    border: 1px solid rgba(132, 146, 166, 0.1) !important;
    color: #3f4958 !important;
    -webkit-box-shadow: 0 3px 7px rgba(132, 146, 166, 0.2);
    box-shadow: 0 3px 7px rgba(132, 146, 166, 0.2);
}

.btn-soft-muted:hover,
.btn-soft-muted:focus,
.btn-soft-muted:active,
.btn-soft-muted.active,
.btn-soft-muted.focus {
    background-color: #3f4958 !important;
    border-color: #3f4958 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
    box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
}

.btn-outline-muted {
    border: 1px solid #3f4958;
    color: #3f4958;
    background-color: transparent;
}

.btn-outline-muted:hover,
.btn-outline-muted:focus,
.btn-outline-muted:active,
.btn-outline-muted.active,
.btn-outline-muted.focus,
.btn-outline-muted:not(:disabled):not(.disabled):active {
    background-color: #3f4958;
    border-color: #3f4958;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
    box-shadow: 0 3px 7px rgba(132, 146, 166, 0.5);
}

.btn-light {
    background-color: rgb(250, 250, 250) !important;
    border: 1px solid rgb(250, 250, 250) !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
    box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.focus {
    background-color: #e0efff !important;
    border-color: #e0efff !important;
    color: #ffffff !important;
}

.btn-soft-light {
    background-color: rgba(249, 252, 255, 0.15) !important;
    border: 1px solid rgba(249, 252, 255, 0.1) !important;
    color: rgb(250, 250, 250) !important;
    -webkit-box-shadow: 0 3px 7px rgba(249, 252, 255, 0.2);
    box-shadow: 0 3px 7px rgba(249, 252, 255, 0.2);
}

.btn-soft-light:hover,
.btn-soft-light:focus,
.btn-soft-light:active,
.btn-soft-light.active,
.btn-soft-light.focus {
    background-color: rgb(250, 250, 250) !important;
    border-color: rgb(250, 250, 250) !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
    box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
}

.btn-outline-light {
    border: 1px solid rgb(250, 250, 250);
    color: rgb(250, 250, 250);
    background-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.focus,
.btn-outline-light:not(:disabled):not(.disabled):active {
    background-color: rgb(250, 250, 250);
    border-color: rgb(250, 250, 250);
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
    box-shadow: 0 3px 7px rgba(249, 252, 255, 0.5);
}

.btn-footer {
    background-color: #35404E !important;
    border: 1px solid #35404E !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
    box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
}

.btn-footer:hover,
.btn-footer:focus,
.btn-footer:active,
.btn-footer.active,
.btn-footer.focus {
    background-color: #2b343f !important;
    border-color: #2b343f !important;
    color: #ffffff !important;
}

.btn-soft-footer {
    background-color: rgba(53, 64, 78, 0.15) !important;
    border: 1px solid rgba(53, 64, 78, 0.1) !important;
    color: #35404E !important;
    -webkit-box-shadow: 0 3px 7px rgba(53, 64, 78, 0.2);
    box-shadow: 0 3px 7px rgba(53, 64, 78, 0.2);
}

.btn-soft-footer:hover,
.btn-soft-footer:focus,
.btn-soft-footer:active,
.btn-soft-footer.active,
.btn-soft-footer.focus {
    background-color: #35404E !important;
    border-color: #35404E !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
    box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
}

.btn-outline-footer {
    border: 1px solid #35404E;
    color: #35404E;
    background-color: transparent;
}

.btn-outline-footer:hover,
.btn-outline-footer:focus,
.btn-outline-footer:active,
.btn-outline-footer.active,
.btn-outline-footer.focus,
.btn-outline-footer:not(:disabled):not(.disabled):active {
    background-color: #35404E;
    border-color: #35404E;
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
    box-shadow: 0 3px 7px rgba(53, 64, 78, 0.5);
}

.btn {
    padding: 8px 20px;
    outline: none;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    border-radius: 2px;
}

.btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn.btn-sm {
    padding: 7px 16px;
    font-size: 10px;
}

.btn.btn-lg {
    padding: 14px 30px;
    font-size: 20px;
}

.btn.searchbtn {
    padding: 6px 20px;
}

.btn.btn-pills {
    border-radius: 30px;
}

.btn.btn-light {
    color: #202020 !important;
    background: rgb(250, 250, 250);
    border: 1px solid #e9ecef !important;
}

.btn.btn-light:hover,
.btn.btn-light:focus,
.btn.btn-light:active,
.btn.btn-light.active,
.btn.btn-light.focus {
    background-color: #e0efff !important;
    color: #202020;
}

.btn.btn-outline-light {
    border: 1px solid #e9ecef !important;
    color: #202020 !important;
    background-color: transparent;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus,
.btn.btn-outline-light:active,
.btn.btn-outline-light.active,
.btn.btn-outline-light.focus {
    background-color: rgb(250, 250, 250);
}

.btn.btn-icon {
    height: 36px;
    width: 36px;
    line-height: 32px;
    padding: 0;
}

.btn.btn-icon .icons {
    height: 16px;
    width: 16px;
    font-size: 16px;
}

.btn.btn-icon.btn-lg {
    height: 48px;
    width: 48px;
    line-height: 46px;
}

.btn.btn-icon.btn-lg .icons {
    height: 20px;
    width: 20px;
    font-size: 20px;
}

.btn.btn-icon.btn-sm {
    height: 30px;
    width: 30px;
    line-height: 28px;
}

button:not(:disabled) {
    outline: none;
    border: 0;
}

.shadow {
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2) !important;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.2) !important;
}

.shadow-lg {
    -webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.2) !important;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.2) !important;
}

.shadow-md {
    -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
    box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}

.badge-primary {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.badge-outline-primary {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

.badge-secondary {
    background-color: #eeeeee !important;
    color: #ffffff !important;
}

.badge-outline-secondary {
    background-color: transparent !important;
    color: #eeeeee !important;
    border: 1px solid #eeeeee !important;
}

.badge-success {
    background-color: #3fc77d !important;
    color: #ffffff !important;
}

.badge-outline-success {
    background-color: transparent !important;
    color: #3fc77d !important;
    border: 1px solid #3fc77d !important;
}

.badge-warning {
    background-color: #f5a958 !important;
    color: #ffffff !important;
}

.badge-outline-warning {
    background-color: transparent !important;
    color: #f5a958 !important;
    border: 1px solid #f5a958 !important;
}

.badge-info {
    background-color: #6492e7 !important;
    color: #ffffff !important;
}

.badge-outline-info {
    background-color: transparent !important;
    color: #6492e7 !important;
    border: 1px solid #6492e7 !important;
}

.badge-danger {
    background-color: #f53565 !important;
    color: #ffffff !important;
}

.badge-outline-danger {
    background-color: transparent !important;
    color: #f53565 !important;
    border: 1px solid #f53565 !important;
}

.badge-dark-blue {
    background-color: #08083d !important;
    color: #ffffff !important;
}

.badge-outline-dark-blue {
    background-color: transparent !important;
    color: #08083d !important;
    border: 1px solid #08083d !important;
}

.badge-dark {
    background-color: #202020 !important;
    color: #ffffff !important;
}

.badge-outline-dark {
    background-color: transparent !important;
    color: #202020 !important;
    border: 1px solid #202020 !important;
}

.badge-muted {
    background-color: #3f4958 !important;
    color: #ffffff !important;
}

.badge-outline-muted {
    background-color: transparent !important;
    color: #3f4958 !important;
    border: 1px solid #3f4958 !important;
}

.badge-light {
    background-color: rgb(250, 250, 250) !important;
    color: #ffffff !important;
}

.badge-outline-light {
    background-color: transparent !important;
    color: rgb(250, 250, 250) !important;
    border: 1px solid rgb(250, 250, 250) !important;
}

.badge-footer {
    background-color: #35404E !important;
    color: #ffffff !important;
}

.badge-outline-footer {
    background-color: transparent !important;
    color: #35404E !important;
    border: 1px solid #35404E !important;
}

.badge {
    padding: 5px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    font-size: 10px;
}

.badge.badge-light {
    color: #202020 !important;
    background-color: rgb(250, 250, 250) !important;
}

.badge.badge-outline-light {
    color: #202020 !important;
    border: 1px solid #93c9ff !important;
    background-color: transparent !important;
}

.badge.badge-pill {
    border-radius: 20px;
}

.badge:focus,
.badge.focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.dropdown-primary .dropdown-menu .dropdown-item:hover,
.dropdown-primary .dropdown-menu .dropdown-item.active,
.dropdown-primary .dropdown-menu .dropdown-item:active,
.dropdown-primary .dropdown-menu .dropdown-item.focus,
.dropdown-primary .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: var(--primary) !important;
}

.dropdown-secondary .dropdown-menu .dropdown-item:hover,
.dropdown-secondary .dropdown-menu .dropdown-item.active,
.dropdown-secondary .dropdown-menu .dropdown-item:active,
.dropdown-secondary .dropdown-menu .dropdown-item.focus,
.dropdown-secondary .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #eeeeee !important;
}

.dropdown-success .dropdown-menu .dropdown-item:hover,
.dropdown-success .dropdown-menu .dropdown-item.active,
.dropdown-success .dropdown-menu .dropdown-item:active,
.dropdown-success .dropdown-menu .dropdown-item.focus,
.dropdown-success .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #3fc77d !important;
}

.dropdown-warning .dropdown-menu .dropdown-item:hover,
.dropdown-warning .dropdown-menu .dropdown-item.active,
.dropdown-warning .dropdown-menu .dropdown-item:active,
.dropdown-warning .dropdown-menu .dropdown-item.focus,
.dropdown-warning .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #f5a958 !important;
}

.dropdown-info .dropdown-menu .dropdown-item:hover,
.dropdown-info .dropdown-menu .dropdown-item.active,
.dropdown-info .dropdown-menu .dropdown-item:active,
.dropdown-info .dropdown-menu .dropdown-item.focus,
.dropdown-info .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #6492e7 !important;
}

.dropdown-danger .dropdown-menu .dropdown-item:hover,
.dropdown-danger .dropdown-menu .dropdown-item.active,
.dropdown-danger .dropdown-menu .dropdown-item:active,
.dropdown-danger .dropdown-menu .dropdown-item.focus,
.dropdown-danger .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #f53565 !important;
}

.dropdown-dark-blue .dropdown-menu .dropdown-item:hover,
.dropdown-dark-blue .dropdown-menu .dropdown-item.active,
.dropdown-dark-blue .dropdown-menu .dropdown-item:active,
.dropdown-dark-blue .dropdown-menu .dropdown-item.focus,
.dropdown-dark-blue .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #08083d !important;
}

.dropdown-dark .dropdown-menu .dropdown-item:hover,
.dropdown-dark .dropdown-menu .dropdown-item.active,
.dropdown-dark .dropdown-menu .dropdown-item:active,
.dropdown-dark .dropdown-menu .dropdown-item.focus,
.dropdown-dark .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #202020 !important;
}

.dropdown-muted .dropdown-menu .dropdown-item:hover,
.dropdown-muted .dropdown-menu .dropdown-item.active,
.dropdown-muted .dropdown-menu .dropdown-item:active,
.dropdown-muted .dropdown-menu .dropdown-item.focus,
.dropdown-muted .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #3f4958 !important;
}

.dropdown-light .dropdown-menu .dropdown-item:hover,
.dropdown-light .dropdown-menu .dropdown-item.active,
.dropdown-light .dropdown-menu .dropdown-item:active,
.dropdown-light .dropdown-menu .dropdown-item.focus,
.dropdown-light .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: rgb(250, 250, 250) !important;
}

.dropdown-footer .dropdown-menu .dropdown-item:hover,
.dropdown-footer .dropdown-menu .dropdown-item.active,
.dropdown-footer .dropdown-menu .dropdown-item:active,
.dropdown-footer .dropdown-menu .dropdown-item.focus,
.dropdown-footer .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #35404E !important;
}

.btn-group .dropdown-toggle:after {
    content: "";
    position: relative;
    right: -7px;
    top: -2px;
    border: solid #fff;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 0;
    vertical-align: 0;
}

.btn-group .dropdown-menu {
    margin-top: 10px;
    border: 0;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
}

.btn-group .dropdown-menu:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 45px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 7px solid #495057;
    border-radius: 0.5px;
    border-color: transparent transparent #ffffff #ffffff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-box-shadow: -2px 2px 2px -1px rgba(22, 28, 45, 0.15);
    box-shadow: -2px 2px 2px -1px rgba(22, 28, 45, 0.15);
}

.alert-primary {
    background-color: #837cec;
    color: #ffffff;
    border-color: var(--primary);
}

.alert-outline-primary {
    background-color: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.alert-secondary {
    background-color: #fdfdfe;
    color: #ffffff;
    border-color: #eeeeee;
}

.alert-secondary .alert-link {
    color: #8989c4;
}

.alert-outline-secondary {
    background-color: #ffffff;
    color: #eeeeee;
    border-color: #eeeeee;
}

.alert-success {
    background-color: #1bd29f;
    color: #ffffff;
    border-color: #3fc77d;
}

.alert-success .alert-link {
    color: #07392b;
}

.alert-outline-success {
    background-color: #ffffff;
    color: #3fc77d;
    border-color: #3fc77d;
}

.alert-warning {
    background-color: #f6b36b;
    color: #ffffff;
    border-color: #f5a958;
}

.alert-warning .alert-link {
    color: #aa5d0a;
}

.alert-outline-warning {
    background-color: #ffffff;
    color: #f5a958;
    border-color: #f5a958;
}

.alert-info {
    background-color: #769eea;
    color: #ffffff;
    border-color: #6492e7;
}

.alert-info .alert-link {
    color: #18469a;
}

.alert-outline-info {
    background-color: #ffffff;
    color: #6492e7;
    border-color: #6492e7;
}

.alert-danger {
    background-color: #f64874;
    color: #ffffff;
    border-color: #f53565;
}

.alert-danger .alert-link {
    color: #8a0728;
}

.alert-outline-danger {
    background-color: #ffffff;
    color: #f53565;
    border-color: #f53565;
}

.alert-dark-blue {
    background-color: #0a0a4f;
    color: #ffffff;
    border-color: #08083d;
}

.alert-dark-blue .alert-link {
    color: black;
}

.alert-outline-dark-blue {
    background-color: #ffffff;
    color: #08083d;
    border-color: #08083d;
}

.alert-dark {
    background-color: #445264;
    color: #ffffff;
    border-color: #202020;
}

.alert-dark .alert-link {
    color: black;
}

.alert-outline-dark {
    background-color: #ffffff;
    color: #202020;
    border-color: #202020;
}

.alert-muted {
    background-color: #909caf;
    color: #ffffff;
    border-color: #3f4958;
}

.alert-muted .alert-link {
    color: #3d4654;
}

.alert-outline-muted {
    background-color: #ffffff;
    color: #3f4958;
    border-color: #3f4958;
}

.alert-light {
    background-color: white;
    color: #ffffff;
    border-color: rgb(250, 250, 250);
}

.alert-light .alert-link {
    color: #60b0ff;
}

.alert-outline-light {
    background-color: #ffffff;
    color: rgb(250, 250, 250);
    border-color: rgb(250, 250, 250);
}

.alert-footer {
    background-color: #3d4a5a;
    color: #ffffff;
    border-color: #35404E;
}

.alert-footer .alert-link {
    color: black;
}

.alert-outline-footer {
    background-color: #ffffff;
    color: #35404E;
    border-color: #35404E;
}

.alert {
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
}

.alert.alert-light {
    background-color: rgb(250, 250, 250);
    color: #202020;
    border-color: #dee2e6;
}

.alert.alert-dismissible {
    padding-right: 30px;
}

.alert.alert-dismissible .close {
    top: -2px;
    right: -10px;
    font-size: 16px !important;
}

.alert.alert-pills {
    border-radius: 30px;
    display: inline-block;
}

.alert.alert-pills .content {
    font-weight: 600;
}

.nav-pills {
    margin-bottom: 15px;
    background: #f4f9ff;
}

.nav-pills .nav-link {
    color: #495057 !important;
    padding: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.nav-pills .nav-link.active {
    background: var(--primary);
    color: #ffffff !important;
}

.nav-pills .nav-link.active .tab-para {
    color: rgb(250, 250, 250) !important;
}

.nav-pills a .title {
    font-size: 17px;
    font-weight: 700;
}

.fea {
    stroke-width: 1.8;
}

.fea.icon-sm {
    height: 16px;
    width: 16px;
}

.fea.icon-ex-md {
    height: 20px;
    width: 20px;
}

.fea.icon-m-md {
    height: 28px;
    width: 28px;
}

.fea.icon-md {
    height: 35px;
    width: 35px;
}

.fea.icon-lg {
    height: 42px;
    width: 42px;
}

.fea.icon-ex-lg {
    height: 52px;
    width: 52px;
}

.avatar.avatar-ex-sm {
    max-height: 25px;
}

.avatar.avatar-md-sm {
    height: 45px;
    width: 45px;
}

.avatar.avatar-small {
    height: 70px;
    width: 70px;
}

.avatar.avatar-m-md {
    height: 90px;
    width: 90px;
}

.avatar.avatar-medium {
    height: 110px;
    width: 110px;
}

.avatar.avatar-large {
    height: 140px;
    width: 140px;
}

.avatar.avatar-ex-large {
    height: 180px;
    width: 180px;
}

/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgb(250,250,250), rgb(250,250,250));
  z-index: 9999999;
}

#preloader #status {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
} */

.faq-content .card a.faq[data-toggle=collapse] {
    background-color: #ffffff;
    color: var(--primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.faq-content .card a.faq[data-toggle=collapse]:before {
    content: '\F0143';
    position: absolute;
    right: 20px;
    top: 27% !important;
    font-family: 'Material Design Icons';
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: var(--primary);
}

.faq-content .card a.faq[data-toggle=collapse].collapsed {
    background-color: #ffffff;
    color: #202020 !important;
}

.faq-content .card a.faq[data-toggle=collapse].collapsed:before {
    top: 20px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #202020 !important;
}

.home-shape-arrow {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
    left: 0;
}

.home-shape-arrow i {
    height: 50px;
    width: 50px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
    border-radius: 30px;
}

.home-shape-arrow .arrow-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.home-shape-arrow {
    bottom: 25px;
}

.map {
    line-height: 0;
}

.map iframe {
    width: 100%;
    height: 440px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
}

.form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid rgba(60, 72, 88, 0.1) !important;
    color: #202020;
    height: 40px;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.form-group .form-control:focus,
.form-group .form-control.active {
    border-color: var(--primary);
}

.form-group textarea {
    height: 120px !important;
}

.form-group textarea.form-control {
    line-height: 25px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: transparent;
    opacity: 1;
}

.form-check-input:checked~.custom-control-label:before {
    border-color: var(--primary);
    background-color: var(--primary);
}

.form-check-input:focus~.custom-control-label::before,
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary);
}

.custom-control-label:before {
    background: transparent;
}

.custom-control-label {
    cursor: pointer;
}

.custom-control-label:before,
.custom-control-label:after {
    top: 1px;
}

.subcribe-form input {
    padding: 12.5px 20px;
    width: 100%;
    color: #202020 !important;
    border: none;
    outline: none !important;
    padding-right: 130px;
    background-color: rgba(255, 255, 255, 0.9);
}

.subcribe-form .btn {
    padding: 9.5px 20px !important;
}

.subcribe-form button {
    position: absolute;
    top: 26px;
    right: 17px;
    outline: none !important;
}

.title-heading .breadcrumb-position {
    position: relative;
    top: 110px;
    z-index: 99;
}

.breadcrumb {
    letter-spacing: 0.5px;
    padding: 8px 24px;
    display: block;
}

.breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
    padding-left: 0;
    display: inline-block;
}

.breadcrumb .breadcrumb-item a {
    color: #202020;
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb .breadcrumb-item:last-child:after {
    display: none;
}

.pagination .page-item .page-link {
    color: #202020;
    border: 1px solid #dee2e6;
    padding: 12px 18px;
    font-size: 14px;
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination .page-item .page-link:hover {
    color: #ffffff;
    background: rgba(27.5, 97.5, 75.0, 0.9);
    border-color: rgba(27.5, 97.5, 75.0, 0.9);
}

.pagination .page-item:first-child .page-link {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.pagination .page-item.active .page-link {
    color: #ffffff;
    background: var(--primary) !important;
    border-color: var(--primary);
    cursor: not-allowed;
}

.social-icon li a {
    color: #202020;
    border: 1px solid #202020;
    display: inline-block;
    height: 32px;
    text-align: center;
    font-size: 15px;
    width: 32px;
    line-height: 27px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.social-icon li a .fea-social {
    stroke-width: 2;
}

.social-icon li a:hover {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.social-icon li a:hover .fea-social {
    fill: var(--primary-hover);
}

.social-icon.social li a {
    color: #adb5bd;
    border-color: #adb5bd;
}

.back-to-top {
    z-index: 99;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
}

.back-to-home {
    position: absolute;
    top: 4%;
    right: 2%;
    z-index: 1;
}

.back-to-home a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    background: var(--primary);
}

.back-to-home a .fea {
    stroke-width: 2;
}

.partner-img {
    opacity: 0.6;
}

[class^=uil-]:before,
[class*=" uil-"]:before {
    margin: 0;
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
}

@media (min-width: 1024px) {
    .padding-ten {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media (min-width: 1025px) {
    .padding-ten {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 768px) {
    .title-heading .breadcrumb-position {
        top: 70px;
    }
}

#topnav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1030;
    background-color: white;
    border: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#topnav .logo {
    float: left;
    color: #202020 !important;
}

#topnav .logo .l-dark {
    display: none;
}

#topnav .logo .l-light {
    display: inline-block;
}

#topnav .has-submenu.active a {
    color: #ffffff;
}

#topnav .has-submenu.active.active .menu-arrow {
    border-color: var(--primary);
}

#topnav .has-submenu {
    position: relative;
}

#topnav .has-submenu .submenu .submenu-arrow {
    border: solid #202020;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 20px;
    top: 14px;
}

#topnav .navbar-toggle {
    border: 0;
    position: relative;
    width: 60px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#topnav .navbar-toggle .lines {
    width: 25px;
    display: block;
    position: relative;
    margin: 28px 20px 28px;
    height: 18px;
}

#topnav .navbar-toggle span {
    height: 2px;
    width: 100%;
    background-color: #202020;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

#topnav .navbar-toggle span:last-child {
    margin-bottom: 0;
}

#topnav .buy-button {
    float: right;
    line-height: 64px;
    padding: 3px 0;
}

#topnav .buy-button .login {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#topnav .buy-button .login.login-light {
    color: rgba(255, 255, 255, 0.6) !important;
}

#topnav .buy-button .login.login-light:hover {
    color: #ffffff !important;
}

#topnav .buy-button .login:hover {
    color: var(--primary) !important;
}

#topnav .buy-button .login-btn-primary {
    display: none;
}

#topnav .buy-button .login-btn-light {
    display: inline-block;
}

#topnav .navbar-toggle.open span {
    position: absolute;
}

#topnav .navbar-toggle.open span:first-child {
    top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2) {
    visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child {
    width: 100%;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#topnav .navbar-toggle.open span:hover {
    background-color: var(--primary);
}

#topnav .navbar-toggle:hover,
#topnav .navbar-toggle:focus,
#topnav .navbar-toggle .navigation-menu>li>a:hover,
#topnav .navbar-toggle:focus {
    background-color: transparent;
}

#topnav .navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#topnav .navigation-menu>li {
    float: left;
    display: block;
    position: relative;
    margin: 0 10px;
}

#topnav .navigation-menu>li>a {
    display: block;
    color: #202020;
    font-size: 16px;
    background-color: transparent !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.4px;
    line-height: 24px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-left: 4px;
    padding-right: 4px;
}

#topnav .navigation-menu>li>a:hover,
#topnav .navigation-menu>li>a:active {
    color: var(--primary);
}

#topnav .navigation-menu>li:hover>a,
#topnav .navigation-menu>li.active>a {
    color: var(--primary) !important;
}

#topnav .navigation-menu .has-submenu .menu-arrow {
    border: solid #202020;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    right: -5px;
    top: 34px;
}

#topnav .menu-extras {
    float: right;
}

#topnav.scroll {
    background-color: #ffffff;
    border: none;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
}

#topnav.scroll .navigation-menu>li>a {
    color: #202020;
}

#topnav.scroll .navigation-menu>li>.menu-arrow {
    border-color: #202020;
}

#topnav.scroll .navigation-menu>li:hover>a,
#topnav.scroll .navigation-menu>li.active>a {
    color: var(--primary);
}

#topnav.scroll .navigation-menu>li:hover>.menu-arrow,
#topnav.scroll .navigation-menu>li.active>.menu-arrow {
    border-color: var(--primary);
}

#topnav.defaultscroll.dark-menubar .logo {
    line-height: 70px;
}

#topnav.defaultscroll.scroll .logo {
    line-height: 62px;
}

#topnav.defaultscroll.scroll.dark-menubar .logo {
    line-height: 62px;
}

#topnav.nav-sticky {
    background: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
}

#topnav.nav-sticky .navigation-menu.nav-light>li>a {
    color: #202020;
}

#topnav.nav-sticky .navigation-menu.nav-light>li.active>a {
    color: var(--primary) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light>li:hover>.menu-arrow,
#topnav.nav-sticky .navigation-menu.nav-light>li.active>.menu-arrow {
    border-color: var(--primary) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light>li:hover>a,
#topnav.nav-sticky .navigation-menu.nav-light>li.active>a {
    color: var(--primary) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light .has-submenu .menu-arrow {
    border-color: #202020;
}

#topnav.nav-sticky .buy-button .login.login-light {
    color: #202020 !important;
}

#topnav.nav-sticky .buy-button .login.login-light:hover {
    color: var(--primary) !important;
}

#topnav.nav-sticky .buy-button .login-btn-primary {
    display: inline-block;
}

#topnav.nav-sticky .buy-button .login-btn-light {
    display: none;
}

#topnav.nav-sticky .logo .l-dark {
    display: inline-block;
}

#topnav.nav-sticky .logo .l-light {
    display: none;
}

.logo {
    padding: 1px 0;
    line-height: 64px;
}

@media (min-width: 992px) {
    #topnav .navigation-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: center;
    }

    #topnav .navigation-menu>.has-submenu>.submenu>.has-submenu>.submenu::before {
        top: 20px;
        margin-left: -35px;
        -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
        border-color: transparent #ffffff #ffffff transparent;
    }

    #topnav .navigation-menu>li .submenu {
        position: absolute;
        top: 90%;
        left: 0;
        z-index: 1000;
        padding: 10px 0;
        list-style: none;
        min-width: 470px;
        visibility: hidden;
        opacity: 0;
        margin-top: 10px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        border-top: 2px solid var(--primary);
        border-radius: 3px 3px 5px 5px;
        background-color: #ffffff;
        -webkit-box-shadow: 0px 10px 49px 8px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: 0px 10px 49px 8px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 10px 49px 8px rgba(0, 0, 0, 0.08);
    }

    #topnav .navigation-menu>li .submenu:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 45px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 7px solid #495057;
        border-color: transparent transparent var(--primary) var(--primary);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #topnav .navigation-menu>li .submenu>li .submenu {
        left: 106%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 15px;
        min-height: 62px;
    }

    #topnav .navigation-menu>li:hover>.menu-arrow {
        border-color: var(--primary);
    }

    #topnav .navigation-menu>li .submenu li {
        position: relative;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        padding: 7px 32px 7px 20px;
        clear: both;
        white-space: nowrap;
        font-size: 14px;
        letter-spacing: 0.02em;
        font-weight: 400;
        color: #000 !important;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    #topnav .navigation-menu>li .submenu li a:hover {
        color: var(--primary) !important;
    }

    #topnav .navigation-menu>li .submenu li ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu {
        white-space: nowrap;
        width: auto;
    }

    #topnav .navigation-menu>li .submenu.megamenu li a {
        padding: 10px 25px;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li {
        overflow: hidden;
        /* min-width: 180px; */
        display: inline-block;
        vertical-align: top;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li .submenu {
        left: 100%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li.last-elements .submenu {
        left: auto;
        right: 0;
    }

    #topnav .navigation-menu>li.last-elements .submenu:before {
        left: auto;
        right: 10px;
    }

    #topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 10px;
    }

    #topnav .navigation-menu.nav-light>li>a {
        color: rgba(255, 255, 255, 0.6);
    }

    #topnav .navigation-menu.nav-light>li:hover>a {
        color: var(--primary) !important;
    }

    #topnav .navbar-toggle {
        display: none;
    }

    #topnav #navigation {
        display: block !important;
    }

    #topnav.scroll {
        top: 0;
    }

    #topnav.scroll .navigation-menu>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #topnav.scroll-active .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

@media (max-width: 991px) {
    #topnav {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
        box-shadow: 0 0 3px rgba(60, 72, 88, 0.2);
        min-height: 74px;
    }

    #topnav .logo .l-dark {
        display: inline-block !important;
    }

    #topnav .logo .l-light {
        display: none !important;
    }

    #topnav .container {
        width: auto;
    }

    #topnav #navigation {
        max-height: 400px;
    }

    #topnav .navigation-menu {
        float: none;
    }

    #topnav .navigation-menu>li {
        float: none;
    }

    #topnav .navigation-menu>li .submenu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        position: relative;
        padding: 7px 15px;
        font-size: 14px;
        letter-spacing: 0.04em;
        font-weight: 500;
        color: #202020 !important;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        margin-left: 15px;
    }

    #topnav .navigation-menu>li .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu .submenu {
        display: none;
        list-style: none;
    }

    #topnav .navigation-menu>li .submenu .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul {
        list-style: none;
        padding-left: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul>li>span {
        display: block;
        position: relative;
        padding: 10px 15px;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        color: #3f4958;
    }

    #topnav .navigation-menu>li>a {
        color: #202020;
        padding: 10px 20px;
    }

    #topnav .navigation-menu>li>a:after {
        position: absolute;
        right: 15px;
    }

    #topnav .navigation-menu>li>a:hover,
    #topnav .navigation-menu>li .submenu li a:hover,
    #topnav .navigation-menu>li.has-submenu.open>a {
        color: var(--primary);
    }

    #topnav .menu-extras .menu-item {
        border-color: #3f4958;
    }

    #topnav .navbar-header {
        float: left;
    }

    #topnav .buy-button .login-btn-primary {
        display: inline-block !important;
    }

    #topnav .buy-button .login-btn-light {
        display: none;
    }

    #topnav .has-submenu .submenu .submenu-arrow {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        right: 20px;
        top: 12px;
    }

    #topnav .has-submenu.active a {
        color: var(--primary);
    }

    #navigation {
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        display: none;
        height: auto;
        padding-bottom: 0;
        overflow: auto;
        border-top: 1px solid #eff7ff;
        border-bottom: 1px solid #eff7ff;
        background-color: #ffffff;
    }

    #navigation.open {
        display: block;
        overflow-y: auto;
    }
}

#topnav .navigation-menu>li .submenu {
    min-width: 190px;
}

@media (max-width: 768px) {
    #topnav .navigation-menu .has-submenu .menu-arrow {
        right: 16px;
        top: 16px;
    }

    #topnav .buy-button .login.login-light {
        color: #202020 !important;
    }

    #topnav .buy-button .login.login-light:hover {
        color: var(--primary) !important;
    }

    #topnav .buy-button {
        display: none !important;
    }
}

@media (min-width: 768px) {
    #topnav .navigation-menu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }

    #topnav .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-toggle {
        display: block;
    }
}

.text-primary .uil {
    font-size: 48px;
}

@media (max-width: 745px) {
    #topnav .buy-button .book-seat {
        display: none;
    }

    #topnav .buy-menu-btn {
        display: block !important;
        margin: 0 10px;
        padding: 10px 20px;
    }
}

.bg-home {
    height: 100vh;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half-260 {
    padding: 260px 0;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half-170 {
    padding: 170px 0;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half {
    padding: 184px 0 90px;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

.user-pages {
    height: 100vh;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

.shape-before .shape-img {
    position: absolute;
    top: -60px;
    left: -75px;
    z-index: -1;
    height: auto;
    overflow: hidden;
}

.home-slider .carousel-control-next,
.home-slider .carousel-control-prev {
    width: 30px;
    height: 30px;
    margin: auto;
}

.home-slider .carousel-item,
.home-slider .carousel {
    height: 100vh;
    width: 100%;
}

.home-slider .carousel-item {
    background-position: center center;
    background-size: cover;
}

.home-slider .carousel-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 8px;
    height: 8px;
}

@media (max-width: 768px) {
    .bg-half {
        padding: 169px 0 50px;
    }
}

@media (max-width: 767px) {

    .bg-home,
    .bg-half-170,
    .bg-half-260,
    .main-slider .slides .bg-slider,
    .bg-marketing,
    .user-pages {
        padding: 150px 0;
        height: auto;
    }
}

.feature.explore-feature {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature.explore-feature .icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature.explore-feature:hover {
    -webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
    box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}

.feature.explore-feature:hover .icon {
    color: var(--primary) !important;
}

.feature .icons {
    height: 80px;
    line-height: 76px;
    background: linear-gradient(45deg, transparent, rgba(27.5, 97.5, 75.0, 0.1));
}

.feature .content .title {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature .content .title:hover {
    color: var(--primary) !important;
}

.watch-video a.watch {
    font-size: 14px;
    font-weight: 700;
}

.watch-video a .play-icon-circle {
    height: 36px;
    width: 36px;
    background-color: var(--primary);
    line-height: 36px;
}

.watch-video a .play-icon-circle.play-iconbar {
    font-size: 16px;
}

.watch-video a .play-icon-circle.play {
    top: 77%;
}

.bg-cta {
    padding: 150px 0;
}

.play-btn {
    height: 78px;
    width: 78px;
    font-size: 30px;
    line-height: 72px;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
}

.play-icon {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    right: 0;
    left: 0;
    text-align: center;
}

.play-icon i {
    height: 75px;
    -webkit-text-stroke: 2px var(--primary);
    -webkit-text-fill-color: transparent;
    width: 75px;
    font-size: 25px;
    line-height: 75px;
    display: inline-block;
}

.play-icon i:hover {
    -webkit-text-stroke: 2px var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.mfp-iframe-holder .mfp-content {
    max-width: 1110px;
}

.container-filter li a {
    font-size: 13px;
    padding: 0px 15px;
    margin: 5px 3px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    line-height: 34px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.container-filter li a.active,
.container-filter li a:hover {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: rgba(27.5, 97.5, 75.0, 0.1) !important;
}

.work-container.work-modern .content .title {
    font-size: 18px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.work-container.work-modern .content .title:hover {
    color: var(--primary) !important;
}

.work-container.work-modern .content .tag {
    font-size: 15px !important;
}

.work-container.work-modern img,
.work-container.work-modern .overlay-work,
.work-container.work-modern .content,
.work-container.work-modern .icons,
.work-container.work-modern .icons .work-icon {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.work-container.work-modern .overlay-work,
.work-container.work-modern .content,
.work-container.work-modern .icons {
    position: absolute;
}

.work-container.work-modern .overlay-work {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.work-container.work-modern .content {
    z-index: 1;
    bottom: 5%;
    left: 5%;
}

.work-container.work-modern .content {
    opacity: 0;
}

.work-container.work-modern .icons {
    right: 0;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
}

.work-container.work-modern .icons .work-icon {
    height: 45px;
    width: 45px;
    line-height: 42px;
}

.work-container.work-modern .icons .work-icon:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.work-container.work-modern:hover img {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
}

.work-container.work-modern:hover .overlay-work {
    opacity: 0.65;
}

.work-container.work-modern:hover .content {
    opacity: 1;
}

.work-container.work-modern:hover .icons {
    opacity: 1;
}

.event-schedule {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.event-schedule .date .day {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(27.5, 97.5, 75.0, 0.1);
    line-height: 48px;
    border: 3px solid #ffffff;
}

.event-schedule .content .title {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.event-schedule .content .title:hover {
    color: var(--primary) !important;
}

.pricing-rates {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.pricing-rates .price {
    font-weight: 400;
}

.pricing-rates .feature .feature-list {
    margin: auto auto 5px;
    font-size: 15px;
}

.pricing-rates.best-plan .lable {
    width: 200px;
    position: absolute;
    top: 15px;
    right: -65px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-rates.best-plan .lable .best {
    font-size: 12px !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--primary) !important;
}

.client-testi .testi-img {
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    z-index: 1;
    margin: 0 auto;
}

.client-testi .quote-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots.clickable .owl-dot:hover span {
    background: var(--primary) !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
}

.owl-theme .owl-dots .owl-dot span,
.flickity-page-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(27.5, 97.5, 75.0, 0.5) !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

.owl-carousel .owl-item .testi-img {
    display: block;
    width: auto;
}

.carousel .carousel-cell {
    width: 66.67%;
    height: auto;
}

.carousel .carousel-cell:not(.is-selected) {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: .5;
}

.carousel.single-carousel .carousel-cell {
    width: 100%;
}

.flickity-prev-next-button {
    display: none !important;
}

.flickity-page-dots .dot.is-selected {
    width: 10px;
    background: var(--primary) !important;
}

.slick-slider {
    overflow-x: hidden !important;
    cursor: pointer;
}

@media (max-width: 425px) {
    .carousel .carousel-cell {
        width: 100%;
    }
}

.blog-post .title:hover {
    color: var(--primary) !important;
}

.sidebar .widget .widget-search form {
    position: relative;
}

.sidebar .widget .widget-search input[type="text"],
.sidebar .widget .searchform input[type="text"] {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 12px 15px;
    height: 45px;
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none !important;
    padding-right: 45px;
}

.sidebar .widget .widget-search input[type="submit"],
.sidebar .widget .searchform input[type="submit"] {
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0;
    width: 40px;
    height: 40px;
}

.sidebar .widget .widget-search .searchform:after {
    content: "\F0349";
    position: absolute;
    font-family: "Material Design Icons";
    right: 16px;
    top: 15px;
    font-size: 20px;
    line-height: 20px;
    pointer-events: none;
}

.sidebar .widget .widget-title {
    font-size: 18px;
}

.sidebar .widget .catagory li {
    padding-bottom: 10px;
}

.sidebar .widget .catagory li:last-child {
    padding-bottom: 0;
}

.sidebar .widget .catagory li a,
.sidebar .widget .catagory li span {
    font-size: 15px;
}

.sidebar .widget .catagory li a {
    color: #202020;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar .widget .catagory li a:hover {
    color: var(--primary);
}

.sidebar .widget .post-recent {
    padding-bottom: 15px;
}

.sidebar .widget .post-recent:last-child {
    padding-bottom: 0;
}

.sidebar .widget .post-recent .post-recent-thumb {
    width: 25%;
}

.sidebar .widget .post-recent .post-recent-content {
    width: 75%;
    padding-left: 10px;
}

.sidebar .widget .post-recent .post-recent-content a {
    display: block;
    color: #202020;
    font-size: 15px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar .widget .post-recent .post-recent-content a:hover {
    color: var(--primary);
}

.sidebar .widget .post-recent .post-recent-content span {
    font-size: 13px;
}

.sidebar .widget .tagcloud>a {
    background: rgb(250, 250, 250);
    color: #202020;
    display: inline-block;
    font-size: 9px;
    letter-spacing: 1px;
    margin: 5px 10px 5px 0;
    padding: 8px 12px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar .widget .tagcloud>a:hover {
    background: var(--primary);
    color: #ffffff;
}

.sidebar .widget .widget-grid .item {
    position: relative;
    width: 25%;
    padding-top: 25%;
    float: left;
}

.sidebar .widget .widget-grid .item a {
    position: absolute;
    display: block;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    overflow: hidden;
}

.sidebar .widget .widget-grid .item a img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.media-list .comment-desk a:hover {
    color: var(--primary) !important;
}

.media-list .sub-comment {
    border-left: 2px dashed #dee2e6;
}

.error {
    margin: 8px 0px;
    display: none;
    color: #f53565;
}

#ajaxsuccess {
    font-size: 16px;
    width: 100%;
    display: none;
    clear: both;
    margin: 8px 0px;
}

.error_message {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #f53565;
    color: #f53565;
    border-radius: 6px;
    font-size: 14px;
}

.contact-loader {
    display: none;
}

#success_page {
    text-align: center;
    margin-bottom: 50px;
}

#success_page h3 {
    color: #3fc77d;
    font-size: 22px;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer {
    position: relative;
    padding: 60px 0;
    color: #adb5bd;
}

.footer .logo-footer {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
}

.footer .footer-head {
    letter-spacing: 1px;
    font-weight: 400 !important;
}

.footer .text-foot {
    color: #a1a8ae;
}

.footer .footer-list {
    margin-bottom: 0;
}

.footer .footer-list li {
    margin-bottom: 10px;
}

.footer .footer-list li a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.footer .footer-list li a:hover {
    color: #e6e8ea;
}

.footer .footer-list li:last-child {
    margin-bottom: 0;
}

.footer.footer-bar {
    padding: 0 0 30px 0;
}

/*# sourceMappingURL=style.css.map */
.red-shadow {
    box-shadow: 0 0 9px rgb(253 109 109 / 61%) !important;
}

.bg-blue {
    background-color: #EEF6FD;
}

#topnav .buy-button {
    line-height: 64px;
}

/* Footer CSS Start */
.footer-muted-text {
    color: #878787 !important;
}

.animate-border {
    position: relative;
    display: block;
    width: 221px;
    height: 3px;
    background: var(--primary);
}

.animate-border:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    left: 0;
    bottom: 0;
    border-left: 10px solid #202020;
    border-right: 10px solid #202020;
    -webkit-animation: animborder 5s linear infinite;
    animation: animborder 5s linear infinite;
}

@-webkit-keyframes animborder {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(190px);
        transform: translateX(190px);
    }
}

@keyframes animborder {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(190px);
        transform: translateX(190px);
    }
}

.animate-border.border-white:after {
    border-color: #fff;
}

.animate-border.border-yellow:after {
    border-color: #F5B02E;
}

.animate-border.border-orange:after {
    border-right-color: var(--primary);
    border-left-color: var(--primary);
}

.animate-border.border-ash:after {
    border-right-color: #EEF0EF;
    border-left-color: #EEF0EF;
}

.animate-border.border-offwhite:after {
    border-right-color: #F7F9F8;
    border-left-color: #F7F9F8;
}

/* Animated heading border */
@keyframes primary-short {
    0% {
        width: 15%;
    }

    50% {
        width: 90%;
    }

    100% {
        width: 10%;
    }
}

@keyframes primary-long {
    0% {
        width: 80%;
    }

    50% {
        width: 0%;
    }

    100% {
        width: 80%;
    }
}

.dk-footer {
    padding: 75px 0 0;
    background-color: #151414;
    position: relative;
    z-index: 2;
    margin-top: 75px;
}

.dk-footer .contact-us {
    margin-top: 0;
    margin-bottom: 30px;
}

.dk-footer .contact-us .contact-info {
    margin-left: 50px;
}

.dk-footer .contact-us.contact-us-last {
    margin-left: -80px;
}

.dk-footer .contact-icon i {
    font-size: 24px;
    top: -15px;
    position: relative;
    color: var(--primary);
}

.dk-footer-box-info {
    position: absolute;
    top: -122px;
    background: #202020;
    padding: 40px;
    z-index: 2;
    border-radius: 10px;
    max-width: 500px;
}

.dk-footer-box-info .footer-social-link h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

.dk-footer-box-info .footer-social-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dk-footer-box-info .footer-social-link li {
    display: inline-block;
}

.dk-footer-box-info .footer-social-link a i {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #000;
    margin-right: 5px;
    color: #fff;
}

.dk-footer-box-info .footer-social-link a i.fa-facebook {
    background-color: #3B5998;
}

.dk-footer-box-info .footer-social-link a i.fa-twitter {
    background-color: #55ACEE;
}

.dk-footer-box-info .footer-social-link a i.fa-google-plus {
    background-color: #DD4B39;
}

.dk-footer-box-info .footer-social-link a i.fa-linkedin {
    background-color: #0976B4;
}

.dk-footer-box-info .footer-social-link a i.fa-instagram {
    background-color: #B7242A;
}

.footer-awarad {
    margin-top: 285px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-awarad p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-left: 20px;
    padding-top: 15px;
}

.footer-info-text {
    margin: 26px 0 32px;
}

.footer-left-widget {
    padding-left: 45px;
}

@media (max-width: 992px) {
    .footer-left-widget {
        margin-top: 275px;
        padding-left: 0px;
    }

    #contact-blok-right {
        margin-top: 50px;
    }
}

#language_button {
    background-color: var(--primary);
    color: #fff;
}

.footer-widget .section-heading {
    margin-bottom: 35px;
}

.footer-widget h3 {
    font-size: 24px;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.footer-widget ul {
    width: 50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 18px;
}

.footer-widget p {
    margin-bottom: 27px;
}

.footer-widget a {
    color: #878787;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-widget a:hover {
    color: var(--primary);
}

.footer-widget:after {
    content: "";
    display: block;
    clear: both;
}

.dk-footer-form {
    position: relative;
}

.dk-footer-form input[type=email] {
    padding: 14px 28px;
    border-radius: 50px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
}

.dk-footer-form input::-webkit-input-placeholder,
.dk-footer-form input::-moz-placeholder,
.dk-footer-form input:-ms-input-placeholder,
.dk-footer-form input::-ms-input-placeholder,
.dk-footer-form input::-webkit-input-placeholder {
    color: #878787;
    font-size: 14px;
}

.dk-footer-form input::-webkit-input-placeholder,
.dk-footer-form input::-moz-placeholder,
.dk-footer-form input:-ms-input-placeholder,
.dk-footer-form input::-ms-input-placeholder,
.dk-footer-form input::placeholder {
    color: #878787;
    font-size: 14px;
}

.dk-footer-form button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 24px 12px 17px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

.dk-footer-form button:hover {
    cursor: pointer;
}

/* ==========================

 Contact

=============================*/
.contact-us {
    position: relative;
    z-index: 2;
    margin-top: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-icon {
    position: absolute;
}

.contact-icon i {
    font-size: 36px;
    top: -5px;
    position: relative;
    color: var(--primary);
}

.contact-info {
    margin-left: 75px;
    color: #fff;
}

.contact-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}

.copyright {
    padding: 28px 0;
    margin-top: 55px;
    background-color: #202020;
}

.copyright span,
.copyright a {
    color: #878787;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.copyright a:hover {
    color: var(--primary);
}

.copyright-menu ul {
    text-align: right;
    margin: 0;
}

.copyright-menu li {
    display: inline-block;
    padding-left: 20px;
}

.back-to-top {
    position: relative;
    z-index: 2;
}

.back-to-top .btn-dark {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2e2e2e;
    border-color: #2e2e2e;
    display: none;
    z-index: 999;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.back-to-top .btn-dark:hover {
    cursor: pointer;
    background: #FA6742;
    border-color: #FA6742;
}

.sub-menu-arrow {
    border: solid #202020;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    right: 17px;
    top: 13px;
}

.has-submenu:hover>.sub-menu-arrow {
    transform: rotate(-45deg);
}

.card {
    background: white;
    border-radius: 3px;
    border: 0px solid #e9edf3;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

#langSelect {
    max-width: 130px;
    background: rgba(0, 0, 0, 0.3);
    color: #878787;
    border: 1px solid #393939;
}

.ui-autocomplete {
    z-index: 1100 !important;
}

.channel_logo {
    max-width: 110px;
}

@media (min-width: 1200px) {
    .container-xl {
        max-width: 1350px;
    }
}

.channel_logo {
    width: 50%;
    filter: grayscale(0);
}

@media (max-width: 750px) {
    .channel_logo {
        width: 75%;
    }
}

/* --------- Begin FAQ --------- */
.cursor-pointer {
    cursor: pointer;
}

/* --------- End FAQ --------- */

/* light menu bar top */
.navigation-menu.nav-light>li>a {
    color: #000 !important;
}

.l-light {
    display: none !important;
}

.l-dark {
    display: inline !important;
}

/* light menu bar top end */

/* features more info start */
.moreInfoLink,
.reviewTitle {
    font-size: 20px;
}

.reviewText {
    color: #434850;
}

.reviewBox {
    background-color: #fff5db;
    border-radius: 10px;
}

.reviewDate {
    font-size: 12px;
}

/* features more info end */

.bgGray {
    background-color: rgb(250, 250, 250);
}

/* --------- Begin Testimonial --------- */
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190e7;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px 50px 20px 50px;
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190e7;
    transform: translate3d(0, -50%, 0) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #3190e7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0, -50%, 0) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.testimonial-name {
    background-color: #3fc77d;
}

.custom-size-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

/* --------- End Testimonial --------- */

.puco-container--theme-default:not(.puco-container--image) {
    background-color: var(--pd-puco-color-surface-default-background);
}

.puco-container--width-full {
    max-width: 100%;
    padding-left: calc(50% - var(--pd-puco-max-container-width) / 2);
    padding-right: calc(50% - var(--pd-puco-max-container-width) / 2);
}

.puco-grid {
    margin: var(--pd-puco-spacing-none) auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .container-xl {
        max-width: 1350px;
    }
}

.ui-widget-header {
    background: var(--primary);
}

/* Begin Testimonial */
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190e7;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px 50px 20px 50px;
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190e7;
    transform: translate3d(0, -50%, 0) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #3190e7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0, -50%, 0) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/* Einde Testimonial */

/* --------- Begin Registreren --------- */
:root {
    --input-padding-x: 1.5rem;
    --input-padding-y: 0.75rem;
}

.card-signin {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-signin .card-title {
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.5rem;
}

.card-signin .card-img-left {
    width: 45%;
    background: scroll center url('https://source.unsplash.com/WEQbe2jBg40/414x512');
    background-size: cover;
}

.card-signin .card-body {
    padding: 2rem;
}

.form-signin {
    width: 100%;
}

.form-signin .btn {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 1rem;
    transition: all 0.2s;
}

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

.form-label-group input {
    height: auto;
    border-radius: 2rem;
}

.form-label-group>input,
.form-label-group>label {
    padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group>label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: all 0.1s ease-in-out;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #777;
}

.btn-google {
    color: white;
    background-color: #ea4335;
}

.btn-facebook {
    color: white;
    background-color: #3b5998;
}

/* ---------- Changes on channels ----------- */
.interfaces {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.interface-item {
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: transparent;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    margin-right: 50px;
    margin-bottom: 20px;
    color: #3fc77d;
}

.interface-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.interface-item::after {
    right: 0;
    bottom: -3px;
    transform: skewX(30deg);
    transform-origin: bottom right;
}

.interface-list .card img {
    width: 200px;
    height: auto;
}

.interface-list .card {
    width: 300px;
    border: 5px solid #f5f2f2;
    padding: 30px;
    background-color: white;
    border-radius: 19px;
}

.items-card {
    width: 300px;
    height: 181px;
    border: 5px solid #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.name {
    font-weight: bold;
    font-size: 20px;
    padding: 17px;
    color: #544e4e;
}

.interface-type {
    color: grey;
    font-weight: 400;
}

.interface-list {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.card {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.box {
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 3px solid #f8f8f8;
    border-radius: 20px;
}

.box .icon {
    font-size: 70px;
    margin-bottom: 5px;
}

.justify-content-center {
    justify-content: center !important;
    display: flex;
    flex-wrap: nowrap;
}

.suggestion-btn {
    margin-bottom: 200px;
    background-color: white !important;
    border: 2.3px solid #3fc77d !important;
    color: #0077ff !important;
    width: 183px;
    height: 50px;
    margin-top: 50px;
    border-radius: 4px;
    font-weight: 500;
}

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

/* Voeg mediaquery toe voor schermen kleiner dan 768px (mobiele apparaten) */
@media screen and (max-width: 768px) {
    .interface {
        flex-direction: column;
    }

    .interface-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    min-width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 15px;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

input:checked+.slider {
    background-color: #3fc77d;
}

input:checked:disabled+.slider {
    background-color: #32684a;
    cursor: default !important;
}

.text-dark-green {
    color: #32684a;
}

.fa-ul {
    list-style-type: none;
    margin-left: 1.5em;
    margin-right: 4.5em;
}

.fa-ul>li {
    position: relative;
}

.fa-ul>li .fa-solid {
    position: absolute;
    left: -1.3em;
    top: 5px;
}

.bg-black {
    background-color: #000 !important;
}

.bg-light {
    background-color: rgba(250, 250, 250, 1) !important;
}

.bg-white {
    background-color: rgba(255, 255, 255, 1) !important;
}

.bg-transparent {
    background: transparent !important;
}

#subscriptionSection .cards {
    box-shadow: none !important;
}

.rounded-corners {
    border-radius: 30px;
    border: 0px;
}

.bg-gray {
    background-color: #f5f5f7;
}

.shadow-lg {
    box-shadow: 0 8px 41px rgba(60, 72, 88, 0.1) !important
}

.expand-on-hover {
    transition: transform 0.3s ease-in-out;
}

.expand-on-hover:hover {
    transform: scale(1.05);
    /* Expands the card by 5% */
}

/* Algemene styling voor menu-items */
.menu-item {
    display: flex;
    align-items: center;
    /* Veranderd van flex-start naar center voor verticale centrering */
    text-decoration: none;
    /* Verwijder standaard link onderstreping */
    color: inherit;
    /* Erft de kleur van de ouder, zodat titel en paragraaf apart gestyled kunnen worden */
    transition: background-color 0.3s ease;
    /* Soepele overgang voor hover */
    border-radius: 20px;
}

.menu-item:hover {
    background-color: #f5f5f5;
    cursor: pointer;
    /* Lichtgrijze achtergrond bij hover */
}

/* Styling voor iconen */
.menu-item i {
    font-size: 20px;
    color: black;
    /* Grijze kleur voor iconen */
    margin-right: 10px;
    /* Ruimte tussen icoon en content */
    transition: color 0.3s ease;
    /* Soepele overgang voor kleur bij hover */
    flex-shrink: 0;
    /* Voorkom dat het icoon krimpt */
}

/* Kleur veranderen bij hover op het hele menu-item */
.menu-item a {
    font-size: 18px;
    /* Zwarte kleur voor iconen bij hover */
}

/* Kleur veranderen bij hover op het hele menu-item */
.menu-item a:hover {
    color: black;
    /* Zwarte kleur voor iconen bij hover */
}

/* Styling voor de inhoud van het menu-item */
.menu-content {
    display: flex;
    flex-direction: column;
}

/* Styling voor de titel */
.menu-content .title {
    font-weight: bold;
    color: black;
    /* Zwarte kleur voor de titel */
    margin-bottom: 2px;
    /* Kleine marge tussen titel en paragraaf */
    font-size: 14px;
    /* Aangepaste fontgrootte */
}

/* Styling voor de paragraaf */
.menu-content .description {
    color: gray;
    /* Grijze kleur voor de paragraaf */
    font-size: 12px;
    /* Kleinere fontgrootte */
    margin: 0;
    /* Geen marge rondom de paragraaf */
}

/* Optionele aanpassing voor consistente spacing */
.submenu.megamenu .px-3 {
    display: flex;
    flex-direction: column;
}

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
    display: none !important;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none !important;
}

.t-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
    background: #f4f6f8;
}

.t-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.t-media {
    padding-top: 145%;
    /* aspect ratio */
    background-size: cover;
    background-position: center;
    filter: saturate(1.02);
}

.t-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.t-play svg {
    width: 28px;
    height: 28px;
    fill: #1f1f1f;
}

.t-brand {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

/* make edges peek a bit on wide screens */
@media (min-width:992px) {
    #testimonialsCarousel .carousel-inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Trust bar */
.trustbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center
}

@media (min-width:992px) {
    .trustbar {
        justify-content: flex-start
    }
}

.tb-item {
    display: flex;
    align-items: center
}

.tb-badge {
    height: 24px;
    width: auto;
    display: block
}

.tb-sep::before {
    content: "•";
    color: #d0d0d0;
    display: inline-block;
    line-height: 1;
    transform: translateY(-1px)
}

.tb-text {
    font-size: .875rem;
    color: #6c757d
}

.tb-tp {
    max-width: 240px;
    flex: 0 0 auto
}

/* Scoped rail styles */
#channelRail {
    overflow: hidden;
    width: 100%;
    position: relative;
}

#channelRail .logo-rail {
    display: flex;
    will-change: transform;
    transform: translateX(0);
}

#channelRail .logo-rail[data-cd-anim="1"] {
    transition: transform 420ms ease;
}

/* Items: 5 / 4 / 3 / 2 zichtbaar */
#channelRail .logo-item {
    flex: 0 0 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    #channelRail .logo-item {
        flex-basis: 25%;
    }
}

@media (max-width: 767.98px) {
    #channelRail .logo-item {
        flex-basis: 33.3333%;
    }
}

@media (max-width: 575.98px) {
    #channelRail .logo-item {
        flex-basis: 50%;
    }
}

#channelRail .logo-item img {
    max-height: 56px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    #channelRail .logo-item img {
        max-height: 64px;
    }
}