/* CUSTOM-PROPS */
:root {
  --light-black: #263238;
  --black: #000;
  --gray: #8f95a5;
  --light-gray: #f5f5f5;
  --white: #fff;
}

/* FONT-FACE  */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
  url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
  url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
  url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* LOADER  */
.lds-hourglass-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  z-index: 999;
  transition: transform 0.5s ease;
}

.lds-hourglass-wrapper--none {
  /* opacity: 0; */
  /* pointer-events: none; */
  overflow: hidden;
  transform: translateY(-100%);
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid var(--light-black);
  border-color: var(--light-black) transparent var(--light-black) transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

/* GLOBAL-STYLES  */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


/* AUTOFILL  */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--gray);
  -webkit-text-fill-color: var(--black);
  -box-shadow: 0 0 0px 1000px var(--light-black) inset;
  transition: background-color 5000s ease-in-out 0s;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
  color: var(--gray);
  font-family: "Poppins", "Arial", sans-serif;
  font-size: 16px;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.body--overflow {
  overflow-y: hidden;
}

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


/* FOCUS-STYLES  */
*:focus {
  outline: 3px dashed var(--light-black);
  outline-offset: 3px;
}

/* CONTAINER  */
.container {
  max-width: 1380px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}


/* VISUALLY-HIDDEN  */
/* .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
} */


/* MAIN-CONTENT  */
.main-content {
  flex-grow: 1;
}


/* BUTTON  */
.button {
  display: inline-block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  background-color: var(--light-black);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease,
  background-color 0.3s ease;
}

.button:hover {
  color: var(--white);
  background-color: var(--light-black);
}

.button:active {
  opacity: 0.6;
}

.button--transparent {
  background-color: transparent;
  color: var(--black);
  padding: 15px 57px;
  border: 2px solid var(--light-black);
  font-size: 24px;
}

.button--big {
  font-size: 36px;
  padding: 32px 118px;
  border-radius: 15px;
}

.button--big:hover {
  opacity: 0.8;
}


/* TOGGLER  */
.toggler {
  display: none;
  border: none;
  padding: 0;
  margin-left: auto;
  background-color: transparent;
  cursor: pointer;
}

.toggler::before {
  display: none;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.toggler--open::before {
  display: block;
}

.toggler__img {
  display: block;
  width: 30px;
  height: 17px;
  object-fit: contain;
}


/* TITLE  */
.title {
  font-size: 48px;
  line-height: 166%;
  color: var(--black);
  margin-top: 0;
  text-transform: capitalize;
}


/* TEXT  */
.text {
  font-size: 20px;
  line-height: normal;
}


/* LOGO  */
.logo {
  display: flex;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.8;
}

.logo:active {
  opacity: 0.6;
}

.logo__img {
  display: block;
  width: 106px;
  height: 54px;
  object-fit: contain;
}

/* SITE-HEADER  */
.site-header {
  padding-top: 55px;
  padding-bottom: 55px;
}

.site-header__container {
  display: flex;
  align-items: center;
}

.site-header__logo {
  margin-right: 10px;
}

.site-header__sitenav {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.sitenav__list {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.sitenav__item:not(:last-child) {
  margin-right: 36px;
}

.sitenav__link {
  display: inline-block;
  text-decoration: none;
  color: var(--light-black);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.sitenav__link:hover {
  opacity: 0.8;
}

.sitenav__link:active {
  opacity: 0.6;
}


/* HERO  */
.hero__container {
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  padding-right: 30px;
}

.hero__img-lighting {
  display: block;
  width: 85px;
  height: 85px;
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 19%;
}

.hero__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 64px;
  line-height: 1.25;
  color: var(--black);
  font-weight: 600;
}

.hero__text {
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 24px;
}

.hero__img {
  display: block;
  width: 49%;
  height: 661px;
  object-fit: contain;
  margin-left: auto;
}


/* SKILLS  */
.skills {
  padding-top: 90px;
  padding-bottom: 90px;
}

.skills__title {
  text-align: center;
  margin-bottom: 96px;
}

.skills__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.skills__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 22px;
}

.skills__card > .card__content {
  margin-bottom: auto;
}

.skills__card:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
}

.skills__card:last-child {
  flex-direction: row-reverse;
  grid-column-start: 2;
  grid-column-end: 4;
}

.skills__card:last-child > .card__content {
  max-width: 350px;
  width: 100%;
  margin-right: auto;
}

.card {
  border-radius: 10px;
  background-color: var(--light-gray);
}

.card__img {
  display: block;
  object-fit: contain;
  margin-bottom: auto;
  width: 100%;
  height: 100%;
}

.card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card__title {
  margin: 0;
  font-size: 30px;
  line-height: 266%;
  color: var(--black);
}

.card__text {
  margin-top: 0;
  margin-bottom: 25px;
}

.card__button {
  min-width: 218px;
}


/* ABOUT-US */
.about-us {
  padding-top: 95px;
  padding-bottom: 95px;
}

.about-us__container {
  display: flex;
  align-items: center;
}

.about-us__content-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: auto;
  padding-right: 30px;
}

.about-us__content {
  width: 100%;
  max-width: 635px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 38px;
}

.about-us__title {
  margin-bottom: 23px;
}

.about-us__text {
  margin: 0;
}

.info {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-left: -120px;
  margin-bottom: -50px;
}

.info__text-number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 120px;
  margin-bottom: 50px;
}

.info__text {
  font-size: 20px;
  line-height: normal;
  white-space: nowrap;
}

.info__number {
  order: -1;
  color: var(--light-black);
  font-size: 48px;
  line-height: 166%;
  font-weight: 600;
  margin: 0;
}

.about-us__img {
  display: block;
  width: 500px;
  height: 500px;
  object-fit: contain;
}


/* PRICING  */
.pricing {
  padding-top: 95px;
  padding-bottom: 95px;
}

.pricing__title {
  text-align: center;
  margin-bottom: 57px;
}

.pricing__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -80px;
}

.pricing__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 100px) / 3);
  margin-bottom: 80px;
  min-height: 580px;
}

.pricing__item:not(:last-child) {
  margin-right: 50px;
}

.pricing__item:nth-child(n3) {
  margin-right: 0;
}

.price__img {
  display: block;
  object-fit: contain;
  margin-bottom: auto;
}

.price__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}

.price__title {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--light-black);
  font-size: 30px;
  line-height: 160%;
  font-weight: 600;
}

.price__title > br {
  display: none;
}

.price__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 30px;
}

.price__info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 18px;
  color: #546269;
  text-align: center;
  min-width: 240px;
  margin-top: auto;
  border-radius: 5px;
  background-color: #eeeeee;
}

.price__info > b {
  color: var(--light-black);
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  margin-right: 8px;
}


/* CONTACT-US  */
.contact-us {
  padding-top: 165px;
  padding-bottom: 135px;
}

.contact-us__container {
  display: flex;
  align-items: center;
}

.contact-us__img {
  display: block;
  width: 477px;
  height: 429px;
  object-fit: contain;
}

.contact-us__content-form-wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  margin-left: auto;
}

.contact-us__content {
  width: 100%;
  max-width: 780px;
  margin-bottom: 50px;
}

.contact-us__title {
  margin-bottom: 37px;
}

.contact-us__text {
  margin: 0;
}

.form__inner {
  display: flex;
}

.form__input {
  width: 100%;
  max-width: 450px;
  font-size: 16px;
  line-height: normal;
  border-radius: 10px;
  border: 1px solid var(--gray);
  padding: 32px;
}

.form__button {
  width: 100%;
  max-width: 260px;
  border: none;
  margin-left: 12px;
  padding: 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}


/* SITE-FOOTER  */
.site-footer__container {
  display: flex;
  align-items: center;
  border-top: 1px solid #c4c4c4;
  padding-top: 30px;
  padding-bottom: 60px;
}

.site-footer__logo {
  margin-right: auto;
}

.privacy-policy {
  font-size: 24px;
  line-height: normal;
}

.site-footer__privacy-policy {
  margin-left: 20px;
}


/* MEDIA QUIRIES */
/* 1000px */
@media only screen and (max-width: 1000px) {
  body {
    font-size: 14px;
  }

  .title {
    font-size: 36px;
  }

  .text {
    font-size: 16px;
  }

  .site-header {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .logo__img {
    width: 89px;
    height: 45px;
  }

  .sitenav__link {
    width: 100%;
    font-size: 16px;
  }

  .button--transparent {
    font-size: 18px;
    padding: 12px 38px;
  }

  .hero__container {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero__content {
    max-width: 550px;
  }

  .hero__img-lighting {
    width: 58px;
    height: 58px;
  }

  .hero__title {
    font-size: 48px;
    margin-bottom: 27px;
  }

  .hero__text {
    font-size: 20px;
    margin-bottom: 33px;
  }

  .button--big {
    font-size: 24px;
    padding: 22px 78px;
  }

  .hero__img {
    width: 460px;
    height: 460px;
  }

  .skills {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .skills__title {
    margin-bottom: 53px;
  }

  .skills__card {
    padding: 15px 22px;
  }

  .card__title {
    font-size: 22px;
  }

  .card__button {
    padding: 18px;
    min-width: 196px;
    font-size: 18px;
  }

  .about-us {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-us__content {
    max-width: 540px;
  }

  .about-us__img {
    width: 336px;
    height: 336px;
  }

  .about-us__title {
    margin-bottom: 13px;
  }

  .info {
    margin-left: -80px;
    margin-bottom: -40px;
  }

  .info__text-number-wrapper {
    margin-left: 80px;
    margin-bottom: 40px;
  }

  .info__text {
    font-size: 16px;
  }

  .info__number {
    font-size: 30px;
  }

  .pricing {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pricing__title {
    margin-bottom: 20px;
  }

  .pricing__item {
    min-height: 430px;
  }

  .price__content {
    min-height: 200px;
  }

  .price__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .price__text {
    font-size: 16px;
  }

  .price__info {
    padding: 5px;
    min-width: 200px;
    font-size: 16px;
  }

  .price__info > b {
    font-size: 24px;
  }

  .contact-us {
    padding-top: 70px;
    padding-bottom: 150px;
  }

  .contact-us__img {
    width: 312px;
    height: 281px;
  }

  .contact-us__content {
    max-width: 455px;
    margin-bottom: 34px;
  }

  .contact-us__title {
    margin-bottom: 0;
  }

  .form__input {
    max-width: 320px;
    padding: 20px;
    font-size: 14px;
  }

  .form__button {
    max-width: 190px;
    padding: 20px;
    font-size: 16px;
  }

  .site-footer__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .privacy-policy {
    font-size: 16px;
  }
}


/* 850px */
@media only screen and (max-width: 850px) {
  body {
    font-size: 13px;
  }

  .title {
    font-size: 30px;
  }

  .text {
    font-size: 14px;
  }

  .site-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .site-header__logo {
    z-index: 150;
  }

  .toggler {
    display: block;
  }

  .site-header__sitenav {
    display: none;
  }

  .site-header__sitenav--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    flex-grow: 0;
    z-index: 100;
    padding: 90px 20px 20px 20px;
    width: 50%;
    height: 100vh;
    background-color: var(--white);
    transform: translateX(0);
  }

  .site-header__sitenav--open *:focus {
    outline: none;
  }

  .site-header__sitenav .sitenav__list {
    flex-direction: column;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    width: 100%;
    overflow: auto;
  }

  .site-header__sitenav .sitenav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .site-header__sitenav .sitenav__item {
    width: 100%;
    text-align: left;
  }

  .button--transparent {
    width: 100%;
    padding: 12px;
  }

  .hero__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero__content {
    max-width: 340px;
  }

  .hero__img-lighting {
    width: 50px;
    height: 50px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__text {
    font-size: 16px;
  }

  .button--big {
    font-size: 18px;
    padding: 19px 67px;
  }

  .hero__img {
    width: 352px;
    height: 352px;
  }

  .skills {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .skills__inner {
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .skills__card:first-child {
    grid-row-end: 2;
  }

  .skills__card:nth-child(2n) {
    grid-column-end: 3;
  }

  .skills__card:nth-child(3n) {
    grid-row-start: 2;
  }

  .skills__card:last-child {
    flex-direction: column;
    grid-column-start: 2;
  }

  .skills__title {
    margin-bottom: 37px;
  }

  .card__button {
    min-width: 180px;
    padding: 15px;
    font-size: 16px;
  }

  .about-us {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .about-us__img {
    width: 295px;
    height: 295px;
  }

  .about-us__content {
    max-width: 321px;
  }

  .about-us__title {
    margin-bottom: 0;
  }

  .info {
    margin-left: -40px;
    margin-bottom: -20px;
  }

  .info__text-number-wrapper {
    margin-left: 40px;
    margin-bottom: 20px;
  }

  .info__text {
    font-size: 13px;
  }

  .info__number {
    font-size: 22px;
  }

  .pricing {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pricing__list {
    margin-bottom: -50px;
  }

  .pricing__item {
    width: calc((100% - 60px) / 3);
    margin-bottom: 50px;
  }

  .pricing__item:not(:last-child) {
    margin-right: 30px;
  }


  .pricing__title {
    margin-bottom: 30px;
  }

  .price__title {
    font-size: 20px;
  }

  .price__title > br {
    display: block;
  }

  .price__text {
    font-size: 14px;
  }

  .price__info > b {
    font-size: 22px;
  }

  .contact-us {
    padding-top: 25px;
    padding-bottom: 110px;
  }

  .contact-us__img {
    width: 233px;
    height: 210px;
  }

  .contact-us__content {
    max-width: 390px;
    margin-bottom: 25px;
  }

  .form__input {
    font-size: 12px;
    padding: 16px 24px;
  }

  .form__button {
    font-size: 13px;
    padding: 15px;
    max-width: 145px;
  }

  .site-footer__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .privacy-policy {
    font-size: 13px;
  }
}


/* 700px */
@media only screen and (max-width: 700px) {
  .pricing {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .pricing__container {
    padding-left: 15%;
    padding-right: 15%;
  }

  .pricing__title {
    margin-bottom: 50px;
  }

  .pricing__list {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-bottom: -70px;
  }

  .pricing__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 70px;
  }

  .price__content {
    align-items: center;
    text-align: center;
  }

  .price__title {
    font-size: 24px;
  }

  .price__title > br {
    display: none;
  }

}


/* 650px */
@media only screen and (max-width: 650px) {
  .site-header {
    padding-bottom: 10px;
  }

  .site-header__sitenav--open {
    width: 100%;
    padding: 110px 20px 20px 20px;
  }

  .site-header__sitenav--open .sitenav__link {
    font-size: 18px;
  }

  .toggler {
    z-index: 151;
  }

  .toggler::before {
    display: none;
  }

  .toggler__img {
    width: 42px;
    height: 24px;
  }

  .hero__container {
    flex-direction: column;
    padding-top: 0;
  }

  .hero__content {
    align-items: center;
    max-width: 100%;
    padding-right: 0;
  }

  .hero__title {
    text-align: center;
    font-size: 34px;
  }

  .hero__title > br {
    display: none;
  }

  .hero__text {
    text-align: center;
    margin-bottom: 38px;
  }

  .hero__img {
    order: -1;
    width: 424px;
    height: 424px;
    margin-left: 0;
    margin-bottom: 18px;
  }

  .hero__img-lighting {
    display: none;
  }

  .button--big {
    padding: 24px 101px;
  }

  .skills__title {
    margin-bottom: 34px;
  }

  .skills__inner {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  .skills__card {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .skills__card:last-child {
    grid-column-start: 1;
  }

  .skills__card:last-child > .card__content {
    max-width: 100%;
  }

  .card__text {
    font-size: 13 px;
  }

  .about-us {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .about-us__container {
    flex-direction: column;
  }

  .about-us__img {
    order: -1;
    width: 352px;
    height: 352px;
    margin-bottom: 25px;
  }

  .about-us__content-info-wrapper {
    align-items: center;
    margin-right: 0;
    padding-right: 0;
  }

  .about-us__content {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .about-us__title {
    margin-bottom: 23px;
  }

  .info {
    justify-content: space-between;
  }

  .info__number {
    font-size: 24px;
  }

  .info__text {
    font-size: 14px;
  }

  .contact-us {
    padding-top: 70px;
    padding-bottom: 140px;
  }

  .contact-us__container {
    flex-direction: column;
  }

  .contact-us__content-form-wrapper {
    margin-left: 0;
    padding-left: 0;
  }

  .contact-us__img {
    margin-bottom: 33px;
  }

  .contact-us__content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;
  }

  .contact-us__title {
    margin-bottom: 20px;
  }

  .form > *:focus {
    outline: none;
  }

  .form__input {
    max-width: 100%;
    font-size: 13px;
    padding: 20px 25px;
  }

  .form__button {
    font-size: 16px;
    padding: 18px;
    max-width: 200px;
    margin-left: -20px;
  }

  .form__button:active {
    opacity: 1;
    transform: scale(0.9);
  }

  .site-footer__container {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .privacy-policy {
    font-size: 12px;
  }
}


/* 500px */
@media only screen and (max-width: 500px) {
  .site-footer__container {
    padding-bottom: 40px;
    flex-direction: column;
  }

  .site-footer__logo {
    margin-right: 0;
  }

  .site-footer__privacy-policy {
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
    font-size: 11px;
  }
}


/* 400px */
@media only screen and (max-width: 400px) {
  .title {
    font-size: 24px;
  }

  .text {
    font-size: 13px;
  }

  .site-header {
    padding-top: 36px;
  }

  .logo__img {
    width: 71px;
    height: 36px;
  }

  .toggler__img {
    width: 33px;
    height: 19px;
  }

  .hero__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .hero__img {
    width: 299px;
    height: 299px;
  }

  .button--big {
    width: 100%;
    padding: 18px;
    font-size: 16px;
  }

  .skills__title {
    margin-bottom: 40px;
  }

  .about-us {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .about-us__img {
    width: 283px;
    height: 283px;
  }

  .about-us__content {
    text-align: justify;
  }

  .about-us__title {
    font-size: 24px;
  }

  .about-us__text {
    font-size: 13px;
  }

  .info {
    flex-direction: column;
    margin: 0;
  }

  .info__text-number-wrapper {
    margin: 0;
  }

  .info__text-number-wrapper:not(:last-child) {
    margin-bottom: 25px;
  }

  .pricing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pricing__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price__content {
    align-items: center;
    text-align: center;
  }

  .price__title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .price__text {
    font-size: 13px;
  }

  .price__info {
    min-width: 170px;
    font-size: 14px;
  }

  .price__info > b {
    font-size: 18px;
  }

  .contact-us {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .contact__img {
    width: 258px;
    height: 228px;
  }

  .contact-us__content {
    margin-bottom: 30px;
  }

  .form__inner {
    flex-direction: column;
  }

  .form__input {
    font-size: 12px;
    padding: 16px 26px;
  }

  .form__button {
    margin-left: 0;
    max-width: 100%;
    margin-top: 15px;
    font-size: 14px;
    padding: 20px;
  }

  .site-footer__privacy-policy {
    max-width: 75%;
  }
}