/*
* Struqta Core Styles
*/


/* ==========================================================================
   1.0 Section Heading
   ========================================================================== */
.section-heading .heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 44px;
    color: var(--struqta-dark-color, #1e2023);
}

.section-heading .desc {
    margin-bottom: 0;
}

@media (max-width: 767px){
    .section-heading .heading br,
    .section-heading .desc br{
        display: none;
    }
}

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

.elementor-text-editor p {
    margin: 0;
}

/* This class can be replaced using options */
.hover-in {
    transition: .3s ease-out;
}

.hover-out {
    transition: .3s ease-in;
}

/* Button Style */
.wt-btn{
    background-color: var(--struqta-bg-primary, #FE5A0E);
    font-family: var(--struqta-primary-font, "Inter");
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1px;
    text-transform: capitalize;
    display: inline-flex;
    letter-spacing: 0;
    padding: 22px 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.wt-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--struqta-bg-dark, #1e2023);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1),
        -webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
    -webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    z-index: -1;
}

.wt-btn:focus,
.wt-btn:hover {
    color: #fff;
}

.wt-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* ==========================================================================
   2.0 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%;
    }
}

/* ==========================================================================
   3.0 Social Share
   ========================================================================== */
.social-share-wrap {
    display: inline-block;
    margin-right: 10px;
}

.social-share {
    display: block;
    margin: 0;
}

.social-share span {
    margin-right: 10px;
}

.social-share a {
    color: #555;
    font-size: 11px;
    margin-right: 10px;
}

.social-share a:hover {
    color: var(--struqta-dark-color, #1e2023);
}

/* ==========================================================================
   4.0 Subscribe Form
   ========================================================================== */
.subscribe_form {
    display: block;
    text-align: center;
    padding: 5px 0;
}

.subscribe_form input.input {
    display: block;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 12px;
    line-height: 50px;
    padding: 0 10px;
    float: left;
    border-radius: 0;
    width: 70%;
    transition: all 0.5s ease-in-out;
}

.subscribe_form input.input:focus {
    color: #fff;
}

.subscribe_form .submit {
    background-color: #9e8a78;
    color: #fff;
    font-family: var(--struqta-secondary-font, "Work Sans");
    font-size: 10px;
    font-weight: 600;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    width: 30%;
    border-radius: 0;
    letter-spacing: 1;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit:hover {
    background-color: #897666;
    transition: all 0.5s ease-in-out;
}

.subscribe_form input::-webkit-input-placeholder {
    color: #ddd !important;
}

.subscribe_form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ddd !important;
}

.subscribe_form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ddd !important;
}

.subscribe_form input:-ms-input-placeholder {
    color: #ddd !important;
}

.mc4wp-form-submitted .mc4wp-error {
    margin-top: 50px;
}

.mc4wp-form-submitted .mc4wp-error p {
    color: #ddd;
}

.mc4wp-form-submitted .mc4wp-error p a {
    color: #ddd;
}

/*Widget About*/

.widget-about .widget-brand {
    display: block;
    margin-bottom: 20px;
}

.widget-about .widget-brand img {
    max-width: 70%;
}

.widget-about-info {
    font-family: var(--struqta-secondary-font, "Work Sans");
    color: #999;
    font-size: 15px;
    line-height: 1.73;
    letter-spacing: .2px;
    display: block;
}

.widget-about-info span {
    font-family: var(--struqta-secondary-font, "Work Sans");
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.widget .widget-about-info span {
    color: var(--struqta-dark-color, #1e2023);
}

.widget-about .wt-social-icons {
    margin-top: 20px !important;
}

.widget-about .wt-social-icons li {
    padding: 0;
    margin: 0!important;
}
.widget-about .wt-social-icons li:not(:last-of-type){
    margin: 0;
}
.widget-about .wt-social-icons li:before {
    display: none;
}

@media (max-width: 520px) {
    .widget-about .widget-brand img {
        max-width: 150px;
    }
}

/* ==========================================================================
   5.0 Widgets
   ========================================================================== */
/* 5.1 About */
.widget-about p {
    color: var(--struqta-dark-color, #1e2023);
}

.widget-about .wt-social-icons{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.widget-about .wt-social-icons li svg{
    height: 14px;
    width: auto;
    fill: currentColor;
}

.widget-about .wt-social-icons li > a {
    background-color: transparent;
    border: 2px solid var(--struqta-dark-color, #1e2023);
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all .5s cubic-bezier(.5, 1, .89, 1);
}

.dark-widget .widget-about .wt-social-icons li > a{
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.widget-about .wt-social-icons li > a:hover {
    border: 2px solid #FE5A0E50;
    color: var(--struqta-primary-color, #FE5A0E)!important;
    transform: translateY(-2px);
}

/* 5.2 Company Info */
.widget .widget-comp-contact li {
    font-family: var(--struqta-primary-font, "Inter");
    color: #ddd;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

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

.widget .widget-comp-contact li i {
    color: var(--struqta-primary-color, #FE5A0E);
    font-size: 20px;
}

/* 5.3 MailChimp */
.widget-mailchimp .wt-subscribe-wrap form {
    position: relative;
    margin: 15px 0;
}

.widget-mailchimp .wt-subscribe-wrap form input {
    display: block;
    background-color: transparent;
    border: 2px solid #FE5A0E50;
    color: #ddd;
    border-radius: 0;
    padding: 15px 13px;
    padding-right: 83px;
    transition: all 0.3s ease-in-out;
}

.widget-mailchimp .wt-subscribe-wrap form input:focus{
    border: 2px solid var(--struqta-primary-color, #FE5A0E);
    transition: all 0.3s ease-in-out;
}

.widget-mailchimp.dark .wt-subscribe-wrap form input {
    border: 2px solid var(--struqta-primary-color, #FE5A0E);
    color: #555;
}

.widget-mailchimp .wt-subscribe-wrap form input::-webkit-input-placeholder {
    color: #888 !important;
}

.widget-mailchimp .wt-subscribe-wrap form input:-moz-placeholder {
    /* Firefox 18- */
    color: #888 !important;
}

.widget-mailchimp .wt-subscribe-wrap form input::-moz-placeholderr {
    /* Firefox 19+ */
    color: #888 !important;
}

.widget-mailchimp .wt-subscribe-wrap form input:-ms-input-placeholder {
    color: #888 !important;
}

.widget-mailchimp .wt-subscribe-wrap form button {
    background-color: var(--struqta-bg-primary, #FE5A0E);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 45px;
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.widget-mailchimp .wt-subscribe-wrap form button svg{
    fill: currentColor;
    width: auto;
    height: 15px;
}

.widget-mailchimp .wt-subscribe-wrap form button:focus {
    outline: none;
}

.widget-mailchimp .wt-subscribe-wrap form button:hover {
    opacity: 0.9;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.widget-mailchimp p.muted {
    color: #ddd;
    margin-bottom: 0;
}

.widget-mailchimp .subscribe-result p {
    margin: 15px 0 0;
    padding: 15px;
    display: none;
}

.widget-mailchimp .subscribe-result.subs-success p.subscription-success {
    display: block;
}

.widget-mailchimp .subscribe-result.subs-error p.subscription-error {
    display: block;
}

.widget-mailchimp .subscribe-result p.subscription-success {
    border: 1px solid #5ecc62;
}

.widget-mailchimp .subscribe-result p.subscription-error {
    border: 1px solid #ff4c4c;
}

/* ==========================================================================
   6.0 Projects
   ========================================================================== */
.dl-project-box {
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.dl-project-box .overlay {
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, rgb(13, 13, 13) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
    z-index: 2;
}

.dl-project-box:hover .overlay {
    visibility: visible;
    opacity: 0.5;
    transform: translateY(0);
}

.dl-project-box .project-thumb {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.dl-project-box .project-thumb:before{
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, rgb(13, 13, 13) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.3;
    transition: all 0.3s ease-in;
    z-index: 1;
}

.dl-project-box .project-thumb img {
    width: 100%;
    vertical-align: bottom;
    transform: scale(1.05) translateX(0);
    transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.dl-project-box .project-lightbox {
    position: absolute;
    right: -100%;
    top: 20px;
    color: #fff;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 600ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.dl-project-box .project-lightbox:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.dl-project-box:hover .project-lightbox {
    right: 20px;
    opacity: 1;
    visibility: visible;
    transition: all 400ms ease;
}

.dl-project-box .project-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 35px;
    transition: all 0.2s ease-in-out;
    z-index: 3;
}

.dl-project-box:hover .project-thumb img {
    transform: scale(1.05) translateX(2%);
}

.dl-project-box .project-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.dl-project-box .project-content h3 a {
    color: #fff;
    text-decoration: none;
}

.dl-project-box .project-content h3 a:hover {
    color: #fff;
    text-decoration: underline;
}

.dl-project-box .project-content span {
    background-color: var(--struqta-bg-dark, #1e2023);
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

/* 6.1 Project Filter */
.dl-filter-wrap {
    margin: 0 0 40px;
    display: block;
}

.dl-filter-wrap .dl-project-filter {
    list-style: none;
    display: inline-block;
    padding: 0;
}

.dl-filter-wrap .dl-project-filter li {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    font-family: var(--struqta-secondary-font, "Work Sans");
    color: var(--struqta-dark-color, #1e2023);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.dl-filter-wrap.center .dl-project-filter li {
    margin: 0 5px;
}

.dl-filter-wrap.left .dl-project-filter li {
    margin-left: 10px;
}

.dl-filter-wrap .dl-project-filter li:hover,
.dl-filter-wrap .dl-project-filter li.active {
    color: var(--struqta-primary-color, #FE5A0E);
    transition: all 0.3s ease-in-out;
}

/* 6.2 Project Carousel Control */
.dl-project-carousel {
    overflow: hidden;
}

.dl-project-nav .owl-nav div {
    background-color: rgba(255, 255, 255, 0.1);
    display: block;
    text-align: center;
    color: #fff;
    line-height: calc(45px - 2px);
    border: 1px solid transparent;
    font-size: 12px;
    width: 45px;
    height: 45px;
    position: absolute;
    left: -100px;
    top: calc(50% - 20px);
    transition: all 0.5s linear;
}

.dl-project-nav .owl-nav div.owl-next {
    left: auto;
    right: -100px;
}

.dl-project-nav .owl-nav div:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.dl-project-nav:hover .owl-nav div {
    left: 20px;
    transition: all 0.5s linear;
}

.dl-project-nav:hover .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}

.dl-project-nav .owl-dots {
    width: 100%;
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -60px;
}

.dl-project-nav .owl-dots div {
    background-color: #999;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border-radius: 50%;
}

.dl-project-nav .owl-dots div.active {
    background-color: rgba(61, 100, 244, 1);
}

/* ===== FAQ ===== */
.dl-faq-con .dl-single-faq {
    position: relative;
    overflow: hidden;
}

.dl-faq-con .dl-single-faq .dl-faq-title {
    font-size: 15px;
    margin-bottom: 0px;
}

.dl-faq-con .dl-single-faq .dl-faq-header {
    background-color: #f5f5f5;
    padding-top: 21px;
    padding-bottom: 21px;
}

/* Fade In Left */
@keyframes dlFadeInLeft{
    from{
        opacity:0;
        transform:translate3d(-50px,0,0);
    }
    to{
        opacity:1;
        transform:none;
    }
}

.dt-fadeInLeft,
.fadeInLeft{
    animation-name: dlFadeInLeft!important;
}

/* Fade In Right */
@keyframes dlFadeInRight{
    from{
        opacity:0;
        transform:translate3d(50px,0,0);
    }
    to{
        opacity:1;
        transform:none;
    }
}

.dt-fadeInRight,
.fadeInRight{
    animation-name: dlFadeInRight!important;
}

/* Fade In Up */
@keyframes dlFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,50px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.dt-fadeInBottom,
.fadeInUp {
    animation-name: dlFadeInUp!important;
}

/* Fade In Down */
@keyframes dlFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0,-50px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.dt-fadeInTop,
.fadeInDown {
    animation-name: dlFadeInDown!important;
}