@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--text-color);
}
/* Base Styles */
:root {
  --primary-color: #7fffd4;
  --secondary-color: #1b1c1a;
  --text-color: #001d1c;
  --light-text: #616161;
  --bg: #f6f7f9;
  --white: #ffffff;
  --max-width: 1240px;
  --border: 1px solid #ebebeb;
  --primary: #7fffd4;
  --primary-hover: #7fffd4;
  --bg-overlay: rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}
[class*="grid"] {
  display: grid;
}
.align-center {
  align-items: center;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
body {
  -webkit-text-size-adjust: 100%;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
i svg {
  width: unset;
  height: 1.8rem;
  fill: white;
}
section {
  padding: 8rem 0;
}
p {
  color: var(--light-text);
  line-height: 1.6;
  line-height: 1.8;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", serif;
  text-transform: capitalize;
}
img,
video {
  max-width: 100%;
}
.container {
  max-width: 1440px;
  padding: 0 1.5rem;
  margin: auto;
  width: 100%;
}
button {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 1rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 2rem;
  text-transform: capitalize;
  line-height: 1;
  transition: 0.3s;
}
button.empty {
  box-shadow: unset;
  background: white;
  border: var(--border);
}
header button.empty {
  border: unset;
}
a {
  width: fit-content;
  display: inline-block;
}
/* header section */
header {
  height: 8rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background: white;
}
header.sticky {
  box-shadow: #959da533 0px 8px 24px;
}
.logo img {
  height: 6rem;
}
header .container {
  height: 100%;
  max-width: 100%;
  padding: 0 5rem;
}
header .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
header .links a {
  transition: 0.3s;
  font-weight: 400;
}
header .links a:hover {
  color: var(--primary-color);
}
header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
header .cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.menu {
  font-size: 3rem;
  display: none;
}
header .links button.empty {
  display: none;
}
main {
  height: fit-content;
  overflow: hidden;
  background-color: var(--primary-color);
  margin-top: 8rem !important;
  padding-top: 8rem;
  position: relative;
  width: calc(100% - 10rem);
  margin: auto;
  border-radius: 5rem;
  margin-bottom: 8rem;
}
main .data {
  background: white;
  position: relative;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 5rem;
  padding-bottom: 0;
  width: fit-content;
  margin-top: 8rem;
}
main .data .wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
main .data h2 {
  font-size: 5rem;
}
main .data h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}
main button {
  background: var(--text-color);
  color: var(--white);
}
main button.empty {
  color: var(--text-color);
}
main .content .left {
  position: absolute;
  height: 100%;
  width: 15rem;
  left: -15rem;
  bottom: 0;
}
main .content .right {
  position: absolute;
  height: 100%;
  width: 15rem;
  right: -15rem;
  transform: rotateY(180deg);
  bottom: 0;
}
main .hero-img {
  max-width: 90rem;
  width: 100%;
  margin: auto;
  position: relative;
  bottom: -5rem;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.294) 0px 22px 70px 4px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tag {
  font-size: 1.6rem;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 5rem;
  border: var(--border);
  display: block;
  color: var(--light-text);
}
.content h1 {
  font-size: 7rem;
  max-width: 100rem;
  width: 100%;
  margin: auto;
  line-height: 1.1;
  font-weight: 700;
}

.content p {
  max-width: 70rem;
  width: 100%;
  margin: auto;
}
.actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.logo-slider img {
  width: unset;
  height: 8rem !important;
  margin: 0 1.5rem;
  border-radius: 2rem;
  filter: grayscale(1);
  opacity: 0.7;
}
.small-title {
  text-align: center;
  margin-bottom: 5rem;
}
.small-title h2 {
  font-size: 3rem;
}
section.bg {
  background: var(--bg);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
.big-card {
  padding: 5rem;
  background-color: var(--bg);
  border-radius: 3rem;
}
.big-card button {
  margin-top: 2rem;
}
.contents h2 {
  font-size: 3rem;
  line-height: 1.1;
}
.contents {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.list p i {
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--text-color);
}
.gap-3 {
  display: grid;
  gap: 3rem;
}
.title {
  text-align: center;
  max-width: 80rem;
  margin: auto;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.title h2 {
  font-size: 5rem;
}
.big-card .card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.big-card .grid-2 {
  gap: 1.5rem;
}
.ico {
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ico i {
  font-size: 3rem;
}
.big-card .card h3 {
  font-size: 2rem;
}
.contents button {
  width: fit-content;
}
.cta-big {
  background: var(--text-color);
  padding: 5rem;
  border-radius: 3rem;
  max-width: 80rem;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.cta-big h2 {
  color: white;
  font-size: 5rem;
  line-height: 1.1;
}
.cta-big h3 {
  color: var(--primary-color);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
}
.cta-big p {
  max-width: 50rem;
}
/* footer */
footer {
  padding: 5rem 0;
  margin-top: 5rem;
  padding-bottom: 0;
  background: var(--bg);
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
}
.link,
.contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.link h2,
.contact h2 {
  font-size: 2rem;
}
.link a,
.contact a {
  font-weight: 500;
}
footer p {
  font-size: 1.5rem;
}
footer p {
  margin: 2rem 0;
}
footer .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social i {
  font-size: 2.5rem;
  width: 5rem;
  aspect-ratio: 1/1;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}
.copy {
  padding: 2rem;
  text-align: center;
  margin-top: 5rem;
  font-size: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.046);
}
section a,
footer a {
  width: fit-content !important;
}
footer .logo img {
  height: 6rem;
}
/* modal */
.modal {
  position: fixed;
  z-index: 999900;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  background: #0f0f14dd;
  backdrop-filter: blur(20px);
  display: none;
}
.modal.active {
  display: grid;
}
input,
select {
  width: 100%;
  padding: 2rem 0;
  background: unset;
  border-bottom: 1px solid #0000002a;
  color: var(--text-color);
}
.modal form,
.modal .form {
  padding: 5rem;
  width: 100%;
  background: white;
  max-width: 80rem;
  width: 95%;
  margin: auto;
  border-radius: 2rem;
  position: relative;
}
.modal .img {
  width: 100%;
  height: 100%;
  background: wheat;
}
.modal .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal form button {
  margin-top: 3rem;
}
form h2 {
  color: var(--text-color);
  font-size: 3rem;
  margin-bottom: 5rem;
}
select option {
  color: var(--text-color);
}
.close {
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: red;
  position: fixed;
  right: 1rem;
  top: 1rem;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.close i {
  font-size: 3rem;
  color: white;
}
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
/* feedback */
/* slider */
.my-slide {
  width: 40vw;
  background: var(--bg);
  padding: 2vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  height: 100% !important;
}
.my-slide p {
  font-size: 1vw;
  line-height: 1.5vw;
}
.my-slide .details {
  margin-top: 1.5vw;
}
.my-slide h4 {
  font-size: 1.3vw;
}
.my-slide .profile {
  width: 4vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.my-slide .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.feedback {
  margin: 1rem 0;
}
.stars {
  display: flex;
  align-items: center;
  margin-top: 1vw;
  gap: 0.5rem;
}
.stars p {
  line-height: 2;
  color: var(--text-color);
  font-size: 1.1vw;
  font-weight: 800;
}
.stars .list {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.stars .list svg {
  width: unset;
  height: 1vw;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.logos img {
  height: 3rem;
  mix-blend-mode: overlay;
}
/* cookie policy */
.gdpr-consent {
  position: fixed;
  bottom: 0 !important;
  left: 50%;
  transform: translateX(-50%) !important;
  width: 100%;
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
  display:  none;
}

.gdpr-consent.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  z-index: 4;
  display: block;
}

.gdpr-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 5rem;
}

.gdpr-header {
  margin-bottom: 1rem;
}

.gdpr-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.gdpr-description {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

.gdpr-preferences {
  margin: 1.5rem 0;
}

.preference-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: var(--transition);
  border-radius: 1rem;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  left: 0.125rem;
  bottom: 0.125rem;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(1.5rem);
}

.preference-label {
  font-size: 1.5rem;
  color: #4b5563;
}

.gdpr-actions {
  display: flex;
  gap: 1rem;
  padding-left: 5rem;
  border-left: 1px solid #e5e7eb;
  flex-direction: column;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #4b5563;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

/* header section end */
@media (max-width: 1024px) {
  htl {
    font-size: 45%;
  }
}
@media (max-width: 660px) {
  html {
    font-size: 62%;
  }
  header .container {
    padding: 0 1.5rem;
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  header .logo img {
    height: 3rem;
  }
  .menu {
    display: block;
  }
  .menu {
    height: 2.5rem;
    width: 3.5rem;
    cursor: pointer;
  }

  .menu span:nth-child(1),
  .menu span:nth-child(1)::before,
  .menu span:nth-child(1)::after {
    background: var(--text-color);
    content: "";
    position: absolute;
    width: 3.5rem;
    height: 3px;
    border-radius: 1rem;
    margin-top: 13px;

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .menu span:nth-child(1)::before {
    margin-top: -12px;
    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
  }

  .menu span:nth-child(1)::after {
    margin-top: 12px;

    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
  }

  .menu span:nth-child(2) {
    background: var(--text-color);
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    margin-top: 13px;
    border-radius: 1rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .menu.active span:nth-child(1)::before,
  .menu.active span:nth-child(1)::after {
    margin-top: 0;
  }

  .menu.active span:nth-child(1) {
    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu.active span:nth-child(2) {
    width: 3.5rem;
    -webkit-transition: 0.3s ease-in-out 0.5s;
    -moz-transition: 0.3s ease-in-out 0.5s;
    -o-transition: 0.3s ease-in-out 0.5s;
    transition: 0.3s ease-in-out 0.5s;
  }
  header {
    background: white;
  }
  header .links {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: calc(100vh - 8rem);
    position: fixed;
    top: 8rem;
    background: var(--bg);
    backdrop-filter: blur(15px);
    width: 100%;
    padding: 5rem 0;
    left: 0px;
    transition: 0.5s;
    transform: translateX(100%);
    z-index: 9999;
  }
  header .links.active {
    transform: translateX(0%) !important;
  }
  header .cta button.empty {
    display: none;
  }
  header .links button.empty {
    display: inline-block;
  }
  section {
    padding: 5rem 0;
    overflow: hidden;
  }
  [class*="grid"] {
    grid-template-columns: 1fr !important;
  }
  .fix {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  header .links button.empty {
    display: block;
  }
  .content h1 {
    font-size: 3rem;
  }
  main {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0;
  }
  main .container {
    padding: 0;
  }
  main .data {
    padding: 2rem;
    border-radius: 2rem;
    width: 100%;
    margin-top: 3rem;
  }
  main .data h2 {
    font-size: 3rem;
  }
  main .content .right,
  main .content .left {
    display: none;
  }
  .contents h2 {
    font-size: 2.3rem;
  }
  .big-card {
    padding: 2rem;
  }
  footer .container {
    grid-template-columns: 1fr;
  }
  main .data .wraper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions :is(a, button) {
    width: 100%;
  }
  .title h2 {
    font-size: 3rem;
  }
  .my-slide {
    width: 35rem;
    padding: 2rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .my-slide p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .my-slide h4 {
    font-size: 2rem;
    line-height: 1.5;
  }
  .my-slide .profile {
    width: 5rem;
  }
  .stars .list svg {
    height: 1.4rem;
  }
  .cta-big {
    padding: 3rem;
  }
  .modal form,
  .modal .form {
    overflow-y: scroll;
    height: 90%;
  }
  .modal .form {
    padding: 3rem;
    padding-top: 5rem;
  }
  .gdpr-actions {
    flex-direction: column;
    padding-left: 0;
    border: unset;
  }
  .gdpr-consent {
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
    max-width: 100%;
  }
  .actions :is(button, a) {
    width: 100% !important;
  }
  .gdpr-content {
    grid-template-columns: 1fr;
  }
}
