/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Red+Hat+Display:wght@400;700;900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(0, 100%, 60%);
  /* Crimson Red */
  --first-color-light: hsl(0, 100%, 75%);
  --first-color-alt: hsl(0, 80%, 50%);
  /* Darker Red */
  --first-color-dark: hsl(0, 100%, 30%);
  --first-color-gray: hsl(0, 0%, 64%);
  --title-color: hsl(180, 4%, 98%);
  --title-color-black: hsl(180, 4%, 12%);
  --text-color: hsl(180, 4%, 72%);
  --text-color-light: hsl(180, 4%, 65%);
  --body-color: hsl(180, 12%, 8%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Red Hat Display', sans-serif;
  --second-font: 'Kaushan Script', cursive;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.5rem;
  --big-font-size: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-bold: 700;
  --font-black: 900;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 6rem;
    --bigger-font-size: 3.5rem;
    --big-font-size: 2.75rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background: radial-gradient(circle at center, hsl(0, 0%, 16%), hsl(0, 0%, 5%));
  /* Premium Dark Gradient */
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1124px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__data {
  display: flex;
  flex-direction: column;
  row-gap: .75rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section__title,
.section__title-border {
  font-size: var(--big-font-size);
  letter-spacing: 1.5px;
}

.section__subtitle {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--first-color);
  transform: rotate(-2deg);
}

.section__titles {
  display: flex;
  column-gap: .75rem;
  justify-content: center;
}

.section__title-border {
  -webkit-text-stroke: 1px var(--text-color);
  color: transparent;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.main {
  overflow: hidden;
  /* For animation ScrollReveal */
}

.color-red {
  color: hsl(0, 80%, 64%);
}

.color-green {
  color: var(--first-color);
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: var(--body-color);
  /* Added background */
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background .3s;
  box-shadow: 0 4px 8px hsla(180, 12%, 4%, .3);
  /* Added subtle shadow */
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--title-color);
  display: flex;
}

.nav__logo {
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-bold);
  font-family: var(--second-font);
  /* Kaushan Script */
  font-size: 1.75rem;
  /* Larger Premium Size */
}

.nav__logo img {
  width: 2.5rem;
  /* Increased from 1.25rem */
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    background-color: hsla(180, 12%, 8%, .8);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    border-left: 2px solid var(--first-color-gray);
    transition: right .4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3.5rem;
    /* Gap between list items */
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 3rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-bold);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav__button {
  display: block;
  /* Ensure button is visible in mobile menu */
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(180, 12%, 4%, .3);
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  padding-bottom: 0;
}

.home__container {
  row-gap: 3rem;
  padding-top: 2rem;
}

.home__data {
  text-align: center;
}

.home__subtitle {
  font-size: var(--bigger-font-size);
  -webkit-text-stroke: 1px var(--title-color);
  color: transparent;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  margin: .5rem 0 .75rem;
}

.home__description {
  margin-bottom: 2rem;
}

.home__images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.home__img {
  width: 280px;
  z-index: 10;
}

.home__triangle {
  position: absolute;
  background-color: var(--first-color);
}

.home__triangle-1 {
  width: 105px;
  height: 105px;
  bottom: -2rem;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.home__triangle-2 {
  width: 25px;
  height: 25px;
  top: 4rem;
  right: 1rem;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(-15deg);
}

.home__triangle-3 {
  width: 12px;
  height: 12px;
  bottom: 3.5rem;
  left: 2rem;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(30deg);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  padding: 1rem 1.75rem;
  border-radius: .25rem;
  color: var(--title-color-black);
  font-weight: var(--font-bold);
  transition: background .3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

/*=============== LOGOS ===============*/
.logos__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.logos__img {
  width: 120px;
  opacity: .2;
  transition: opacity .4s;
}

.logos__img:hover {
  opacity: 1;
}

/*=============== PROGRAM ===============*/
.program__container {
  grid-template-columns: 225px;
  justify-content: center;
  row-gap: 2rem;
}

.program__card {
  display: grid;
  background-color: hsla(79, 6%, 64%, .07);
  padding: 1.5rem 2rem;
  border: 2px solid transparent;
  transition: background .5s, border .4s;
}

.program__img {
  width: 38px;
}

.program__shape {
  width: 50px;
  height: 50px;
  background-color: var(--first-color-gray);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background .5s;
}

.program__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.program__description {
  font-size: var(--small-font-size);
  letter-spacing: .5px;
  line-height: 150%;
}

.program__title,
.program__description {
  transition: color .5s;
}

.program__button {
  justify-self: end;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--title-color-black);
  background-color: var(--first-color);
  padding: .25rem .5rem;
  display: flex;
  transition: background-color .3s;
}

.program__button:hover {
  background-color: var(--first-color-alt);
}

/* Hover program card */
.program__card:hover {
  background-color: var(--first-color);
  border: 2px solid var(--first-color-light);
}

.program__card:hover .program__shape {
  background-color: var(--first-color-light);
}

.program__card:hover .program__title,
.program__card:hover .program__description {
  color: var(--title-color-black);
}

/*=============== CHOOSE ===============*/
.choose {
  padding-bottom: 0;
}

.choose__overflow {
  position: relative;
}

.choose__container {
  row-gap: 3rem;
}

.choose__content .section__data {
  margin-bottom: 2rem;
}

.choose__description {
  text-align: center;
  margin-bottom: 2.5rem;
}

.choose__data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
}

.choose__group {
  text-align: center;
}

.choose__number {
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  font-weight: 400;
  margin-bottom: .25rem;
}

.choose__subtitle {
  font-size: var(--small-font-size);
}

.choose__triangle {
  height: 325px;
  position: absolute;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.choose__triangle-1 {
  width: 305px;
  background-color: var(--first-color);
  z-index: -1;
}

.choose__triangle-2 {
  width: 205px;
  background-color: var(--first-color-alt);
  z-index: -2;
}

.choose__triangle-3 {
  width: 105px;
  background-color: var(--first-color-dark);
  z-index: -3;
}

.choose__images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.choose__img {
  width: 260px;
  margin-bottom: 1.5rem;
}

/*=============== PRICING ===============*/
.pricing__container {
  grid-template-columns: 285px;
  justify-content: center;
  row-gap: 2rem;
}

.pricing__card {
  position: relative;
  background-color: hsla(79, 6%, 64%, .07);
  padding: 2rem 1.5rem 2.5rem;
}

.pricing__img {
  width: 35px;
}

.pricing__shape {
  width: 60px;
  height: 60px;
  background-color: var(--first-color-gray);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.pricing__title {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.pricing__number {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.pricing__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.pricing__item {
  display: flex;
  column-gap: .5rem;
  align-items: center;
  font-size: var(--small-font-size);
}

.pricing__item i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.pricing__item-opacity {
  opacity: .5;
}

.pricing__button {
  background-color: var(--title-color);
  color: var(--title-color-black);
}

.pricing__button:hover {
  background-color: var(--title-color-black);
  color: var(--title-color);
}

.pricing__card-active {
  background-color: var(--first-color);
  border: 2px solid var(--first-color-light);
}

.pricing__card-active .pricing__shape {
  background-color: var(--first-color-light);
}

.pricing__card-active .pricing__item i {
  color: var(--title-color);
}

.pricing__card-active .pricing__title,
.pricing__card-active .pricing__number,
.pricing__card-active .pricing__item {
  color: var(--title-color-black);
}

/*=============== CALCULATE ===============*/
.calculate {
  padding-bottom: 0;
}

.calculate__container {
  row-gap: 4rem;
}

.calculate__content .section__titles {
  margin-bottom: 2rem;
  text-align: center;
}

.calculate__description {
  text-align: center;
  margin-bottom: 2.5rem;
}

.calculate__form {
  display: grid;
  row-gap: 1rem;
}

.calculate__box {
  position: relative;
  border: 2px solid var(--first-color-light);
}

.calculate__input {
  width: 100%;
  background: transparent;
  padding: 20px 56px 20px 24px;
  outline: none;
  border: none;
  color: var(--title-color);
}

.calculate__input::-webkit-outer-spin-button,
.calculate__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculate__input[type=number] {
  -moz-appearance: textfield;
}

/* Registration Page Styles - Refined V2 */
.register.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  /* Added padding top/bottom */
  position: relative;
}

.register__back {
  position: fixed;
  /* Fixed to viewport */
  top: 2rem;
  left: 2rem;
  color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  transition: .3s;
  z-index: 100;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  /* Legibility */
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--first-color-alt);
}

.register__back:hover {
  transform: translateX(5px);
  background: var(--first-color-alt);
  color: var(--white-color);
}

.register__container {
  width: 100%;
  max-width: 600px;
  /* Reduced width for focus */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Image - Compact Banner */
.register__img-bg {
  width: 100%;
  height: 180px;
  /* Specific smaller height */
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--first-color-alt);
  margin-bottom: 1rem;
}

.register__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  /* Focus on upper part of image */
}

/* Content & Form */
.register__content {
  background: var(--body-color);
  border: 1px solid var(--first-color);
  padding: 3rem 2.5rem;
  box-shadow: 0 0 30px rgba(220, 20, 60, 0.1);
  width: 100%;
  text-align: center;
  /* Center everything */
}

.register__header {
  margin-bottom: 3rem;
}

.register__form {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  /* Generous spacing */
}

.register__group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.register__label {
  font-size: var(--small-font-size);
  color: var(--first-color);
  margin-bottom: 0.75rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.register__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-color);
  padding: 0.5rem 0;
  color: var(--white-color);
  font-family: var(--body-font);
  transition: .3s;
  text-align: center;
  /* Center text input */
  font-size: var(--normal-font-size);
}

.register__input:focus {
  border-bottom-color: var(--first-color);
}

.register__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  /* Spacing between grid items */
}

.register__input option {
  background-color: var(--body-color);
  color: var(--white-color);
  text-align: center;
}

.register__button {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
  /* Center button content */
}

.calculate__label {
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  color: var(--title-color);
}

.calculate__form .button {
  margin-top: 1.5rem;
}

.calculate__img {
  width: 200px;
  justify-self: center;
}

.calculate__message {
  position: static;
  margin-top: 1.5rem;
  transform: none;
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 4rem;
  padding-top: 1rem;
}

.footer__logo,
.footer__description {
  margin-bottom: 1.5rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
}

.footer__logo img {
  width: 1.5rem;
}

.footer__description {
  font-size: var(--small-font-size);
}

.footer__form {
  display: grid;
  row-gap: 1rem;
  gap: 1rem;
}

.footer__input {
  width: 100%;
  background: transparent;
  border: 2px solid var(--first-color-light);
  padding: 1rem 1.5rem;
  color: var(--title-color);
  outline: none;
}

.footer__content,
.footer__links,
.footer__group {
  display: grid;
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 3.5rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.footer__links {
  row-gap: .75rem;
}

.footer__link {
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: color .3s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__group {
  margin-top: 5rem;
  justify-items: center;
  row-gap: 1.5rem;
}

.footer__social {
  display: flex;
  column-gap: 1.25rem;
}

.footer__social-link {
  color: var(--title-color);
  font-size: 1.25rem;
  transition: color .3s, transform .3s;
}

.footer__social-link:hover {
  color: var(--first-color);
  transform: translateY(-.25rem);
}

.footer__copy {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.footer__message {
  position: absolute;
  transform: translateY(1rem);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(180, 12%, 8%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(180, 12%, 32%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(180, 12%, 48%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--first-color);
  display: inline-flex;
  padding: .35rem;
  color: var(--title-color-black);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .home__img {
    width: 200px;
  }

  .choose__img {
    width: 195px;
  }

  .choose__triangle {
    height: 250px;
  }

  .choose__triangle-1 {
    width: 260px;
  }

  .choose__triangle-2 {
    width: 150px;
  }

  .choose__triangle-3 {
    width: 45px;
  }

  .program__card {
    padding: 1.5rem;
  }

  .pricing__card {
    padding: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .home__images {
    justify-self: center;
  }

  .home__img {
    width: 380px;
  }

  .home__triangle-1 {
    width: 145px;
    height: 145px;
    bottom: -3rem;
  }

  .home__triangle-2 {
    width: 35px;
    height: 35px;
    top: 5rem;
    right: 2rem;
  }

  .home__triangle-3 {
    width: 16px;
    height: 16px;
    bottom: 5.5rem;
    left: 4rem;
  }

  .logos__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .program__container {
    grid-template-columns: repeat(2, 225px);
    gap: 2.5rem;
  }

  .choose__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .choose__content {
    order: 1;
  }

  .choose__data {
    justify-items: start;
    row-gap: 2rem;
  }

  .choose__images {
    order: 2;
  }

  .choose__img {
    width: 330px;
  }

  .choose__triangle {
    height: 400px;
  }

  .choose__triangle-1 {
    width: 380px;
  }

  .choose__triangle-2 {
    width: 260px;
  }

  .choose__triangle-3 {
    width: 120px;
  }

  .pricing__container {
    grid-template-columns: repeat(2, 285px);
    gap: 2.5rem;
  }

  .calculate__container {
    grid-template-columns: 1fr .8fr;
    align-items: center;
  }

  .calculate__form {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .calculate__form .button {
    grid-column: 1 / 3;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }

  .home__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data {
    text-align: initial;
  }

  .home__images {
    justify-self: end;
  }

  .logos__container {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    gap: 4rem;
  }

  .choose__description {
    text-align: initial;
  }

  .choose__data {
    grid-template-columns: repeat(2, max-content);
    gap: 3rem;
  }

  .pricing__container {
    grid-template-columns: repeat(3, 330px);
    gap: 2rem;
  }

  .pricing__card {
    padding: 2rem 2.5rem;
  }

  .calculate__container {
    grid-template-columns: 1fr 400px;
  }

  .footer__content {
    justify-content: center;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__menu {
    width: initial;
    height: initial;
    position: initial;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .section {
    padding: 7rem 0 2rem;
  }

  .section__subtitle {
    font-size: 2rem;
  }

  .home__container {
    gap: 0;
  }

  .home__title {
    margin: .75rem 0 1.25rem;
  }

  .home__triangle-1 {
    width: 250px;
    height: 250px;
    bottom: -6rem;
  }

  .home__triangle-2 {
    width: 60px;
    height: 60px;
    top: 7rem;
    right: 4rem;
  }

  .home__triangle-3 {
    width: 25px;
    height: 25px;
    bottom: 9rem;
    left: 6rem;
  }

  .logos__img {
    width: 190px;
  }

  .program__container {
    grid-template-columns: repeat(4, 255px);
  }

  .program__card {
    padding: 3rem 1.5rem 1.5rem;
  }

  .program__shape {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
  }

  .program__img {
    width: 50px;
  }

  .program__title {
    font-size: var(--h2-font-size);
  }

  .program__description {
    font-size: var(--normal-font-size);
  }

  .choose__container {
    column-gap: 8rem;
  }

  .choose__img {
    width: 450px;
    margin: 0 0 0 5rem;
  }

  .choose__triangle {
    height: 520px;
  }

  .choose__triangle-1 {
    width: 535px;
  }

  .choose__triangle-2 {
    width: 345px;
  }

  .choose__triangle-3 {
    width: 135px;
  }

  .calculate__container {
    grid-template-columns: 1fr 500px;
    column-gap: 5rem;
  }

  .calculate__form {
    width: 550px;
    grid-template-columns: repeat(2, 230px);
    column-gap: 2rem;
  }

  .calculate__form .button {
    width: initial;
  }

  .footer__content {
    column-gap: 7rem;
  }

  .footer__group {
    margin-top: 7rem;
  }

  .footer__social {
    column-gap: 2rem;
  }

  .footer__social-link {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__images {
    position: relative;
  }

  .home__img {
    width: 500px;
    transform: translateX(3rem);
  }
}