@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    background: white;
    margin: 0;
    color: #222222;
    height: fit-content;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    padding-top: 90px;
}

h1, h2, h3{
    padding: 0;
    margin: 0;
}

strong{
    font-weight: 500;
}

.container {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #222222;
}

a.underline{
    text-decoration: underline;
}

    a.underline:hover{
        text-decoration: none!important;
    }

.nowrap{
    white-space: nowrap;
}

a:hover{
    text-decoration: underline !important;
}

.hidden{
    display: none!important;
}

.flex{
    display: flex!important;
}

.w100{
    width: 100%;
}

.space-between{
    justify-content: space-between;
}

select,
select option{
    font-weight: 200;
    color: #222222;
}

select:disabled,
input:disabled{
    background-color: rgb(235, 235, 228)!important;
}

input,
button,
textarea,
select{
    border: 1px solid rgba(107, 107, 106, 0.4);
    font-family: 'Barlow', sans-serif;
}

textarea{
    font-weight: 200;
    font-size: 16px;
}

input[type=text],
input[type=email],
input[type=password]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder{
    font-weight: 300;
    opacity: 0.8;
}

textarea:focus,
select:focus,
input:focus{
    outline: 2px solid #498392;
    outline-offset: -2px;
}

input[type=number]{
    -moz-appearance:textfield!important;
}

    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        /* display: none; <- Crashes Chrome on hover */
        -webkit-appearance: none;
        margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
    }

input[type=radio]{
}

input[type=checkbox]{
}

.hidden{
    display: none;
}

.navbar{
    display: flex;
    padding: 20px 0 20px 0;
    align-items: center;
    max-width: 100%;
    position: fixed;
    top: 0;
    background: white;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 100;
}

    .navbar.on-scroll{
        box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 12px !important;
    }

    .navbar .logo{
        width: 160px;
        margin: 0 260px 0 0;
    }

        .navbar .logo img{
            width: 100%;
        }

    .navbar ul{
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        align-items: center;
        font-size: 18px;
        width: fit-content;
        position: relative;
    }

        .navbar ul li{
            margin: 0 20px 0 0;
            padding: 6px 0;
        }

        .navbar ul .dropdown{
            position: absolute;
            right: 0;
            display: none;
            width: fit-content;
            max-width: fit-content;
            top: 36px;
            background: #6b6b6a;
            border-radius: 4px;
            opacity: 1;
            margin: 10px 0 0 0;
            z-index: 9999;
            color: white;
            text-align: left;
            font-size: 16px;
            box-sizing: border-box;
            max-height: 400px;
            overflow-y: auto;
            padding: 10px 20px;
        }

            .navbar ul .dropdown a{
                display: block;
                color: white;
            }

        .navbar ul li:last-child:hover > .dropdown{
            display: block;
        }

        .navbar ul li:last-child{
            margin: 0 0 0 260px;
        }

            .navbar ul li:last-child a{
                display: flex;
                align-items: center;
                background: #6b6b6a;
                padding: 6px 15px 6px 15px;
                color: white;
                margin-right: 8px;
                border-radius: 4px;
            }

                .navbar ul li:last-child a.has-image{
                    padding-right: 0;
                }

                .navbar ul li:last-child a img{
                    width: 40px;
                    height: 40px;
                    border-radius: 100%;
                    margin: -11px -8px -11px 8px;
                    border: 2px solid white;
                }

.footer{
    text-align: center;
    padding: 80px 0;
}

    .footer .c{
        margin: 10px 0 0 0;
    }

    .footer .dashboard{
        margin: 0 auto 20px auto;
        background: #498392;
        padding: 6px 14px;
        color: #FFF;
        max-width: fit-content;
        display: block;
    }

.backdrop{
    display: none;
    position: fixed;
    opacity: 0.9;
    background-color: #000;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    bottom: -100px;
    height: 100%;
}

    .backdrop.white{
        background-color: #FFF;
    }

.as-link{
    text-decoration: underline;
    cursor: pointer;
}

    .as-link:hover{
        text-decoration: none!important;
    }

.alert{
    width: 100%;
    margin-bottom: 15px;
    display: block;
    padding: 10px 10px;
    position: relative;
    box-sizing: border-box;
    border-radius: 2px;
    display: none;
    font-weight: 300;
    background: #6b6b6a;
    color: white;
}

    .alert.display{
        display: block;
    }

    .alert.alert-success{
        background: #498392;
    }

    .alert.alert-info{

    }

    .alert.alert-warning{
    }

    .alert.alert-danger{
        background-color: #e12d2d;
    }

button[type=submit]{
    position: relative;
    width: 100%;
}

    button[type=submit]:disabled{
        min-width: 100px;
        min-height: 38px;
        overflow: hidden;
    }

    button[type=submit]:disabled .loader{
        display: block;
    }

    button[type=submit]:disabled .text{
        display: none;
    }

button .loader {
    position: absolute;
    top: calc(50% - 5px);
    left: 50%;
    display: none;
}

    button .loader .bullet {
        position: absolute;
        padding: 5px;
        border-radius: 50%;
        background: #fff;
        -webkit-animation: animIn 1s ease-in-out 0s infinite;
        animation: animIn 1s ease-in-out 0s infinite;
        opacity: 0;
    }

        button .loader .bullet:nth-child(1) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        button .loader .bullet:nth-child(2) {
            -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
        }

        button .loader .bullet:nth-child(3) {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        button .loader .bullet:nth-child(4) {
            -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
        }

        @-webkit-keyframes animIn { 0% {
                -webkit-transform: translateX(-100px);
                transform: translateX(-100px);
                opacity: 0;
            } 50% {
                opacity: 1;
            } 100% {
                -webkit-transform: translateX(100px);
                transform: translateX(100px);
                opacity: 0;
            }
        }

        @keyframes animIn { 0% {
                -webkit-transform: translateX(-100px);
                transform: translateX(-100px);
                opacity: 0;
            } 50% {
                opacity: 1;
            } 100% {
                -webkit-transform: translateX(100px);
                transform: translateX(100px);
                opacity: 0;
            }
        }

.page-error{
    text-align: center;
}

    .page-error.page-404 h1{
        font-size: 50px;
        margin: 100px 0 20px 0;
    }

    .page-error h2{
        font-weight: 200;
    }

.cookie-popup{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    left: 0;
    color: white;
    font-weight: 300;
    text-align: left;
    z-index: 9999;
}

    .cookie-popup .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-popup .t{
        font-size: 16px;
    }

        .cookie-popup .t a{
            color: white;
        }

    .cookie-popup .close{
        position: relative;
        cursor: pointer;
        background: #008489;
        border-radius: 2px;
        padding: 8px 56px 8px 20px;
        font-size: 18px;
        text-transform: uppercase;
        right: 0;
        margin-left: 40px;
        height: fit-content;
    }

        .cookie-popup .close::before{
            content: "\F299";
            font-size: 16px;
            position: absolute;
            top: 12px;
            right: 20px;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            font-family: 'icon';
            line-height: 1;
            font-weight: bold;
        }

textarea.auto-height{
    resize: none;
    overflow: hidden;
}

.default-css-input{
}

    .default-css-input span.required::after{
        content: "(required)";
        font-weight: 200;
    }

    .default-css-input label{
        margin: 0 0 20px 0;
        display: block;
    }

        .default-css-input label .t{
            font-size: 18px;
            margin: 0 0 10px 0;
            font-weight: 400;
        }

            .default-css-input label .t .addi{
                font-weight: 200;
            }

    .default-css-input .info{
        margin: 10px 0 10px 0;
        font-size: 14px;
    }

    .default-css-input input[type=file]{
        background-color: white;
        height: 0;
        overflow: hidden;
        width: 0;
        border: 0;
    }

        .default-css-input input[type=file] + label {
            border: none;
            border-radius: 2px;
            color: #fff;
            cursor: pointer;
            display: inline-block;
            outline: none;
            position: relative;
            transition: all 0.3s;
            vertical-align: middle;
            background: #575e71;
            padding: 10px 20px;
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            width: 100%;
            box-sizing: border-box;
        }

    .default-css-input input[type=email],
    .default-css-input input[type=text],
    .default-css-input input[type=number],
    .default-css-input input[type=url],
    .default-css-input input[type=password],
    .default-css-input select{
        width: 100%;
        box-sizing: border-box;
        padding: 10px 10px 10px 10px;
        font-weight: 400;
        font-size: 16px;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

    .default-css-input textarea{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        box-sizing: border-box;
        padding: 10px 20px 10px 20px;
        font-size: 16px;
        font-weight: 400;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

    .default-css-input button[type=submit],
    .default-css-input button[type=button]{
        width: 100%;
        background: #498392;
        padding: 10px 20px;
        cursor: pointer;
        user-select: none;
        color: white;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        border: 0;
        min-width: 100px;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

.select2-container{
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

    .select2-container--default .select2-search--inline .select2-search__field{
        box-shadow: none!important;
    }

    .select2-container--default .select2-selection--multiple{
        padding: 4px 10px 8px 10px!important;
        min-height: 42px;
    }

    .select2-container--default.select2-container--focus .select2-selection--multiple{
        border: 1px solid rgba(107, 107, 106, 0.4)!important;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
        min-width: inherit!important;
        width: inherit!important;
    }

.yloader{
    z-index: 1;
    width: 0px;
    margin: auto;
    height: 20px;
    display: none;
}

    .yloader .bullet {
        position: absolute;
        padding: 8px;
        border-radius: 50%;
        background: #575e71;
        -webkit-animation: LoaderAnimIn 1s ease-in-out 0s infinite;
        animation: LoaderAnimIn 1s ease-in-out 0s infinite;
        opacity: 0;
    }

        .yloader .bullet:nth-child(1) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        .yloader .bullet:nth-child(2) {
            -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
        }

        .yloader .bullet:nth-child(3) {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .yloader .bullet:nth-child(4) {
            -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
        }

        @-webkit-keyframes LoaderAnimIn { 0% {
                -webkit-transform: translateX(-100px);
                transform: translateX(-100px);
                opacity: 0;
            } 50% {
                opacity: 1;
            } 100% {
                -webkit-transform: translateX(100px);
                transform: translateX(100px);
                opacity: 0;
            }
        }

        @keyframes LoaderAnimIn { 0% {
                -webkit-transform: translateX(-100px);
                transform: translateX(-100px);
                opacity: 0;
            } 50% {
                opacity: 1;
            } 100% {
                -webkit-transform: translateX(100px);
                transform: translateX(100px);
                opacity: 0;
            }
        }

.page{
    max-width: 800px;
    margin: auto;
}

    .page.text-page h1{
        text-align: center;
        margin: 40px 0;
    }

    .page.text-page p{
        line-height: 170%;
    }

.flaming{
    display: block;
    width: 200px;
    height: 200px;
    position: relative;
}

    .flaming img{
        width: 200px;
        height: 200px;
        position: absolute;
        display: block;
        z-index: 10;
        border-radius: 100%;
        border: 5px solid white;
        box-shadow: 10px 10px 42px 0 rgba(0, 0, 0, 0.75)!important;
        box-sizing: border-box;
    }

    .flaming:after,
    .flaming:before {
        mix-blend-mode: multiply;
        filter: none;
        z-index: 0;
        content: "";
        width: calc(100% + (40px * 2));
        height: calc(100% + (40px * 2));
        position: absolute;
        display: block;
        animation: flaminganim 10s ease-in-out infinite;
        transform: translateX(-40px) translateY(-40px);
    }
    @keyframes flaminganim {
        0%,
        100% {
            -webkit-clip-path: polygon(
                0 0,
                calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)),
                100% 100%,
                calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px))
            );
            clip-path: polygon(
                0 0,
                calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)),
                100% 100%,
                calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px))
            );
        }
        50% {
            -webkit-clip-path: polygon(
                calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)),
                100% 0,
                calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)),
                0 100%
            );
            clip-path: polygon(
                calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)),
                100% 0,
                calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)),
                0 100%
            );
        }
    }

    .flaming:after {
        animation-delay: -5s;
        background-color: #93e1d8;
        clip-path: polygon(
            0 0,
            calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)),
            100% 100%,
            calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px))
        );
    }

    .flaming:before {
        background-color: #AA4465;
        clip-path: polygon(
            calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)),
            100% 0,
            calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)),
            0 100%
        );
    }

    .flexapart{
        display: flex;
        justify-content: space-between;
    }

.company-feeds{
    margin: 40px auto auto auto;
    background-color: #f2f2f2;
    padding: 40px 0 80px 0;
    border-radius: 3px;
}

    .company-feeds .line1{
        max-width: 590px;
        margin: auto auto 40px auto;
        text-align: center;
    }

        .company-feeds .line1 .c1{
            font-size: 20px;
        }

        .company-feeds .line1 .c2{
            font-size: 38px;
            font-weight: 600;
        }

.border-top{ border-top: rgb(221, 221, 221) solid 1px;}
.border-right{ border-right: rgb(221, 221, 221) solid 1px;}
.border-bottom{ border-bottom: rgb(221, 221, 221) solid 1px;}
.border-left{ border-left: rgb(221, 221, 221) solid 1px;}

.pt-1{ padding-top: 10px; }
.pt-2{ padding-top: 20px; }
.pt-3{ padding-top: 30px; }
.pt-4{ padding-top: 40px; }
.pr-1{ padding-right: 10px; }
.pr-2{ padding-right: 20px; }
.pr-3{ padding-right: 30px; }
.pr-4{ padding-right: 40px; }
.pb-1{ padding-bottom: 10px; }
.pb-2{ padding-bottom: 20px; }
.pb-3{ padding-bottom: 30px; }
.pb-4{ padding-bottom: 40px; }
.pl-1{ padding-left: 10px; }
.pl-2{ padding-left: 20px; }
.pl-3{ padding-left: 30px; }
.pl-4{ padding-left: 40px; }

.mt-1{ margin-top: 10px; }
.mt-2{ margin-top: 20px; }
.mt-3{ margin-top: 30px; }
.mt-4{ margin-top: 40px; }
.mr-1{ margin-right: 10px; }
.mr-2{ margin-right: 20px; }
.mr-3{ margin-right: 30px; }
.mr-4{ margin-right: 40px; }
.mb-1{ margin-bottom: 10px; }
.mb-2{ margin-bottom: 20px; }
.mb-3{ margin-bottom: 30px; }
.mb-4{ margin-bottom: 40px; }
.ml-1{ margin-left: 10px; }
.ml-2{ margin-left: 20px; }
.ml-3{ margin-left: 30px; }
.ml-4{ margin-left: 40px; }

.cropper-popup{
    max-width: 500px;
    width: 500px;
}

    .cropper-popup h2{
        font-size: 28px;
        font-weight: 500;
        margin: 0 0 20px 0;
    }

    .cropper-popup img{
        width: 500px;
        margin: auto auto 20px auto;
        display: block;
    }

    .cropper-popup button{
        margin-top: 20px;
    }