@media (max-width: 767px) {
  :root {
    --border-radius: var(--mobile-radius);
  }
}
/* General Resets */
body {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

input,
button,
a,
select,
textarea {
  font-family: inherit;
}

input:focus,
button:focus,
a:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input::-moz-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  outline: 0;
  font-family: inherit;
}

a,
img,
button,
input,
select {
  transition: all 0.3s ease;
}

[role=button] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

input {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fa-snapchat::before {
  content: "\f2ac";
}

.fa-facebook::before {
  content: "\f39e";
}

.fa-linkedin::before {
  content: "\f0e1";
}

.la-snapchat::before {
  content: "\f2ac";
}

.la-facebook::before {
  content: "\f39e";
}

.la-linkedin::before {
  content: "\f0e1";
}

body {
  font-family: "Vazirmatn", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #080808;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #1263dc #f2f2f2;
}

body::-webkit-scrollbar {
  background-color: #f2f2f2;
  width: 8px;
  height: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #1263dc;
  border-radius: 4px;
}

.overflow {
  overflow: hidden;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
}

.container-fluid {
  padding: 0 30px;
  width: 100%;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding: 0 20px;
  }
}

.select-content {
  position: relative;
}
.select-content::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 28px;
  font-size: 14px;
  color: #080808;
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f107";
}

.img-contain {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.en {
  display: inline-block;
  direction: ltr;
}

iframe {
  width: 100%;
  height: 100%;
}

.QA {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, rgb(14.9142857143, 82.0285714286, 182.2857142857) 0%, rgb(6.4285714286, 35.3571428571, 78.5714285714) 100%);
}
@media (max-width: 991px) {
  .QA {
    padding: 40px 0;
  }
}
.QA .QA-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (max-width: 991px) {
  .QA .QA-cont {
    gap: 25px;
  }
}
.QA .QA-cont .title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 991px) {
  .QA .QA-cont .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .QA .QA-cont .title {
    font-size: 36px;
  }
}
.QA .QA-cont .QA-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 870px;
}
.QA .QA-cont .QA-grid .QA-item {
  border: 2px solid rgb(13.3714285714, 73.5428571429, 163.4285714286);
  border-radius: 32px;
  padding: 45px 57px;
  display: flex;
  gap: 25px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .QA .QA-cont .QA-grid .QA-item {
    padding: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .QA .QA-cont .QA-grid .QA-item {
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    gap: 15px;
  }
}
.QA .QA-cont .QA-grid .QA-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(16.0714285714, 88.3928571429, 196.4285714286) 0%, rgb(8.3571428571, 45.9642857143, 102.1428571429) 100%);
  border-radius: 32px;
  z-index: -1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .QA .QA-cont .QA-grid .QA-item::before {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .QA .QA-cont .QA-grid .QA-item::before {
    border-radius: 16px;
  }
}
.QA .QA-cont .QA-grid .QA-item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgb(13.3714285714, 73.5428571429, 163.4285714286);
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 0;
  padding-top: 1px;
}
@media (max-width: 767px) {
  .QA .QA-cont .QA-grid .QA-item .num {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}
.QA .QA-cont .QA-grid .QA-item .num::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgb(14.9142857143, 82.0285714286, 182.2857142857) 0%, rgb(6.4285714286, 35.3571428571, 78.5714285714) 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.QA .QA-cont .QA-grid .QA-item .Q {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .QA .QA-cont .QA-grid .QA-item .Q {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .QA .QA-cont .QA-grid .QA-item .Q {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.QA .QA-cont .QA-grid .QA-item .A {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .QA .QA-cont .QA-grid .QA-item .A {
    font-size: 12px;
  }
}
.QA .QA-cont .QA-grid .QA-item:hover {
  box-shadow: 0px 12px 20px 0px rgba(255, 255, 255, 0.2509803922);
  border: 2px solid #ffffff;
  background-color: #1263dc;
}
.QA .QA-cont .QA-grid .QA-item:hover::before {
  opacity: 0;
}
.QA .QA-cont .QA-grid .QA-item:hover .num {
  color: #1263dc;
  background-color: #fff;
}
.QA .QA-cont .QA-grid .QA-item:hover .num::before {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */