@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    /**
  @font family declaration
  */
    --heading: 'Work Sans', sans-serif;
    --description: 'Roboto', sans-serif;

}

/*----------------------------------------*/
/*  00. COMMON TYPOGRAPHY
/*----------------------------------------*/

.heading-sm {
    font-family: var(--heading);
    font-size: 22px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    color: #302f2f;
    font-weight: 600;
    letter-spacing: -1px;
}







/*----------------------------------------*/
/*  01. CARDS
/*----------------------------------------*/

.card-1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-size: 130%;
    transition: all 0.4s ease-in-out;
}

.card-1:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(181.6deg, rgba(3, 18, 32, 0) 24.31%, rgb(3 18 32 / 0%) 24.32%, #000000 105.64%);
    height: 100%;
    width: 100%;
}

.card-1:hover {
    background-size: 155%;
    -webkit-transition: all 0.4s ease-in-out;
}

.card-1 a {
    display: block;
    height: 100%;
    width: 100%;
}

.card-1 .content {
    min-height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
}

.card-1 .content span {
    color: #fff;
    background: #ffffff2b;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 400;
    display: block;
    border-radius: 6px;
}

.card-1 .content h4 {
    color: #fff;
    font-size: 17px;
    margin-top: 2px;
    font-weight: 500;
}

/*----------------------------------------*/
/*  02. BREADCRUMB
/*----------------------------------------*/
.t-breadcrumb {
    background-image: url('./../img/bg/bg-5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5px 90px;
    /* height: 28vh; */
    height: 18vh;
    position: relative;
    overflow: hidden;
}

.t-breadcrumb .overlay {
    background: linear-gradient(to right, #4b0008, #d05100);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 90%;

}

.t-breadcrumb .content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.t-breadcrumb .content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.t-breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.t-breadcrumb ul li {
    list-style: none;
}

.t-breadcrumb ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.t-breadcrumb ul li:last-child a {
    color: rgb(230, 123, 21);
}

.t-breadcrumb ul li a i {
    margin-left: 10px;
}

/* .t-breadcrumb .pattern{
        position: absolute;
    top: 0px;
    left: 0px;
    width: 96rem;
    opacity: 3%;
} */

/*----------------------------------------*/
/*  03. TABBING
/*----------------------------------------*/
.c-nav-pills {
    display: flex;
    gap: 12px;
}

.c-nav-pills .nav-link {
    background: #faf0ca;
    border-radius: .75rem;
    height: 45px;
    font-family: var(--description);
    font-style: normal;
    font-size: 13px;
    text-align: center;
    color: #d05100;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6.25rem;
    cursor: pointer;
    padding: 0 1rem;
    font-weight: 400;
}
.c-nav-pills .active{
    background-color: #e67b15 !important;
}