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

/*************** ADD CUSTOM CSS HERE.   ***************/


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


}
:root{
	--transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slow-pan {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -1%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}
.section-howit-works h2,
.section-our-offerings h2{
	font-family: "DM Sans", Sans-serif;
	font-size: 55px;
	font-weight: 500;
	line-height: 1.15em;
}
.section-howit-works .step-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    color: #2563EB;
    border: 1px solid #eee;
}
.section-howit-works h3 {
	font-family: "DM Sans", Sans-serif;
	color: #000;
    line-height: 1.2em;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}
.section-howit-works p{
	font-family: "DM Sans", Sans-serif;
	font-size: 18px;
}
.section-our-offerings .box{
	background: #fff;
    padding: 0;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid #eee;
    transition: var(--transition, 0.4s ease);
    height: 100%;
}
.section-our-offerings .box:hover{
	border-color: #2563EB;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.section-our-offerings .image-cover{
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
	background: #f8f9fa;
}
.section-our-offerings .image-cover img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slow-pan 20s infinite ease-in-out;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-our-offerings .box-text{
	padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-our-offerings .package-tag {
    font-size: 12px;
	font-family: "DM Sans", Sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.section-our-offerings h3 {
    font-size: 24px;
    margin-bottom: 12px;
	color: #000;
	font-family: "DM Sans", Sans-serif;
	font-weight: 500;
    line-height: 1.2em;
}
.section-our-offerings .box-text p{
	font-size: 15px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
	font-family: "DM Sans", Sans-serif;
}
.section-our-offerings .button span{
	font-weight: 600;
	text-decoration: none;
	color: #111;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s;
	line-height: 1.6em;
	letter-spacing: -0.5px;
	font-family: "DM Sans", Sans-serif;
    font-size: 16px;
}

/* RESPONSIVE TABLET */
@media only screen and (min-width: 768px) and (max-width: 1023px){
	.section-howit-works .step-icon{
		margin-left: unset;
	}
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px){
	.section-howit-works .step-icon{
		margin-left: unset;
	}
}