/* reset.scss */
* {
  margin: 0;
  padding: 0;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.row > * {
  margin: 0;
  padding: 0;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Rubik", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  cursor: pointer;
  color: #000 !important;
  text-decoration: none !important;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

#header {
  background-color: #fff;
}
#header.scrolled {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1019607843);
}
#header .header-grid {
  padding: 24px 0px;
}
#header .header-grid .navbar {
  padding: 0;
}
#header .header-grid .logo {
  display: grid;
  place-items: center;
}
#header .header-grid .logo img {
  width: 112px;
  height: 112px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  #header .header-grid .logo img {
    width: 70px;
    height: 70px;
  }
}
#header .header-grid .policy-link {
  justify-self: end;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.2s;
}
#header .header-grid .policy-link:hover {
  border-bottom: 1px solid currentColor;
}
#header .header-grid .policy-link.active {
  border-bottom: 1px solid currentColor;
}

#page-intro {
  padding: 120px 0 180px 0;
}
@media (max-width: 768px) {
  #page-intro {
    padding: 60px 0;
  }
}
#page-intro * {
  color: #fff;
}
#page-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  #page-intro .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#page-intro .intro-text {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 1.5rem;
}
#page-intro .intro-text .intro-logo {
  width: 25%;
  max-width: 150px;
  justify-self: start;
  align-self: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#page-intro .intro-text h1 {
  font-size: 88px;
  line-height: 1.1;
  margin: 0;
  justify-self: start;
}
@media (max-width: 768px) {
  #page-intro .intro-text h1 {
    font-size: 48px;
  }
}
#page-intro .intro-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  justify-self: start;
}
@media (max-width: 768px) {
  #page-intro .intro-text p {
    font-size: 16px;
  }
}
#page-intro .intro-image img {
  width: 100%;
  display: block;
}

#services * {
  color: #000;
}
#services .services-grid {
  display: grid;
  gap: 120px;
  align-items: center;
}
@media (max-width: 768px) {
  #services .services-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  #services .services-grid .services-text {
    order: 1;
  }
  #services .services-grid .services-image {
    order: 2;
  }
}
#services .services-grid__image-right {
  grid-template-columns: 6fr 7.3fr;
}
#services .services-grid__image-left {
  grid-template-columns: 7.3fr 6fr;
}
#services .services-image img {
  width: 100%;
}
#services .services-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

#counter {
  background-color: rgb(28, 6, 51);
  padding: 100px 0;
}
@media (max-width: 768px) {
  #counter {
    padding: 60px 0 80px;
  }
}
#counter * {
  color: #fff !important;
}
#counter .section-description {
  font-size: 20px;
  font-weight: 400;
}
#counter .d-flex {
  display: flex;
  flex-wrap: wrap;
}
#counter .counter-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
#counter .counter-card {
  display: grid;
  grid-template-rows: auto auto;
  text-align: center;
  gap: 12px;
}
#counter .section-title,
#counter .section-description {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#customers {
  color: #fff;
  padding: 80px 0 120px;
}
#customers .happy-customers {
  display: grid;
  row-gap: 40px;
}
#customers .happy-customers .section-title {
  text-align: center;
}
#customers .happy-customers .customer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media (max-width: 768px) {
  #customers .happy-customers .customer-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#customers .happy-customers .customer-cards .customer-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 20px;
  border-radius: 12px;
}
#customers .happy-customers .customer-cards .customer-card .customer-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#customers .happy-customers .customer-cards .customer-card .customer-content {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 36px;
}
#customers .happy-customers .customer-cards .customer-card .customer-content .section-description {
  margin: 0;
}
#customers .happy-customers .customer-cards .customer-card .customer-content .customer-name {
  justify-self: start;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: #ddd;
}
@media (max-width: 768px) {
  #customers {
    padding: 40px 0 60px;
  }
}

#download * {
  color: #fff;
}
#download .download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 992px) {
  #download .download-grid {
    grid-template-columns: 1fr;
  }
  #download .download-grid .download-content {
    order: 1;
    padding-right: 0;
    gap: 48px;
  }
  #download .download-grid .download-image {
    order: 2;
    padding-left: 0;
  }
}
#download .download-image {
  padding-left: 90px;
}
#download .download-image img {
  width: 100%;
  display: block;
}
#download .download-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 96px;
  padding-right: 120px;
}
#download .download-content .content-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}
#download .download-content .btn {
  width: 50%;
  color: #fff;
  background-color: #7634bf;
  border-radius: 50px;
  place-content: center;
  min-height: 50px;
}
#download .download-content .btn:hover {
  background-color: #5d1ba6;
}

footer {
  padding-bottom: 40px;
}
footer #footer {
  min-height: 335px;
  align-content: end;
}
footer #footer ul.social-media-links {
  display: flex;
  gap: 24px;
}
footer #footer .contact {
  font-size: 14px;
}
footer #footer .contact span {
  font-weight: 300;
}
@media (max-width: 768px) {
  footer #footer {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 20px;
  }
}

#privacy-policy {
  padding: 90px 0;
  width: 60vw;
  max-width: 820px;
  margin: auto;
}
#privacy-policy h2,
#privacy-policy h3,
#privacy-policy h4,
#privacy-policy p {
  margin-bottom: 32px !important;
}
#privacy-policy h2,
#privacy-policy h3,
#privacy-policy h4 {
  line-height: 1.1;
  font-weight: 700;
}
#privacy-policy p {
  line-height: 1.6;
  font-weight: 300;
}
#privacy-policy ul {
  list-style: disc;
}
#privacy-policy ul p {
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  #privacy-policy {
    padding: 80px 0;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

#success-message {
  padding: 40px 30px 100px !important;
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 26px;
  justify-items: center;
  text-align: center;
}
#success-message .message-title {
  font-size: 18px !important;
  color: green;
  font-weight: 700;
}
@media (max-width: 768px) {
  #success-message .message-title {
    font-size: 48px !important;
  }
}
#success-message .message-description {
  display: grid;
  row-gap: 26px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #000;
}
#success-message .message-description a {
  text-decoration: underline !important;
  color: inherit;
}
#success-message .contact {
  color: rgb(32, 8, 61);
}
@media (max-width: 768px) {
  #success-message .contact {
    font-size: 36px !important;
  }
}

:root {
  --font-primary: Rubik, sans-serif;
}

body {
  font-family: var(--font-primary) !important;
  padding-top: 160px;
}

.background-primary {
  background-color: #270a47;
}

.background-white {
  background-color: #ffffff;
}

.background-light {
  background-color: #e8e8e8;
}

.section {
  padding: 60px 0 80px 0;
}

.rounded-image {
  border-radius: 5%;
}

.section-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: normal;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: normal;
}

em {
  font-size: 14px;
  font-weight: 300;
}

.d-flex {
  flex-wrap: wrap;
}

h1 {
  font-size: 88px !important;
}

h2 {
  font-size: 60px !important;
}

h3 {
  font-size: 48px !important;
}

h4 {
  font-size: 32px !important;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1224px !important;
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 118px;
  }
  .container {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }
  .section-title {
    font-size: 36px;
  }
  .section-description {
    font-size: 14px;
  }
  h1 {
    font-size: 48px !important;
  }
  h2 {
    font-size: 36px !important;
  }
  h3 {
    font-size: 32px !important;
  }
  h4 {
    font-size: 28px !important;
  }
}/*# sourceMappingURL=style.css.map */