::-moz-selection {
  color: #f9d4a3;
  background: #9b7749;
}
::selection {
  color: #f9d4a3;
  background: #9b7749;
}
:focus {
  outline: none;
}
* {
  margin: 0;
  padding: 0;
}
@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap");
@font-face {
  font-family: vazirmatn;
  src: url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap");
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 12rem;
  overflow-x: hidden;
}
html,
body,
button,
input,
optgroup,
a,
span,
form,
div,
ul,
li,
p,
strong,
em,
div,
h1,
h2,
h3,
h4,
h5,
h6,
section,
main,
select,
textarea {
  font-weight: 300;
  font-family: vazirmatn;
  scroll-margin-top: 12rem; /* 10px */
}
/*    start code here   */
button,
a {
  cursor: pointer;
}

.wrapper {
  position: relative;
}
.mobile {
  display: none;
}
.tablet {
  display: none;
}
.success-request.hide {
  opacity: 0;
}
.success-request {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -20px;
  transition: opacity 0.5s linear;
}
.success-request div {
  color: #18b94f;
  background: #d4ffe3;
  text-align: center;
  padding: 7px 57px;
  border-radius: 12px;
  width: 345px;
  height: 42px;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
/* Marquee styles */
.marquee {
  position: relative;
  display: flex;
  overflow: visible;
  user-select: none;
  gap: 10px;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  min-width: 1500px;
  animation: scroll 10s linear infinite;
  height: 40px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.marquee--fit-content {
  max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 20;
  left: 0;
}

.marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

.marquee__content > * {
  flex: 0 0 auto;
  color: white;
  margin: 2px;
  padding: 0rem 2rem;
  text-align: center;
  max-width: 300px;
}
@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + 20px));
  }
  to {
    transform: translateX(0);
  }
}

select {
  height: 50px;
  border-radius: 20px;
  background-image: url("../images/arrow.svg");
  background-position: 2rem center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  background-repeat: no-repeat;
  appearance: none !important;
  padding: 10px 10px 10px 2rem !important;
  border: 1px solid #DFDFF8;
}

select.error {
  border: 1px solid rgb(255, 146, 146);
}
input {
  border-radius: 10px;
  flex-grow: 1;
  height: 43px;
  padding: 10px;
  color: #4946d5;
  font-size: 16px;
  border: 1px solid #DFDFF8;
}

input.error {
  border: 1px solid rgb(255, 146, 146);
}
::placeholder {
  color: #b0afd6;
}
#sec_1 {
  height: 850px;
  background-color: #ffe174;
  background-repeat: no-repeat;
  /* background-image: url(../images/back.png);
  background-size: 70vw 850px;
  background-position: -180px;
  background-repeat: no-repeat; */
}

.heroImgContainer {
  display: flex;
  align-items: center;
  justify-content: end;
  position: absolute;
  top: 0;
  left: 0;
  height: 850px;
  overflow: hidden;
  z-index: 1;
}
.bigdesktop {
  display: block;
}
.smalldesktop {
  display: none;
}
#sec_1 .content {
  width: 50%;
}
#sec_1 .nav {
  margin-top: 20px;
  margin-right: 10%;
  padding: 10px 20px;
  border-radius: 17px;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  transition-delay: 1s;
  transition: background-color 0.2s linear;
}
#sec_1 .nav div:nth-child(1) {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 60px;
}
#sec_1 .nav:not(.scrolled) div.phone_number {
  display: none;
}
#sec_1 .nav div.phone_number {
  color: #4946d5;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
#sec_1 .nav div.phone_number a {
  font-weight: 600;
  font-size: 16px;
}

#sec_1 .nav:not(.scrolled) {
  position: absolute;
}
/* Sidebar styles */
/* Initial Sidebar State */
.sidebar {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  padding-top: 60px;
  z-index: 1000;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  /* transform: translateX(-100%); Initially hidden */
  transition: transform 0.1s ease, opacity 0.1s ease; /*Smooth transition for transform and background color */
}

/* Keyframes for Slide In and Slide Out Animations */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 100;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 100;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/* Sidebar Shown State */
.sidebar.show {
  animation: slideIn 0.5s forwards;
  height: 100vh;
  width: 100vw;
  background-color: white;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding-top: 65px;
  padding-right: 40px;
}

/* Sidebar Hidden State (to trigger slide-out) */
.sidebar.hide {
  display: none;
}

/* Styling for the inner content when sidebar is shown */
.sidebar.show div {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  color: #4946d5;
  gap: 20px;
  padding-top: 65px;
  padding-right: 40px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 10px 15px;
  text-align: right;
  color: white;
  cursor: pointer;
}
.sidebar.show ul li {
  color: #4946d5;
  font-size: 24px;
  font-weight: 500;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  cursor: pointer;
  color: white;
}

.nav.scrolled {
  z-index: 1;
  position: fixed;
  background-color: white;
  -webkit-box-shadow: 1px 12px 106px -35px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 12px 106px -35px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 12px 200px 1px rgba(0, 0, 0, 0.45);
}

#sec_1 .nav ul {
  display: flex;
  gap: 60px;
}

#sec_1 .nav ul {
  display: flex;
  gap: 60px;
}
#sec_1 .content .hero {
  width: 80%;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
#sec_1 .content .heroContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec_1 .content .hero .title {
}
#sec_1 .content .hero .title h1 {
  color: #4946d5;
  font-weight: 600;
  font-size: 30px;
  text-align: right;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

#sec_1 .content .hero .title p {
  padding-top: 20px;
  color: #2e2e2e;
  font-weight: 300;
  text-align: right;
  font-size: 30px;
  line-height: 45px;
}

#sec_1 .content .hero .title p span {
  color: #4946d5;
  font-weight: 600;
  font-size: 30px;
}
#sec_1 .content .hero .white-buttons {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
#sec_1 .content .hero .white-buttons div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
}

#sec_1 .content .hero .white-buttons div div {
  width: 400px;

  flex-shrink: 1;
  border-radius: 27px 0px 0px 27px;
  background: linear-gradient(
    90deg,
    #efefff 0%,
    #fff 78%,
    rgba(255, 224, 116, 0) 100%
  );
}
#sec_1 .content .hero .white-buttons div div span {
  color: #4946d5;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-left: 10px;
}

#sec_1 .content .hero .white-buttons div div h5 {
  color: #4946d5;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.repair-request .hover {
  display: none;
}
.repair-request:hover .hover {
  display: inline-block;
}
.repair-request:hover .not-hover {
  display: none;
}
.button {
}
.repair-request {
  min-width: 351px;
  border-radius: 27px;
  background-color: #4946d5;
  border: none;
  color: white;
  height: 58px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s linear;
  -webkit-box-shadow: 1px 12px 20px 0.5px rgba(73, 70, 213, 0.25);
  -moz-box-shadow: 1px 12px 20px 0.5px rgba(73, 70, 213, 0.25);
  box-shadow: 1px 12px 20px 0.5px rgba(73, 70, 213, 0.25);
}
.repair-request:hover {
  background-color: white;
  color: #4946d5;
}
.repair-request .hover {
  display: none;
}
.repair-request:hover .hover {
  display: inline-block;
}
.repair-request:hover .not-hover {
  display: none;
}

.container {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

#sec_2 {
  display: flex;
  flex-direction: column;
  justify-items: center;
  aling-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
#sec_2 .container .boxes {
  padding-top: 47px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  /* flex-wrap: wrap; */
}
#sec_2 .container .boxes .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 27px;
  background: #fff9e4;
  width: 27%;
  flex-wrap: wrap;
  height: 179px;
  flex-shrink: 1;
}
#sec_2 .container .boxes .box h6 {
  color: #6d5910;
  text-align: center;
  /* font-family: IRANSans; */
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}
#sec_2 .container h3 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#sec_2 .container .boxes .box img {
  height: 67.957px;
}
#sec_2 .form {
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}
#sec_2 .form .card {
  position: absolute;
  justify-self: self-start;
  align-self: self-start;
}
#sec_2 .form .card img {
  position: relative;
  top: -75px;

  /* right: -22vw; */
}
#sec_2 .form .success-request:not(.hide) {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -70px;
}
#sec_2 .step {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sec_2 .form .step-1 {
  flex-wrap: wrap;

  width: 100%;
}
#sec_2 .form .step-2 {
  flex-wrap: wrap;

  width: 100%;
  display: none;
}

#sec_2 .form .selects {
  width: 74%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#sec_2 .form h4 {
  color: #000;
  text-align: center;
  /* font-family: IRANSans; */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}
#sec_2 .form .selects select {
  /* width: 49%; */
  min-width: 200px;
  flex-grow: 2;
  height: 54px;
}
#sec_2 .form .selects input {
  height: 54px;
}
#sec_2 .form .buttonContainer {
  width: 25%;
  /* min-width: 300px;
  flex-grow: 1; */
}
#sec_2 .form .buttonContainer .repair-request {
  min-width: 100%;
  font-size: 16px;
  font-family: vazirmatn;
  height: 54px;
}


#sec_3 {
  display: flex;
  align-items: center;
  justify-items: center;
}
#sec_3 .container {
}
#sec_3 .container h5 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#sec_3 .container h6 {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 10px 0px;
}

#sec_3 .container .call-buttons {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
}

#sec_3 .container .call-buttons button {
  width: 146px;
  height: 36px;
  flex-shrink: 1;
  color: #4946d5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.198px;
  display: inline-flex;
  padding: 3px 0px 0px 2px;
  justify-content: center;
  align-items: center;
  background-color: #eaeaff;
  border: none;
  border-radius: 10px;
  gap: 10px;
}

#sec_3 .container .product-boxes {
  width:100%;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#sec_3 .container .product-boxes .product-box {
  width: 24%;
  border-radius: 27px;
  padding: 30px 10px;
  margin-left: 3px;
  margin-bottom: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: border 0.1s linear;
}
#sec_3 .container .product-boxes .product-box:not(.selected):hover {
  border: 1px solid #4946d5;
}
#sec_3 .container .product-boxes .product-box .request {
  display: none;
}
#sec_3 .container .product-boxes .product-box:not(.selected) {
  border: 1px solid #dadada;
}
#sec_3 .container .product-boxes .product-box.selected {
  border: 1px solid #4946d5;
}

#sec_3 .container .product-boxes .product-box h5 {
  padding-top: 10px;
  font-weight: 300;
}

#sec_3 .container .product-boxes .product-box.selected h5 {
  color: #4946d5;
}
#sec_4 {
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
  max-width: 100vw;
  overflow-x: hidden;
}

#sec_4 h4 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}
/* .marquee {
  width: 100%;
  overflow: hidden;
} */

/* .marquee img {
   padding-right: 30px; 
} */
#sec_5 {
  padding: 100px 0px;
  display: flex;
  align-items: center;
  justify-items: center;
}
#sec_5 .container h4 {
  color: #000;
  text-align: center;
  /* font-family: IRANSans; */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

#sec_5 .container .content {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
}
#sec_5 .container .content .right {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#sec_5 .container .content .right img {
  border-radius: 31px;
  width: 100%;
}
#sec_5 .container .content .right p {
  padding-top: 10px;
  color: #525252;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#sec_5 .container .content .left {
  padding-right: 100px;
  width: 48%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-items: center;
  gap: 30px;
}
#sec_5 .container .content .left img {
  height: 411px;
  width: 370px;
  object-fit: contain;
}

#sec_5 .container .content .left .item {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
}

#sec_5 .container .content .left .item div {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
}
#sec_5 .container .content .left .item div span {
  color: #ffe074;
  opacity: 0.5;
  text-align: right;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 75px */
  letter-spacing: -0.55px;
}
#sec_5 .container .content .left .item div h6 {
  color: #484848;

  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: -0.22px;
}

#sec_6 {
  /* padding-top: 90px; */
  padding-bottom: 36px;
}
#sec_6 .not-tablet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
#sec_6 .container {
  padding-bottom: 36px;
}
#sec_6 .container h4 {
  color: #1e1e1e;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 37.5px */
  letter-spacing: -0.275px;
}
#sec_6 .container h5 span {
  font-weight: 600;
}
#sec_6 .container h5 {
  color: #525252;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#sec_6 .container .content {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding-top: 30px;
}
#sec_6 .sub_form {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 25px;
}
#sec_6 .sub_form:not(.no_border) {
  border-bottom: 1px #e5e5e5 solid;
}
#sec_6 .sub_form span {
  color: #1e1e1e;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.176px;
}

#sec_6 .sub_form_option {
  width: 23.5%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 7px;
  padding: 15px;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  cursor: pointer;
  height: 55px;
  transition: all 0.2s linear;
}

#sec_6 .sub_form_option.brand {
  width: 19%;
}

#sec_6 .sub_form_option:not(.selected) {
  border: 1px solid #dfdff8;
  background: #fff;
  color: #4946d5;
}

#sec_6 .sub_form_option.selected {
  border: 1px solid #4946d5;
  background-color: #4946d5;
  color: #ffffff;
}

#sec_6 .sub_form_option.selected span {
  color: #ffffff;
}
#sec_6 .sub_form_option.selected img.selected {
  visibility: visible;
}
#sec_6 .sub_form_option.selected img.not_selected {
  visibility: hidden;
  display: none;
}
#sec_6 .sub_form_option:not(.selected) img.selected {
  visibility: hidden;
  display: none;
}
#sec_6 .sub_form_option:not(.selected) img.not_selected {
  visibility: visible;
}
#sec_6 .sub_form_option:not(.selected) span {
  color: #4946d5;
}
#sec_6 .sub_form_options {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#sec_6 .sub_form_options.brands {
  gap: 5px;
}
#sec_6 .container .content .right {
  width: 69%;
}
#sec_6 .container .content .right .chooseDevic {
  border-bottom: 1px #e5e5e5 solid;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 30px;
}

#sec_6 .container .content .right .chooseDevic .devices .device {
  width: 178px;
  height: 50px;
}
#sec_6 .container .content .right .chooseBrand .brands .brand {
  /* width: 141px; */
  height: 43px;
  cursor: pointer;
}
#sec_6 .container .content .right .infoForm .inputs {
  display: flex;
}

#sec_6 .repair-request {
  border-radius: 10px;
  width: 248px;
  height: 52px;
}
#sec_6 .container .content .left {
  width: 29%;
}
#sec_6 .container .content .left img {
  height: 411px;
  width: 370px;
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .footer_container {
  width: 90%;
  background-color: #ffe074;
  border-radius: 10px 10px 0px 0px;
  padding: 46px 130px 40px 130px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

#footer .footer_container .footer_col {
}

#footer .footer_container .footer_col {
  width: 25%;
  /* padding: 0 30px 0 0px; */
}

#footer .footer_container .footer_col p {
  color: #4a4a4a;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 27px */
  letter-spacing: -0.198px;
}

#footer .footer_container .first_col {
  width: 40%;
  height: 100%;
  display: flex;
  padding-top: 40px;
  flex-direction: column;
}
#footer .footer_container .first_col img {
  height: 60px;
  width: 168px;
}
#footer .footer_container .second_col ul {
  padding-top: 20px;
}
#footer .footer_container .second_col ul li {
  color: #4a4a4a;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 10px;
}

#footer .footer_container .third_col {
  width: 30%;
  /* padding: 0 30px 0 0px; */
}
#footer .footer_container .third_col .location {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: start;
}
#footer .footer_container .third_col .location div span {
  color: #4a4a4a;
  text-align: start;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#footer .footer_container .footer_col .header {
  width: 20%;
  color: #1e1e1e;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.198px;
}
#footer .footer_container .footer_col .call_buttons {
  padding-top: 33px;
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
}

#footer .footer_container .footer_col .call_buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* width: 400px; */
  border-radius: 9px;
  width: 180px;
  height: 40px;
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.22px;
}

#footer .footer_container .footer_col .call_buttons button.accent {
  background: #4946d5;
  color: white;
}
#footer .footer_container .footer_col .call_buttons button.secondary {
  border: 1px solid #4946d5;
  color: #4946d5;
  background-color: transparent;
}
