@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}
.navbar {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
}
.navbar button {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  margin-right: 20px;
  color: #ffffff;
  border: none;
  background: rgb(158, 26, 239);
  background: linear-gradient(
    90deg,
    rgba(158, 26, 239, 1) 0%,
    rgba(208, 72, 253, 1) 58%
  );
}
.logo {
  margin-left: 20px;
  font-family: "Rubik", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo p {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  margin-left: 10px;
}
.logo img {
  width: 30px;
  height: 30px;
}
.chatLayoutSection {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  overflow-y: auto;
  z-index: 100;
}
.chatBoxSection {
  width: 500px;
  height: 500px;
  /* overflow-y: auto; */
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.chatBoxBorderSection {
  width: 500px;
  height: 500px;
  background-color: transparent;
  border: 2px solid #ececec;
  border-radius: 10px;
  position: absolute;
  top: 9%;
  padding: 0 10px;
  z-index: 10;
}
.scrollDown {
  bottom: 8%;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollDown img {
  width: 20px;
  height: 20px;
}
::-webkit-scrollbar {
  width: 1px;
}
.chatSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.chatUserName {
  max-width: 60%;
  margin: 20px 20px 5px 15px;
}
.senderSection {
  justify-content: flex-end;
  align-items: flex-end;
}
.receiverSection {
  justify-content: flex-start;
  align-items: flex-start;
}
.senderChatContainer {
  max-width: 60%;
  padding: 16px 20px;
  border: none;
  border-radius: 25px 25px 5px 25px;
  /* background-color: #105dfb; */
  background: rgb(158, 26, 239);
  background: linear-gradient(
    90deg,
    rgba(158, 26, 239, 1) 0%,
    rgba(208, 72, 253, 1) 58%
  );
  /* background-color: #764af3; */
  color: #ffffff;
}
.senderChatContainer ul {
  margin: 10px 0 0 25px;
}
.senderChatContainer li {
  margin-bottom: 10px;
  font-size: 18px;
}
p {
  font-size: 18px;
}
.receiverChatContainer {
  max-width: 60%;
  padding: 16px 20px;
  border: none;
  border-radius: 25px 25px 25px 5px;
  background-color: #ececec;
  color: #000000;
}
a {
  color: #000000;
}
b {
  font-weight: 700;
}

.offerCtaButton {
  padding: 6px 10px;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  margin: 5px;
}
.offerSection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}
.offerSectionContainer {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  font-family: "Rubik", sans-serif;
  width: 80%;
  border: none;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.offerDataContainer {
  width: 80%;
  border: none;
  background-color: #000000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.affordableDescriptionContainer {
  position: relative;
}
.webflowCareOfferSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.webflowCareOfferContainer {
  width: 250px;
  height: 160px;
  border: 1.5px solid #434242;
  border-radius: 8px;
  background-color: #282828;
}
.keyFeature {
  width: 250px;
  height: 160px;
  margin-bottom: 20px;
}
.keyFeature img {
  font-size: 30px;
  height: 30px;
}
.keyFeature h4 {
  font-size: 21px;
  margin: 10px 0 20px 0;
  color: #9e1aef;
}
.webflowCareOfferContainer h4 {
  font-size: 20px;
  margin-top: 15px;
}
.webflowCareOfferContainer p {
  margin: 15px 10px;
  font-size: 16px;
}
.webflowCareOfferContainer hr {
  margin-top: 10px;
  width: 100%;
  height: 1.5px;
  border: none;
  background-color: #434242;
}
.webflowOfferKeyFeatureContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#celebrationSection {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 10%;
}
.offerSectionContainer h1 {
  font-size: 42px;
  margin: 50px 10px 0 10px;
}
.offerDataContainer h3,
.earlyofferDescriptionContainer h3,
.affordableDescriptionContainer h3 {
  margin: 40px 0;
  font-size: 32px;
  color: #ececec;
  background: rgb(158, 26, 239);
  background: linear-gradient(
    90deg,
    rgba(158, 26, 239, 1) 0%,
    rgba(208, 72, 253, 1) 58%,
    rgba(255, 97, 249, 1) 88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offerBenefitsContainer h3 {
  margin: 40px 0;
  font-size: 32px;
  color: #ececec;
  background: rgb(158, 26, 239);
  background: linear-gradient(
    90deg,
    rgba(158, 26, 239, 1) 0%,
    rgba(208, 72, 253, 1) 58%,
    rgba(255, 97, 249, 1) 88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offerDataContainer p,
.earlyofferDescriptionContainer p,
.affordableDescriptionContainer p {
  font-size: 21px;
  margin: 0px 80px 70px;
}
.earlyofferDescriptionContainer {
  width: 80%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  border-radius: 20px;
  padding-bottom: 30px;
}
.earlyOfferSection {
  width: 80%;
  padding: 10px;
  border: 1.5px solid #434242;
  border-radius: 8px;
  background-color: #282828;
  text-align: start;
  margin-bottom: 10px;
  font-size: 18px;
}
.descriptionDataContainer {
  width: 45%;
  height: 250px;
  border: 1.5px solid #434242;
  border-radius: 8px;
  background-color: #282828;
  padding: 20px 10px 20px 20px;
  position: relative;
}
.descriptionDataContainer h3 {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  background: rgb(158, 26, 239);
  background: linear-gradient(
    90deg,
    rgba(158, 26, 239, 1) 0%,
    rgba(208, 72, 253, 1) 58%,
    rgba(255, 97, 249, 1) 88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.descriptionDataContainer p {
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;
}
.mobileChatBoxLayout {
  display: none;
}
.footer {
  width: 100%;
  height: 150px;
  background-color: #ececec;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.copyRightText {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  color: #000000;
}
.contactLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.icon {
  width: 35px;
  height: 35px;
  background-color: #000000;
  padding: 10px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactLinks img {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .mobileChatBoxLayout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .mobileChatBoxSection {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    height: 85vh;
    border: 2px solid #ececec;
    border-radius: 10px;
    padding: 0 10px;
    overflow-y: scroll;
  }
  .chatLayoutSection {
    display: none;
  }
  /* .chatBoxSection {
    width: 90%;
    height: 90vh;
    position: absolute;
  } */

  .offerDataContainer p,
  .earlyofferDescriptionContainer p,
  .affordableDescriptionContainer p {
    margin: 0px 20px 40px;
    font-size: 16px;
  }
  .offerDataContainer h3,
  .earlyofferDescriptionContainer h3,
  .affordableDescriptionContainer h3 {
    font-size: 25px;
    margin: 20px 10px;
  }
  .offerBenefitsContainer h3 {
    font-size: 25px;
  }
  .offerSectionContainer h1 {
    font-size: 32px;
    margin: 30px 10px 0 10px;
  }
  .offerSectionContainer {
    width: 90%;
  }
  .descriptionTag {
    right: 2%;
    top: 0;
  }
  .chatBoxBorderSection {
    display: none;
  }
}
