@charset "UTF-8";
:root {
  --black: #051014;
  --white: #fff;
  --gray: #f5f5f5;
  --gray-darker: #a6a6a6;
  --gray-dark: #666666;
  --error: #ff3333;
  --color-primary: #f5f8fb;
  --color-secondary: #1295ed;
  --color-tertiary: #89c731;
  --color-tertiary-dark: #70a329;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: var(--color-primary);
  font-weight: 300;
  line-height: 1.6;
}

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

section {
  padding: 6.5rem 4.8rem;
  max-width: 1600px;
  margin: auto;
}
@media only screen and (max-width: 50em) {
  section {
    padding: 2rem;
  }
}
section .section-heading {
  margin-bottom: 1.6rem;
  text-align: center;
}
section .section-description {
  text-align: center;
  margin-bottom: 2rem;
}

.overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 40;
  position: fixed;
  transition: all 0.1s;
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay.active {
  display: block;
}

.overlay.cookies-active {
  z-index: 100;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
  font-weight: 600;
}

h5 {
  font-size: 2rem;
  font-weight: 500;
}

h6 {
  font-size: 1.6rem;
  font-weight: 500;
}

p {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  color: var(--color-tertiary);
  font-size: 1.8rem;
}
a:hover {
  color: var(--color-tertiary-dark);
}

.bold {
  font-weight: bold;
}

header {
  height: 10rem;
  background: var(--white);
  padding: 0 4.8rem;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
  transition: 0.2s;
  border-bottom: 2px solid var(--gray);
}
@media only screen and (max-width: 50em) {
  header {
    position: sticky;
  }
}
header nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}
header nav .logo {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: 0.2s;
}
header nav .logo:hover {
  color: var(--color-tertiary);
}
header nav .link {
  color: var(--black);
  transition: 0.2s;
}
header nav .link:not(header nav .link:last-child) {
  margin-right: 3.2rem;
}
header nav .link:not(header nav .link:last-child):hover {
  color: var(--color-tertiary);
}
header nav .link.btn {
  box-shadow: none;
}
@media only screen and (max-width: 50em) {
  header .desktop-header {
    display: none;
  }
}

@media only screen and (min-width: 50em) {
  .scrolled {
    height: 7rem;
    border-bottom: none;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 50em) {
  .scrolled {
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 50em) {
  header {
    height: auto;
  }
}
header .phone-header {
  display: none;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: var(--black);
}
@media only screen and (max-width: 50em) {
  header .phone-header {
    display: flex;
  }
}
header .phone-header .phone-header-content {
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  align-items: center;
}
header .phone-header .phone-header-content .logo {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}
header .phone-header .hamburger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
header .phone-header .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000;
  transition: all 0.4s ease-in-out;
}
header .phone-header .hamburger span:not(header .phone-header .hamburger span:last-child) {
  margin-bottom: 0.7rem;
}
header .phone-header .phone-nav {
  display: none;
  flex-direction: column;
  width: 100%;
}
header .phone-header .phone-nav .link {
  padding: 2rem;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid var(--gray);
  margin-right: 3rem;
}
header .phone-header .phone-nav .contact-link {
  background: var(--color-secondary);
  border-radius: 4rem;
  color: #fff;
}
header .phone-header .phone-nav .btn {
  width: -moz-fit-content;
  width: fit-content;
}
header .phone-header.active .hamburger span {
  margin-bottom: 0 !important;
}
header .phone-header.active .hamburger span:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
header .phone-header.active .hamburger span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  display: none;
}
header .phone-header.active .hamburger span:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
header .phone-header.active .phone-nav {
  display: flex;
}

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 3rem;
  color: var(--black);
  text-align: center;
}
@media only screen and (max-width: 50em) {
  footer {
    text-align: center;
  }
}
footer .footer-upper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 50em) {
  footer .footer-upper {
    flex-direction: column;
  }
}
footer .footer-upper h4 {
  text-transform: uppercase;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
footer .footer-upper a {
  color: var(--black);
  margin-bottom: 1rem;
  text-decoration: none;
}
footer .footer-upper a:hover {
  color: var(--color-tertiary);
}
footer .footer-upper p {
  margin-bottom: 1rem;
}
footer .footer-upper .copyright, footer .footer-upper .contact, footer .footer-upper .social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 3rem;
  width: 33.33%;
}
@media only screen and (max-width: 50em) {
  footer .footer-upper .copyright, footer .footer-upper .contact, footer .footer-upper .social {
    align-items: center;
    width: 100%;
    margin: 1.5rem 0;
  }
}
footer .footer-upper .social .social-icons {
  display: flex;
  justify-content: center;
}
footer .footer-upper .social a {
  text-decoration: none;
  color: var(--black);
}
footer .footer-upper .social a:not(:last-child) {
  margin-right: 1rem;
}
footer .footer-upper .social img {
  width: 3rem;
  height: 3rem;
}
footer .footer-bottom {
  text-align: right;
  padding-top: 1rem;
  border-top: 1px solid grey;
}

.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 1.2rem 2.4rem;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  transition: all 0.4s;
  color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  color: var(--white);
  background: var(--color-tertiary);
}

.btn:active,
.btn:focus {
  outline: none;
  box-shadow: 0 5px 10px rgba(var(--black), 0.2);
}

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--color-tertiary);
}
.btn-secondary:hover,
.btn-secondary:link:hover,
.btn-secondary:visited:hover {
  color: var(--color-tertiary);
  background: transparent;
}

.buttons .btn:first-child {
  margin-right: 3.2rem;
}
@media only screen and (max-width: 50em) {
  .buttons .btn:first-child {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 50em) {
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.center-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.buttons-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buttons-column .btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 50em) {
  #services {
    margin-top: 10rem;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
.features .feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 1.6rem;
  margin: 1.6rem;
  width: 30%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 62.5em) {
  .features .feature {
    width: 45%;
  }
}
@media only screen and (max-width: 37.5em) {
  .features .feature {
    width: 100%;
  }
}
.features .feature .features-icon {
  border-radius: 50%;
  background: var(--color-tertiary);
  width: 6rem;
  height: 6rem;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.features .feature .features-icon img {
  width: 4rem;
  height: 4rem;
}
.features .feature h4 {
  margin: 1rem 0;
  text-transform: uppercase;
}
.features .feature p {
  font-size: 1.6rem;
}
.features .feature__small {
  width: 20%;
}
.features .feature__small h4 {
  font-size: 2rem;
}
@media only screen and (max-width: 62.5em) {
  .features .feature__small {
    width: 30%;
  }
}
@media only screen and (max-width: 37.5em) {
  .features .feature__small {
    width: 100%;
  }
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 50em) {
  .portfolio-container {
    display: flex;
    flex-direction: column;
  }
}
.portfolio-container .portfolio-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem;
  margin: 1.6rem;
  width: calc(50% - 3.2rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 50em) {
  .portfolio-container .portfolio-item {
    width: 100%;
    margin: 1.6rem 0;
  }
}
.portfolio-container .portfolio-item .portfolio-item-overlay {
  background: rgba(5, 16, 20, 0.95);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s;
}
.portfolio-container .portfolio-item .portfolio-item-content img {
  width: 100%;
}
.portfolio-container .portfolio-item .portfolio-item-content h3 {
  margin: 1rem 0;
}
.portfolio-container .portfolio-item .portfolio-item-hover {
  display: none;
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  top: 80%;
  margin-bottom: 0px;
  color: var(--white);
}
.portfolio-container .portfolio-item .portfolio-item-hover .portfolio-logo {
  width: 100%;
  max-width: 20rem;
  margin-bottom: 3rem;
}
.portfolio-container .portfolio-item .portfolio-item-hover p {
  margin-bottom: 3rem;
}
.portfolio-container .portfolio-item .portfolio-item-hover .btn {
  margin-bottom: 3rem;
}
.portfolio-container .portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
.portfolio-container .portfolio-item:hover .portfolio-item-hover {
  opacity: 1;
  display: block;
}

.portfolio-container.showcase .portfolio-item {
  cursor: default;
}

.portfolio-container.showcase.phone {
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 5rem;
}
.portfolio-container.showcase.phone .portfolio-item {
  width: calc(20% - 3.2rem);
}
@media only screen and (max-width: 62.5em) {
  .portfolio-container.showcase.phone .portfolio-item {
    width: calc(25% - 3.2rem);
  }
}
@media only screen and (max-width: 50em) {
  .portfolio-container.showcase.phone .portfolio-item {
    width: calc(33.33% - 3.2rem);
  }
}
@media only screen and (max-width: 37.5em) {
  .portfolio-container.showcase.phone .portfolio-item {
    width: calc(50% - 3.2rem);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  width: 100%;
  background: var(--white);
  padding: 3.2rem 4.8rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 50em) {
  .contact-form {
    padding: 3rem 2rem;
  }
}
.contact-form .form-actions {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.contact-form .form-actions input, .contact-form .form-actions textarea {
  padding: 2rem;
  background: var(--color-primary);
  border: 1px solid var(--color-secondary);
}
.contact-form p {
  font-size: 1.6rem;
}
.contact-form .btn {
  margin-top: 2rem;
  font-size: 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-form .success, .contact-form .error {
  margin-top: 2rem;
  color: var(--color-tertiary);
  font-weight: bold;
  font-size: 1.8rem;
}
.contact-form .success {
  color: var(--color-tertiary);
}
.contact-form .error {
  color: var(--error);
}
.contact-form .g-recaptcha {
  margin-top: 1rem;
}

.slider .slide {
  animation-name: fade;
  animation-duration: 0.8s;
}
.slider .slider-dots {
  margin-top: 2rem;
}
.slider .slider-dots .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--gray);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slider .slider-dots .dot:hover {
  background-color: var(--gray-dark);
}
.slider .slider-dots .dot:not(.slider .slider-dots .dot:last-child) {
  margin-right: 0.5rem;
}
.slider .slider-dots .active {
  background-color: var(--gray-dark);
}
.slider .arrow-prev, .slider .arrow-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -2.2rem;
  padding: 1.6rem;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  border-radius: 50%;
  background: var(--color-tertiary);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.slider .arrow-prev:hover, .slider .arrow-next:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  background: var(--color-tertiary-dark);
}
.slider .arrow-prev:active, .slider .arrow-prev:focus, .slider .arrow-next:active, .slider .arrow-next:focus {
  outline: none;
  transform: translateY(3px);
  box-shadow: 0 5px 10px rgba(var(--black), 0.2);
}
.slider .arrow-prev {
  left: 5rem;
}
@media only screen and (max-width: 50em) {
  .slider .arrow-prev {
    left: 1rem;
  }
}
.slider .arrow-next {
  right: 5rem;
}
@media only screen and (max-width: 50em) {
  .slider .arrow-next {
    right: 1rem;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.cookies-bar {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 30px 48px;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 105;
  transition: 0.2s;
}
.cookies-bar .cookies-bar-image {
  display: flex;
  align-items: center;
}
.cookies-bar .cookies-bar-image h2 {
  font-size: 2.2rem;
  font-weight: 600;
}
.cookies-bar .cookies-bar-image img {
  margin-right: 0.5rem;
  width: 32px;
  height: 32px;
}
.cookies-bar p {
  font-size: 1.6rem;
}

.cookies-bar-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
  text-align: center;
}
.cookies-bar-buttons .btn:not(.cookies-bar-buttons .btn:last-child) {
  margin-right: 32px;
}
@media only screen and (max-width: 50em) {
  .cookies-bar-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookies-bar-buttons .btn {
    width: 100%;
    margin-right: 0;
  }
  .cookies-bar-buttons .btn:not(.cookies-bar-buttons .btn:first-child) {
    margin-top: 1.6rem;
  }
}

.cookies-bar-configuration {
  z-index: 110;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 30px 48px;
  width: 100%;
  max-width: 600px;
  max-height: 500px;
  overflow-Y: auto;
  position: fixed;
  transition: 0.2s;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  text-align: left;
}
.cookies-bar-configuration #cookies_setting_close {
  font-weight: 600;
  color: var(--gray-darker);
  cursor: pointer;
  font-size: 2.6rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.cookies-bar-configuration #cookies_setting_close:hover {
  color: var(--gray-dark);
}
.cookies-bar-configuration h2 {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 2.2rem;
}
.cookies-bar-configuration p {
  font-size: 1.4rem;
}

.cookies-bar-setting {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1.6rem;
}
.cookies-bar-setting h3 {
  font-weight: 500;
  font-size: 1.6rem;
}
.cookies-bar-setting .cookies-bar-setting-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid gray;
  padding: 1rem 0;
}
.cookies-bar-setting .cookies-bar-setting-item:nth-child(odd) {
  border-top: 1px solid gray;
}
.cookies-bar-setting .cookies-bar-setting-item:nth-child(2) {
  border-bottom: none;
}
.cookies-bar-setting .cookies-bar-setting-item .cookies-bar-basic-info {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.cookies-bar-setting .cookies-bar-setting-item .cookies-bar-basic-info .show-more, .cookies-bar-setting .cookies-bar-setting-item .cookies-bar-basic-info .show-less {
  width: 3.2rem;
  height: 3.2rem;
}
.cookies-bar-setting .cookies-bar-setting-item .cookies-bar-more-info {
  display: none;
}
.cookies-bar-setting .cookies-bar-setting-item .necessary-cookies::before {
  font-size: 1.4rem;
  content: "✔";
  color: #28A834;
  margin-right: 5px;
}
.cookies-bar-setting .cookies-bar-setting-item .analytics-cookies::before, .cookies-bar-setting .cookies-bar-setting-item .marketing-cookies::before {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E56385;
  content: "×";
  margin-right: 5px;
}
.cookies-bar-setting .cookies-bar-setting-item .analytics-cookies.checked::before, .cookies-bar-setting .cookies-bar-setting-item .marketing-cookies.checked::before {
  content: "✔";
  color: #28A834;
}

.switch {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 2rem;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 1.3rem;
  width: 1.3rem;
  left: 0.4rem;
  bottom: 0.4rem;
  background-color: white;
  transition: 0.4s;
}
input:checked + .switch-slider {
  background-color: var(--color-secondary);
}
input:focus + .switch-slider {
  box-shadow: 0 0 1px var(--color-secondary);
}
input:checked + .switch-slider:before {
  transform: translateX(1.8em);
}
.switch-slider.round {
  border-radius: 2.2rem;
}
.switch-slider.round:before {
  border-radius: 50%;
}

.configurator-form .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}
.configurator-form .table td, .configurator-form .table th {
  padding: 1.6rem;
  border: 1px solid var(--color-secondary);
  text-align: center;
  font-size: 16px;
}
.configurator-form .table td, .configurator-form .table th {
  background-color: var(--white);
  color: var(--black);
}
.configurator-form .table td:nth-child(3) {
  text-wrap: nowrap;
}
.configurator-form .table th {
  color: var(--color-secondary);
}
.configurator-form .table .table-description {
  -moz-text-align-last: left;
       text-align-last: left;
  background: var(--color-primary);
}
.configurator-form .table input[type=number] {
  padding: 0.75rem;
  width: 80%;
}
.configurator-form .btn {
  margin-top: 1.6rem;
  font-size: 1.8rem;
}

#final-price {
  font-weight: bold;
  font-size: 2rem;
  padding: 3.2rem;
  color: var(--color-secondary);
}

@media only screen and (max-width: 50em) {
  .configurator-form .table thead {
    display: none;
  }
  .configurator-form .table,
  .configurator-form .table tbody,
  .configurator-form .table tr,
  .configurator-form .table td {
    display: block;
    width: 100%;
  }
  .configurator-form .table tr {
    margin-bottom: 1.5rem;
  }
  .configurator-form .table td {
    padding-left: 50%;
    text-align: left;
    position: relative;
  }
  .configurator-form .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
  }
  .configurator-form .table .table-description {
    padding-left: 0;
  }
}
@media only screen and (max-width: 50em) and (max-width: 50em) {
  .configurator-form .table .table-description {
    padding-left: 1rem;
  }
}
.portfolio-page .main-info h3 {
  margin-bottom: 3.2rem;
}

.blog-landing-page .article {
  margin-top: 5rem;
}
@media only screen and (max-width: 50em) {
  .blog-landing-page .article {
    margin-top: 0;
  }
}
.blog-landing-page .blog-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  height: 100%;
}
@media only screen and (max-width: 50em) {
  .blog-landing-page .blog-items {
    display: flex;
    flex-direction: column;
  }
}
.blog-landing-page .blog-items .blog-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  padding: 1.6rem;
  margin: 1.6rem;
  width: calc(50% - 3.2rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: var(--black);
  transition: 0.2s;
}
.blog-landing-page .blog-items .blog-item:hover {
  scale: 1.02;
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2);
}
.blog-landing-page .blog-items .blog-item img {
  width: 100%;
  max-width: 780px;
  aspect-ratio: 3/2;
}
.blog-landing-page .blog-items .blog-item h3 {
  transition: 0.2s;
}
.blog-landing-page .blog-items .blog-item h3:hover {
  color: var(--color-tertiary);
}
.blog-landing-page .blog-items .blog-item p {
  font-size: 1.4rem;
  color: var(--gray-dark);
}
@media only screen and (max-width: 50em) {
  .blog-landing-page .blog-items .blog-item {
    width: 100%;
    margin: 1.6rem 0;
  }
}

.blog-article {
  padding: 6.5rem 4.8rem;
  max-width: 1200px;
  margin: auto;
  margin-top: 7rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 50em) {
  .blog-article {
    margin-top: 0;
  }
}
.blog-article .article-section {
  margin: 5rem 0;
}
.blog-article .article-heading {
  font-size: 3rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.blog-article .article-date {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gray-dark);
}
.blog-article .article-description {
  text-align: left;
  margin-bottom: 1.6rem;
}
.blog-article .blog-opening-image img {
  width: 100%;
  height: auto;
}
.blog-article h2 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  text-align: left;
}
.blog-article p {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}
.blog-article a {
  display: block;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}
.blog-article ul {
  padding-left: 5rem;
  font-size: 1.6rem;
}
.blog-article li {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.reviews-page-section {
  margin-top: 5rem;
}
@media only screen and (max-width: 50em) {
  .reviews-page-section {
    margin-top: 0;
  }
}
.reviews-page-section .reviews-page-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
.reviews-page-section .reviews-page-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  padding: 1.6rem;
  margin: 1.6rem;
  width: 30%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 62.5em) {
  .reviews-page-section .reviews-page-item {
    width: 45%;
  }
}
@media only screen and (max-width: 37.5em) {
  .reviews-page-section .reviews-page-item {
    width: 100%;
  }
}
.reviews-page-section .reviews-page-item .review-item-person {
  display: flex;
  flex-direction: column;
}
.reviews-page-section .reviews-page-item strong {
  font-size: 2rem;
}
.reviews-page-section .reviews-page-item .stars-rating {
  margin: 1rem 0;
}
.reviews-page-section .reviews-page-item .review-item-text p {
  font-size: 1.6rem;
}

.main-banner {
  display: grid;
  grid-template-columns: 60% 1fr;
  align-items: center;
  width: 100%;
  padding: 3.2rem 4.8rem;
  height: 100vh;
  max-width: 1600px;
  margin: auto;
}
@media only screen and (max-width: 50em) {
  .main-banner {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

.main-info {
  padding-right: 5rem;
}
@media only screen and (max-width: 50em) {
  .main-info {
    padding-right: 0;
  }
}
.main-info h1 {
  font-size: 5rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}
.main-info h2 {
  margin-bottom: 2.6rem;
  color: var(--color-tertiary);
  text-transform: uppercase;
}
.main-info p {
  margin-bottom: 3.2rem;
}

.main-picture img {
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 50em) {
  .main-picture {
    margin-top: 3rem;
  }
}

.pricing-list {
  display: flex;
  flex-direction: row;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 50em) {
  .pricing-list {
    flex-direction: column;
  }
}
.pricing-list .pricing-card {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  flex: 1;
  text-align: center;
  background: var(--white);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 50em) {
  .pricing-list .pricing-card {
    width: 100%;
    margin-right: 0;
  }
  .pricing-list .pricing-card:not(.pricing-list .pricing-card:last-child) {
    margin-bottom: 5rem;
  }
}
.pricing-list .pricing-card:not(.pricing-list .pricing-card:last-child) {
  margin-right: 3rem;
}
.pricing-list .pricing-card .pricing-card-header {
  width: 100%;
  background: var(--color-secondary);
  padding: 2rem;
  color: var(--white);
}
.pricing-list .pricing-card .pricing-card-header h3 {
  font-weight: 600;
}
.pricing-list .pricing-card .pricing-card-header h4 {
  font-weight: 400;
}
.pricing-list .pricing-card__2 .pricing-card-header {
  background: var(--color-tertiary);
}
.pricing-list .pricing-card .pricing-card-price {
  width: 100%;
  background-color: var(--gray);
  padding: 1.6rem;
}
.pricing-list .pricing-card .pricing-card-content ul {
  list-style: none;
}
.pricing-list .pricing-card .pricing-card-content ul li {
  padding: 1.25rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.pricing-list .pricing-card .pricing-card-content ul li:not(.pricing-list .pricing-card .pricing-card-content ul li:last-child) {
  border-bottom: 1px solid var(--gray);
}
.pricing-list .pricing-card .pricing-card-content ul li::before {
  content: "✓";
  color: var(--color-tertiary);
  margin-right: 5px;
}
.pricing-list .pricing-card .pricing-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.pricing-list .pricing-card .pricing-card-footer .btn:first-child {
  margin-bottom: 1.6rem;
}

.more-services {
  display: grid;
  grid-template-columns: 60% 1fr;
  background: var(--white);
  align-items: center;
  width: 100%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  padding: 3.2rem 4.8rem;
}
@media only screen and (max-width: 50em) {
  .more-services {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .more-services img {
    margin-top: 2rem;
  }
}
.more-services .more-services-info {
  padding-right: 5rem;
}
@media only screen and (max-width: 50em) {
  .more-services .more-services-info {
    padding-right: 0;
  }
}
.more-services .more-services-info h3, .more-services .more-services-info h4, .more-services .more-services-info ul {
  margin-bottom: 1.6rem;
}
.more-services .more-services-info p {
  margin-bottom: 1.6rem;
}
.more-services .more-services-info ul {
  font-size: 1.6rem;
  margin-left: 2rem;
}
.more-services .more-services-image img {
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}
@media only screen and (max-width: 50em) {
  .more-services .buttons {
    align-items: center;
  }
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--color-secondary);
  padding: 3.2rem 4.8rem;
  text-align: center;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  position: relative;
}
.reviews .review-item {
  color: var(--white);
  padding: 0 15%;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 50em) {
  .reviews .review-item {
    padding: 0 10%;
  }
}
.reviews .review-person {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.reviews .stars-rating {
  margin-top: 1rem;
}
.reviews .stars-rating img {
  width: 24px;
  height: 24px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  height: 100%;
  background: var(--white);
  padding: 1.6rem 0;
}
.timeline .timeline-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  width: 30%;
}
@media only screen and (max-width: 62.5em) {
  .timeline .timeline-item {
    width: 45%;
  }
}
@media only screen and (max-width: 37.5em) {
  .timeline .timeline-item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.timeline .timeline-item h3 {
  margin-bottom: 1.6rem;
}
.timeline .timeline-item span {
  color: var(--color-tertiary);
}/*# sourceMappingURL=main.css.map */