*{
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
}
@font-face{
    font-family: 'Vazir';
    font-display: block;
    src: url('fonts/Vazir-Medium-FD.woff') format('woff');
}
@font-face {
    font-family: Estedad-Black;
    font-display: block;
    src: url('fonts/Estedad/ttf/Estedad-Black.ttf');
}
@font-face {
    font-family: Estedad-Bold;
    font-display: block;
    src: url('fonts/Estedad/ttf/Estedad-Bold.ttf');
}
@font-face {
    font-family: Estedad-Medium;
    font-display: block;
    src: url('fonts/Estedad/ttf/Estedad-Medium.ttf');
}
html, body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
body{
    background: #fff;
    font-family: "Vazir", sans-serif;
    font-size: 15px;
    direction: rtl;
    -ms-overflow-style: none;  /* IE and Edge */
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
a, a:hover, a:focus, a:active{
    text-decoration: none;
}
.hero-inner{
    max-width: 100vw;
}
.hero-inner img{
    display: block;
    width: 100%;
    margin: auto;
    max-width: 675px;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-inner img{
        width: 80%;
    }
}
@media (min-width: 1024px) {
    .hero-inner img{
        width: 36%;
    }
}
.p-conn{
    font-family: Estedad-Medium, sans-serif;
    width: 180px;
    color: #212121;
    border-top: 1px solid #494949;
    margin: 35px auto 0;
    text-align: center;
    padding: 10px 0 0 0;
    font-weight: 600;
}
.fa-sort-down{
    display: block;
    width: 30px;
    margin: auto;
    font-size: 25px;
    text-align: center;
}
.social-inner{
    margin-top: 25px;
    padding: 1rem 0;
    background: #f1f1f1;
}
.inner-box {
    min-height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    margin: 15px 0;
    padding: 0 15px;
    color: #333;
}
.shadow-1 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.shadow-1:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)
}
.inner-box img{
    margin: 15px;
    width: 45px;
    height: auto;
}
.heading{
    color: #494949;
    font-family: Estedad-Black, sans-serif;
}
.inner-box h4{
    color: #494949;
    font-family: Estedad-Bold, sans-serif;
}
.contact-inner {
    padding: 5rem 0;
    background: #fff;
}
.validate-input {
    position: relative;
}
.wrap-input100 {
    width: 400px;
    max-width: calc(100% - 10px);
    position: relative;
    background-color: #e6e6e6;
    border: 0 solid transparent;
    border-radius: 5px;
    margin: 28px auto;
}
.input100 {
    display: block;
    width: 100%;
    background: transparent;
}
input.input100, textarea.input100 {
    height: 100%;
    padding: 12px 20px;
    direction: rtl;
}
.how-btn {
    padding: 8px 20px;
    background-color: #00b7bf;
    border-radius: 5px;
    color: #fff;
    display: block;
    margin: auto;
}
.how-btn:hover{
    background-color: #dcbd7d;
}
.footer-dark{
    color: #fff;
}
.bg-teal{
    background: #00b7bf;
}
/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    background: #fff;
    max-width: 80%;
    border-radius: 2px;
    padding: 4px 10px 4px 10px;
    top: 100%;
    right: 2px;
    pointer-events: none;
    font-family: Estedad-Black, serif;
    color: #c80000;
    font-size: 10px;
    line-height: 1.4;
    text-align: right;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f071";
    font-family: FontAwesome, serif;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 18px;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}
