div, header, footer, main, ::after, ::before, article {
  box-sizing: border-box;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

.image-container {
  position: relative;
  overflow: hidden;
}
.image-container::before {
  content: "";
  padding-top: 66.66%;
  display: block;
}
.image-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #1D3240;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 2em;
  font-weight: 300;
}

ul,
table {
  line-height: 1.8em;
}

a {
  color: #D9072D;
  font-weight: 700;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
}
a:hover {
  color: #8C041D;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  color: #1D3240;
  margin: 0;
}
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  color: #D9072D;
}

h1,
.h1 {
  font-size: 60px;
}

h2,
.h2 {
  font-size: 42px;
}

h3,
.h3 {
  font-size: 25px;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 18px;
}

#page-header #header-top .menu,
#page-header #header-center .menu,
#page-header #header-bottom .menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#page-header #header-top .menu li,
#page-header #header-center .menu li,
#page-header #header-bottom .menu li {
  position: relative;
}
#page-header #header-top .menu li:hover > ul,
#page-header #header-center .menu li:hover > ul,
#page-header #header-bottom .menu li:hover > ul {
  display: block;
}
#page-header #header-top .menu li:last-of-type a,
#page-header #header-center .menu li:last-of-type a,
#page-header #header-bottom .menu li:last-of-type a {
  padding-right: 0;
}
#page-header #header-top .menu li a,
#page-header #header-center .menu li a,
#page-header #header-bottom .menu li a {
  display: block;
  padding: 0 24px;
  line-height: 40px;
  color: #1D3240;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
#page-header #header-top .menu li a:hover,
#page-header #header-center .menu li a:hover,
#page-header #header-bottom .menu li a:hover {
  color: #D9072D;
}
#page-header #header-top .menu li.current_page_item a,
#page-header #header-center .menu li.current_page_item a,
#page-header #header-bottom .menu li.current_page_item a {
  color: #D9072D;
}
#page-header #header-top .menu > li ul,
#page-header #header-center .menu > li ul,
#page-header #header-bottom .menu > li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background: #222;
}
#page-header #header-top .menu > li ul ul,
#page-header #header-center .menu > li ul ul,
#page-header #header-bottom .menu > li ul ul {
  top: 0;
  left: 100%;
}

#mobile-menu {
  display: none;
}
#mobile-menu .menu-main-container {
  position: fixed;
  width: 100%;
  height: 50%;
  bottom: -50%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  margin: 0;
  overflow-y: scroll;
  scrollbar-width: none;
  z-index: 999;
  transition: bottom 0.5s ease-in-out;
}
#mobile-menu .menu-main-container::-webkit-scrollbar {
  display: none;
}
#mobile-menu .menu-main-container .menu {
  list-style-type: none;
  padding: 0;
  margin: 0 0 50px 0;
}
#mobile-menu .menu-main-container .menu .menu-item-has-children {
  position: relative;
}
#mobile-menu .menu-main-container .menu .menu-item-has-children.active > a .submenu {
  background: #222;
}
#mobile-menu .menu-main-container .menu .menu-item-has-children.active > a .submenu::after {
  border-top: 6px solid #eee;
  transform: rotate(180deg);
}
#mobile-menu .menu-main-container .menu .menu-item-has-children > a .submenu {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-menu .menu-main-container .menu .menu-item-has-children > a .submenu::after {
  content: "";
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  border-top: 6px solid #222;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 3px;
}
#mobile-menu .menu-main-container .menu a {
  display: block;
  padding: 0 12px;
  line-height: 45px;
  text-decoration: none;
  color: #1D3240;
  font-size: 16px;
  font-weight: 400;
}
#mobile-menu .menu-main-container .menu a:hover {
  color: #eee;
  background: #1D3240;
}
#mobile-menu .menu-main-container .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
  background: rgba(0, 0, 0, 0.1);
}
#mobile-menu.active [class*=menu-] {
  bottom: 0;
}
#mobile-menu.active #mobile-bar button {
  animation-name: menu-button;
  animation-duration: 0.2s;
  background: #d5d5d5;
}
#mobile-menu.active #mobile-bar button span:first-of-type {
  transform: rotate(45deg);
  top: 7.6px;
}
#mobile-menu.active #mobile-bar button span:nth-child(2) {
  width: 0;
}
#mobile-menu.active #mobile-bar button span:last-of-type {
  transform: rotate(-45deg);
  top: -7.6px;
}
#mobile-menu #mobile-bar {
  position: fixed;
  bottom: -50px;
  left: 0;
  padding: 5px 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  transition: bottom 0.5s ease-in-out;
}
#mobile-menu #mobile-bar button {
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 3px;
  border: 0;
  background: #eee;
  font-size: 0;
  cursor: pointer;
  transition: background 0.5s ease-in-out;
}
#mobile-menu #mobile-bar button span {
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 0;
  width: 20px;
  display: block;
  height: 2px;
  background: #222;
  margin: 3px auto;
}
#mobile-menu.scroll-down #mobile-bar {
  bottom: -50px;
}
#mobile-menu.scroll-down.active #mobile-bar {
  bottom: 0px;
}
#mobile-menu.scroll-up #mobile-bar {
  bottom: 0px;
}

@keyframes menu-button {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

body {
  margin: 0;
  padding: 0;
}

#page-container {
  padding-top: 110px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#page-container #page-main {
  flex: 1;
}

.container,
.container-xxl {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1320px;
}

.container-xl {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1140px;
}

.container-lg {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 960px;
}

.container-md {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 720px;
}

.container-sm {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 540px;
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.container .row .col,
[class*=col-],
div.woocommerce[class*=columns-] ul.products li.product {
  padding-left: 12px;
  padding-right: 12px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3,
div.woocommerce[class*=columns-] ul.products.columns-4 li.product {
  flex: 0 0 25%;
}

.col-4,
div.woocommerce[class*=columns-] ul.products.columns-3 li.product {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

.relative {
  position: relative;
}

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

.justify-content-start .row {
  justify-content: flex-start;
}

.justify-content-end .row {
  justify-content: flex-end;
}

.align-items-top .row {
  align-items: flex-start;
}

.align-items-center .row {
  align-items: center;
}

.align-items-bottom .row {
  align-items: flex-end;
}

.align-text-left .row {
  text-align: left;
}

.align-text-center .row {
  text-align: center;
}

.align-text-right .row {
  text-align: right;
}

#page-header {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 99;
}
#page-header.fixed {
  position: fixed;
}
#page-header img {
  display: block;
}
#page-header #header-top {
  background: #222;
}
#page-header #header-center {
  padding-top: 12px;
  padding-bottom: 12px;
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
#page-header #header-center .logo-header {
  width: 250px;
  display: block;
  transition: width 0.5s ease-in-out;
}
#page-header #header-bottom {
  background: #444;
}
#page-header.scrolled #header-center {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.05);
}
#page-header.scrolled #header-center .logo-header {
  width: 100px;
}

#page-footer {
  padding-top: 108px;
}
#page-footer .whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}
#page-footer .whatsapp-btn a {
  background-color: #52ce5f;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  text-decoration: none;
  background-image: url("../images/whatsapp.png");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
#page-footer .whatsapp-btn a:hover {
  background-color: #36873c;
  opacity: 1;
}
#page-footer #top-footer {
  padding-top: 96px;
  padding-bottom: 72px;
  position: relative;
}
#page-footer #top-footer .container {
  position: relative;
}
#page-footer #top-footer .container::before {
  content: "";
  width: calc(100% + 160px);
  height: calc(100% + 160px);
  background: #eee;
  left: -80px;
  top: -80px;
  z-index: -1;
  border-radius: 50px 50px 0 0;
  position: absolute;
}
#page-footer #top-footer .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
#page-footer #top-footer .wpcf7-form p {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 12px;
  display: block;
  box-sizing: border-box;
  margin: 0;
}
#page-footer #top-footer .wpcf7-form p:last-of-type, #page-footer #top-footer .wpcf7-form p:nth-child(6) {
  flex: 0 0 100%;
  max-width: 100%;
}
#page-footer #top-footer h3 {
  margin-top: 0;
  margin-bottom: 24px;
}
#page-footer #top-footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#page-footer #top-footer .footer-item p:last-of-type {
  margin-bottom: 0;
}
#page-footer #bottom-footer {
  position: relative;
}
#page-footer #bottom-footer .container {
  position: relative;
}
#page-footer #bottom-footer .container::before {
  content: "";
  width: calc(100% + 160px);
  height: 100%;
  background: #eee;
  left: -80px;
  top: 0;
  z-index: -1;
  position: absolute;
}

.button,
.wpcf7-submit {
  display: inline-block;
  padding: 0px 24px;
  text-decoration: none;
  line-height: 50px;
  border-radius: 25px;
  font-weight: normal;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  transition: box-shadow 0.1s ease-in-out, margin 0.1s ease-in-out, background 0.1s ease-in-out;
  color: #fff;
  background: #D9072D;
  box-shadow: 0 5px 0 #8C041D;
}
.button:hover,
.wpcf7-submit:hover {
  margin-bottom: -2px;
  margin-top: 2px;
}
.button:focus,
.wpcf7-submit:focus {
  margin-bottom: -4px;
  margin-top: 4px;
}
.button:hover,
.wpcf7-submit:hover {
  box-shadow: 0 3px 0 #8C041D;
  background: #cf072b;
  color: #fff;
}
.button:focus,
.wpcf7-submit:focus {
  box-shadow: 0 1px 0 #8C041D;
  background: #c00628;
  color: #fff;
}

.button.secondary {
  color: #1D3240;
  background: #fff;
  box-shadow: 0 5px 0 #8C041D;
}
.button.secondary:hover {
  box-shadow: 0 3px 0 #8C041D;
  background: #fafafa;
  color: #1D3240;
}
.button.secondary:focus {
  box-shadow: 0 1px 0 #8C041D;
  background: #f2f2f2;
  color: #1D3240;
}

.social-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.social-links li a {
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  text-decoration: none;
  font-size: 0;
}
.social-links li a:hover {
  background: #999;
}
.social-links li a svg {
  max-height: 60%;
  max-width: 60%;
}
.social-links li a svg path {
  fill: #222;
}

input:not([type=submit]),
textarea,
select,
.select2-container--default .select2-selection--single {
  border: 0;
  background: #fff;
  color: #1D3240;
  padding: 0 24px;
  height: 50px;
  line-height: 50px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
}
input:not([type=submit]):focus,
textarea:focus,
select:focus,
.select2-container--default .select2-selection--single:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
input:not([type=submit])[type=number],
textarea[type=number],
select[type=number],
.select2-container--default .select2-selection--single[type=number] {
  padding-right: 0;
  width: 50px;
}
input:not([type=submit])[type=radio],
textarea[type=radio],
select[type=radio],
.select2-container--default .select2-selection--single[type=radio] {
  display: inline-block;
}

textarea {
  height: 200px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  display: block;
}

.mail-header,
.phone-header {
  display: flex;
  height: 40px;
  color: #000;
  align-items: center;
  background: #eee;
  padding-left: 10px;
  padding-right: 10px;
  color: #1D3240;
}
.mail-header:hover,
.phone-header:hover {
  background: #999;
  color: #1D3240;
}
.mail-header svg,
.phone-header svg {
  height: 20px;
  margin: 10px 10px 10px 0;
  display: inline-block;
}

section[id*=content-].align-right .row {
  flex-direction: row-reverse;
}
section[id*=content-].align-center .row {
  justify-content: center;
}
section[id*=content-] ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #1D3240;
  line-height: 2;
  font-weight: 400;
}
section[id*=content-] ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/check.png);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 12px;
}

.section-cards article {
  display: flex;
}
.section-cards article a {
  text-decoration: none;
  color: #1D3240;
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.section-cards article a h2,
.section-cards article a h3,
.section-cards article a h4 {
  margin-bottom: 0;
  margin-top: 24px;
  color: #1D3240;
}
.section-cards article a p {
  flex: 1;
}
.section-cards article a:hover b {
  color: #8C041D;
}

section[id*=services-] .col-4 a {
  display: flex;
  align-items: center;
  color: #1D3240;
}
section[id*=services-] .col-4 a:hover .icon {
  box-shadow: 0 3px 0 #eee;
  bottom: -2px;
}
section[id*=services-] .col-4 a:active .icon {
  box-shadow: 0 1px 0 #eee;
  bottom: -4px;
}
section[id*=services-] .col-4 a .icon {
  width: 80px;
  height: 80px;
  transition: box-shadow 0.1s ease-in-out, bottom 0.1s ease-in-out;
  box-shadow: 0 5px 0 #eee;
  bottom: 0;
  position: relative;
  background: #1D3240;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
section[id*=services-] .col-4 a .icon img {
  width: 50%;
}
section[id*=services-] .col-4 a p {
  margin: 0;
}
section[id*=services-] .col-4 a h2 {
  margin: 0;
}

section[id*=header-] {
  position: relative;
}
section[id*=header-]::before {
  content: "";
  width: 100vw;
  height: 480px;
  position: absolute;
  border-radius: 240px;
  background: #D9072D;
  left: 50%;
  bottom: -100px;
  transform: rotate(-22deg);
  transform-origin: top left;
}

section[id*=usp-] {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  margin-top: 200px;
  margin-bottom: 200px;
}
section[id*=usp-]::before {
  content: "";
  width: 200vw;
  height: 100%;
  position: absolute;
  border-radius: 999px;
  background: #1D3240;
  right: -100px;
  top: -275px;
  transform: rotate(-15deg);
  transform-origin: bottom right;
  z-index: -1;
}
section[id*=usp-] .col-4 {
  color: #fff;
  display: flex;
  margin-top: 24px;
  margin-bottom: 24px;
}
section[id*=usp-] .col-4 .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-right: 12px;
}
section[id*=usp-] .col-4 .icon svg {
  width: 50%;
}
section[id*=usp-] .col-4 h1,
section[id*=usp-] .col-4 h2,
section[id*=usp-] .col-4 h3,
section[id*=usp-] .col-4 h4,
section[id*=usp-] .col-4 h5,
section[id*=usp-] .col-4 h6 {
  color: #fff;
}
section[id*=usp-] .col-4 h2 {
  font-size: 25px;
}

section[id*=cases-] {
  position: relative;
}
section[id*=cases-] .slide {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  align-items: center;
  justify-content: space-between;
}
section[id*=cases-] .slide .col-5 {
  position: relative;
  bottom: -300px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
}
section[id*=cases-] .slide .col-6 {
  position: relative;
  top: -300px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}
section[id*=cases-] .slide .col-6 .image-container img {
  -o-object-fit: contain;
     object-fit: contain;
}
section[id*=cases-] .slide.slick-active .col-5 {
  bottom: 0;
  opacity: 1;
}
section[id*=cases-] .slide.slick-active .col-6 {
  top: 0;
  opacity: 1;
}
section[id*=cases-] .slick-prev,
section[id*=cases-] .slick-next {
  position: absolute;
  top: calc(50% - 9px);
  left: -100px;
  font-size: 0;
  background: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: padding 0.1s ease-in-out;
}
section[id*=cases-] .slick-prev::before,
section[id*=cases-] .slick-next::before {
  content: "";
  height: 7px;
  width: 30px;
  background: #1D3240;
  border-radius: 5px;
  display: block;
  box-shadow: 0 5px 0 #eee;
  transform: rotate(-22deg);
  margin-bottom: 2px;
  transition: box-shadow 0.1s ease-in-out;
}
section[id*=cases-] .slick-prev::after,
section[id*=cases-] .slick-next::after {
  content: "";
  height: 7px;
  width: 30px;
  background: #1D3240;
  border-radius: 5px;
  display: block;
  box-shadow: 0 5px 0 #eee;
  transform: rotate(22deg);
  transition: box-shadow 0.1s ease-in-out;
}
section[id*=cases-] .slick-prev:hover,
section[id*=cases-] .slick-next:hover {
  padding-top: 2px;
}
section[id*=cases-] .slick-prev:hover::before, section[id*=cases-] .slick-prev:hover::after,
section[id*=cases-] .slick-next:hover::before,
section[id*=cases-] .slick-next:hover::after {
  box-shadow: 0 3px 0 #eee;
}
section[id*=cases-] .slick-prev:active,
section[id*=cases-] .slick-next:active {
  padding-top: 4px;
}
section[id*=cases-] .slick-prev:active::before, section[id*=cases-] .slick-prev:active::after,
section[id*=cases-] .slick-next:active::before,
section[id*=cases-] .slick-next:active::after {
  box-shadow: 0 1px 0 #eee;
}
section[id*=cases-] .slick-next {
  left: auto;
  right: -100px;
}
section[id*=cases-] .slick-next::before {
  transform: rotate(22deg);
}
section[id*=cases-] .slick-next::after {
  transform: rotate(-22deg);
}

section[id*=cta-] {
  position: relative;
  margin-top: 108px;
  margin-bottom: 108px;
}
section[id*=cta-] .container {
  position: relative;
}
section[id*=cta-] .container::before {
  content: "";
  width: calc(100% + 160px);
  height: calc(100% + 160px);
  background: #eee;
  left: -80px;
  top: -80px;
  z-index: -1;
  border-radius: 50px;
  position: absolute;
}
section[id*=cta-] .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
section[id*=cta-] .wpcf7-form p {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 12px;
  display: block;
  box-sizing: border-box;
  margin: 0;
}

section[id*=slide-] .services-slider {
  display: flex;
  flex-wrap: wrap;
}
section[id*=slide-] .services-slider p {
  margin: 0;
  font-size: 110px;
  white-space: nowrap;
  display: block;
  line-height: 140px;
  padding: 0 0 0 24px;
}
section[id*=slide-] .services-slider .line {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  height: 140px;
}
section[id*=slide-] .services-slider .line .inner {
  position: absolute;
  top: 0;
  display: flex;
}
section[id*=slide-] .services-slider .line.line-1 .inner {
  left: -100vw;
}
section[id*=slide-] .services-slider .line.line-2 .inner {
  right: -100vw;
}

section[id*=laptop-] .laptop {
  background: #eee;
  padding: 50px 24px 50px 24px;
  border-radius: 20px 20px 2px 2px;
  position: relative;
}
section[id*=laptop-] .laptop::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #BFBFBF;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: calc(50% - 8px);
  top: 18px;
}
section[id*=laptop-] .laptop::after {
  content: "";
  width: 106.5%;
  height: 84px;
  background: url(../images/laptop.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: -2.7%;
  top: 100%;
}
section[id*=laptop-] .laptop .laptop-contents {
  width: 100%;
  height: 600px;
  overflow-y: scroll;
}
section[id*=laptop-] .laptop .laptop-contents img {
  width: 100%;
  height: auto;
}

@media (max-width: 1400px) {
  .container,
  .container-xxl {
    max-width: 1140px;
  }
  section[id*=usp-]::before {
    top: -235px;
    right: -200px;
  }
}
@media (max-width: 1200px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 960px;
  }
  body {
    font-size: 16px;
  }
  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  h3,
  .h3 {
    font-size: 25px;
  }
  h4,
  .h4 {
    font-size: 22px;
  }
  h5,
  .h5 {
    font-size: 20px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
  #page-header #header-top .menu li a,
  #page-header #header-center .menu li a,
  #page-header #header-bottom .menu li a {
    padding: 0 16px;
  }
  section[id*=services-] .col-4 a .icon {
    width: 60px;
    height: 60px;
  }
  section[id*=slide-] .services-slider p {
    font-size: 80px;
  }
  section[id*=slide-] .services-slider .line {
    height: 110px;
  }
}
@media (max-width: 992px) {
  .container,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 720px;
  }
  section[id*=slide-] .services-slider p {
    font-size: 60px;
  }
  section[id*=slide-] .services-slider .line {
    height: 90px;
  }
}
@media (max-width: 768px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 540px;
  }
  section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-2-4,
  div.woocommerce[class*=columns-] ul.products.columns-4 li.product {
    flex: 0 0 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 100%;
  }
  body {
    font-size: 14px;
  }
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 25px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  h6,
  .h6 {
    font-size: 15px;
  }
  #page-container {
    padding-top: 60px;
  }
  #page-header.fixed {
    position: absolute;
  }
  #page-header.scrolled #header-center {
    background: transparent;
    -webkit-backdrop-filter: initial;
            backdrop-filter: initial;
    box-shadow: none;
  }
  #page-header.scrolled #header-center .logo-header {
    width: 150px;
  }
  #page-header #header-center .logo-header {
    width: 150px;
  }
  #page-header #header-center .menu-main-container {
    display: none;
  }
  #page-footer .whatsapp-btn {
    bottom: 70px;
    transition: bottom 0.5s ease-in-out;
  }
  #page-footer .whatsapp-btn.scroll-down {
    bottom: 20px;
  }
  #page-footer .footer-item {
    margin: 24px 0;
  }
  #page-footer .footer-item:first-of-type {
    margin-top: 0;
  }
  #page-footer .footer-item:last-of-type {
    margin-bottom: 0;
  }
  #page-footer #top-footer {
    padding-bottom: 50px;
  }
  #page-footer #top-footer .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0;
  }
  #page-footer #bottom-footer {
    padding-bottom: 50px;
  }
  .button,
  .wpcf7-submit {
    padding: 0 16px;
    line-height: 40px;
  }
  section[id*=usp-] {
    padding-top: 0px;
    padding-bottom: 170px;
    margin-top: 200px;
    margin-bottom: 0px;
  }
  section[id*=usp-]::before {
    right: -1000px;
    width: 3000px;
    top: -440px;
    border-radius: 0;
  }
  section[id*=slide-] .services-slider p {
    font-size: 40px;
  }
  section[id*=slide-] .services-slider .line {
    height: 70px;
  }
  #mobile-menu {
    display: block;
  }
}
@media (max-width: 576px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 100%;
  }
  #page-footer #top-footer .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #page-footer #top-footer .wpcf7-form p {
    flex: 0 0 100%;
    max-width: 100%;
  }
  section[id*=cta-] .wpcf7-form p {
    flex: 0 0 100%;
    max-width: 100%;
  }
  section[id*=header-]::before {
    width: 180vw;
    height: 230px;
    left: 12px;
    bottom: -30px;
  }
}