/*==================================================
    GALLERY PAGE HEADER
==================================================*/

.th-gallery-header{
    padding:100px 0;
    background:#ffffff;
}

.th-gallery-header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.th-gallery-header-content{
    flex:0 0 48%;
}

.th-gallery-header-image{
    flex:0 0 46%;
}

.th-gallery-header-img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
    transition:all .35s ease;
}

.th-gallery-header-img:hover{
    transform:scale(1.02);
}

.th-gallery-header-tag {
	display: inline-block;
	margin-bottom: 18px;
	padding: 0;

	background: transparent;
	color: #F74723;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 2px;
	text-transform: uppercase;

	border-radius: 0;
}

.th-gallery-header-title{
    margin:0 0 25px;
    color:#002147;
    font-size:48px;
    font-weight:700;
    line-height:1.25;
}

.th-gallery-header-description{
    margin:0;
    color:#666666;
    font-size:17px;
    font-weight:400;
    line-height:1.9;
}

.th-gallery-header-description p{
    margin:0;
}



/*==================================================
    GALLERY GRID
==================================================*/

.th-gallery-grid{
    padding:0 0 100px;
    background:#ffffff;
}

.th-gallery-grid-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.th-gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#f5f7fb;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.th-gallery-link{

    position:relative;

    display:block;

    text-decoration:none;

}

.th-gallery-image{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:transform .45s ease;

}

.th-gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,33,71,.65);

    opacity:0;

    transition:all .35s ease;

}

.th-gallery-overlay i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#ffffff;

    color:#F74723;

    font-size:24px;

    transform:scale(.8);

    transition:all .35s ease;

}

.th-gallery-item:hover .th-gallery-image{

    transform:scale(1.08);

}

.th-gallery-item:hover .th-gallery-overlay{

    opacity:1;

}

.th-gallery-item:hover .th-gallery-overlay i{

    transform:scale(1);

}

/*==================================================
    GALLERY BOTTOM
==================================================*/

.th-gallery-bottom{
    padding:90px 0 100px;
    background:#ffffff;
    border-top:1px solid #eef2f7;
}

.th-gallery-bottom-content{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.th-gallery-bottom-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:#F74723;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.th-gallery-bottom-title{
    margin:0 0 25px;
    color:#002147;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
}

.th-gallery-bottom-description{
    margin:0;
    color:#666666;
    font-size:17px;
    line-height:1.9;
}

.th-gallery-bottom-description p{
    margin:0;
}
