* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #15151D;
}

header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
}
header .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}
header nav a:nth-of-type(1)::before {
  content: "01";
}
header nav a:nth-of-type(2)::before {
  content: "02";
}
header nav a:nth-of-type(3)::before {
  content: "03";
}
header nav a::before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  font-size: 0.75em;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #35F4BF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #101010;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #35F4BF;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  header .logo a img {
    height: 2.5rem;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  header {
    height: 5rem;
  }
  header .logo__parent {
    padding-left: 2.5%;
  }
  header .logo__parent .logo {
    font-size: 1.5em;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .btn {
    display: none;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 35px;
  text-decoration: none;
  padding: 1em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: rgb(177, 244, 53);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  color: #15151D;
  font-weight: 600;
  text-transform: uppercase;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  width: 100%;
  padding: 2.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .left {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .left .logo {
  height: 4.5rem;
  margin-bottom: 1.25rem;
}
footer .left a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
footer .left a .green {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
footer .left a:hover .icon {
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.75) 35%, rgba(53, 244, 191, 0.75) 100%);
}
footer .left a .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.6) 35%, rgba(53, 244, 191, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .left a .icon svg {
  height: 22px;
  width: 22px;
  color: #fff;
  stroke-width: 2.5;
}
footer .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1rem;
}
footer .right h3 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer .right a {
  font-size: 1.25em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
footer .right a:hover svg {
  transform: translateX(2px);
}
footer .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #35F4BF;
  stroke-width: 2.5;
}
footer .right a svg path {
  color: rgb(177, 244, 53);
}

@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
  }
  footer .left {
    order: 2;
  }
  footer .left .logo {
    font-size: 1.5em;
    margin-bottom: 0;
    height: 3rem;
  }
  footer .left a {
    font-size: 0.85em;
  }
  footer .left a .icon {
    height: 30px;
    width: 30px;
  }
  footer .left a .icon svg {
    height: 16px;
    width: 16px;
  }
  footer .right {
    order: 1;
  }
  footer .right h3 {
    font-size: 1.5em;
  }
  footer .right a {
    font-size: 1em;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 850px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(0);
}

.fade-up {
  animation: 0.5s fade-up ease-in-out forwards;
}

.animate-fade-up-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-2 {
  animation: 0.5s fade-up 0.5s ease-in-out forwards;
}

.animate-fade-up-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-3 {
  animation: 0.5s fade-up 1s ease-in-out forwards;
}

.animate-fade-up-4 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-4 {
  animation: 1s fade-up 3s ease-in-out forwards;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-100px);
}

.fade-left {
  animation: 1s fade-left ease-in-out forwards;
}

.animate-fade-left-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-2 {
  animation: 1s fade-left 1s ease-in-out forwards;
}

.animate-fade-left-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-3 {
  animation: 1s fade-left 2s ease-in-out forwards;
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-right {
  animation: 1s fade-right ease-in-out forwards;
}

.animate-fade-right-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-2 {
  animation: 1s fade-right 0.5s ease-in-out forwards;
}

.animate-fade-right-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-3 {
  animation: 1s fade-right 2s ease-in-out forwards;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-scale-in {
  opacity: 0;
  transform: translateX(-100%);
}

.scale-in {
  animation: 0.75s scale-in ease-in-out forwards;
}

.animate-scale-in-2 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-2 {
  animation: 0.75s scale-in 0.25s ease-in-out forwards;
}

.animate-scale-in-3 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-3 {
  animation: 0.75s scale-in 0.5s ease-in-out forwards;
}

@media only screen and (max-width: 850px) {
  .fade-left-2, .fade-left-3 {
    animation: 1s fade-left ease-in-out forwards;
  }
  .fade-right-2, .fade-right-3 {
    animation: 1s fade-right ease-in-out forwards;
  }
  .fade-up-2, .fade-up-3, .fade-up-4 {
    animation: 0.5s fade-up ease-in-out forwards;
  }
  .scale-in-2, .scale-in-3 {
    animation: 0.75s scale-in ease-in-out forwards;
  }
}
#loading__parent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
#loading__parent #loading {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
h2.heading {
  font-size: 55px;
  text-align: center;
  color: #fff;
}

.title {
  display: grid;
  grid-template-columns: 0.75fr 0.25fr;
  padding: 5rem 10% 10rem;
}
.title .text h1 {
  font-size: 47px;
  color: #fff;
  line-height: 1.35em;
  letter-spacing: -3px;
}
.title .text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5em;
  margin: 0.75rem 0 2.5rem;
}
.title .text .btn a {
  font-size: 18px;
}
.title .number__parent {
  width: 100%;
  position: relative;
  z-index: 2;
}
.title .number__parent .number {
  font-size: 600px;
  line-height: 1em;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  font-weight: 900;
  filter: blur(5px);
  position: absolute;
  right: -5vw;
  bottom: 0;
  transform: translateY(35%);
  z-index: 2;
}

.benefits {
  padding: 5rem 10%;
  background: #12121A;
}
.benefits .benefits__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  row-gap: 35px;
  margin-top: 2rem;
}
.benefits .benefits__content.three {
  grid-template-columns: repeat(3, 1fr);
}
.benefits .benefits__content .item {
  background: #15151D;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: 0.25s ease;
}
.benefits .benefits__content .item:hover {
  transform: scale(1.025);
}
.benefits .benefits__content .item:hover::before {
  opacity: 1;
}
.benefits .benefits__content .item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 15px;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
  opacity: 0;
  transition: 0.5s ease;
}
.benefits .benefits__content .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #15151D;
  border-radius: 13px;
  z-index: 2;
}
.benefits .benefits__content .item * {
  z-index: 3;
}
.benefits .benefits__content .item .icon {
  height: 71px;
  width: 71px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(177, 244, 53);
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.9) 35%, rgba(53, 244, 191, 0.9) 100%);
  border-radius: 50%;
}
.benefits .benefits__content .item .icon img {
  height: 41px;
  width: 41px;
}
.benefits .benefits__content .item h3 {
  font-size: 25px;
  color: #fff;
  margin-top: 1rem;
}
.benefits .benefits__content .item p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  line-height: 1.35em;
  font-size: 15px;
}

.table {
  padding: 5rem 10% 2.5rem;
}
.table .table__content {
  margin: 2rem 0;
  background: #12121A;
}
.table .table__content.two {
  margin: 2rem 15%;
}
.table .table__content.two .row {
  grid-template-columns: 1fr 1fr;
}
.table .table__content.two .row.row__heading .item:nth-child(2) {
  border-top-right-radius: 15px;
}
.table .table__content.two .row:last-child .item:nth-child(2) {
  border-bottom-right-radius: 15px;
}
.table .table__content .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.table .table__content .row:last-child .item:nth-child(1) {
  border-bottom-left-radius: 15px;
}
.table .table__content .row:last-child .item:nth-child(3) {
  border-bottom-right-radius: 15px;
}
.table .table__content .row.row__heading .item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}
.table .table__content .row.row__heading .item:nth-child(1) {
  border-top-left-radius: 15px;
}
.table .table__content .row.row__heading .item:nth-child(3) {
  border-top-right-radius: 15px;
}
.table .table__content .row.row__heading .item b {
  font-size: 25px;
  color: #fff;
}
.table .table__content .row .item {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-collapse: collapse;
}
.table .table__content .row .item span {
  font-size: 17px;
  color: #fff;
}

.contacts__content {
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
  padding: 5rem 10%;
}
.contacts__content form {
  padding-right: 100px;
  position: relative;
}
.contacts__content form::after {
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 50px;
  top: 0;
}
.contacts__content form h3 {
  font-size: 2.35em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contacts__content form p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  width: 80%;
  line-height: 1.5em;
  margin-bottom: 2rem;
}
.contacts__content form .input__parent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contacts__content form .input__parent input {
  padding-bottom: 1rem;
  font-size: 1.1em;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-weight: 500;
  transition: 0.25s ease;
}
.contacts__content form .input__parent input:focus {
  outline: none;
  border-bottom: 2px solid white;
}
.contacts__content form textarea {
  font-size: 1.1em;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
  height: 12rem;
  width: 100%;
  transition: 0.25s ease;
  resize: none;
}
.contacts__content form textarea:focus {
  outline: none;
  border-bottom: 2px solid white;
}
.contacts__content form #gdpr__parent {
  margin: 1.5rem 0 3rem;
}
.contacts__content form .btn {
  width: 40%;
}
.contacts__content form .btn a {
  font-size: 1.4em;
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  font-weight: 700;
}
.contacts__content .contacts__details {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 4rem;
}
.contacts__content .contacts__details .item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.contacts__content .contacts__details .item h3 {
  font-size: 2.5em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.contacts__content .contacts__details .item .item__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  line-height: 1.5em;
}
.contacts__content .contacts__details .item .contact {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  text-decoration: none;
}
.contacts__content .contacts__details .item .contact:hover .icon {
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.75) 35%, rgba(53, 244, 191, 0.75) 100%);
}
.contacts__content .contacts__details .item .contact .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.6) 35%, rgba(53, 244, 191, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s ease;
}
.contacts__content .contacts__details .item .contact .icon svg {
  height: 22px;
  width: 22px;
  color: #fff;
  stroke-width: 2.5;
}
.contacts__content .contacts__details .item .contact p {
  font-size: 1.25em;
  font-weight: 500;
  color: #fff;
}
.contacts__content .contacts__details .item .contact p .green {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 1300px) {
  h2.heading {
    font-size: 47px;
  }
  .title {
    padding: 3.5rem 10% 5rem;
  }
  .title .text h1 {
    font-size: 40px;
  }
  .title .text p {
    font-size: 16px;
  }
  .title .text .btn a {
    font-size: 16px;
  }
  .title .number__parent .number {
    font-size: 450px;
  }
  .benefits .benefits__content {
    gap: 9px;
  }
  .benefits .benefits__content .item .icon {
    height: 55px;
    width: 55px;
  }
  .benefits .benefits__content .item .icon img {
    height: 31px;
    width: 31px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 21px;
  }
  .benefits .benefits__content .item p {
    font-size: 13px;
  }
  .table .table__content .row.row__heading .item b {
    font-size: 20px;
  }
  .table .table__content .row .item span {
    font-size: 15px;
  }
  .contacts__content {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contacts__content form {
    padding: 0;
  }
  .contacts__content form::after {
    content: none;
  }
  .contacts__content form h3 {
    font-size: 1.9em;
  }
  .contacts__content form p {
    font-size: 0.85em;
  }
  .contacts__content form .input__parent {
    gap: 1.5rem;
  }
  .contacts__content form .btn a {
    font-size: 1.2em;
  }
  .contacts__content .contacts__details .item h3 {
    font-size: 1.9em;
  }
  .contacts__content .contacts__details .item .item__text {
    width: 80%;
  }
}
@media only screen and (max-width: 900px) {
  h2.heading {
    font-size: 40px;
  }
  .title .text h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .title .text p {
    font-size: 15px;
  }
  .title .text .btn a {
    font-size: 14px;
  }
  .title .number__parent .number {
    font-size: 350px;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content.three {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 700px) {
  h2.heading {
    font-size: 30px;
  }
  .title {
    grid-template-columns: 1fr;
  }
  .title .text h1 {
    font-size: 25px;
  }
  .title .text p {
    font-size: 14px;
  }
  .title .number__parent {
    display: none;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
  }
  .benefits .benefits__content.three {
    grid-template-columns: 1fr;
  }
  .table {
    padding: 2.5rem 10%;
  }
  .table .table__content {
    margin: 1.5rem 0 0;
  }
  .table .table__content.two {
    margin: 1.5rem 0 0;
  }
  .table .table__content .row.row__heading .item {
    padding: 10px;
  }
  .table .table__content .row.row__heading .item b {
    font-size: 13px;
  }
  .table .table__content .row .item {
    padding: 7px;
  }
  .table .table__content .row .item span {
    font-size: 13px;
  }
  .contacts__content {
    padding: 2.5rem 10%;
  }
  .contacts__content form h3 {
    font-size: 1.5em;
    width: 100%;
  }
  .contacts__content form p {
    font-size: 0.8em;
    width: 100%;
  }
  .contacts__content form .input__parent {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contacts__content form .input__parent input {
    font-size: 1em;
  }
  .contacts__content form textarea {
    font-size: 1em;
  }
  .contacts__content form #gdpr__parent {
    margin: 1.5rem 0 1.5rem;
  }
  .contacts__content form .btn {
    width: auto;
  }
  .contacts__content form .btn a {
    font-size: 0.9em;
    padding: 1em 2em;
  }
  .contacts__content .contacts__details .item h3 {
    font-size: 1.75em;
  }
  .contacts__content .contacts__details .item .contact .icon {
    height: 33px;
    width: 33px;
  }
  .contacts__content .contacts__details .item .contact .icon svg {
    height: 19px;
    width: 19px;
  }
  .contacts__content .contacts__details .item .contact p {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */