* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
}

body {
  overflow-x: hidden;
}

:root {
  --primary: #182639;
  --secondary: #225192;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: fixed;
  height: 75px;
  width: 100vw;
  background-color: white;
  z-index: 100;
  padding-right: 2rem;
  border: 1px solid #ccc;
}

a {
  text-decoration: none;
  color: inherit;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.menu-item {
  list-style: none;
  cursor: pointer;
}
.menu-item:last-child {
  font-weight: 600;
  color: #673ab7;
}

main {
  padding-top: 75px;
}

.first-section {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.text-wrapper {
  color: rgb(0, 0, 0);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 1rem;
}

.text-wrapper h1 {
  font-size: 2.5rem;
}

.text-child-wrapper {
  font-size: 1rem;
  line-height: 1.5;
}
.color-highlight {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400% 400%;
  background-image: linear-gradient(-45deg, var(--primary), var(--secondary));
  font-size: 55px;
  animation: gradient 3s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.subscribe-wrapper {
  display: flex;
  position: relative;
  gap: 0.5rem;
}
.subscribe-wrapper:last-child {
  min-width: 400px;
}
.sign-wrapper {
  position: relative;
  width: 100%;
}

.mail-sign {
  position: absolute;
  font-weight: 500;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 19px;
  height: 27px;
  color: #121212;
}

#subscribe {
  width: 100%;
  padding: 0.7rem;
  /* width: 400px; */
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  padding-left: 2rem;
}

.singin-btn {
  font-size: 16px;
  cursor: pointer;
  outline: none;
  /* border: 1px solid #683bb7; */
  border-radius: 8px;
  color: #225192;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  width: fit-content;
  padding: 10px 1.5rem;
}
.subscribe-btn {
  font-size: 16px;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 8px;
  background-size: 300% 100%;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  min-width: 130px;
}

.additional-text-wrapper {
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 2rem;
}

.additional-text-wrapper li {
  list-style: none;
}

#myBar {
  position: fixed;
  top: 75px;
  z-index: 100;
  width: 100%;
  width: 100%;
  height: 5px;
  background: #ccc;
}

/* The progress bar (scroll indicator) */
#myBar {
  height: 3px;
  background: #159957; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #159957,
    #155799
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #159957,
    #155799
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 0%;
}

.part-1 {
  width: 10rem;
  position: absolute;
  right: 1rem;
  bottom: 0;
  z-index: -1;
}
.part-2 {
  position: absolute;
  width: 200px;
  left: 0;
  z-index: 2;
}

.main-banner {
  min-width: 100%;
  max-width: 100%;
}

.section-2 {
  position: relative;
  background: linear-gradient(360deg, #a6c1ee 0%, #ffffff 100%);
  backdrop-filter: blur(5px);
  height: calc(100vh - 75px);
  display: flex;
}

.img-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  flex: 1;
  /* z-index: -1; */
}
.img-wrapper img {
  min-height: 90vh;
  max-height: 90vh;
  transform: translateY(160px);
  border-radius: 14px;
  z-index: -1;
}
.img-wrapper img:last-child {
  transform: translate(-150px, 215px);
}

.section-3 {
  padding: 2rem 5rem;
}

.highlight {
  background: linear-gradient(0deg, #30cfd0 0%, #330867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  text-align: center;
  margin-bottom: 1rem;
}

.highlight-descr {
  text-align: center;
  font-size: 34px;
  margin-bottom: 5rem;
}

.footer-img {
  position: absolute;
  left: 5%;
  height: 30vh;
}
.footer-img2 {
  position: absolute;
  right: 5%;
  height: 30vh;
}

.contact {
  background: #0d1b2a;
  height: 40vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: white;
}
.contact h1 {
  font-size: 1.5rem;
}

.bottom-mail-sign {
  color: #e6e6e6;
}

.subcribe-bottom {
  background: transparent !important;
  color: white !important;
  border: 2px solid #02c7c5 !important;
  font-size: 16px;
}

.icon-short {
  min-width: 50px;
  max-width: 50px;
}

.section-4 {
  padding: 4rem 6rem;
}

.feature-list-wrapper {
  display: grid;
  flex-wrap: wrap;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.feature-item {
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  transition: 0.5s ease-in-out;
}
.feature-item > h3 {
  position: relative;
  transition: 0.3s ease-in-out;
}

.feature-item > h3::after {
  transition: all 0.3s ease-in-out;
}

.feature-item:hover > h3 {
  padding-left: 10px;
}

.feature-item:hover > h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #3587a4;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.feature-item img {
  transition: 0.5s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover > img {
  transform: rotateY(180deg);
}

.feature-item:hover > h3 {
  color: #2b303a;
}

footer {
  color: white;
  text-align: center;
  padding: 1rem;
  background: #0d1b2a; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to bottom,
    #0d1b2a,
    #1e2019
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #0d1b2a,
    #1e2019
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.core-feature-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

.core-feature-wrapper:last-child {
  margin-bottom: 0;
}

.img-wrapper-left,
.img-wrapper-right {
  flex: 1;
}

.crf-img {
  width: 80%;
}

.dash-img,
.chatbot-img {
  width: 80%;
}

.text-wrapper-right,
.text-wrapper-left {
  flex: 1;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.text-wrapper-right h1,
.text-wrapper-left h1 {
  font-size: 30px;
}

.text-wrapper-right p,
.text-wrapper-left p {
  font-size: 18px;
  line-height: 1.6;
}

.pricing-header {
  text-align: center;
}

#pricing {
  padding: 2rem 5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-content: stretch;
}

.pricing-wrapper {
  max-width: 300px;
  background: rgb(110, 110, 110);
  background: linear-gradient(
    0deg,
    rgba(110, 110, 110, 1) 0%,
    rgba(70, 70, 70, 1) 100%
  );
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
  transition: 0.1s ease-in-out;
}
.pricing-wrapper:hover {
  transform: scale(1.02);
}

.pricing-wrapper:last-child {
  background: rgb(103, 58, 183);
  background: linear-gradient(
    0deg,
    rgba(103, 58, 183, 0.85) 0%,
    rgba(103, 58, 183, 1) 100%
  );
}

.pricing-wrapper:last-child h1 {
  /* opacity: 0.5; */
}

.price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5;
}

.pricing_img {
  width: 4rem;
}

.pricing-h1 {
  font-size: 3rem;
}
.offering-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.6;
}
.offering-wrapper li {
  list-style: circle;
}
.signup-btn {
  font-weight: 600;
  border-radius: 4px;
  color: #673ab7;
  background: white;
  padding: 0.5rem 1rem;
}

@media only screen and (max-width: 1000px) {
  .part-1 {
    display: none;
  }
  .text-wrapper h1 {
    /* font-size: 50px; */
  }

  .footer-img {
    left: 0;
  }
  .footer-img2 {
    right: 0;
  }
}
@media only screen and (max-width: 880px) {
  #subscribe {
    max-width: 350px;
    width: auto;
    flex: auto;
  }

  .text-wrapper h1,
  .color-highlight {
    font-size: 44px;
  }
  .highlight-descr,
  .pricing-header {
    font-size: 30px;
    margin-bottom: 3rem;
  }
  .section-4 {
    padding: 4rem;
  }

  .crf-img {
    width: 100%;
  }
  .pricing-header {
    margin: 0;
  }
  .footer-img {
    left: -5rem;
  }
}
@media only screen and (max-width: 672px) {
  .section-2 {
    flex-direction: column-reverse;
    height: auto;
  }

  .text-wrapper {
    padding-top: 3rem;
  }
  .part-2 {
    top: 0;
    right: 1;
    bottom: 1rem;
    right: 0;
    left: 0;
    margin: auto;
  }
  .core-feature-wrapper {
    flex-direction: column-reverse;
  }
  .core-feature-wrapper:last-child {
    flex-direction: column;
  }
  .dash-img,
  .crf-img,
  .chatbot-img {
    max-height: 200px;
  }
  .highlight-descr,
  .pricing-header {
    font-size: 1.5rem;
  }

  .text-wrapper-right h1,
  .text-wrapper-left h1 {
    font-size: 1.2rem;
  }
  .text-wrapper-right p,
  .text-wrapper-left p {
    font-size: 1rem;
  }

  .section-4 {
    padding: 3rem 2rem;
  }
  .feature-list-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  #pricing {
    padding: 2rem;
  }
  .contact h1 {
    font-size: 1.5rem;
  }
  .footer-img2,
  .footer-img {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .img-wrapper {
    max-height: 400px;
  }
  .text-wrapper {
    padding-top: 6rem;
  }
  .part-2 {
    display: none;
  }
  #subscribe {
    max-width: unset;
  }
  .text-wrapper h1,
  .color-highlight {
    font-size: 1.8rem;
  }

  .subscribe-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .subscribe-wrapper:last-child {
    min-width: 100%;
  }

  .subscribe-btn {
    height: 40px;
  }
  #subscribe {
    width: 100%;
  }
  #pricing {
    flex-direction: column;
    align-items: center;
  }
  .pricing-wrapper {
    width: 100%;
  }
  .contact {
    text-align: center;
    padding: 1rem;
  }
  .img-wrapper img {
    width: 75%;
  }
}
@media only screen and (max-width: 380px) {
  .img-wrapper {
    max-height: 350px;
  }
  .feature-list-wrapper {
    grid-template-columns: 1fr;
  }
  .menu-wrapper {
    gap: 10px;
  }
  .image-wrapper {
    padding: 2rem;
  }
}
