/* Colors */
/* Responsive breakpoints */
/* Responsive breakpoints */
#mobileNav {
  z-index: 9200000;
}
#mobileNav a {
  color: var(--gray-800);
}
#mobileNav .lang--active a {
  color: var(--primary);
  font-weight: 700;
}

.header {
  z-index: 9000000;
}
.header .ri {
  position: absolute;
  background-color: var(--pink-100);
  width: 0%;
  height: 5px;
  bottom: -5px;
  left: 0;
  z-index: 200;
}
.header__logo {
  width: 155px;
  display: block;
}
.header__logo > svg {
  width: 100%;
  height: auto;
}
.header__main-nav nav ul li {
  margin: 0 0.5rem;
  position: relative;
}
.header__main-nav nav ul li a {
  padding: 0.5rem;
  color: var(--gray-800);
}
.header__main-nav nav ul li:hover > ul {
  display: block;
}
.header__main-nav nav ul li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 1.8rem;
  padding: 2rem 0 0;
  min-width: 200px;
}
.header__main-nav nav ul li > ul li a {
  border-bottom: 1px solid #dddddd;
}
.header__main-nav nav ul li > ul li:last-child a {
  border-bottom: 0;
}
.header__main-nav__lang-switcher {
  margin-left: 0.5rem;
  padding: 0.5rem;
  position: relative;
  cursor: pointer;
}
.header__main-nav__lang-switcher > div:hover > ul {
  display: block;
}
.header__main-nav__lang-switcher > div > ul {
  display: none;
  position: absolute;
  z-index: 300;
  right: 0.5rem;
  top: 2rem;
  padding: 1rem 1.3rem;
  min-width: 5rem;
  text-align: right;
}
.header__main-nav__lang-switcher > div > ul li a {
  display: inline-block;
}
.header__main-nav a, .header__main-nav__lang-switcher > div > div {
  display: flex;
  align-items: center;
}
.header__main-nav a:hover, .header__main-nav__lang-switcher > div > div:hover {
  color: var(--primary);
}

.title-section {
  margin-bottom: 3.5rem;
}

.page-title, .page-title--divider {
  margin: 5rem 0 3rem;
}
.page-title--divider {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  padding-bottom: 37px;
}
.page-title--divider::after {
  background: url("../svg/divider.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 95px;
  height: 15px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -47.5px;
}

.divider {
  background: url("../svg/divider.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 95px;
  height: 15px;
}

.accordion__intro {
  cursor: pointer;
}
.accordion__content {
  opacity: 0;
  max-height: 0;
  will-change: max-height;
  transition: all 0.25s ease-out;
  overflow: hidden;
}
.accordion__active .accordion__content {
  opacity: 1;
}

.fade-in {
  animation: fadeIn 300ms ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-out {
  animation: fadeOut 300ms ease;
  opacity: 0;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.text p {
  margin-bottom: 1.2rem;
}
.text a:hover {
  text-decoration: underline;
}
.text--with-lists ul li {
  list-style-type: disc;
  margin-left: 18px;
}

.hero {
  position: relative;
  background-image: url("../img/hero.jpg");
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  z-index: 2;
}
@media (min-width: 1280px) {
  .hero::before {
    display: none;
  }
}
.hero__inner {
  position: relative;
  z-index: 5;
}
.hero__inner__subtitle {
  font-size: 1.22222rem;
}

.portfolio__item {
  padding-bottom: 75%;
  position: relative;
  color: var(--gray-800);
}
.portfolio__item__image {
  position: absolute;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.portfolio__item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 1rem;
  background: rgba(230, 230, 230, 0.75);
}
@media (min-width: 768px) {
  .portfolio__item__content {
    transition: opacity ease 300ms;
    opacity: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(231, 66, 99, 0.75);
    color: #ffffff;
  }
}
.portfolio__item__content h3 {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .portfolio__item__content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
}
.portfolio__item__content p {
  font-size: 0.8rem;
}
@media (min-width: 1024px) {
  .portfolio__item__content p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .portfolio__item:hover .portfolio__item__content {
    opacity: 1;
  }
}

.how-we-work-steps .how-we-work-grid {
  display: grid;
}
@media (min-width: 768px) {
  .how-we-work-steps .how-we-work-grid {
    grid-template-columns: 170px 150px 1fr;
    grid-template-rows: 1fr;
  }
}
.how-we-work-steps .how-we-work-grid__icon {
  max-width: 170px;
  margin: 2rem auto;
}
@media (min-width: 768px) {
  .how-we-work-steps .how-we-work-grid__icon {
    margin: 0;
  }
}
.how-we-work-steps .how-we-work-grid__step {
  border-top: 1.2rem solid #fff;
}
@media (min-width: 768px) {
  .how-we-work-steps .how-we-work-grid__step--line {
    height: 100%;
    padding: 1rem;
    background-image: url("../svg/rounded-dash.svg");
    background-size: 2px auto;
    background-repeat: repeat-y;
    background-clip: content-box;
    background-position: top center;
  }
}
.how-we-work-steps .how-we-work-grid:last-child .how-we-work-grid__step--line {
  background-image: none;
}

.design-packages--desktop .cat, .design-packages--mobile .cat {
  color: var(--gray-400);
}

.design-packages--desktop__head {
  grid-template-columns: 200px 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 30px;
}
@media (min-width: 1280px) {
  .design-packages--desktop__head {
    grid-template-columns: 280px 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.design-packages--desktop__head__box > div {
  padding: 0 30px 30px;
}
.design-packages--desktop__head__box .price {
  background-image: url("../svg/ribbon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  text-align: center;
  top: -17px;
  left: -10px;
  font-size: 28px;
  padding: 40px 23px 40px 38px;
}
.design-packages--desktop__body {
  grid-template-columns: 200px 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 30px;
}
@media (min-width: 1280px) {
  .design-packages--desktop__body {
    grid-template-columns: 280px 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.design-packages--desktop__body > div {
  border-top: 4px solid var(--gray-100);
}
.design-packages--desktop__body > div:nth-child(2), .design-packages--desktop__body > div:nth-child(3), .design-packages--desktop__body > div:nth-child(4) {
  border-left: 4px solid var(--gray-100);
  border-right: 4px solid var(--gray-100);
}
.design-packages--desktop__body:first-child > div {
  border-top: 0;
}
.design-packages--desktop__body:last-child > div:nth-child(2), .design-packages--desktop__body:last-child > div:nth-child(3), .design-packages--desktop__body:last-child > div:nth-child(4) {
  border-bottom: 4px solid var(--gray-100);
}

.design-packages--mobile__head {
  overflow: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .design-packages--mobile__head {
    font-size: 1rem;
  }
}
.design-packages--mobile__head h3 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .design-packages--mobile__head h3 {
    font-size: 1.4444444444rem;
  }
}
.design-packages--mobile__head > div {
  border-right: 1px solid var(--gray-400);
}
.design-packages--mobile__head > div.active {
  border-bottom: 8px solid var(--primary);
}
.design-packages--mobile__head > div:last-child {
  border-right: none;
}
.design-packages--mobile__body > div {
  display: none;
}
.design-packages--mobile__body > div.active {
  display: block;
}

.happy-clients--grid__item {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .happy-clients--grid__item {
    width: 48%;
    margin-bottom: 2%;
  }
}
.happy-clients--grid__gutter-sizer {
  width: 0%;
}
@media (min-width: 768px) {
  .happy-clients--grid__gutter-sizer {
    width: 2%;
  }
}
.happy-clients--grid__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.blog-item {
  max-width: 870px;
}
.blog-item__content h2, .blog-item__content h3 {
  font-weight: 600;
}
.blog-item__content h2 {
  color: var(--primary);
}
.blog-item__content h3 {
  margin-bottom: 0.5rem;
}
.blog-item__content__toc a {
  text-decoration: underline;
}
.blog-item__content ul {
  list-style-type: disc;
  padding-inline-start: 19px;
}
.blog-item__content ul li {
  padding-left: 1rem;
}

form .input--upload {
  margin-bottom: 5rem;
  position: relative;
}
@media (min-width: 768px) {
  form .input--upload {
    margin-bottom: 3rem;
  }
}
form .input--upload label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-break: break-all;
  border: 1px solid var(--gray-400);
  padding: 1rem 2rem;
  width: 180px;
  height: 120px;
  cursor: pointer;
  font-weight: 400;
  color: var(--gray-400);
  border-radius: 0.25rem;
}
form .input--upload label::after {
  content: "+";
  position: absolute;
  bottom: -3rem;
  background: var(--primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
form .input--upload .remove {
  display: none;
  cursor: pointer;
}
form .input--upload.has-file label {
  color: var(--gray-800);
}
form .input--upload.has-file .remove {
  display: inline-block;
}
form .input--upload:not(.has-file) label {
  background: url("../svg/file-input-cross.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
form .input--upload input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

@media (min-width: 1024px) {
  footer .footer-col--info {
    flex: 270px 0 0;
  }
}
footer .social-icon img:hover {
  filter: invert(38%) sepia(26%) saturate(3434%) hue-rotate(316deg) brightness(93%) contrast(94%);
}

:root {
  --primary: #e74263;
  --pink-100: #FDB7BE;
  --gray-100: #f5f7f9;
  --gray-400: #afb1b3;
  --gray-500: #777776;
  --gray-800: #303030;
}

html, body {
  min-height: 100%;
  height: 100%;
}

body {
  font-feature-settings: normal;
  font-family: "Montserrat", sans-serif;
  color: var(--gray-800);
}

::-moz-selection {
  background-color: var(--pink-100);
}

::selection {
  background-color: var(--pink-100);
}

.addthis_inline_share_toolbox .at-resp-share-element .at-share-btn {
  margin-right: 0.7rem !important;
}

.grecaptcha-badge {
  visibility: hidden;
}