@import "../../css/block-grid-layout.css";

:root {
    --cnvs-themecolor: #f7a600;
}
    
html, body {
    overflow-x: hidden;
}

.icon {
    font-size: 30px;
    vertical-align: middle;
    color: inherit;
}
header {
    border-bottom: 1px solid #f2f2f2;
}
header nav1 {
    position: fixed !important;
    height: auto;
    z-index: 299;
    top:0;
    width: 100%;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border-color);
    transition: height .2s ease 0s, background-color .3s ease 0s;
    backface-visibility: hidden;
}
header.transparent-header {
    --header-bg:transparent;
}
header.sticky-header {
    --header-bg:#fff;
}
    .navbar {
        padding: 0px;
    }

.navbar-brand {
    width: 220px;
    padding: 16px 0px;
    margin: 0px;
}
.dropdown-toggle.lang::after {
    margin-right: 10px;
}
@media (min-width: 768px) {
    .navbar-brand {
        width: 350px;
    }
    }
@media (min-width: 992px) {
    .navbar-brand {
        padding:0px;
    }
}

    .nav-item {
        border-right: 2px solid #f2f2f2;
    }

    .nav-link {
        padding: 30px 25px !important;
        font-size: 18px;
        color: #1a265e;
        font-weight: 300;
    }

        .nav-link:hover {
            background: rgb(249, 249, 249);
        }
        .nav-link:hover .icon {
            color: #f7a609 !important;
        }

            .suboffcanvas {
                width: 380px !important;
                background: #273062;
                box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2) !important;
            }

    .offcanvas-header {
        border-bottom: 2px solid #fff;
    }

    .offcanvas-body {
    }

        .offcanvas-body ul {
            list-style: none;
            padding: 0px;
            margin: 0px;
        }

            .offcanvas-body ul li {
                display: flex;
                align-items: center;
                justify-content: space-between;
                column-gap: 16px;
                border-bottom: 1px solid #295685;
            }

                .offcanvas-body ul li a {
                    font-size: 14px;
                    color: #fff;
                    text-decoration: none;
                    padding: 24px 16px;
                    display: block;
                    flex: 1;
                }

                    .offcanvas-body ul li a.arrow {
                        border-radius: 50%;
                        border: 1px solid;
                        display: flex;
                        align-items: center;
                        padding: 8px;
                        justify-content: center;
                        max-width: 34px;
                    }

                    .offcanvas-body ul li a:hover {
                        color: #f7a609 !important;
                    }

    .page-header {
        background: url(/assets/img/page-header.png) no-repeat scroll 0 0 var(--bs-dark);
        background-position: top right;
        min-height: 160px;
    }

        .page-header h2 {
            max-width: 480px;
            margin: 0px;
        }

            .page-header h2 .icon {
                font-size: 78px;
            }

    .breadcrumb {
        margin: 0px;
    }

        .breadcrumb li {
        }

            .breadcrumb li span {
                font-size: 15px;
            }

            .breadcrumb li a {
                color: rgb(62, 57, 137);
                text-decoration: none;
                font-weight: 500;
            }

                .breadcrumb li a:hover {
                    color: #f7a609 !important;
                }

    footer {
        background: #555471;
        overflow-x: hidden;
        margin-top: 50px;
    }

        footer .footer-nav {
        }

            footer .footer-nav h5 {
            }

            footer .footer-nav ul {
                list-style: none;
                padding: 0px;
                margin: 0px;
            }

                footer .footer-nav ul li {
                }

                    footer .footer-nav ul li a {
                        color: #d7d5ec;
                        text-decoration: none;
                        display: block;
                    }

                        footer .footer-nav ul li a:hover {
                            color: #e8e6fc;
                        }

    .footer-dark {
        background: #46455F;
        position: relative;
    }

        .footer-dark:after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 100%;
            width: 1000px;
            background: #46455f;
        }

    .newsletter-input {
        background-color: rgb(138, 144, 173);
        padding: 8px 16px;
        font-size: 18px;
        color: #fff;
        outline: none;
        border: 0px;
    }
        .newsletter-input::placeholder{
            color:#fff;
        }

        .banner_slider_inner_wrap {
        }

    .banner_img {
        background-position: center 100% !important;
        background-size: cover !important;
        height: calc(100vh - 87px);
        width: 100%;
        display: block;
    }

    .grid-slider.slick-dotted.slick-slider {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .grid-slider .img-wrap {
        height: 480px;
    }

    .grid-slider .slick-dots {
        bottom: -45px;
    }

        .grid-slider .slick-dots li button:before {
            font-size: 16px;
            color: var(--bs-primary);
        }

    .grid-slider .slide-arrow {
        background: transparent;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 9px;
        border-radius: 50%;
        color: var(--bs-primary);
        border: 1px solid var(--bs-primary);
        outline: none;
    }

        .grid-slider .slide-arrow svg {
            width: 32px;
            height: 32px;
        }

        .grid-slider .slide-arrow.prev-arrow {
            left: -60px;
        }

        .grid-slider .slide-arrow.next-arrow {
            right: -60px;
        }

    .fadeInUp {
        animation-name: fadeInUp;
    }

    .animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    .banner_slider_inner .slick-current.slick-active .content {
        animation-name: fadeInUp;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0,100%,0)
        }

        to {
            opacity: 1;
            transform: translate3d(0,0,0)
        }
    }

@media (min-width: 992px) {
    .home-thumnnail {
        min-height:430px;
    }
}
@media (min-width: 1200px) {
    .home-thumnnail {
        min-height: 324px;
    }
}
@media (min-width: 1400px) {
    .home-thumnnail {
        min-height: 290px;
    }
}
.plate-lighter-bg {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 50%, #F4F4F4 100%);
    min-height: 279px;
    padding: 30px;
    box-shadow: 0px 4px 5px rgba(214, 214, 214, 0.82);
    border: 1px solid rgb(235, 235, 235);
    border-top: 2px solid #242c5a;
}


.umbraco-forms-form {
    padding: 10px 0 10px 0
}

.umbraco-forms-caption {
    font-size: 2em !important;
    line-height: 2em !important
}

.umbraco-forms-field {
    clear: both
}

    .umbraco-forms-field div label {
        display: inline
    }

label.umbraco-forms-label {
    font-weight: 700;
    display: block;
    background: 0 0 !important
}

.umbraco-forms-form small {
    display: block;
    float: left;
    clear: both;
    padding: 5px 5px 5px 200px
}

.umbraco-forms-form fieldset {
    padding: 1em 1em 0 0;
    margin: 0 0 1.5em 0;
    border: none !important
}

.umbraco-forms-form .umbraco-forms-navigation {
    padding: 1em 0
}

.umbraco-forms-form legend {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2em;
    display: block
}

.umbraco-forms-form input.text, .umbraco-forms-form input.title, .umbraco-forms-form select, .umbraco-forms-form textarea {
    margin: .5em 0;
    border: 1px solid #bbb
}

    .umbraco-forms-form input.text:focus, .umbraco-forms-form input.title:focus, .umbraco-forms-form select:focus, .umbraco-forms-form textarea:focus {
        border: 1px solid #666
    }

.umbraco-forms-form input.text, .umbraco-forms-form textarea {
    max-width: 100% !important;
    padding: 5px;
    display: block;
    width: 100%;
}

.umbraco-forms-form textarea {
    height: 250px
}

.umbraco-forms-form input.fileupload {
    height: auto !important
}

.umbraco-forms-form .checkboxlist, .umbraco-forms-form .radiobuttonlist, .umbraco-forms-form span.checkbox {
    display: block;
    float: left;
    padding: 10px
}

.umbraco-forms-form .checkboxlist-horizontal div, .umbraco-forms-form .radiobuttonlist-horizontal div {
    display: inline;
    float: left;
    margin-right: 10px
}

.umbraco-forms-form .checkboxlist label {
    float: left;
    clear: left
}

.umbraco-forms-form .checkbox input, .umbraco-forms-form .checkboxlist input, .umbraco-forms-form .radiobuttonlist input {
    width: auto !important;
    height: auto !important;
    border: none !important;
    display: inline !important
}

.umbraco-forms-form .hiddenfield {
    display: none
}

.umbraco-forms-button {
    margin-right: 10px;
    padding: 2px 10px
}

.umbraco-forms-error-message {
    padding: .8em;
    margin-bottom: .5em;
    border: 2px solid #fbc2c4
}

.umbraco-forms-error-message {
    background: #fbe3e4;
    color: #8a1f11
}

.umbraco-forms-form input.contourError, .umbraco-forms-form input.input-validation-error, .umbraco-forms-form textarea.contourError, .umbraco-forms-form textarea.input-validation-error {
    background: #fbe3e4;
    border-color: #fbc2c4
}

.umbraco-forms-form span.contourError, .umbraco-forms-form span.field-validation-error {
    color: #8a1f11 !important;
    background: 0 0 !important
}

.umbraco-forms-form #recaptcha_widget_div {
    margin-left: 200px
}

.umbraco-forms-form .field-validation-error {
    padding-left: 5px
}

.umbraco-forms-hidden {
    display: none !important
}

.gdpr-accept-wrapper {
    display:inline-block;
    color: #000 !important;
    z-index:999999 !important;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;    
}

.gdpr-accept-wrapper a {
    color: #000 !important;
    display:block !important;
    text-decoration: none !important;
    padding:3px 8px !important;
    border:solid 1px black !important;
    border-radius:5px !important;
    cursor:pointer;
}

.banner_img {
  width: 100%;
  aspect-ratio: 2495 / 750;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}