.romatem-footer-phone img {
    width:5vw !important;
}

.romatem-footer{
    position:relative;
    overflow:hidden;
    background:#082d6a;
    min-height:595px;
}

.romatem-footer-bg-image{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
}

.romatem-footer-bg-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:right center;
    display:block;
}

.romatem-footer-bg-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            90deg,
            rgba(7,40,101,.98) 0%,
            rgba(7,40,101,.97) 35%,
            rgba(7,40,101,.93) 52%,
            rgba(7,40,101,.82) 63%,
            rgba(7,40,101,.46) 76%,
            rgba(7,40,101,.14) 88%,
            rgba(7,40,101,.02) 100%
        );
}

.romatem-footer-inner{
    position:relative;
    z-index:3;
    padding-top:46px;
    padding-bottom:42px;
}

.romatem-footer-top{
    margin-bottom:28px;
}

.romatem-footer-logo img{
    width:100%;
    max-width:250px;
    display:block;
    height:auto;
}

.romatem-footer-line{
    width:100%;
    height:2px;
    background:rgba(255,255,255,.72);
    margin-bottom:26px;
    opacity:.92;
}

.romatem-footer-main{
    display:flex;
    min-height:390px;
}

.romatem-footer-left{
    width:min(100%, 1120px);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding-inline-end:40px;
}

.romatem-footer-grid{
    display:grid;
    grid-template-columns: 1.1fr 1.05fr 3fr;
    gap:34px 28px;
    align-items:start;
}

.romatem-footer-col h2{
    margin:0 0 12px;
    color:#fff;
    font-family:'Montserrat', sans-serif;
    font-size:16px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-.1px;
}

.romatem-footer-subtitle{
    margin-top:36px !important;
}

.romatem-footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.romatem-footer-col ul li{
    margin-bottom:7px;
    line-height:1.5;
}

.romatem-footer-col ul li a{
    color:#e5edf9;
    text-decoration:none;
    font-family:'Montserrat', sans-serif;
    font-size:16px;
    line-height:1.45;
    font-weight:400;
    transition:all .2s ease;
}

.romatem-footer-col ul li a:hover{
    color:#fff;
    opacity:1;
}

.romatem-store-links{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:18px 22px;
    margin:8px 0 28px;
}

.store-link{
    display:inline-flex;
    align-items:center;
}

.store-link img{
    display:block;
    height:auto;
    max-width:270px;
    width:auto;
}

.romatem-social-links{
    display:flex;
    align-items:center;
    gap:16px;
    margin:0 0 54px;
}

.romatem-social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.romatem-social-links a img{
    width:18px;
    height:18px;
    display:block;
    object-fit:contain;
    transition:transform .2s ease, opacity .2s ease;
}

.romatem-social-links a:hover img{
    transform:translateY(-1px);
    opacity:1;
}

.romatem-footer-phone{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:2px;
}

.romatem-footer-phone img{
    width:58px;
    height:auto;
    display:block;
    object-fit:contain;
}

.romatem-footer-phone span{
    color:#fff;
    font-family:'Montserrat', sans-serif;
    font-size:22px;
    line-height:1;
    font-weight:700;
    letter-spacing:.2px;
}

.romatem-footer-bottom-text{
    margin-top:42px;
    color:#e0e7f3;
    font-family:'Montserrat', sans-serif;
    font-size:15px;
    line-height:1.6;
    font-weight:400;
    max-width:980px;
}

@media (max-width: 1599px){
    .romatem-footer-grid{
        grid-template-columns: 1fr 1fr 2fr;
        gap:28px 22px;
    }

    .romatem-footer-col h2{
        font-size:16px;
    }

    .romatem-footer-col ul li a{
        font-size:13px;
    }

    .store-link img{
        max-width:220px;
    }
}

@media (max-width: 1399px){
    .romatem-footer{
        min-height:auto;
    }

    .romatem-footer-left{
        width:min(100%, 980px);
        padding-inline-end:20px;
    }

    .romatem-footer-grid{
        grid-template-columns: 1fr 1fr 2fr;
        gap:24px 18px;
    }

    .romatem-social-links{
        margin-bottom:40px;
    }
}

@media (max-width: 1199px){
    .romatem-footer-bg-overlay{
        background:
            linear-gradient(
                90deg,
                rgba(7,40,101,.98) 0%,
                rgba(7,40,101,.95) 48%,
                rgba(7,40,101,.82) 72%,
                rgba(7,40,101,.40) 100%
            );
    }

    .romatem-footer-left{
        width:100%;
        padding-inline-end:0;
    }

    .romatem-footer-grid{
        grid-template-columns:repeat(3, 1fr);
        gap:28px 24px;
    }

    .store-link img{
        max-width:190px;
    }
}

@media (max-width: 991px){
    .romatem-footer-inner{
        padding-top:38px;
        padding-bottom:34px;
    }

    .romatem-footer-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:26px 22px;
    }

    .romatem-store-links{
        gap:14px;
        margin-bottom:22px;
    }

    .romatem-social-links{
        margin-bottom:28px;
    }

    .romatem-footer-phone img{
        width:50px;
    }

    .romatem-footer-phone span{
        font-size:20px;
    }
}

@media (max-width: 767px){
    .romatem-footer-bg-image img{
        object-position:72% center;
    }

    .romatem-footer-bg-overlay{
        background:
            linear-gradient(
                180deg,
                rgba(7,40,101,.96) 0%,
                rgba(7,40,101,.95) 55%,
                rgba(7,40,101,.88) 100%
            );
    }

    .romatem-footer-inner{
        padding-top:32px;
        padding-bottom:28px;
    }

    .romatem-footer-top{
        margin-bottom:22px;
    }

    .romatem-footer-logo img{
        max-width:200px;
    }

    .romatem-footer-line{
        margin-bottom:22px;
    }

    .romatem-footer-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .romatem-footer-col h2{
        font-size:16px;
    }

    .romatem-footer-col ul li a{
        font-size:13px;
    }

    .store-link img{
        max-width:180px;
    }

    .romatem-social-links{
        gap:14px;
        margin-bottom:22px;
    }

    .romatem-footer-phone img{
        width:46px;
    }

    .romatem-footer-phone span{
        font-size:18px;
    }

    .romatem-footer-bottom-text{
        margin-top:28px;
        font-size:14px;
        line-height:1.55;
    }
}

@media(min-width:992px){
    .romatem-footer-bg-image img {
        width:40%;
        float:inline-end;
        object-fit:inherit !important;
    }
}
