@charset "UTF-8";
@font-face {
  font-family: "Yekan";
  src: url("../fonts/BYekanWeb.eot?#") format("eot"), url("../fonts/BYekanWeb.woff") format("woff"),
    url("../fonts/BYekanWeb.ttf") format("truetype"), url("Yekan.woff2") format("woff2");
  /* Saf3—5, Chrome4+, FF3.5, Opera 10+ */
  font-style: normal;
}
/* background and font */
body {
  background: url("../images/smr10_0006_Layer-1.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Yekan";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  
}

p,
h1,
h2,
h4,
button,
::placeholder {
  font-family: "Yekan";
}

p {
  text-align: justify;
  color: white;
  font-size: 13px;
}

h2,
h4,
h1 {
  color: white;
}

h2 {
  font-weight: bold;
}

ul {
  list-style: none;
}

/**
 * 2. Header
 */
/*.ms-header {*/
/*  width: 90%;*/
/*  z-index: 3;*/
/*  margin: 20px auto 0 auto;*/
/*}*/
.navbar-smarten ul li a {
 color : #a2825e; 
}
/* 2.1 Menu */
.ms-logo {
  position: absolute;
  z-index: 7;
  height: 50px;
}
.ms-logo-mobile {
  display: none;
  width: 6.25em;
  height: 3.125em;
  position: absolute;
  top: 0em;
  right: 0.5em;
}
.logo-dark,
.logo-light {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}

.ms-logo img {
  width: 100px;
  height: 30px;
  margin-right: 10px;
}

.logo-dark.current,
.logo-light.current {
  opacity: 1;
}
.logo-dark.active,
.logo-light.active {
  opacity: 1;
  transition: opacity 0.1s;
}
.ms-nav {
  min-height: 50px;
  color: inherit;
  display: flex;
  /*justify-content: space-between;*/
}

/* Error LandScalpe */
.land {
  width: 100%;
  height: 100vh;
  background-color: #a2825e;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
.land h3 {
  color: white;
}
.land-img {
  width: 60px;
  height: 60px;
  filter: invert(100%) sepia(96%) saturate(0%) hue-rotate(85deg) brightness(105%) contrast(104%);
}

/* Navbar Desktop */
.navbar-smarten {
  padding: 0rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  width: 60%;
  margin-right: auto;
}
.navbar-smarten ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0.2em;
}
.navbar-smarten ul li {
  position: relative;
}
.navbar-smarten ul li a {
  text-decoration: none;
  color : #a2825e;
}
.navbar-smarten ul li:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 150%;
  height: 2px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 1) 32%,
    rgba(255, 255, 255, 1) 63%,
    transparent 100%
  );
}
.navbar-smarten ul .navbar-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 150%;
  height: 2px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 1) 32%,
    rgba(255, 255, 255, 1) 63%,
    transparent 100%
  );
}
.navbar-smarten ul .navbar-item .navbar-link span {
  color: #a2825e;
  font-size: 1.2em;
}

/* 2.2 Burger button */
.hamburger {
  display: none;
  margin-right: auto;
  margin-left: 0;
  overflow: visible;
  cursor: pointer;
  z-index: 7;
  border: 0;
  transition-timing-function: linear;
  transition-duration: 0.3s ease;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
}
.navbar-white .hamburger-label {
  color: #fff;
}

.hamburger-label {
  display: block;
  font-family: "Yantramanav", Arial;
  font-size: 16px;
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: -4em;
  padding-right: 4em;
  text-transform: uppercase;
  line-height: 1.5em;
  transition: color 0.3s ease 0.4s;
  color: #151515;
}

.hamburger.is-active .hamburger-label {
  color: #fff !important;
  transition: color 0.1s ease;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
}

.hamburger-inner {
  display: block;
  top: 0;
}

.navbar-white .hamburger-inner,
.navbar-white .hamburger-inner:after,
.navbar-white .hamburger-inner:before {
  background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #151515;
  transition: all 0.3s ease 0.5s;
}

.hamburger-inner:before {
  top: 8px;
  left: -8px;
}

.hamburger-inner:after {
  top: 16px;
  width: 26px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after {
  background-color: #fff;
  transition-delay: 0.1s;
}

.hamburger.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger.is-active .hamburger-inner:before {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.hamburger.is-active .hamburger-inner:after {
  width: 30px;
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/* 2.3 Collapse navigation */
.ms-nav {
  display: flex;
  align-items: center;
}

.height-full-viewport {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #151515;
  z-index: 5;
  overflow: hidden;
  transition: height 0.8s cubic-bezier(0.3, 1, 0.3, 1) 0.1s;
}

.ms-navbar {
  z-index: 6;
  margin: 0 auto;
  display: block;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.ms-navbar a {
  font-size: 1.75em;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align : center;
}

.ms-nav.is-visible .height-full-viewport {
  height: 100vh;
  transition: height 1s ease;
}

.nav-item {
  cursor: pointer;
  padding: 0.75em;
  opacity: 0;
  width: 240px;
  margin-left: 3em;
  transition: opacity 0.3s ease;
}

.ms-navbar a {
  display: block;
}

.ms-navbar .ms-btn {
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 0.25em;
  position: relative;
}

.ms-navbar .ms-btn {
  font-size: 1.75em;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ms-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #df1f29;
  height: 0.1rem;
  top: 50%;
  width: 0;
  transition: width 0.3s ease;
}

.nav-item__label {
  position: relative;
  display: block;
  margin: 0.5em 0 0 0;
  margin-top: 0.25em;
  padding: 0.5em;
  color: #555;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-item:hover .nav-item__label {
  color: #9a9a9a;
}

.is-visible .nav-item {
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) 0.3s;
}

.nav-item .ms-btn {
  transition: all 0.3s ease;
}

.nav-item:active .ms-btn,
.nav-item:focus .ms-btn,
.nav-item:hover .ms-btn {
  color: #df1f29;
  opacity: 1;
  padding-left: 2.4rem;
}

.nav-item:active .ms-btn::before,
.nav-item:focus .ms-btn::before,
.nav-item:hover .ms-btn::before {
  width: 2rem;
}

.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

.numbers {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.numbers .number {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.numbers .number .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-right: -10px;
}
.numbers .number .description .title-number {
  margin: 10px;
  width: 40%;
}
.numbers .number .image-number img {
  width: 180px;
  height: 180px;
}
.numbers .number.number-ltr {
  margin-right: auto;
  padding: 0 8% 0 0;
}
.numbers .number.number-rtl {
  padding: 0 0 0 8%;
}

.video-smarten {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.smarten-luc {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  background-image: url("../media/smr10_0001_Layer-2.png");
  background-position: center;
  background-size: 50% 100%;
  background-repeat: no-repeat;
}


footer {
  margin: 50px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .container .left {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
footer .container .left .form-footer {
  width: 90%;
  height: 60px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #a27f55;
}
footer .container .left .form-footer .in-footer {
  width: 70%;
  height: 80%;
  border-radius: 40px;
  border: none;
  background-color: #d7b47e;
  color: #9b764a;
  padding: 0 10px;
  font-size: 20px;
}
footer .container .left .form-footer .in-footer::placeholder {
  color: #9b764a;
  font-size: 1rem;
}
footer .container .left .form-footer .in-footer:focus {
  border: none;
  outline: none;
}
footer .container .left .form-footer .dddd {
  width: 30%;
  height: 80%;
  display: flex;
  justify-content: center;
}
.ginput_container{
  margin-left:5px;
  }
footer .container .left .form-footer div .btn-footer {
  padding: 3px 15px;
  border-radius: 40px;
  border: none;
  padding: 0 20px;
  color: #fff;
  background-color: #5c3514;
  font-family: "Yekan";
  font-size: 20px;
}
footer .container .left .social {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
footer .container .left .social .item-social img {
  border-radius: 50%;
  transition: all 500ms;
}
footer .container .left .social .item-social img:hover {
  -webkit-box-shadow: 0px 0px 8px 1px white;
  -moz-box-shadow: 0px 0px 8px 1px white;
  box-shadow: 0px 0px 8px 1px white;
}

.btn-video {
  display: flex;
  justify-content: end;
}
.btn-video .btn {
  padding: 3px 20px;
  background-color: #a27f55;
  border-radius: 20px;
  color :white;
}

.right {
  width: 45%;
}
.right img {
  width: 100%;
  height: 350px;
}
.right video {
  width: 100%;
  height:350px;
}

.left {
  width: 55%;
  padding: 20px 40px;
}
.left .title-video {
  text-align: center;
  color: #a27f55;
  font-size: 35px;
}
.left .des-video {
  margin: 20px 0;
}
.left .des-video .description {
  color: #fff;
}
.left .des-video .title {
  color: #fff;
}

.introduction {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}
.introduction .right-introduction {
  width: 50%;
  padding: 50px;
}
.introduction .right-introduction img {
  width: 100%;
}
.introduction .left-introduction {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-smarten {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-smarten .item-smarten {
  width: 33.33%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.portfolio-smarten .item-smarten .demo{
  width :100%;
}
.portfolio-smarten .item-smarten .right {
  width: 100%;
}
.portfolio-smarten .item-smarten .right .title-port {
  margin: 10px 0;
  color: white;
  text-align: center;
}
.portfolio-smarten .item-smarten .right .des-port {
  width: 100%;
}
.portfolio-smarten .item-smarten .image-port {
  width: 100%;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.portfolio-smarten .item-smarten .image-port:hover {
  -webkit-box-shadow: 0px 0px 8px 1px white;
  -moz-box-shadow: 0px 0px 8px 1px white;
  box-shadow: 0px 0px 8px 1px white;
}
.portfolio-smarten .item-smarten .image-port:hover img {
  transform : translateY(calc(-100% + 250px));
}
.portfolio-smarten .item-smarten .image-port img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 5s linear;
}
.portfolio-smarten .item-smarten .btns {
  width: 100%;
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.portfolio-smarten .item-smarten .btns .btn {
  margin: 0 10px;
  padding: 3px 20px;
  color: #fff;
  background-color: #a27f55;
  border-radius: 20px;
  font-size: 12px;
}
.portfolio-smarten .item-smarten.item-two .demo {
  display: flex;
  flex-direction: column-reverse;
}





/*فرم وردپرس*/

footer .container .left .form-footer .gf_browser_chrome.gform_wrapper{
	width : 100%;
}

footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form{
	width : 100%;

  display : flex;
  justify-content : space-between;
  align-items : center;
}
footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form .gform_body{
	width : 70%;

}
footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form .gform_body label{
  display : none;
}
footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form .gform_body input{
    width: 100%;
    height: 50px;
    border-radius: 100px;
    border: none;
    background: #d7b47e;
  padding : 0 10px;
  color : white;
  font-size : 20px;
  font-weight : bold;
}

    
footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form .gform_footer.top_label input{
  border-radius: 40px;
    border: none;
    padding: 0 20px;
    color: #fff;
    background-color: #5c3514;
    font-family: "Yekan";
    font-size: 20px;
    height: 100%;
  cursor :pointer;
}

footer .container .left .form-footer .gf_browser_chrome.gform_wrapper form .gform_footer.top_label{
	width : 30%;
    height: 50px;
   
    display: flex;
    justify-content: center;
    align-items: center;

}

/*فرم وردپرس*/



@media (max-width: 992px) {
  .ms-header {
    width: 100%;
    z-index: 3;
    /*margin: 10px auto 0 auto;*/
  }
  .hamburger {
    display: block;
    background-color: transparent;
  }
  .ms-nav {
    width: 90%;
    margin: 0 auto;
  }
  .ms-header .navbar-smarten {
    display: none;
  }

  .introduction {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 50px 0;
  }
  .introduction .right-introduction {
    width: 100%;
    padding: 50px;
  }
  .introduction .right-introduction img {
    width: 100%;
  }
  .introduction .left-introduction {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .numbers .number {
    flex-direction: column;
    width: 51%;
  }
  .numbers .number .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: -10px;
  }
  .numbers .number .description .title-number {
    margin: 10px;
    width: 100%;
    text-align: center;
  }
  .numbers .number .image-number {
    display: flex;
    justify-content: center;
  }
  .image-number{
      width:50% !important;
  }
  .numbers .number .image-number img {
    width: 250px;
    height: 250px;
  }
  .numbers .number.number-ltr {
    /*margin-top: -150px;*/
  }
  .numbers .number-3 {
    margin-top: -100px;
  }

  .video-smarten {
    flex-direction: column;
  }

  .smarten-luc {
    flex-direction: column;
  }

  footer .container {
    flex-direction: column;
  }
  footer .container .left {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  footer .container .left .form-footer {
    width: 90%;
    height: 60px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background-color: #a27f55;
  }
  footer .container .left .form-footer .in-footer {
    width: 70%;
    height: 80%;
    border-radius: 40px;
    border: none;
    background-color: #d7b47e;
    color: #9b764a;
    padding: 0 10px;
    font-size: 20px;
  }
  footer .container .left .form-footer .in-footer::placeholder {
    color: #9b764a;
    font-size: 1rem;
  }
  footer .container .left .form-footer .in-footer:focus {
    border: none;
    outline: none;
  }
  footer .container .left .form-footer .dddd {
    width: 30%;
    height: 80%;
    display: flex;
    justify-content: center;
  }
  footer .container .left .form-footer div .btn-footer {
    padding: 3px 15px;
    border-radius: 40px;
    border: none;
    padding: 0 20px;
    color: #fff;
    background-color: #5c3514;
    font-family: "Yekan";
    font-size: 20px;
  }
  footer .container .left .social {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .right {
    width: 100%;
  }

  .left {
    width: 100%;
  }

  .portfolio-smarten {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .portfolio-smarten .item-smarten {
    width: 100%;
    display: flex;
    padding: 0;
  }
  .portfolio-smarten .item-smarten .demo {
    /*display: flex;*/
    justify-content: space-between;
  }
  .portfolio-smarten .item-smarten .demo .image-port {
    padding: 0 0 0 20px;
    height : 120px;
  }
  .portfolio-smarten .item-smarten .demo .des-port {
    padding: 0 20px 0 0;
  }
  .portfolio-smarten .item-smarten .btns {
    width: 50%;
    display: flex;
    justify-content: start;
    margin-left: auto;
    justify-content: space-between;
  }
  .portfolio-smarten .item-smarten.item-two .demo .image-port {
    padding: 0 20px 0 0;
  }
  .portfolio-smarten .item-smarten.item-two .demo .des-port {
    padding: 0 0 0 20px;
  }
  .portfolio-smarten .item-smarten.item-two .btns {
    margin-right: auto;
    margin-left: inherit;
  }

  .portfolio-smarten .item-smarten.item-two .demo {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  .container .des-number {
    padding: 0 10px;
    font-size: 10px;
  }

  .numbers .number .image-number img {
    width: 100px;
    height: 100px;
  }

  .right img {
    height: 200px;
  }

  footer .container .left {
    padding: 10px 0;
    font-size: 10px;
  }
  footer .container .left .form-footer .in-footer {
    width: 70%;
    height: 80%;
    border-radius: 40px;
    border: none;
    background-color: #d7b47e;
    color: #9b764a;
    padding: 0 10px;
    font-size: 14px;
  }
  footer .container .left .form-footer .in-footer::placeholder {
    color: #9b764a;
    font-size: 10px;
  }
  footer .container .left .form-footer .in-footer:focus {
    border: none;
    outline: none;
  }
  footer .container .left .form-footer .ddd {
    width: 30%;
    height: 80%;
    display: flex;
    justify-content: center;
  }
  footer .container .left .form-footer div .btn-footer {
    padding: 3px 15px;
    border-radius: 40px;
    border: none;
    padding: 0 20px;
    color: #fff;
    background-color: #5c3514;
    font-family: "Yekan";
    font-size: 14px;
  }
  footer .container .left .social .item-social img {
    width: 30px;
  }

  .btn {
    font-size: 12px;
  }

  .portfolio-smarten {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .portfolio-smarten .item-smarten .right {
    width: 100%;
  }
  .portfolio-smarten .item-smarten .right .title-port {
    margin: 10px 0;
    color: white;
    text-align: center;
  }
  .portfolio-smarten .item-smarten .right .des-port {
    width: 100%;
    font-size: 10px;
  }
  .portfolio-smarten .item-smarten .btns {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: center;
  }
  .portfolio-smarten .item-smarten .btns .btn {
    margin: 0 10px;
    padding: 3px 20px;
    color: #fff;
    background-color: #a27f55;
    border-radius: 20px;
    font-size: 12px;
  }

  
  .portfolio-smarten .item-smarten.item-two .demo .image-port {
    padding: 15% 20px 15% 0;
  }
  .portfolio-smarten .item-smarten.item-two .btns {
    justify-content: end;
  }

  .portfolio-smarten .item-smarten .demo .image-port {
    padding: 15% 0 15% 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*# sourceMappingURL=smarten.css.map */
