:root {
  --primary: #ff9900;
  --secondary: #0022c8;
  --color-3: #ff5f00;
  --color-4: #8f398e;
  --color-5: #007aff;
  --color-6: #2F3841;
  --color-7: #000520;
  --color-8: #00B058;
  --color-9: #f0f2fc;
  --color-10: #e2e6f9;
  --bg: rgba(240, 127, 27, 0.1);
  --body: #2B2A28;
  --text: #3a3a3a;
  --border: #D4D4D4;
  --white: #ffffff;
  --black: #000000;
  --font-family: "Manrope", serif;
  --font-body: 20px;
  --font-text: 18px;
  --h1: 44px;
  --h2: 36px;
  --h3: 28px;
  --h4: 22px;
  --h5: 20px;
  --h6: 18px;
  --line-height: 140%;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  font-size: var(--font-body);
  line-height: var(--line-height);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  color: var(--body);
  line-height: var(--line-height);
}

.link-btn {
  color: var(--secondary) !important;
  font-size: 22px;
}

.btn {
  padding: 10px 30px;
  border-radius: 99px;
}

.btn-primary {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
  border-color: var(--secondary) !important;
}

.btn-primary:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

.btn-dark {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

.btn-dark:hover {
  background-color: var(--text) !important;
  color: var(--white) !important;
  border-color: var(--text) !important;
}

img {
  max-width: 100%;
}

p:last-child {
  margin-bottom: 0px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header */
.site-header {
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  background-color: #fff;
}

.header-navigation a {
  color: var(--black);
  font-weight: 700;
}

.header-navigation a:hover,
.header-navigation a:focus {
  color: var(--primary);
}

.mobile-menu.btn {
  padding: 8px 10px 10px 10px;
  background-color: var(--primary);
  border-radius: 4px;
  color: var(--white);
  outline: none !important;
  border-width: 0px !important;
}

.mobile-menu.btn:active {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-menu svg {
  width: 30px;
}

@media screen and (min-width: 992px) {
  .mobile-menu.btn {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  header.site-header .container {
    max-width: 100%;
  }
  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    display: none !important;
  }
  .site-navigation.active {
    display: flex !important;
    width: 100%;
  }
  .header-navigation.gap-md-5 {
    gap: 20px !important;
  }
  .header-navigation a {
    width: 100%;
    text-align: center;
  }
}
/* Heading */
.section-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Hero Section */
.hero-section {
  padding-top: 80px;
  padding-bottom: 0px;
}
.hero-caption {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.hero-caption h1 {
  font-weight: 900;
  font-size: var(--h1);
}
.hero-caption h1 span {
  color: var(--primary);
}
/* Social Media */
.hero-social-media {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-heading h2 {
  font-size: var(--h2);
  font-weight: 800;
}
.section-heading h2 span {
  color: var(--primary);
}
.section-heading h3 span {
  color: var(--primary);
}
.section-heading h3 {
  font-size: var(--h3);
  font-weight: 800;
  max-width: 675px;
}
.section-heading p {
  font-size: var(--h6);
}
.qo-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.qo-card.wide-card {
  flex-direction: row;
  align-items: center;
  gap: 60px;
  background-color: var(--color-9);
  padding: 50px;
  border-radius: 40px;
}
.qo-card .qo-card--image {
  flex: 1;
}
.qo-card .qo-card--caption {
  flex: 1;
}
.qo-card--caption h2 {
  font-size: var(--h2);
  font-weight: 800;
}
.qo-card--caption h2 span {
  color: var(--secondary);
}
.qo-card--caption h3 {
  font-size: var(--h3);
  font-weight: 700;
  margin-top: 25px;
}

/* Solutions */
.solutions-section {
  padding-top: 0px;
  padding-bottom: 80px;
}
.qo-text-with-icon {
  background-color: var(--color-7);
  color: var(--white);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.qo-text-with-icon h3 {
  color: var(--white);
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 24px;
}
.qo-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-section {
  background-color: var(--color-9);
  padding-top: 80px;
  padding-bottom: 80px;
}
.qo-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--color-10);
  padding: 50px;
  border-radius: 40px;
  height: 100%;
}
.products-section .qo-card {
  text-align: center;
}
.products-section .qo-card p {
  flex-grow: 1;
  margin-bottom: 10px;
}
.products-section .qo-card h3 {
  font-weight: 800;
  margin-bottom: 0px;
}

.benefits-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.benefits-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.benefits-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.benefits-content h2 {
  font-size: var(--h2);
  font-weight: 700;
  text-align: center;
  max-width: 885px;
}
.benefits-section h3 span {
  color: var(--color-8)
}
.benefits-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  width: calc(100%* 1 / 3 - 17px);
}
.benefits-icon {
  font-size: 30px;
  transform: translateY(9px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-8);
  color: var(--white);
  border-radius: 99px;
}
.benefits-item h3 {
  font-size: 24px;
  font-weight: 800;
}
.benefits-item p {
  line-height: 150%;
}
.site-footer {
  background-color: var(--color-9);
  padding-top: 80px;
  padding-bottom: 15px;
}
.site-footer p,
ul.footer-menu a {
  font-size: 16px;
}
.site-footer h3 {
  font-size: 22px;
  font-weight: 700;
}
.site-footer .footer-item p {
  max-width: 440px;
}
ul.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.footer-menu a {
  color: currentColor;
}
ul.footer-menu a:hover {
  color: var(--color-3);
}
.site-header-right {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .hero-section .row {
    gap: 50px;
  }
  .qo-card.wide-card {
    flex-direction: column;
  }
  .hero-section .col-lg-6 {
    text-align: center;
    width: 100%;
  }
  .hero-caption {
    align-items: center;
  }
  .solutions-section .col-lg-3 {
    width: 50%;
    padding: 10px;
  }
  .benefits-content .benefits-items .benefits-item {
    width: calc(100%* 1 / 2 - 13px);
  }
  .products-section .row {
    gap: 30px;
  }
  .site-header-right {
    gap: 10px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --font-body: 16px;
    --font-text: 18px;
    --h1: 28px;
    --h2: 24px;
    --h3: 20px;
    --h4: 18px;
    --h5: 18px;
    --h6: 16px;
    --line-height: 140%;
  }
  .site-header .link-btn {
    display: none;
  }
  .qo-card.wide-card {
    flex-direction: column;
  }
  .solutions-section .col-lg-3 {
    width: 100%;
  }
  .site-header .site-logo {
    width: 100% !important;
    max-width: 125px;
    padding: 0;
  }
  .site-header .btn.btn-primary {
    padding: 6px 18px;
    font-size: 14px;
  }
  .mobile-menu.btn {
    padding: 6px 10px 9px 10px;
  }
  .mobile-menu svg {
    width: 24px;
  }
  .hero-section {
    padding-top: 60px;
  }
  .solutions-section {
    padding-bottom: 60px;
  }
  .hero-social-media {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .qo-card.wide-card {
    padding: 20px;
    border-radius: 20px;
    gap: 40px;
  }
  .qo-card--caption br {
    display: none;
  }
  .products-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .products-section .qo-card h3 {
    font-size: 18px;
  }
  .qo-card {
    padding: 20px;
  }
  .benefits-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .benefits-content .benefits-items .benefits-item {
    width: calc(100%* 1 / 1 - 0px);
  }
  .site-footer {
    padding-top: 60px;
  }
}