File: /home/u756937133/domains/inovaix.studio/public_html/assets/sass/components/_breadcrumb.scss
// Start Bread Crumb Area
.bread-crumb-area {
text-align: center;
padding-top: 80px;
padding-bottom: 0;
background-position: top center;
padding-right: 15px;
padding-left: 15px;
h2 {
font-size: 55px;
font-style: normal;
font-weight: 700;
line-height: 75px;
letter-spacing: -1.95px;
color: $text-color1;
font-family: $heading-font;
@media (max-width: 575px) {
font-size: 45px;
line-height: 55px;
}
@media (max-width: 425px) {
font-size: 35px;
line-height: 45px;
}
}
.bread-crumb-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
a,span {
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
letter-spacing: -0.54px;
font-family: $body-font;
color: $text-color1;
transition-timing-function: linear;
transition-duration: 0.3s;
&span {
svg {
width: 10px !important;
}
}
&:hover {
color: $text-color2;
}
&.current-page {
pointer-events: none;
}
}
}
}
// End Bread Crumb Area