@charset "UTF-8";
/*!
Theme Name: Genesis Boilerplate
Author: Roman A (Kite Hickmann)
Version: 1.1.1
Template: genesis
*/
@import "modules/bootstrap-grid.min.css";
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 50% 100%;
  font-style: normal;
}
/* latin-ext */
@font-face {
  font-family: "Teko";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/teko/v20/LYjNdG7kmE0gfa19pRtB.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Teko";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/teko/v20/LYjNdG7kmE0gfaN9pQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufD5qW54A.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufN5qU.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.site-header {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  padding: 20px 0;
  transition: all 0.2s;
  z-index: 99;
}
.site-header .container-fluid {
  max-width: calc(100% - 400px);
}
@media (max-width: 1200px) {
  .site-header .container-fluid {
    max-width: 100%;
  }
}
.site-header .open-mobile-menu {
  display: inline-block;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 32px;
}
.site-header.scroll {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(30px) saturate(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.site-header.scroll .open-mobile-menu {
  color: #000;
}
.site-header.scroll .logo a img {
  filter: brightness(0);
}
.site-header.scroll .main-nav li a {
  color: #000;
}
@media (max-width: 1200px) {
  .site-header.scroll .main-nav li a {
    color: #fff;
  }
}
.site-header.scroll .main-nav li.menu-button a {
  color: #fff;
}
.site-header.scroll .main-nav li.menu-button:hover a {
  color: #FF3B3B;
}
.site-header.scroll .main-nav li:hover a {
  color: #FF3B3B;
}
.site-header.scroll .main-nav li.current-menu-item a {
  color: #FF3B3B;
}

body.admin-bar .site-header {
  top: 32px;
}

.main-nav {
  position: relative;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main-nav .close-menu {
  display: none;
}
@media (max-width: 1200px) {
  .main-nav {
    display: block;
    position: fixed;
    width: 80%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #FF3B3B;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0);
    padding-top: 60px;
    transition: all 0.2s;
    transform: translateX(100%);
    z-index: 99;
  }
  .main-nav.show {
    transform: translateX(0%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  .main-nav::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #FF3B3B;
  }
  .main-nav .close-menu {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 32px;
    border: none;
    padding: 0;
    background-color: transparent;
  }
}
.main-nav li {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}
.main-nav li.current-menu-item a {
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  .main-nav li.current-menu-item a {
    color: #fff !important;
  }
}
@media (max-width: 1200px) {
  .main-nav li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.main-nav li:first-child {
  margin-left: 0;
}
@media (max-width: 1200px) {
  .main-nav li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.main-nav li a {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  line-height: 24px;
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  .main-nav li a {
    display: block;
    position: relative;
    text-align: right;
    font-weight: 300;
    padding: 10px;
  }
}
.main-nav li.menu-button {
  display: inline-block;
}
@media (max-width: 1200px) {
  .main-nav li.menu-button {
    display: block;
  }
}
.main-nav li.menu-button a {
  background-color: #FF3B3B;
  padding: 15px 80px 12px 80px;
}
@media (max-width: 1200px) {
  .main-nav li.menu-button a {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.main-nav li.menu-button:hover a {
  color: #FF3B3B;
  background-color: #fff;
}
.main-nav li.menu-item-has-children {
  position: relative;
}
@media (max-width: 1200px) {
  .main-nav li.menu-item-has-children::before {
    content: "◢";
    display: inline-block;
    position: absolute;
    font-size: 12px;
    color: #fff;
    top: 10px;
    left: 20px;
    transform: rotate(45deg);
  }
  .main-nav li.menu-item-has-children a {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
}
.main-nav li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  width: 200px;
  height: auto;
  background-color: #fff;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 100;
}
.main-nav li.menu-item-has-children .sub-menu li {
  display: block;
  position: relative;
  margin: 0;
}
.main-nav li.menu-item-has-children .sub-menu li a {
  color: #FF3B3B;
  font-size: 20px;
  padding: 10px 15px;
}
@media (max-width: 1200px) {
  .main-nav li.menu-item-has-children .sub-menu li a {
    color: #fff;
  }
}
.main-nav li.menu-item-has-children .sub-menu li:hover {
  background-color: #FF3B3B;
}
.main-nav li.menu-item-has-children .sub-menu li:hover a {
  color: #fff;
}
@media (max-width: 1200px) {
  .main-nav li.menu-item-has-children .sub-menu {
    display: none;
    position: relative;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.main-nav li:hover a {
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  .main-nav li:hover a {
    color: #fff !important;
    background-color: transparent;
  }
}
.main-nav li:hover.menu-item-has-children .sub-menu {
  display: block;
}

body:not(.page-template-frontpage),
body:not(.page-template-page-about) {
  position: relative;
}
body:not(.page-template-frontpage) .internal-hero-image,
body:not(.page-template-page-about) .internal-hero-image {
  display: block;
  position: relative;
  min-height: 300px;
  background: url("../images/default-bg.jpg") no-repeat center 25%;
  background-size: cover;
}
body:not(.page-template-frontpage) .internal-hero-image .container,
body:not(.page-template-page-about) .internal-hero-image .container {
  position: relative;
  padding: 250px 0 200px;
  z-index: 2;
}
@media (max-width: 1200px) {
  body:not(.page-template-frontpage) .internal-hero-image .container,
  body:not(.page-template-page-about) .internal-hero-image .container {
    padding: 100px 0 50px;
  }
}
body:not(.page-template-frontpage) .internal-hero-image .container h1,
body:not(.page-template-page-about) .internal-hero-image .container h1 {
  font-family: "Teko", sans-serif;
  font-size: 120px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
}
@media (max-width: 1200px) {
  body:not(.page-template-frontpage) .internal-hero-image .container h1,
  body:not(.page-template-page-about) .internal-hero-image .container h1 {
    font-size: 52px;
  }
}
body:not(.page-template-frontpage) .internal-hero-image.get-layer,
body:not(.page-template-page-about) .internal-hero-image.get-layer {
  position: relative;
}
body:not(.page-template-frontpage) .internal-hero-image.get-layer::before,
body:not(.page-template-page-about) .internal-hero-image.get-layer::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
body:not(.page-template-frontpage) .main-post-content,
body:not(.page-template-page-about) .main-post-content {
  position: relative;
}
body:not(.page-template-frontpage) .main-post-content h2,
body:not(.page-template-page-about) .main-post-content h2 {
  font-family: "Teko", sans-serif;
  font-size: 42px;
  color: #FF3B3B;
}
body:not(.page-template-frontpage) .main-post-content h3,
body:not(.page-template-page-about) .main-post-content h3 {
  font-family: "Roboto Slab", serif;
  font-size: 28px;
}
body:not(.page-template-frontpage) .main-post-content p,
body:not(.page-template-page-about) .main-post-content p {
  font-size: 18px;
  font-weight: 400;
}

aside.sidebar {
  position: relative;
  width: 100%;
}
aside.sidebar .custom-widget {
  position: relative;
  display: block;
}
aside.sidebar .custom-widget .widget-title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item {
  display: block;
  text-decoration: none;
  padding: 15px 20px;
  background-color: #F1F1F1;
  margin-bottom: 10px;
  transition: all 0.2s;
  color: #000;
  font-weight: 500;
}
aside.sidebar .custom-widget .recent-posts-item .divider {
  display: block;
  margin: 6px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
aside.sidebar .custom-widget .recent-posts-item .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
aside.sidebar .custom-widget .recent-posts-item .meta .date {
  font-size: 13px;
  font-weight: 400;
}
aside.sidebar .custom-widget .recent-posts-item .meta .date .author {
  font-weight: 600;
  color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item:hover {
  color: #fff;
  background-color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item:hover .meta .date .author {
  color: #fff;
}
aside.sidebar .custom-widget .additional-service-item {
  position: relative;
  display: block;
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000;
  font-family: "Roboto Slab", serif;
  transition: all 0.2s;
  padding-left: 25px;
}
aside.sidebar .custom-widget .additional-service-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  border: 1px solid #FF3B3B;
  background-color: #FF3B3B;
  box-shadow: inset 0 0 0 2px #fff;
  top: 5px;
  left: 5px;
  z-index: 1;
}
aside.sidebar .custom-widget .additional-service-item:hover {
  color: #FF3B3B;
}
aside.sidebar .custom-widget .cta-sidebar-btn {
  display: block;
  position: relative;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  padding: 20px 20px 13px 20px;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(90deg, #FF3B3B, #ff8600);
  text-decoration: none;
  transition: all 0.2s;
}
aside.sidebar .custom-widget .cta-sidebar-btn span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
aside.sidebar .custom-widget .cta-sidebar-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s;
  opacity: 0;
  z-index: 1;
}
aside.sidebar .custom-widget .cta-sidebar-btn:hover::before {
  opacity: 0.9;
  width: calc(100% - 6px);
}
aside.sidebar .custom-widget .cta-sidebar-btn:hover span {
  color: #FF3B3B;
}

.site-footer {
  position: relative;
  padding: 0;
  background-color: #000;
  color: #fff;
}
.site-footer .logo {
  position: relative;
  display: block;
}
.site-footer .logo a {
  display: inline-block;
}
.site-footer .under-logo-desc {
  font-size: 14px;
}
.site-footer .phone-number {
  display: block;
  position: relative;
}
.site-footer .phone-number a {
  display: inline-block;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #FF3B3B;
  text-decoration: none;
  transition: all 0.2s;
}
.site-footer .phone-number a:hover {
  color: #fff;
}
.site-footer .footer-menu-title {
  display: block;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 20px;
}
.site-footer .footer-menu {
  display: block;
  position: relative;
}
.site-footer .footer-menu .footer-menu-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.site-footer .footer-menu .footer-menu-list li {
  display: block;
  position: relative;
  margin: 10px 0;
}
.site-footer .footer-menu .footer-menu-list li .sub-menu {
  display: none;
}
.site-footer .footer-menu .footer-menu-list li a {
  color: #858585;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 14px;
}
.site-footer .footer-menu .footer-menu-list li a:hover {
  color: #fff;
}
.site-footer .divider {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.site-footer .copyright {
  color: #858585;
  font-size: 12px;
}
.site-footer .copyright .site-name {
  text-transform: uppercase;
}
.site-footer .subscribe-form {
  display: block;
  position: relative;
}
.site-footer .subscribe-form .form-control-input {
  display: block;
  position: relative;
}
.site-footer .subscribe-form .form-control-input input {
  width: 100%;
  border: none;
  background-color: #242424;
  padding: 10px 60px 10px 15px;
  color: #fff;
}
.site-footer .subscribe-form .form-control-input .submit-form {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #FF3B3B;
  transition: all 0.2s;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
}
.site-footer .subscribe-form .form-control-input .submit-form svg {
  width: 16px;
  height: 16px;
}
.site-footer .subscribe-form .form-control-input .submit-form svg path {
  fill: #fff;
  transition: all 0.2s;
}
.site-footer .subscribe-form .form-control-input .submit-form:hover {
  background-color: #fff;
}
.site-footer .subscribe-form .form-control-input .submit-form:hover svg path {
  fill: #FF3B3B;
}
.site-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.site-footer .social-links li {
  display: inline-block;
  margin-right: 25px;
}
.site-footer .social-links li:last-child {
  margin-right: 0;
}
.site-footer .social-links li a {
  display: inline-block;
}
.site-footer .social-links li a svg {
  width: 24px;
  height: 24px;
}
.site-footer .social-links li a svg path {
  transition: all 0.2s;
}
.site-footer .social-links li a:hover svg path {
  fill: #FF3B3B;
}

.wpcf7-form {
  position: relative;
}
.wpcf7-form label {
  display: block;
}
.wpcf7-form .wpcf7-form-control {
  width: 100%;
  border: none;
  border-bottom: 4px solid #FF3B3B;
  padding: 10px 20px;
  outline: none;
  margin-bottom: 10px;
  background-color: #F1F1F1;
}
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  resize: none;
}
.wpcf7-form button[type=submit] {
  display: inline-block;
  background-color: #FF3B3B;
  border: none;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  transition: all 0.2s;
  padding: 15px 50px;
}
.wpcf7-form button[type=submit]:hover {
  background-color: #000;
}

.post-qa-tabs {
  position: relative;
  display: block;
  margin: 30px 0;
}
.post-qa-tabs .qa-tab-item {
  position: relative;
  display: block;
  border: 1px solid #FF3B3B;
  margin-top: -1px;
}
.post-qa-tabs .qa-tab-item a {
  position: relative;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 10px 30px 10px 20px;
}
@media (max-width: 1200px) {
  .post-qa-tabs .qa-tab-item a {
    font-size: 18px;
  }
}
.post-qa-tabs .qa-tab-item a::after {
  content: "▾";
  display: inline-block;
  position: absolute;
  width: auto;
  height: auto;
  font-size: 22px;
  color: #FF3B3B;
  top: 8px;
  right: 20px;
  transition: all 0.2s;
  z-index: 1;
}
.post-qa-tabs .qa-tab-item .answer {
  display: none;
  position: relative;
  padding: 20px;
  background-color: #bd3939;
  color: #fff;
}
.post-qa-tabs .qa-tab-item .answer p:last-child {
  margin-bottom: 0;
}
.post-qa-tabs .qa-tab-item.active a {
  background-image: linear-gradient(90deg, #FF3B3B, #ff8600);
  color: #fff;
}
.post-qa-tabs .qa-tab-item.active a::after {
  color: #fff;
  transform: rotate(180deg);
}
.post-qa-tabs .qa-tab-item.active .answer {
  display: block;
}

aside.sidebar {
  position: relative;
  width: 100%;
}
aside.sidebar .custom-widget {
  position: relative;
  display: block;
}
aside.sidebar .custom-widget .widget-title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item {
  display: block;
  text-decoration: none;
  padding: 15px 20px;
  background-color: #F1F1F1;
  margin-bottom: 10px;
  transition: all 0.2s;
  color: #000;
  font-weight: 500;
}
aside.sidebar .custom-widget .recent-posts-item .divider {
  display: block;
  margin: 6px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
aside.sidebar .custom-widget .recent-posts-item .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
aside.sidebar .custom-widget .recent-posts-item .meta .date {
  font-size: 13px;
  font-weight: 400;
}
aside.sidebar .custom-widget .recent-posts-item .meta .date .author {
  font-weight: 600;
  color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item:hover {
  color: #fff;
  background-color: #FF3B3B;
}
aside.sidebar .custom-widget .recent-posts-item:hover .meta .date .author {
  color: #fff;
}
aside.sidebar .custom-widget .additional-service-item {
  position: relative;
  display: block;
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000;
  font-family: "Roboto Slab", serif;
  transition: all 0.2s;
  padding-left: 25px;
}
aside.sidebar .custom-widget .additional-service-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  border: 1px solid #FF3B3B;
  background-color: #FF3B3B;
  box-shadow: inset 0 0 0 2px #fff;
  top: 5px;
  left: 5px;
  z-index: 1;
}
aside.sidebar .custom-widget .additional-service-item:hover {
  color: #FF3B3B;
}
aside.sidebar .custom-widget .cta-sidebar-btn {
  display: block;
  position: relative;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  padding: 20px 20px 13px 20px;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(90deg, #FF3B3B, #ff8600);
  text-decoration: none;
  transition: all 0.2s;
}
aside.sidebar .custom-widget .cta-sidebar-btn span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
aside.sidebar .custom-widget .cta-sidebar-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s;
  opacity: 0;
  z-index: 1;
}
aside.sidebar .custom-widget .cta-sidebar-btn:hover::before {
  opacity: 0.9;
  width: calc(100% - 6px);
}
aside.sidebar .custom-widget .cta-sidebar-btn:hover span {
  color: #FF3B3B;
}

body.page-template-frontpage {
  position: relative;
}
body.page-template-frontpage .internal-hero-image {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image {
    background-position: 80% bottom !important;
  }
  body.page-template-frontpage .internal-hero-image::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
body.page-template-frontpage .internal-hero-image .container {
  position: relative;
  padding: 180px 0 100px;
  z-index: 10;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .container {
    padding: 100px 0 40px;
  }
}
body.page-template-frontpage .internal-hero-image .container .d-logo {
  position: relative;
}
body.page-template-frontpage .internal-hero-image .container .d-logo .d-logo-image {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}
body.page-template-frontpage .internal-hero-image .container .d-logo::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 60px);
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 50%;
  z-index: 1;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .container .d-logo::before {
    width: calc(50% - 40px);
  }
}
body.page-template-frontpage .internal-hero-image .container .d-logo::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 35px);
  height: 1px;
  background-color: #fff;
  right: 20px;
  top: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
  body.page-template-frontpage .internal-hero-image .container .d-logo::after {
    width: calc(50% - 40px);
    right: 0;
  }
}
body.page-template-frontpage .internal-hero-image .container h1 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 130px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  word-spacing: 10px;
}
body.page-template-frontpage .internal-hero-image .container h1 span {
  position: relative;
  display: block;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 60px;
  left: -8px;
}
@media screen and (max-width: 1300px) {
  body.page-template-frontpage .internal-hero-image .container h1 span {
    font-size: 135px;
    left: auto;
  }
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .container h1 span {
    font-size: 80px;
    line-height: 70px;
  }
}
@media screen and (max-width: 1300px) {
  body.page-template-frontpage .internal-hero-image .container h1 {
    font-size: 72px;
  }
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .container h1 {
    font-size: 42px;
    text-align: center;
    word-spacing: 10px;
  }
}
body.page-template-frontpage .internal-hero-image .container .description {
  display: inline-block;
  font-family: "Roboto Slab", serif;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  word-spacing: normal;
  text-transform: capitalize;
  line-height: 30px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .container .description {
    text-align: center;
  }
}
body.page-template-frontpage .internal-hero-image .blured-section {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px) saturate(1.2);
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .blured-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
body.page-template-frontpage .internal-hero-image .blured-section .b-subtitle {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  letter-spacing: 1px;
}
body.page-template-frontpage .internal-hero-image .blured-section .b-title {
  font-family: "Teko", sans-serif;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  body.page-template-frontpage .internal-hero-image .blured-section .b-title {
    font-size: 42px;
    line-height: 52px;
  }
}
body.page-template-frontpage .devices {
  position: relative;
}
body.page-template-frontpage .devices .title {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #FF3B3B;
  font-size: 52px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .devices .title {
    font-size: 36px;
  }
}
body.page-template-frontpage .devices .devices-image {
  display: block;
}
body.page-template-frontpage .devices .devices-image img {
  width: 100%;
  height: auto;
}
body.page-template-frontpage .devices .text {
  position: relative;
  font-size: 22px;
  line-height: 38px;
}
body.page-template-frontpage .devices .text::before {
  content: "";
  width: 80%;
  height: 5px;
  background-color: #FF3B3B;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 1;
}
body.page-template-frontpage .tabs {
  position: relative;
}
body.page-template-frontpage .tabs .tabs-titles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
body.page-template-frontpage .tabs .tabs-titles a {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background-color: #F1F1F1;
  border-bottom: 5px solid #FF3B3B;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 992px) {
  body.page-template-frontpage .tabs .tabs-titles a {
    width: 100%;
    text-align: center;
  }
}
body.page-template-frontpage .tabs .tabs-titles a:hover {
  background-color: #fff;
}
body.page-template-frontpage .tabs .tabs-titles a.active {
  background-color: #FF3B3B;
  color: #fff;
}
body.page-template-frontpage .tabs .tabs-titles a.active::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #FF3B3B;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 8px);
  transform: rotate(45deg);
  z-index: -1;
}
@media (max-width: 992px) {
  body.page-template-frontpage .tabs .tabs-titles a.active::after {
    display: none;
  }
}
body.page-template-frontpage .tabs .tabs-content {
  background-color: #F1F1F1;
  margin-top: 12px;
}
body.page-template-frontpage .tabs .tabs-content .tab-content-item {
  display: none;
}
body.page-template-frontpage .tabs .tabs-content .tab-content-item.active {
  display: block;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
body.page-template-frontpage .trusted-by {
  position: relative;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .trusted-by {
    margin-bottom: 0 !important;
  }
}
body.page-template-frontpage .trusted-by .title {
  position: relative;
  font-family: "Roboto Slab", serif;
  font-size: 36px;
  text-transform: uppercase;
}
body.page-template-frontpage .trusted-by .title span {
  color: #FF3B3B;
}
body.page-template-frontpage .trusted-by .card-item {
  position: relative;
  background-color: #F1F1F1;
  border-radius: 15px;
}
body.page-template-frontpage .trusted-by .card-item .card-title {
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
body.page-template-frontpage .trusted-by .card-item p {
  font-size: 20px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .trusted-by .card-item {
    padding: 20px 15px !important;
  }
}
body.page-template-frontpage .video-player {
  position: relative;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .video-player {
    padding: 30px;
  }
}
body.page-template-frontpage .video-player .player-container {
  display: inline-block;
  position: relative;
  border-radius: 15px;
  width: 716px;
  height: 402px;
}
@media (max-width: 992px) {
  body.page-template-frontpage .video-player .player-container {
    width: 100%;
    height: auto;
  }
  body.page-template-frontpage .video-player .player-container picture {
    display: block;
  }
  body.page-template-frontpage .video-player .player-container picture img {
    width: 100%;
    height: auto;
  }
}
body.page-template-frontpage .video-player iframe {
  border-radius: 20px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .video-player iframe {
    width: 100%;
  }
}
body.page-template-frontpage .badges-slider {
  position: relative;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .badges-slider {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
body.page-template-frontpage .badges-slider .swiper-slide {
  position: relative;
}
body.page-template-frontpage .badges-slider .swiper-slide img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.2s;
}
body.page-template-frontpage .badges-slider .swiper-slide img:hover {
  filter: grayscale(0%);
}
body.page-template-frontpage .marketing-solutions {
  position: relative;
  background: url("../images/ms-bg.jpg") no-repeat center;
  background-size: cover;
}
body.page-template-frontpage .marketing-solutions .container {
  position: relative;
  z-index: 10;
}
body.page-template-frontpage .marketing-solutions .container .subtitle {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 32px;
  color: #000;
  text-transform: uppercase;
  line-height: 32px;
}
body.page-template-frontpage .marketing-solutions .container .title {
  font-family: "Roboto Slab", serif;
  font-size: 48px;
  font-weight: 600;
  color: #FF3B3B;
  text-transform: uppercase;
}
body.page-template-frontpage .marketing-solutions .container .ms-ard {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  transition: all 0.2s;
}
body.page-template-frontpage .marketing-solutions .container .ms-ard .ms-card-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 1;
}
body.page-template-frontpage .marketing-solutions .container .ms-ard .ms-card-inner .ms-card-content {
  position: relative;
}
body.page-template-frontpage .marketing-solutions .container .ms-ard .ms-card-inner .ms-card-content span {
  color: #000;
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.2s;
}
body.page-template-frontpage .marketing-solutions .container .ms-ard:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
body.page-template-frontpage .marketing-solutions .container .ms-ard:hover .ms-card-inner .ms-card-content span {
  color: #FF3B3B;
}
body.page-template-frontpage .about-us {
  position: relative;
}
body.page-template-frontpage .about-us .image {
  position: relative;
}
body.page-template-frontpage .about-us .image .matt-photo {
  display: block;
  width: 100%;
}
body.page-template-frontpage .about-us .image .matt-photo img {
  width: 100%;
  height: auto;
}
body.page-template-frontpage .about-us .image .cta-btn {
  display: inline-block;
  position: absolute;
  left: -30%;
  bottom: 50px;
  z-index: 1;
}
@media (max-width: 992px) {
  body.page-template-frontpage .about-us .image .cta-btn {
    left: 30px;
    width: calc(100% - 60px);
  }
}
body.page-template-frontpage .about-us .image .cta-btn a {
  background-color: rgba(255, 59, 59, 0.4);
  color: #fff;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px) saturate(1.2);
}
body.page-template-frontpage .about-us .image .cta-btn a:hover {
  background-color: #FF3B3B;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .about-us .image .cta-btn a {
    width: 100%;
  }
}
body.page-template-frontpage .about-us .content {
  position: relative;
}
body.page-template-frontpage .about-us .content .subtitle {
  text-transform: uppercase;
  color: #000;
  font-family: "Teko", sans-serif;
  font-size: 32px;
}
body.page-template-frontpage .about-us .content .title {
  font-family: "Roboto Slab", serif;
  font-size: 48px;
}
body.page-template-frontpage .about-us .content .title span {
  display: block;
  color: #FF3B3B;
}
body.page-template-frontpage .about-us .content .text {
  font-size: 20px;
  line-height: 38px;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .about-us .content .text br {
    display: none;
  }
}
body.page-template-frontpage .testimonials {
  position: relative;
  background: url("../images/wave-bg.svg") no-repeat center top;
  background-size: cover;
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
body.page-template-frontpage .testimonials .slider-headings {
  position: relative;
}
body.page-template-frontpage .testimonials .slider-headings .subtitle {
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 42px;
}
body.page-template-frontpage .testimonials .slider-headings .title {
  font-family: "Roboto Slab", serif;
  font-size: 52px;
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .testimonials .slider-headings .title {
    font-size: 42px;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  border-bottom: 6px solid #FF3B3B;
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container .testimonials-slider {
  width: calc(100% - 40px);
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .testimonials-slider {
    width: 100%;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-pagination {
  position: relative;
  width: 40px;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 2;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 10px 0;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF3B3B;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .slider-navs {
  position: relative;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .slider-navs .swiper-arrow {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #FF3B3B;
  border-radius: 100px;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transition: all 0.2s;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .slider-navs .swiper-arrow::after {
  font-size: 18px;
  color: #FF3B3B;
  font-weight: 600;
  transition: all 0.2s;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .slider-navs .swiper-arrow:hover {
  border-color: #000;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .slider-navs .swiper-arrow:hover::after {
  color: #000;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide {
  position: relative;
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide {
    display: block !important;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .photo {
  width: 250px;
  height: 250px;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .photo img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .photo {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    text-align: center;
  }
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .photo picture {
    display: block;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .message {
  width: calc(100% - 250px);
  position: relative;
}
@media (max-width: 992px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .message {
    width: 100%;
  }
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .message .quote-icon {
  width: 47px;
  height: 40px;
}
body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .message .text {
  width: calc(100% - 47px);
  font-size: 28px;
  line-height: 42px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  body.page-template-frontpage .testimonials .testimonials-slider-container .swiper-slide .message .text {
    font-size: 20px;
    line-height: 32px;
  }
}
body.page-template-frontpage .testimonials .get-to-know-us {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  background: url("../images/get-to-know-us-bg.jpg") no-repeat center;
  background-size: cover;
}
body.page-template-frontpage .testimonials .get-to-know-us .top {
  position: relative;
}
body.page-template-frontpage .testimonials .get-to-know-us .top span {
  display: inline-block;
  background-color: #fff;
  color: #FF3B3B;
  font-family: "Teko", sans-serif;
  font-size: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px 50px;
  text-transform: uppercase;
}
body.page-template-frontpage .testimonials .get-to-know-us .title {
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  font-size: 40px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
body.page-template-frontpage .testimonials .get-to-know-us .cta-btn {
  position: relative;
}
body.page-template-frontpage .testimonials .get-to-know-us .cta-btn a {
  font-family: "Teko", sans-serif;
  font-size: 32px;
  line-height: 25px;
  font-weight: 400;
}
body.page-template-frontpage .posts {
  position: relative;
}
body.page-template-frontpage .posts .title {
  font-family: "Roboto Slab", serif;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 600;
}
body.page-template-frontpage .posts .post-card {
  position: relative;
  display: block;
  background-color: #FAFAFA;
  transition: all 0.2s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  height: 100%;
}
body.page-template-frontpage .posts .post-card .thumb {
  position: relative;
  display: block;
}
body.page-template-frontpage .posts .post-card .thumb img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}
body.page-template-frontpage .posts .post-card .title {
  font-family: "Teko", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.2s;
  text-transform: capitalize;
}
body.page-template-frontpage .posts .post-card .author {
  display: block;
  position: relative;
  font-weight: 700;
  color: #000;
}
body.page-template-frontpage .posts .post-card .author span {
  color: #FF3B3B;
}
body.page-template-frontpage .posts .post-card:hover .title {
  color: #FF3B3B;
}
body.page-template-frontpage .footer-badges {
  position: relative;
}
body.page-template-frontpage .footer-badges .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 2;
}
body.page-template-frontpage .footer-badges .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  transition: all 0.2s;
}
body.page-template-frontpage .footer-badges .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF3B3B;
  border-radius: 10px;
  width: 40px;
}

body.page-template-page-about {
  position: relative;
}
body.page-template-page-about .internal-hero-image {
  display: block;
  position: relative;
  min-height: 300px;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 1200px) {
  body.page-template-page-about .internal-hero-image {
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
    background-position: 80% bottom !important;
  }
  body.page-template-page-about .internal-hero-image::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  body.page-template-page-about .internal-hero-image .container {
    position: relative;
    z-index: 2;
  }
}
body.page-template-page-about .internal-hero-image h1 {
  font-family: "Teko", sans-serif;
  font-size: 100px;
  line-height: 80px;
  margin-top: 80px;
}
body.page-template-page-about .internal-hero-image h1 span {
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  body.page-template-page-about .internal-hero-image h1 {
    font-size: 72px;
    line-height: 62px;
    padding: 0 20px;
  }
}
body.page-template-page-about .internal-hero-image .description {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  body.page-template-page-about .internal-hero-image .description {
    display: block;
    padding: 0 20px;
    text-align: center;
  }
}
body.page-template-page-about .about-matt {
  position: relative;
  padding: 80px 0;
}
body.page-template-page-about .about-matt .matt {
  position: relative;
  right: -150px;
  z-index: 1;
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .matt {
    right: auto;
  }
  body.page-template-page-about .about-matt .matt picture {
    display: block;
  }
  body.page-template-page-about .about-matt .matt picture img {
    width: 100%;
    height: auto;
  }
}
body.page-template-page-about .about-matt .content {
  position: relative;
  z-index: 3;
}
body.page-template-page-about .about-matt .content h2 {
  font-size: 48px;
  font-family: "Teko", sans-serif;
}
body.page-template-page-about .about-matt .content h2 span {
  display: block;
  font-size: 128px;
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .content h2 span {
    font-size: 72px;
  }
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .content h2 {
    margin-top: 30px;
  }
}
body.page-template-page-about .about-matt .content .text {
  padding: 20px 40px;
  background-color: #fff;
  font-size: 18px;
}
body.page-template-page-about .about-matt .content .text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .content .text {
    padding: 0;
  }
}
body.page-template-page-about .about-matt .contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.page-template-page-about .about-matt .contacts a {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px;
  border-radius: 100px;
  text-align: center;
  border: 2px solid #FF3B3B;
  color: #FF3B3B;
  font-family: "Teko", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 70px;
  transition: all 0.2s;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .contacts a {
    width: 100%;
    margin-right: 0;
    justify-content: center;
  }
}
body.page-template-page-about .about-matt .contacts a img {
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
}
body.page-template-page-about .about-matt .contacts a:hover {
  filter: brightness(0);
}
body.page-template-page-about .about-matt .contacts a.call {
  background-color: #FF3B3B;
  color: #fff;
  margin-right: 0;
}
body.page-template-page-about .about-matt .contacts a.call:hover {
  filter: none;
  opacity: 0.7;
}
@media (max-width: 1200px) {
  body.page-template-page-about .about-matt .contacts a.call {
    margin-top: 20px;
  }
}
body.page-template-page-about .blocks {
  position: relative;
  background: url("../images/wave-bg.svg") no-repeat center top;
  background-size: cover;
  padding: 80px 0;
}
body.page-template-page-about .blocks h2 {
  font-family: "Teko", sans-serif;
  font-size: 62px;
  text-transform: uppercase;
  color: #FF3B3B;
}
body.page-template-page-about .blocks ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body.page-template-page-about .blocks ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin: 20px 0;
}
body.page-template-page-about .blocks ul li a {
  text-decoration: none;
  color: #FF3B3B;
}
body.page-template-page-about .blocks ul li a:hover {
  opacity: 0.7;
}
body.page-template-page-about .blocks ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #FF3B3B;
  top: 7px;
  left: 14px;
  border-radius: 100px;
  border: 1px solid #FF3B3B;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 1;
}
body.page-template-page-about .today {
  position: relative;
  padding: 80px 0 0;
}
body.page-template-page-about .today h2 {
  font-family: "Teko", sans-serif;
  font-size: 120px;
  color: #FF3B3B;
  text-transform: uppercase;
}
body.page-template-page-about .today .text {
  font-size: 22px;
}
body.page-template-page-about .today .matt picture {
  display: block;
}
body.page-template-page-about .today .matt picture img {
  width: 100%;
  height: auto;
}
body.page-template-page-about .badges-slider {
  position: relative;
}
@media (max-width: 1200px) {
  body.page-template-page-about .badges-slider {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
body.page-template-page-about .badges-slider .swiper-slide {
  position: relative;
}
body.page-template-page-about .badges-slider .swiper-slide img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.2s;
}
body.page-template-page-about .badges-slider .swiper-slide img:hover {
  filter: grayscale(0%);
}
body.page-template-page-about .footer-badges {
  position: relative;
}
body.page-template-page-about .footer-badges .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 2;
}
body.page-template-page-about .footer-badges .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  transition: all 0.2s;
}
body.page-template-page-about .footer-badges .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF3B3B;
  border-radius: 10px;
  width: 40px;
}

body.page-template-default {
  position: relative;
}

body.blog {
  position: relative;
}
body.blog .internal-hero-image {
  position: relative;
}
body.blog .internal-hero-image.has-thumb {
  position: relative;
}
body.blog .internal-hero-image.has-thumb::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
body.blog .internal-hero-image .container {
  padding: 150px 0 100px;
}
body.blog .main-content {
  padding: 80px 0;
}
body.blog .main-content .title {
  font-family: "Teko", sans-serif;
  font-size: 72px;
  font-weight: 400;
  text-transform: uppercase;
  color: #FF3B3B;
}
body.blog .main-content .post-item {
  display: block;
  position: relative;
  border-bottom: 4px solid #FF3B3B;
  height: 100%;
  background-color: #F1F1F1;
}
body.blog .main-content .post-item .meta {
  font-family: "Teko", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
body.blog .main-content .post-item .post-title {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #FF3B3B;
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 10px;
  display: block;
}
body.blog .main-content .post-item .post-title:hover {
  opacity: 0.7;
}
body.blog .main-content .post-item .view-article-area {
  display: block;
}
body.blog .main-content .post-item .view-article-area a {
  display: block;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #FF3B3B;
  line-height: 20px;
  padding: 13px 30px 10px 30px;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
body.blog .main-content .post-item .view-article-area a:hover {
  background-color: #000;
}

body.single {
  position: relative;
}
body.single .internal-hero-image {
  position: relative;
}
body.single .internal-hero-image .container {
  padding: 150px 0 100px;
}
body.single .internal-hero-image .container h1 {
  font-size: 72px;
}
@media (max-width: 1200px) {
  body.single .internal-hero-image .container h1 {
    font-size: 42px;
  }
}
body.single .content {
  position: relative;
}
body.single .content img {
  max-width: 100%;
  height: auto;
}

body.page-template-page-contact {
  position: relative;
}
body.page-template-page-contact .main-nav .current_page_item a {
  color: #fff;
}
body.page-template-page-contact .main-nav .current_page_item:hover a {
  color: #FF3B3B;
}
body.page-template-page-contact .site-header {
  background-color: #000;
}
body.page-template-page-contact .site-header.scroll .logo a img {
  filter: none;
}
body.page-template-page-contact .site-header.scroll .main-nav li a {
  color: #fff;
}
body.page-template-page-contact .site-header.scroll .main-nav li:hover a {
  color: #FF3B3B;
}
body.page-template-page-contact .site-header.scroll .open-mobile-menu {
  color: #fff;
}
body.page-template-page-contact .entry-content {
  position: relative;
  margin-top: 100px;
}
body.page-template-page-contact .entry-content .page-title {
  font-family: "Teko", sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: #FF3B3B;
  margin-bottom: 40px;
}
body.page-template-page-contact .entry-content .contact-content {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
  margin-bottom: 50px;
}
body.page-template-page-contact .entry-content .contact-content .left-side, body.page-template-page-contact .entry-content .contact-content .right-side {
  width: 50%;
}
@media (max-width: 1200px) {
  body.page-template-page-contact .entry-content .contact-content .left-side, body.page-template-page-contact .entry-content .contact-content .right-side {
    width: 100%;
  }
}
body.page-template-page-contact .entry-content .contact-content h2 {
  font-family: "Roboto Slab", serif;
  font-size: 42px;
  font-weight: 500;
  color: #FF3B3B;
  text-transform: uppercase;
}
body.page-template-page-contact .entry-content .contact-content h5 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
}
body.page-template-page-contact .entry-content .contact-content .left-side p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}
body.page-template-page-contact .entry-content .contact-content .left-side p a {
  color: #FF3B3B;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
body.page-template-page-contact .entry-content .contact-content .left-side p a:hover {
  text-decoration: underline;
}
body.page-template-page-contact .entry-content .quality {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  background-color: #F1F1F1;
}
body.page-template-page-contact .entry-content .quality .quality-text {
  width: calc(100% - 300px);
  padding-right: 50px;
  font-size: 26px;
}
body.page-template-page-contact .entry-content .quality .quality-text h2 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #FF3B3B;
  font-size: 62px;
}
@media (max-width: 1200px) {
  body.page-template-page-contact .entry-content .quality .quality-text {
    width: 100%;
    padding-right: 0;
  }
}
body.page-template-page-contact .entry-content .quality img[alt=cta-img] {
  width: 300px;
  height: auto;
}
@media (max-width: 1200px) {
  body.page-template-page-contact .entry-content .quality img[alt=cta-img] {
    width: 100%;
  }
}

body.single-bdevs-services {
  position: relative;
}
body.single-bdevs-services .internal-hero-image {
  position: relative;
  overflow: hidden;
}
body.single-bdevs-services .internal-hero-image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(34, 36, 41, 0.631372549);
  backdrop-filter: grayscale(100%);
  z-index: 1;
}
body.single-bdevs-services .internal-hero-image .container {
  position: relative;
  padding: 200px 0;
  z-index: 2;
}
body.single-bdevs-services .content {
  position: relative;
}
body.single-bdevs-services .content h2 {
  color: #FF3B3B;
  font-family: "Teko", sans-serif;
  font-size: 46px;
  font-weight: 500;
  margin-top: 30px;
}
body.single-bdevs-services .content h2 b, body.single-bdevs-services .content h2 strong {
  font-weight: unset;
}
body.single-bdevs-services .content iframe {
  width: 100%;
}
body.single-bdevs-services .content img {
  max-width: 100%;
  height: auto;
}

body.page-template-page-services {
  position: relative;
}
body.page-template-page-services .internal-hero-image {
  position: relative;
  overflow: hidden;
}
body.page-template-page-services .internal-hero-image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(34, 36, 41, 0.631372549);
  backdrop-filter: grayscale(100%);
  z-index: 1;
}
body.page-template-page-services .internal-hero-image .container {
  position: relative;
  padding: 200px 0;
  z-index: 2;
}
body.page-template-page-services .service-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #000;
}
body.page-template-page-services .service-link .service-item {
  display: flex;
  flex-wrap: wrap;
  background-color: #F1F1F1;
  transition: all 0.2s;
}
body.page-template-page-services .service-link .service-item .preview {
  width: 80px;
  height: 80px;
}
body.page-template-page-services .service-link .service-item .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-page-services .service-link .service-item .data {
  width: calc(100% - 80px);
  padding-left: 20px;
}
body.page-template-page-services .service-link .service-item .data .data-title {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
body.page-template-page-services .service-link .service-item .data .author {
  display: block;
  font-size: 13px;
  font-weight: 400;
}
body.page-template-page-services .service-link .service-item .data .author .author-name {
  font-weight: 600;
}
body.page-template-page-services .service-link .service-item:hover {
  background-color: #FF3B3B;
}
body.page-template-page-services .service-link .service-item:hover .data .data-title {
  color: #fff;
}

body.page-template-page-testimonials {
  position: relative;
}
body.page-template-page-testimonials .internal-hero-image {
  position: relative;
  overflow: hidden;
}
body.page-template-page-testimonials .internal-hero-image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(34, 36, 41, 0.631372549);
  backdrop-filter: grayscale(100%);
  z-index: 1;
}
body.page-template-page-testimonials .internal-hero-image .container {
  position: relative;
  padding: 200px 0;
  z-index: 2;
}
body.page-template-page-testimonials .testimonials {
  position: relative;
}
body.page-template-page-testimonials .testimonials .testimonial-card {
  display: block;
  position: relative;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 46px;
  height: 100%;
}
body.page-template-page-testimonials .testimonials .testimonial-card::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-image: linear-gradient(90deg, #FF3B3B, #ff8600);
  bottom: 0;
  left: 0;
}
body.page-template-page-testimonials .testimonials .testimonial-card .photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 100%;
}
body.page-template-page-testimonials .testimonials .testimonial-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-page-testimonials .testimonials .testimonial-card .stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffb900;
}
body.page-template-page-testimonials .testimonials .testimonial-card .divider {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
body.page-template-page-testimonials .testimonials .testimonial-card .text {
  font-size: 20px;
}
body.page-template-page-testimonials .testimonials .testimonial-card .data {
  display: block;
  position: relative;
}
body.page-template-page-testimonials .testimonials .testimonial-card .data .name {
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  color: #FF3B3B;
}
body.page-template-page-testimonials .testimonials .testimonial-card .data .type {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
}

body.page-template-page-case-study {
  position: relative;
}
body.page-template-page-case-study .internal-hero-image {
  background: #000;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .internal-hero-image {
    padding-top: 100px;
    margin-bottom: 40px;
    overflow: hidden;
  }
}
body.page-template-page-case-study .internal-hero-image .container {
  position: relative;
}
body.page-template-page-case-study .internal-hero-image .container h1 {
  font-size: 80px;
  text-transform: unset;
}
body.page-template-page-case-study .internal-hero-image .container h1 span {
  color: #FF3B3B;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .internal-hero-image .container h1 {
    font-size: 52px;
  }
}
body.page-template-page-case-study .main-image {
  position: relative;
  z-index: 10;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .main-image {
    padding: 0 15px;
  }
}
body.page-template-page-case-study .main-image img {
  margin-top: -180px;
}
@media (max-width: 992px) {
  body.page-template-page-case-study .main-image img {
    margin-top: 0;
    width: 100%;
    height: auto;
  }
}
body.page-template-page-case-study .cases {
  position: relative;
}
body.page-template-page-case-study .cases .title {
  font-size: 50px;
  font-weight: 600;
  font-family: "Roboto Slab", serif;
  color: #FF3B3B;
}
body.page-template-page-case-study .cases .subtitle {
  font-weight: 800;
}
body.page-template-page-case-study .cases .text {
  font-size: 20px;
  line-height: 38px;
}
body.page-template-page-case-study .google-reviews {
  position: relative;
}
body.page-template-page-case-study .google-reviews .google-review-img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
body.page-template-page-case-study .google-reviews .google-review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-page-case-study .testimonials {
  position: relative;
}
body.page-template-page-case-study .testimonials .testimonial-item {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-page-case-study .testimonials .testimonial-item .photo {
  width: 225px;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonial-item .photo {
    width: 100%;
    text-align: center;
  }
}
body.page-template-page-case-study .testimonials .testimonial-item .content {
  width: calc(100% - 225px);
  padding-left: 80px;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonial-item .content {
    width: 100%;
    padding-left: 0;
  }
}
body.page-template-page-case-study .testimonials .testimonial-item .content .message {
  display: block;
  position: relative;
  font-size: 24px;
  padding-top: 20px;
}
body.page-template-page-case-study .testimonials .testimonial-item .content .message span {
  position: relative;
}
body.page-template-page-case-study .testimonials .testimonial-item .content .message span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../images/testimonials-quote.svg") no-repeat center;
  background-size: 30px 30px;
  top: -5px;
  left: -40px;
  z-index: 1;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonial-item .content .message span::before {
    display: none;
  }
}
body.page-template-page-case-study .testimonials .testimonial-item .content .message span::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../images/testimonials-quote.svg") no-repeat center;
  background-size: 30px 30px;
  bottom: -10px;
  right: -40px;
  transform: rotate(180deg);
  z-index: 1;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonial-item .content .message span::after {
    display: none;
  }
}
body.page-template-page-case-study .testimonials .testimonial-item .content .name {
  display: block;
  position: relative;
  text-align: right;
}
body.page-template-page-case-study .testimonials .testimonial-item .content .name strong {
  font-family: "Roboto Slab", serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  position: relative;
  display: inline-block;
}
body.page-template-page-case-study .testimonials .testimonial-item .content .name strong::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  top: 50%;
  left: -40px;
}
body.page-template-page-case-study .testimonials .testimonial-item .content .name span {
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 600;
  color: #FF3B3B;
}
body.page-template-page-case-study .testimonials .testimonials-row:nth-child(even) .photo {
  order: 2;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonials-row:nth-child(even) .photo {
    order: 1;
  }
}
body.page-template-page-case-study .testimonials .testimonials-row:nth-child(even) .content {
  order: 1;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 1200px) {
  body.page-template-page-case-study .testimonials .testimonials-row:nth-child(even) .content {
    padding-right: 0;
    order: 2;
  }
}

* {
  margin: 0;
  padding: 0;
}
*::selection {
  background-color: #FF3B3B;
  color: #fff;
}

body {
  position: relative;
  font-family: "Satoshi", sans-serif;
}
body .painted-top {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 9;
}
body .painted-bottom {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 9;
}
body .cta-btn {
  display: block;
  position: relative;
  text-align: center;
}
body .cta-btn a {
  display: inline-block;
  background-color: #fff;
  color: #FF3B3B;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  padding: 20px 50px;
  text-decoration: none;
  border-right: 10px solid #FF3B3B;
  transition: all 0.2s;
}
body .cta-btn a:hover {
  background-color: #FF3B3B;
  color: #fff;
  border-color: #fff;
}
body .breadcrumbs {
  display: block;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body .breadcrumbs ol {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body .breadcrumbs ol li {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #000;
}
body .breadcrumbs ol li a {
  color: #FF3B3B;
  text-decoration: none;
}
body .breadcrumbs ol li a:hover {
  text-decoration: underline;
}
body .breadcrumbs ol li::after {
  content: "»";
  display: inline-block;
  position: relative;
  margin: 0 5px;
}
body .breadcrumbs ol li:last-child::after {
  display: none;
}
body .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
body .alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

/*# sourceMappingURL=style.css.map */
