* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    font-family: yekan;
    font-size: 15px;
}

@media screen and (max-width: 992px) {

    * {
        font-size: 12px;
    }

}

body {
    direction: rtl;
    overflow-x: hidden;
}

@font-face {
    font-family: yekan;
    src: url(../fonts/yekan.woff);
}

.container {
    width: 100%;
}

.row:after {
    content: "";
    display: block;
    clear: both;
}

.form-group {
    width: 100%;
    float: right;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.form-group-double {
    width: 50%;
    float: right;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.form-group-triple {
    width: 33.3333%;
    float: right;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.form-group-quadruple {
    width: 25%;
    float: right;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.form-group-sextuple {
    width: 16.666666%;
    float: right;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

@media screen and (max-width: 992px) {

    .form-group-quadruple {
        width: 50%;
    }

}

@media screen and (max-width: 768px) {

    .form-group-double, .form-group-triple, .form-group-quadruple {
        width: 100%;
    }

}

/*page-bg*/

.page-bg {
    position: fixed;
    top: 0;
    z-index: -1;
    background: linear-gradient(to left, #343158, #da7409, #9c9080);
    background-size: 600%;
    animation-name: page-bg;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/*intro-menu*/

.intro-menu {
    width: 100%;
    height: 90px;
}

.intro-menu ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
}

.intro-menu ul li {
    width: 120px;
    margin: 0 10px;
    background-color: #7f4609;
    border-radius: 0 0 10px 10px;
    transition: 0.5s;
    cursor: pointer;
}

.intro-menu ul li:hover {
    background-color: #fdad56;
}

.intro-menu ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    color: #ffffff;
    transition: 0.5s;
}

.intro-menu ul li:nth-of-type(1) {
    height: 80px;
}

.intro-menu ul li:nth-of-type(1) a {
    margin-top: 40px;
}

.intro-menu ul li:nth-of-type(2) {
    height: 60px;
}

.intro-menu ul li:nth-of-type(2) a {
    margin-top: 20px;
}

.intro-menu ul li:nth-of-type(3) {
    height: 80px;
}

.intro-menu ul li:nth-of-type(3) a {
    margin-top: 40px
}

.intro-menu ul li:nth-of-type(4) {
    height: 100px;
}

.intro-menu ul li:nth-of-type(4) a {
    margin-top: 60px;
}

@media screen and (max-width: 992px) {

    .intro-menu ul li a {
        white-space: nowrap;
        transform: rotate(90deg);
        word-spacing: 3px;
    }

    .intro-menu ul li:nth-of-type(1) a {
        margin-top: 25px;
    }

    .intro-menu ul li:nth-of-type(2) a {
        margin-top: 15px;
    }

    .intro-menu ul li:nth-of-type(3) a {
        margin-top: 25px;
    }

    .intro-menu ul li:nth-of-type(4) a {
        margin-top: 35px;
    }

}

/*intro-introduction*/

.intro-introduction {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 150px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.intro-introduction .wrapper img {
    width: 256px;
    height: 256px;
    position: absolute;
    right: 130px;
    animation-name: introduction-img;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    transition: 0.5s;
}

@keyframes introduction-img {

    from {
        right: -999px;
    }

    to {
        right: 130px;
    }

}

.intro-introduction h1 {
    font-size: 44px;
    margin-top: 15px;
    color: #ffffff;
    margin-right: 260px;
}

.intro-introduction p {
  font-size: 33px;
  margin-top: 25px;
    color: #ffffff;
    margin-right: 260px;
}

@media screen and (max-width: 992px) {

    .intro-introduction .wrapper {
        width: 100%;
        height: 256px;
    }

    .intro-introduction .wrapper img {
        top: 10px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    @keyframes introduction-img {

        from {
            top: -999px;
        }

        to {
            top: 10px;
        }

    }

    .intro-introduction {
        padding: 20px 30px;
    }

    .intro-introduction h1 {
        width: 100%;
        font-size: 25px;
        margin: 0;
        text-align: center;
    }

    .intro-introduction p {
        margin-right: 0;
        text-align: center;
    }

}

/*intro-options*/

.intro-options {
    width: 100%;
    height: 180px;
    margin-top: 80px;
    position: relative;
}

.intro-options ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    position: absolute;
    animation-name: options;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

@keyframes options {

    from {
        left: -999px;
    }

    to {
        left: 0px;
    }

}

.intro-options ul li {
    width: 15%;
    margin: 0 10px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}

.intro-options ul li .wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    background-color: #7f4609;
    border-radius: 10px;
}

.intro-options ul li .wrapper a {
    width: 50px;
    height: 50px;
    align-self: center;
    transition: 0.5s;
}

.intro-options ul li .wrapper:hover a {
    width: 70px;
    height: 70px;
}

.intro-options ul li .wrapper a img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 992px) {

    .intro-options ul li {
        width: 100%; 
    }

}

/*intro-services*/

.intro-services {
    width: 100%;
}

.intro-services header {
    margin: 10px 0;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
}

.intro-services ul {
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    padding: 0 150px;
}

.intro-services ul li {
    display: block;
    color: #ffffff;
    margin: 5px 0;
    vertical-align: middle;
}

.intro-services ul li img {
    float: right;
    width: 15px;
    margin: 7px;
}

@media screen and (max-width: 992px) {
    
    .intro-services ul {
        padding: 10px;
    }
    
} 

/*confirmation*/

.confirmation {
    width: 80%;
    margin: 20px auto;
    border: 3px solid #fdab56;
    border-radius: 10px;
    padding: 10px 0;
    text-align: center;
    font-size: 20px;
    color: #000000;
    background-color: #ffffff;
}

.footer {
height: 40px;
line-height: 40px;
font-size: 12px;
background: #212121;
color: #ffffff;
text-align: center;
}
