:root {
  --text: #2D6584;
  --main-color: #41B8F9;
  --auxiliary-color: #FD7927;
  --back-color: #ECF0F4;
  --footer-back-color: #D9F1FE;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

p,
p a {
  font-size: 12px;
  text-align: center;
  color: #888;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1045px;
  margin: 0 auto;
}

/* button- group */
.button-group {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all .7s;
  color: white;
  max-width: 300px;
  width: 100%;
}

.btn.download {
  background: linear-gradient(180deg, rgba(65, 184, 249, 1) 0%, rgba(65, 184, 249, 1) 93%, rgba(38, 109, 147, 1) 100%);
}

.btn.download:hover {
  background: linear-gradient(180deg, rgb(97, 196, 250) 0%, rgb(109, 204, 255) 93%, rgb(65, 144, 187) 100%);
}

.btn.contact {
  background: linear-gradient(180deg, rgba(253, 121, 39, 1) 0%, rgba(253, 121, 39, 1) 93%, rgba(151, 72, 23, 1) 100%);
}

.btn.contact:hover {
  background: linear-gradient(180deg, rgb(255, 143, 73) 0%, rgb(255, 142, 71) 93%, rgb(199, 108, 51) 100%);
}

.btn img {
  position: absolute;
  right: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* =========================================================== */

.trial-badge {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 168px;
  height: 168px;
  background-color: #FFC03A;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
}

.trial-badge:hover {
  transform: scale(1.05);
}

.trial-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  margin-top: 24px;
}

.trial-text strong {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.trial-text p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.arrow-down {
  font-size: 18px;
  color: white;
}

@media (max-width: 768px) {
  .trial-badge {
    width: 90px;
    height: 90px;
  }

  .trial-text strong {
    font-size: 15px;
  }

  .trial-text p {
    font-size: 9px;
  }

  .arrow-down {
    font-size: 14px;
    margin-top: -4px;
  }

  .trial-text {
    margin-top: 20px;
  }
}

/* -------------<>-------------- */

.loader {
  border: 4px solid rgba(223, 222, 222, 0.466);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ---------------------- */