@font-face {
    font-family: 'vazir';
    src: url(../fonts/Vazir-Medium-FD-WOL.woff) format(woff);
}

* {
    font-family: 'vazir';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

li {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}


/* =============== Btns */
#logobx{
    width: 80px;
    height: 80px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

#logobx video{
    position: absolute;
    width: 100%;
    height: 100%;
}

.Btns {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px 0;
}

.Btns button {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    width: 200px;
    height: 50px;
    border: 2px solid rgb(255, 255, 255);
    padding: 8px;
    border-radius: 15px;
}

.Btns button h1 {
    font-size: 20px;
    font-weight: normal;
    padding: 0 10px;
    color: #fff;
}


.Btns button i {
    font-size: 22px;
}


.btn-grad {
    background-image: linear-gradient(to right, #360033 0%, #0b8793 51%, #360033 100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    color: rgb(204, 190, 255);
    text-decoration: none;
}

.btn-grad:hover h1 {
    background-position: right center;
    color: rgb(204, 190, 255);
    text-decoration: none;
}

.Btns button.active {
    color: rgb(0, 247, 124);
}

.Btns button.active h1 {
    color: rgb(0, 247, 124);
}

/* ==== Massage */
.Massage {
    background-image: linear-gradient(to right, #0b8793 25%, #925992 50%, #0b8793 75%);
    color: #fff;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    transition: all 1s ease-in-out;
    animation: Auto_massage 3s infinite ease-in-out;
}

.Massage h6 {
    padding-top: 10px;
    line-height: 30px;
}

.btn-gradiant {
    background-image: linear-gradient(to right, #4fc9d4 0%, #440941 100%);
    text-align: center;
    padding: 0 6px ;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    border-radius: 10px;
    border: none;
    outline: none;
}
.Massage h6 i {
    color: #003455;
    transition: all .3s ease-in-out;
}
.Massage h6 a {
    color: #003455;
    margin-left: 5px;
    transition: all .3s ease-in-out;
}

.btn-gradiant:hover {
    background-position: right center;
    color: rgb(204, 190, 255);
    text-decoration: none;
}

.btn-gradiant:hover i,.btn-gradiant:hover a{
    color: #fff;
}



@keyframes Auto_massage {
    0%{
        transform: scale(1);
        background-position: center center;
        background-size: 100%;
    }
    50%{
        transform: scale(1.07);
        background-position: center center;
        background-size: 500%;
    }
    100%{
        transform: scale(1);
        background-position: center center;
        background-size: 100%;
    }
}

/* ==== content */

.content {
    position: relative;
    display: none;
}

.content.active {
    display: block;
}

.content img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    width: 800px;
    height: 500px;
    filter: opacity(.2);
    position: absolute;
    right: 35%;
    /* transform: translate(80%); */
}

.content_box {
    position: absolute;
    top: 50px;
}

.content_box h2 {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
}

.content_box span {
    display: block;
    line-height: 40px;
    font-size: 14px;
}

.content_box label {
    display: block;
    line-height: 40px;
    font-size: 14px;
}
.textArea {
    margin-top: 40px;
    display: block;
    min-width: 600px;
    min-height: 100px;
    max-width: 600px;
    max-height: 100px;
    position: relative;
    border-radius: 15px;
    padding: 20px;
    font-size: 18px;
}

.textArea::placeholder {
    padding-top: 5px;
}

.button {
    border: none;
    outline: none;
}

.result {
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.hidden-text {
	float: right;
	width: 100%;
	font-family: 'vazir';
	font-size: 15px;
	word-wrap: break-word;
	display: none;
}
			
.figure {
	font-family: 'vazir';
	font-size: 11px;
}

.image {
	cursor: pointer;
}




/*========== Media Screen Responsive */

@media (min-width: 576px) and (max-width: 991.98px) { 
    .Btns {
        width: 100%;
        margin: 10px 0;
        justify-content: space-between;
    }
    .Btns button {
        display: inline;
        width: 95px;
        height: 65px;
    }

    .Btns button h1{
        display: none;
    }
    .Btns button i{
        font-size: 22px;
    }

    .content img {
        width: 100%;
        right: 50%;
        transform: translate(50%);
    }

    #logobx{
        width: 50px;
        height: 50px;
    }

    .textArea{
        min-width: 120px;
    }

    .content_box label {
        text-align: justify;

    }

}

@media (max-width: 576px) { 
    .Btns {
        width: 100%;
        margin: 10px 0;
        justify-content: space-between;
    }
    .Btns button {
        display: inline;
        width: 65px;
        height: 55px;
    }

    .Btns button h1{
        display: none;
    }
    .Btns button i{
        font-size: 18px;
    }

    .content img {
        width: 100%;
        right: 50%;
        transform: translate(50%);
    }

    #logobx{
        width: 50px;
        height: 50px;
    }

    .textArea{
        min-width: 120px;
    }

    .content_box label {
        text-align: justify;

    }
 }