/* Start custom CSS for html, class: .elementor-element-760bd0b *//*==============================
HERO SECTION
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f8f6f3;
    color:#111;
}

.hero{

    max-width:1500px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;

    align-items:center;

    padding:90px 6%;
}

.hero-subtitle{

    color:#b58a45;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;

}

.hero h1{

    font-size:68px;
    line-height:1.05;
    margin:20px 0;

}

.hero p{

    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-bottom:50px;

}

.btn{

    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;

}

.btn-dark{

    background:#111;
    color:#fff;

}

.btn-dark:hover{

    background:#b58a45;

}

.btn-light{

    border:1px solid #111;
    color:#111;

}

.btn-light:hover{

    background:#111;
    color:#fff;

}

.hero-stats{

    display:flex;
    gap:50px;

}

.hero-stats h3{

    font-size:30px;

}

.hero-stats span{

    color:#666;

}

/* Gallery */

.hero-gallery{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;

}

.hero-gallery div{

    overflow:hidden;
    border-radius:18px;

}

.hero-gallery img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.hero-gallery img:hover{

    transform:scale(1.08);

}

.large{

    grid-row:span 2;
    height:420px;

}

.small{

    height:200px;

}

/* Responsive */

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

}

.hero-gallery{

margin-top:40px;

}

}

@media(max-width:768px){

.hero{

padding:70px 25px;

}

.hero h1{

font-size:48px;

}

.hero-gallery{

grid-template-columns:repeat(2,1fr);

}

.large{

height:300px;

}

.small{

height:180px;

}

.hero-stats{

flex-direction:column;
gap:20px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

text-align:center;

}

}/* End custom CSS */