@font-face {
  font-family: 'IranSans';
  src: url('../font/IRANSans.woff');
}

* {
  box-sizing: border-box;
}
p{
  margin: 0;
}
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 {
  margin-top: 150px;
  width: 100%;
  max-width: 1320px;
  /* background-color: rebeccapurple; */
  /* height: 150vh; */
  display: flex;
}

.heroSection-main{
  width: 66.66%;
  padding-inline-end: 30px;

}

.heroSection-main-title{
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.heroSection-main-info{
  display: flex;
}
.heroSection-main-info-Features{
  border-top: 1px solid black;
  padding-top: 15px;
  width: 70%;
}
.heroSection-main-info-Features-n{
  width: 25%;
  background-color: rgb(240, 240, 241);
  margin: 5px;
  padding: 10px;
}
.heroSection-main-info-Features-row{
  display: flex;
  flex-wrap: wrap;
}
.heroSection-main-info-Features-n > div:nth-child(1) {
  color:rgb(129, 133, 139);
  font-size: 0.8rem;
}
.heroSection-main-info-more{
  width: 70%;
  display: flex;
  align-items: center;
}
.heroSection-main-info-more svg{
  width: 40px;
  height: 25px;
  margin-left: 7px;

}
.heroSection-main-info-more-Return{
  display: flex;
  align-items: start;
  margin-top: 20px;
  width: 100%;
}
.heroSection-main-info-more-Return p {
  font-size: 0.8rem;
  /* width: 30vw; */
  color: rgb(129, 133, 139);
}


.heroSection-png{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33%;
}

.heroSection-png img{
  width: 80%;
  margin-top: 50px;
  height: auto;
  transition: all 0.5s;
  border: 1px solid #e0e0e0;
  padding-bottom: 50px;
}
.heroSection-png img:hover {
  transform: scale(1.2);
}

.heroSection-main-info-add {
  width: 40%;
  margin-right:15px;
  padding-top: 20px;
  display: flex;
  border: #0000001a solid 1px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.heroSection-main-info-add-price {
  width: 80%;
  height: 50px;
  background-color: rgb(240, 240, 241);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-block: 35px;
  border: 1px solid #e0e0e0;
}
.heroSection-main-info-add-call {
  width: 70%;
  height: 50px;
  background-color: var(--Blue-Tiffany);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.heroSection-main-info-add-call a {
  color: #fff;
}
.heroSection-main-info-add-call:hover {
  transform: scale(1.2);
}

.heroSection-main-info-add-transfer{
  width: 80%;
  height: 90px;
  background-color: rgb(240, 240, 241);
  border-radius: 10px;
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.heroSection-main-info-add-transfer-text{
  width: 100%;
}
.heroSection-main-info-add-transfer-text > div:nth-child(1){
  color: var(--Blue-Tiffany);
  font-size: 1.3rem;
  font-weight: bold;
}
.heroSection-main-info-add-transfer-text>div:nth-child(2) {
  color: #000000;
  font-size: 1.1rem;
  font-weight: bold;
}
@media (width <=767px) {
  .heroSection {
    margin-top: 200px;
    flex-direction: column;
    align-items: center;
  }

  .heroSection-main {
    flex-direction: column;
    width: 100%;
    padding-inline-end: 0px;

  }
    .heroSection-main-info-add{
    width: 100%;
    margin-bottom: 30px;
    }
    .heroSection-main-info-Features{
      display: none;
    }

  .heroSection-png {
    width: 80%;
    margin-top: 30px;
  }
  .heroSection-main-title{
    margin-top: 40px;
  }
  .heroSection-png img {
    width: 100%;
    margin-top: 0px;
  }

}

/*  استایل هیروسکشن */



/* مشخصات فنی کلمپ */

.specifications {
  max-width: 1320px;
  width: 100%;
  margin-top: 70px;
  padding: 30px;
  margin-bottom: 70px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.429); */
  border: 1px solid rgba(0, 0, 0, 0.429);
  border-radius: 15px;
}

.specifications-title {
  font-size: 1.7rem;
  font-weight: bold;
}

.specifications-info{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;

}

.specifications  li{
  margin-bottom: 15px;
}
.specifications li:last-child {
  margin-bottom: 45px;
}
.specifications-d  {
  color: #000000;
  margin-right: 30px;
  margin-top: 30px;
  padding-inline: 40px;
  padding-block: 10px;
  border: 1px solid black;
  border-radius: 20px;
  transition: all 0.4s;
}
.specifications-d:hover {
  background-color: var(--Blue-Tiffany);
  color: white;
}


/* مشخصات فنی کلمپ */



/* محصولات */
.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: 15px;
  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;
  margin-bottom: 5px;
}

.product1-text-title {
  font-size: 1.5rem;
  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;
  }

}

/* محصولات */


/*   فوتر */

footer {
  margin-top: 150px;
  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;
}

/* استایل فوتر */