/*general */

@import url("uikit.css");
@import url("font-awesome.min.css");
@import url("responsive.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons+Outlined");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons+Round");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons+Sharp");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons+Two+Tone");

.material-icons-sm {
    font-size: 18px;
}

body,
html {
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
}

.preloader-wrapper {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999999;
    text-align: center;
    padding-top: 300px;
    color: #fff;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    text-align: center;
    /* position: absolute; */
    margin: 0 auto;
    z-index: 999;
    border-top: 5px solid var(--secondary);
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.preloader-wrapper p {
    color: #333;
    margin: 10px 0;
    text-align: center;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

em {
    color: inherit !important;
}

.uk-radio,
.uk-checkbox {
    border: solid 2px var(--secondary);
}

.uk-dotnav>.uk-active>* {
    background: var(--bg-primary);
}

.uk-grid-divider> :not(.uk-first-column)::before {
    border-color: var(--light);
}

.uk-dotnav>*> :hover,
.uk-dotnav>*> :focus {
    background: var(--bg-primary);
}

.uk-dotnav>*>* {
    border-color: var(--blackk);
}

a,
.uk-link {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    margin-bottom: 5px;
}

.uk-cursor-pointer {
    cursor: pointer;
}

.uk-input,
.uk-select,
.uk-textarea {
    border: 2px solid rgb(0 0 0 / 20%);
    border-radius: 0px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6 {
    font-family: 'Roboto', sans-serif;
}

a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link,
.uk-link-toggle:focus .uk-link {
    color: var(--secondary);
    text-decoration: none;
}

.uk-background-cover {
    background-size: cover !important;
}

.uk-clearfix {
    clear: both;
}

.uk-modal-dialog {
    border-radius: 5px;
    overflow: hidden;
}

.uk-overlay-primary {
    background: rgb(34 34 34 / 50%);
}

.uk-gradient-overlay:before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: all 1s cubic-bezier(.165, .84, .44, 1);
    transition: all 1s cubic-bezier(.165, .84, .44, 1);
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 43, 58, 0)), to(rgb(2 2 2)));
    background: linear-gradient(to bottom, rgb(27 43 58 / 0%) 0, rgb(0 0 0) 100%);
}

.uk-text-bottom .uk-gradient-overlay:before {
    height: 190px;
    bottom: 0;
    top: auto;
}

.uk-card-body {
    padding: 20px 20px;
}

.uk-card-header {
    padding: 10px 20px;
}

.uk-pagination>*>* {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
}

.uk-pagination>*>*:hover {
    background: var(--bg-primary);
    color: var(--white);
}

.uk-pagination li.uk-active span {
    background: var(--bg-primary);
    color: var(--white);
}

.uk-text-theme {
    font-weight: 600;
}

span.uk-badge {
    padding: 0 15px;
    height: 30px;
    border-radius: 0;
}


/*end  general */


/*font size*/

.f-10 {
    font-size: 10px;
}

.f-12 {
    font-size: 12px;
}

.f-13 {
    font-size: 13px;
}

.f-14 {
    font-size: 14px;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.f-24 {
    font-size: 24px;
}

.f-26 {
    font-size: 26px;
}

.f-28 {
    font-size: 28px;
}

.f-30 {
    font-size: 30px;
}

.f-32 {
    font-size: 32px;
}

.f-34 {
    font-size: 34px;
}

.f-36 {
    font-size: 36px;
}

.f-38 {
    font-size: 38px;
}

.f-40 {
    font-size: 40px;
}

.f-42 {
    font-size: 42px;
}

.f-44 {
    font-size: 44px;
}

.f-46 {
    font-size: 46px;
}

.f-48 {
    font-size: 48px;
}

.f-50 {
    font-size: 50px;
}

.f-52 {
    font-size: 52px;
}

.f-54 {
    font-size: 54px;
}

.f-56 {
    font-size: 56px;
}

.f-58 {
    font-size: 58px;
}

.f-60 {
    font-size: 60px;
}

.f-62 {
    font-size: 62px;
}

.f-64 {
    font-size: 64px;
}

.f-66 {
    font-size: 66px;
}

.f-68 {
    font-size: 68px;
}

.f-70 {
    font-size: 70px;
}

.f-72 {
    font-size: 72px;
}

.f-74 {
    font-size: 74px;
}

.f-76 {
    font-size: 76px;
}

.f-78 {
    font-size: 78px;
}

.f-80 {
    font-size: 80px;
}

.f-w-100 {
    font-weight: 100;
}

.f-w-300 {
    font-weight: 300;
}

.f-w-400 {
    font-weight: 400;
}

.f-w-600 {
    font-weight: 600;
}

.f-w-700 {
    font-weight: 700;
}

.f-w-800 {
    font-weight: 800;
}

.f-w-900 {
    font-weight: 900;
}


/*end*/


/*about us */

.uk-pull-top {
    margin-top: -200px;
}

.uk-about-home {
    width: 350px;
    height: 350px;
    overflow: hidden;
    border: solid 5px #fff;
    box-shadow: 1px 1px 20px hsl(0deg 0% 0% / 28%);
    border-radius: 8px;
}

.uk-about-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*end   */


/*wizard donation form*/

.form-wizard {
    color: #888888;
    padding: 30px;
}

ul.uk-donate-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.uk-donate-list li {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}

ul.uk-donate-list li.active {
    background: var(--bg-secondary);
}

ul.uk-donate-list li.active * {
    color: var(--white) !important;
}

ul.uk-donate-list .uk-donate-img {
    width: 80px;
    height: 75px;
}

ul.uk-donate-list .uk-donate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-wizard .wizard-form-radio {
    display: inline-block;
    position: relative;
    min-width: 150px;
}

.form-wizard .wizard-form-radio label {
    margin: 0;
}

.form-wizard .wizard-form-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #dddddd;
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.form-wizard .wizard-form-radio input[type="radio"]:focus {
    outline: 0;
}

.form-wizard .wizard-form-radio input[type="radio"]:checked {
    background-color: #fb1647;
}

.form-wizard .wizard-form-radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50%;
    left: 1px;
    right: 0;
    margin: 0 auto;
    top: 8px;
}

.form-wizard .wizard-form-radio input[type="radio"]:checked::after {
    content: "";
    display: inline-block;
    webkit-animation: click-radio-wave 0.65s;
    -moz-animation: click-radio-wave 0.65s;
    animation: click-radio-wave 0.65s;
    background: #000000;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 50%;
}

.form-wizard .wizard-form-radio input[type="radio"]~label {
    padding-left: 10px;
    cursor: pointer;
}

.form-wizard .form-wizard-header {
    text-align: center;
}

.form-wizard button.form-wizard-next-btn,
.form-wizard button.form-wizard-previous-btn,
.form-wizard button.form-wizard-submit,
.form-wizard .form-wizard-next-btn,
.form-wizard .form-wizard-previous-btn,
.form-wizard .form-wizard-submit {
    background-color: var(--bg-secondary);
    color: #ffffff;
    display: inline-block;
    min-width: 100px;
    min-width: 120px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    outline: 0;
    border: 0;
}

.form-wizard .form-wizard-next-btn:hover,
.form-wizard .form-wizard-next-btn:focus,
.form-wizard .form-wizard-previous-btn:hover,
.form-wizard .form-wizard-previous-btn:focus,
.form-wizard .form-wizard-submit:hover,
.form-wizard .form-wizard-submit:focus {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.form-wizard .wizard-fieldset {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}

.form-wizard .wizard-fieldset.show {
    display: block;
}

.form-wizard .wizard-form-error {
    /*display: none;
  background-color: #d70b0b;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 100%;*/
    display: none;
    margin-top: -5px;
    background-color: var(--bg-red);
    position: relative;
    color: var(--bg-light);
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0 0 5px 5px;
}

.form-wizard .form-wizard-previous-btn {
    background-color: #fb1647;
}

.form-wizard-form .uk-input {
    background: var(--bg-light) !important;
}

.form-wizard .uk-input,
.form-wizard .uk-select {
    font-weight: 600;
    height: 55px !important;
    padding: 15px;
    line-height: 1;
    color: var(--black);
    background-color: var(--bg-white);
    border: none;
    border-radius: 5px;
}

.form-wizard .uk-input:focus {
    box-shadow: none;
}

.form-wizard .form-group {
    position: relative;
    margin: 30px 0;
}

.form-wizard .wizard-form-text-label {
    position: absolute;
    left: 10px;
    top: 16px;
    transition: 0.2s linear all;
}

.form-wizard .focus-input .wizard-form-text-label {
    color: var(--secondary);
    top: -25px;
    left: 5px;
    transition: 0.2s linear all;
    font-size: 15px;
    font-weight: 500;
}

.form-wizard .form-wizard-steps {
    margin: 30px 0;
}

.form-wizard .form-wizard-steps li {
    width: 25%;
    float: left;
    position: relative;
}

.form-wizard .form-wizard-steps li::after {
    background-color: #f3f3f3;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
}

.form-wizard .form-wizard-steps li span {
    background-color: #dddddd;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
}

.form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
}

.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
    background-color: #d65470;
    color: #ffffff;
}

.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
    background-color: #d65470;
    left: 50%;
    width: 50%;
    border-color: #d65470;
}

.form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: #d65470;
}

.form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
}

.form-wizard .wizard-password-eye {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@keyframes click-radio-wave {
    0% {
        width: 25px;
        height: 25px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        width: 60px;
        height: 60px;
        margin-left: -15px;
        margin-top: -15px;
        opacity: 0.0;
    }
}

@media screen and (max-width: 767px) {
    .wizard-content-left {
        height: auto;
    }

    .uk-media-400,
    .uk-article-list-image {
        height: 250px !important;
    }
}

.StripeElement {
    background-color: var(--bg-white);
    padding: 17.5px 16px;
    border-radius: 5px;
    line-height: 0;
    border: 1px solid transparent;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

#card-errors {
    color: #fa755a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}


/*end wizard donation form*/


/* career */

.uk-career-image {
    width: 50%;
    right: 0;
    position: absolute;
}

.uk-career-image {
    display: block;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.uk-career-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .uk-career-image {
        height: 250px;
        float: none;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .uk-career-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* end */


/*single page*/

.uk-arrow-primary:after {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 50px var(--primary);
    border-left: solid 50px transparent;
    border-right: solid 50px transparent;
    z-index: 1;
}

.uk-arrow-secondary:after {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 50px var(--secondary);
    border-left: solid 50px transparent;
    border-right: solid 50px transparent;
    z-index: 1;
}

blockquote q {
    quotes: none;
    font-size: 25px;
    padding: 20px 20px 0 80px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAA7CAYAAADMzlLJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQ0QTgwRTVCN0I5QjExRTNBMTUxOEIzRUVDMTUzNkREIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQ0QTgwRTVDN0I5QjExRTNBMTUxOEIzRUVDMTUzNkREIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDRBODBFNTk3QjlCMTFFM0ExNTE4QjNFRUMxNTM2REQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDRBODBFNUE3QjlCMTFFM0ExNTE4QjNFRUMxNTM2REQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5FSkqQAAACG0lEQVR42uyZ3W3CQAzHaXQD5LG8ZQOyAR0hG0AmaJkgMEHFBMAEsAFhgmaE9Ik+MkJ9kpEi2pA49iUnxX/JAiGQ/Tt/3F14mTjU9frzBi/WZmARWAy2mU5f15MeBXHED3HY97lx4CQBm6ODQQRxRJU4krrvGSFH7+gkGhA4hJcl2AIrrFGGWdLZkBmuLH6G4CSZMUKT4bGsds96qEfwNYKzZAjZPoKFHmT72LanmxS0cGjL6uwBuE3AlxR4Izw43GGpD13mThIQNPTV0gPwxFUCgicrnXkAHrusvKBmqHx6AH7fXcLe4F07JOhDcrg1bnVY7q4OLwVYaS8UhAOMC5Voh8d9XtqhBT2AneAmdyP8LnMAvMU4yj+Zx6xHgllegaO8Q69HgrtMiVfofVPZL4Qccu/rUuAnsPRZxZnKakv0elq3ygRJJGEPcaRtp30i5JAFjvs6t/WKNuBV+LlAb60EFlAiCWnbL0plfkOc5nWaC1Rf0RoeS42jGw4XCXFj2VJPeFyHJ4ms49DlnCxLStbv8NwBcxHKOjcO8pnCws8Ehp2EuFvtdxd41iWmyynOkTplPvIk+FnfDg0XHp+tUQfTf63CvUbHEAtpl5L4u+pMPROArR0kkvoAJg8mI5bCe6J4zPChlr3CK7zCK7zCK7zCK7zCK7zCK7zCK7zCK7zCK7zCK7zCK7zCj1L2X9pNzz7zms/7jqP8FWAA1hGzGK8MhCIAAAAASUVORK5CYII=) no-repeat;
    display: block;
}

cite {
    color: #848486;
    float: right;
    display: block;
    font-style: normal;
    margin-right: 0px;
    margin-top: 20px;
    width: 150px;
    font-size: 15px;
}

figure.uk-feature-image figcaption {
    border-bottom: solid 1px var(--light);
    padding: 5px 0;
    text-align: center;
    font-style: italic;
}

.uk-category-title {
    border-bottom: solid 2px var(--primary);
}

.uk-category-title div h1 {
    background: var(--primary);
    padding: 5px 40px 5px 14px;
    border-radius: 10px 0 0 0;
    color: var(--white);
    -webkit-clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}

zg-watermark {
    display: none;
}


/*end*/


/*testimonial*/

.uk-testimonial-body {
    padding: 30px;
}

.uk-testimonial-body p {
    margin: 0;
}

.uk-testimonial {
    background: var(--bg-white);
}

.uk-testimonial-footer {
    padding: 10px 23px;
    border-top: solid 1px var(--light);
}

span.uk-testimonial--quote {
    font-size: 60px;
    color: #232323;
    opacity: 0.07;
    position: absolute;
    right: 10px;
    bottom: 0;
}

.uk-slider-btn-custom {
    background: var(--bg-primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0px;
    line-height: 30px;
    text-align: center;
}

.uk-slider-btn-custom svg {
    width: 10px !important;
}

.uk-slider-btn-custom svg polyline {
    stroke-width: 3px !important;
}


/*end testimonial*/


/*list home*/

.uk-upadte-type {
    padding: 2px 15px;
}


/*end*/


/*table*/

.uk-table th {
    padding: 16px 12px;
    text-align: left;
    vertical-align: bottom;
    font-size: 15px;
    font-weight: normal;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

.uk-table-hover>tr:hover,
.uk-table-hover tbody tr:hover {
    background: rgb(11 102 193 / 10%);
}

table.uk-table-striped {
    width: 100%;
    border-collapse: collapse;
}

table.uk-table-striped th {
    padding: 16px 12px;
    text-align: left;
    vertical-align: bottom;
    font-size: 15px;
    font-weight: normal;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

table.uk-table-striped td {
    padding: 16px 12px;
    vertical-align: top;
}

table.uk-table-striped tbody tr:hover {
    background: rgb(11 102 193 / 10%);
}

table.uk-table-striped tbody tr:nth-of-type(odd) {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


/*table end*/


/*accordion*/

.uk-accordion {
    margin: 0;
}


/* ul.uk-accordion li {
    border-top: 1px solid var(--light);
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
} */

.uk-accordion> :nth-child(n+2) {
    margin-top: 16px;
}

.uk-accordion-title {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    color: var(--primary);
    -webkit-transition: color 280ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 280ms cubic-bezier(0.55, 0, 0.1, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.uk-accordion-title:focus,
.uk-accordion-title:hover {
    color: var(--secondary);
}

.uk-accordion-title:before {
    display: none;
}

.uk-accordion-title:after {
    background: 0 0 !important;
    content: "\f107";
    color: var(--primary);
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 24px;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    width: auto;
    height: auto;
    margin-top: -16px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 140ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: -webkit-transform 140ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 140ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 140ms cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 140ms cubic-bezier(0.55, 0, 0.1, 1);
}

.uk-accordion-title .mdi {
    font-size: 22px;
    margin-right: 8px;
    color: rgba(0, 0, 0, 0.54);
}

.uk-accordion .uk-open .uk-accordion-title:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.uk-accordion .uk-open .uk-accordion-title .mdi {
    color: rgba(0, 0, 0, 0.87);
}

.uk-accordion-content {
    margin: 12px 0 0;
    /* font-size: 14px;
     font-size: .875rem*/
}

.uk-accordion-content-expand {
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
}

.uk-accordion-outline .uk-accordion-title {
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    padding: 12px 36px 12px 16px;
}

.uk-accordion-outline .uk-accordion-title:after {
    right: 8px;
}

.uk-accordion-outline .uk-accordion-content {
    padding: 24px 16px;
    margin: 0;
    border-width: 0 1px 1px;
    border-color: transparent;
    border-style: solid;
}

.uk-accordion-outline>li {
    -webkit-transition: all 140ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: all 140ms cubic-bezier(0.55, 0, 0.1, 1);
}

.uk-accordion-outline>li:first-child .uk-accordion-title {
    border-radius: 3px 3px 0 0;
}

.uk-accordion-outline>li:nth-child(n+2) {
    margin-top: -1px;
}

.uk-accordion-outline>li:nth-child(n+2) .uk-accordion-title {
    border-radius: 0;
}

.uk-accordion-outline>li:last-child .uk-accordion-title {
    border-radius: 0 0 3px 3px;
}

.uk-accordion-outline>li.uk-open {
    padding-bottom: 12px;
}

.uk-accordion-outline>li.uk-open .uk-accordion-title {
    border-radius: 3px 3px 0 0;
    border-width: 1px;
    /*border-color: #bdbdbd;
    */
    color: var(--secondary);
    /*background: #f5f5f5*/
}

.uk-accordion-outline>li.uk-open .uk-accordion-content {
    border-color: #e1e1e1;
    border-radius: 0 0 3px 3px;
}

.uk-accordion-outline>li.uk-open:nth-child(n+2) {
    padding-top: 12px;
}

.uk-accordion-alt .uk-accordion-title {
    border-radius: 3px;
    padding: 12px 36px 12px 16px;
    background: rgba(0, 0, 0, 0.08);
}

.uk-accordion-alt .uk-accordion-title:after {
    right: 8px;
}

.uk-accordion-alt .uk-accordion-title.md-color-white:after {
    color: #fff;
}

.uk-accordion-alt .uk-accordion-content {
    padding: 16px;
}

.uk-accordion-alt>li.uk-open .uk-accordion-title {
    background: rgba(0, 0, 0, 0.16);
    color: rgba(0, 0, 0, 0.87);
}


/*end accordion*/


/* button solid*/

.uk-button-text::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    bottom: 100%;
    width: 20px;
    border-bottom: 2px solid var(--secondary);
}

a.uk-button-text {
    padding-left: 28px;
}

a.uk-button-text:hover {
    color: var(--secondary);
}

.uk-button-small {
    padding: 5px 15px;
    outline: 0;
    line-height: 18px;
}

.uk-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.uk-button:hover:after,
.uk-button:focus:after {
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.uk-button span.uk-icon {
    border: solid 1px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.uk-button:hover span.uk-icon {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--white);
}

.uk-button {
    text-transform: uppercase;
    font-weight: 500;
    line-height: 45px;
    padding: 0 45px;
    transition: 0.25s ease-in-out;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    border-radius: 0px !important;
    position: relative;
    outline: 0;
}

.uk-button-small {
    line-height: 30px;
    font-size: 13px;
    padding: 0 25px;
}

.uk-button-primary {
    background: var(--bg-primary);
    color: var(--white);
    cursor: pointer;
}

.uk-button-primary:hover,
.uk-button-primary:focus {
    background: var(--bg-secondary);
    opacity: 0.9;
}

.uk-button-primary-dark {
    background: var(--bg-primary-dark);
    color: var(--white);
    cursor: pointer;
}

.uk-button-primary-dark:hover,
.uk-button-primary-dark:focus {
    background: var(--bg-primary);
    opacity: 0.9;
    color: var(--white);
}

.uk-button-secondary {
    background: var(--bg-secondary);
    color: var(--white) !important;
    cursor: pointer;
}

.uk-button-secondary:hover,
.uk-button-secondary:focus {
    background: var(--bg-primary);
}

.uk-button-white {
    background: var(--bg-white);
    color: var(--primary);
    cursor: pointer;
}

.uk-button-white:hover,
.uk-button-white:focus {
    background: var(--bg-primary);
    color: var(--white);
}

.uk-button-black {
    background: var(--bg-black);
    color: var(--white);
    cursor: pointer;
}

.uk-button-black:hover,
.uk-button-black:focus {
    background: var(--bg-primary);
    color: var(--white);
}


/* end button solid*/


/* button outline*/

.uk-button-primary-outline {
    border: solid 2px var(--primary);
    color: var(--primary);
    background: none;
    cursor: pointer;
}

.uk-button-primary-outline:hover,
.uk-button-primary-outline:focus {
    background: var(--bg-primary);
    border: solid 2px var(--primary);
    color: var(--white);
}

.uk-button-secondary-outline {
    border: solid 2px var(--secondary);
    color: var(--secondary);
    background: none;
    cursor: pointer;
}

.uk-button-secondary-outline:hover,
.uk-button-secondary-outline:focus {
    background: var(--bg-secondary);
    border: solid 2px var(--secondary);
    color: var(--white);
}

.uk-button-white-outline {
    border: solid 2px var(--white);
    color: var(--white);
    background: none;
    cursor: pointer;
}

.uk-button-white-outline:hover,
.uk-button-white-outline:focus {
    background: var(--bg-white) !important;
    color: var(--back);
    background: none;
    cursor: pointer;
}

.uk-button-black-outline {
    border: solid 2px var(--black);
    color: var(--black);
    background: none;
    cursor: pointer;
}

.uk-button-black-outline:hover,
.uk-button-black-outline:focus,
.uk-button-black-outline.active {
    background: var(--bg-black);
    color: var(--white);
    border-color: var(--black);
    cursor: pointer;
}

.uk-button-bg-2-outline {
    border: solid 2px #28d5a7;
    color: #28d5a7;
    background: none;
    cursor: pointer;
}

.uk-button-bg-2-outline:hover,
.uk-button-bg-2-outline:focus,
.uk-button-bg-2-outline.active {
    background: #28d5a7;
    color: var(--white);
    border-color: #28d5a7;
    cursor: pointer;
}


/* end button solid*/


/*concept*/

.uk-concept {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.uk-concept svg {
    width: 100%;
    height: 100%;
    right: 0 !important;
}


/*end*/


/*color*/

:root {
    --primary: #2126b5;
    --primary-dark: #252482;
    --primary-light: #ececff;
    --secondary: #F64C71;
    --white: #fff;
    --light: #f6f6fa;
    --black: #3C3C3C;
    --yellow: #ff7d00;
    --green: #639c01;
    --red: #ea050a;
    --bg-primary: #2126b5;
    --bg-primary-light: #ececff;
    --bg-primary-dark: #252482;
    --bg-secondary: #F64C71;
    --bg-white: #fff;
    --bg-light: #f6f6fa;
    --bg-black: #3C3C3C;
    --bg-yellow: #ff7d00;
    --bg-green: #639c01;
    --bg-red: #ea050a;
}

.text-primary,
.text-primary>* {
    color: var(--primary);
}

.text-primary-light,
.text-primary-light>* {
    color: var(--primary-light);
}

.text-primary-dark,
.text-primary-dark>* {
    color: var(--primary-dark);
}

.text-secondary,
.text-secondary>* {
    color: #d60e54;
}

.text-white,
.text-white>* {
    color: var(--white);
}

.text-light,
.text-light>* {
    color: var(--light);
}

.text-black,
.text-black>* {
    color: var(--black);
}

.text-yellow,
.text-yellow>* {
    color: var(--yellow);
}

.text-light,
.text-light>* {
    color: var(--black-light);
}

.text-green,
.text-green>* {
    color: var(--green);
}

.text-red,
.text-red>* {
    color: var(--red);
}

.bg-primary {
    background: var(--bg-primary);
}

.bg-primary-light {
    background: var(--bg-primary-light);
}

.bg-primary-dark {
    background: var(--bg-primary-dark);
}

.bg-secondary {
    background: var(--bg-secondary);
}

.bg-white {
    background: var(--bg-white) !important;
}

.bg-light {
    background: var(--bg-light);
}

.bg-black {
    background: var(--bg-black);
}

.bg-black-light {
    background: var(--bg-black-light);
}

.bg-green {
    background: var(--bg-green);
}

.bg-red {
    background: var(--red);
}

.bg-pattern {
    background: url('../images/bg/pattern.png');
}

.bg-pattern1 {
    background: url('../images/bg/pattern1.jpg');
}

.bg-pattern2 {
    background: url('../images/bg/pattern2.jpg');
}

.bg-gradient-1 {
    background-image: linear-gradient(45deg, #5065cd 0%, #c366bd 100%) !important;
}

.bg-gradient-2 {
    background-image: linear-gradient(62deg, #d6875a 0%, #f7ce68 100%) !important;
}

.bg-gradient-3 {
    background-image: linear-gradient(45deg, #0877b9 0%, #80d0c7 100%) !important;
}

.bg-gradient-4 {
    background-image: linear-gradient(45deg, #31d0f5 0%, #2c61e6 100%) !important;
}

.bg-1 {
    background-color: #8c43ff !important;
}

.bg-2 {
    background-color: #28d5a7 !important;
}

.bg-3 {
    background-color: #f9b851 !important;
}

.bg-4 {
    background-color: #cc08e9 !important;
}

.bg-5 {
    background-color: #ff8c2a !important;
}

.bg-6 {
    background-color: #25b15f !important;
}

.bg-7 {
    background-color: #307cf3 !important;
}

.bg-8 {
    background-color: #4267b2 !important;
}

.bg-9 {
    background-color: #71c9f8 !important;
}

.bg-10 {
    background-color: #45a7d5 !important;
}

.text-1 {
    color: #8c43ff !important;
}

.text-2 {
    color: #28d5a7 !important;
}

.text-3 {
    color: #f9b851 !important;
}

.text-4 {
    color: #cc08e9 !important;
}

.text-5 {
    color: #ff8c2a !important;
}

.text-6 {
    color: #25b15f !important;
}

.text-7 {
    color: #307cf3 !important;
}

.text-8 {
    color: #4267b2 !important;
}

.text-9 {
    color: #71c9f8 !important;
}

.text-10 {
    color: #45a7d5 !important;
}

.bg-none {
    background: none !important;
}

.bg-transparent {
    background: transparent !important;
}


/*end color*/


/*border*/

.uk-border-light {
    border: solid 1px var(--light);
}

.uk-border-light-top {
    border-top: solid 1px var(--light);
}

.uk-border-light-left {
    border-left: solid 1px var(--light);
}

.uk-border-light-right {
    border-right: solid 1px var(--light);
}

.uk-border-light-bottom {
    border-bottom: solid 1px var(--light);
}

.uk-border-primary {
    border: solid 1px var(--primary);
}

.uk-border-primary-top {
    border-top: solid 1px var(--primary);
}

.uk-border-primary-left {
    border-left: solid 1px var(--primary);
}

.uk-border-primary-right {
    border-right: solid 1px var(--primary);
}

.uk-border-primary-bottom {
    border-bottom: solid 1px var(--primary);
}

.uk-border-primary-top {
    border-top: solid 1px var(--primary);
}

.uk-border-primary-left {
    border-left: solid 1px var(--primary);
}

.uk-border-primary-right {
    border-right: solid 1px var(--primary);
}

.uk-border-primary-bottom {
    border-bottom: solid 1px var(--primary);
}


/*end border*/


/* image effect */


/* border over image */

.uk-border-over:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 1;
    pointer-events: none;
}

.uk-border-over-circle::before {
    border-radius: 50%;
}

.uk-border-over-light::before {
    border: 1px solid var(--light);
}


/* end */


/*  */


/* image size */

@media (max-width: 960px) {

    .uk-media-650,
    .uk-media-450,
    .uk-media-520 {
        height: 300px !important;
    }
}

.uk-media-author-lg img,
.uk-media-author-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uk-media-author-lg {
    width: 100px;
    height: 100px;
}

.uk-media-author-sm {
    width: 70px;
    height: 70px;
}

.uk-media-home {
    width: 180px;
    height: 140px;
    overflow: hidden;
}

.uk-media-small img,
.uk-media-home img,
.uk-media-40 img,
.uk-media-50 img,
.uk-media-60 img,
.uk-media-70 img,
.uk-media-80 img,
.uk-media-100 img,
.uk-media-110 img,
.uk-media-120 img,
.uk-media-130 img,
.uk-media-140 img,
.uk-media-150 img,
.uk-media-160 img,
.uk-media-170 img,
.uk-media-180 img,
.uk-media-190 img,
.uk-media-200 img,
.uk-media-205 img,
.uk-media-240 img,
.uk-media-250 img,
.uk-media-260 img,
.uk-media-270 img,
.uk-media-280 img,
.uk-media-290 img,
.uk-media-300 img,
.uk-media-350 img,
.uk-media-400 img,
.uk-media-450 img,
.uk-media-480 img,
.uk-media-500 img,
.uk-media-520 img,
.uk-media-550 img,
.uk-media-560 img,
.uk-media-570 img,
.uk-media-580 img,
.uk-media-590 img,
.uk-media-600 img,
.uk-media-650 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uk-media-small {
    width: 79px;
    height: 79px;
    overflow: hidden;
}

.uk-media-40 {
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.uk-media-50 {
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.uk-media-60 {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.uk-media-70 {
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.uk-media-80 {
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.uk-media-100 {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.uk-media-110 {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.uk-media-120 {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.uk-media-130 {
    width: 100%;
    height: 130px;
    overflow: hidden;
}

.uk-media-140 {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.uk-media-150 {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.uk-media-160 {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.uk-media-170 {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.uk-media-180 {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.uk-media-190 {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.uk-media-200 {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.uk-media-205 {
    width: 100%;
    height: 205px;
    overflow: hidden;
}

.uk-media-240 {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.uk-media-250 {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.uk-media-260 {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.uk-media-270 {
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.uk-media-280 {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.uk-media-290 {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.uk-media-300 {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.uk-media-350 {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.uk-media-400 {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.uk-media-450 {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.uk-media-480 {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.uk-media-500 {
    width: 100%;
    height: 500px !important;
    overflow: hidden;
}

.uk-media-520 {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.uk-media-550 {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.uk-media-560 {
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.uk-media-570 {
    width: 100%;
    height: 570px;
    overflow: hidden;
}

.uk-media-580 {
    width: 100%;
    height: 580px;
    overflow: hidden;
}

.uk-media-590 {
    width: 100%;
    height: 590px;
    overflow: hidden;
}

.uk-media-600 {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.uk-media-650 {
    width: 100%;
    height: 650px;
    overflow: hidden;
}


/* image size end */


/*top header*/

.uk-top-header {
    background: #e40b16;
    padding: 5px 0;
    font-size: 14px;
}

.uk-top-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/*end*/


/* header icon */

ul.uk-social-media-small {
    display: flex;
    /* display: inline-block;
     */
    /* top: 50%;
     */
    margin: 0;
    /* left: 50%;
     */
    /* transform: translate(-50%, -50%);
     */
    padding: 0;
}

ul.uk-social-media-small li {
    list-style: none;
    display: inline-block;
}

ul.uk-social-media-small li a {
    width: 25px;
    height: 25px;
    background-color: none;
    text-align: center;
    line-height: 25px;
    font-size: 16px;
    margin: 0 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 0;
    z-index: 1;
    color: #fff;
}

ul.uk-social-media-small li a .icon {
    position: relative;
    color: #fff;
    transition: 0.5s;
    z-index: 3;
}

ul.uk-social-media-small li a:hover .icon {
    color: #fff;
    /*transform: rotateY(360deg);*/
}

ul.uk-social-media-small li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d01e1e;
    transition: 0.5s;
    z-index: 2;
}

ul.uk-social-media-small li a:hover:before {
    top: 0;
}

ul.uk-social-media-small li:nth-child(1) a:before {
    background: #3b5999;
}

ul.uk-social-media-small li:nth-child(2) a:before {
    background: #55acee;
}

ul.uk-social-media-small li:nth-child(3) a:before {
    background: #0077b5;
}

ul.uk-social-media-small li:nth-child(4) a:before {
    background: #184f85;
}

ul.uk-social-media-small li:nth-child(5) a:before {
    background: #00af87;
}


/*end*/


/*header*/

.uk-padding-menu {
    padding: 30px 0;
}

header.uk-sticky.uk-sticky-fixed {
    background: #fff;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 12%);
}

.uk-middle-header {
    /* border-bottom: solid 1px #eee; */
    /* padding: 18px 0; */
    display: block;
}

.uk-offcanvas-close {
    top: 8px;
    right: 8px;
    color: #ffffff !important;
    border-radius: 50%;
}

.uk-navbar-toggle.uk-open,
.uk-navbar-toggle:focus,
.uk-navbar-toggle:hover {
    color: #d01e1e !important;
}

.uk-navbar-right {
    position: relative;
    color: #fff;
}

.uk-headertop-bg {
    border-bottom: solid 1px #f3f3f3;
}

.uk-navbar-nav>li>a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: -1px;
    border-radius: 0;
    height: 4px;
    background-color: transparent;
    transition: 0.8s ease-in-out;
    transition-property: background-color, border-color, box-shadow, height, right;
    left: 0;
    right: calc(102% - 14px);
}

.uk-navbar-nav>li:hover>a::before,
.uk-navbar-nav>li>a.uk-open::before,
.uk-navbar-nav>li>a:focus::before,
.uk-navbar-nav>li>a.uk-active::before {
    right: 0;
    background-color: var(--secondary);
}

.uk-navbar-right .uk-contact-icon {
    border: dashed 1px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}


/* menu */

.uk-navsidebar li a {
    border-bottom: solid 1px #eee;
}

ul.uk-navsidebar li {
    display: block;
}

ul.uk-navsidebar li a {
    border-bottom: 0;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
}

ul.uk-navsidebar li a:hover,
ul.uk-navsidebar li a:focus {
    background: rgba(4, 4, 4, 0.19);
}

li.uk-parent ul {
    background-color: rgb(0 0 0 / 40%);
    padding: 10px 20px;
}

li.uk-parent ul li a {
    padding: 8px 20px;
    border-radius: 30px;
}

li.uk-parent ul ul {
    background-color: rgb(0 0 0 / 30%);
}

li.uk-parent ul ul a {
    font-size: 13px;
}


/* */

.uk-h-sticky.uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below .uk-inner-navigation {
    /*background: #003374 !important;*/
    border: 0;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

.uk-h-sticky.uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below .uk-navbar-nav>li>a {
    color: #003374;
}

.uk-navbar-left:before {
    content: "";
    background: var(--primary-dark);
    width: 450px;
    height: 100%;
    position: absolute;
    left: -150px;
    z-index: -1;
    border-radius: 0px 50px 50px 0;
}

span.uk-slogon {
    background: var(--bg-secondary);
    color: var(--white);
    padding: 12px 15px 12px 20px;
    font-weight: bold;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
}

header .uk-navbar-nav>li>a {
    color: var(--black);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    position: relative;
    transition: all 0.5s ease;
    padding: 0 15px;
    min-height: 80px;
    font-size: 16px;
    text-transform: capitalize;
    border-right: solid 1px #e5e9ea;
}

header .uk-navbar-nav>li:last-child>a {
    border-right: 0;
}

header .uk-navbar-nav>li>a span.uk-icon svg polyline {
    stroke-width: 2px;
}

.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li>a.uk-open,
.uk-navbar-nav>li>a:focus,
.uk-navbar-nav>li>a.uk-active {
    color: var(--white);
    outline: 0;
    text-decoration: none;
    background: var(--bg-primary-dark);
}


/*header inner*/

.uk-inner-navigation {
    /* background: #fff !important; */
    border-bottom: solid 1px #eee;
}

.uk-mega-menu .uk-grid-divider> ::before {
    border-left: solid 1px #e5e9ea !important;
}

.uk-mega-menu ul li a {
    color: var(--black);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    display: block;
}


/*.uk-mega-menu ul li a:before{
    content: "";
    margin-right: 8px;
    height: 1px;
    width: 18px;
    background: var(--bg-secondary);
    }*/

.uk-mega-menu ul li a:hover {
    color: var(--white);
}

.uk-mega-menu .uk-button:hover {
    /* background: var(--bg-black); */
}


/*end*/

.uk-offcanvas-bar {
    background: var(--bg-primary) !important;
}

.uk-offcanvas-bar .uk-nav .uk-nav-sub a {
    color: #fff !important;
    border-bottom: 0 !important;
}

.uk-offcanvas-bar .uk-nav .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:focus {
    color: #d01e1e !important;
}

.uk-mega-menu {
    border-top: solid 1px #e5e9ea;
    border-bottom: solid 1px #e5e9ea;
}

.uk-navbar-dropdown,
.uk-dropdown {
    display: none;
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    width: 230px;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    color: var(--white);
    box-shadow: 0 5px 12px rgb(0 0 0 / 15%);
}

.uk-dropdown-nav {
    white-space: inherit;
}

.uk-nav>li {
    /* border-bottom: solid 1px rgb(0 0 0 / 15%); */
}

.uk-nav>li:last-child {
    border-bottom: 0;
}

.uk-nav>li>a {
    padding: 8px 20px;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    margin: 5px 8px;
    border-radius: 30px;
}

.uk-dropdown-nav>li>a:hover,
.uk-dropdown-nav>li>a:focus,
.uk-dropdown-nav>li.uk-active>a {
    color: var(--bg-white);
    background: var(--bg-primary-dark);
}

.uk-no-hover li a:hover,
.uk-no-hover li a:focus,
.uk-no-hover>li>a.uk-open {
    background: transparent;
}

.uk-dropdown-custom:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -20px;
    right: 20px;
    z-index: -1;
    border-style: solid;
    border-width: 0 30px 30px 30px;
    border-color: transparent transparent var(--bg-white) transparent;
}


/*after login*/

.uk-navbar-dropdown-nav-login {
    font-size: 15px;
}

.uk-navbar-dropdown-nav-login li a {
    padding: 10px 15px;
    clear: both;
    font-weight: 400;
    border-radius: 30px;
    color: var(--black);
    display: flex;
}

.uk-navbar-dropdown-nav-login li a:hover {
    background: var(--bg-primary-light);
    color: var(--primary);
}


/**/


/*header end */


/* hero banner for youtube video */

.uk-slidenav svg {
    width: 16px;
}

.uk-slidenav svg polyline {
    stroke-width: 3px;
    stroke: var(--white) !important;
}

.video-background-controls button {
    font-size: 30px;
    display: inline-block;
    outline: 0;
    border: 0;
    padding: 0px;
    margin: 0px;
    height: 32px;
    width: 32px;
    border-radius: 16px;
    line-height: 32px;
    border: none;
    background: none;
    -webkit-appearance: none;
    color: var(--white);
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.419));
    cursor: pointer;
    opacity: 1;
    transition: all 250ms ease-in-out;
    margin-left: 10px;
}

.video-background-controls button:hover {
    opacity: 0.5;
}

iframe {
    transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
}


/* end */


/*blog list*/

.uk-no-border-radius {
    border-radius: 0 !important;
}

.uk-article-list {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 5px;
}


/*.uk-article-list:hover  
{
  opacity: 0;
} */

.uk-article-list-image {
    height: 350px;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}

.uk-article-category {
    background: var(--bg-black);
    color: var(--white);
    display: inline-block;
    padding: 8px 15px;
    margin: 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
}

.uk-article-category {
    background: var(--bg-black);
}


/*.uk-article-category:nth-child(2) {
    margin-left: 0 !important;
}*/

.uk-article-dec {
    width: 100%;
    display: block;
    /*white-space: break-spaces;*/
    bottom: 0;
    position: absolute;
    /*padding: 30px;*/
    line-height: 0;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0%, #000 100%);
    background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0) 0%, #000 100%);
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, #000 100%);
    -webkit-transition: height .3s ease;
    -moz-transition: height .3s ease;
    -ms-transition: height .3s ease;
    -o-transition: height .3s ease;
    transition: height .3s ease;
}

.uk-article-dec h1 {
    padding: 30px;
}

.uk-article-dec:before {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10em;
    z-index: 1;
}

.uk-article-list:hover .uk-article-dec {
    /*height: 100px;*/
}

.uk-article-list:hover .uk-overlay-primary {
    background: none;
}


/*end*/


/*details page show hide*/

.uk-show-details {
    box-shadow: 0em 0em 0.5em 0em rgb(0 0 0 / 25%);
    z-index: 1;
}

.hide-toggle {
    display: none;
}

.uk-block {
    display: block !important;
}


/*end*/


/*tab*/

.uk-home-tab {
    background: #fff;
    /*max-width: 750px;*/
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    list-style: none;
    padding: 0;
}

.uk-home-tab li {
    margin: 0;
    padding: 0;
    flex: auto;
}

.uk-home-tab a {
    font-size: inherit;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uk-home-tab .uk-active>a {
    background: var(--bg-primary);
    color: var(--white);
    border-color: transparent;
}

ul.uk-home-tab::before {
    display: none;
}


/*tab end*/


/* home list */

.uk-list-home h1 {
    font-weight: 600;
}

.uk-list-home h4 {
    font-weight: 500;
}

.uk-home-list-description {
    margin: 30px 0;
}

.uk-home-list-description p {
    /*margin: 0;*/
    font-size: 20px;
    font-weight: 400;
}

ul.uk-theme-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.uk-theme-list li {
    list-style: none;
    background: url(../images/list-icon.png) left center no-repeat;
    padding-left: 30px;
}

ul.uk-theme-list li a {
    font-weight: bold;
    font-size: 15px;
}


/* end */


/* service sidebar */

ul.uk-aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.uk-aside-list li {
    display: block;
    border-bottom: solid 1px var(--light);
}

ul.uk-aside-list li a {
    padding: 12px;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

ul.uk-aside-list li a.uk-active {
    color: var(--secondary);
}


/* end */


/* team */

.uk-members-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.uk-members-list li {
    padding: 0px 0;
}

.uk-members-list li:nth-child(odd) {
    background: var(--bg-white);
}

.uk-members-list li:nth-child(even) {
    background: #f2f2f278;
}

.uk-member-header {
    background: #003374;
    padding: 5px 20px;
}

.uk-member-holder {
    padding: 50px 15px;
    font-size: 15px;
}

.uk-member-holder ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.uk-member-img {
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 50%;
    margin: 15px auto;
}

.uk-member-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uk-member-img-large {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 15px auto;
}

.uk-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uk-member-holder .uk-social-icon svg path {
    fill: #848484;
}

.uk-member-holder .uk-social-icon a:hover svg path {
    fill: var(--primary);
}


/* end */


/*footer start*/

.uk-overlay-footer.uk-position-cover {
    background: rgb(37 36 130 / 84%);
}

ul.uk-list-varticle {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.uk-list-varticle li {
    margin-bottom: 16px;
    font-size: inherit;
    font-weight: 500;
}

ul.uk-list-varticle li a {
    color: var(--white);
}

ul.uk-list-varticle li a:hover {
    color: var(--secondary);
}

.uk-footer-list li a {
    border-bottom: solid 1px;
    font-weight: 500;
    color: var(--primary-dark);
}

.uk-footer-list li a:hover {
    color: var(--secondary);
    color: var(--secondary);
}


/*social media*/

div#social a:hover {
    text-decoration: none;
}

.smGlobalBtn {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
}


/* facebook button class*/

.facebookBtn {
    background: #4060a5;
}

.facebookBtn:before {
    /* use :before to add the relevant icons */
    font-family: "FontAwesome";
    content: "\f09a";
    /* add facebook icon */
}

.facebookBtn:hover {
    color: var(--white);
    background: var(--bg-primary);
}


/* twitter button class*/

.twitterBtn {
    background: #00abe3;
}

.twitterBtn:before {
    font-family: "FontAwesome";
    content: "\f099";
    /* add twitter icon */
}

.twitterBtn:hover {
    color: var(--white);
    background: var(--bg-primary);
}


/* google plus button class*/

.youtubeBtn {
    background: #e64522;
}

.youtubeBtn:before {
    font-family: "FontAwesome";
    content: "\f16a";
}

.youtubeBtn:hover {
    color: var(--white);
    background: var(--bg-primary);
}


/* linkedin button class*/

.linkedinBtn {
    background: #0094bc;
}

.linkedinBtn:before {
    font-family: "FontAwesome";
    content: "\f0e1";
    /* add linkedin icon */
}

.linkedinBtn:hover {
    color: var(--white);
    background: var(--bg-primary);
}


/* pinterest button class*/

.pinterestBtn {
    background: #cb2027;
}

.pinterestBtn:before {
    font-family: "FontAwesome";
    content: "\f0d2";
    /* add pinterest icon */
}

.pinterestBtn:hover {
    color: #cb2027;
    background: #fff;
    border-color: #cb2027;
}


/* instagram button class*/

.instagramBtn {
    background: #184f85;
}

.instagramBtn:before {
    font-family: "FontAwesome";
    content: "\f16d";
    /* add pinterest icon */
}

.instagramBtn:hover {
    color: var(--white);
    background: var(--bg-primary);
}


/* instagram button class*/

a#BackToTop {
    position: fixed;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--bg-primary);
    z-index: 9999;
    border-radius: 0px;
    right: 30px;
    bottom: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
}

#BackToTop.show {
    opacity: 1;
    visibility: visible;
}

a#BackToTop svg {
    color: var(--white);
    width: 25px;
    height: 15px;
}

a#BackToTop svg polyline {
    stroke-width: 2px;
}


/*pagination*/

ul.pagination li {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #eee;
    border-radius: 50%;
}

ul.pagination {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
    margin: 0;
    padding: 15px;
    background: var(--bg-white) !important;
    box-shadow: 0 14px 25px rgb(0 0 0 / 16%);
}

ul.pagination li a {
    color: var(--primary);
}

ul.pagination li.active,
ul.pagination li:hover,
ul.pagination li:focus {
    background: var(--bg-primary);
    color: var(--white);
     !important;
}

ul.pagination li.active a,
ul.pagination li:hover a,
ul.pagination li:focus a {
    color: var(--white);
}


/*footer end
/*new css added*/
 .uk-modal-dialog{
      width: 700px !important;
   }
   .form-text{
      padding: 5px!important;
   }
   .uk-modal-body{
    background: var(--bg-primary-dark) !important;
    border-top: 5px solid var(--bg-secondary) !important;
   }
   .para-font{
    color: white;
    font-size: 38px;
    font-weight:900;
   }
   .uk-input {
    border: none !important;
   
    font-size: 15px !important;
    height: 44px !important;
   }