/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
html{background-color:#fff}

.woocommerce-billing-fields #billing_country_field{
	display: none;
}

@media (min-width: 550px) {
	.woocommerce-billing-fields p.form-row-first {
		width: auto;
		float: none;
		margin-right: 0;
	}
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

	.home .row .section {
		padding-left: 0px;
		padding-right: 0px;
	}

}
<style>

.tp-solar-benefits{
    padding:90px 20px;
    border-radius:30px;
    overflow:hidden;
    position:relative;

    background:
    linear-gradient(
    135deg,
    #FFD54F 0%,
    #FFB300 25%,
    #FF9800 55%,
    #F57C00 80%,
    #E65100 100%
    );
}

/* Hiệu ứng mặt trời */
.tp-solar-benefits:before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    top:-300px;
    right:-200px;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.65),
    rgba(255,235,59,.35),
    transparent 70%
    );

    animation:rotateSun 25s linear infinite;
}

.tp-solar-benefits:after{
    content:'';
    position:absolute;
    bottom:-150px;
    left:-100px;
    width:500px;
    height:500px;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.15),
    transparent 70%
    );
}

@keyframes rotateSun{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.tp-header{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.tp-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
}

.tp-header h2{
    color:#fffef7;
    font-size:46px;
    font-weight:700;
    margin:20px 0 10px;

    text-shadow:
    0 3px 20px rgba(0,0,0,.15);
}

.tp-header p{
    color:#fff8e8;
    font-size:18px;
}

.tp-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

/* Card kính mờ */
.tp-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    padding:32px 25px;
    border-radius:22px;

    text-align:center;

    transition:all .4s ease;
    overflow:hidden;
    position:relative;
}

.tp-box:before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
    );

    transition:.8s;
}

.tp-box:hover:before{
    left:100%;
}

.tp-box:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 20px 40px rgba(255,152,0,.35);

    background:
    rgba(255,255,255,.18);
}

.tp-icon{
    font-size:60px;
    margin-bottom:15px;

    filter:
    drop-shadow(0 0 12px rgba(255,255,255,.4));

    animation:
    floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

.tp-box h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.tp-box p{
    color:#fff8e8;
    line-height:1.8;
    margin:0;
    font-size:15px;
}

/* Tablet */
@media(max-width:1024px){

.tp-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:768px){

.tp-grid{
    grid-template-columns:1fr;
}

.tp-header h2{
    font-size:32px;
}

.tp-header p{
    font-size:16px;
}

}

</style>