/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(187, 54%, 54%);
  --first-color-alt: hsl(185, 50%, 48%);
  --first-color-light: hsl(188, 58%, 66%);
  --title-color: hsl(180, 1%, 28%);
  --text-color: hsl(228, 8%, 70%);
  --white-color: hsl(228, 8%, 98%);
  --black-color: hsl(0, 0%, 100%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(228, 6%, 12%);
  --shadow-img: 0 0 48px hsla(188, 54%, 54%, 0.4);
  --gradient-card: linear-gradient(180deg, hsla(93, 8%, 8%), rgb(46, 101, 107));
  --body-secund-color: #162535;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

.services.section, 
.care.section,
footer {
  background-color: var(--body-secund-color);
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  justify-content: center;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  height: 10%;
  top: 0;
  left: 0;
  background-color: #3578ac;
  z-index: var(--z-fixed);
  transition: background-color 0.3s ease;
  overflow: hidden;
  display: flex;
}

.nav {
  padding: 0 20px;
  width: 100%;
  position: relative;
  /* height: var(--header-height); */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo,
.nav__close,
.nav__toggle,
.nav__actions {
  display: flex;
  color: var(--white-color);
  cursor: pointer;
}

.nav__logo {
  font-weight: var(--font-bold);
  column-gap: 0.25rem;
  align-items: center;
  font-size: 18px;
}

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

.img_logo_header {
  padding: 5px;
  width: 115px;
  background-color: white;
}

.nav__actions {
  font-size: 1.25rem;
  column-gap: 0.5rem;
  align-items: center;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: hsla(228, 24%, 6%, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 80%;
    height: 100%;
    padding: 6rem 3rem 0;
    transition: right 0.4s;
  }
}

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

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

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

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  font-size: 1.25rem;
}

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

/* Add blur header */
/* .blur-header::after {
  content: "";
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(228, 24%, 6%, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  top: 0;
  left: 0;
  z-index: -1;
} */

.blur-header {
  background-color: transparent;
}

.blur-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 120, 172, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: 0;
  left: 0;
  z-index: -1;
}

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

.img__card img {
  border-radius: 10px;
  height: 290px;
}

/*=============== HOME ===============*/
.home__container {
  padding-top: 2.5rem;
  row-gap: 2rem;
}

.home__img {
  width: 530px;
  /* filter: drop-shadow(var(--shadow-img)); */
  justify-self: center;
}

.home__data {
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.home__title span {
  color: var(--first-color);
}

.home__description {
  margin-bottom: 3rem;
}

.home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}

/*=============== BUTTON ===============*/
.button {
  background-color: #3578ac;
  color: var(--black-color);
  font-weight: var(--font-bold);
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  border-radius: 4rem;
  display: inline-flex;
  align-items: center;
  column-gap: 0.75rem;
}

.button span {
  /* background-color: var(--first-color); */
  padding: 0.5rem;
  font-size: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.4s;
}

.button:hover span {
  transform: translateX(0.15rem) rotate(-30deg);
}

.button__link {
  color: var(--white-color);
  font-weight: var(--font-bold);
  text-decoration: underline;
  transition: color 0.4s;
}

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

/*=============== NEWS ===============*/
.new__data {
  text-align: center;
}

.new__container {
  row-gap: 7.5rem;
}

.new__content {
  row-gap: 6rem;
}

.new__card {
  position: relative;
  width: 200px;
  /* background: var(--gradient-card); */
  padding: 9rem 0.75rem 1.5rem 0.75rem;
  border: 2px solid var(--first-color);
  border-radius: 1.5rem;
}

.new__img {
  position: absolute;
  top: -4.5rem;
  left: 0;
  right: 0;
  width: 180px;
  margin: 0 auto;
  transition: transform 0.4s;
}

.new__title {
  font-size: var(--h2-font-size);
  text-align: center;
}

.new__card:nth-child(odd) {
  rotate: -5deg;
}

.new__card:nth-child(even) {
  justify-self: flex-end;
  rotate: 5deg;
}

.new__card:hover .new__img {
  transform: translateY(-0.5rem);
}
/*=============== NOSSO SERVICO ===============*/
.services__container {
  padding: 6.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 1.5rem;
}

.services__card {
  position: relative;
  background: var(--gradient-card);
  padding: 5.75rem 0.75rem 1.25rem 0.75rem;
  border: 2px solid var(--first-color);
  border-radius: 1rem;
}

.services__img {
  position: absolute;
  top: -4.5rem;
  left: 0;
  right: 0;
  width: 130px;
  margin: 0 auto;
  transition: transform 0.4s;
}

.services__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.services__description {
  text-align: center;
  font-size: large;
  /* padding: 0 27%; */
}

.services__price {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.services__button {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  outline: none;
  border: none;
  background-color: var(--white-color);
  padding: 6px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: grid;
  cursor: pointer;
}

.services__card:hover .services__img {
  transform: translateY(-0.5rem);
}

.text__card h3 {
  text-align: center;
  color: #3578ac;
  padding: 10px 0;
}

.text__card p {
  text-align: center;
}

.services__buttons {
  display: flex;
  justify-content: center;
}

/*=============== CARE ===============*/
.other__container {
  padding-top: 4rem;
  padding-bottom: 6rem;
  row-gap: 2rem;
}

.other__img {
  width: 270px;
  filter: drop-shadow(--shadow-img);
  justify-self: center;
}

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

.other__item {
  display: flex;
  column-gap: 0.5rem;
  align-items: flex-start;
}

.other__item i {
  font-size: 1.5rem;
  color: var(--first-color);
}

.box__one {
  margin-bottom: 20px;
  padding-right: 100px;
  box-sizing: border-box;
}

.box__one p,
.box__thow p {
  margin-bottom: 1.5rem;
}


.box__thow {
  margin-bottom: 20px;
  padding-left: 100px;
  box-sizing: border-box;
}

.box__title {
  font-size: 3rem;
  font-weight: var(--font-bold);
  text-align: left;
  margin-bottom: 1rem;
  color: #3578ac;
}

.other__justfy {
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.other__img img {
  /* width: 150%; */
  border-radius: 20px;
}

.other__img{
  width: 150%;
}

/*=============== Quem somos ===============*/
.care__description_title {
  text-align: center;
  padding-bottom: 50px;
}

.care__container {
  background-color: white;
  border-radius: 15px;
}

.care__title {
  font-size: 40px;
  color: #3578ac;
}

.care__container__box__img {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.care__container__box__img_mid {
  padding: 100px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.care__container__box_mid {
  padding: 73px 0;
}

.care__description {
  font-size: 24px;
}

.care__img {
  padding-right: 15px;
  width: 70px;
}

/*=============== CONTACT ===============*/
.contact_data {
  display: flex;
  /* align-items: center; */
  flex-wrap: nowrap;
  justify-content: center;
}

.contact_division {
  padding-right: 50px;
}

.contact_division h1 {
  padding-bottom: 30px;
  font-size: 50px;
  color: #3578ac;
}

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

.contact__img {
  width: 270px;
  filter: drop-shadow(--shadow-img);
  justify-self: center;
}

.contact__content {
  display: grid;
  row-gap: 2rem;
  text-align: center;
}

.contact__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}

.section__title span {
  color: var(--first-color);
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: 0.75rem;
}

.contact__social a {
  color: var(--first-color);
  font-size: 1.5rem;
}

.contact__info {
  font-style: normal;
}

.form__dados h1 {
  color: white;
  padding-bottom: 20px;
}

.form_container {
  background-color: #162535;
  border-radius: 10px;
  padding: 40px;
}

form input{
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

.nome__sobrenome {
  display: flex;
}

.input__name {
  padding-right: 10px;
}

.input__email {
  padding: 10px 0;
}

.input__text {
  padding-bottom: 15px;
}



.container__form {
  background-color: #fff;
  display: flex;
  overflow: hidden;
  max-width: 1060px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.left-side {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.left-side h2 {
  color: #007bff;
  margin-bottom: 20px;
  font-size: 3em;
  text-align: left;
}

.left-side p {
  color: #555;
  line-height: 1.6;
}

.right-side {
  background-color: #2c3e50; /* Cor de fundo do formulário */
  color: #fff;
  padding: 40px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.form-container {
  width: 100%;
  max-width: 400px; /* Largura máxima do formulário */
}

.form-container h3 {
  font-size: 1.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields input[type="text"] {
  flex: 1;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
  color: #333;
}

textarea {
  min-height: 100px;
}

.submit-button {
  background-color: #007bff; /* Cor do botão */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.submit-button:hover {
  background-color: #0056b3; /* Cor do botão ao passar o mouse */
}

/* Adaptações para telas menores */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .left-side,
  .right-side {
      padding: 30px;
      text-align: center;
  }

  .name-fields {
      flex-direction: column;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap");

.btn {
  font-family: Roboto, sans-serif;
  font-weight: 0;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, #7ca7d1 0%, #3e4feb 100%);
  padding: 10px 30px;
  border: solid #9db3c9 2px;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 8px;
  transition: 1000ms;
  transform: translateY(0);
  cursor: pointer;
}

.btn:hover {
  transition: 1000ms;
  padding: 10px 50px;
  transform: translateY(-0px);
  background: linear-gradient(90deg, #7ca7d1 0%, #3e4feb 100%);
  color: #ffffff;
  border: solid 2px #0066cc;
}

/*=============== FOOTER ===============*/
.footer {
  display: flex;
}

.footer__container {
  width: 100%;
  display: flex; 
  justify-content: space-around; 
  flex-direction: row; 
  flex-wrap: wrap;
  padding-top: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.75rem;
}

.footer__logo i {
  color: var(--first-color);
  font-size: 1.5rem;
  font-weight: initial;
}

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

.footer__title {
  font-size: var(--normal-font-size);
  margin-bottom: 1rem;
}

.footer__links {
  display: grid;
  row-gap: 0.75rem;
}

.footer__link {
  color: var(--text-color);
  transition: color 0.4s;
}

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

.footer__social-link {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.4s;
}

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

.footer__copy {
  display: block;
  margin-top: 3rem;
  text-align: center;
  font-size: var(--small-font-size);
}

.img_logo_footer img {
  width: 300px;
}

.img_logo_footer {
  background-color: white;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(228, 4%, 15%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 4%, 25%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 4%, 35%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--container-color);
  color: var(--title-color);
  box-shadow: 0 12px 24px hsla(228, 48%, 4%, 0.5);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

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

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

/*=============== BREAKPOINTS ===============*/
/* Para pequenos celulares */
/* @media screen and (min-width: 320px) and (max-width: 575px) {
  .container {
    margin-inline: 1rem;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__buttons {
    flex-direction: column;
    row-gap: 1.5rem;
  }

  .home__img,
  .home__description,
  .other__img {
    display: none;
  }

  .services__description {
    text-align: center;
    font-size: 17px;
  }

  .services__container {
    grid-template-columns: repeat(1, 329px);
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: max-content;
  }

} */


/* Para celulares (até 576px) */
@media screen and (min-width: 100px) and (max-width: 576px) {
  .img_logo_header {
    padding: 5px;
    width: 65px;
    background-color: white;
  }

  .section {
    padding-block: 5rem 5rem;
  }

  .nav {
    /* padding: 0 49px; */
    width: 100%;
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .nav__close {
    position: absolute;
    top: 1.15rem;
    right: 2.5rem;
    font-size: 1.25rem;
  }

  .nav__logo {
    font-weight: var(--font-bold);
    column-gap: 0.25rem;
    align-items: center;
    font-size: 17px;
  }



  .home__img,
  .home__description,
  .other__img {
    display: none;
  }

  .button span {
    /* background-color: var(--first-color); */
    padding: 0.1rem;
    font-size: 1.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.4s;
  }

  .section__title {
    font-size: 2rem; /* Mantém ou ajusta para celular */
  }

  .home__container,
  .new__container,
  .care__container {
    grid-template-columns: 400px;
    justify-content: center;
  }

  .services__container {
    grid-template-columns: repeat(1, 300px);
    justify-content: center;
  }

  .services__description {
    text-align: center;
    font-size: 17px;
  }

  .care__container {
    background-color: transparent;
    border-radius: 15px;
    grid-template-columns: 295px;
    justify-content: center;
  }

  .care__data {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
  }

  .care__description_title {
    font-size: 17px;
  }

  .care__description {
    font-size: 17px;
  }



  .box__one, 
  .box__thow {
    padding: 0;
  }

  .other__buttons {
    text-align: center;
  }

  .container__form {
    display: grid;
  }

  .left-side h2,
  .box__title,
  .box__one p, 
  .box__thow p{
    text-align: center;
  }

  /* .footer__content {
    grid-template-columns: repeat(3, max-content);
  } */
  
  .img_logo_footer {
    display: none;
  }

  .footer__flex {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
  }
}

/* Para tablets (de 768px até 1023px) */
@media screen and (min-width: 577px) and (max-width: 800px) {
  .img_logo_header {
    padding: 5px;
    width: 70px;
    background-color: white;
  }

  .grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
  }

  .section {
    padding-block: 7rem 7rem;
  }

  .services__container {
    padding: 3.5rem;
    grid-template-columns: repeat(1, 300px);
  }

  .services__description {
    text-align: center;
    font-size: medium;
  }

  .home__img,
  .home__description,
  .other__img {
    display: none;
  }

  .home__container {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .home__data {
    text-align: left;
  }

  .home__title, .section__title {
    font-size: 3.2rem;
  }

  .care__container {
    padding: 3rem 0;
    display: flex;
    justify-content: space-around;
  }

  .care__container {
    background-color: transparent;
    border-radius: 15px;
  }

  .care__data {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
  }

  .box__one, 
  .box__thow {
    padding: 0;
  }

  .other__buttons {
    text-align: center;
  }

  .left-side h2,
  .box__title {
    text-align: center;
  }

  .container__form {
    display: grid;
  }

  .footer__container {
    width: 100%;
    display: flex; 
    justify-content: space-around; 
    flex-direction: row; 
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}

/* Para tablets (de 768px até 1023px) */
@media screen and (min-width: 801px) and (max-width: 1000px) {
  .grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
  }

  .section {
    padding-block: 7rem 7rem;
  }

  .services__container {
    padding: 3.5rem;
    grid-template-columns: repeat(1, 300px);
  }

  .services__description {
    text-align: center;
    font-size: medium;
  }

  .home__img,
  .home__description,
  .other__img {
    display: none;
  }

  .home__container {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .home__data {
    text-align: left;
  }

  .home__title, .section__title {
    font-size: 3.2rem;
  }

  .care__container {
    padding: 3rem 0;
    display: flex;
    justify-content: space-around;
  }

  .box__one, 
  .box__thow {
    padding: 0;
  }

  .other__buttons {
    text-align: center;
  }

  .left-side h2,
  .box__title {
    text-align: center;
  }

  .container__form {
    display: grid;
  }

  .footer__container {
    width: 100%;
    display: flex; 
    justify-content: space-around; 
    flex-direction: row; 
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}

/* Para notebooks e desktops (a partir de 1000px) */
@media screen and (min-width: 1000px) and (max-width: 1149px) {
  .container {
    margin-inline: 1.5rem;
  }

  .grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
  }

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

  .new__card:nth-child(even) {
    transform: translateY(10rem);
  }

  .section {
    padding-block: 7rem 7rem;
  }

  .nav__menu {
    width: 50%;
  }

  .home__img,
  .home__description,
  .other__img {
    display: none;
  }

  .home__container {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .home__data {
    text-align: center; /* Verifique se este é o alinhamento desejado */
  }

  .home__title, .section__title {
    font-size: 3rem; /* Ajuste conforme necessário */
  }

  .services__container {
    grid-template-columns: repeat(3, 230px);
    padding: 3.5rem 0;
  }

  .care__container {
    padding: 3rem 0;
    display: flex;
    justify-content: space-around;
  }

  .box__one, 
  .box__thow {
    padding: 0;
  }

  .other__buttons {
    text-align: center;
  }

  .left-side h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 3em;
    text-align: left;
  }

  .footer__container {
    width: 100%;
    display: flex; 
    justify-content: space-around; 
    flex-direction: row; 
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}

/* For large devices */
@media screen and (min-width: 1149px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 13rem 13rem;
  }

  .section__title {
    margin-bottom: 1.5rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__logo i {
    font-size: 1.5rem;
  }

  .nav__menu {
    width: initial;
  }

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

  .nav__actions {
    font-size: 1.5rem;
    column-gap: 1rem;
  }

  .home__container {
    grid-template-columns: 516px 539px;
    align-items: center;
    column-gap: 4rem;
    padding-top: 2rem;
  }

  .home__img {
    width: 507px;
  }

  .home__data {
    text-align: initial;
  }

  .home__description {
    margin-bottom: 4.5rem;
  }

  .home__buttons {
    justify-content: initial;
    column-gap: 1.5rem;
  }

  .new__container {
    grid-template-columns: 412px 490px;
    align-items: center;
    column-gap: 7.5rem;
    margin-top: 10%;
  }

  .new__data,
  .new__data .section__title {
    text-align: initial;
  }

  .new__content {
    row-gap: 8.5rem;
  }

  .new__title {
    font-size: var(--h3-font-size);
  }

  .services__container {
    grid-template-columns: repeat(3, 282px);
    /* gap: 8.5rem 4rem; */
    gap: 8.5rem 8rem;
    padding-top: 7.5rem;
  }

  .services__card {
    padding: 10.5rem 1.5rem 2rem;
    border-radius: 1.5rem;
  }

  .services__img {
    width: 210px;
    top: -5.5rem;
  }

  .services__title {
    font-size: var(--h3-font-size);
  }

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

  .services__button {
    right: 1.5rem;
    bottom: 2rem;
    font-size: 1.5rem;
  }

  .care__container {
    grid-template-columns: 440px 400px;
    align-items: center;
    column-gap: 8rem;
    padding: 3rem 0;
  }

  .care__img {
    width: 70px;
  }

  .care__list {
    row-gap: 1.5rem;
  }

  .contact__container {
    grid-template-columns: 280px 480px;
    justify-content: center;
    align-items: center;
    column-gap: 8rem;
    padding-block: 3rem;
  }

  .contact__content {
    order: -1;
    text-align: initial;
    row-gap: 2.5rem;
  }

  .contact__social {
    justify-content: initial;
  }

  .contact__img {
    width: 480px;
  }

  .footer__logo {
    margin-bottom: 1.5rem;
  }

  .footer__logo i {
    font-size: 2rem;
  }

  .footer__content {
    column-gap: 13rem;
  }

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

  .footer__social {
    column-gap: 1rem;
  }

  .footer__copy {
    margin-top: 3rem;
  }

  .scrollup {
    right: 3rem;
  }
}

@media screen and (min-width: 1149px) and (max-width: 1360px) { 
  .services__container {
    grid-template-columns: repeat(3, 240px);
    /* gap: 8.5rem 4rem; */
    gap: 6.5rem 6rem;
    padding-top: 7.5rem;
  }
}
