/*
* Buildico Toolkit Styles
*/

/* ===== Section Heading ===== */
.sub-heading {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #8592a6;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: -1px;
    position: relative;
}

.section-heading h2:before {
    background-color: #FAB702;
    content: '';
    height: 5px;
    width: 80px;
    position: absolute;
    bottom: -8px;
    border-radius: 3px;
}

.section-heading p {
    margin: 0;
}

.wt-align-center .section-heading h1,
.wt-align-center .section-heading h2,
.wt-align-center .section-heading h3,
.wt-align-center .section-heading h4,
.wt-align-center .section-heading h5,
.wt-align-center .section-heading h6,
.wt-align-center .section-heading p {
    text-align: center;
}

@media (max-width:992px) {
    .section-heading h2 br {
        display: none;
    }
}

@media (max-width:767px) {

    .section-heading h2 br,
    .section-heading p br {
        display: none;
    }
}

.wt-align-center .section-heading h2:before {
    left: calc(50% - 40px);
}

.wt-align-right .section-heading h2:before {
    right: 0;
}

.wt-align-left .section-heading h2:before {
    left: 0;
}

/* ===== Global Transition ===== */
a,
a:hover {
    transition: all 0.2s ease-in-out;
}

/* ===== Columns ===== */
.wt-row {
    display: block;
    margin: 0 -10px;
}

.wt-row .wt-col {
    float: left;
    display: block;
    padding: 0 10px;
}

.wt-row.wt-column-desktop-1 .wt-col {
    width: 100%;
}

.wt-row.wt-column-desktop-2 .wt-col {
    width: 50%;
}

.wt-row.wt-column-desktop-3 .wt-col {
    width: 33.33%;
}

.wt-row.wt-column-desktop-4 .wt-col {
    width: 25%;
}

.wt-row.wt-column-desktop-5 .wt-col {
    width: 20%;
}

.wt-row.wt-column-desktop-6 .wt-col {
    width: 16.66%;
}

@media (max-width: 992px) {
    .wt-row.wt-column-tablet-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-tablet-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-tablet-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-tablet-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-tablet-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-tablet-6 .wt-col {
        width: 16.66%;
    }

    .dl-project-items {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .wt-row.wt-column-mobile-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-mobile-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-mobile-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-mobile-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-mobile-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-mobile-6 .wt-col {
        width: 16.66%;
    }
}

/* ===== Callout ===== */
.wt-callout {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wt-callout h2 {
    margin-bottom: 10px;
}

.wt-callout.wt-callout-align-center {
    flex-direction: column;
}

.wt-callout.wt-callout-align-center .wt-callout-left {
    margin-bottom: 20px;
}

.wt-callout.wt-callout-align-center .wt-callout-right,
.wt-callout.wt-callout-align-center .wt-callout-left {
    text-align: center;
    padding: 0;
}

.wt-callout.box_center {
    justify-content: center;
}

.wt-callout.box_center .wt-callout-left {
    flex: inherit;
}

.wt-callout .wt-callout-left {
    flex: 1;
}

.wt-callout .wt-callout-right {
    width: auto;
    padding-left: 60px;
}

.wt-callout.box_center .wt-callout-right {
    padding-left: 30px;
}

.wt-callout.wt-callout-align-left .wt-callout-right {
    order: -1;
    padding-right: 60px;
    padding-left: 0
}

.wt-callout-desc {
    font-weight: normal;
    margin: 0;
}

.wt-callout-btn {
    background-color: #fab702;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    padding: 15px 30px;
    border-radius: 2px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.wt-callout-btn:hover {
    color: #fff;
    opacity: 0.8;
}

.wt-callout-btn .wt-callout-icon-align-left {
    order: -1;
}

@media (max-width: 750px) {
    .wt-callout {
        display: block;
    }

    .wt-callout.box_center {
        text-align: center;
    }

    .wt-callout .wt-callout-right {
        padding-left: 0;
        margin-top: 20px;
    }

    .wt-callout.wt-callout-align-left .wt-callout-right {
        padding: 0;
    }

    .wt-callout-btn {
        display: inline-block;
    }

    .section-heading h2 br {
        display: none !important;
    }
}

/* ===== Filter Menu ===== */
.filter-menu {
    display: block;
}

.filter-menu li {
    border-top: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
    display: inline-block;
    padding: 10px 20px;
    margin-left: -5px;
    cursor: pointer;
    color: #262626;
    opacity: 0.7;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.filter-menu.border-none li.active,
.filter-menu.border-none li {
    border: none;
}

.filter-menu li.active {
    border-top: 3px solid #FAB702;
    border-bottom: 3px solid #FAB702;
    transition: all 0.3s ease-in-out;
}

.filter-menu li:after {
    content: '|';
    position: absolute;
    right: 0px;
    top: 10px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #ddd;
}

.filter-menu.border-none li:after,
.filter-menu li:last-child:after {
    display: none;
}

.portfolio-items .single-item {
    padding: 5px;
}

.portfolio-box {
    position: relative;
    overflow: hidden;
}

.portfolio-box img {
    width: 100%;
}

.portfolio-box .p-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}

.portfolio-box:hover .p-overlay {
    visibility: visible;
    opacity: 1;
}

.portfolio-box .p-overlay h4 {
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 0;
    letter-spacing: 0;
}

.portfolio-box .p-overlay p {
    font-weight: normal;
    margin-bottom: 0;
}

/* ===== Portfolio Style 2 ===== */
.portfolio-style-2 .project-item {
    position: relative;
    overflow: hidden;
}

.portfolio-style-2 .project-item img {
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.portfolio-style-2 .project-item:hover img {
    transform: scale(1.05);
}

.portfolio-style-2 .project-details>div {
    width: 100%;
    padding: 30px 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.rtl .portfolio-style-2 .project-details>div {
    text-align: right;
}

.portfolio-style-2 .project-details:before {
    background: rgba(35, 36, 39, 0.8);
    background: linear-gradient(0deg, rgba(9, 37, 83, 1) 0%, rgba(255, 255, 255, 0) 60%);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: height 0.2s linear;
    z-index: 1;
}

.portfolio-style-2 .project-item:hover .project-details:before {
    height: 180%;
}

.portfolio-style-2 .project-details h3 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.portfolio-style-2 .project-details a {
    color: #fff;
}

.portfolio-style-2 .project-details p {
    background-color: #fab702;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

.portfolio-style-2 .project-details p span:not(:last-of-type):after {
    content: ', ';
}

/* ===== Project Single Carousel ===== */
.project-slider {
    margin-bottom: 40px;
}

.project-single-carousel {
    overflow: hidden;
}

.project-single-carousel .owl-nav div {
    background-color: rgba(255, 255, 255, 0.60);
    color: #0c2d62;
    font-size: 14px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 2px;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 22.5px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    left: -90px;
}

.project-single-carousel .owl-nav div.owl-next {
    left: auto;
    right: -90px;
}

.project-single-carousel .owl-nav div:hover {
    background-color: #fab702;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.project-single-carousel:hover .owl-nav div {
    left: 10px;
    opacity: 1;
}

.project-single-carousel:hover .owl-nav div.owl-next {
    left: auto;
    right: 10px;
}

/* ===== Project Carousel Dots ===== */
.project-single-carousel .owl-dots {
    width: 100%;
    height: 10px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 40px;
    text-align: center;
}

.project-single-carousel .owl-dots div {
    background-color: rgba(255, 255, 255, 0.60);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
}

.project-single-carousel .owl-dots div.active {
    background-color: #fab702;
}

/* ===== Counter ===== */
.counter-box h3 {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 5px;
}

.counter-box h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.counter-box i {
    color: #fff;
    font-size: 35px;
    margin-bottom: 10px;
}

/* ===== Testimonials 1 ===== */
.testi-1-carousel .owl-stage-outer {
    padding: 40px 0;
}

.review-box {
    background-color: #fff;
    padding: 40px;
}

.testi-1-carousel .owl-item.active.center {
    background-color: #fff;
    box-shadow: 0px 0px 15px 5px rgba(34, 34, 34, 0.05);
    transition: all 0.3s ease-in-out;
}

.testi-1-carousel .owl-item.active.center .review-box {
    opacity: 1;
}

.review-box h4 {
    margin: 0;
}

.review-box p {
    font-weight: normal;
}

/* ===== Ratings ===== */
.ratings {
    display: block;
    margin: 0;
}

.ratings li {
    display: inline-block;
    color: #3a5682;
    font-size: 12px;
    margin-right: 0;
}

.ratings.star-5 li {
    color: #fab702;
}

.ratings.star-4 li:nth-child(-n+4) {
    color: #fab702;
}

.ratings.star-3 li:nth-child(-n+3) {
    color: #fab702;
}

.ratings.star-2 li:nth-child(-n+2) {
    color: #fab702;
}

.ratings.star-1 li:nth-child(-n+1) {
    color: #fab702;
}

.nav-bottom .owl-nav div,
.nav-center .owl-nav div {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    position: absolute;
    left: -40px;
    top: calc(50% - 20px);
    font-size: 15px;
    color: #3a5682;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center .owl-nav div.owl-next {
    left: auto;
    right: -40px;
}

.nav-bottom .owl-nav div {
    top: auto;
    bottom: -60px;
    left: 0;
}

.nav-bottom .owl-nav div.owl-next {
    right: auto;
    left: 50px;
}

.nav-center .owl-nav div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.owl-carousel:hover div {
    visibility: visible;
    opacity: 1;
}

@media all and (max-width: 992px) {
    .nav-center .owl-nav div.owl-next {
        right: 0;
    }

    .nav-center .owl-nav div {
        left: 0;
    }
}

.testi-1-carousel .owl-dots {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -20px;
    text-align: center;

}

.testi-1-carousel .owl-dots div {
    background-color: #3a5682;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}

.testi-1-carousel .owl-dots div.active {
    background-color: #fab702;
}

.review-box .client-info {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 20px;
    align-items: center;
}

.review-box .client-info img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
}

/* ===== Testimonials 2 ===== */
.testimonial-2 .testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
}

.testimonial-2 .testimonial-item img {
    max-width: 80px !important;
    height: 80px !important;
    text-align: center;
    border-radius: 50% !important;
    margin: 0 auto;
    margin-bottom: 20px;
}

.dl-align-right .testimonial-item img {
    margin: 0 0 20px auto;
}

.dl-align-left .testimonial-item img {
    margin: 0 0 20px;
}

.testimonial-2 .testimonial-item h4 span {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.testimonial-carousel.owl-carousel.testimonial-2 .owl-stage {
    padding: 20px 0;
}

.testimonial-carousel.testimonial-2 .owl-item.center {
    box-shadow: 0px 0px 15px 5px rgba(34, 34, 34, 0.09);
    transition: all 0.3s linear;
}

/* ===== Owl Carousel Dots ===== */
.testimonial-carousel.testimonial-2 .owl-dots {
    display: block;
    text-align: center;
    padding-top: 30px;
}

.testimonial-carousel.testimonial-2 .owl-dots .owl-dot {
    background-color: #ddd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    transition: all 0.5s ease-in-out;
}

.testimonial-carousel.testimonial-2 .owl-dots .owl-dot.active {
    background-color: #56a2ff;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: all 0.5s ease-in-out;
}

/* ===== Testimonials Nav ===== */
.testimonial-carousel.testimonial-2 .owl-nav div {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1b1b1f;
    position: absolute;
    left: -30px;
    top: calc(50% - 20px);
    opacity: 0;
    transition: all 0.3s linear;
}

.testimonial-carousel.testimonial-2 .owl-nav div:hover {
    color: #025fcc;
}

.testimonial-carousel.testimonial-2 .owl-nav div.owl-next {
    left: auto;
    right: -30px;
}

.testimonial-carousel.testimonial-2:hover .owl-nav div {
    opacity: 0.7;
    left: -20px;
}

.testimonial-carousel.testimonial-2:hover .owl-nav div.owl-next {
    left: auto;
    right: -20px;
}

/* ===== Ratings ===== */
.testimonial-2 .ratings {
    display: block;
    margin: 0 -3px 0 !important;
    padding: 0;
}

.testimonial-2 .ratings li {
    display: inline-block;
    color: #999;
    font-size: 12px;
}

.testimonial-2 .ratings.star-5 li {
    color: #FED701;
}

.testimonial-2 .ratings.star-4 li:nth-child(-n+4) {
    color: #FED701;
}

.testimonial-2 .ratings.star-3 li:nth-child(-n+3) {
    color: #FED701;
}

.testimonial-2 .ratings.star-2 li:nth-child(-n+2) {
    color: #FED701;
}

.testimonial-2 .ratings.star-1 li:nth-child(-n+1) {
    color: #FED701;
}

@media (max-width: 992px) {
    .testimonial-carousel.testimonial-2 .testimonial-item p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial-carousel.testimonial-2 .owl-item.center {
        box-shadow: none;
    }
}

/* ===== Sponsor ===== */
.sponsor-grid-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
}

.sponsor-grid-box {
    text-align: center;
}

.sponsor-grid-box img {
    opacity: 1;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.sponsor-grid-box:hover img {
    opacity: 0.8;
    transform: scale(0.95);
}

/* Carousel Settings */
.sponsor-carousel.nav-center .owl-nav div {
    background-color: #fff;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5682;
    border-radius: 50%;
    font-size: 16px;
}

/* ===== Icon List ===== */
.wt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout-horizontal .wt-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.wt-list .list-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-gap: 20px;
    align-items: flex-start;
}

.wt-list .list-item .list-icon {
    border-style: solid;
    height: 60px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.wt-list .list-item .list-icon i,
.wt-list .list-item .list-icon span {
    width: 100%;
    display: block;
    text-align: center;
}

.wt-list .list-item h4 {
    margin-bottom: 0;
}

.wt-list .list-item p {
    margin: 0;
    font-weight: normal;
}

/* ===== Branding ===== */
.wt-branding .site-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #fab702;
    font-size: 24px;
}

.wt-branding .site-description {
    text-transform: uppercase;
    font-size: 16px;
}

/* ===== Navigation Menu ===== */
.wt-menu-wrap {
    position: relative;
}

.wt-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wt-menu li {
    display: inline-block;
}

.wt-menu li a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #3a5682;
}

.wt-menu li.current_page_item a,
.wt-menu li a:hover {
    color: #0c2d62;
}

@media all and (max-width: 767px) {
    .wt-menu {
        display: none;
    }

    .wt-menu-wrap .slicknav_btn {
        margin: 6px 5px 15px;
    }
}

/* ===== Buttons ===== */
.btn-align-left a {
    margin-right: 10px;
}

.btn-align-center a {
    margin: 0 5px;
}

.btn-align-right a {
    margin-left: 10px;
}

.buildico-btn {
    background-color: #fab702;
    display: inline-block;
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.buildico-btn:hover {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

/* ===== Videos ===== */
.buildico-video.embed-responsive {
    border: 1px solid #ddd;
    padding: 5px;
}

/* ===== Spacing ===== */
.buildico-spacing {
    display: block;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

/* ===== Notice Box ===== */
.buildico-notice {
    padding: 15px;
    background-color: #f1f4f9;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
}

.buildico-notice.notice-sm {
    padding: 10px;
    font-size: 80%;
}

.buildico-notice.notice-lg {
    padding: 35px;
    font-size: large;
}

.buildico-notice.notice-success {
    border-color: #80D651;
}

.buildico-notice.notice-success>strong {
    color: #80D651;
}

.buildico-notice.notice-info {
    border-color: #45ABCD;
}

.buildico-notice.notice-info>strong {
    color: #45ABCD;
}

.buildico-notice.notice-warning {
    border-color: #FEAF20;
}

.buildico-notice.notice-warning>strong {
    color: #FEAF20;
}

.buildico-notice.notice-danger {
    border-color: #d73814;
}

.buildico-notice.notice-danger>strong {
    color: #d73814;
}

/* ===== Accordion ===== */
.accordion {
    width: 100%;
    max-width: 1080px;
    height: 250px;
    overflow: hidden;
}

.accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
}

.accordion ul li {
    display: table-cell;
    vertical-align: bottom;
    position: relative;
    width: 16.33%;
    height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 500ms ease;
}

.accordion ul li div {
    display: block;
    overflow: hidden;
    width: 100%;
}

.accordion ul li div a {
    display: block;
    height: 250px;
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 15px 20px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    font-family: Open Sans, sans-serif;
    transition: all 200ms ease;
}

.accordion ul li div a * {
    opacity: 0;
    margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    position: relative;
    z-index: 5;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.accordion ul li div a h2 {
    font-family: "Inter", sans-serif;
    text-overflow: clip;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2px;
    top: 160px;
}

.accordion ul li div a p {
    top: 160px;
    font-size: 13.5px;
}

.accordion ul:hover li {
    width: 8%;
}

.accordion ul:hover li:hover {
    width: 60%;
}

.accordion ul:hover li:hover a {
    background: rgba(0, 0, 0, 0.4);
}

.accordion ul:hover li:hover a * {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 600px) {
    body {
        margin: 0;
    }

    .accordion {
        height: auto;
    }

    .accordion ul li, .accordion ul li:hover, .accordion ul:hover li, .accordion ul:hover li:hover {
        position: relative;
        display: table;
        table-layout: fixed;
        width: 100%;
        -webkit-transition: none;
        transition: none;
    }
}

/* ===== Half Background Color ===== */
.elementor-section.half-bg {
    position: relative;
    z-index: 1;
}

.elementor-section.half-bg:before {
    width: 50%;
    height: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.elementor-section.half-bg.bg-right:before {
    left: auto;
    right: 0;
}

.elementor-section.half-bg.dark:before {
    background-color: #0c2d62;
}

.elementor-section.half-bg.grey:before {
    background-color: #ddd;
}

@media (max-width: 992px) {
    .elementor-section.half-bg:before {
        display: none;
    }

    .wt-list .list-item p br {
        display: none;
    }
}

@media (max-width: 591px) {
    .sponsor-list .col-sm-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== Social Share ===== */
.social-share {
    display: block;
    margin: 0 0 15px;
}

.social-share span {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: -1px;
    margin-right: 0;
}

.social-share a {
    background-color: #f1f4f9;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3a5682;
    font-size: 12px;
}

.social-share a:not(:last-of-type) {
    margin-right: 8px;
}

.social-share a:hover {
    background-color: #fab702;
    color: #fff;
}

/* ===== Blockquote ===== */
.blockquote {
    background-color: #f1f4f9;
    color: #3a5682;
    border-left: 5px solid #fab702;
    font-size: 18px;
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 15px;
    overflow: hidden;
    padding: 15px 20px;
    display: block;
}

.blockquote p {
    margin: 0;
}

/* ===== Blog ===== */
.article-content .read-more {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #3a5682;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 10px;
}

.article-content .read-more:hover {
    color: #fab702;
    column-gap: 8px;
}

.article-content .read-more svg {
    width: 25px;
    line-height: 1;
}

/* === Social Share === */
.social-share {
    display: flex;
    margin: 0;
    column-gap: 5px;
}

.social-share button {
    background-color: #5e2ced;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    border-radius: 0;
}

.social-share button svg {
    width: 15px;
}

.social-share button:hover,
.social-share button:focus {
    opacity: 0.8;
    outline: none;
}

.social-share button.facebook {
    background-color: #3b5998;
    color: #fff;
}

.social-share button.twitter {
    background-color: #1da1f2;
    color: #fff;
}

.social-share button.pinterest {
    background-color: #bd081c;
    color: #fff;
}

.social-share button.linkedin {
    background-color: #0e76a8;
    color: #fff;
}

/* ===== Contact Info Widget ===== */
.widget .contact-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-gap: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.widget .contact-list li svg {
    width: 25px;
    fill: #fab702;
}

.widget .contact-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

/* ===== About US Widget ===== */
.rtl .about-info-box {
    text-align: right;
}

.about-info-box p,
.about-info-box .about-logo {
    margin-bottom: 20px;
}

.about-info-box ul li {
    display: inline-block;
}

.about-info-box ul li:not(:last-of-type) {
    margin: 0 5px 0 0;
}

.rtl .about-info-box ul li:not(:last-of-type) {
    margin: 0 0 0 5px;
}

.about-info-box ul li a {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.60);
    width: 30px;
    height: 35px;
    border-radius: 0;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.widget-area .about-info-box ul li a {
    background-color: #092553;
    color: #fff;
}

.widget-area .about-info-box ul li a:hover,
.about-info-box ul li a:hover {
    background-color: #fab702;
    text-decoration: none;
    color: #fff;
}

/* ===== MailChimp Widget Custom Style ===== */
.widget .mc4wp-form-fields input[type="email"] {
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border: none;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    color: #3a5682;
    font-size: 14px;
    letter-spacing: -0.2px;
}

.widget .mc4wp-form-fields input[type="submit"] {
    display: block;
    height: 45px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    padding: 0 40px;
    transition: all 0.2s ease-in-out;
}

.widget .mc4wp-form-fields input[type="submit"]:hover {
    background-color: #fff;
    color: #3a5682;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}