@import url(all.min.css);
@import url(colors.css);

@font-face {
    font-family: Estedad;
    src: url(../fonts/Estedad-Medium.ttf);
}
@font-face {
    font-family: Vazirmatn;
    src: url(../fonts/Vazirmatn-FD-Medium.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--primary-bg) !important;
}

h1, h2, h3, h4, h5, h6, p{
    direction: rtl;
}

a{
    text-decoration: none !important;
    color: var(--primary-color) !important;
}

ul{
    list-style: none;
}

/* --------------Header------------ */
header.hero{
    background-image: url(../img/optimized/main-page-header.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 90vh;
    position: relative;
}
header.hero::after{
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100px;
    height: 100px;
    background-image: url(../img/optimized/Lavia_MED02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-content{
    position: absolute;
    top: 250px;
    left: 10%;
    font-family: Estedad;
    direction: rtl;
    text-align: center;
}
.hero-content p{
    color: var(--text-primary);
}
.hero-content h2{
    color: var(--title-primary);
    font-weight: bold;
}
.hero-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 55px;
    direction: ltr;
}
.hero-buttons a:first-child{
    background-color: var(--card-bg);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary-button);
    direction: rtl;
}
.hero-buttons a:last-child{
    background: var(--primary-button-gradient);
    color: var(--primary-bg) !important;
    padding: 6px 12px;
    border-radius: 20px;
    direction: rtl;
}
.hero-buttons i{
    vertical-align: middle;
}
@media screen and (min-width:2200px) {
    header.hero{
        background-size: 2200px;
    }
    .hero-content{
        left: 20%;
    }
}
.hero-buttons a:hover{
    box-shadow: 0 0 20px var(--card-bg);
    transform: scale(1.07);
    transition: 0.2s ease-in;
}
.hero-scroll{
    margin-top: 100px;
    font-family: Vazirmatn;
}
.hero-scroll i{
    vertical-align: middle;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px); /* میزان بالا رفتن */
        opacity: 0.5;
    }
    60% {
        transform: translateY(-7px);  /* میزان بازگشت کوتاه */
    }
}






header{
    background-image: var(--gradient-dark);
}
.slider {
    position: relative;
    width: calc(100% - 40px);
    margin: 0px auto;
    padding: 50px 0;
    overflow: hidden;
}
.slides {
    position: relative;
    height: 400px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}
.slide:not(.active) {
    opacity: 0;
}
.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.3);
}
.slider-controls{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 3;
}
.prev-btn, .next-btn {
    padding: 2px 15px 2px 30px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 45px;
    cursor: pointer;
    color: #004e92;
}
.prev-btn{
    border-radius: 0 15px 15px 0;
}
.next-btn{
    border-radius: 15px 0 0 15px;
}
.prev-btn:hover, .next-btn:hover {
    color: #ccc;
    transition: 0.3s;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 5px;
    cursor: pointer;
}
.dot.active {
    background-color: #fff;
}


/* ----------Services---------- */
.services-container{
    margin-top: 50px;
}
.services-title{
    text-align: center;
    font-weight: bold;
}
.services-title p{
    color: var(--primary-button);
    font-family: Vazirmatn;
}
.services-title h3{
    color: var(--text-primary);
    font-family: Estedad;
}
.services{
    display: grid;
    grid-template-columns: repeat(4, auto);
    column-gap: 30px;
    row-gap: 40px;
    padding: 25px;
    padding-top: 35px;
}
.service{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding-top: 30px;
    height: 300px;
    cursor: pointer;
    transition: all 0.2s ease-in;
}
.service img{
    position: relative;
    width: 100px;
    outline: 1px solid var(--primary-color);
    outline-offset: 10px;
    border-radius: 500px;
}
.service::after{
    position: absolute;
    top: 160px;
    left: 0;
    width: 50%;
    height: 2px;
    content: "";
    margin: auto;
    background-color: var(--border-color);
}
.service h5{
    margin: 0;
    margin-top: 60px;
    color: var(--text-primary);
    font-family: Estedad;
    font-size: 20px;
    font-weight: bold;
}
.service p{
    font-family: Vazirmatn;
    margin-top: 25px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}
.service p i{
    vertical-align: middle;
    animation: bounce2 3s infinite;
}
.service:hover{
    transform: scale(1.06);
    background-color: var(--secondary-bg);
}
.service:hover p{
    background-color: var(--primary-button);
    padding: 5px 10px;
    border-radius: 25px;
    color: var(--card-bg);
}
@keyframes bounce2 {
    0%, 20%, 40%, 80%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translatex(-5px);
        opacity: 0.5;
    }
}
@media screen and (max-width:1200px) {
    .services{
        grid-template-columns: repeat(3, auto);
    }
}
@media screen and (max-width:992px) {
    .services{
        grid-template-columns: repeat(2, auto);
    }
}
@media screen and (max-width:768px) {
    .services{
        grid-template-columns: repeat(1, auto);
    }
}


/* --------------About Us------------ */
.about-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 55px;
}
.about-us .first-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    direction: rtl;
}
.about-us .first-row .content{
    text-align: center;
    font-family: Vazirmatn;
    width: 50%;
}
.about-us .first-row .content p{
    color: var(--text-primary);
    line-height: 30px;
    text-align: justify;
}
.about-us .first-row .content p:first-child{
    text-align: center !important;
}
.about-us .first-row .content p i{
    vertical-align: middle;
    animation: bounce 5s infinite;
}
.about-us .first-row .content h3{
    color: var(--primary-color);
    font-family: Estedad;
    font-weight: bold;
    margin-bottom: 30px;
}
.about-us .first-row .content h2{
    color: var(--primary-color);
    font-family: Vazirmatn;
    margin-top: 15px;
}
.about-us .first-row .img{
    width: 60%;
    height: 500px;
    overflow: hidden;
    margin-right: 25px;
    border-radius: 20px;
    outline: 1px solid var(--card-bg);
    outline-offset: -10px;
}
.about-us .first-row .img img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 20px;
}
.about-us .first-row .content h3:last-child{
    margin-top: 80px;
}
.about-us .second-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    direction: rtl;
}
.about-us .second-row .feature{
    max-width: 400px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 5px 25px;
    padding: 15px;
        opacity: 0;
    transform: translateY(50px);
    transition: opacity .7s ease, transform .7s ease;
}
.about-us .second-row .feature{
    transition: .3s ease;
}
.about-us .second-row .feature:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    border-color: var(--primary-button);
}
.feature.show{
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.about-us .second-row .feature div:first-child{
    width: 50px;
    height: 50px;
    background-color: var(--secondary-bg);
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.about-us .second-row .feature div:first-child i{
    color: var(--primary-icon);
    font-size: 25px;
}
.about-us .second-row .feature h5{
    font-family: Estedad;
    color: var(--primary-color);
    font-weight: bold;
}
.about-us .second-row .feature p{
    color: var(--text-primary);
    font-family: Vazirmatn;
    width: 70%;
    text-align: center;
}

/* ==================================
   Tablet (<=992px)
================================== */
@media screen and (max-width:992px){
    .about-us{
        margin: 40px auto;
    }
    .about-us .first-row{
        flex-direction: column-reverse;
        gap: 35px;
        text-align: center;
    }
    .about-us .first-row .content{
        width: 100%;
    }
    .about-us .first-row .img{
        width: 100%;
        max-width: 650px;
        height: auto;
        margin: 0;
    }
    .about-us .first-row .img img{
        display: block;
    }
    .about-us .first-row .content h2{
        font-size: 30px;
    }
    .about-us .first-row .content h3{
        font-size: 24px;
    }
    .about-us .second-row{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
        width: 100%;
    }
    .about-us .second-row .feature{
        margin: 0;
        max-width: none;
    }
}

/* ==================================
   Mobile (<=768px)
================================== */
@media screen and (max-width:768px){
    .about-us{
        margin: 30px auto;
    }
    .about-us .first-row{
        gap: 25px;
    }
    .about-us .first-row .img{
        border-radius: 18px;
    }
    .about-us .first-row .content h2{
        font-size: 26px;
        line-height: 1.5;
    }
    .about-us .first-row .content h3{
        font-size: 20px;
    }
    .about-us .first-row .content p{
        font-size: 15px;
        line-height: 2;
    }
    .about-us .first-row .content h3:last-child{
        margin-top: 40px;
    }
    .about-us .second-row{
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }
    .about-us .second-row .feature{
        padding: 20px 15px;
    }
    .about-us .second-row .feature h5{
        font-size: 17px;
    }
    .about-us .second-row .feature p{
        width: 100%;
        font-size: 14px;
    }
}

/* ==================================
   Small Phones (<=480px)
================================== */
@media screen and (max-width:480px){
    .about-us .first-row .content h2{
        font-size: 22px;
    }
    .about-us .first-row .content h3{
        font-size: 18px;
    }
    .about-us .first-row .content p{
        font-size: 14px;
    }
    .about-us .first-row .img{
        border-radius: 15px;
    }
    .about-us .second-row{
        grid-template-columns: 1fr;
    }
    .about-us .second-row .feature{
        padding: 22px 15px;
    }
    .about-us .second-row .feature div:first-child{
        width: 55px;
        height: 55px;
    }
    .about-us .second-row .feature div:first-child i{
        font-size: 24px;
    }
}



/* --------------Free Moshavere------------ */
.free-consulting{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 40px;
    background: var(--secondary-bg) !important;
    margin: 30px 50px 0 50px;
    direction: rtl;
    border-radius: 20px;
}
.free-consulting-form{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    justify-self: center;
    max-width: 550px;
    width: 100%;
    padding: 40px;
}
.free-consulting-form h3{
    font-family: Estedad;
    color: var(--primary-color);
    font-weight: bold;
}
.free-consulting-form p{
    font-family: Vazirmatn;
    color: var(--text-primary);
}
.my-input-group{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.my-input-group div{
    position: relative;
}
.my-input-group div input{
    border: none;
    outline: none;
    direction: rtl;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: Vazirmatn;
    padding: 7px 10px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    margin: 15px;
}
.my-input-group div label{
    position: absolute;
    top: 21px;
    right: 25px;
    font-family: Vazirmatn;
    color: transparent;
    transition: all 0.2s ease-in-out;
}
.my-input-group div input:focus-within{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.my-input-group div:focus-within label{
    transform: translateY(-12px);
    color: var(--text-secondary) !important;
    font-size: 10px;
}
.my-textarea-group{
    position: relative;
}
.my-textarea-group textarea{
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    outline: none;
    border-radius: 10px;
    width: 100%;
    height: 75px;
    direction: rtl;
    font-family: vazirmatn;
    padding: 7px 10px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    margin: 15px 0;
    resize: none;
}
.my-textarea-group .textarea-label{
    position: absolute;
    top: 21px;
    right: 25px;
    font-family: Vazirmatn;
    color: transparent;
    transition: all 0.2s ease-in-out;
}
.my-textarea-group textarea:focus-within{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.my-textarea-group:focus-within label{
    transform: translateY(-12px);
    color: var(--text-secondary) !important;
    font-size: 10px;
}
.free-consulting-form button{
    width: 100%;
    margin-top: 15px;
    border: none;
    outline: none;
    text-align: center;
    font-family: Vazirmatn;
    padding: 12px 0;
    border-radius: 10px;
    background: var(--primary-button-gradient);
    color: var(--card-bg);
    transition: all 0.2s ease-in;
}
.free-consulting-form button i{
    vertical-align: middle;
}
.free-consulting-form button:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 10px var(--card-bg);
}

.free-consulting .free-consulting-img img{
    width: 380px;
    animation: idle 6s cubic-bezier(.45,.05,.55,.95) infinite;
    transform-origin: center bottom;
    transition: all 0.5s ease;
}
.free-consulting .free-consulting-img img:hover{
    filter: drop-shadow(0 20px 25px rgba(0,0,0,.35));
}
@keyframes idle{
    0%{
        transform:
            translateY(0)
            rotate(0deg)
            scale(1);
    }
    20%{
        transform:
            translateY(-6px)
            rotate(-1deg)
            scale(1.01);
    }
    40%{
        transform:
            translateY(-12px)
            rotate(1deg)
            scale(1.02);
    }
    60%{
        transform:
            translateY(-6px)
            rotate(.5deg)
            scale(1.01);
    }
    80%{
        transform:
            translateY(-2px)
            rotate(-.5deg)
            scale(1.005);
    }
    100%{
        transform:
            translateY(0)
            rotate(0deg)
            scale(1);
    }
}

/* ==================================
   Tablet (<=992px)
================================== */
@media screen and (max-width:992px){
    .free-consulting{
        grid-template-columns: 1fr;
        row-gap: 30px;
        margin: 30px 20px;
        padding: 35px 25px;
    }
    .free-consulting-form{
        margin: 0;
        align-items: center;
        text-align: center;
    }
    .free-consulting-form form{
        width: 100%;
        max-width: 650px;
    }
    .my-input-group{
        gap: 15px;
    }
    .my-input-group div{
        flex: 1;
    }
    .my-input-group div input{
        width: 100%;
        margin: 15px 0;
    }
    .my-textarea-group textarea{
        width: 100%;
    }
    .free-consulting-img{
        display: flex;
        justify-content: center;
    }
    .free-consulting .free-consulting-img img{
        width: 320px;
    }
}

/* ==================================
   Mobile (<=768px)
================================== */
@media screen and (max-width:768px){
    .free-consulting{
        margin: 20px 15px;
        padding: 25px 18px;
        border-radius: 18px;
    }
    .free-consulting-form h3{
        font-size: 26px;
        text-align: center;
    }
    .free-consulting-form p{
        text-align: center;
        line-height: 1.9;
        margin-bottom: 20px;
    }
    .my-input-group{
        flex-direction: column;
        gap: 10px;
    }
    .my-input-group div{
        width: 100%;
    }
    .my-input-group div input{
        width: 100%;
        margin: 10px 0;
        font-size: 15px;
        padding: 12px;
    }
    .my-input-group div label{
        right: 15px;
    }
    .my-textarea-group textarea{
        width: 100%;
        height: 110px;
        font-size: 15px;
    }
    .my-textarea-group .textarea-label{
        right: 15px;
    }
    .free-consulting-form button{
        padding: 14px;
        font-size: 16px;
    }
    .free-consulting .free-consulting-img img{
        width: 260px;
    }
}

/* ==================================
   Small Phones (<=480px)
================================== */
@media screen and (max-width:480px){
    .free-consulting{
        margin: 15px 10px;
        padding: 20px 15px;
    }
    .free-consulting-form h3{
        font-size: 22px;
    }
    .free-consulting-form p{
        font-size: 14px;
    }
    .my-input-group div input,
    .my-textarea-group textarea{
        font-size: 14px;
    }
    .free-consulting-form button{
        font-size: 15px;
        padding: 13px;
    }
}


/* ----------Articles---------- */
.show-articles{
    font-family: Vazirmatn;
    margin-top: 40px;
}
.show-articles h3{
    font-family: Estedad;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}
.show-articles .articles{
    padding: 10px 5px 20px;
    direction: rtl;
    position: relative;
}
.show-articles .articles .scroll-icon div{
    position: absolute;
    top: 30%;
    z-index: 50;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    width: 40px;
    height: 40px;
    border-radius: 55px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.show-articles .articles .scroll-icon div:first-child{
    animation: scroll-hint-left 2s infinite;
    left: 20px;
}
.show-articles .articles .scroll-icon div:last-child{
    right: 20px;
    animation: scroll-hint-right 2s infinite;
}
@keyframes scroll-hint-left {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-15px);
    }
}
@keyframes scroll-hint-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}
.show-articles .articles .article{
    background-color: var(--card-bg);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}
.show-articles .articles .article:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}
.show-articles .articles .article .article-header{
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}
.show-articles .articles .article .article-header img{
    object-position: center;
    object-fit: cover;
}
.show-articles .articles .article .article-content{
    margin-top: 20px;
    direction: rtl;
    line-height: 30px;
}
.show-articles .articles .article .article-content h5{
    text-align: center;
    font-family: Estedad;
    color: var(--title-primary);
    margin-bottom: 15px;
}
.show-articles .articles .article .article-content p{
    color: var(--text-primary);
}
.show-articles .articles .article .article-footer {
    color: var(--primary-icon);
    direction: ltr;

} 
.show-articles .articles .article .article-footer a{
    transition: all 0.2s ease-in;
}
.show-articles .articles .article .article-footer a:hover{
    background-color: var(--secondary-bg);
    padding: 3px 6px;
    border-radius: 50px;
}
.show-articles .articles .article .article-footer a i{
    font-size: 10px;
    vertical-align: middle;
}

.swiper-wrapper{
    align-items: stretch;
}
.swiper-slide{
    height: auto !important;
    display: flex;
}
.swiper-slide .article{
    width: 100%;
    height: auto;
}
.show-articles .articles .article .article-header img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}


/* --------Gift section--------- */
.moshavere-free{
    background-color: var(--secondary-bg);
    border-radius: 15px;
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    direction: rtl;
}
.moshavere-free{
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow: hidden;
}
.moshavere-free div:first-child img{
    width: 100px;
    animation: gift-animation 2s infinite;
}
@keyframes gift-animation {
    0%, 40%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-12px);
        transform: scale(1.05);
    }
    60% {
        transform: translateY(-7px);
        transform: scale(1.12);

    }
}

.moshavere-free div:nth-child(2) h4{
    color: var(--title-primary);
    font-family: Estedad;
    font-weight: bold;
}
.moshavere-free div:nth-child(2) p{
    color: var(--text-primary);
    font-family: Vazirmatn;
}
.moshavere-free div:nth-child(3){
    background-color: var(--primary-button);
    padding: 10px 15px;
    font-family: Vazirmatn;
    color: var(--card-bg);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
.moshavere-free div:nth-child(3){
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.moshavere-free div:nth-child(3) a{
    color: var(--card-bg) !important;
    transition: all 0.3s ease-in-out;
}
.moshavere-free div:nth-child(3):hover{
    background-color: var(--card-bg);
    outline: 1px solid var(--primary-button);
}
.moshavere-free div:nth-child(3):hover a{
    color: var(--primary-button) !important;
}
.moshavere-free div:nth-child(3) a i{
    vertical-align: middle;
    animation: phone-animation 2s infinite;
}
@keyframes phone-animation {
    0%, 40%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: rotateZ(15deg);
    }
    60% {
        transform: rotateZ(-15deg);
    }
    70% {
        transform: rotateZ(15deg);
    }
    80% {
        transform: rotateZ(-15deg);
    }
}

/* ===========================
   Tablet (<=768px)
=========================== */
@media screen and (max-width:768px){
    .moshavere-free{
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        border-radius: 20px;
    }
    .moshavere-free div:first-child img{
        width: 80px;
    }
    .moshavere-free div:nth-child(2) h4{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .moshavere-free div:nth-child(2) p{
        font-size: 15px;
        line-height: 1.9;
        margin: 0;
    }
    .moshavere-free div:nth-child(3){
        width: 100%;
        max-width: 320px;
        padding: 14px;
        border-radius: 50px;
    }
    .moshavere-free div:nth-child(3) a{
        display: block;
        font-size: 16px;
    }
}

/* ===========================
   Small Phones (<=480px)
=========================== */
@media screen and (max-width:480px){
    .moshavere-free{
        padding: 20px 15px;
        gap: 15px;
    }
    .moshavere-free div:first-child img{
        width: 65px;
    }
    .moshavere-free div:nth-child(2) h4{
        font-size: 19px;
    }
    .moshavere-free div:nth-child(2) p{
        font-size: 14px;
        line-height: 1.8;
    }
    .moshavere-free div:nth-child(3){
        width: 100%;
        padding: 12px;
    }
    .moshavere-free div:nth-child(3) a{
        font-size: 14px;
    }
}
