:root {
  --white-color:#FDFFFC;
  --blue-color: #235789;
  --brown-color: #9E8576;
  --black-color: #161925;
  --light-blue-color: #9BA2FF;
}

p, div, a, textarea, input, button, span, h1, h2, h3, h4, h5, h6, b, li, ul, select {
  font-family: 'IRANSansXFaNum' !important;
  border:0;
  padding: 0;
  margin:0;
}

p {
  margin: 0 !important;
}

html, body {
  padding: 0 !important;
  margin:0 !important ;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

img.logo {
  filter: brightness(0) invert(1);
}

input[type=text].input, input[type=tel].input, select.input, textarea.input {
  border-radius: 10px;
}

.wrapper {
  margin: 7% 18vw 100vh 0;
  width: 78vw;
}

h1 {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
}

h2 {
  font-size: 2.3rem !important;
  font-weight: 800 !important;
}

.button1 {
  background: var(--blue-color);
  color: var(--white-color);
  border-radius: 10px;
  transition: all 0.6s ease;
}

.button1:hover {
  background-color: #161925;
  color: var(--white-color);
}

.form, .form label {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Lazy Loader */
.lazy {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 768px) {
  .wrapper {
    margin: 25vw 6vw 100vh 4vw !important;
    width: 90vw;
    transition: filter 0.6s ease;
  }
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
}