/*--------------------------------------------------------------
    Title & Breadcrumb
--------------------------------------------------------------*/

.main-title-section-wrapper {
    float: left;
    clear: both;

    width: 100%;
    margin: 0;
}

.main-title-section-wrapper .main-title-section-container:before {
    position: absolute;
    z-index: -1;

    content: '';
}
.main-title-section-wrapper .main-title-section-shape {
    position: relative;

    float: left;

    width: 100%;
    margin: 0;
    padding: 0;

    pointer-events: none;
}

.main-title-section-wrapper > .main-title-section-bg:after
{

content: "";
height: 100% !important;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: -1;
pointer-events: none;
background-image:  linear-gradient(180deg,rgba(var(--wdtTertiaryColorRgb), 0.1) 0%, rgba(var(--wdtTertiaryColorRgb), 0.1) 100%);
}
#header-wrapper .main-title-section-wrapper {
    position: relative;
}

#header-wrapper.header-top-absolute .main-title-section-wrapper {
    position: static;
}

.main-title-section-container {
    position: relative;

    float: left;
    clear: both;
    /* overflow: hidden; */

    width: 100%;
    margin: 0;
    padding: 160px 0;
}

.main-title-section {
    position: relative;

    float: left;

    width: 100%;
    margin: 0;
    padding: 0;
}

.main-title-section h1 {
    font-size: var(--wdtFontSize_H1);

    margin: 0 0 5px;

    text-transform: none;
    word-break: break-all;
}

.breadcrumb {
    font-size: inherit;
    font-weight: 500;

    float: left;
    clear: both;

    width: 100%;
    margin: 0;
    padding: 0;
}

.breadcrumb a:not(:focus) {
    text-decoration: none;
}

.breadcrumb a,
.breadcrumb span {
    font-size: var(--wdtFontSize_Ext);
    font-weight: var(--wdtFontWeight_Ext);
}

.breadcrumb span:not(.current) {
    display: inline-block;

    margin: 0 12px;
    padding: 0;
}

.breadcrumb .breadcrumb-default-delimiter:last-child {
    display: none;
}

.main-title-section-wrapper .breadcrumb-default-delimiter:before {
    position: relative;
    top: -1px;

    display: inline-block;

    width: 10px;
    height: 10px;
    margin: auto;

    content: '';
    vertical-align: middle;

    -webkit-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
}

.main-title-section h1,
.breadcrumb {
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;

    -ms-hyphens: auto;
}

.main-title-section-wrapper>.main-title-section-bg,
.main-title-section-wrapper.overlay-wrapper>.main-title-section-bg:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100% !important;

    content: '';
    pointer-events: none;
}

.main-title-section-wrapper .main-title-section-container::after {

content: "";
position: absolute;
width: 100%;
height: 85px;
left: 0;
bottom: -2px;
mask-image: url(../images/bread-cum-overlay.png);
mask-repeat: repeat;
mask-size: auto;
mask-position: center;
-webkit-mask-image: url(../images/bread-cum-overlay.png);
-webkit-mask-repeat: repeat;
-webkit-mask-size: auto;
-webkit-mask-position: center;
z-index: 1;
background-color: var(--wdtAccentTxtColor);
animation: movement 400s linear infinite; 
-webkit-animation: movement 400s linear infinite; 

}

@keyframes movement{
  0% {
    -webkit-mask-position:0px 0px;
  }
  100%{
    -webkit-mask-position:20000px 0px;
  }
}
@-webkit-keyframes movement{
  0% {
    -webkit-mask-position:0px 0px;
  }
  100%{
    -webkit-mask-position:20000px 0px;
  }
}



.home #header-wrapper .main-title-section-wrapper .main-title-section-container {
    display: none;
}

/* KeyFrame Animations */

@keyframes roaming {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes breadcrumb-floating {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes breadcrumb-floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(10%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

@-webkit-keyframes color-decor-animation {
    0% {
        background: var(--wdtSecondaryColor);
    }

    33.3333% {
        background: var(--wdtPrimaryColor);
    }

    66.666% {
        background: var(--wdtTertiaryColor);
    }

    100% {
        background: var(--wdtSecondaryColor);
    }
}

@keyframes color-decor-animation {
    0% {
        background: var(--wdtSecondaryColor);
    }

    33.3333% {
        background: var(--wdtPrimaryColor);
    }

    66.666% {
        background: var(--wdtTertiaryColor);
    }

    100% {
        background: var(--wdtSecondaryColor);
    }
}

/*--------------------------------------------------------------
    Default Colors
--------------------------------------------------------------*/

.breadcrumb {
    color: var(--wdtBodyTxtColor);
}

.main-title-section h1 {
    color: var(--wdtHeadAltColor);
}

.breadcrumb a {
    color: var(--wdtHeadAltColor);
}

.breadcrumb span.current {
    color: var(--wdtBodyTxtColor);
}

.main-title-section-wrapper.overlay-wrapper>.main-title-section-bg:after {
    opacity: .5;
    background-image: linear-gradient(180deg, transparent 0%, var(--wdtTertiaryColor) 100%);
}

/* .main-title-section-wrapper.overlay-wrapper > .main-title-section-bg:after
{
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent 0%, var(--wdtTertiaryColor) 100%);
} */

/* .main-title-section-wrapper.overlay-wrapper.dark-bg-breadcrumb > .main-title-section-bg:after
{
    background-color: var(--wdtHeadAltColor);
    background-image: linear-gradient(180deg, transparent 0%, var(--wdtTertiaryColor) 100%);
} */

.main-title-section-wrapper.dark-bg-breadcrumb>.main-title-section-bg {
    background-color: var(--wdtHeadAltColor);
}


.dark-bg-breadcrumb .main-title-section h1,
.dark-bg-breadcrumb .breadcrumb a,
.dark-bg-breadcrumb .breadcrumb span.current,
.dark-bg-breadcrumb .breadcrumb span:not(.current) {
    color: var(--wdtAccentTxtColor);
}

/* custom breadcrumb mask image */

/* .main-title-section-wrapper .main-title-section-bg {
    -webkit-mask-image: url("https://wdtninos.wpengine.com/wp-content/uploads/2022/10/breadcrumb_mask.png");
    -webKit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
}

.main-title-section-wrapper .main-title-section-bg::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("https://wdtninos.wpengine.com/wp-content/uploads/2022/10/mask_before_img.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
} */

section.main-title-section-wrapper.dark-bg-breadcrumb.aligncenter.overlay-wrapper {
    background-color: #ffefe4;
    z-index: 0;
}


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/

/* Primary Color */
.breadcrumb a:hover,
.dark-bg-breadcrumb .breadcrumb a:hover {
    color: var(--wdtPrimaryColor);
}

/* Secondary Color */

.main-title-section-wrapper .breadcrumb-default-delimiter:before {
    background-color: var(--wdtPrimaryColor);
}

/*--------------------------------------------------------------
	Responsive
--------------------------------------------------------------*/


@media only screen and (max-width: 1280px) {
    .main-title-section h1 {
        font-size: var(--wdtFontSize_H3);
    }

    .main-title-section-wrapper .main-title-section-container {
        padding: 100px 0 100px;
    }
}

/*----*****---- << Mobile (Landscape) >> ----*****----*/

/* Common Styles for the devices below 767px width */

@media only screen and (max-width: 767px) {
    .main-title-section h1 {
        font-size: var(--wdtFontSize_H3);
    }

    .main-title-section,
    .main-title-section h1,
    .breadcrumb {
        text-align: center;
    }

    .main-title-section h1 {
        margin: 0 0 20px 0;
    }

    .main-title-section-wrapper .main-title-section-container {
        padding: 100px 0 100px 0;
    }
}

/* Common Styles for the devices below 479px width */

@media only screen and (max-width: 479px) {
    .main-title-section h1 {
        font-size: var(--wdtFontSize_H3);
    }

    .main-title-section-container {
        padding: 80px 0;
    }
}