
:root {
    --base-color-0: #00CDCD;
    --base-color-1: #FF9B9A;
    --base-color-2: #FFF5F5;
    --base-color-3: #00CDCD;
    --base-color-4: #FCF3E2;
    --base-color-5: #AAEEB1;
    --base-color-6: #151823;
    --base-color-7: #7C5DFA;
    --base-color-8: #aaaadc;
    --border-radius: 10px;
    --kaveh-base-font-family: IRANSansX,Tahoma,Arial;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.no-scroll {
    overflow: hidden;
    height: 100%;
}

.container {
    max-width: 1200px;
}

.row {
    clear: both
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 27px;
    direction: rtl;
}

body {
    font-family: IRANSansX;
}

#app {
    width: 100%;
    height: 100%;
    float: left;
}


.header-pages {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .header-pages img {
        max-width: 150px;
    }
/*////////////*/
h2 {
    display: inline-block;
    padding-bottom: 10px;
    background: linear-gradient(to left,#fff, #fff), linear-gradient(to left, var(--base-color-1), var(--base-color-2), var(--base-color-3));
    background-size: 100% 0.1em, 0 0.1em;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
    position: relative;
}

    h2:hover {
        background-size: 0 0.1em, 100% 0.1em;
    }

/*/////////////*/
.btn-default {
    width: 200px;
    transition: all .5s;
    position: relative
}
.btn-models {
    width: 100%;
}
.btn-models,
.btn-default {
    height: 50px;
    background-color: var(--base-color-0);
    border-radius: 30px;
    border: none;
    color: #fff;
    text-align: center;
   
}

.btn-default:hover {
    border: 1px solid var(--base-color-1);
    background-color: #fff;
    color: var(--base-color-1);
}

.btn-price {
    width: 200px;
    height: 50px;
    background-color: #fff;
    border-radius: 30px;
    border: none;
    color: var(--base-color-0);
    border: 2px solid var(--base-color-0);
}

.btn-video {
    width: 200px;
    height: 50px;
    border: 1px solid var(--base-color-0);
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition:all .5s;
}
    .btn-video:hover {
        background-color: var(--base-color-0);
        color: #fff;
    }
     
        .btn-video i {
            font-size: 25px;
            color: var(--base-color-0);
        }
    .btn-video:hover i {
        color: #fff
    }
@media (max-width: 600px) {
    h2 {
        background: unset;
    }
}