@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed: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&family=Barlow: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&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

* {
  -webkit-touch-callout: none;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background: #F6F1EB;
}

h2.h2 {
  font-size: 65px;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 1.1em;
  letter-spacing: -2%;
  font-family: "Montserrat", sans-serif;
}
h2.h2.center {
  text-align: center;
}

@media only screen and (max-width: 1650px) {
  h2.h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 27px;
  }
}
header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo a {
  color: #3E3E3E;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #3E3E3E;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #3E3E3E;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  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: 401;
  background: rgba(62, 62, 62, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.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 #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    gap: 30px;
  }
  header nav a {
    font-size: 16px;
  }
  header .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 5%;
    height: 70px;
  }
  header .logo a {
    font-size: 20px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.secondary a {
  background: transparent;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}
.btn.secondary:hover a {
  outline: 1px solid #3E3E3E;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  border-radius: 200px;
  text-decoration: none;
  padding: 0.65em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #B8B9A5;
  outline: 1px solid transparent;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
}
.btn:hover a {
  outline: 1px solid #B8B9A5;
}

footer {
  padding: 5rem 5%;
  background: #3E3E3E;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 55%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}
footer .footer__content .left p, footer .footer__content .left a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p {
  max-width: 500px;
}
footer .footer__content .left img {
  height: 250px;
}
footer .footer__content .left a {
  text-decoration: none;
}
footer .footer__content .left a[href^=tel] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-weight: 400;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #B8B9A5;
  stroke-width: 3;
}

@media only screen and (max-width: 1550px) {
  footer .footer__content .left {
    width: 60%;
    gap: 25px;
  }
  footer .footer__content .left img {
    height: 200px;
  }
  footer .footer__content .left p {
    max-width: 400px;
  }
}
@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: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left img {
    height: 175px;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right h3 {
    font-size: 2em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
    flex-flow: column;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
  footer .footer__content .left p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #B8B9A5;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(62, 62, 62, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #3E3E3E;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #3E3E3E;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #EBE6E0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 0.75fr 0.25fr;
  gap: 10px;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details .details__content {
  display: flex;
  justify-items: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
}
.contacts .details .details__content h3 {
  font-size: 40px;
  color: #3E3E3E;
  font-weight: 500;
}
.contacts .details .details__content .link {
  color: #3E3E3E;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.contacts .details .details__content .link svg {
  height: 31px;
  width: 31px;
  stroke-width: 1.75;
}
.contacts .details .details__content .link span {
  font-size: 27px;
  font-weight: 300;
}
.contacts .details .photo {
  width: 100%;
}
.contacts .details .photo img {
  width: 100%;
  border-radius: 10px;
}
.contacts .details .photo p {
  font-size: 18px;
  color: #3E3E3E;
}

@media only screen and (max-width: 1550px) {
  .contacts .details {
    width: 45vw;
    padding: 30px;
  }
  .contacts .details .details__content h3 {
    font-size: 35px;
  }
  .contacts .details .details__content .link svg {
    height: 27px;
    width: 27px;
  }
  .contacts .details .photo p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details .details__content h3 {
    font-size: 25px;
  }
  .contacts .details .details__content .link {
    gap: 10px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 17px;
  }
  .contacts .details .photo img {
    width: 100%;
  }
  .contacts .details .photo p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .contacts .details .photo img {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 5px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
    grid-template-columns: 1fr;
  }
  .contacts .details .details__content h3 {
    font-size: 20px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 15px;
  }
}
.hero {
  padding: 0 0 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  position: relative;
}
.hero .text {
  width: 100%;
  padding: 150px 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 25px;
}
.hero .text p {
  font-size: 18px;
  color: rgba(62, 62, 62, 0.6);
  line-height: 1.5em;
}
.hero .text .buttons {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  margin-top: 15px;
}
.hero .text .buttons .btn a {
  font-size: 20px;
}
.hero .image {
  width: 100%;
  height: 100%;
}
.hero .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 150px;
  background: #EBE6E0;
  padding: 100px 5%;
}
.benefits .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
}
.benefits .text p {
  font-size: 18px;
  color: rgba(62, 62, 62, 0.6);
  line-height: 1.5em;
}
.benefits .text .btn a {
  font-size: 20px;
}
.benefits .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}
.benefits .content .item {
  width: 100%;
  background: #fff;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 25px;
  position: relative;
  z-index: 2;
}
.benefits .content .item .icon {
  height: 71px;
  width: 71px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B8B9A5;
}
.benefits .content .item .icon span {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.benefits .content .item h3 {
  font-size: 25px;
  color: #3E3E3E;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
.benefits .content .item p {
  text-align: center;
  color: rgba(62, 62, 62, 0.6);
  font-size: 18px;
}
.benefits .content .dot {
  height: 100px;
  position: absolute;
  top: 50%;
}
.benefits .content .dot.dot1 {
  left: 33%;
  transform: translate(-50%, -50%);
}
.benefits .content .dot.dot2 {
  left: 66%;
  transform: translate(-50%, -50%);
}

.calc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 10%;
  position: relative;
}
.calc .dot {
  position: absolute;
  height: 100px;
}
.calc .dot.dot1 {
  left: calc(10vw - 25px);
  top: 75px;
}
.calc .dot.dot2 {
  right: calc(10vw - 25px);
  bottom: 75px;
}
.calc .calc__content {
  width: 100%;
  padding: 50px;
  background: #EBE6E0;
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  row-gap: 25px;
  gap: 75px;
  position: relative;
  z-index: 2;
}
.calc .calc__content .left {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 25px;
  flex-flow: column;
}
.calc .calc__content .left h2 {
  margin-bottom: 30px;
}
.calc .calc__content .left .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.calc .calc__content .left .item label {
  font-size: 25px;
  font-weight: 500;
  color: #3E3E3E;
}
.calc .calc__content .left .item .input__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
.calc .calc__content .left .item .input__parent .input {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
}
.calc .calc__content .left .item .input__parent .input input {
  padding: 10px 20px;
  background: #B8B9A5;
  border: none;
  font-size: 18px;
  color: #fff;
}
.calc .calc__content .left .item .input__parent .input .unit {
  background: #3E3E3E;
  color: #fff;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
}
.calc .calc__content .left .item .input__parent button {
  height: 41px;
  width: 41px;
  border: 1px solid #3E3E3E;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: none;
  cursor: pointer;
}
.calc .calc__content .left .item .input__parent button:hover {
  transform: scale(1.025);
}
.calc .calc__content .left .item .input__parent button svg {
  height: 23px;
  width: 23px;
  color: #3E3E3E;
}
.calc .calc__content .left p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 35px;
  color: #3E3E3E;
}
.calc .calc__content .right {
  background: #3E3E3E;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 25px;
}
.calc .calc__content .right h3 {
  font-size: 23px;
  color: #fff;
  font-weight: 400;
}
.calc .calc__content .right #final__sum {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
.calc .calc__content .right .btn a {
  font-size: 20px;
}

@media only screen and (max-width: 1550px) {
  .hero {
    gap: 75px;
  }
  .hero .text {
    padding: 100px 0;
  }
  .hero .text .dots {
    width: 75px;
  }
  .hero .navigation .buttons {
    gap: 15px;
  }
  .hero .navigation .buttons button svg {
    height: 35px;
    width: 35px;
  }
  .hero .navigation .slide__progression {
    gap: 15px;
  }
  .hero .navigation .slide__progression b {
    font-size: 20px;
  }
  .benefits {
    gap: 100px;
  }
  .benefits .content {
    gap: 25px;
  }
  .benefits .content .item {
    padding: 35px;
  }
  .benefits .content .item .icon {
    height: 63px;
    width: 63px;
  }
  .benefits .content .item h3 {
    font-size: 20px;
  }
  .benefits .content .item p {
    font-size: 16px;
  }
  .calc .calc__content .left .item label {
    font-size: 21px;
  }
  .calc .calc__content .left .item .input__parent .input input {
    width: 200px;
  }
  .calc .calc__content .right h3 {
    font-size: 20px;
  }
  .calc .calc__content .right #final__sum {
    font-size: 40px;
  }
  .calc .calc__content .right .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    padding: 0 0 0 7.5%;
    gap: 50px;
  }
  .hero .text {
    padding: 75px 0;
  }
  .hero .text p {
    font-size: 16px;
  }
  .hero .text .buttons {
    flex-flow: column;
  }
  .hero .text .buttons .btn a {
    font-size: 18px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 7.5%;
  }
  .benefits .text {
    gap: 10px;
  }
  .benefits .text p {
    font-size: 16px;
  }
  .benefits .text .btn {
    margin-top: 10px;
  }
  .benefits .text .btn a {
    font-size: 16px;
  }
  .benefits .content .item {
    padding: 25px;
  }
  .benefits .content .item .icon {
    height: 51px;
    width: 51px;
  }
  .benefits .content .item p {
    font-size: 15px;
  }
  .calc {
    padding: 100px 7.5%;
  }
  .calc .dot {
    height: 80px;
  }
  .calc .dot.dot1 {
    left: calc(7.5vw - 20px);
    top: 80px;
  }
  .calc .dot.dot2 {
    right: calc(7.5vw - 20px);
    bottom: 80px;
  }
  .calc .calc__content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px;
  }
  .calc .calc__content .left h2 {
    margin-bottom: 15px;
  }
  .calc .calc__content .left .item {
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }
  .calc .calc__content .left .item label {
    font-size: 19px;
  }
  .calc .calc__content .left .item .input__parent .input input {
    font-size: 16px;
  }
  .calc .calc__content .left .item .input__parent button {
    height: 37px;
    width: 37px;
  }
  .calc .calc__content .left .item .input__parent button svg {
    height: 21px;
    width: 21px;
  }
  .calc .calc__content .left p {
    font-size: 15px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .hero .text {
    padding: 50px 0;
    gap: 15px;
  }
  .hero .text p {
    font-size: 15px;
  }
  .hero .text .buttons {
    gap: 10px;
  }
  .hero .text .buttons .btn a {
    font-size: 16px;
  }
  .benefits {
    gap: 40px;
  }
  .benefits .text {
    gap: 5px;
  }
  .benefits .text .btn a {
    font-size: 15px;
  }
  .benefits .content {
    grid-template-columns: 1fr;
  }
  .benefits .content .item {
    padding: 25px;
  }
  .benefits .content .item .icon {
    height: 41px;
    width: 41px;
    margin-bottom: 10px;
  }
  .benefits .content .item h3 {
    font-size: 19px;
    margin-bottom: 5px;
  }
  .benefits .content .item p {
    font-size: 14px;
  }
  .benefits .content .dot {
    height: 50px;
  }
  .calc .calc__content {
    grid-template-columns: 1fr;
  }
  .calc .calc__content .left .item .input__parent {
    width: 100%;
  }
  .calc .calc__content .left .item .input__parent .input {
    width: 90%;
  }
  .calc .calc__content .left .item .input__parent .input input {
    width: 100%;
  }
  .calc .calc__content .right {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    padding: 0 0 35px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero .text {
    padding: 35px 10% 0;
  }
  .hero .text .buttons {
    margin-top: 5px;
    gap: 12px;
  }
  .hero .text .buttons .btn a {
    font-size: 15px;
  }
  .calc {
    padding: 50px 7.5%;
  }
  .calc .dot {
    position: absolute;
    height: 65px;
  }
  .calc .dot.dot1 {
    left: calc(7.5vw - 17px);
    top: 33px;
  }
  .calc .dot.dot2 {
    right: calc(7.5vw - 17px);
    bottom: 33px;
  }
  .calc .calc__content {
    row-gap: 50px;
  }
  .calc .calc__content .left .item .input__parent {
    display: grid;
    grid-template-columns: 35px 1fr 35px;
  }
  .calc .calc__content .left .item .input__parent .input {
    width: 100%;
  }
  .calc .calc__content .left .item .input__parent button {
    height: 35px;
    width: 35px;
  }
  .calc .calc__content .left .item .input__parent button svg {
    height: 19px;
    width: 19px;
  }
  .calc .calc__content .left p {
    font-size: 13px;
  }
  .calc .calc__content .right h3 {
    font-size: 15px;
  }
  .calc .calc__content .right #final__sum {
    font-size: 35px;
  }
  .calc .calc__content .right .btn a {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */