:root {
  --bgcolormain:rgb(0, 0, 0);
  --bgcolor1: #f3f0eb;
  --bgcolor2: #241d1c;
  --textheader: #372d2b;
  --textcolor1: rgb(240, 240, 240);
  --gradiant-gold: radial-gradient(
      ellipse farthest-corner at right bottom,
      #8f5e25 0%,
      #735519 8%,
      #cb9c35 30%,
      #fbf4a1 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #b09a38 8%,
      #887235 25%,
      #c79c38 62.5%,
      #dfd244 100%
    );
}

html {
  font-family: iransans;
  overflow-x: hidden;
}

@font-face {
  font-family: "iransans";
  src: url(../fonts/FontsFree-Net-ir_sans.ttf);
}

@font-face {
  font-family: "farhang";
  src: url(../fonts/Farhang-Black.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

a {
  display: block;
  text-decoration: none;
}

ul {
  list-style: none;
}

#preloader {
  height: 100vh;
  width: 100%;
  background: white url(../images/preloader.gif);
  background-size: 12rem;
  background-repeat: no-repeat;
  background-position: center 35%;
  position: fixed;
  top: 6rem;
  z-index: 1000;
}
.topHeader {
  height: 2rem;
  background-color: var(--bgcolormain);
  display: flex;
  align-items: center;
}
.topHeader .language  {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding-left: 1rem;
}
.topHeader .language img {
 height: 1.1rem;
 border-radius: .2rem;
}

.nav-cnr {
  height: 4rem;
  background-color:var(--bgcolormain);
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border-top: 0.05rem solid white;
  border-bottom: 0.05rem solid white;
}

.cnr-menuBtn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  right: 0.5rem;
  padding: 1rem;
}

.cnr-menuBtn span {
  display: block;
  width: 2rem;
  height: 0.1rem;
  background: var(--gradiant-gold);
}

.nav-cnr__logo img {
  width: 8rem;
}

.nav-links-cnr {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--bgcolormain);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.showMenu {
  transform: translateX(0);
}

.closeBtn {
  position: absolute;
  height: 4rem;
  right: 1.9rem;
  top: 2.7rem;
  font-size: 1.7rem;
  font-weight: 100;
  background: var(--gradiant-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.nav-links-cnr ul {
  display: flex;
  flex-direction: column;
  margin: 7rem 0 0;
}

.nav-links-cnr li {
  text-align: right;
  font-family: iransans;
  font-weight: 900;
  font-size: 1.3rem;
  background: var(--gradiant-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.15s ease-out;
}

.nav-link {
  margin: 0.4rem 0;
  padding: 0.1rem 2rem;
}

.nav-link:hover li {
  transform: translateX(-0.5rem);
}
.nav-link i {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-right: 0.1rem;
}

.hero-cnr {
  width: 100%;
  height: fit-content;
  position: relative;
  background-color: var(--bgcolor1);
}

.hero-img {
  width: 100%;
  height: 30rem;
  background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.675), rgba(255, 255, 255, 0)), url(../images/hero.webp);
  background-repeat: no-repeat;
  background-position: 72% 0;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.hero-text {
  text-align: right;
  position: absolute;
  top: 40%;
  right: 3rem;
  transform: translateY(-50%);
  display: none;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  background: var(--gradiant-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.5rem;
  background: var(--gradiant-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text a {
  font-size: 0.8rem;
  margin: 1.5rem auto 0;
  z-index: 3;
  text-align: center;
  padding: 0.2rem 0.7rem;
  background: var(--gradiant-gold);
  color: rgba(0, 0, 0, 0.754);
  width: 6rem;
  border-radius: 0.2rem;
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



.animate__delay1 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.animate__delay2 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.animate__delay3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}


.intro {
  text-align: center;
  background-color: var(--bgcolor1);
  padding: 2rem 0;
  color: var(--textheader);
}

.intro h1 {
  font-size: 1.5rem;
  font-family: farhang;
  margin-bottom: 0.6rem;
}

.intro p {
  font-size: 1rem;
  padding: 0 2rem;
  line-height: 2rem;
}

.whyus-cnr {
  background: linear-gradient(180deg, var(--bgcolor1) 50%, var(--bgcolor2) 50%);
}

.whyus-cnr__bg {
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.717), rgba(255, 255, 255, 0.552)),
    url('../images/service.webp');  
  width: 100%;
  height: 65rem;
  background-repeat: no-repeat;
  background-size:cover;
  background-position:40% bottom;
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 95%);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 95%);
  padding-top: 8.5rem;
}

.whyus-cnr__hdr {
  text-align: center;
  font-family: farhang;
  margin: 0 auto 3rem;
  border-bottom: 0.1rem solid var(--textheader);
  width: 11rem;
  font-size: 3rem;
 color: black;
}

.whyus-cnr__textcnr {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 5rem;
}

.whyus-cnr__textcnr__box {
  width: 100%;
  text-align: center;
  margin: auto;
}

.whyus-cnr__textcnr__box span {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: black;
  border-radius: 3rem;
 
}

.whyus-cnr__textcnr__box span i {
  font-size: 2rem;
  background: var(--gradiant-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.15s ease-out;

}

.whyus-cnr__textcnr__box h1 {
  font-size: 1.5rem;
  font-family: farhang;
  margin-top: 0.3rem;
  color: var(--bgcolor2);
}

.space-cnr {
  background-color: var(--bgcolor2);
  padding: 2rem 0;
}

.space-cnr__row {
  display: flex;
  flex-wrap: wrap;
}

.space-cnr__row img {
  max-width: 17rem;
  height: 17rem;
  border-radius: 200%;
  margin: 0 auto;
}

.space-cnr__row h1 {
  text-align: center;
  color: var(--textcolor1);
  margin: 2rem 0 0.7rem;
  font-size: 2rem;
  font-family: farhang;
}
.space-cnr__row p {
  color: var(--textcolor1);
  padding: 0 2rem 2rem;
  text-align: center;
  line-height: 2.3rem;
}

.body-social-cnr {
  background-color: var(--bgcolor1);
  color: var(--textheader);
  padding: 4rem 0;
}

.body-social-cnr__header {
  text-align: center;
  width: 15rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  font-family: farhang;
}

.body-social-cnr__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.body-social-cnr__ig,
.body-social-cnr__telegram {
  width: 100%;
}

.body-social-cnr__ig a,
.body-social-cnr__telegram a {
  margin: 0 auto;
  padding: 0.5rem 0;
  border: 0.1rem solid var(--textheader);
  border-radius: 5rem;
  width: 80%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.body-social-cnr__ig a:hover,
.body-social-cnr__telegram a:hover {
  background-color: var(--bgcolor2);
}
.body-social-cnr__ig a:hover i,
.body-social-cnr__telegram a:hover i {
  color: var(--bgcolor1);
}

.body-social-cnr__ig i,
.body-social-cnr__telegram i {
  color: var(--textheader);
  font-size: 5rem;
  transition: all 0.3s ease-in-out;
}

.guarantee-cnr__row__boxes_box {
  padding: 3rem 0;
  background-color: var(--bgcolor2);
  color: var(--textcolor1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.guarantee-cnr__row__boxes_box i {
  font-size: 4rem;
}
.guarantee-cnr__row__boxes_box h1 {
  font-size: 4rem;
  font-family: farhang;
}
.guarantee-cnr__row__boxes_box p {
  font-size: 1.9rem;
}
.guarantee-cnr__row__boxes img {
  width: 100%;
}

/* --------  lazyItems  ------------ */
.lazy {
  transition: transform 0.7s 0.04s ease-out, opacity 0.8s 0.04s ease-out;
}
.LazyDlay1 {
  transition: transform 0.7s 0.12s ease-out, opacity 0.8s 0.12s ease-out;
}
.LazyDlay2 {
  transition: transform 0.7s 0.2s ease-out, opacity 0.8s 0.2s ease-out;
}
.LazyDlay3 {
  transition: transform 0.7s 0.25s ease-out, opacity 0.8s 0.25s ease-out;
}
.lazyItemOff {
  opacity: 0;
  transform: translateY(4rem);
}

footer {
  background-color: var(--bgcolormain);
}
.footer-logo {
  width: 18rem;
  margin: 0 auto;
  padding: 3rem;
}
.footer-logo img {
  max-width: 100%;
}
.footer-boxes-cnr {
  margin-top: 2rem;
}
.footer-boxes-cnr,
.footer-boxes-cnr a {
  color: var(--textcolor1);
}
.footer-boxes-cnr__row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-boxes-cnr__row__box {
  width: 100%;
}
.footer-boxes-cnr__row__box h1 {
  border-bottom: 0.1rem solid var(--textcolor1);
  padding-bottom: 0.2rem;
  margin-bottom: 1.2rem;
  width: 10rem;
  font-size: 1rem;
  text-align: center;
}
.footer-boxes-cnr__row__box li {
  margin: 0.5rem 0;
}
.footerbox1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.footerbox2,
.footerbox3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-boxes-cnr__row__box__socials i {
  font-size: 2rem;
}
.footer-boxes-cnr__row__box__socials li {
  margin: 1.5rem 0;
}

.socket {
  text-align: center;
  color: var(--textcolor1);
  padding: 0.5rem 0;
  border-top: 0.05rem solid var(--bgcolor1);
  font-size: 0.8rem;
}

@media only screen and (min-width: 481px) {
  .hero-img {
    height: 38rem;
    background-position: 75% 0;
    background-size: cover;
  }
  .hero-text {
    top: 40%;
    right: 12%;
  }
  .hero-text h1 {
    font-size: 5.5rem;
  }
  .intro {
    padding: 4rem 0;
  }
  .intro h1 {
    font-size: 2rem;
  }
  .intro p {
    font-size: 1.1rem;
    padding: 0 17.5%;
    line-height: 2.5rem;
  }
  .whyus-cnr__bg {
    background-size: cover;
    background-position:20% bottom;
  }
  .whyus-cnr__hdr {
    margin: 0 auto 3rem;
    width: 15rem;
    font-size: 3rem;
  }
  .space-cnr {
    background-color: var(--bgcolor2);
    padding: 5rem 0;
  }
  .space-cnr__row img {
    max-width: 23rem;
    height: 23rem;
  }
  .space-cnr__row h1 {
    margin: 3rem 0 1rem;
    font-size: 2.5rem;
  }
  .space-cnr__row p {
    color: var(--textcolor1);
    padding: 0 17.5% 2rem;
    line-height: 2.5rem;
  }
  .body-social-cnr__header {
    width: 100%;
    font-size: 1.9rem;
  }
  .body-social-cnr__row {
    gap: 2.5rem;
  }
  .body-social-cnr__ig a,
  .body-social-cnr__telegram a {
    width: 60%;
  }
  .guarantee-cnr__row__boxes_box {
    padding: 5rem 0;
    gap: 2.2rem;
  }
  .guarantee-cnr__row__boxes_box i {
    font-size: 6rem;
  }
  .guarantee-cnr__row__boxes_box h1 {
    font-size: 6rem;
  }
  .guarantee-cnr__row__boxes_box p {
    font-size: 2.2rem;
  }
  .footer-boxes-cnr__row__box__socials {
    display: flex;
    gap: 0 2rem;
  }
}

@media only screen and (min-width: 768px) {
  .hero-img {
    height: 42rem;
    background-position:right bottom;
    background-size: cover;
  }
  .hero-text {
    top: 40%;
    right: 10%;
  }
  .hero-text h1 {
    font-size: 7rem;
  }
  .hero-text p {
    font-size: 1.7rem;
    margin-right: 6rem;
  }
  .hero-text a {
    font-size: 1rem;
    margin: 2.5rem auto;
    width: 6.5rem;
  }
  .intro h1 {
    font-size: 2.5rem;
  }
  .intro p {
    font-size: 1.3rem;
    padding: 0 20%;
  }
  .whyus-cnr__bg {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.646), rgba(255, 255, 255, 0.823)),
     url(../images/service-768px.webp);
    height: 53rem;
    background-size: cover;
    background-position:50% bottom;
 
  }
  .whyus-cnr__hdr {
    width: 15rem;
    font-size: 3.5rem;
    margin-bottom: 5rem;
  }
  .whyus-cnr__textcnr {
    justify-content: center;
    gap: 8rem 2rem;
  }
  .whyus-cnr__textcnr__box {
    width: 35%;
    margin: 0;
  }
  .whyus-cnr__textcnr__box span {
    width: 4.5rem;
    height: 4.5rem;
  }
  .whyus-cnr__textcnr__box span i {
    font-size: 2.3rem;
  }

  .whyus-cnr__textcnr__box h1 {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .space-cnr {
    padding: 4rem 0;
  }
  .space-cnr__row img {
    max-width: 33rem;
    height: 33rem;
  }
  .space-cnr__row h1 {
    margin: 3rem 0 1.5rem;
    font-size: 3rem;
  }
  .space-cnr__row p {
    padding: 0 20% 2rem;
  }
  .footer-logo {
    width: 17rem;
    margin: 0 auto;
    padding: 3rem;
  }
  .footer-boxes-cnr__row {
    justify-content: stretch;
    align-items: start;
    gap: 4rem 0;
  }
  .footerbox1 {
    margin: 0;
  }
  .footerbox1 {
    width: 60%;
  }
  .footerbox2 {
    width: 20%;
  }
}

@media only screen and (min-width: 992px) {
  .cnr-menuBtn,
  .closeBtn {
    display: none;
  }

  .nav-links-cnr {
    transform: none;
    width: 100%;
    height: auto;
    position: static;
  }

  .nav-links-cnr ul {
    flex-direction: row-reverse;
    justify-content: end;
    margin: 0 2rem 0 0;
  }

  .nav-links-cnr li {
    font-size: 1rem;
  }

  .nav-link::before {
    position: relative;
    content: "";
    max-width: 0;
    height: 0.1rem;
    background-color: #c79c38;
    display: block;
    top: 1.8rem;
    transition: all 0.3s ease-out;
  }

  .nav-link:hover li {
    transform: none;
  }

  .nav-link:hover::before {
    max-width: 7rem;
  }

  .nav-cnr__logo {
    margin-left: 3rem;
  }
  .nav-link i {
    font-size: 1.2rem;
    margin-top: 0;
  }
  .hero-img {
    height: 55rem;
    background-position: right;
    background-size: 84rem 55rem;
    background-attachment: fixed;
  }
  .hero-text {
    top: 40%;
    right:15%;
   
  }
  .intro p {
    padding: 0 22%;
    margin-top: 0.5rem;
  }
  .whyus-cnr__bg {
    height: 60rem;
    background-size: 85rem 60rem;
    background-position: -10rem 0;
    background-attachment: fixed;
    padding-top: 9.5rem;
  }
  .space-cnr {
    padding: 5rem 0;
  }
  .space-cnr__row img {
    max-width: 44rem;
    height: 44rem;
    border-radius: 200%;
    margin: 0 auto;
  }
  .space-cnr__row p {
    padding: 0 25% 2rem;
  }
  .body-social-cnr__header {
    width: 100%;
    margin: 0 auto 2rem;
    font-size: 3rem;
  }
  .body-social-cnr {
    padding: 7rem 0;
  }
  .body-social-cnr__row {
    gap: 2rem;
  }
  .body-social-cnr__ig,
  .body-social-cnr__telegram {
    width: 30%;
  }
  .body-social-cnr__ig a,
  .body-social-cnr__telegram a {
    width: 100%;
  }
  .guarantee-cnr__row__boxes {
    display: flex;
  }
  .guarantee-cnr__row__boxes_box {
    width: 50%;
  }
  .guarantee-cnr__row__boxes img {
    width: 50%;
  }
  .order-reverse {
    flex-direction: row-reverse;
  }
  .guarantee-cnr__row__boxes_box i {
    font-size: 5rem;
  }
  .guarantee-cnr__row__boxes_box h1 {
    font-size: 6rem;
  }
  .guarantee-cnr__row__boxes_box p {
    font-size: 2.1rem;
  }
  .footer-boxes-cnr {
    padding-bottom: 3rem;
  }
  .footer-boxes-cnr__row {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .footerbox1 {
    width: 25%;
  }
  .footerbox2 {
    width: 25%;
  }
  .footerbox3 {
    width: 25%;
  }
  .footer-boxes-cnr__row__box__socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-boxes-cnr__row__box__socials li {
    margin: 0;
  }
  .footer-boxes-cnr__row__box__socials {
    margin-top: 0.7rem;
  }
}

@media only screen and (min-width: 1200px) {
  .nav-links-cnr ul {
    margin-right: 3rem;
  }

  .nav-cnr__logo {
    margin-left: 3rem;
  }
  .hero-img {
    height: 55rem;
    background-position:right bottom;
    background-size: cover;
  }
  .hero-text {
    
    right:14%;
   
  }
  .intro {
    padding: 4rem 0;
  }

  .intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .intro p {
    padding: 0 25%;
  }
  .whyus-cnr__bg {
    height: 40rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    -webkit-clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
    padding-top: 8.5rem;
  }
  .whyus-cnr__textcnr__box {
    width: 20%;
  }
  .space-cnr__row {
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }

  .space-cnr__row img {
    max-width: 25rem;
    height: 25rem;
  }
  .space-cnr__row div {
    width: 60%;
  }
  .space-cnr__row h1 {
    font-size: 2.5rem;
  }
  .space-cnr__row p {
    padding: 0 2rem 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .nav-links-cnr ul {
    margin-right: 3rem;
  }

  .nav-cnr__logo {
    margin-left: 3rem;
  }

  .hero-img {
    height: 50rem;
    background-size: 100%;
    background-position: right center;
  }
  .whyus-cnr__bg {
    height: 45rem;
    background-size: cover;
    padding-top: 8.5rem;
  }
  .space-cnr__row {
    justify-content: center;
    align-items: center;
    width: 65%;
    margin: 0 auto;
  }

  .space-cnr__row img {
    max-width: 25rem;
    height: 25rem;
  }
  .space-cnr__row div {
    width: 60%;
  }
  .space-cnr__row h1 {
    font-size: 2.5rem;
  }
  .space-cnr__row p {
    padding: 0 2rem 4rem;
  }
}

@media only screen and (min-width: 3840px) {
  html {
    max-width: 2040px;
    margin: 0 auto;
  }
}
