/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

@font-face {
	font-family: 'SVN Mightiest';
	src: url('./fonts/SVN-Mightiest.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

#site-header.transparent-header{
	background-color: rgba(255,255,255,0.1);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}
.call_button_header{
	max-height: 56px;
	margin-left: 70px;
}
.after-header-content .after-header-content-inner>div>a{
	line-height: 24px !important;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 50px;
	padding: 16px 24px;
	background: transparent
}
.after-header-content .after-header-content-inner>div>a:hover{
	background: #ffffff;
	color: #243F81;
}
.hero-btm-bg{
	background: linear-gradient(90deg, rgba(15, 30, 67, 0) 0%, rgba(15, 30, 67, 0.660011) 16.56%, rgba(15, 30, 67, 0.72) 35.82%, rgba(15, 30, 67, 0.8) 66.53%, rgba(15, 30, 67, 0.56) 91.58%, rgba(15, 30, 67, 0) 100%);
}
.hero-btm-grid > .e-child {
    position: relative; /* Làm gốc tọa độ cho đường kẻ */
}

.hero-btm-grid > .e-child:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%; /* Điều chỉnh để line không chạm đỉnh */
    height: 80%; /* Chiều dài của line */
    width: 1px; /* Độ dày của border right */
    
    /* Tạo hiệu ứng mờ dần 2 đầu bằng radial-gradient */
    background: radial-gradient(
        circle at center, 
        #FFFFFF 0%, 
        rgba(36, 63, 129, 0) 100%
    );
}
@media (max-width: 767px){
	.hero-btm-bg{
		position: relative !important;
	}
	.hero-btm-bg{
		background: linear-gradient(0deg, rgba(15, 30, 67, 0) 0%, rgba(15, 30, 67, 0.660011) 16.56%, rgba(15, 30, 67, 0.72) 35.82%, rgba(15, 30, 67, 0.8) 66.53%, rgba(15, 30, 67, 0.56) 91.58%, rgba(15, 30, 67, 0) 100%);
	}
}
.project-info-table {
    width: 100%;
    border-collapse: collapse;
}

.project-info-table td {
    padding: 20px 0;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Xóa đường kẻ cho hàng cuối cùng theo đúng ý bạn */
.project-info-table tr:last-child td {
    border-bottom: none;
}

.project-info-table td.label {
    width: 35%;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 20px;
    letter-spacing: 0.5px;
}

.project-info-table td.value {
    width: 65%;
}

.project-info-table td.value strong {
    display: inline-block;
    margin-bottom: 4px;
}
.bg-orange{
	position: relative;
}
.bg-orange::after{
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	content: '';
	background: #C64925;
	z-index:9;
}

.nw-item-img-wrap{
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 100%;
    transition: all .3s ease-in-out;
    transform: scale(0.65);
    position: relative;
}
.nw-item-img-wrap:after{
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: #00000066;
    z-index: 2;
    position: absolute;
}
.nw-carousel-item.swiper-slide-active .nw-item-img-wrap:after{
    background: transparent;
}
.nw-item-img-wrap img{
    height: 100% !important;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.nw-carousel-item.swiper-slide-active .nw-item-img-wrap{
    transform: scale(1);
}
.nw-carousel-item .item-content{
    display: none;
}
.nw-carousel-item.swiper-slide-active .item-content{
    display: block;
}
.nw-carousel-item .item-content h3{
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.5em;
    font-weight: 400;
    text-transform: uppercase;
}