@font-face {
  font-family: 'IranSans';
  src: url('../font/IRANSans.woff');
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: white;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* height of your navbar */
}
:root {
  --Blue-Tiffany: #113F67;
  --Gray: #34699A;
  --title-size: 30px;
  --text-coler: #333333;
  --text-coler-hover: #000000;
}

@media (width <= 767px) {
  :root {
    --title-size: 18px;
  }
}

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: 'IranSans', tahoma;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}

/*  استایل هدر */

.header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  padding: 15px 20px;
  transition: top 0.5s;
  z-index: 999;
}

.nav {
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
}
@media (width <=767px) {
  .nav {
    padding-top: 15px;
  }
}
.nav-right a {
  color: black;
}


.nav-left {
  width: fit-content;
  display: flex;
  align-items: center;
}

.nav-left button {
  all: unset;
  width: 150px;
  background-color: var(--Blue-Tiffany);
  height: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 2px solid var(--Blue-Tiffany);
  transition: all 0.6s;
  transform: scale(1);
  cursor: pointer;
}
.nav-left button:hover a {
  color: var(--Blue-Tiffany);
  transition: all 0.5s;
  transform: scale(1.3);
}

.nav-left button:hover {
  background-color: transparent;
  border-radius: 5px;
}

.nav-right {
  width: fit-content;
  height: 90px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (width <=767px) {
  .nav-right {
    order: 3;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-left: unset;
  }
}
.logo {
  height: 50px;
}

.nav-right > ul {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 18px;
}

@media (width <= 767px) {
  .nav-right > ul {
    padding-right: 0;
  }
}

.nav-right > ul > li {
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.nav-submenu {
  width: 200px;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1000px) rotateX(90deg);
  transition: all 0.4s;
  padding-top: 15px;
}

.nav-right > ul > li:hover > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: perspective(1000px) rotateX(0);
}

.nav-submenu-inner {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 7px #00000049;
  z-index: 2;
}

.nav-submenu-inner ul {
  width: 100%;
  padding-right: 0;
  padding-block: 10px;
  z-index: 2;
}

.nav-submenu-inner a {
  list-style: none;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 14px;
  border-right: 4px solid transparent;
  padding-right: 10px;
  transition: all 0.46s;
  transform: translateX(0);
  z-index: 2;
}

.nav-submenu-inner a:hover {
  border-color: var(--Blue-Tiffany);
  transform: translateX(-10px);
}

/* استایل هدر */

/*  استایل هیروسکشن */

.heroSection {
  width: 100%;
  max-width: 1320px;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media (width <= 767px) {
  .heroSection {
    height: auto;
    margin-top: 170px;
  }
}


.heroSectionInner {
  z-index: 1;
  width: 100%;
  background-color: var(--Gray);
  height: 500px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (width <=767px) {
  .heroSectionInner {
    margin-block: 50px;
    height: auto;
    padding: 20px;
  }
}

.heroSectionInner img {
  position: absolute;
  left: 5%;
  border-radius: 30px;
  height: 470px;
  transition: all 0.6s;
  transform: scale(1);
}
.heroSectionInner img:hover {
  transform: scale(1.1);
}

@media (width <= 767px) {
  .heroSectionInner img {
    display: none;
  }
}

.heroSectionInner-text {
  width: 40%;
  padding-inline-start: 60px;
  color: #fff;
  line-height: 34px;
}
@media (width <= 767px) {
  .heroSectionInner-text {
    width: 100%;
    height: auto;
    padding-inline-start: 0;
  }
}

.heroSectionInner-text h1 {
  font-size: 25px;
  border-bottom: 4px solid var(--Blue-Tiffany);
  display: inline;
}

.heroSectionInner-text button {
  all: unset;
  height: 45px;
  background-color: var(--Blue-Tiffany);
  border-radius: 30px;
  padding-inline: 20px;
  transition: all 0.6s;
  border: 2px solid var(--Blue-Tiffany);
  transform: scale(1);
}

.heroSectionInner-text button:hover {
  transform: scale(0.8);
}

/*  استایل هیروسکشن */

/* محصولات */
.products{
  width: 100%;
  max-width: 1320px;
  margin-block: 50px;
  margin-block-end: 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.products-Column{
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  width: 100%;

}
.product1{
  width: 45%;
  height: 100%;
  margin: 30px;
  /* background-color: red; */
  z-index: 2;
  border-radius: 15px;
  box-shadow: 1px 1px 7px #00000050;
}
.product1-image{
  width: 100%;
  height: 70%;
  overflow: hidden;
}
.product1-image > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.product1:hover > img {
  scale: 1.1;
  overflow: hidden;
}
.product1-text{
  padding: 50px;
}
.product1-text-info{
color: gray;
/* font-size: 0.8rem; */
margin-bottom: 5px;
}
.product1-text-title{
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 10px; 
}
.product1-text-ds {
  margin-bottom: 15px;
}
.product1-text-button{
  background-color: transparent;
  border: 0;
}
.product1-text-button svg{
  width: 50px;
  height: 50px;
  transition: all 0.6s; 
  fill: var(--Gray);
}
.product1-text-button:hover svg {
  fill: var(--Blue-Tiffany);
  scale: 1.2;
  transition: all 0.6s;
}
@media (width <=767px) {
  .products{
    flex-direction: column;
    margin-block: 50px;
    font-size: 0.8rem;
  }
  .products-Column{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .product1{
    width: 90%;
    margin-bottom: 30px;
  }
  .product1-image {
    width: 100%;
    height: fit-content;
    overflow: hidden;
  }

}
/* محصولات */



/*  استایل سرویس */

.service {
  margin-block: 70px;
  width: 100%;
  max-width: 1320px;
  display: flex;
  gap: 30px;
}

@media (width <= 767px) {
  .service {
    flex-wrap: wrap;
  }
}

.service-item {
  width: 33.33%;
  background-color: white;
  box-shadow: 1px 1px 7px #00000050;
  border-radius: 20px;
  display: flex;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s;
  transform: translate(0 , 0);
}

@media (width <=767px) {
  .service-item {
    width: 100%;
    flex-direction: column;
  }
}

.service-item:hover{
  box-shadow: 1px 1px 20px #00000070;
  transform: translate(7px , -10px);
}

.service-item-left {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (width <= 767px) {
  .service-item-left {
    width: 100%;
    flex-direction: row;
  }
}


.service-item-left-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item-left-icon svg {
  width: 40px;
  fill: #000000;
}

.service-item-left span {
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 1px var(--Blue-Tiffany);
}

.service-item-right {
  width: calc(100% - 90px);
  line-height: 32px;
  padding-inline-start: 20px;
}

@media (width <= 767px) {
  .service-item-right {
    width: 100%;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
  }
}

.service-item-right span {
  font-size: 25px;
  font-weight: bold;
}

@media (width <= 767px) {
  .service-item-right span {
    margin: 0 auto;
  }
}

.service-item-right p {
  color: #6a6a6a;
  font-size: 14px;
}

.service-item-line {
  position: absolute;
  width: 70%;
  height: 10px;
  background-color: var(--blue);
  bottom: -5px;
  margin-inline: auto;
  left: 0;
  right: 0;
  border-radius: 30px;
}
/*  استایل سرویس */



/* استایل درباره ما */
.about {
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-block: 100px;
}

@media (width <= 767px) {
  .about {
    flex-wrap: wrap;
    width: 100%;
  }
}



.about-text {
  width: 50%;
}
@media (width <=767px) {
  .about-text {
    width: 90%;
  }
}

.about-text-tag {
  width: fit-content;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--Blue-Tiffany);
  color: #fff;
  padding-inline: 5px;
  gap: 10px;
}

@media (width <= 767px) {
  .about-text-tag {
    margin-inline: auto;
    margin-top: 40px;
  }
}

.about-text h3 {
  font-size: var(--title-size);
}

@media (width <= 767px) {
  .about-text h3 {
    text-align: center;
  }
}

.about-text h3 span {
  color: var(--Blue-Tiffany);
}

.about-text p {
  line-height: 33px;
  font-size: 15px;
  color: #555555;
  text-align: justify;
}
.about-text p span {
  color: var(--Blue-Tiffany);
  font-weight: bold;
  font-size: 17px;
}

.about-text-tag-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-tag-icon svg {
  fill: var(--blue);
  width: 25px;
  height: 25px;
}

.about-image {
  width: 50%;
  display: flex;
  position: relative;
}
@media (width <=767px) {
  .about-image {
    width: 100%;
    justify-content: center;
  }
}

.about-image-item {
  width: 33.33%;
  aspect-ratio: 1/2.5;
  background-color: #fff;
  border-radius: 999px;
  overflow: hidden;
  transition: all 0.4s;
  transform: translatey(0);
}



.about-image-item-center {
  transform: translateY(70px);
  border: 10px solid #fff;
  margin-left: -20px;
  z-index: 2;
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-item:hover {
  transform: translatey(10px);
}
.about-image-item-center:hover {
  transform: translateY(80px);
}

.about-image-tag {
  position: absolute;
  padding-inline: 40px;
  padding-block: 10px;
  background-color: var(--Blue-Tiffany);
  bottom: -65px;
  left: 70px;
  border-radius: 9999px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  z-index: 2;
}

@media (width <= 767px) {
  .about-image-tag {
    padding-inline: 20px;
    font-size: 10px;
    left: 20px;
  }
}

.about-image-tag h5 {
  font-size: 30px;
  margin-block: 0;
}

.about-image-tag p {
  margin-block: 0;
}

/*  استایل درباره ما */

/*  استایل  خلاصه آمار */
.summary {
  background-color: var(--Gray);
  padding-block: 40px;
  margin-block: 70px;
}

@media (width <= 767px) {
  .summary {
    margin-block: 10px;
  }
}

.summary-inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  gap: 50px;
}

.summary-inner-item {
  flex: 1 1 calc(25% - 50px);
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  color: #fff;
  align-items: center;
  transform: translate(0 , 0);
  transition: all 0.6s;
}

@media (width <=979px) {
  .summary-inner {
    flex-wrap: wrap;
  }
}

.summary-inner-item:hover {
  transform: translate(10px , -10px);
  box-shadow: 1px 1px 20px #ffffff70;
}

@media (width <= 979px) {
  .summary-inner-item {
    flex: 1 1 calc(50% - 50px);
  }
}

@media (width <= 767px) {
  .summary-inner-item {
    flex: 1 1 100%;
  }
}

.summary-inner-item-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-inner-item-icon svg {
  width: 40px;
  fill: black;
  z-index: 2;
}

.summary-inner-item-text {
  width: calc(100% - 70px);
  padding-inline-start: 15px;
}

.summary-inner-item-text-num {
  display: flex;
}

.summary-inner-item-text-num h5 {
  margin-block: 0;
  font-size: 50px;
  font-weight: bold;
}

.summary-inner-item-text-num span {
  color: #58A0C8;
  font-size: 30px;
}
/*  استایل  خلاصه آمار */

/*  استایل   مراحل احرا */

.step {
  width: 100%;
  max-width: 1320px;
  margin-block: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: var(--title-size);
}

.step h3 span {
  color: var(--Blue-Tiffany);
}

.step-cont {
  width: 100%;
  display: flex;
  gap: 30px;
}

@media (width <= 979px) {
  .step-cont {
    flex-wrap: wrap;
  }
}

.step-cont-item {
  flex: 1 1 calc(25% - 30px);
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 1px 1px 7px #00000049;
  overflow: hidden;
  transform: translate(0 , 0);
  transition: all 0.6s;
}
.step-cont-item:hover {
  transform: translate(10px , -10px);
  box-shadow: 1px 1px 20px #00000070;
}

@media (width <= 979px) {
  .step-cont-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (width <= 767px) {
  .step-cont-item {
    flex: 1 1 100%;
  }
}

.step-cont-item-head {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.step-cont-item-head-label {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0 0 30px 30px;
  background-color: var(--Blue-Tiffany);
  right: 30px;
  text-align: center;
  color: #fff;
  font-size: 22px;
}

.step-cont-item-head-icon {
  width: 70px;
  height: 70px;
  background-color: var(--Blue-Tiffany);
  border-radius: 0 50% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-cont-item-head-icon svg {
  width: 37px;
  fill: #ffffff;
  z-index: 2;
}

.step-cont-item-text {
  width: 100%;
  padding-inline: 15px;
}

.step-cont-item-text span {
  font-size: 22px;
  margin-top: 10px;
}

.step-cont-item-text p {
  color: #555555;
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}

/*  استایل   مراحل اجرا */

/*  استایل    کاور  */

.videoCover {
  height: 450px;
  margin-top: 70px;
  background-image: linear-gradient(#1e63f72c, #1e63f72c),
    url('../images/banner.avif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (width <= 767px) {
  .videoCover {
    height: 350px;
  }
}

.videoCover button {
  all: unset;
  width: 70px;
  height: 70px;
  background-color: var(--Blue-Tiffany);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoCover button svg {
  width: 30px;
  fill: white;
  z-index: 2;
}

.videoCover button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--Blue-Tiffany);
  border-radius: 50%;
  top: 0;
  animation: wave 1s linear infinite;
}

@keyframes wave {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2);
  }
}
/*  استایل ویدئو */

/* استایل فرم */

.formCont {
  width: 100%;
  max-width: 1320px;
  display: flex;
  background-color: #fff;
  box-shadow: 1px 1px 7px #00000062;
  margin-bottom: 70px;
  transform: translateY(-100px);
  border-radius: 20px;
  padding: 13px;
  gap: 13px;
}

.formCont-left {
  width: 60%;
}

@media (width <= 767px) {
  .formCont-left {
    width: 100%;
  }
}

.formCont-right {
  width: 40%;

}

@media (width <= 767px) {
  .formCont-right {
    display: none;
  }
}

.formCont-right img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: contain;

}

.formCont-left h3 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.formCont-left-row {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

@media (width <= 767px) {
  .formCont-left-row {
    flex-wrap: wrap;
  }
}

.formCont-left-row-item {
  width: 50%;
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}
.formCont-left-row-item input{
  padding: 15px;
}
.formCont-left-row-item5 {
  width: 100%;
}
#phonenumber{
  direction: rtl;
}
.formCont-left-row-item label{
  text-align: center;
  display: flex;
  align-items: center;
  color: #6a6a6a;
  height: 50px;
  padding: 15px;
}
.formCont-left-row-item textarea{
  width: 100%;
  height: 100px;
  border: 1px solid #e0e0e0;
  padding: 15px;
}
@media (width <=767px) {
  .formCont-left-row-item textarea {
    height: 100px; 
    padding: 10px;
  }
  
}
#capacity{
  border: 0;
}

@media (width <= 767px) {
  .formCont-left-row-item {
    width: 100%;
  }
}

.formCont-left-row-item-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formCont-left-row-item-icon svg {
  width: 30px;
  fill: var(--orange);
}

.formCont-left-row-item input {
  width: calc(100% - 50px);
  height: 50px;
  outline: 0;
  border: 0;
  font-family: 'IranSans';
  padding-inline-end: 10px;
}

.formCont-left button {
  border: none;
  font-family: 'IranSans';
  padding-inline: 20px;
  height: 50px;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 5px;
  transition: all 0.4s;
  transform: scale(1);
}
.formCont-left button:hover{
  background-color: black;
  color: white;
  transform: scale(1.1);
}

@media (width <= 767px) {
  .formCont-left button {
    width: 100%;
  }
}
/*  استایل فرم */

/*   فوتر */

footer {
  flex-direction: column;
  align-items: center;
}

.footer-top {
  width: 100%;
  max-width: 1320px;
  background-color: #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  padding-top: 70px;
  display: flex;
  position: relative;
}

@media (width <= 979px) {
  .footer-top {
    flex-wrap: wrap;
  }
}

.footer-top-contLogo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  z-index: 1;
  background-color: #fff;
  box-shadow: 1px 1px 7px #00000057;
}

.footer-top-contLogo img {
  width: 60px;
  height: 60px;
}

.footer-top-toUp {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 7px #00000057;
  position: absolute;
  right: 30px;
  top: -25px;
  border: none;
}

.footer-top-toUp svg {
  width: 30px;
  animation: toUp 1.5s linear infinite;
}

@keyframes toUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

.footer-top-item {
  width: 25%;
  padding-right: 20px;
}

@media (width <= 979px) {
  .footer-top-item {
    width: 50%;
  }
}

@media (width <= 767px) {
  .footer-top-item {
    width: 100%;
  }
}

.footer-top-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  line-height: 32px;
}
 
.footer-top-item ul a {
  color: #57606e;
}
.footer-top-item ul {
  color: #57606e;
}

.footer-top-item:nth-child(4) {
  width: 30%;
}
.footer-top-item h4 {
  font-size: 1.3rem;
}

.footer-top-item-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-top-item-logo img {
  width: 40px;
  height: 40px;
}

.footer-top-item-paragraph {
  color: #57606e;
  line-height: 32px;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  width: 100%;
  max-width: 1320px;
  border-radius: 20px;
  margin-block: 25px;
  padding: 10px;
  background-color: #314252;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom ul {
  display: flex;
  gap: 40px;
  list-style: none;
  color: #fff;
}

@media (width <= 767px){
  .footer-bottom ul {
    overflow-x:scroll ;
    padding-bottom: 10px;
  }
}

.footer-bottom ul li {
  border-left: 1px solid #fff;
  padding-inline-end: 20px;
}

.footer-bottom ul li:last-child {
  border: none;
}

.footer-bottom ul a {
  color: #fff;
}

.footer-bottom-social {
  display: flex;
  width: fit-content;
  gap: 10px;
}

@media (width <= 767px){
  .footer-bottom-social {
    margin-inline: auto;
  }
}

.footer-bottom-social-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-social-item svg {
  width: 30px;
  fill: #314252;
}
/* استایل فوتر */