﻿:root {
    --font-main: Vazir-Regular-FD;
    --font-english: kodchasan-bold;
    --font-size-s: 10pt;
    --font-size-n: 12pt;
    --font-size-l: 14pt;
    --font-size-xl: 16pt;
    --color-blue: #2973B2;
    --color-blue-dark: #4635B1;
    --color-red: #CC0000;
    --color-red-light: #FFE4C9;
    --color-green: #59ad8d;
    --color-green-light: #BFF6C3;
    --border-radius: 8px;
    --border-radius-control: 4px;
}


@font-face {
    font-family: 'kodchasan-bold';
    src: url('font/kodchasan-bold.woff') format('woff');
}

@font-face {
    font-family: 'Vazir-Regular-FD';
    src: url('font/Vazir-Regular-FD.woff') format('woff');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-n);
    margin: 0px;
    padding: 0px;
    direction: rtl;
}

img{
    max-width:100%;
}



.center
{
    text-align:center;
}


.left {
    text-align: left !important;
}

.ltr
{
    direction:ltr;
}

.en
{
    font-family:var(--font-english) !important;
}

.text
{
    line-height:200%;
    text-align:justify;
}

.white{
    color:#fff !important;
}

 a.btn {
    background-color: var(--color-green);
    color: #FFF !important;
    display: inline-block;
    height: 48px;
    line-height: 44px;
    border-radius: 24px;
    padding: 0px 20px;
}


a.btn:hover {
    background-color: var(--color-green) !important;
    color: #000 !important;
}



header
{
    position: fixed;
    top: 24px;
    left:0px;
    right:0px;
    z-index: 500;
}

   

    header .desktop  {
        background-color: #fff;
        height: 80px;
        border-radius: 32px;
        padding: 16px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header .desktop img {
            height: 48px;
        }
        header .desktop a {
            color :#000;
            font-weight:bold;
            text-decoration:none;
        }


    header .mobile {
        background-color: #fff;
        height: 60px;
        border-radius: 32px;
        padding: 10px 12px;
    }
    header .mobile a.btn {
        float:left;
        height:40px;
        line-height:36px;
        padding:0px 10px;
    }

        header .mobile .fa {
            margin:10px;
        }


        header .mobile img {
            height: 40px;
            vertical-align: middle;
        }


        .mobile-menu-box {
            background-color:#fff;
            position:fixed;
            top:0px;
            left:0px;
            right:0px;
            bottom:0px;
            z-index:550;
            padding:20px;
            transform:translateX(100%);
            transition-duration:0.5s;
        }

.mobile-menu-box a{
    font-weight:bold;
    color:#000;
    text-decoration:none;
    line-height:250%;
}





footer {
    border-top: 2px solid #59AD8D;
    padding: 45px 0px;
}


.loading-bg{
    position:fixed;
    top:0px; left:0px; right:0px; bottom:0px;
    background-color:rgba(255,255,255,0.5);
    z-index:1200 !important;
    display:flex;
    align-items:center;
    justify-content:center;
    display:none;
}

    .loading-bg div {
        background-color: #fff;
        padding:20px;
        border-radius:16px;
        box-shadow:0px 0px 10px #888;
    }




.page-title {
    width: 100%;
    padding-top: 56.25%; /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
    background-size: cover;
    background-position: center;
    background-color: #1d1d1d;
}
.page-title-small {
    padding-top: 25%; /* 1:1 Aspect Ratio */
}
    .page-title .text {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: center;
        background-color:rgba(0,0,0,.80);
    }

@media(max-width:900px)
{
    .page-title {
        width: 100%;
        height:50vh;
        padding-top: 0%; /* 1:1 Aspect Ratio */
    }
}









.default-top {
    width: 100%;
    padding-top: 56.25%; /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
    background-image: url('/../static/img/default-bg.png');
    background-size: cover;
}


    .default-top .text {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    @media(max-width:900px)
    {
        .default-top {
            width: 100%;
            height:100vh;
            padding-top: 0; /* 1:1 Aspect Ratio */
            position: relative; /* If you want text inside of it */
            background-image: url('/../static/img/default-bg.png');
            background-size: cover;
        }
    }


 

.default-introduction
{
    padding:120px 0px;
}



.default-slogan-bg {
    background-size: cover;
    background-position: center center;
    background-image: url('/../static/img/slogan-bg.jpg');
}


.default-slogan-text {
    padding: 120px 0px;
    background-color:rgba(0,0,0,0.75);
    color:#fff;
}


.default-video
{
    padding:100px 0px;

}


.default-feature {
    background-color: #131E23;
    padding: 120px 0px;
    color:#fff;
}

    .default-feature .features
    {
        display:flex;
       justify-content:space-around;
    }


    .default-feature .features div{
        text-align:center;
        margin-left:10px;
        width:20%;
    }


@media(max-width:900px) 
{
    .default-feature .features {
        flex-wrap:wrap;
    }
    .default-feature .features div {
        text-align: center;
        margin-left: 10px;
        margin-bottom:10px;
        width: calc(50% - 10px);
    }
}



.default-product {
    padding:120px 0px;
}

.default-product label {
    font-weight:bold;
}

    .default-product label:after {
        content: " : ";
    }

    .default-product .color-icon {
        display: inline-block;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        background-color: #000;
        vertical-align: middle;
        margin:0px 10px;
    }

.default-mission {
    padding: 120px 0px;
    background-color: #131E23;
    color :#FFF;

}


.default-mission .box
{
    border:2px solid #fff;
    border-radius:20px;
    padding:20px;
    margin:20px;
}

.default-contact
{
    padding:120px 0px;
}


.product-section {
    padding: 30px;
    margin: 30px;
    background-color: #DDD;
    display: flex;
    align-items: center;
    border-radius: 16px;
}

.product-section-row-reverse {
    flex-direction: row-reverse;
}

        .product-section div:first-child
         {
            margin-left: 30px;
            width: 20%;
        }

.product-section-row-reverse div:first-child {
    margin-left: 0px;
    margin-right:30px;
    width: 20%;
}

        .product-section div:last-child
         {
            width: calc(80% - 30px);
            line-height: 225%;
            text-align: justify;
        }

.product-section img
{
    border-radius:16px;
}



@media(max-width:900px)
{
    .product-section
    {
        flex-direction:column;
    }
        .product-section div:first-child {
            margin: 0px;
            margin-bottom:20px;
            width: 100%;
        }

        .product-section div:last-child {
            width: 100% ;
            line-height: 200%;
            text-align: justify;
        }
}



.tbl-box{
    width:100%;
    overflow:auto;
}


.tbl-product {
    width: 100%;
    border-collapse: unset !important;
}

.tbl-product tr:first-child td{
    background-color:var(--color-green);
    color:#FFF;
    padding:5px;
    border-radius:4px;
    text-align:center;
}

    .tbl-product tr td {
        border: 1px solid var(--color-green);
        padding: 5px;
        border-radius: 4px;
        text-align: center;
    }


.form{
    background-color: #EEE;
    margin:20px 0px;
    padding:30px;
    border-radius:10px;
}


    .form h2 {
        font-weight: bold;
        font-size: var(--font-size-l);
        line-height:200%;
    }

.form h3
{
    font-weight:bold;
    display:block;
    font-size:var(--font-size-n);
    margin:0px;
    margin-right:10px;
}

    .form h3.rf:before {
        content:" * ";
        color:#CC0000;
    }

    .form h3:after {
        content : " : ";
    }

    .form .btn-box{
        text-align:center;
        padding-top:20px;
    }

    .form input[type='text'],
    .form textarea,
    .form select {
        width: 100%;
        border: 1px solid var(--color-green);
        border-radius: 4px;
        margin: 5px 0px;
        margin-bottom: 10px;
        padding: 5px;
        outline: none;
    }

    .form textarea {
        height: 180px;
        line-height: 30px;
    }
    .form input[type='button'],
    .form input[type='submit'] {
        border: none;
        border-radius: 20px;
        background-color: var(--color-green);
        color: #fff;
        height: 40px;
        padding: 0px 30px;
    }


    .form label {
        font-weight: bold;
        font-size: var(--font-size-n);
        display:inline-block;
        margin: 10px;
        margin-top: 0px;
    }

    .msg-error{
        color:#cc0000;
    }




.content-item{
    border-radius:var(--border-radius);
    padding:10px;
}

.content-item a {
    color:#1d1d1d;
    text-decoration:none;
}


.content-item .image-box {
    width: 100%;
    padding-top: 56.25%; /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
}

    .content-item .image-box img {
        border-radius: var(--border-radius);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .content-page img {
        border-radius: var(--border-radius);
    }

.content-page h1 {
    font-size:2rem;
}