#mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
}

.section.lb {
    background-color: #f2f3f5;
}

.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.filter-button-group{
	border: 1px solid #380253;
	border-radius: 0px;
	margin: 10px 0px;
	display: inline-block;
}

.filter-button-group button.active{
	background: #1E88E5;
	color: #fff;
}

.filter-button-group button{
	color: #333;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	background: #fff;
	padding: 12px 40px;
	border: none;
	border-radius: 0px;
}

.filter-button-group button:hover{
	background: #333333;
	color: #ffffff;
}

.gallery-single{
	margin: 30px 15px;;
}

.gallery-single {
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0 0 10px #ccc;
	box-shadow: 0 0 10px #ccc;
}

.gallery-single:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(36deg, #272b66 42.34%, transparent 42.34%) 0 0,
    linear-gradient(72deg, #2d559f 75.48%, transparent 75.48%) 0 0,
    linear-gradient(-36deg, #4753c1 42.34%, transparent 42.34%) 100% 0,
    linear-gradient(-72deg, #47759b 75.48%, transparent 75.48%) 100% 0,
    linear-gradient(36deg, transparent 57.66%, #ad3be2 57.66%) 100% 100%,
    linear-gradient(72deg, transparent 24.52%, #8e1ef7 24.52%) 100% 100%,
    linear-gradient(-36deg, transparent 57.66%, #662a6c 57.66%) 0 100%,
    linear-gradient(-72deg, transparent 24.52%, #9a1d34 24.52%) 0 100%,
    #43a1cd linear-gradient(#ba3e2e, #ba3e2e) 50% 100%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    transform: translateX(-50%) translateY(-50%) scale(0) rotate(360deg);
    transition: all 0.3s ease 0s;
}
.gallery-single:hover:before{
    opacity: 0.5;
    transform: translateX(-50%) translateY(-50%) scale(1.5) rotate(0);
}
.gallery-single:after{
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(255,255,255,0.9),transparent,transparent);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.gallery-single:hover:after{ opacity: 1; }


.gallery-single .box-content{
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-single .inner-content{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, -50%) scale(2);
    transition: all 0.3s ease 0.2s;
}

.gallery-single:hover .inner-content{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-single .title{
    font-size: 25px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    position: relative;
    transition: all 0.3s ease 0.2s;
}

.gallery-single .post{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.gallery-single .icon{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease 0.2s;
}
.gallery-single:hover .icon{ bottom: 15px; }

.gallery-single .icon li{
    display: inline-block;
    margin: 0 2px;
}

.gallery-single .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    font-size: 20px;
    color: #333333;
    transition: all 0.3s ease 0s;
}

.gallery-single .icon li a:hover{
    background: #333333;
    color: #fff;
}

/* Tab CSS */

.wrapper{
    position: relative;
    padding: 15px;
    background-color: rgba(199, 199, 199, 0.482); /* Use an RGBA color to set the opacity */
    border-radius: 15px;
    overflow-x: hidden;
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .12);
}
.wrapper::before {
   
    background-color: inherit;
    border: 1px solid rgba(16, 16, 16, 0.2); /* Use the same color as the container */
    filter: blur(10px); /* Add a slight blur */
}
.wrapper .arrow_icon{
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .12);
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow_icon i{
    position: relative;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 100%;
    font-size: 1.5em;
    cursor: pointer;
}
.arrow_icon i:hover{
    background: #1E88E5;
    color: #ffffff;
}
.wrapper .tabsBox{
    display: flex;
    gap: 5px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    list-style: none;
    border-radius: 0px;
    margin: 10px 0px;
   
}
.tabsBox.dragging{
    cursor: grab;
    scroll-behavior: auto;
}
.tabsBox .tab{
    white-space: nowrap;
    transition: .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    background: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 0px;
}
.tabsBox .tab:hover{
    background: #333333;
    color: #ffffff;
}
.tabsBox.dragging .tab{
    user-select: none;
    pointer-events: none;
    transition: .3s ease;
}
.tabsBox .tab.active{
    background: #1E88E5;
    color: #fff;
    transition: .3s ease;
}

/*******************************/
/******** Main Para CSS *********/
/*******************************/

.section_para {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.nopad {
    padding: 0;
}

.cac {
    background: linear-gradient(rgba(255, 255, 255, 0.282), rgba(255, 255, 255, 0.293)), url(../img/main_para.jpg) center center no-repeat;
    background-size: cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cac:hover .main_para {
    color: #000000 !important;
}

.cac .main_para {
    color: #1e1e1e;
    padding: 30px 8%;
    margin: 0;
    text-transform: capitalize;
}