@charset "UTF-8";
*, :before, :after {
  box-sizing: border-box;
}

html * {
  max-height: 1000000px;
}

html {
  font-size: 16px;
}

body {
  min-width: 320px;
  font-family: "Ubuntu", sans-serif;
  background: #EEEEEE;
  color: black;
}

main {
  overflow-x: hidden;
}

.container {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .container {
    padding: 0 40px;
  }
}

h1, h2, h3 {
  margin: 0 0 20px;
  font-weight: 500;
}

.section-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .section-title {
    margin-bottom: 50px;
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
}

a {
  color: blue;
}

b {
  font-weight: 500;
}

p {
  margin: 0 0 20px;
  line-height: 1.5;
}

button:active, a.logo:active, a.btn:active, a.btn-link:active {
  transform: translate(1px, 1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn {
    padding: 12px 25px;
    font-size: 1.125rem;
  }
}

.btn-lg {
  padding: 13px 25px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .btn-lg {
    padding: 15px 30px;
    font-size: 1.25rem;
  }
}

.btn-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  border: none;
  cursor: pointer;
  color: blue;
}
@media (max-width: 359.98px) {
  .btn-link {
    font-size: 0.9375rem;
  }
}

/* Input */
input:not([type=checkbox]):not([type=radio]), textarea {
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}

input, textarea {
  margin-bottom: 20px;
  padding: 10px 15px;
  border: 2px solid;
  line-height: 1.5;
  background: transparent;
}
input:focus, textarea:focus {
  border-color: blue;
  outline: none;
}

textarea {
  resize: none;
}

@media (min-width: 768px) {
  .tremble {
    animation: tremble-animation 750ms ease-out;
  }
}
@keyframes tremble-animation {
  0%, 50%, 100% {
    transform: translateX(0);
  }
  10%, 30% {
    transform: translateX(-10px);
  }
  20%, 40% {
    transform: translateX(10px);
  }
}

/* Header */
.logo {
  display: inline-flex;
  padding: 18px 40px 8px 10px;
  font-size: 1.125rem;
  text-decoration: none;
  background: white;
  font-weight: 300;
  color: black;
  overflow: hidden;
}
.logo b {
  font-weight: 500;
}
@media (max-width: 359.98px) {
  .logo {
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  .logo {
    padding: 27px 60px 12px 15px;
    font-size: 1.625rem;
  }
}

.header {
  position: sticky;
  top: -1px;
  z-index: 100;
  margin: 10px 0;
  background: #EEEEEE;
  transition: background 500ms, box-shadow 500ms;
}
@media (min-width: 768px) {
  .header {
    margin: 20px 0;
  }
}
.header.is-pinned {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  background: white;
}
@media (min-width: 992px) {
  .header.is-pinned {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.05);
  }
}
.header.is-pinned .logo::after {
  opacity: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .header__inner {
    align-items: center;
  }
}

.header__logo {
  margin-left: -10px;
}
@media (min-width: 768px) {
  .header__logo {
    margin-left: -17px;
  }
}

.header__menu {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .header__menu {
    margin-right: -10px;
  }
}
@media (min-width: 768px) {
  .header__menu {
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -110%;
    bottom: 0;
    padding-left: 20px;
    min-width: 50%;
    background: white;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
    transition: right 500ms;
  }
  .header__nav.is-open {
    right: 0;
  }
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
    margin-right: 40px;
  }
}
.header__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 767.98px) {
  .header__nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin: 20px;
  }
}
.header__nav ul li {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .header__nav ul li {
    font-weight: normal;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin-right: 40px;
  }
}
.header__nav ul li a {
  display: inline-flex;
  text-decoration: none;
  color: black;
}
.header__close {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 36px;
  margin-top: 21px;
  margin-right: 10px;
  margin-left: auto;
  background: none;
  border: none;
  transition: margin-top 500ms;
}
@media (min-width: 768px) {
  .header__close {
    display: none;
  }
}
.header.is-pinned .header__close {
  margin-top: 10px;
}

.header__close:before, .header__close:after {
  content: "";
  position: absolute;
  width: 72%;
  height: 2px;
  background: black;
}
.header__close:before {
  transform: rotate(-135deg);
}
.header__close:after {
  transform: rotate(-45deg);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  margin-left: 8px;
  padding: 0;
  background: none;
  border: none;
}
@media (max-width: 359.98px) {
  .header__hamburger {
    height: 35px;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger::before, .header__hamburger::after {
  content: "";
  display: block;
}
.header__hamburger > div, .header__hamburger::before, .header__hamburger::after {
  width: 70%;
  height: 2px;
  background: black;
}
@media (max-width: 359.98px) {
  .header__hamburger > div, .header__hamburger::before, .header__hamburger::after {
    width: 64%;
  }
}
.header__hamburger > div, .header__hamburger::before {
  margin-bottom: 8px;
}

.header__btn-desktop {
  display: none;
}
@media (min-width: 768px) {
  .header__btn-desktop {
    display: block;
  }
}

@media (min-width: 768px) {
  .header__btn-mobile {
    display: none;
  }
}

/* Hero */
.hero {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .hero {
    display: flex;
    margin-top: 105px;
  }
}
@media (min-width: 992px) {
  .hero {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero__col:first-child {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .hero__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-basis: 50%;
  }
}

@media (max-width: 767.98px) {
  .hero__col--right {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero__col--right {
    align-items: flex-end;
  }
}

.hero__title {
  margin-bottom: 20px;
  font-size: 2.25rem;
  margin-top: -2.7px;
  font-weight: normal;
}
@media (min-width: 400px) {
  .hero__title {
    font-size: 2.875rem;
    margin-top: -3.45px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    margin-bottom: 30px;
    font-size: 2.5rem;
    margin-top: -3px;
  }
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 3.5rem;
    margin-top: -4.2px;
  }
}

.hero__subtitle {
  margin-bottom: 30px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .hero__subtitle {
    margin-bottom: 50px;
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}

/* Contact Form */
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contact-form {
    width: 100%;
    max-width: 380px;
    padding: 40px;
    background: white;
  }
}
.contact-form p {
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .contact-form {
    margin-right: 18px;
  }
  .contact-form::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -122px;
    left: -154px;
    width: 698px;
    height: 714px;
    background: url(../img/heroimg.svg);
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}

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

.contact-form__textarea {
  height: 175px;
  margin-bottom: 10px;
}

.contact-form__checkbox {
  margin-bottom: 20px;
}
.contact-form__checkbox label {
  position: relative;
  padding-left: 26px;
  font-size: 0.8125rem;
  line-height: 1.3;
  cursor: pointer;
}
.contact-form__checkbox label::before, .contact-form__checkbox label::after {
  content: "";
  position: absolute;
}
.contact-form__checkbox label::before {
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid;
}
.contact-form__checkbox label::after {
  display: none;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
}
.contact-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-form__checkbox input[type=checkbox]:checked + label::after {
  display: block;
}
.contact-form__checkbox input[type=checkbox]:focus + label::before, .contact-form__checkbox input[type=checkbox]:focus + label::after {
  border-color: blue;
}

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

.contact-form__message p {
  margin-bottom: 4px;
}

.contact-form__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 6px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact-form__links li {
  display: inline-flex;
}
.contact-form__links li:not(:last-child)::after {
  content: ",";
}

.linkedin {
  display: inline-flex;
}
.linkedin::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 2px;
  background: url(../img/linkedin.svg) no-repeat;
  vertical-align: middle;
}

/* Services */
.services {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .services {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .services {
    padding-top: 160px;
  }
}

.services__items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-gap: 32px;
}
@media (min-width: 992px) {
  .services__items {
    grid-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.services__items li h3 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .services__items li h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .services__items li h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .services__items li p {
    font-size: 1.125rem;
  }
}
.services__items li p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .services__items--big {
    grid-gap: 60px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .services__items--big li h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .services__items--big li p {
    font-size: 1.375rem;
  }
}

.services__btn {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .services__btn {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .services__btn {
    margin-top: 80px;
  }
}

/* About */
.about {
  padding-top: 90px;
}
@media (min-width: 768px) {
  .about {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .about {
    padding-top: 160px;
  }
}

.about__content > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about__content p {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .about__content p {
    margin-bottom: 20px;
    font-size: 1.375rem;
  }
}

.about__items-title {
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 768px) {
  .about__items-title {
    margin-bottom: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .about__items {
    display: flex;
    flex-wrap: wrap;
  }
}

.about__item {
  margin-bottom: 10px;
  padding: 10px 15px;
  font-size: 1.125rem;
  line-height: 1.3;
  background: white;
}
@media (min-width: 768px) {
  .about__item {
    display: inline-flex;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 25px 32px;
    font-size: 1.25rem;
    background: white;
  }
}

/* Reviews */
.reviews {
  padding-top: 90px;
}
@media (min-width: 768px) {
  .reviews {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .reviews {
    padding-top: 160px;
  }
}

@media (max-width: 991.98px) {
  .reviews-items {
    display: flex;
    margin-right: -20px;
    margin-left: -20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}
@media (min-width: 992px) {
  .reviews-items {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

@media (max-width: 991.98px) {
  .reviews-item {
    display: flex;
    flex-direction: column;
    flex: 1 0 88%;
    padding: 8px 20px 20px;
    background: white;
    scroll-snap-align: center;
  }
  .reviews-item:not(:last-child) {
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .reviews-item {
    margin-bottom: 40px;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}

.reviews-item__text {
  margin-bottom: 18px;
  line-height: 1.5;
  font-style: italic;
}
.reviews-item__text::before, .reviews-item__text::after {
  display: inline;
}
.reviews-item__text::before {
  content: "«";
}
.reviews-item__text::after {
  content: "»";
}
@media (min-width: 768px) {
  .reviews-item__text {
    font-size: 1.125rem;
  }
}

.reviews-item__author {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 991.98px) {
  .reviews-item__author {
    margin-top: auto;
  }
}

.reviews-item__stars {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  font-family: monospace;
  font-size: 2.5rem;
  font-style: normal;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reviews-item__stars > span {
  display: inline-flex;
}
.reviews-item__stars > span > span {
  transform-origin: 50% 50%;
  transform: rotate(-10deg);
  transition: transform 200ms;
}
.reviews-item__stars > span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  overflow: hidden;
  color: #fd8b00;
}

/* Contact */
.contacts {
  display: none;
  padding-top: 90px;
}
@media (min-width: 768px) {
  .contacts {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .contacts {
    padding-top: 160px;
  }
}
@media (max-width: 767.98px) {
  .contacts {
    display: block;
  }
}

/* Footer */
.footer {
  display: flex;
  margin: 110px 0 20px;
  font-size: 0.875rem;
  color: #828282;
}
@media (max-width: 767.98px) {
  .footer {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer {
    justify-content: space-between;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .footer {
    margin: 180px 0 48px;
  }
}

@media (max-width: 767.98px) {
  .footer__nav {
    margin-bottom: 10px;
  }
}
.footer__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer__nav ul li:not(:last-child) {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .footer__nav ul li:not(:last-child) {
    margin-right: 20px;
  }
}
.footer__nav ul li a {
  text-decoration: underline;
  color: inherit;
}

/* Utitlities */
@media (max-width: 767.98px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .visible-sm {
    display: none;
  }
}

.nbsp {
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */