/* fonts */

@font-face {
  font-family: iransans-bold;
  src: url("../font/IRANSansDN-Bold.ttf");
}
@font-face {
  font-family: iransans;
  src: url("../font/IRANSANS_MEDIUM.TTF");
}

/* css reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*  end of css reset */


 .top-title {
    color: white;
    text-align: center;
    font-size: 4vw;
    font-family: iransans-bold;
    padding-top: 10px;
  }

.container {
  padding: 0 20px;
  max-width: 1536px;
  margin: 0 auto;
}

body {
  font-family: iransans;
  direction: rtl;
  /* min-height: 100vh; */
  padding-top: 20px;
  background: url(../img/background.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 160px;
  height: 60px;
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.top {
  display: flex;
  justify-content: space-between;
  gap: 40px 40px;
}
.top {
  width: 90%;
  margin: 25px auto;
}

.slider {
  width: 90%;
  margin: 20px auto;
}

.top > div {
  width: 33%;
}

.top img {
  width: 100%;
  height: 100%;
  display: block;
}

.top .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.top .content h1 {
  font-size: 20px;
  font-weight: 900;
}
.top .content p {
  font-size: 20px;
  font-weight: 700;
}

.top .content h2 {
  font-size: 20px;
  font-weight: 900;
  padding-top: 15px;
  color: #004dff;
}
.top .content span {
  font-size: 16px;
  font-weight: 700;
}

.input-box {
  width: 100%;
}

.top .input-box .box {
  max-width: 350px;
  position: relative;
  margin: 20px auto 0;
  border-radius: 40px;
  padding: 7px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 70px;
}

.input-box .box input:placeholder-shown {
  text-overflow: ellipsis;
}

.input-box .btn {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ff6b00;
  color: black;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-box .btn img {
  height: 70%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.input-box .input {
  width: 100%;
  direction: ltr;
  padding-left: 28px;

  border: none;
  outline: none;
  background-color: transparent;

  font-size: 20px;
  line-height: 10;
}

.input::placeholder {
  font-size: 16px;
  direction: rtl;
  text-align: end;
}

.captcha {
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
}

.captcha p {
  font-weight: 900;
}

.captcha .numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px;
  font-size: 20px;
}

.cInputBox {
  max-width: 350px;
  margin: 0 auto;
  border-radius: 40px;
  padding: 7px;
  border: #ff6b00 1px solid;
  justify-content: space-between;
  height: 70px;
  overflow: hidden;
}

.cInputBox input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  text-align: center;
}

.cInputBox input::placeholder {
  font-size: 20px;
  font-weight: 900;
}

.submit {
  background-color: #004dff;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 15px 25px;
  color: white;
  font-size: 20px;
  margin-top: 20px;
  cursor: pointer;
}

.relative {
  position: relative;
}

.hiddenSubmit {
  position: absolute;
  z-index: 10;
  border: none;
  outline: none;
  background-color: transparent;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.center {
  text-align: center;
}

.slider-wrapper {
  background-color: white;
}

.slider {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  overflow: auto;
}

.slider .slide {
  border-radius: 50%;
  border: 5px #004dff;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
}

.slider .slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fix-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed;
top: 120px;
  right: 80px; */
  width: fit-content;
  margin-bottom: 20px;
  margin-right: 20px;
  background-color: #ff6b00;
  color: #004dff;
  padding: 10px 15px;
  border-radius: 20px;
  overflow: hidden;
  gap: 10px;
}

.fix-phone a {
  text-decoration: none;
  color: #004dff;
  font-size: 16px;
}

.fix-phone img {
  width: 20px;
  height: 20px;
}

footer {
  padding: 20px 60px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  background-color: #004dff;
  width: 100%;
  color: white;
  align-items: center;
}

.fix-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed;
top: 120px;
  right: 80px; */
  width: fit-content;
  margin-bottom: 20px;
  margin-right: 20px;
  background-color: #ff6b00;
  color: #004dff;
  padding: 10px 15px;
  border-radius: 20px;
  overflow: hidden;
  gap: 10px;
}

.fix-phone a {
  text-decoration: none;
  color: #004dff;
  font-size: 16px;
}

.fix-phone img {
  width: 20px;
  height: 20px;
}

footer .right {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 15px;
  max-width: 1200px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer .logoName {
  font-weight: 900;
  font-size: 20px;
}

footer .timeWork {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timeWork .logo {
  width: 32px;
  height: 32px;
}

.timeWork .content span {
  display: block;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 400;
}

.timeWork .content p {
  font-size: 16px;
  font-weight: 900;
}
footer {
  gap: 100px;
}

footer .contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

footer .contact img {
  width: 25px;
  height: 25px;
}

footer .contact > div {
  justify-content: start;
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
  font-size: 16px;
}

footer .contact .phone {
  letter-spacing: 1px;
  word-spacing: 13px;
}

footer .contact > div > a {
  text-justify: auto;
}

.instagram {
  white-space: nowrap;
}

footer .images {
  display: flex;
  gap: 20px;
}

footer .images .box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  max-width: 70px;
  text-align: center;
}

footer .images .box img {
  width: auto;
  height: 35px;
}

footer .images .box p {
  font-size: 8px;
  font-weight: 700;
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.modal .content {
  width: 500px;
  max-width: 80%;
  padding: 60px 40px;
  background-color: #91b3fa;
  border-radius: 50px;
  margin: 20vh auto 0;
  font-size: 25px;
  color: white;
  text-align: center;
}

.modal button {
  margin-top: 50px;
  padding: 10px 30px;
  text-align: center;
  color: white;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 40px;
  border: none;
  background-color: #ff6b00;
}

@media screen and (max-width: 1300px) {
  footer {
    padding: 20px;
    gap: 10px;
  }
}
