<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.row {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  font-size: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
}
.row [class*=col] {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: auto;
  font-size: 14px;
}
.row .col-1 {
  width: 8.3333333333%;
}
.row .col-2 {
  width: 16.6666666667%;
}
.row .col-3 {
  width: 25%;
}
.row .col-4 {
  width: 33.3333333333%;
}
.row .col-5 {
  width: 41.6666666667%;
}
.row .col-6 {
  width: 50%;
}
.row .col-7 {
  width: 58.3333333333%;
}
.row .col-8 {
  width: 66.6666666667%;
}
.row .col-9 {
  width: 75%;
}
.row .col-10 {
  width: 83.3333333333%;
}
.row .col-11 {
  width: 91.6666666667%;
}
.row .col-12 {
  width: 100%;
}
.row .side-margin {
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.row .full-margin {
  border: 10px solid transparent;
}

@media (max-width: 960px) {
  .row .col-l-1 {
    width: 8.3333333333%;
  }
  .row .col-l-2 {
    width: 16.6666666667%;
  }
  .row .col-l-3 {
    width: 25%;
  }
  .row .col-l-4 {
    width: 33.3333333333%;
  }
  .row .col-l-5 {
    width: 41.6666666667%;
  }
  .row .col-l-6 {
    width: 50%;
  }
  .row .col-l-7 {
    width: 58.3333333333%;
  }
  .row .col-l-8 {
    width: 66.6666666667%;
  }
  .row .col-l-9 {
    width: 75%;
  }
  .row .col-l-10 {
    width: 83.3333333333%;
  }
  .row .col-l-11 {
    width: 91.6666666667%;
  }
  .row .col-l-12 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .row .col-m-1 {
    width: 8.3333333333%;
  }
  .row .col-m-2 {
    width: 16.6666666667%;
  }
  .row .col-m-3 {
    width: 25%;
  }
  .row .col-m-4 {
    width: 33.3333333333%;
  }
  .row .col-m-5 {
    width: 41.6666666667%;
  }
  .row .col-m-6 {
    width: 50%;
  }
  .row .col-m-7 {
    width: 58.3333333333%;
  }
  .row .col-m-8 {
    width: 66.6666666667%;
  }
  .row .col-m-9 {
    width: 75%;
  }
  .row .col-m-10 {
    width: 83.3333333333%;
  }
  .row .col-m-11 {
    width: 91.6666666667%;
  }
  .row .col-m-12 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .row .col-s-1 {
    width: 8.3333333333%;
  }
  .row .col-s-2 {
    width: 16.6666666667%;
  }
  .row .col-s-3 {
    width: 25%;
  }
  .row .col-s-4 {
    width: 33.3333333333%;
  }
  .row .col-s-5 {
    width: 41.6666666667%;
  }
  .row .col-s-6 {
    width: 50%;
  }
  .row .col-s-7 {
    width: 58.3333333333%;
  }
  .row .col-s-8 {
    width: 66.6666666667%;
  }
  .row .col-s-9 {
    width: 75%;
  }
  .row .col-s-10 {
    width: 83.3333333333%;
  }
  .row .col-s-11 {
    width: 91.6666666667%;
  }
  .row .col-s-12 {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .row .col-xs-1 {
    width: 8.3333333333%;
  }
  .row .col-xs-2 {
    width: 16.6666666667%;
  }
  .row .col-xs-3 {
    width: 25%;
  }
  .row .col-xs-4 {
    width: 33.3333333333%;
  }
  .row .col-xs-5 {
    width: 41.6666666667%;
  }
  .row .col-xs-6 {
    width: 50%;
  }
  .row .col-xs-7 {
    width: 58.3333333333%;
  }
  .row .col-xs-8 {
    width: 66.6666666667%;
  }
  .row .col-xs-9 {
    width: 75%;
  }
  .row .col-xs-10 {
    width: 83.3333333333%;
  }
  .row .col-xs-11 {
    width: 91.6666666667%;
  }
  .row .col-xs-12 {
    width: 100%;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #e6e8e6;
  color: #171a21;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.inner {
  width: 90%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.button {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
  padding: 0.7vh 1.5vw 0.8vh;
  font-size: 1em;
  background: #3b905f;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  text-transform: none;
  color: #fbfbfb;
  border-radius: 4px;
}
.button:hover, .button:active {
  background: #76C370;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 8vh;
  background: #fbfbfb;
  z-index: 100;
  box-shadow: 0 0 10px -4px #171a21;
  transition: all 0.2s ease-in-out;
}
.header .inner {
  padding-top: 1vh;
  padding-bottom: 1vh;
  font-size: 0;
}
.header .inner &gt; * {
  font-size: initial;
}
.header .title {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  height: auto;
  transition: all 0.2s ease-in-out;
  font-size: 0;
}
.header .title a {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
}
.header .title a img {
  display: inline-block;
  vertical-align: top;
  width: 6vh;
  height: 6vh;
}
.header .menu {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  text-align: right;
}
.header .menu.responsive .menu-toggle {
  display: inline-block;
}
.header .menu.responsive .inner-menu {
  position: absolute;
  top: 8vh;
  right: 5vw;
  width: auto;
  text-align: left;
  background-color: white;
  opacity: 0;
  visibility: hidden;
}
.header .menu.responsive .inner-menu .menu-item {
  display: block;
  width: 100%;
}
.header .menu.responsive .inner-menu .menu-item a {
  color: black !important;
  width: 100%;
  padding: 1vh 3vw;
}
.header .menu .menu-toggle {
  display: none;
  vertical-align: top;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: 200;
  line-height: 4vh;
  padding: 1vh 1vw;
  color: black;
  cursor: pointer;
}
.header .menu .menu-toggle:hover, .header .menu .menu-toggle:active {
  background: #e6e8e6;
}
.header .menu .menu-toggler {
  display: none;
}
.header .menu .menu-toggler:checked + .inner-menu {
  opacity: 1;
  visibility: visible;
}
.header .menu .inner-menu {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  list-style: none;
  transition: all 0.2s ease-in-out;
}
.header .menu .inner-menu .menu-item {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
}
.header .menu .inner-menu .menu-item a {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: 200;
  line-height: 4vh;
  padding: 1vh 1vw;
  color: #171a21;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.header .menu .inner-menu .menu-item a i {
  margin-right: 5px;
}
.header .menu .inner-menu .menu-item a:hover, .header .menu .inner-menu .menu-item a:active {
  background: #e6e8e6;
}

.page-image {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  height: 40vh;
  margin-top: 8vh;
  background-position: center center;
  background-size: cover;
  text-align: center;
}
.page-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.page-image.dark:after {
  background: rgba(255, 255, 255, 0.35);
}
.page-image.dark .page-header {
  background: rgba(0, 0, 0, 0.5);
}
.page-image.full-height {
  height: 100vh;
}
.page-image.full-height .page-header {
  border-color: transparent !important;
}
.page-image.full-height .page-header .goback {
  display: inline-block;
  vertical-align: top;
  margin: 5vh 0;
  padding: 1.5vh 2.5vw;
  border: 3px solid white;
  font-size: 20px;
  background: transparent;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.page-image.full-height .page-header .goback:hover, .page-image.full-height .page-header .goback:active {
  background: white;
  color: black;
}
.page-image .page-header {
  display: inline-block;
  vertical-align: top;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 20vw;
  padding: 2vh 0;
  color: white;
  border: 5px solid white;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.page-image .page-header h2 {
  padding: 1vh 2vw;
  font-size: 4vh;
}
.page-image .page-header h3 {
  padding: 1vh 2vw;
  font-size: 2vh;
}

.page-content {
  background: #fbfbfb;
  color: #171a21;
  padding: 1vh 2vw;
  margin: 5vh 0;
  box-shadow: 0 0 10px -3px #000;
}
.page-content .separator {
  display: inline-block;
  vertical-align: top;
  margin: 2vh 0;
  width: 100%;
  height: 1px;
  background: #eee;
}
.page-content .section {
  padding: 2vh 2vw;
}
.page-content .section h4 {
  padding: 2vh 0;
  font-size: 3vh;
  text-align: center;
  color: #333;
}
.page-content .section p {
  display: block;
  padding: 1vh 0;
  font-size: initial;
}

.footer {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  font-size: 0;
  background: #333;
}
.footer .column {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: auto;
  padding: 3vh 3vw;
  font-size: initial;
  color: #fbfbfb;
}
.footer .column.left {
  text-align: left;
}
.footer .column.right {
  text-align: right;
}
.footer .column.credits {
  color: #bdbdbd;
}
.footer .column.credits a {
  color: inherit;
}

.carousel {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  height: auto;
  white-space: nowrap;
  overflow-x: auto;
  font-size: 0;
}
.carousel &gt; * {
  font-size: initial;
}
.carousel::-webkit-scrollbar, .carousel::-webkit-scrollbar-thumb {
  display: none;
}
.carousel .item {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: auto;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .page-image .page-header h2 {
    padding: 1vh 2vw;
    font-size: 4vh;
  }
  .page-image .page-header h3 {
    padding: 1vh 2vw;
    font-size: 2vh;
  }

  .footer .column {
    width: 100%;
    text-align: center !important;
  }
}
@media screen and (max-width: 480px) {
  #catalogue .families .family-outter {
    width: 100%;
  }
  #catalogue .families .family-outter:after {
    padding-bottom: 50%;
  }
}
#main-header.transparent {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}
#main-header.transparent .title {
  opacity: 0;
  visibility: hidden;
}
#main-header.transparent .menu:not(.responsive) .menu-toggle,
#main-header.transparent .menu:not(.responsive) .inner-menu .menu-item a {
  color: white;
}
#main-header.transparent .menu:not(.responsive) .menu-toggle:hover, #main-header.transparent .menu:not(.responsive) .menu-toggle:active,
#main-header.transparent .menu:not(.responsive) .inner-menu .menu-item a:hover,
#main-header.transparent .menu:not(.responsive) .inner-menu .menu-item a:active {
  background: rgba(0, 0, 0, 0.5);
}
#main-header.transparent .menu.responsive .menu-toggle {
  color: white;
}
#main-header.transparent .menu.responsive .menu-toggle:hover, #main-header.transparent .menu.responsive .menu-toggle:active {
  background: rgba(0, 0, 0, 0.5);
}

#main-image {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/assets/img/bg-home.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/assets/img/bg-home.jpg");
  background-position: bottom center;
  background-size: cover;
  text-align: center;
}
#main-image .content {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  color: #fbfbfb;
  transform: translateY(-50%);
  text-align: center;
}
#main-image .content .logo img {
  width: 15vw;
  min-width: 100px;
}
#main-image .content .logo p {
  margin: 1vh;
  color: #e6e8e6;
  font-size: 3vh;
}
#main-image .content h2 {
  margin: 4vh;
  font-size: 4vh;
}

.main-section {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  padding: 4vh 0 6vh;
}
.main-section.gray {
  background: #e6e8e6;
}
.main-section.white {
  background: #fbfbfb;
}
.main-section.dark {
  background: #555;
  color: #fbfbfb;
}
.main-section .section-title {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  font-size: 4vh;
  text-align: center;
  margin: 3vh 0;
}

#main-services .service-list {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: baseline;
  flex-wrap: wrap;
}
#main-services .service-list .service {
  display: inline-block;
  vertical-align: top;
  width: 23%;
  height: auto;
  margin: 2.5vh 1%;
  padding: 3vh 1%;
  background: #fbfbfb;
  font-size: initial;
  text-align: center;
  border: 1px solid #bdbdbd;
  box-shadow: 0 0 10px -4px #171a21;
}
#main-services .service-list .service .service-icon,
#main-services .service-list .service .service-title,
#main-services .service-list .service .service-content {
  display: block;
  padding: 0.5vh 0;
}
#main-services .service-list .service .service-icon {
  font-size: 3em;
}
#main-services .service-list .service .service-button {
  margin: 1.5vh 0 0;
}

#main-clients .brands {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  list-style: none;
  font-size: 0;
  margin: 4vh 0 6vh;
  text-align: center;
  /*
  .brand-main {
  	display: inline-block;
  	vertical-align: top;
  	position: relative !important;
  	width: 22%;
  	margin: 0vh 1%;
  	font-size: initial;
  	.bran-inner .brand-logo {
  		max-height: 70% !important;
  	}
  	&amp;:after {
  		display: block;
  		content: '';
  		padding-bottom: 100%;
  	}
  	.bran-inner {
  		position: absolute;
  		top: 0;
  		left: 0;
  		width: auto;
  		height: auto;
  		text-align: center;
  		padding: 1vh 1vw;
  		border: 1px solid #bdbdbd;
  		box-shadow: 0 0 10px -4px #171a21;
  		.brand-logo {
  			display: inline-block;
  			vertical-align: top;
  			max-width: 70%;
  			max-height: 50% !important;
  			margin: 1vh 0;
  			height: auto;
  		}
  		.brand-name {
  			display: block;
  			vertical-align: top;
  			margin: 1vh 0;
  			font-weight: bold;
  		}
  	}
  }*/
}
#main-clients .brands .brand {
  display: inline-block;
  vertical-align: top;
  position: relative !important;
  width: 14%;
  margin: 0 1%;
  padding: 0;
  font-size: initial;
}
#main-clients .brands .brand.brand-featured {
  width: 16%;
}
#main-clients .brands .brand:after {
  display: block;
  content: "";
  padding-bottom: 70%;
}
#main-clients .brands .brand .brand-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1vh 0;
}
#main-clients .brands .brand .brand-inner .brand-logo {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  max-height: 65% !important;
  margin: 1vh 0;
  height: auto;
  margin-top: 50%;
  transform: translateY(-50%);
}
#main-clients .brands .brand .brand-inner .brand-name {
  display: block;
  vertical-align: top;
  margin: 1vh 0;
  font-weight: bold;
}
#main-clients .brands .brand.main {
  width: 28%;
  margin: 0vh 1%;
  box-sizing: border-box;
  border: 1px solid #bdbdbd;
  box-shadow: 0 0 10px -4px #171a21;
}
#main-clients .brands .brand.main .brand-inner {
  padding: 3vh 1vw;
}
#main-clients .brands .brand.main .brand-inner .brand-logo {
  max-height: 65% !important;
}
#main-clients .brands .brand.main .brand-logo {
  margin: 0;
  transform: initial;
}
#main-clients .brands .brand.main:after {
  padding-bottom: 80%;
}
#main-clients .brands #carousel {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 76%;
  margin: 0;
  padding: 0;
  height: auto;
  white-space: nowrap;
  overflow-x: auto;
  font-size: 0;
}
#main-clients .brands #carousel &gt; * {
  font-size: initial;
}
#main-clients .brands #carousel::-webkit-scrollbar, #main-clients .brands #carousel::-webkit-scrollbar-thumb {
  display: none;
}
#main-clients .brands #carousel .item {
  display: inline-block;
  vertical-align: top;
  position: relative !important;
  width: 25%;
  margin: 4vh 0;
  font-size: initial;
}
#main-clients .brands #carousel .item:after {
  display: block;
  content: "";
  padding-bottom: 100%;
}
#main-clients .brands #carousel .item .brand {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
#main-clients .brands #carousel .item .brand .brand-logo {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  max-height: 50% !important;
  margin: 1vh 0;
  height: auto;
}
#main-clients .brands #carousel .item.main {
  width: 22%;
  margin: 0vh 1%;
}
#main-clients .brands #carousel .item.main .bran-inner .brand-logo {
  max-height: 70% !important;
}
#main-clients .testimonials {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  list-style: none;
  font-size: 0;
  margin: 2.5vh 0;
}
#main-clients .testimonials .testimonial {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 36%;
  height: auto;
  margin: 2vh 7%;
  padding: 2vh 1vw;
  background: #e6e8e6;
  border-radius: 4px;
  font-size: 18px;
}
#main-clients .testimonials .testimonial .author {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-weight: 400;
  margin-bottom: 5px;
}
#main-clients .testimonials .testimonial .author small {
  display: block;
  margin: 5px 0;
  font-size: 14px;
}
#main-clients .testimonials .testimonial .content {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-style: italic;
  font-weight: 300;
}
#main-clients .testimonials .testimonial:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 5%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: #e6e8e6;
}

#main-contact.main-section {
  margin: 0;
  padding: 0;
}
#main-contact .contact-title {
  font-size: 3vh !important;
  text-align: center;
  padding: 1.5vh 0;
}
#main-contact .contact-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  font-size: 0;
  text-align: center;
}
#main-contact .contact-inner .contact-side {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: auto;
  font-size: initial;
  padding: 3vh 3vw 4vh;
}
#main-contact .contact-info, #main-contact .contact-form {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  font-size: 0;
  margin: 0;
  padding: 0;
  text-align: left;
}
#main-contact .contact-info {
  text-align: center;
}
#main-contact .contact-info &gt; * {
  font-size: initial;
}
#main-contact .contact-info .info-hidden,
#main-contact .contact-info .info-hidden &gt; * {
  display: inline-block;
  vertical-align: top;
  width: 0;
  height: 0;
  font-size: 0;
  visibility: hidden;
  opacity: 0;
}
#main-contact .contact-info .info-group {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 5vh 0;
}
#main-contact .contact-info .info-group .label {
  display: block;
  color: #bdbdbd;
}
#main-contact .contact-info .info-group .label i {
  width: 2.5vh;
}
#main-contact .contact-info .info-group .info {
  display: block;
  vertical-align: top;
  width: auto;
  color: white;
  text-decoration: none;
  padding: 0.5vh 0;
}
#main-contact .contact-form {
  font-size: 0;
}
#main-contact .contact-form .input-group {
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: initial;
  padding: 0.8vh 0;
}
#main-contact .contact-form .input-group.half-left, #main-contact .contact-form .input-group.half-right {
  width: 50%;
}
#main-contact .contact-form .input-group.half-left {
  padding-right: 1vw;
}
#main-contact .contact-form .input-group.half-right {
  padding-left: 1vw;
}
#main-contact .contact-form .input-group label {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
  color: #bdbdbd;
}
#main-contact .contact-form .input-group input, #main-contact .contact-form .input-group textarea {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  font-family: inherit;
  background: #bdbdbd;
  padding: 0.8vh 1vw;
  border: 0;
  font-size: inherit;
  outline: 0;
  color: black;
  transition: all 0.2s ease-in-out;
}
#main-contact .contact-form .input-group input:hover, #main-contact .contact-form .input-group input:focus, #main-contact .contact-form .input-group textarea:hover, #main-contact .contact-form .input-group textarea:focus {
  background: #e6e8e6;
}
#main-contact .contact-form .input-group textarea {
  min-height: 40px;
  margin-bottom: 2vh;
}
#main-contact .contact-form .button.dark {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  padding: 0.8vh 1vw;
  font-size: initial;
  color: #fbfbfb;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#main-contact .contact-form .button.dark:hover, #main-contact .contact-form .button.dark:active {
  border-color: #bdbdbd;
}
#main-contact .contact-form .button.dark i {
  margin-right: 1vw;
}
#main-contact .contact-map {
  position: absolute !important;
  height: 100% !important;
}
#main-contact .contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main-contact .contact-map iframe .gm-inset-map.gm-inset-map-small.gm-inset-light {
  display: none;
}

@media screen and (max-width: 768px) {
  #main-services .service-list .service {
    width: 46%;
  }

  #main-clients .brands .brand {
    margin-bottom: 2vh;
    width: 48% !important;
  }
  #main-clients .brands .brand .bran-inner .brand-logo {
    margin-top: 20% !important;
  }
  #main-clients .brands #carousel {
    width: 60%;
  }
  #main-clients .brands #carousel .item {
    width: 33%;
  }

  .testimonials .testimonial {
    padding: 2vh 3vw !important;
    font-size: 16px !important;
    width: 86% !important;
  }

  #main-contact .contact-side {
    width: 100% !important;
    padding: 3vh 4vw 4vh !important;
  }
  #main-contact .contact-side.contact-map {
    position: relative !important;
    display: inline-block !important;
    vertical-align: top;
    width: 100%;
    height: 400px !important;
    padding: 0 !important;
  }
}
@media screen and (max-width: 480px) {
  #main-services .service-list .service {
    width: 96%;
  }

  #main-clients .brands .brand.main {
    width: 100%;
  }
  #main-clients .brands .brand.main .brand-inner .brand-logo {
    max-width: 50%;
  }
  #main-clients .brands .brand.main .brand-inner .brand-name {
    font-size: 0.8em;
  }
  #main-clients .brands #carousel {
    width: 100%;
  }
  #main-clients .brands #carousel .item {
    width: 33%;
  }
}

/*# sourceMappingURL=home.css.map */
</pre></body></html>