html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  scroll-behavior: smooth;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  padding: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}
body * {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content {
  background: #3b64d7;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: calc(100vh - 40px);
}
.main-content .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0 100px 0;
  height: calc(100vh - 40px);
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
}
.main-content .container h1 {
  color: white;
  font-size: 70px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.main-content .container h1 span {
  color: #ebf9b4;
}

header {
  position: fixed;
  top: 20px;
  z-index: 999;
  left: 0;
  width: 100%;
}
header .container {
  display: flex;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0;
}
header .container ul {
  display: flex;
}
header .container ul li {
  margin-right: 30px;
}
header .container ul li a {
  color: white;
  font-size: 18px;
  font-weight: 300;
}
header .container ul li a:hover {
  color: #ebf9b4;
}
header .container ul li:last-child {
  margin-right: 0;
}
header .container .beta-request {
  background: #ebf9b4;
  font-size: 16px;
  cursor: pointer;
  padding: 20px 30px;
  border-radius: 50px;
  transition: all 0.5s ease;
}
header .container .beta-request:hover {
  border-radius: 20px;
}
header .logo {
  width: 100px;
}
header .logo-black {
  display: none;
}
header.scrolled {
  background: white;
  top: 0;
}
header.scrolled ul li a {
  color: black;
}
header.scrolled .logo {
  display: none;
}
header.scrolled .logo-black {
  display: block;
  width: 100px;
}

.main-sc {
  width: 35vw;
  position: absolute;
  right: -2px;
  bottom: -1px;
}

.promo-b {
  position: absolute;
  background: white;
  right: 20vw;
  top: 38vh;
  border-radius: 30px;
  padding: 20px;
  background: linear-gradient(45deg, #f1f1f1, white);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  z-index: 9;
  box-sizing: border-box;
  backdrop-filter: blur(40px);
  transition: all 0.5s ease;
}
.promo-b img {
  width: 300px;
}

.beta {
  background: #6c8eeb;
  color: white;
  padding: 15px 30px;
  border-radius: 36px;
}

.marquee {
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}
.marquee img {
  width: 40px;
  height: 40px;
}

.marquee div {
  display: flex;
  column-gap: 20px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.marquee span {
  font-size: 50px;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.additional {
  background: #ebf9b4;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
  font-weight: 300;
}

.features .container, .analytics .container, .testimonials .container {
  flex-direction: column;
  align-items: center;
  padding: 75px 0;
}

#testimonials h2 {
  margin-bottom: 50px;
}

.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 180px;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 1000%; /* Adjust based on the number of items */
  animation: scroll 40s linear infinite;
  gap: 30px;
}

.feedback-card {
  flex: 1 0 20%; /* 5 items visible at once */
  box-sizing: border-box;
  padding: 60px 20px 20px 20px;
  background: linear-gradient(45deg, rgba(241, 241, 241, 0.2117647059), white);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  border-radius: 20px;
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  z-index: 9;
  box-sizing: border-box;
  backdrop-filter: blur(40px);
  transition: all 0.5s ease;
}
.feedback-card > p {
  font-size: 24px;
  line-height: 1.4;
}
.feedback-card > div p:first-child {
  font-weight: 600;
  margin-top: 20px;
}
.feedback-card > div p:last-child {
  margin-top: 5px;
  font-size: 14px;
}
.feedback-card:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(http://localhost:63342/applytix/assets/img/quote.svg) no-repeat;
  background-size: 45px;
  position: absolute;
  top: 15px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#testimonials .container {
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}

#analytics .container {
  padding: 200px 0;
  flex-direction: row;
  align-items: center;
  display: flex;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#analytics .container > div {
  width: 60%;
  padding-right: 50px;
}
#analytics .container img {
  width: 500px;
}
#analytics p {
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 20px;
}
#analytics h2 {
  margin-bottom: 30px;
}

.sections-switch {
  display: flex;
  margin-top: 30px;
  align-items: center;
}
.sections-switch li {
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid black;
  margin-right: 20px;
  cursor: pointer;
}
.sections-switch li:last-child {
  margin-right: 0;
}
.sections-switch li.active {
  background: #ebf9b4;
  border-color: #ebf9b4;
}

.fast {
  background: #ebf9b4;
  border-radius: 20px;
  padding: 100px 0;
}
.fast .container {
  flex-direction: row;
}
.fast .container > div {
  width: 50%;
  padding: 0 20px;
}
.fast .container > div .white-block:nth-child(2) {
  margin-top: 20px;
}

.reliable {
  background: #b4d0f9;
  border-radius: 20px;
  padding: 100px 0;
}
.reliable .container {
  flex-direction: row;
}
.reliable .container > div {
  width: 50%;
  padding: 0 20px;
}
.reliable .container > div .white-block:nth-child(2) {
  margin-top: 20px;
}
.reliable .container > div .white-block img {
  background: #b4d0f9;
}
.reliable .container .white-block.black-block h3, .reliable .container .white-block.black-block p {
  color: #b4d0f9;
}

section.hidden {
  display: none;
}

.customizable {
  background: #ebf9b4;
  border-radius: 20px;
  padding: 100px 0;
}
.customizable .container {
  flex-direction: row;
}
.customizable .container > div {
  width: 50%;
  padding: 0 20px;
}
.customizable .container > div .white-block:nth-child(2) {
  margin-top: 20px;
}

.left-col .white-block {
  height: 100%;
}

.white-block {
  background: white;
  padding: 30px;
  border-radius: 30px;
}
.white-block img {
  max-width: 75px;
  padding: 10px;
  background: #ebf9b4;
  border-radius: 50%;
  margin-bottom: 20px;
}
.white-block h3 {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 20px;
}
.white-block p {
  line-height: 1.6;
  color: #303033;
  font-size: 15px;
  margin-bottom: 20px;
}
.white-block.black-block {
  background: #13132a;
}
.white-block.black-block h3, .white-block.black-block p {
  color: #ebf9b4;
}

#testimonials {
  background: #f1f1f1;
  border-radius: 20px;
  min-height: 200px;
}

footer .container {
  padding: 50px 0;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
footer .container img {
  width: 70px;
}
footer .container ul {
  display: flex;
}
footer .container ul li {
  margin-right: 30px;
}
footer .container ul li:last-child {
  margin-right: 0;
}
footer .container ul li a {
  color: black;
}
footer .container .beta-request {
  background: #3b64d7;
  font-size: 16px;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 50px;
  transition: all 0.5s ease;
  color: white;
}
footer .container > a {
  display: flex;
  flex-direction: column;
  color: black;
}
footer .container > a img {
  margin-bottom: 10px;
}

.contact-form {
  background: rgba(12, 41, 153, 0.72);
  backdrop-filter: blur(20px);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}
.contact-form.active {
  display: flex;
}
.contact-form form {
  background: white;
  position: relative;
  width: 550px;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 30px;
}
.contact-form form h5 {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  color: #3b64d7;
  margin-bottom: 10px;
}
.contact-form form p {
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
}
.contact-form form input {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  background: #f1f1f1;
  border: none;
  border-radius: 10px;
}
.contact-form form textarea {
  width: 100%;
  border: none;
  background: #f1f1f1;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: black;
  height: 100px;
  padding: 10px;
  margin-bottom: 15px;
  resize: none;
}
.contact-form form .send {
  color: white;
  border: none;
  background: #3b64d7;
  font-size: 16px;
  text-decoration: none;
  padding: 20px 25px;
  border-radius: 10px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  text-align: center;
}
.contact-form form .close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: -40px;
}
.contact-form form .close img {
  width: 24px;
}
.contact-form form .con {
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  max-width: 80%;
  margin: 0 auto 30px auto;
}

@media (min-width: 2000px) {
  .promo-b {
    right: 28vw;
  }
  .main-content .container h1 {
    font-size: 80px;
  }
}
@media (max-width: 1280px) {
  .main-sc {
    width: 31vw;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .main-content .container h1 {
    font-size: 60px;
  }
  #testimonials .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

/*# sourceMappingURL=style.css.map */
