/* General css */
:root {
  --accentOne: #121212;
  --accentTwo: #efefef;
  --accentThree: #ffd44b;
  --accentFour: #ffffff;
  /* --headingFamily: Inter,
  --textFamily: Outfit;   */
}


.btn {
  display: block;
  padding: 1rem 2rem;
  border-radius: 50px;
  border-width: 1px;
  border-color: transparent;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
.btn-primary {
  background-color: var(--accentThree);
}
.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--accentOne);
}
.btnLink {
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.btn-color-primary {
  color: var(--accentOne);
}
.btn-color-On-transparent {
  color: var(--accentOne);
}
/* End General css */
.header {
  background-image: url("../images/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
}
.container {
  padding: 1.25rem;
}
.header--nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header--link-logo {
  text-decoration: none;
  position: relative;
}

.header--link-logo .header--link-logo-span {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--accentOne);
}
.header--ul {
  background-color: var(--accentTwo);
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 40px;
  padding: 80px 20px;
  animation: 1s linear alternate toggleMenu;
}

@keyframes toggleMenu {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}
.header--li {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  position: relative;
  font-family: Montserrat, sans-serif;
}

.header--li .header--li-a {
  line-height: 50px;
  text-decoration: none;
  color: var(--accentOne);
}
.header--hamburger-icon {
  display: block;
  cursor: pointer;
}
.header--close-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 50px;
}
.header__contact {
  display: none !important;
}
/* Header textBlock */
.header__textBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: flex;
  flex-direction: column;
}
.header__textBlock .header__h1 {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -3px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: var(--accentOne);
  text-align: center;
  animation: h1-puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
@keyframes h1-puff-in {
  0% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

.header__textBlock .header__p {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accentOne);
  line-height: 1.7;
  text-align: center;
  animation: h1-puff-in 2s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

.header__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
/* Slide images */
.slider__image {
  /* white-space: nowrap; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: scroll;
}
.slider__image::-webkit-scrollbar {
  display: none;
}
.slider__image--block {
  display: block;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  margin-right: 20px;
  animation: 6s linear 1s infinite running reverse imgSlider;
}
.slider__image--block > img {
  max-width: 100%;
  height: auto;
}
@keyframes imgSlider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* Description */
.description {
  background-color: var(--accentOne);
  color: var(--accentTwo);
  height: fit-content;
  padding: 50px 20px;
}
.description__block {
  display: block;
}
.description__block span {
  font-size: 1.875rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.description__block img {
  width: 130px;
  height: 50px;
  display: inline;
  margin-top: 10px;
}

/* Projects */
.projects {
  background-color: #efefef;
  width: 100%;
  height: fit-content;
  padding: 50px 0px;
}
.projects__heading h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  display: block;
  text-align: center;
  color: var(--accentOne);
  width: 280px;
  margin: 0px auto 50px;
}
.projects__listGroup {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  grid-template-areas:
    "."
    "."
    "."
    "."
    "."
    ".";
}
/* .projects__list {
} */
.projects__list--imgGroup {
  display: block;
  margin-bottom: 40px;
}
.projects__list--imgGroup img {
  width: 100%;
  object-position: center;
  object-fit: cover;
}
.projects__list--text {
  width: 100%;
  text-align: start;
  margin-bottom: 40px;
}
.projects__list--text span {
  font-weight: 400;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  border-radius: 50px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid var(--accentOne);
  font-family: Montserrat, sans-serif;
}
.project__list--iconGroup {
  display: none;
}
.projects__list--bottomText h4 {
  font-size: 1.875rem;
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}
.project__button {
  width: 100%;
  display: flex;
  margin: 50px auto;
  justify-content: center;
  align-items: center;
}
/* Services */
.services {
  width: 100%;
  height: fit-content;
  padding: 50px 0px;
}
.services__BlockText {
  width: 100%;
  margin-bottom: 50px;
}
.services__BlockText h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  display: block;
  color: var(--accentOne);
  width: 280px;
}
.services__block {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  grid-template-areas:
    "."
    "."
    "."
    "."
    "."
    ".";
}
.services__card {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--accentTwo);
  display: block;
  text-decoration: none;
}
.services__card h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: var(--accentOne);
}

.services__card p {
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--accentOne);
}
/* Contact form */
.form {
  width: 100%;
  height: fit-content;
  padding: 50px 0px;
  background-color: var(--accentOne);
}
.form__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
/* Left */
 .form__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.form__left h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: var(--accentFour);
  width: 200px;
}
.form__left p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--accentFour);
  font-size: 1.125rem;
}
.form__left--contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.form__left--contact .form__left--contact-spanTitle {
  font-weight: bolder;
  color: var(--accentFour);
  font-family: Montserrat, sans-serif;
  font-size: 1.313rem;
  display: block;
}
.form__left--contact .form__left--contact-spanDesc {
  font-weight: 300;
  color: var(--accentFour);
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  display: block;
}
/* Right */
.form__right-all {
  background-color: var(--accentFour);
  border-radius: 10px;
  padding: 30px 30px;
}
.form__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.form__right--inputGroup{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
 }
 .form__right--input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
 .form__right--input label, .form__right--textarea label {
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
  font-family: Montserrat, sans-serif;
}
/* .form__right--input{
  width: fit-content;
} */
 
 .form__right--input{
  min-width: 100%;
 }
.form__right--input input {
  font-family: Montserrat, sans-serif;
  border-radius: 8px;
  height: 50px;
  padding-left: 10px;
  border: 1px solid var(--accentOne);
  font-size: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__right--input select {
  line-height: 1;
  font-size: 1rem;
  display: block;
  font-family: Montserrat, sans-serif;
  padding-top: 1.125rem;
  padding-bottom:1.125rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: 1px solid var(--accentOne);
  border-radius: 8px;
  width: 100%;
}
.form__right--textarea textarea {
  width: 100%;
  padding-left: 10px;
  border-radius: 8px;
  border: 1px solid var(--accentOne);
  font-size: 1rem;
}
.form__right--btn{
  margin-top: 10px;
}
 /* Footer */
.footer {
  width: 100%;
  height: fit-content;
  background: url("../images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
}
.footer__upper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 40px 0px;
}
.footer__upper-boxOne p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--accentOne);
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
}
.footer__upper-boxCard h5 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.85;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}
.footer__upper-boxCard span,
.footer__bottom-copyright,
.footer__bottom-terms a {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.85;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  display: block;
}
.footer__upper-boxCard span a,
.footer__bottom-terms a {
  text-decoration: none;
  color: var(--accentOne);
}
.footer__sepator {
  margin: 20px 0px;
}

/* Text Image */

.TextImage {
  width: 100%;
  padding: 50px 0px;
  height: fit-content;
}
/* Left */
.TextImage__Left {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 50px 0px;
  grid-template-areas:
    "."
    ".";
}
.TextImage__Left .TextImage__Left-image {
  min-width: 100%;
}
.TextImage__Left .TextImage__Left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.TextImage__Right {
  /* display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center; */
}
/* Right */
.TextImage__Right h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}
.TextImage__Right p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--accentOne);
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
}
/* FAQ */
.faq {
  width: 100%;
  height: fit-content;
  padding: 50px 0px;
}
.faq__title h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  display: block;
  text-align: center;
  color: var(--accentOne);
  width: 280px;
  margin-bottom: 50px;
}
.faq__card {
  border-bottom: 1px solid var(--accentOne);
  margin-bottom: 50px;
  padding: 30px 0px;
}
/* Question */
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  padding: 20px 0px;
}
.faq__question-title h3 {
  text-align: left;
  font-size: 1.875rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
}
.faq__response {
  display: none;
}
.faq__response p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--accentOne);
  font-size: 1.125rem;
}
.faq__question-iconPlus {
  display: block;
  cursor: pointer;
}
.faq__question-iconMinus {
  display: none;
  cursor: pointer;
}
/* Text Slider */
.textSlider {
  overflow: hidden;
  background-color: var(--accentOne);
  color: var(--accentFour);
  padding: 2.5rem 0rem;
  width: 100%;
}
.textSlider__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}
.textSlider__group {
  display: flex;
  animation: slideInfinite 20s linear infinite;
}
.textSlider__group > div {
  flex-shrink: 0;
  margin-right: 20px; /* Adjust spacing between items */
}
/* .textSlider__group div {
  display: inline-block;
} */
.textSlider__group::-webkit-scrollbar {
  display: none;
}
/* Keyframes for infinite sliding */
@keyframes slideInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.textSlider h2 {
  font-size: 2.25rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  display: block;
}
.textSlider img {
  /* width: 34px;
  height: 34px; */
  display: block;
  margin: 0px 10px;
}
/* Blog */
.blog {
  width: 100%;
  height: fit-content;
  padding: 50px 0px;
}
.blog__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 40px 0px;
  grid-template-areas:
    "."
    "."
    ".";
}
.blog__title h2 {
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: block;
  text-align: left;
  color: var(--accentOne);
  width: 280px;
  margin-bottom: 50px;
}
.blog__card {
  height: fit-content;
  border-radius: 15px;
  border: 1px solid rgba(128, 128, 128, 0.196);
  cursor: pointer;
}
.blog__card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.blog__cardImg {
  min-width: 100%;
}
.blog__cardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog__cardText {
  padding: 50px 20px;
}
.blog__cardText h6 {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}
.blog__cardText h3 {
  text-align: left;
  font-size: 1.875rem;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin: 20px 0px;
}
.blog__cardText p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--accentOne);
  font-size: 1.25rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
    margin: 0 auto;
  }
  .header {
    height: 70vh;
  }
  .header--close-icon {
    right: 60px;
  }
  /* Header textBlock */
  .header__textBlock .header__h1 {
    font-size: 3rem;
  }
  .header__btns {
    flex-direction: row;
  }
  /* Projects */
  .projects__heading h2 {
    font-size: 2.5rem;
    width: 430px;
  }
  .projects__list--text {
    margin-bottom: 5px;
  }
  .project__list--iconGroup {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    margin-bottom: 5px;
  }
  .projects__list--icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 1px solid var(--accentOne);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: heartbeat 1.5s ease-in-out infinite both;
  }
  @keyframes heartbeat {
    from {
      transform: scale(1);
      transform-origin: center center;
      animation-timing-function: ease-out;
    }
    10% {
      transform: scale(0.91);
      animation-timing-function: ease-in;
    }
    17% {
      transform: scale(0.98);
      animation-timing-function: ease-out;
    }
    33% {
      transform: scale(0.87);
      animation-timing-function: ease-in;
    }
    45% {
      transform: scale(1);
      animation-timing-function: ease-out;
    }
  }
  /* Services */
  .services__BlockText h2 {
    font-size: 2.5rem;
  }
  /* Contact form */
  /* Left */

  .form__left h2 {
    font-size: 2.5rem;
    width: 400px;
  }
   .form__left p {
    width: 500px;
  }
  /* Text Image */
  /* Left */
  /* Right */
  .TextImage__Right h2 {
    font-size: 2.5rem;
  }
  /* FAQ */
  .faq__title {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .faq__title h2 {
    font-size: 2.5rem;
    width: 480px;
  }
  /* Text Slider */

  .textSlider h2 {
    font-size: 2.5rem;
  }
  /* Blog */
  .blog__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 40px;
    grid-template-areas:
      ". ."
      ". .";
  }
  .blog__title h2 {
    font-size: 2.5rem;
    width: 480px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
  .header--close-icon {
    right: 80px;
  }
  /* Header textBlock */
  .header__textBlock {
    width: 700px;
  }
  .header__textBlock .header__h1 {
    font-size: 4rem;
  }
  /* Description */
  .description__block span {
    font-size: 2.25rem;
  }
  /* Projects */
  .projects__heading h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    width: 630px;
  }
  /* Services */
  .services__BlockText h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }
  .services__block {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }
  /* Contact form */
  /* Left */

  .form__left h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }
  .form__right--inputGroup{
    flex-direction: row;
  }
  .form__right--input{
    min-width: 48%;
  
  }
  /* Footer */
  .footer__upper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 40px;
  }
  /* Text Image */
  /* Left */
  /* Right */
  .TextImage__Right h2 {
    font-size: 3.75rem;
  }
  /* FAQ */
  .faq__title h2 {
    font-size: 3.5rem;
    /* width: 280px; */
  }
  /* Question */
  .faq__question-title h3 {
    font-size: 2rem;
    line-height: 1;
  }
  /* Text SLider */
  .textSlider h2 {
    font-size: 3.5rem;
  }
  /* Blog */
  .blog__title h2 {
    font-size: 3.5rem;
    width: 480px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
  .header {
    height: 90vh;
  }
  .header--ul {
    position: static;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0px 0px;
    width: 500px;
    background-color: transparent;
  }
  .header--mobile {
    display: none !important;
  }
  .header__contact {
    display: block !important;
  }
  .header--close-icon {
    position: static;
  }
  /* Header textBlock */
  .header__textBlock {
    width: 800px;
  }
  .header__textBlock .header__h1 {
    font-size: 4.8rem;
  }
  /* Description */
  .description__block span {
    font-size: 3rem;
  }
  /* Projects */
  .projects__heading h2 {
    font-size: 4rem;
    width: 830px;
  }
  .projects__listGroup {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }
  .projects__list--imgGroup img {
    height: 450px;
  }
  /* Services */
  .services__BlockText h2 {
    font-size: 4rem;
  }
  .services__block {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
  /* Contact form */
  /* Left */

  .form__left h2 {
    font-size: 4rem;
    width: 500px;
  }
  /* Contact form */

  .form__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 30px;
  }
  .form__left {
    justify-content: flex-start;
  }
  /* Right */

  /* Footer */
  .footer__upper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 40px;
  }

  /* Footer bottom */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer__bottom .footer__bottom-terms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  /* Text Image */
  /* Left */
  .TextImage__Left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 50px;
    grid-template-areas: ". .";
  }
  /* Right */
  .TextImage__Right h2 {
    font-size: 4rem;
  }
  /* FAQ */
  .faq__title h2 {
    font-size: 4rem;
    width: 880px;
  }
  /* Question */
  .faq__question-title h3 {
    font-size: 2rem;
    line-height: 1;
  }
  /* Blog */
  .blog__container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 40px;
    grid-template-areas: ". . .";
  }

  .blog__title h2 {
    font-size: 4rem;
    width: 880px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
  /* Header textBlock */
  .header__textBlock {
    width: 1120px;
  }
  .header__textBlock .header__h1 {
    font-size: 6rem;
  }
  /* Description */
  .description__block span {
    font-size: 3.125rem;
  }
  /* Projects */
  .projects__heading h2 {
    font-size: 5rem;
  }
  /* Services */
  .services__BlockText h2 {
    font-size: 5rem;
    width: 390px;
  }
  /* Contact form */
  /* Left */

  .form__left h2 {
    font-size: 5rem;
    width: 700px;
  }
  /* Right */
  .form__right-all {
    max-width: 610px;
  }
  .form__right--inputGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .form__right--inputGroup .form__right--input {
    width: 295px;
  }
  /* Text Image */
  /* Left */
  /* Right */
  .TextImage__Right h2 {
    font-size: 6rem;
  }
  /* FAQ */
  .faq__title h2 {
    font-size: 5rem;
    /* width: 280px; */
  }
  /* Question */
  .faq__question-title h3 {
    font-size: 2rem;
  }
  /* Blog */
  .blog__title h2 {
    font-size: 5rem;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }

  /* Slide images */

  .slider__image--block {
    width: 370px;
  }
}
/**/
