* {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-margin-top: 75px;
}

:root {
  --navy: #00326b;
  --blue: #2b9af1;
  --ink: #181b1d;
  --snow: #ecf3f7;
  --mint: #e6f6f2;
  --grey: #e8e8e8;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --maxw: 1280px !important;
}

h1 {
  margin: 0.3rem 0 0.6rem;
}

.container {
  max-width: var(--maxw);
}

/* --------------------- Header --------------------- */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--grey);
  padding: 0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
}
.header-content .logo {
  z-index: 1001;
  font-size: 0;
}
.header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
.header-content nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}
.header-content nav .btn {
  position: absolute;
  right: 28px;
  padding: 7px 14px;
  /*  margin-left: 10px; */
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* --------------------- Hero --------------------- */
.hero-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--grey);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.92)), color-stop(44%, rgba(255, 255, 255, 0.86)), color-stop(70%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 44px 28px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: 0.5s fadeIn forwards;
          animation: 0.5s fadeIn forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.hero-bg.bg-1 {
  background-image: url("../assets/images/milad-fakurian-GJKx5lhwU3M-unsplash.jpg");
}
.hero-bg.bg-2 {
  background-image: url("../assets/images/greg-rosenke-QhNStezFDNU-unsplash.jpg");
  background-position: 0 20%;
}

/* --------------------- Animations --------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --------------------- Topbar --------------------- */
.topbar {
  display: none !important;
}

/* --------------------- Aside --------------------- */
aside.sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  top: 75px;
}

/* --------------------- Buttons --------------------- */
.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid var(--navy) !important;
}

.btn.primary {
  background: var(--blue) !important;
  color: #fff;
  border-color: var(--blue) !important;
  -webkit-box-shadow: var(--shadow) !important;
          box-shadow: var(--shadow) !important;
}

.btn.secondary {
  background: #fff;
  color: var(--navy);
}

/* --------------------- Footer --------------------- */
footer {
  padding: 0;
  width: 100%;
  margin: 0 auto;
  font-size: 14px !important;
  border-top: 1px solid var(--grey);
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 28px;
  margin: 0 auto;
  padding: 28px;
  padding-top: 40px;
  margin-bottom: 20px;
  max-width: 1280px;
}
footer .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
footer .footer-content-item h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #00326b;
}
footer .footer-copyright {
  text-align: center;
  padding: 10px;
}

/* --------------------------------------------------- Form --------------------------------------------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  border: 1px solid var(--grey);
  border-radius: 18px;
  padding: 28px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
form input,
form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  background-color: rgb(245, 245, 245);
  color: black;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.562);
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.562);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.562);
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.562);
}
form input::placeholder,
form textarea::placeholder {
  color: rgba(0, 0, 0, 0.562);
}
form textarea {
  min-height: 250px;
}
form input[type=submit] {
  width: auto;
  cursor: pointer;
  background-color: var(--navy);
  color: white;
}
form input[type=submit]:hover {
  background-color: #e8e8e8;
}

.privacy-checkbox {
  font-size: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.privacy-checkbox a {
  color: var(--blue);
  text-decoration: underline;
}
.privacy-checkbox input {
  width: auto;
}

/* --------------------------------------------------- Article --------------------------------------------------- */
article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* --------------------------------------------------- Media Queries --------------------------------------------------- */
@media screen and (max-width: 1480px) {
  header .header-content nav .btn {
    position: static;
  }
}
@media screen and (max-width: 992px) {
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 14px;
    right: 28px;
  }
  .header-content nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .header-content nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
  }
  .header-content nav .btn {
    margin-top: 14px;
    padding: 12px 16px;
  }
  .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  footer .footer-content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media only screen and (max-width: 600px) {
  form .form-row {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=styles.css.map */