/* 
Design By = MJ MARAZ
Website = https://portfolio.mjmarazbd.com
Contact = mjmarazbd@gmail.com
WhatsApp = +8801869944607
Facebook = mjmarazbd 
*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

html {
    scroll-behavior: smooth;
}

    html ::-webkit-scrollbar {
        width: 10px;
        background-color: #131414;
        cursor: pointer;
    }

    html ::-webkit-scrollbar-thumb {
        background: linear-gradient(160deg, #dacc0c, #cfa20e);
        width: 10px;
        border-radius: 5px;
    }

        html ::-webkit-scrollbar-thumb:hover {
            background: #379dc3;
            cursor: pointer;
        }

body {
    background: #f4f6f8;
    font-family: "Raleway", sans-serif;
    font-family: "Rubik", sans-serif;
    font-family: "Roboto", sans-serif;
    font-family: "Poppins", sans-serif;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
img,
span,
input,
form,
label,
.btn,
.navbar,
.navbar-brand {
    margin: 0;
    padding: 0;
}

    h1::selection,
    h2::selection,
    h3::selection,
    h4::selection,
    h5::selection,
    h6::selection,
    p::selection,
    a::selection,
    ol::selection,
    ul::selection,
    li::selection,
    img::selection,
    span::selection,
    input::selection,
    form::selection,
    label::selection,
    .btn::selection,
    .navbar::selection,
    .navbar-brand::selection {
        color: #fff;
        background: #ecac22;
    }

ol,
ul,
li {
    list-style-type: none;
}

a,
a:hover {
    text-decoration: none;
    color: #333;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

h1 {
    font-size: 50px;
    color: #111;
    font-weight: 600;
}

h2 {
    font-size: 40px;
    color: #111;
    font-weight: 600;
}

h3 {
    font-size: 35px;
    color: #111;
    font-weight: 600;
}

h4 {
    font-size: 30px;
    color: #111;
    font-weight: 600;
}

h5 {
    font-size: 25px;
    color: #111;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    color: #111;
}

p {
    font-size: 14px;
    color: #111;
}

.ptb {
    padding: 70px 0px;
}

.mtb-15 {
    margin: 15px 0;
}

.btn {
    background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
    padding: 8px 18px;
    border-radius: 3px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: 1s;
    letter-spacing: 1px;
    border-radius: 30px;
}

    .btn:hover {
        background: linear-gradient(-90deg, #e7b018 0%, #f1c73c 100%);
    }

    .btn:focus {
        background: #28926a;
        border-color: #28926a;
        color: #fff;
    }

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(8, 9, 12, 0.712);
}

/* --- Preloader ----- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: linear-gradient(160deg, #08535f, #13254a);
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 2px solid rgba(0, 0, 0, 0);
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1.5s linear infinite;
        animation: animate-preloader 1.5s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========= Common Heading = (START) ============================= */
.heading {
    padding-bottom: 40px;
}

    .heading p {
        font-size: 20px;
        color: #f0bf21;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding-bottom: 10px;
    }

    .heading h4 {
        color: #444;
        font-size: 40px;
        font-weight: 700;
    }

.divider {
    position: relative;
    display: inline-block;
    margin: 0px 0;
    width: 250px;
    text-align: center;
}

    .divider:before {
        position: absolute;
        left: 0;
        top: -5px;
        height: 2.5px;
        width: 125px;
        background: linear-gradient(90deg, rgba(68, 171, 186, 0), #f0bf21);
        content: "";
    }

    .divider:after {
        position: absolute;
        left: 0;
        top: -5px;
        height: 2.5px;
        width: 125px;
        background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #f0bf21);
        content: "";
    }

.heading .divider:after {
    left: auto;
    right: 0;
}

/* ========= Common Heading = (END) ======================= */
/* ========= Scoll Top = (START) ============================ */
.totop {
    position: fixed;
    bottom: 0px;
    right: 10px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: none;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 5px 5px 0 0;
    line-height: 47px;
    font-size: 20px;
    text-align: center;
}

    .totop:hover {
        line-height: 40px;
        color: #fff;
        background: #e4b312;
        text-shadow: 0 0 5px #000;
    }

/* ========= Scoll Top = (END) ========================= */
/* ========= Header = (START) ================================ */
.header_part {
    transition: 0.3s;
    z-index: 9999;
    width: 100%;
    padding: 18px 0;
    position: fixed;
}

    .header_part.scrolling {
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.801);
        border-bottom: 0.5px solid #222;
        top: 0;
        left: 0;
        transition: 0.3s;
        position: fixed;
        backdrop-filter: blur(13px);
    }

@media screen and (max-width: 992px) {
    .header_part.scrolling {
        backdrop-filter: none;
    }
}

.header_part img {
    transition: 0.4s;
}

@media screen and (min-width: 440px) {
    .header_part img {
        height: 60px;
        transition: 0.4s;
    }
}

/*-- Navigation Menu ---*/
.navbar ul {
    display: flex;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

@media screen and (max-width: 1200px) {
    .navbar > ul > li {
        padding-left: 7px;
    }

    .navbar a, .navbar a:focus {
        font-size: 14px;
    }

    .header_btn .btn {
        margin-left: 5px;
    }
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 500;
    color: #e2e2e2;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #e4b008;
    }

.navbar .dropdown ul {
    display: none;
    position: absolute;
    left: 28px;
    top: calc(100%);
    margin: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #111;
    box-shadow: 0px 2px 30px rgba(127, 137, 161, 0.3);
    transition: 0.3s;
    border-top: 2px solid #e4b008;
    border-bottom: 2px solid #e4b008;
}

    .navbar .dropdown ul li {
        min-width: 180px;
    }

    .navbar .dropdown ul a {
        padding: 10px 15px;
        font-weight: 400;
        font-size: 13px;
    }

.navbar .dropdown a i {
    margin-left: 5px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #fff;
    background: #e4b008;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    display: block;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(70%);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.header_btn .btn {
    margin-left: 30px;
    color: #000;
    font-size: 14px;
    padding: 6px 13px;
}

@media screen and (max-width: 992px) {
    .header_btn .btn {
        margin: 5px 0;
        margin-left: 0;
    }
}

.header_btn .btn i {
    margin-left: 5px;
}

.header_btn .btn:hover {
    color: #000;
    font-size: 14px;
    padding: 6px 13px;
}

.header_btn .btn:focus {
    color: #000;
    font-size: 14px;
    padding: 6px 13px;
}

/* ==== Search - Start  ==== */
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        right: -80%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        right: -100%;
    }
}

/* ---- Mobile Navigation ----- */
.toggle_icon {
    font-size: 22px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    color: #e4b008;
    display: none;
    margin-left: 10px;
}

@media (max-width: 1280px) {
    .toggle_icon {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.site-pagination.s-p-center {
    justify-content: center;
    display: flex;
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #eee;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 50px;
        left: 15px;
        background-color: #111;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        color: #eee;
        font-weight: 400;
    }

        .navbar-mobile a:hover {
            font-weight: 400;
        }

    .navbar-mobile > ul > li {
        padding: 0;
        background: #111;
    }

    .navbar-mobile a:hover:before,
    .navbar-mobile li:hover > a:before,
    .navbar-mobile .active:before {
        display: none;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #eee;
        background: #d1920a;
        padding: 10px 20px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #222;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 180px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 15px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #fff;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
        padding: 10px 0px;
    }

    .navbar-mobile .header_btn {
        display: none;
    }

/* ========= Header = (End) ================================ */
/* ========= Signin  Modal = (Start) ======================== */
.modal-content {
    background-color: transparent;
    border: none;
    z-index: 9999;
}

.modal-body {
    background: #041119;
    box-shadow: 0px 5px 50px #000;
    padding: 40px 20px 30px 20px;
    border-radius: 30px;
}

    .modal-body .btn-close {
        font-size: 20px;
        color: #f85353;
        background: #041119;
        position: absolute;
        right: 5px;
        top: 5px;
        opacity: 0.8;
    }

    .modal-body .modal_img {
        text-align: center;
        border-right: 1px solid #666;
    }

        .modal-body .modal_img img {
            width: 300px;
            height: 300px;
        }

        .modal-body .modal_img h4 {
            color: #eee;
            padding-bottom: 20px;
            padding-top: 20px;
        }

        .modal-body .modal_img p {
            font-size: 16px;
            color: #ddd;
            padding-top: 30px;
        }

        .modal-body .modal_img a {
            padding: 8px 15px;
            background: #248062;
            color: #fff;
            border-radius: 30px;
            margin-left: 20px;
            font-size: 14px;
            letter-spacing: 0.5px;
            display: inline-block;
        }

            .modal-body .modal_img a:hover {
                background: #1a7154;
            }

    .modal-body .modal_form {
        text-align: center;
    }

        .modal-body .modal_form h4 {
            color: #eee;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .modal-body .modal_form .modal_social_icon a i {
            color: #fff;
            height: 35px;
            width: 35px;
            border-radius: 50%;
            line-height: 35px;
            margin: 0px 4px;
            transition: 0.3s;
        }

            .modal-body .modal_form .modal_social_icon a i:hover {
                transform: translateY(-5px);
                text-shadow: 1px 2px 2px #111;
            }

        .modal-body .modal_form .modal_social_icon a .google {
            background: #bf2020;
        }

        .modal-body .modal_form .modal_social_icon a .fb {
            background: #1c4dbc;
        }

        .modal-body .modal_form .modal_social_icon a .insta {
            background: #9b31e3;
            background: linear-gradient(214deg, #9b31e3 0%, #f42a2a 40%, #ffb041 100%);
        }

        .modal-body .modal_form .custom_input {
            padding-top: 10px;
            padding-bottom: 8px;
            position: relative;
            width: 80%;
            margin: 0 auto;
        }

            .modal-body .modal_form .custom_input input {
                font-size: 15px;
                padding: 0px 10px;
                display: block;
                width: 100%;
                height: 40px;
                border: 0.5px solid #888;
                font-weight: 400;
                color: #fff;
                border-radius: 3px;
                background-color: #030e15;
                letter-spacing: 0.5px;
            }

                .modal-body .modal_form .custom_input input::placeholder {
                    visibility: hidden;
                    font-weight: 400;
                    font-size: 13px;
                    letter-spacing: 0.5px;
                    color: #555;
                }

                .modal-body .modal_form .custom_input input:focus::placeholder {
                    visibility: visible;
                    color: #aaa;
                }

            .modal-body .modal_form .custom_input label {
                color: #aaa;
                font-size: 15px;
                font-weight: normal;
                position: absolute;
                pointer-events: none;
                left: 10px;
                background: #030e15;
                top: 18px;
                padding: 0px 5px;
                transition: 0.2s ease all;
                -moz-transition: 0.2s ease all;
                -webkit-transition: 0.2s ease all;
            }

            .modal-body .modal_form .custom_input input:focus ~ label,
            .modal-body .modal_form .custom_input input:valid ~ label {
                top: -2px;
                font-size: 13px;
                color: #72c0e8;
                background: #030e15;
                font-weight: 400;
            }

        .modal-body .modal_form .forget {
            width: 80%;
            margin: 0 auto;
            padding: 5px 0px 10px;
        }

            .modal-body .modal_form .forget p {
                text-align: left;
                color: #ddd;
                font-weight: 300;
            }

                .modal-body .modal_form .forget p a {
                    text-align: right;
                    float: right;
                    color: #6ab5cc;
                    padding-left: 5px;
                    font-size: 13px;
                }

                    .modal-body .modal_form .forget p a:hover {
                        text-decoration: underline;
                        color: #fff;
                    }

        .modal-body .modal_form .btn {
            padding: 5px 30px;
            border-radius: 20px;
            font-size: 18px;
            margin-top: 30px;
            text-transform: uppercase;
        }

/* ========= Signin Modal = (End) ========================= */
/* ========= Search Modal = (Start) ========================= */
.search_box {
    margin: 30px;
    position: relative;
}

    .search_box .form-control {
        background-color: transparent;
        color: #eee;
        height: 50px;
        border: 1px solid #83aec9;
        border-radius: 30px;
        font-size: 18px;
        letter-spacing: 1px;
        padding: 0px 50px 0px 15px;
    }

    .search_box .btn {
        position: absolute;
        top: 7px;
        right: 10px;
        height: 35px;
        width: 35px;
        padding: 0;
        border-radius: 50%;
        text-align: center;
    }

/* ========= Search Modal = (End) ========================= */
/* ========= Banner = (START) =========================== */
.banner_part {
    overflow: hidden;
    background: url(/assets/images/banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    background-attachment: fixed;
}

.banner_overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: hsla(0, 0%, 0%, 0.3);
}

.banner_text {
    padding: 220px 20px 200px;
}

    .banner_text img {
        height: 450px;
        position: relative;
        object-fit: contain;
    }

    .banner_text h2 {
        color: #eee;
        font-size: 60px;
        font-weight: 700;
        padding-bottom: 20px;
        padding-top: 30px;
        text-shadow: 1px 2px 2px #111;
        letter-spacing: 0.5px;
        line-height: 1.5;
    }

        .banner_text h2 span {
            color: #e4b008;
            display: inline-block;
        }

@media screen and (max-width: 992px) {
    .banner_text h2 {
        font-size: 3rem;
    }
}

.banner_text p {
    color: #e6e6e6;
    letter-spacing: 0.5px;
    font-size: 18px;
    font-weight: 400;
    width: 80%;
}

@media screen and (max-width: 992px) {
    .banner_text p {
        margin-right: 0;
        width: unset;
    }
}

.banner_text .btn {
    margin-top: 30px;
    padding: 8px 20px;
    font-size: 18px;
}

    .banner_text .btn i {
        font-size: 14px;
        padding-left: 3px;
    }

/* ========= Banner = (End) ================================ */
/* ==== about  = (Start) ================================ */
.about_text {
    padding: 30px;
}

    .about_text h4 {
        color: #ecad23;
        padding-bottom: 20px;
        font-size: 28px;
    }

    .about_text ul li {
        color: #313131;
        font-size: 14px;
        padding-bottom: 8px;
        font-weight: 500;
    }

        .about_text ul li i {
            color: #e4b008;
        }

    .about_text p {
        color: #141414;
        padding: 15px 0;
        font-weight: 500;
    }

    .about_text .btn {
        margin-top: 20px;
    }

.about_img img {
    border-radius: 10px;
}

/* ==== about  = (End) ================================ */
/* ====  categories = (start) ================================ */
.categories_item {
    position: relative;
    margin: 12px 0;
    overflow: hidden;
    border-radius: 5px;
}

    .categories_item:hover img {
        transform: scale(1.1);
    }

    .categories_item:hover h4 {
        background: rgba(0, 0, 0, 0.815);
        color: #e4b008;
        text-shadow: none;
    }

    .categories_item img {
        height: 240px;
        width: 100%;
        border-radius: 5px;
        transition: 0.5s;
        object-fit: cover;
    }

    .categories_item h4 {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 8px 5px;
        text-align: center;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.61) 0%, rgba(0, 0, 0, 0.144) 100%);
        color: #fff;
        font-size: 18px;
        width: 100%;
        font-weight: 500;
        border-radius: 0 0 5px 5px;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 2px #555;
        transition: 0.2s;
    }

.load_more a {
    font-weight: 600;
}

/* ====  categories = (end) ================================ */
/* ==== Awards  = (Start) ================================ */
.awards {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 30px 0 10px;
    text-align: center;
}

    .awards h3 {
        background: linear-gradient(to right, #e7d987 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #e4a91e 100%);
        text-align: center;
        font-weight: 700;
        letter-spacing: 1px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #eec031
    }

/* ==== Awards  = (End) ================================ */
/* ====  winners = (Start) ================================ */
.winners_item {
    -webkit-box-shadow: 0px 3px 9px 2px #dedede;
    box-shadow: 2px 2px 8px 3px #dedede;
    border-radius: 10px;
    position: relative;
    margin: 70px 12px 50px;
    background: #ffffff;
}

    .winners_item a {
        padding: 10px;
        display: flex;
        gap: 10px;
        min-height: 160px;
    }

        .winners_item a > .position-relative.align-items-center, .winners_item a .voer {
            overflow: hidden;
            border-radius: 10px;
        }

    .winners_item .winners_logo {
        width: 110px;
        height: 110px;
        border-radius: 8px;
        object-fit: cover;
    }

    .winners_item img {
        position: relative;
        z-index: 99;
        width: 83px;
        height: 83px;
        object-fit: contain;
    }

    .winners_item .dvImgVoer {
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        left: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 3;
    }

    .winners_item .dvImgVoerOp {
        -webkit-backdrop-filter: blur(64px);
        backdrop-filter: blur(64px);
        background: rgba(0, 0, 0, .3);
        content: "";
        display: block;
        left: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 5;
    }

    .winners_item b {
        font-weight: 500;
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 4px 14px;
        border: 2px solid #daaa0e57;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
        color: #141414;
    }

    .winners_item h6 {
        font-size: 15px;
        color: #3a3a3a;
    }

    .winners_item h5 {
        font-size: 18px;
        color: #4e3030;
        padding: 10px 0;
        margin: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: 54px;
        margin-bottom: 10px;
    }

    .winners_item p {
        color: #444;
        font-weight: 500;
        padding: 10px 0;
        line-height: 1.5;
    }

    .winners_item span {
        margin-top: 15px;
        color: #1f1f1f;
        font-weight: 600;
    }

        .winners_item span img {
            height: 26px;
            margin-right: 5px;
            float: left;
        }

.related-sites .winners_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 219px;
}

.winners_slide {
    overflow: hidden;
}

    .winners_slide .left_arrow {
        position: absolute;
        bottom: 0px;
        height: 35px;
        width: 35px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        line-height: 35px;
        left: 35%;
        z-index: 9999;
        color: #333;
        cursor: pointer;
        text-align: center;
    }

        .winners_slide .left_arrow:hover {
            background: #e6c223;
        }

    .winners_slide .right_arrow {
        position: absolute;
        text-align: center;
        bottom: 0px;
        height: 35px;
        width: 35px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        line-height: 35px;
        right: 35%;
        z-index: 9999;
        color: #333;
        cursor: pointer;
    }

        .winners_slide .right_arrow:hover {
            background: #e6c223;
        }

@media screen and (min-width: 480px) {
    .winners_slide .right_arrow {
        right: 40%;
    }

    .winners_slide .left_arrow {
        left: 40%;
    }
}

@media screen and (min-width: 768px) {
    .winners_slide .right_arrow {
        right: 42%;
    }

    .winners_slide .left_arrow {
        left: 42%;
    }
}

@media screen and (min-width: 1024px) {
    .winners_slide .right_arrow {
        right: 44%;
    }

    .winners_slide .left_arrow {
        left: 44%;
    }
}

/* ====  winners = (End) ================================ */
/* ====  stats = (start) ================================ */
.stats_part {
    background: url(/ipx/gea/image/f_webp,h_870/assets/images/banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    background-attachment: fixed;
    clip-path: polygon(100% 15%, 100% 85%, 50% 70%, 0 85%, 0 15%, 50% 0);
    padding: 100px 0 240px;
    overflow: hidden;
}

@media screen and (max-width: 992px) {
    .stats_part {
        clip-path: polygon(100% 15%, 100% 85%, 50% 79%, 0 85%, 0 15%, 50% 0);
    }
}

.stats_text {
    text-align: center;
}

    .stats_text h6 {
        color: #e4b008;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .stats_text h2 {
        color: #e6e6e6;
        font-size: 35px;
        padding: 10px;
        line-height: 1.5;
        padding-bottom: 20px;
    }

.counter_item {
    text-align: center;
    background: rgba(0, 0, 0, 0.589);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}

    .counter_item p {
        color: #e4b008;
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .counter_item h3 {
        color: #eee;
        font-size: 25px;
        font-weight: 500;
        padding-top: 15px;
    }

/* ====  stats = (end) ================================ */
/* ====   = (Start) ================================ */
.judging_img {
    text-align: center;
}

    .judging_img img {
        height: 400px;
    }

.judging_text {
    padding: 50px 10px 20px;
}

    .judging_text h6 {
        font-size: 22px;
        line-height: 1.6;
        color: #444;
    }

.judging_item {
    padding: 40px 15px;
    box-shadow: 2px 2px 8px 3px #dedede;
    border-radius: 10px;
    margin: 70px 12px 50px;
    background: #ffffff;
    position: relative;
}

    .judging_item img {
        height: 60px;
        z-index: 999;
        position: relative;
    }

    .judging_item h4 {
        margin-top: 30px;
        font-size: 24px;
    }

    .judging_item::after {
        position: absolute;
        left: 45%;
        top: 40%;
        transform: translate(-50%, -50%);
        height: 80px;
        width: 80px;
        background: #edf3f7;
        content: "";
        clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    }

/* ====  Judging = (End) ================================ */
/* ==== FAQ  = (Start) ================================ */
.faq {
    margin-top: 40px;
}

.accordion-button {
    font-weight: 500;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid #e7bc6b;
    background-color: transparent;
    box-shadow: none;
}

    .accordion-button:hover {
        background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
        color: #fff;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

    .accordion-button:focus {
        background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
        color: #fff;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

    .accordion-button::after {
        background: linear-gradient(45deg, #d37524, #f09714);
        text-align: center;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        content: "\f107";
        font-size: 13px;
        color: #ffffff;
        line-height: 22px;
        border-radius: 50%;
    }

.faq .accordion-item:hover .accordion-button::after {
    color: #f09714;
    background: #f3f2eb;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    background: #f3f2eb;
    color: #f09714;
}

.faq .accordion-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 3px;
    border: none;
    box-shadow: none;
}

.accordion-body {
    border: 0.5px solid #f5c783;
}

.faq .accordion-item p {
    font-size: 16px;
    padding-bottom: 8px;
    color: #333333;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(45deg, #d37524, #f09714);
    box-shadow: none;
}

/* ==== FAQ  = (End) ================================ */
/* ========= Clients  = (End) ================================ */
.brand_part {
    padding: 10px 0;
    text-align: center;
    background: #eee;
}

    .brand_part .fas {
        visibility: hidden;
    }

    .brand_part img {
        max-width: 80%;
        transition: all 0.1s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        -webkit-filter: grayscale(100);
        filter: grayscale(100);
    }

        .brand_part img:hover {
            -webkit-filter: none;
            filter: none;
            cursor: pointer;
        }

.brand_part {
    padding: 0px 0;
}

/* =========  Clients = (End) ================================ */
/* ========= Subscribe = (Start) ================================ */
.subscribe_part {
    background: #222222;
    padding: 30px 0;
}

.subscrive_text h6 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 400;
}

.subscrive_text h5 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 30px;
}

.subscrive_box {
    margin-top: 20px;
    position: relative;
}

    .subscrive_box .form-control {
        height: 50px;
        padding: 0px 15px;
        border: none;
        color: #333;
        width: 100%;
        font-weight: 500;
        letter-spacing: 0.5px;
        border-radius: 30px;
    }

        .subscrive_box .form-control::placeholder {
            font-weight: 500;
        }

.submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    border: none;
    background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 20px;
    border-radius: 0 30px 30px 0;
}

    .submit:hover {
        background: linear-gradient(90deg, #f1c73c 0%, #e7b018 100%);
    }

/* ========= Subscribe = (End) ================================ */
/* ==== Footer  = (Start) ================================ */
.footer_part {
    background: #0e1013;
    z-index: 999;
}

.footer_content {
    margin: 20px 0;
}

    .footer_content .footer_logo {
        height: 70px;
    }

    .footer_content p {
        color: #dbd9d9;
        padding: 25px 0;
        font-size: 15px;
        width: 90%;
    }

    .footer_content .social_icon a i {
        color: #fff;
        height: 35px;
        width: 35px;
        text-align: center;
        line-height: 35px;
        border-radius: 50%;
        margin-right: 8px;
        transition: 0.3s;
    }

        .footer_content .social_icon a i:hover {
            transform: translateY(-5px);
            text-shadow: 1px 1px 2px #444;
        }

    .footer_content .social_icon a .fa-instagram {
        background: linear-gradient(49deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    }

    .footer_content h6 {
        color: #efab47;
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-size: 22px;
        margin-top: 10px;
    }

        .footer_content h6::after {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 50px;
            content: "";
            background: linear-gradient(-40deg, rgba(240, 151, 20, 0.28), #efab47);
        }

    .footer_content ul li {
        margin-bottom: 10px;
    }

        .footer_content ul li a {
            color: #ddd;
            font-weight: 400;
        }

            .footer_content ul li a:hover {
                color: #efab47;
            }

            .footer_content ul li a i {
                color: #efab47;
                margin-right: 5px;
            }

/* ====  Footer = (End) ================================ */
/* ==== bottom  = (Start) ================================ */
.bottom_part {
    background: #060b0a;
    padding: 15px 0;
}

    .bottom_part p {
        color: #eee;
        font-size: 15px;
    }

        .bottom_part p span {
            color: #f4c075;
            padding: 0px 5px;
        }

    .bottom_part h6 {
        text-align: right;
        font-size: 15px;
        font-weight: 400;
    }

        .bottom_part h6 a {
            padding: 0px 10px;
            border-left: 1px solid #eee;
            color: #eee;
        }

            .bottom_part h6 a:first-child {
                border: none;
            }

            .bottom_part h6 a:hover {
                color: #faa963;
            }

/* ====  bottom = (End) ================================ */
/* ====  breadcrumb = (Start) ================================ */
.breadcrumb_part {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: url(../images/breadcurm.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

    .breadcrumb_part h1 {
        color: #ddd;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-bottom: 30px;
    }

    .breadcrumb_part p {
        color: #daa137;
        font-size: 15px;
    }

    .breadcrumb_part i {
        padding: 0px 3px;
    }

    .breadcrumb_part a {
        color: #aaa;
    }

        .breadcrumb_part a:hover {
            color: #ffffff;
        }

/* ====  breadcrumb = (End) ================================ */
/* ====  categoriesdetails = (Start) ================================ */
.categories_mainbar {
    padding: 15px;
}

    .categories_mainbar img {
        border-radius: 5px;
    }

    .categories_mainbar h2 {
        padding: 20px 0;
        font-size: 30px;
    }

    .categories_mainbar h6 {
        padding: 10px 0;
        line-height: 1.5;
    }

    .categories_mainbar p {
        line-height: 1.6;
        font-size: 15px;
        font-family: "roboto";
        color: #444;
        font-weight: 400;
    }

    .categories_mainbar ul {
        font-family: "roboto";
        padding: 20px 0;
        color: #333;
        display: block;
        margin: 1em 0;
        padding: 0 0 0 40px;
        list-style-type: disc;
    }

        .categories_mainbar ul li {
            font-size: 15px;
            padding-bottom: 10px;
            list-style-type: disc;
        }

            .categories_mainbar ul li i {
                color: #b88322;
            }

.categories_sidebar {
    padding: 15px;
}

.sildebar_categories {
    background: #fff;
    padding: 15px;
    box-shadow: 1px 1px 3px #ddd;
    border-radius: 5px;
}

    .sildebar_categories h6 {
        background: #e0a433;
        color: #fdfdfd;
        padding: 5px;
        border-radius: 3px;
        text-transform: uppercase;
        text-align: center;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .sildebar_categories ul li {
        padding: 7px 8px;
        font-weight: 500;
        border-bottom: 0.5px solid #ddd;
        font-size: 16px;
    }

        .sildebar_categories ul li a {
            color: #444;
        }

            .sildebar_categories ul li a:hover {
                color: #e6551c;
            }

            .sildebar_categories ul li a i {
                font-size: 14px;
                margin-left: 5px;
            }

    .sildebar_categories h5 {
        background: #d1d1d1;
        color: #fdfdfd;
        padding: 5px;
        border-radius: 3px;
        text-align: center;
        font-weight: 600;
        margin-top: 10px;
        font-size: 16px;
    }

        .sildebar_categories h5:hover {
            background: #e0a433;
            color: #fdfdfd;
        }

.sticky {
    position: sticky;
    top: 90px;
    margin-top: 90px;
    z-index: 99;
}

/* ====  categoriesdetails = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====   = (End) ================================ */

.aon-inputicon-box {
    position: relative;
    margin-top: 20px;
}

    .aon-inputicon-box .form-control {
        padding-left: 35px;
    }

    .aon-inputicon-box .aon-input-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 38px;
        z-index: 5;
        line-height: 38px;
        text-align: center;
    }

.just-validate-error-label {
    text-align: left;
}

.lblerror {
    color: red;
    margin-top: 10px;
}

.entryitem .btn-group {
    position: absolute;
    right: 10px;
    top: 10px;
}

    .entryitem .btn-group a.menubar {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        transition: background 0.3s;
    }

        .entryitem .btn-group a.menubar:hover {
            background: #f0f0f0;
        }

.flex-1 {
    flex: 1;
}

.btnQuteCnt {
    width: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .btnQuteCnt .btnQuote {
        display: inline-flex;
        background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
        display: inline-block;
        color: #333;
        padding: 5px 10px;
        border-radius: 32px;
        font-weight: 500;
        font-size: 14px;
    }

.imgnoresult {
    width: 300px;
    height: auto;
    margin: auto;
}

.contactContainer > div {
    margin: auto;
}

#contactForm input,
#contactForm textarea {
    font-size: 15px;
    padding: 0px 10px;
    display: block;
    width: 100%;
    height: 40px;
    border: 0.5px solid #888;
    font-weight: 400;
    color: #fff;
    border-radius: 3px;
    background-color: #030e15;
    letter-spacing: 0.5px;
}

#contactForm textarea {
    height: 160px;
    padding-top: 5px;
}

#modal-info {
    z-index: 9999;
}

    #modal-info .modal-body * {
        text-align: center;
        color: #f5f5f5;
    }

    #modal-info .modal-body a {
        text-decoration: underline;
    }

.loading {
    pointer-events: none;
    opacity: 0.8;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 19px;
    height: 19px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 19px;
        height: 19px;
        margin: 4px;
        border: 4px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

.imgnoresult {
    width: 300px;
    height: auto;
    margin: auto;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disabled {
    pointer-events: none;
    opacity: 0.8;
}

button#btn-contact-submit {
    max-width: 200px;
    margin: auto;
    display: block;
}

.grecaptcha-badge {
    visibility: hidden;
}

.btnShowPass {
    background: #000;
    border: none;
    color: #fff;
    position: absolute;
    right: 1px;
    top: 11px;
    width: 36px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btnShowPass:hover {
        color: #fff;
    }

.btnShowPassSignup {
    background: #fff;
    border: none;
    color: #333;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 35px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btnShowPassSignup:hover {
        color: #333;
    }

.grpasssgup .btnShowPassSignup {
    display: none;
}

.grpasssgup:hover .btnShowPassSignup {
    display: flex;
}

.contentpage {
}

    .contentpage p {
        margin-bottom: 0.8rem;
    }

    .contentpage ul,
    .contentpage ol,
    .contentpage li {
        list-style-type: unset;
    }

    .contentpage ul {
        display: block;
        list-style-type: disc;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 0;
        margin-right: 0;
        padding-left: 40px;
    }

    .contentpage ol {
        display: block;
        list-style-type: decimal;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 0;
        margin-right: 0;
        padding-left: 40px;
    }

    .contentpage li {
        display: list-item;
    }

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #e7b018 0%, #f1c73c 100%);
}

ul.lstdatedl {
    margin-top: 1rem;
}

    ul.lstdatedl li {
        color: #fff;
    }

.popuprequiredcookie {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 650px;
    max-width: calc(100vw - 20px);
    z-index: 99999;
    padding: 15px;
    background: #202124;
    border-radius: 2px;
}

    .popuprequiredcookie p {
        color: #fff;
    }

    .popuprequiredcookie a.decline {
        color: #8e8e8e;
        font-size: 12px;
    }

    .popuprequiredcookie a.accept {
        background: #e3e3e3;
        border-radius: 4px;
        padding: 5px 10px;
    }

.sldort .select2-container--default .select2-selection--single {
    border-color: #ced4da;
    height: 38px;
}

    .sldort .select2-container--default .select2-selection--single .select2-selection__rendered {
        height: 38px;
        line-height: 38px;
    }

    .sldort .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
    }

.sf-select-box, select.form-control {
    appearance: auto;
}
