@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit";
}

/* width */
::-webkit-scrollbar {
  width: 0px;
}

.title {
  font-size: calc(10px + 0.25vw);
  border: 1px solid #d9d9d9;
  border-radius: 25px;
  font-family: "Manrope";
  text-transform: uppercase;
  font-weight: bold;
  background-color: #ffffff;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: calc(26px + 2vw);
  font-family: "Outfit";
  font-weight: 600;
  line-height: 110%;
  max-width: 600px;
  padding: 0 25px;
  margin-bottom: 30px;
}

header {
  width: 100%;
  min-height: 100px;
  height: 15vh;
  background-color: #f6f5f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
@media (max-width: 1100px) {
  header {
    flex-direction: column;
    gap: 25px;
    height: auto;
    padding-bottom: 50px;
  }
}
header span {
  width: 140px;
  height: 100%;
}
header .logo {
  max-height: calc(50px + 1vw);
  object-fit: contain;
}
header .sign-in {
  background-color: #7C34ED;
  min-width: 140px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 300ms ease all;
  font-family: "Manrope";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: 300ms ease all;
}
header .sign-in:hover {
  filter: contrast(50%);
}
@media (max-width: 1100px) {
  header .si-desktop {
    display: none;
  }
}

.brand-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #f6f5f4;
  padding-top: 10px;
  gap: 50px;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}
@media (max-width: 1100px) {
  .brand-main {
    min-height: auto;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .brand-main {
    gap: 20px;
  }
}
.brand-main .logo-title-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 1;
}
.brand-main .logo-title-div h1 {
  text-align: center;
  font-weight: 600;
  font-size: calc(24px + 0.5vw);
  line-height: 110%;
  z-index: 1;
  position: relative;
  margin: 0;
}
.brand-main .logo-title-div p {
  text-align: center;
  font-family: "Manrope";
  max-width: 580px;
  font-size: calc(14px + 0.25vw);
  font-weight: 500;
  font-weight: 400;
  margin: 0;
  color: #434343;
  padding: 0 25px;
}
.brand-main .sign-in {
  background-color: #7C34ED;
  min-width: 140px;
  max-width: 150px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 300ms ease all;
  font-family: "Manrope";
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: 300ms ease all;
}
.brand-main .sign-in:hover {
  filter: contrast(50%);
}
.brand-main .si-mobile {
  display: none;
}
@media (max-width: 1100px) {
  .brand-main .si-mobile {
    display: flex;
    margin-top: 20px;
  }
}
.brand-main .dashboard-div {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  padding: 0 50px;
  gap: 25px;
}
@media (max-width: 1280px) {
  .brand-main .dashboard-div {
    padding: 0 25px;
  }
}
@media (max-width: 1100px) {
  .brand-main .dashboard-div {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .brand-main .dashboard-div {
    margin-top: 0px;
  }
}
.brand-main .dashboard-div .column1 {
  display: flex;
  min-width: 120px;
  width: 10%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 65px;
}
@media (max-width: 1100px) {
  .brand-main .dashboard-div .column1 {
    display: none;
  }
}
.brand-main .dashboard-div .column1 img:nth-child(1) {
  max-height: 100px;
  min-height: 80px;
  position: relative;
}
.brand-main .dashboard-div .column1 img:nth-child(2) {
  max-width: 65px;
  min-width: 50px;
  align-self: flex-start;
}
.brand-main .dashboard-div .column1 img:nth-child(3) {
  max-height: 60px;
  min-height: 40px;
  align-self: center;
}
.brand-main .dashboard-div .column2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 80%;
  min-width: 750px;
  max-width: 1100px;
  gap: 50px;
  position: relative;
}
@media (max-width: 1100px) {
  .brand-main .dashboard-div .column2 {
    width: 100%;
    min-width: auto;
  }
}
.brand-main .dashboard-div .column2 .dashboard-img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  z-index: 1;
  max-width: 1100px;
}
.brand-main .dashboard-div .column3 {
  display: flex;
  min-width: 120px;
  width: 10%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 65px;
}
@media (max-width: 1100px) {
  .brand-main .dashboard-div .column3 {
    display: none;
  }
}
.brand-main .dashboard-div .column3 img:nth-child(1) {
  max-height: 60px;
  min-height: 40px;
  position: relative;
}
.brand-main .dashboard-div .column3 img:nth-child(2) {
  max-width: 55px;
  min-width: 40px;
  align-self: flex-end;
}
.brand-main .dashboard-div .column3 img:nth-child(3) {
  max-height: 100px;
  min-height: 80px;
  align-self: flex-end;
  position: relative;
  left: -20px;
}
.brand-main .dashboard-div .icons {
  object-fit: contain;
  z-index: 1;
  max-width: 100px;
}
.brand-main .dashboard-div p {
  text-align: center;
  font-family: "Manrope";
  font-weight: 300;
  font-size: calc(12px + 0.5vw);
  color: #434343;
  margin: 0;
  line-height: 150%;
}

.section1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10vh 0;
  gap: 35px;
  overflow-x: hidden;
}
.section1 h2 {
  text-align: center;
}
.section1 .cards-container {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 50px;
}
@media (max-width: 1280px) {
  .section1 .cards-container {
    padding: 0 25px;
  }
}
@media (max-width: 1100px) {
  .section1 .cards-container {
    flex-direction: column;
  }
}
.section1 .cards-container .card {
  gap: 10px;
  border: 1px solid #e1e1e1;
}
.section1 .cards-container .card h3 {
  color: #27272a;
  font-size: calc(21px + 0.25vw);
  margin: 0;
  font-weight: bold;
  font-family: "Manrope";
}
.section1 .cards-container .card p {
  font-size: calc(14px + 0.25vw);
  margin: 0;
  color: #434343;
  font-family: "Manrope";
  margin-bottom: 15px;
  font-weight: 400;
}
.section1 .cards-container .card1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #f6f5f4;
  padding: 30px;
  overflow: hidden;
  gap: 20px;
  width: 1200px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card1 {
    width: 100%;
    height: auto;
    gap: 35px;
  }
}
.section1 .cards-container .card1 .switches {
  width: 185px;
  position: absolute;
  left: 25px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card1 .switches {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .section1 .cards-container .card1 .switches {
    display: none;
  }
}
.section1 .cards-container .card1 .card1-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.section1 .cards-container .card1 .card1-info p,
.section1 .cards-container .card1 .card1-info h3 {
  margin: 0;
}
@media (max-width: 767px) {
  .section1 .cards-container .card1 .card1-info {
    align-items: flex-start;
  }
}
.section1 .cards-container .card1 .card-img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 767px) {
  .section1 .cards-container .card1 .card-img {
    display: none;
  }
}
.section1 .cards-container .card1 .mobile-images {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.section1 .cards-container .card1 .mobile-images .card-mobile {
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .section1 .cards-container .card1 .mobile-images .card-mobile {
    display: block;
  }
}
.section1 .cards-container .column2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
.section1 .cards-container .column2 .card2 {
  width: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #f6f5f4;
  padding: 30px;
  height: 440px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 .card2 {
    width: 100%;
    height: auto;
  }
}
.section1 .cards-container .column2 .card2 .card2-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section1 .cards-container .column2 .card2 .images {
  display: flex;
  justify-content: space-between;
  height: 170px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card2 .images {
    height: 150px;
    margin-top: 25px;
  }
}
.section1 .cards-container .column2 .card2 .images img:nth-child(2),
.section1 .cards-container .column2 .card2 .images img:nth-child(4) {
  align-self: flex-end;
}
.section1 .cards-container .column2 .card2 .images img:nth-child(3),
.section1 .cards-container .column2 .card2 .images img:nth-child(4) {
  filter: blur(2px);
}
.section1 .cards-container .column2 .card2 .images img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  box-shadow: 0px 2px 5px 2px rgba(200, 200, 200, 0.2);
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card2 .images img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 .card2 .images img {
    width: 70px;
    height: 70px;
  }
}
.section1 .cards-container .column2 .card3 {
  width: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #f6f5f4;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 .card3 {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
}
.section1 .cards-container .column2 .card3 .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 45%;
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card3 .left {
    width: 100%;
    padding-bottom: 0;
  }
}
.section1 .cards-container .column2 .card3 .img-desktop {
  display: block;
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 .card3 .img-desktop {
    display: none;
  }
}
.section1 .cards-container .column2 .card3 .img-mobile {
  display: none;
}
@media (max-width: 767px) {
  .section1 .cards-container .column2 .card3 .img-mobile {
    display: block;
  }
}
.section1 .cards-container .column2 .card3 .right {
  width: 100%;
  bottom: 0;
  height: 55%;
  left: 0;
  object-position: center left;
  position: absolute;
}
@media (max-width: 1100px) {
  .section1 .cards-container .column2 .card3 .right {
    width: 100%;
    object-fit: contain;
    position: relative;
  }
}
.section1 .cards-container .column2 .card3 p {
  margin: 0;
}
.section1 .cards-container .card4 {
  width: 1200px;
  height: 470px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #f6f5f4;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card4 {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 35px;
  }
}
.section1 .cards-container .card4 .left {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card4 .left {
    width: 100%;
  }
}
.section1 .cards-container .card4 .left ul {
  list-style: none;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card4 .left ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section1 .cards-container .card4 .left ul li {
  display: flex;
  gap: 10px;
  max-width: 125px;
  justify-content: flex-start;
  align-items: center;
  font-family: "Manrope";
  font-size: calc(12px + 0.25vw);
  padding: 5px;
  font-weight: 300;
  color: #434343;
  border-bottom: 1px solid #9d9d9d;
}
.section1 .cards-container .card4 .left ul li img {
  height: 20px;
  width: 20px;
}
.section1 .cards-container .card4 .right {
  padding-top: 30px;
  width: 60%;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  position: absolute;
}
@media (max-width: 1100px) {
  .section1 .cards-container .card4 .right {
    width: 100%;
    object-position: bottom right;
    position: relative;
    right: -30px;
    top: auto;
    bottom: -30px;
    padding-top: 0;
  }
}
.section1 .cards-container .card4 p {
  margin: 0;
}

.section2 {
  min-height: 1650px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f6f5f4;
  position: relative;
}
@media (max-width: 1280px) {
  .section2 {
    flex-direction: column;
    align-items: center;
  }
}
.section2 .column1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px;
  padding-top: 10vh;
  position: sticky;
  top: 0;
  padding-bottom: 100px;
}
@media (max-width: 1280px) {
  .section2 .column1 {
    position: static;
    align-items: center;
    width: 100%;
    padding: 0;
    padding-top: 10vh;
    padding-bottom: 35px;
  }
}
.section2 .column1 .column1-info {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1280px) {
  .section2 .column1 .column1-info {
    max-width: 800px;
    justify-content: center;
    align-items: center;
  }
}
.section2 .column1 .column1-info h1 {
  width: fit-content;
}
.section2 .column1 .column1-info h2 {
  width: 80%;
}
@media (min-width: 1280px) {
  .section2 .column1 .column1-info h2 {
    padding-left: 0;
  }
}
@media (max-width: 1280px) {
  .section2 .column1 .column1-info h2 {
    text-align: center;
    width: 100%;
  }
}
.section2 .column2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  position: relative;
  gap: 100px;
  overflow: hidden;
  padding-bottom: 100px;
}
@media (max-width: 1280px) {
  .section2 .column2 {
    width: 100%;
    align-items: center;
    padding: 0 25px;
    padding-bottom: 100px;
  }
}
.section2 .column2 .hort {
  position: absolute;
  height: 1px;
  width: calc(100% + 35px);
  left: -35px;
  top: 10vh;
  background-color: #d9d9d9;
}
@media (max-width: 1280px) {
  .section2 .column2 .hort {
    left: -50px;
    width: calc(100% + 75px);
  }
}
.section2 .column2 .line1 {
  top: calc(10vh + 50px);
}
.section2 .column2 .line1::before {
  content: "08:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
@media (max-width: 1280px) {
  .section2 .column2 .line1 {
    top: 25px;
  }
}
.section2 .column2 .line2 {
  top: calc(10vh + 50px + 35px + 140px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line2 {
    top: calc(5vh + 140px);
  }
}
.section2 .column2 .line3 {
  top: calc(10vh + 100px + 35px + 280px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line3 {
    top: 380px;
  }
}
.section2 .column2 .line3::before {
  content: "10:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
.section2 .column2 .line4 {
  top: calc(10vh + 150px + 35px + 420px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line4 {
    top: 570px;
  }
}
.section2 .column2 .line5 {
  top: calc(10vh + 200px + 35px + 560px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line5 {
    top: 760px;
  }
}
.section2 .column2 .line5::before {
  content: "12:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
.section2 .column2 .line6 {
  top: calc(10vh + 250px + 35px + 700px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line6 {
    top: 950px;
  }
}
.section2 .column2 .line7 {
  top: calc(10vh + 300px + 35px + 840px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line7 {
    top: 1140px;
  }
}
.section2 .column2 .line7::before {
  content: "14:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
.section2 .column2 .line8 {
  top: calc(10vh + 350px + 35px + 980px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line8 {
    top: 1330px;
  }
}
.section2 .column2 .line9 {
  top: calc(10vh + 400px + 35px + 1120px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line9 {
    top: 1520px;
  }
}
.section2 .column2 .line9::before {
  content: "16:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
.section2 .column2 .line10 {
  top: calc(10vh + 450px + 35px + 1260px);
}
@media (max-width: 1100px) {
  .section2 .column2 .line10 {
    top: 1710px;
  }
}
.section2 .column2 .line11 {
  top: calc(10vh + 500px + 35px + 1400px);
}
@media (max-width: 1280px) {
  .section2 .column2 .line11 {
    top: 1900px;
  }
}
.section2 .column2 .line11::before {
  content: "18:00";
  color: #d9d9d9;
  font-family: "Poppins";
  position: absolute;
  font-size: 14px;
  top: -22px;
  left: 115px;
}
.section2 .column2 .vertline1 {
  position: absolute;
  width: 1px;
  left: 60px;
  background-color: #d9d9d9;
  height: calc(100% + 10vh);
}
.section2 .column2 .vertline2 {
  right: 125px;
  position: absolute;
  background-color: #d9d9d9;
  width: 1px;
  height: calc(100% + 10vh);
}
.section2 .column2 .card-item:nth-child(1) {
  margin-top: calc(10vh + 50px + 35px);
}
@media (max-width: 1280px) {
  .section2 .column2 .card-item:nth-child(1) {
    margin-top: 5vh;
  }
}
.section2 .column2 .card-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  height: 285px;
  margin-right: 10px;
  width: calc(100% - 35px);
  max-width: 570px;
  left: 30px;
  position: relative;
  border-radius: 30px;
  border-left: 32px solid;
  z-index: 1;
  gap: 25px;
  box-shadow: 0px 0px 10px 2px rgba(200, 200, 200, 0.5);
}
@media (max-width: 1280px) {
  .section2 .column2 .card-item {
    width: 100%;
    max-width: 750px;
    left: 0;
    margin-right: 0;
  }
}
@media (max-width: 490px) {
  .section2 .column2 .card-item {
    padding: 30px;
  }
}
.section2 .column2 .card-item span {
  padding: 7px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7.5px;
  font-size: calc(14px + 0.25vw);
  font-weight: 600;
}
.section2 .column2 .card-item h3 {
  font-size: calc(24px + 0.25vw);
  font-weight: 700;
  font-family: "Manrope";
  margin: 0;
}
.section2 .column2 .card-item p {
  font-size: calc(14px + 0.25vw);
  margin: 0;
  font-family: "Manrope";
  font-weight: 350;
}

.section3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 35px;
  z-index: 1;
  padding: 10vh 0;
}
@media (max-width: 1280px) {
  .section3 {
    padding: 5vh 25px;
  }
}
.section3 h2 {
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
}
.section3 .faq-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  gap: 15px;
  min-height: 350px;
}
@media (max-width: 767px) {
  .section3 .faq-container {
    min-height: 300px;
  }
}
.section3 .faq-container .faq-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 25px 30px;
  border-radius: 15px;
  background-color: #f6f5f4;
  border: 1px solid #e1e1e1;
  transition: height 1000ms ease all;
}
@media (max-width: 1100px) {
  .section3 .faq-container .faq-item {
    padding: 15px 20px;
  }
}
.section3 .faq-container .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section3 .faq-container .faq-item .faq-question h3 {
  margin: 0;
  font-size: calc(14px + 0.25vw);
  font-family: "Manrope";
}
.section3 .faq-container .faq-item .faq-question img {
  cursor: pointer;
  transition: 300ms ease all;
}
.section3 .faq-container .faq-item .faq-question img:hover {
  filter: brightness(150%);
}
.section3 .faq-container .faq-item .faq-answer {
  display: none;
  font-family: "Manrope";
  font-size: calc(12px + 0.5vw - 2px);
  margin: 0;
}
@media (max-width: 1100px) {
  .section3 .faq-container .faq-item .faq-answer {
    font-size: calc(12px + 0.5vw);
  }
}
.section3 .faq-container .faq-item .active {
  display: block;
  animation-name: fade123;
  animation-duration: 1000ms;
}
@keyframes fade123 {
  0% {
    filter: opacity(0);
  }
  100% {
    filter: opacity(1);
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #27272a;
  width: 100%;
  min-height: 650px;
  padding: 0 50px;
}
@media (max-width: 1280px) {
  footer {
    padding: 0 25px;
    min-height: 60vh;
    height: auto;
  }
}
footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 75px 50px;
  border-bottom: 1px solid #5b5b5b;
}
@media (max-width: 1100px) {
  footer .top {
    width: 100%;
    border: none;
    height: auto;
    padding: 50px 0;
  }
}
footer .top .column1 {
  display: flex;
  height: 100%;
  width: 250px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .top .column1 {
    display: none;
    height: auto;
  }
}
footer .top .column1 img:nth-child(1) {
  max-height: 60px;
  align-self: flex-end;
}
footer .top .column1 img:nth-child(2) {
  align-self: flex-start;
  max-height: 90px;
}
footer .top .column1 img:nth-child(3) {
  align-self: center;
  max-height: 100px;
}
footer .top .column2 {
  height: 100%;
  width: calc(100% - 500px - 200px);
  max-width: 700px;
  min-width: 600px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer .top .column2 img {
  max-width: 60px;
  max-height: 60px;
}
@media (max-width: 1100px) {
  footer .top .column2 {
    width: 100%;
    max-width: none;
    min-width: auto;
    height: auto;
    gap: 50px;
  }
}
footer .top .column2 h1 {
  color: white;
  font-size: calc(26px + 2vw);
  line-height: 110%;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
footer .top .column2 p {
  color: white;
  font-size: calc(12px + 0.5vw + 2px);
  line-height: 150%;
  text-align: center;
  font-weight: 400;
  font-family: "Manrope";
  max-width: 450px;
  margin: 0;
}
footer .top .column2 .gform_heading {
  display: none;
}
footer .top .column2 .gform_wrapper {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .top .column2 .gform_wrapper .gform_validation_errors {
  margin-bottom: 20px;
}
footer .top .column2 .gform_wrapper .gform_confirmation_message {
  color: white !important;
  font-size: calc(18px + 0.5vw);
  text-align: center !important;
}
footer .top .column2 form {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f6f5f4;
  padding: 40px 30px;
  border-radius: 15px;
  margin-top: 25px;
  font-family: "Manrope";
}
@media (max-width: 1100px) {
  footer .top .column2 form {
    padding: 30px 20px;
  }
}
footer .top .column2 form .gform_body {
  width: 100%;
}
footer .top .column2 form .gform_body .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .top .column2 form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #9d9d9d;
  font-size: 14px;
  box-shadow: none;
  background-color: transparent;
}
footer .top .column2 form input::placeholder {
  color: #7a7a7a;
}
footer .top .column2 form input:focus {
  border: 2px solid #9d9d9d;
}
footer .top .column2 form textarea {
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #9d9d9d;
  max-height: 120px !important;
  resize: none;
  padding: 20px;
  font-size: 14px;
  outline: none;
  min-block-size: 0 !important;
  box-shadow: none;
}
footer .top .column2 form textarea::placeholder {
  color: #7a7a7a;
}
footer .top .column2 form textarea:focus {
  border: 2px solid #7a7a7a;
}
footer .top .column2 form .gfield--type-checkbox {
  margin-bottom: 25px;
}
footer .top .column2 form .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
footer .top .column2 form .gfield_checkbox a {
  font-weight: 800;
  color: #27272A;
  text-underline-offset: 3px;
  font-family: "Manrope" !important;
  transition: 300ms ease all;
}
footer .top .column2 form .gfield_checkbox a:hover, footer .top .column2 form .gfield_checkbox a:focus {
  outline: none;
  border: none;
  color: black;
}
footer .top .column2 form .gfield_checkbox input[type=checkbox] {
  width: 17px;
  height: 17px;
  padding: 0;
  border-radius: 2px !important;
}
footer .top .column2 form .gform_footer {
  margin: 0;
  display: flex;
  width: 100%;
}
footer .top .column2 form .gform_footer #gform-ajax-spinner,
footer .top .column2 form .gform_footer .gform_ajax_spinner,
footer .top .column2 form .gform_footer .gform-loader {
  display: none !important;
}
footer .top .column2 form .gform_footer input[type=submit] {
  background-color: #7C34ED !important;
  min-width: 140px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: 300ms ease all;
  font-family: "Manrope";
}
@media (max-width: 767px) {
  footer .top .column2 form .gform_footer input[type=submit] {
    width: 100% !important;
  }
}
footer .top .column2 form .gform_footer input[type=submit]:hover {
  filter: brightness(110%);
}
footer .top .column2 form .gform_footer input[type=submit]:focus {
  border: none !important;
  outline: none !important;
}
footer .top .column3 {
  height: 100%;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .top .column3 {
    display: none;
  }
}
footer .top .column3 img:nth-child(1) {
  max-height: 90px;
  align-self: flex-start;
}
footer .top .column3 img:nth-child(2) {
  max-height: 70px;
  align-self: flex-end;
}
footer .top .column3 img:nth-child(3) {
  align-self: center;
  max-height: 70px;
}
footer .bottom {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .bottom {
    flex-direction: column-reverse;
    height: auto;
    gap: 20px;
    padding: 3.5vh 0;
    padding-top: 5vh;
  }
}
footer .bottom .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .bottom .left {
    width: 100%;
  }
}
footer .bottom .left p {
  color: #7a7a7a;
  margin: 0;
  font-family: "Manrope";
  font-weight: 300;
  font-size: calc(12px + 0.25vw);
}
footer .bottom .left .upbtn {
  text-decoration: none;
  width: calc(30px + 0.25vw);
  height: calc(30px + 0.25vw);
  border-radius: 50%;
  border: 1px solid #7a7a7a;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #27272a;
  transition: 300ms ease all;
}
footer .bottom .left .upbtn:hover {
  cursor: pointer;
  filter: contrast(50%);
}
footer .bottom .left .upbtn i {
  color: #7a7a7a;
  font-size: 14px;
}
footer .bottom .left .mobile {
  display: none;
}
@media (max-width: 1100px) {
  footer .bottom .left .mobile {
    display: flex !important;
  }
}
footer .bottom .right {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  footer .bottom .right {
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid #5b5b5b;
    padding-bottom: 2.5vh;
  }
}
footer .bottom .right .footer-nav {
  display: flex;
  align-items: center;
}
footer .bottom .right .footer-menu {
  display: flex;
  gap: 50px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .bottom .right .footer-menu li {
  margin: 0;
}
footer .bottom .right a {
  text-decoration: none;
  color: #7a7a7a;
  font-size: calc(12px + 0.25vw);
  transition: 300ms ease all;
  font-family: "Manrope";
}
footer .bottom .right a:hover {
  cursor: pointer;
  filter: brightness(150%);
}
@media (max-width: 1100px) {
  footer .bottom .right .desktop {
    display: none !important;
  }
}
footer .bottom .right .upbtn {
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #7a7a7a;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #27272a;
  transition: 300ms ease all;
}
footer .bottom .right .upbtn:hover {
  cursor: pointer;
  filter: contrast(50%);
}
footer .bottom .right .upbtn i {
  color: #7a7a7a;
  font-size: 14px;
}

.container404 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  min-height: 50vh;
  gap: 30px;
  overflow: hidden;
}
.container404 img {
  position: relative;
  transform: translateY(-100px);
  margin-left: 11vw;
  width: 100%;
  max-width: 700px;
  object-fit: cover;
}
@media (max-width: 490px) {
  .container404 img {
    transform: translateY(-50px);
  }
}
.container404 h1 {
  margin: 0;
  font-weight: 400;
  font-size: calc(40px + 1vw);
  transform: translateY(-100px);
}
@media (max-width: 490px) {
  .container404 h1 {
    transform: translateY(-50px);
  }
}
.container404 p {
  text-align: center;
  color: #7a7a7a;
  margin: 0;
  transform: translateY(-100px);
}
@media (max-width: 490px) {
  .container404 p {
    transform: translateY(-50px);
  }
}
.container404 a {
  transform: translateY(-100px);
  text-decoration: none;
  color: white;
  border-radius: 5px;
  padding: 10px 40px;
  background-color: #7C34ED;
}
@media (max-width: 490px) {
  .container404 a {
    transform: translateY(-50px);
  }
}

* {
  word-wrap: break-word;
}

.page-text {
  background-color: #f6f5f4;
  padding: 50px;
}
.page-text iframe {
  width: 100%;
  min-height: 1000px;
  background-color: #f6f5f4 !important;
}
.page-text *:focus {
  outline: none;
  border: none;
}
@media (max-width: 1280px) {
  .page-text {
    padding: 50px 25px;
  }
}

.main-younical {
  background-color: #f6f5f4;
}

.page-container-text {
  padding: 50px 200px 100px 200px;
  font-family: "Outfit";
}
@media (max-width: 1280px) {
  .page-container-text {
    padding: 25px 50px;
  }
}
@media (max-width: 768px) {
  .page-container-text {
    padding: 25px 20px;
    padding-bottom: 100px;
  }
}
.page-container-text .page-subtitle {
  font-size: calc(12px + 0.2vw);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7C34ED;
  margin-bottom: 0.5em;
}
.page-container-text h1 {
  font-size: calc(60px + 0.35vw);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .page-container-text h1 {
    font-size: 50px;
  }
}
.page-container-text .text-content {
  color: #434343;
  line-height: 1.6;
}
.page-container-text .text-content p {
  font-size: calc(12px + 0.25vw);
  margin-bottom: 1em;
}
.page-container-text .text-content h2 {
  font-size: calc(18px + 0.4vw);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #333;
}
.page-container-text .text-content h3 {
  font-size: calc(14px + 0.3vw);
  font-weight: 600;
  margin-top: 1.25em;
  margin-bottom: 0.4em;
  color: #333;
}
.page-container-text .text-content h4 {
  font-size: calc(13px + 0.25vw);
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.35em;
  color: #333;
}
.page-container-text .text-content a {
  color: #7C34ED;
  text-decoration: none;
}
.page-container-text .text-content a:hover {
  text-decoration: underline;
}
.page-container-text .text-content ul,
.page-container-text .text-content ol {
  margin: 0.75em 0 1em 1.25em;
  padding-left: 1.25em;
}
.page-container-text .text-content li {
  margin-bottom: 0.35em;
}
.page-container-text .text-content .section-divider {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 2em 0;
}

/* Security Policy page layout (matches younical.io/#security-policy) */
.main-security-policy {
  background-color: #f6f5f4;
  padding-top: 40px;
  padding-bottom: 80px;
  min-height: 50vh;
}

/* Security custom page wrapper */
.security-custom-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .security-custom-page {
    padding: 0 20px;
  }
}

/* Badge pill (Security label) */
.security-custom-page .badge-pill {
  display: inline-block;
  font-size: calc(10px + 0.2vw);
  border: 1px solid #d9d9d9;
  border-radius: 25px;
  font-family: "Manrope";
  text-transform: uppercase;
  font-weight: bold;
  background-color: #ffffff;
  height: 35px;
  padding: 0 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 33px;
  color: #434343;
}

/* Main heading and description */
.security-custom-page .main-heading {
  font-size: calc(26px + 2vw);
  font-family: "Outfit";
  font-weight: 600;
  line-height: 110%;
  max-width: 700px;
  margin: 0 0 16px 0;
  color: #27272a;
}
.security-custom-page .main-description {
  font-family: "Manrope";
  font-size: calc(14px + 0.25vw);
  color: #434343;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 0 48px 0;
}

/* Content sections */
.security-custom-page .content-container {
  margin-bottom: 40px;
}

/* Primary feature block (section title + intro paragraph) */
.security-custom-page .primary-feature {
  margin-bottom: 28px;
}
.security-custom-page .primary-feature .feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.security-custom-page .primary-feature .feature-header img {
  flex-shrink: 0;
}
.security-custom-page .primary-feature .feature-header h3 {
  font-size: calc(18px + 0.35vw);
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  font-family: "Manrope";
  line-height: 1.3;
}
.security-custom-page .primary-feature p {
  font-size: calc(14px + 0.2vw);
  line-height: 1.6;
  color: #434343;
  margin: 0;
  font-family: "Manrope";
}

/* Secondary grid (cards) */
.security-custom-page .secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
}
@media (max-width: 1024px) {
  .security-custom-page .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .security-custom-page .secondary-grid {
    grid-template-columns: 1fr;
  }
}

.security-custom-page .secondary-grid .grid-item {
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.security-custom-page .secondary-grid .grid-item:hover {
  border-color: #d1d1d1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.security-custom-page .grid-item .item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.security-custom-page .grid-item .item-header img {
  flex-shrink: 0;
}
.security-custom-page .grid-item .item-header h4 {
  font-size: calc(15px + 0.2vw);
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  font-family: "Manrope";
  line-height: 1.3;
}
.security-custom-page .grid-item p {
  font-size: calc(13px + 0.15vw);
  line-height: 1.55;
  color: #434343;
  margin: 0;
  font-family: "Manrope";
}

/* Section divider */
.security-custom-page .divider {
  border: 0;
  height: 1px;
  background: #e1e1e1;
  margin: 48px 0;
}

/* Legacy security section/hero (kept for compatibility) */
.security-policy-page {
  padding-bottom: 80px;
}
.security-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.security-hero .page-subtitle {
  color: #6b7280;
  font-size: calc(11px + 0.2vw);
  letter-spacing: 0.08em;
}
.security-hero h1 {
  font-size: calc(32px + 1.5vw);
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 24px;
}
.security-hero-intro {
  color: #6b7280;
  font-size: calc(14px + 0.2vw);
  line-height: 1.6;
  margin: 0;
}
.security-hero-intro a {
  color: #7C34ED;
  text-decoration: none;
}
.security-hero-intro a:hover {
  text-decoration: underline;
}
.security-section {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
  align-items: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.security-section .section-intro {
  flex: 0 0 320px;
  min-width: 0;
}
.security-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(18px + 0.35vw);
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.security-section .section-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #7C34ED;
}
.security-section .section-intro p {
  font-size: calc(13px + 0.2vw);
  line-height: 1.6;
  color: #434343;
  margin: 0;
}
.security-section .section-features {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
.security-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.security-feature-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #7C34ED;
}
.security-feature h3 {
  font-size: calc(14px + 0.2vw);
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}
.security-feature p {
  font-size: calc(12px + 0.15vw);
  line-height: 1.55;
  color: #434343;
  margin: 0;
}
@media (max-width: 1024px) {
  .security-section {
    flex-direction: column;
    gap: 28px;
    padding: 0 24px;
  }
  .security-section .section-intro {
    flex: none;
    max-width: 100%;
  }
  .security-section .section-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .security-hero {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .security-hero h1 {
    font-size: 28px;
  }
  .security-section {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .security-section .section-features {
    grid-template-columns: 1fr;
  }
}

#loader {
  background-color: #f6f5f4;
  width: 100%;
  height: 100vh;
  z-index: 11;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  animation-name: fade;
  animation-duration: 2500ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes fade {
  0% {
    filter: opacity(1);
  }
  50% {
    filter: opacity(1);
  }
  100% {
    filter: opacity(0);
  }
}

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