.container {
    padding: 0;
}

/*#region div.swiper-banner */
div.swiper-banner {

}

div.swiper-banner > ul{
    list-style-type:none;
    padding: 0;
    margin: 0;
}

div.swiper-banner > ul > li > a > img{
    width:100%;
    height:350px;
    object-fit: cover;
}

/*#endregion */

/*#region div.home-about */
div.home-about {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 20px 10px;
    gap:5px;
}

div.home-about> img {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
}

div.home-about> section {
    border:solid 3px #2c2978;
    padding: 10px;
    border-radius: 10px;
    background-image:url(/images/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-color: #f7f8fa;
}

div.home-about> section > h2 {
    color: #2c2978;
    font-size: 18px;
}

div.home-about> section > div {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 25px;
    padding: 0 10px;
}
div.home-about> section > div > a {
    padding: 20px 30px;
    border: solid 2px #c8aa64;
    border-radius: 6px;
}

div.home-about> section > div > a.h-request {
    background:  #c8aa64;
    color: #fff;
}


/*#endregion */


/*#region .introduction-grid */
.introduction-grid {
    display: grid;
    grid-template-columns:  4fr 3fr;
    gap: 32px;
    align-items: center;
    background: #f5f6fa;
    padding: 10px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin: 0px auto;
    direction: rtl;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}

.introduction-app {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    text-align: right;
}

.introduction-app h2 {
    color: #2d3e50;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.introduction-app p {
    color: #444;
    font-size: .9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.introduction-app button {
    background: #c8aa64;
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    border:solid 2px #c8aa64;
    display: inline-block;
}

.introduction-app a {
    border:solid 2px #c8aa64;
    color: #c8aa64;
    text-align: center;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;

    display: inline-block;
}



.introduction-app .btn:hover {
    color: #fff;
}


.mobile-form {
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    text-align: right;
    justify-items: stretch;
    width: 50%;
    display: grid;
    gap: 10px;
}

.mobile-form > div {
    display: grid;
    align-items: center;
    grid-template-columns: max-content max-content;

}

.mobile-form label {
    display: block;
    font-size: 1rem;
    color: #222;
    font-weight: 500;
}

.mobile-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 1.05rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    transition: border 0.2s;
    direction: ltr;
    text-align: left;
}

.mobile-form input[type="tel"]:focus {
    border-color: #007bff;
    outline: none;
}

.mobile-form input[type=tel]::placeholder {
    color: #88888888;
}

/*#endregion */

/*#region div.cat-services */
div.cat-services {
    background: #fff;
}

div.cat-services ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    text-align: center;
    padding: 0;
    margin: 0;
}

div.cat-services ul > li {
    position: relative;
    z-index: 1;
    padding: 35px 30px;
    text-align: center;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 500ms ease-out;
    display: grid;
    grid-template-rows: 175px 30px auto 30px;
    height: 350px;
    border-left: solid 1px #88888822;
}

div.cat-services ul > li > img {
    grid-row: 1;
    width: 150px;
    height: 150px;
    border: solid 1px rgb(215, 215, 215, 0.17);
    margin: 0 auto;
    align-content: center;
    padding: 10px;
    color: #635CDB;
}

div.cat-services ul > li:hover > img {
    background: #fff;
}

div.cat-services ul > li > h3 {
    grid-row: 2;
    font-size: 16px;
    font-weight: bold;
}

div.cat-services ul > li > p {
    grid-row: 3;
    font-size: 10px;
    width: 80%;
    margin: 0 auto;
    color: #999;
}

div.cat-services ul > li > a {
    grid-row: 4;
    margin: 0 auto;
}

div.cat-services ul > li > a::before {
    display: block;
    content: "بیشتر ...";
}


/*#endregion */

/*#region div.cat-calc */

div.cat-calc {
    display: grid;
    gap: 10px;
    background-image: url('../images/caculator.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    padding:40px 0;
}

div.cat-calc > h3 {
    text-align: center;
    font-size: 20px;
    color: #f5c818;
}

div.cat-calc > h2 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

div.cat-calc > h2:before {
    content: "";
    position: absolute;
    border-bottom: solid 4px #f5c91c;
    bottom: 0px;
    left: 40%;
    right: 40%;
}

div.cat-calc ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

div.cat-calc ul > li {
    display: grid;
    text-align: center;
}

div.cat-calc ul > li > h3 {
    color: #f5c91c;
    font-size: 85px;
}

div.cat-calc ul > li > h2 {
    color: #fff;
    font-size:22px
}



/*#endregion */

/*#region .swiper-stores  */

.swiper-stores > ul{
    list-style-type: none;
    margin:10px;
    padding:0;
}

.swiper-stores > ul > li{
    display: grid;
}

.swiper-stores > ul > li > a{
    display: grid;
    justify-content: center;
    grid-template-rows:  250px max-content;
    overflow: hidden;
    box-shadow: #888 1px 1px 5px;
    border-radius: 10px;
}

.swiper-stores > ul > li > a > h2{
    color: #2c2978;
    text-align: center;
    font-size: 20px;
}

.swiper-stores > ul > li > a > img {
    height: 90%;
    margin: 0 auto;
    display: block;
}

/*#endregion */

/*#region responsive */

/* Monitor */
@media (min-width: 768px) and (max-width: 992px) {
}

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {

}

/* Phone */
@media (max-width: 576px) {
    div.cat-about ul > li {
        gap:20px;
        grid-template-columns: 100%;
    }

    div.cat-about ul > li > img{
        width: 100%;
    }

    div.cat-about ul > li > div{
        gap: 5px;
    }

    div.cat-about ul > li > div > h2 {
        font-size: 18px;
    }

    div.cat-about ul > li > div > p {
        font-size: 12px;
        text-align: justify;
        margin: 0;
    }

    div.cat-services ul {
        grid-template-columns: 100%;
        gap: 5px;
    }

    div.cat-services ul > li {
        padding: 10px;
        text-align: center;
        grid-template-rows: 160px 30px max-content 30px;
        height: auto;
        border-left: none;
        border-bottom: solid 1px #88888855;
    }

    div.cat-services ul > li:last-child {
        border-bottom: none;
    }

    div.home-about {
        grid-template-columns: auto;
        padding: 0 10px;
    }

    div.home-about > section > div {
        grid-template-columns:   auto;
        gap: 15px;
        padding: 0;
    }

    div.home-about > section > div > a {
        text-align: center;
    }

    div.home-about > section{
        background-image: none;

    }

    .introduction-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px 8px;
    }

    .intro-image img {
        max-width: 100%;
    }

    .mobile-form {
        width: 100%;
    }

    .mobile-form > div {
        grid-template-columns: auto;
        gap: 10px
    }

    div.swiper-banner > ul > li > a > img {
        height: 100vw;
    }
}

/*#endregion */





