@charset "UTF-8";
/* CSS Document */

/*--------------------
Body
--------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  background: #DEDEDE;
  color: #5a6674;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}

/*--------------------
App
--------------------*/
.search-form {
  position: relative;
  top: 35%;
  left: 50%;
  width: 600px;
  height: 40px;
  border-radius: 40px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%);
  background: #fff;
  transition: all 0.3s ease;
}
.search-form.focus {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
}

.search-input {
  position: absolute;
  top: 10px;
  left: 38px;
  font-size: 14px;
  background: none;
  color: #5a6674;
  width: 75%;
  height: 20px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}

.search-button {
  position: absolute;
  top: 10px;
  left: 15px;
  height: 20px;
  width: 20px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  outline: none !important;
  cursor: pointer;
}
.search-button svg {
  width: 20px;
  height: 20px;
  fill: #5a6674;
}

.search-option {
  position: absolute;
  text-align: right;
  top: 10px;
  right: 15px;
}
.search-option div {
  position: relative;
  display: inline-block;
  margin: 0 1px;
  cursor: pointer;
}
.search-option div input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.01;
  cursor: pointer;
}
.search-option div span {
  position: absolute;
  display: block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background: #929AA3;
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 12px;
  top: -18px;
  transition: all 0.2s ease-in-out;
}
.search-option div span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 4px solid #929AA3;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: all 0.2s ease-in-out;
}
.search-option div:hover span {
  opacity: 1;
  top: -21px;
}
.search-option div label {
  display: block;
  cursor: pointer;
}
.search-option div svg {
  height: 20px;
  width: 20px;
  fill: #5a6674;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.search-option div:hover svg {
  opacity: 1;
}
.search-option div input:checked + label svg {
  fill: #e24040;
  opacity: 0.9;
}
.search-option div input:checked + label span {
  background: #e24040;
}
.search-option div input:checked + label span::after {
  border-top-color: #e24040;
}


.searchBox {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}
nav.main-nav {
  font-family: helvetica, arial, sans-serif;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: auto;
  left: 50%;
  margin-bottom: 20px;
  margin-top: -30px;
  transform: translateX(-50%);
}

nav.main-nav ul {
  list-style-type: none;
  margin: 0 auto;
  text-align: center;
}

nav.main-nav li {
  display: inline-block;
  float: left;
  margin: 0;
}

nav.main-nav li.active a {
  color: #e74c3c;
}

nav.main-nav li.active a:hover {
  color: #e74c3c;
}

nav.main-nav li a {
  border-bottom: 5px solid #eee;
  color: #aaa;
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

nav.main-nav li a:hover {
  border-bottom-color: #ccc;
  color: #888;
}

nav.main-nav .active-marker {
  background: #e74c3c;;
  bottom: 0;
  display: none;
  height: 5px;
  position: absolute;
  left: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.25, 1.25);
  width: auto;
}

@media only screen and (max-width: 600px) {
  .search-form {
    width: 100%;
  }

  .container #showResult {
    width: 100%;
  }

  .container {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
  }
}

#searchResult {
  display: none;
  background: white;
  position: absolute;
  left: 0px;
  width: 100%;
  top: 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 3px 3px #ccc, inset 0 0 15px #f4f4f4;
  border-top: 1px solid white;
}

#searchResult .table {
  margin-bottom: 5px;
}

#searchResult .table tr:hover {
  cursor: pointer;
  background: #f9f9f963;
}


.wrap {

  width: fit-content;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  top: 45%;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  cursor: pointer;
  height: 40px;

}

#showResult {
  margin: auto;
  width: 80%;
  padding: 10px;
  border-radius: 5px;
  display: none;
}

#showResult .card-body {
  padding: 20px;
  border: 1px solid #dbdbdb;
  background: white;
  border-radius: 5px;
  margin: 2px;
}

#showResult .card-body.min-padd {
  padding: 10px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin: 2px;
}

#showResult .card-body h1 {
  /*display: inline-block;*/
}

#showResult .card-body span {
  display: inline-block;
  text-align: center;
  padding-right: 10px;
  padding-top: 10px;

}

#showResult .card-body #FarsiWords span {
  width: unset;
  display: inline-block;
  text-align: center;
  padding-right: 5px;
  font-family: 'IRANSans';
}

#Samples ul {
  border-bottom: 1px solid #cccccc2e;
  margin: 0;
}

.farsi-sample {
  font-family: 'IRANSans';
  text-align: right;
  direction: rtl;
}

#showResult .card-body span h3 {
  text-decoration: none;
}

.list-group-item {
  border: none;
}

.faFont {
  font-family: 'IRANsans';
}

body {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                              supported by Chrome and Opera */
}

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

/* #Primary
================================================== */

/* body{
font-family: 'Poppins', sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #212112;
background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
background-position: center;
background-repeat: repeat;
background-size: 7%;
background-color: #fff;
overflow-x: hidden;
transition: all 200ms linear;
} */
::selection {
  color: #fff;
  background-color: #e74c3c
}

::-moz-selection {
  color: #fff;
  background-color: #e74c3c
}


/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 15px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(81, 81, 81, 0.15);
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
  height: 24px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(10%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  color: #212121 !important;
  font-weight: 500;
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #e74c3c !important;
}

.nav-item.active .nav-link {
  color: #e74c3c !important;
  border-bottom: 2px solid #e74c3c;
}

.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #e74c3c;
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

/* #Primary style
================================================== */

.bg-light {
  background-color: #fff !important;
  transition: all 200ms linear;
}

.full-height {
  height: 100vh;
}

.over-hide {
  overflow: hidden;
}

#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

#switch {
  width: 60px;
  height: 8px;
  border: 2px solid #e74c3c;
  border-radius: 27px;
  background: #000;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: translate(0);
  transition: all 300ms linear;
  transition-delay: 1900ms;
}

body.hero-anime #switch {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 1900ms;
}

#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}

.switched {
  border-color: #000 !important;
  background: #e74c3c !important;
}

.switched #circle {
  left: 43px;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: #fff;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgba(129, 103, 169, .6);
}

body.dark {
  color: #fff;
  background-color: #1f2029;
}

body.dark .navbar-brand img {
  filter: brightness(100%);
}

body.dark h1 {
  color: #fff;
}

body.dark h1 span {
  transition-delay: 0ms !important;
}

body.dark p {
  color: #fff;
  transition-delay: 0ms !important;
}

body.dark .bg-light {
  background-color: #14151a !important;
}

body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

body.dark .nav-link {
  color: #fff !important;
}

body.dark .nav-item.active .nav-link {
  color: #999 !important;
}

body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
  color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
  background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}



/* #Media
================================================== */

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }

  .nav-item:after {
    display: none;
  }

  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #d7d7d7;
    vertical-align: 0;
    margin-left: 4px;
  }

  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
    transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }

  .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  body.dark .nav-item::before {
    background-color: #fff;
  }

  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }

  body.dark .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
  .nav-item  li {
    text-align: center;
  }
}

/* #Link to page
================================================== */

.logo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: block;
  z-index: 100;
  transition: all 250ms linear;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(10%);
  transition: all 250ms linear;
}

body.dark .logo img {
  filter: brightness(100%);
}
.close {
  color: #ccc;
  transition:0.5s all;
}
.close:hover{
  color: #aaa;
}
.modal {
  padding-right: 0px !important;
}

/* Contact Us */

.md-form {
  position: relative;
}
.md-form, .md-form .btn {
  margin-bottom: 1.5rem;
}
.md-form .prefix {
  -webkit-transition: color .2s;
  transition: color .2s;
  position: absolute;
  width: 3rem;
  font-size: 2rem;
}
.grey-text {
  color: #9e9e9e !important;
}
.md-form .prefix ~ input {
  width: 86%;
  width: -webkit-calc(100% - 3rem);
  width: calc(100% - 3rem);
}
.md-form .prefix ~ input, .md-form .prefix ~ textarea {
  margin-left: 3rem;
  width: 92%;
  width: -webkit-calc(100% - 3rem);
  width: calc(100% - 3rem);
}
.md-form input[type="date"],
.md-form input[type="datetime-local"], 
.md-form input[type="email"], 
.md-form input[type="number"], 
.md-form input[type="password"], 
.md-form input[type="search-md"], 
.md-form input[type="search"], 
.md-form input[type="tel"], 
.md-form input[type="text"], 
.md-form input[type="time"], 
.md-form input[type="url"], 
.md-form textarea.md-textarea {
  background-color: transparent;
  border: none;
      border-bottom-color: currentcolor;
      border-bottom-style: none;
      border-bottom-width: medium;
      border-bottom: 1px solid #bdbdbd;
      border-radius: 0;
      outline: 0;
      height: 2.1rem;
      width: 100%;
      font-size: 1rem;
      -webkit-box-shadow: none;
      box-shadow: none;
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      -webkit-transition: all .3s;
      transition: all .3s;
}
.form-control {
  padding: .5rem 0 .6rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  margin-top: .2rem;
  margin-bottom: 1rem;
}
.md-form .prefix ~ label {
  margin-left: 3rem;
}
.md-form label {
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  color: #757575;
  position: absolute;
  top: .8rem;
  left: 0;
  font-size: 1rem;
  cursor: text;
}
.md-form .prefix ~ input, .md-form .prefix ~ textarea {
  margin-left: 3rem;
  width: 92%;
  width: -webkit-calc(100% - 3rem);
  width: calc(100% - 3rem);
}
.md-form input[type="date"]:focus:not([readonly]), 
.md-form input[type="datetime-local"]:focus:not([readonly]), 
.md-form input[type="email"]:focus:not([readonly]), 
.md-form input[type="number"]:focus:not([readonly]), 
.md-form input[type="password"]:focus:not([readonly]), 
.md-form input[type="search-md"]:focus:not([readonly]), 
.md-form input[type="search"]:focus:not([readonly]), 
.md-form input[type="tel"]:focus:not([readonly]), 
.md-form input[type="text"]:focus:not([readonly]), 
.md-form input[type="time"]:focus:not([readonly]), 
.md-form input[type="url"]:focus:not([readonly]), 
.md-form textarea.md-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #e24040;
  -webkit-box-shadow: 0 1px 0 0 #e24040;
  box-shadow: 0 1px 0 0 #e24040;
}
.wrap {
  width: fit-content;
  border-radius: 10px !important;
  padding: 10px !important;
  position: relative !important;
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%,-50%) !important;
  transition: 0.3s !important;
  cursor: pointer !important;
  z-index: 999999 !important;
}
.indexAlert{
  color: #888 !important;
}
.btnSend{
  margin: auto;
  background: #FFF;
  color: #919191;
  border: 1px solid #c8c8c8;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  transition: 0.5s all;
  cursor: pointer;
}
.btnSend:hover{
  border: 1px solid #eea3a3;
}
.card{
  background: none !important;
  border: none !important;
  z-index: -1;
}

#FarsiWords{
  text-align: right;
}
