@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1.4em;
  color: #333333;
  font-family: "Baloo 2", sans-serif;
  font-weight: 400;
  font-size: 14px; }
  @media (max-width: 767px) {
    body {
      padding-top: 60px; } }
  body.loading {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 0; }

.site-loader {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 10000; }
  .site-loader img {
    max-width: 100%;
    height: auto;
    width: 100%; }
    .site-loader img.mobile {
      display: none; }
      @media (max-width: 1024px) {
        .site-loader img.mobile {
          display: block; } }
    @media (max-width: 1024px) {
      .site-loader img.desktop {
        display: none; } }

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Baloo 2", sans-serif; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

ul, ol {
  list-style: none; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

a {
  text-decoration: none;
  color: #242a47; }
  a:hover {
    color: #f4c554; }

img {
  width: 100%;
  height: auto;
  display: block; }

p {
  margin-bottom: 20px;
  /* text-align: justify; */
  line-height: 1.2em; }

.container {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .container {
      padding: 0 20px; } }

h1, h2, h3, h4, h5, h6 {
  color: #f6841f;
  font-weight: 500;
  font-size: 48px; }

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 767px) {
    header {
      background-color: #352e6c;
      background-size: cover;
      background-repeat: no-repeat;
      padding: 7px 15px;
      -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  header .site-title img {
    width: 150px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 767px) {
      header .site-title img {
        width: 60px; } }
  header .main-menu {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 767px) {
      header .main-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        background: #6b4e3c;
        padding-top: 60px;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; } }
    header .main-menu li a {
      padding: 10px;
      display: block;
      text-transform: uppercase;
      color: #ffffff;
      font-size: 18px;
      border-bottom: 2px solid transparent;
      margin-left: 10px;
      font-weight: 500; }
      header .main-menu li a:hover, header .main-menu li a:focus, header .main-menu li a.active {
        border-bottom: 2px solid #f6841f; }
      @media (max-width: 767px) {
        header .main-menu li a {
          border-bottom: 1px solid rgba(255, 255, 255, 0.4); } }
    @media (max-width: 767px) {
      header .main-menu li:nth-child(1) a {
        border-top: 1px solid rgba(255, 255, 255, 0.4); } }
  header .mobile-menu {
    display: none;
    margin-left: auto; }
    header .mobile-menu ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    @media (max-width: 767px) {
      header .mobile-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  header.fixed {
    background: #352e6c;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 25px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 767px) {
      header.fixed {
        padding: 7px 15px; } }
    header.fixed .site-title img {
      width: 70px; }
      @media (max-width: 767px) {
        header.fixed .site-title img {
          width: 60px; } }

.menu-icon {
  display: block;
  cursor: pointer; }
  @media (max-width: 767px) {
    .menu-icon {
      position: relative;
      z-index: 20; } }

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-8px, 6px);
  -ms-transform: rotate(-45deg) translate(-8px, 6px);
  transform: rotate(-45deg) translate(-8px, 6px); }

.open .bar2 {
  opacity: 0; }

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -4px);
  -ms-transform: rotate(45deg) translate(-5px, -4px);
  transform: rotate(45deg) translate(-5px, -4px); }

.slider-wrapper {
  margin: 0;
  background: transparent;
  border: none; }
  .slider-wrapper .scroll-btn {
    width: 25px;
    position: absolute;
    z-index: 5;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto; }
  .slider-wrapper .slider-content-wrap {
    position: relative; }
    .slider-wrapper .slider-content-wrap .bg {
      position: absolute;
      z-index: 2;
      background: rgba(0, 0, 0, 0.3);
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
  .slider-wrapper .slider-content {
    position: absolute;
    bottom: 60px;
    left: 30px;
    /*width: 580px;*/
    /*padding: 10px 0 10px 15px;*/
    z-index: 3; }
    @media (max-width: 1024px) {
      .slider-wrapper .slider-content {
        width: 60%; } }
    @media (max-width: 800px) {
      .slider-wrapper .slider-content {
        width: 70%;
        bottom: 5%; } }
    @media (max-width: 767px) {
      .slider-wrapper .slider-content {
        /* position: relative; */
        left: 0;
        bottom: 40px;
        width: 100%;
        padding: 15px; } }
    .slider-wrapper .slider-content h2, .slider-wrapper .slider-content p {
      color: #ffffff; }
    .slider-wrapper .slider-content h2 {
      font-weight: 600;
      font-size: 60px;
      line-height: 1em;
      /*margin-bottom: 15px;*/
      color: #f6841f; }
      @media (max-width: 800px) {
        .slider-wrapper .slider-content h2 {
          font-size: 30px; } }
      @media (max-width: 767px) {
        .slider-wrapper .slider-content h2 {
          font-size: 20px; } }
    .slider-wrapper .slider-content p {
      font-size: 40px;
      margin-bottom: 0;
      font-weight: 500;
      color: #ffffff;
      line-height: 1em; }
      @media (max-width: 767px) {
        .slider-wrapper .slider-content p {
          font-size: 17px;
          margin-bottom: 0; } }

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto; }

.about-wrapper {
  padding: 25px 0;
  /*box-shadow: 10px 30px 30px 0px rgba(0, 0, 0, 0.3);*/ }
  @media (max-width: 767px) {
    .about-wrapper {
      padding: 15px 10px; } }
  .about-wrapper .about-container {
    /*background: url('../images/about-bg.png') no-repeat;
        background-size: cover;*/
    padding: 35px 0;
    padding-bottom: 0; }
  .about-wrapper h2 {
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2em; }
  .about-wrapper p {
    font-weight: 500;
    font-size: 16px;
    color: #6b4e3c;
    margin-bottom: 0; }
  .about-wrapper .directors p {
    margin-bottom: 5px; }
  .about-wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .about-wrapper .container .about-img, .about-wrapper .container .about-text {
      width: 60%; }
    .about-wrapper .container .about-img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .about-wrapper .container .about-img img {
        width: 250px; }
    .about-wrapper .container .about-text {
      text-align: justify; }
      .about-wrapper .container .about-text a {
        color: #242a47;
        text-transform: uppercase;
        font-weight: 600; }
        .about-wrapper .container .about-text a:hover, .about-wrapper .container .about-text a:focus {
          color: #f4c554; }

.services-wrapper {
  text-align: center;
  padding: 60px 0; }
  .services-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2em; }
  .services-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px; }
    .services-wrapper ul li {
      width: 20%; }
      .services-wrapper ul li .img {
        margin: 0 auto;
        margin-bottom: 20px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 1px dashed #000000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .services-wrapper ul li .img img {
          width: 60%;
          display: block;
          margin: 0 auto; }
      .services-wrapper ul li p {
        font-weight: 400;
        font-size: 18px;
        /*text-transform: uppercase;*/
        text-align: center; }

.brands-wrapper {
  padding: 60px 0;
  text-align: center;
  -webkit-box-shadow: 10.5px 18.187px 92px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 10.5px 18.187px 92px 0px rgba(0, 0, 0, 0.3);
  position: relative; }
  .brands-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2em; }
  .brands-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .brands-wrapper ul img {
      max-width: 200px; }

.testimonials-wrapper {
  padding: 60px 0;
  padding-bottom: 150px;
  text-align: center;
  background: url("../images/testimonials-bg.jpg") no-repeat;
  background-size: cover; }
  .testimonials-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2em; }
  .testimonials-wrapper .flexslider {
    padding: 0;
    background: transparent;
    border: none;
    width: 60%;
    margin: 0 auto; }
  .testimonials-wrapper .slides li {
    background: transparent; }
    .testimonials-wrapper .slides li p {
      text-align: center;
      font-size: 16px; }
      .testimonials-wrapper .slides li p.author-name {
        font-weight: 500;
        font-size: 18px; }

.footer-wrapper {
  padding: 35px 0;
  padding-top: 60px;
  padding-bottom: 0; }
  @media (max-width: 767px) {
    .footer-wrapper {
      padding: 30px 10px; } }
  .footer-wrapper .footer-logo {
    width: 200px; }
    @media (max-width: 800px) {
      .footer-wrapper .footer-logo {
        width: 150px;
        display: block; } }
    @media (max-width: 767px) {
      .footer-wrapper .footer-logo {
        width: 100px;
        margin: 0 auto;
        margin-bottom: 15px; } }
  .footer-wrapper .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 2px solid #e4af25;
    padding-top: 35px; }
    @media (max-width: 767px) {
      .footer-wrapper .footer-content {
        display: block;
        padding-top: 15px;
        text-align: center; } }
    .footer-wrapper .footer-content .contact-details {
      margin-left: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #352e6c; }
      @media (max-width: 767px) {
        .footer-wrapper .footer-content .contact-details {
          display: block; } }
      .footer-wrapper .footer-content .contact-details h3 {
        font-weight: 300;
        text-transform: uppercase;
        font-size: 16px;
        line-height: 1.2em; }
      .footer-wrapper .footer-content .contact-details p, .footer-wrapper .footer-content .contact-details a {
        font-size: 15px;
        font-weight: 600; }
      .footer-wrapper .footer-content .contact-details .footer-menus {
        margin-right: 0px;
        padding: 10px 35px;
        border-right: 2px solid #e4af25;
        border-left: 2px solid #e4af25; }
        @media (max-width: 767px) {
          .footer-wrapper .footer-content .contact-details .footer-menus {
            margin-right: 0; } }
        .footer-wrapper .footer-content .contact-details .footer-menus ul {
          padding-right: 0; }
          @media (max-width: 767px) {
            .footer-wrapper .footer-content .contact-details .footer-menus ul {
              padding-right: 0; } }
        .footer-wrapper .footer-content .contact-details .footer-menus li {
          padding-bottom: 0px; }
          .footer-wrapper .footer-content .contact-details .footer-menus li a {
            text-transform: uppercase;
            color: #352e6c;
            margin-bottom: 10px;
            display: block;
            line-height: 1em;
            font-size: 19px; }
            .footer-wrapper .footer-content .contact-details .footer-menus li a:hover, .footer-wrapper .footer-content .contact-details .footer-menus li a:focus {
              color: #e4af25; }
          .footer-wrapper .footer-content .contact-details .footer-menus li:last-child a {
            margin-bottom: 0; }
      .footer-wrapper .footer-content .contact-details .contacts {
        padding-left: 35px;
        border-left: 1px solid rgba(255, 255, 255, 0.4);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        @media (max-width: 767px) {
          .footer-wrapper .footer-content .contact-details .contacts {
            padding-left: 0;
            border: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.4); } }
        .footer-wrapper .footer-content .contact-details .contacts div {
          margin-right: 30px; }
          .footer-wrapper .footer-content .contact-details .contacts div h3 {
            margin-bottom: 10px; }
          .footer-wrapper .footer-content .contact-details .contacts div p {
            margin-bottom: 0; }
        .footer-wrapper .footer-content .contact-details .contacts .contact-list li {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 17px;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .footer-wrapper .footer-content .contact-details .contacts .contact-list li p {
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.2em; }
          .footer-wrapper .footer-content .contact-details .contacts .contact-list li .image {
            width: 31px;
            margin: 0; }
            .footer-wrapper .footer-content .contact-details .contacts .contact-list li .image img {
              max-width: 18px;
              width: auto;
              margin-top: 2px; }
          .footer-wrapper .footer-content .contact-details .contacts .contact-list li:nth-child(3n) {
            margin-bottom: 0;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start; }
            .footer-wrapper .footer-content .contact-details .contacts .contact-list li:nth-child(3n) .image img {
              max-width: 15px; }
        .footer-wrapper .footer-content .contact-details .contacts .address-details {
          width: 100%;
          margin-top: 20px;
          padding-top: 20px;
          border-top: 1px solid rgba(255, 255, 255, 0.4); }
          .footer-wrapper .footer-content .contact-details .contacts .address-details p {
            margin-bottom: 20px; }
        .footer-wrapper .footer-content .contact-details .contacts .no-margin {
          margin-bottom: 0; }
        .footer-wrapper .footer-content .contact-details .contacts a {
          /*color: #ffffff;*/
          margin-top: 8px;
          display: block; }
        .footer-wrapper .footer-content .contact-details .contacts .socials ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          @media (max-width: 767px) {
            .footer-wrapper .footer-content .contact-details .contacts .socials ul {
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center; } }
          .footer-wrapper .footer-content .contact-details .contacts .socials ul li {
            margin-right: 10px; }
  .footer-wrapper.inside {
    padding-top: 0px; }
    .footer-wrapper.inside .footer-content {
      border-top: none;
      padding-top: 0; }

.copyright-wrapper {
  padding: 15px;
  margin-top: 30px;
  background: #352e6c; }
  .copyright-wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767px) {
      .copyright-wrapper .container {
        display: block;
        text-align: center; } }
    .copyright-wrapper .container p {
      margin-bottom: 0;
      color: #e2ae24;
      text-align: center;
      font-size: 15px;
      font-weight: 400; }
      @media (max-width: 767px) {
        .copyright-wrapper .container p {
          margin-bottom: 10px; } }
      .copyright-wrapper .container p.managedBy {
        margin-left: auto; }
        @media (max-width: 767px) {
          .copyright-wrapper .container p {
            margin-bottom: 0; } }
        .copyright-wrapper .container p a {
          color: #e2ae24;
          text-decoration: underline; }
          .copyright-wrapper .container p a:focus, .copyright-wrapper .container p a:hover {
            color: #ffffff; }

.get-in-touch {
  display: block;
  background: url("../images/get-touch-bg.jpg") no-repeat;
  background-size: cover;
  padding: 45px 0;
  margin-top: 40px;
  text-align: center; }
  .get-in-touch.inside {
    margin-top: 0; }
  .get-in-touch h2, .get-in-touch h3 {
    font-size: 60px;
    line-height: 1em;
    color: #352e6c;
    margin-bottom: 80px;
    font-weight: 600; }
  .get-in-touch h3 {
    margin-bottom: 0;
    font-size: 35px; }
  .get-in-touch form {
    margin-top: 20px; }
    .get-in-touch form input {
      background: transparent;
      border: 1px solid #ffffff;
      border-radius: 18px;
      color: #ffffff;
      padding: 10px 15px;
      margin-right: 10px;
      font-size: 16px;
      outline: none; }
      .get-in-touch form input::-webkit-input-placeholder {
        color: #ffffff;
        font-family: 'Baloo 2', sans-serif; }
      .get-in-touch form input:-ms-input-placeholder {
        color: #ffffff;
        font-family: 'Baloo 2', sans-serif; }
      .get-in-touch form input::-ms-input-placeholder {
        color: #ffffff;
        font-family: 'Baloo 2', sans-serif; }
      .get-in-touch form input::placeholder {
        color: #ffffff;
        font-family: 'Baloo 2', sans-serif; }
    .get-in-touch form input[type="submit"] {
      margin-left: 20px;
      font-size: 14px;
      border: 3px solid #ffffff;
      padding: 7px 25px;
      cursor: pointer;
      font-weight: 600;
      text-transform: uppercase; }
      .get-in-touch form input[type="submit"]:hover {
        background: #ffffff;
        color: #352e6c; }

.header-wrapper {
  position: relative; }
  .header-wrapper h1 {
    padding-top: 100px;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    left: 40px;
    bottom: 80px;
    color: #f6841f; }
    @media (max-width: 767px) {
      .header-wrapper h1 {
        font-size: 35px;
        padding-top: 20px; } }

.content-wrapper {
  padding: 60px 0;
  padding-bottom: 30px; }
  .content-wrapper h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    color: #333333; }

.about-content {
  text-align: center; }
  .about-content p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 16px; }

.hr {
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  margin-bottom: 60px; }

.mission-vision-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-bottom: 30px; }
  .mission-vision-wrapper img {
    width: 60%;
    margin-bottom: 20px; }
    .mission-vision-wrapper img.vision-img {
      margin-left: auto;
      padding-top: 50px; }
  .mission-vision-wrapper p {
    width: 80%;
    margin-left: auto;
    font-size: 18px;
    margin-bottom: 20px; }
    .mission-vision-wrapper p.left-align {
      margin-left: 0;
      margin-right: auto; }

.process-wrapper {
  text-align: center;
  margin-bottom: 15px; }
  .process-wrapper h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    color: #333333; }
  .process-wrapper p {
    font-size: 18px; }
  .process-wrapper ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px; }
    .process-wrapper ol h3 {
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 18px; }
    .process-wrapper ol li {
      width: 33.33%;
      padding: 0 10px; }

.gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .gallery-list li {
    border: 1px solid #cccccc;
    border-radius: 4px;
    width: 22%;
    margin-right: 4%;
    margin-bottom: 4%; }
    .gallery-list li:nth-child(4n) {
      margin-right: 0; }

.brands-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px; }
  .brands-content-wrapper .brands-img {
    width: 30%;
    padding-right: 80px; }
  .brands-content-wrapper .brands-content {
    width: 70%;
    background: #f4f4f4;
    padding: 25px; }
    .brands-content-wrapper .brands-content h3 {
      font-weight: 600;
      color: #242a47;
      margin-bottom: 10px;
      font-size: 20px; }
  .brands-content-wrapper.right-img .brands-img {
    padding-right: 0;
    padding-left: 80px; }

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .contact-wrapper .contact-form {
    width: 60%; }
    .contact-wrapper .contact-form label {
      text-align: left;
      display: block; }
    .contact-wrapper .contact-form .wpcf7-form-control-wrap {
      display: block;
      margin-top: 5px; }
    .contact-wrapper .contact-form input, .contact-wrapper .contact-form textarea {
      padding: 7px;
      border: 1px solid #cccccc;
      border-radius: 4px;
      font-family: "Baloo 2", sans-serif;
      font-size: 14px;
      width: 100%; }
  .contact-wrapper .contact-details {
    width: 40%;
    margin-top: 20px; }
    .contact-wrapper .contact-details .address-details {
      text-align: left; }

.teams-wrapper h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
  color: #333333; }

.teams-wrapper .team-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px; }
  .teams-wrapper .team-list li {
    width: 16%;
    margin-right: 5%;
    text-align: center;
    margin-bottom: 5%; }
    .teams-wrapper .team-list li h3 {
      font-size: 18px; }
    .teams-wrapper .team-list li img {
      width: 100px;
      height: auto;
      display: block;
      margin: 0 auto;
      padding-bottom: 10px; }
    .teams-wrapper .team-list li:nth-child(5n) {
      margin-right: 0; }

.usp-wrapper {
  text-align: left;
  padding: 30px 0 0 0; }
  .usp-wrapper h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2em;
    text-align: center; }
  .usp-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; */
    }
    .usp-wrapper ul li {
      width: 31.33%;
      margin-right: 2%;
      background: #352e6c;
      border-radius: 20px;
      padding: 25px 35px;
      margin-bottom: 2%; }
      @media (max-width: 767px) {
        .usp-wrapper ul li {
          margin-right: 0;
          width: 100%; } }
      .usp-wrapper ul li p {
        font-weight: 500;
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 0;
        line-height: 1.2em; }
      .usp-wrapper ul li span {
        color: #e4af25; }
      .usp-wrapper ul li:nth-child(3n) {
        margin-right: 0; }

.home-services {
  background: url("../images/services-home-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  padding-bottom: 0; }
  .home-services ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    width: 100%;
    place-content: start space-between; }
    .home-services ul li {
      margin-bottom: 60px;
      /*flex: 0 0 33.3333%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;*/ }
      .home-services ul li.flex-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; }
      .home-services ul li p {
        color: #ffffff;
        margin-bottom: 0;
        line-height: 1.2em;
        font-size: 18px; }
      .home-services ul li img {
        width: 60px;
        margin-bottom: 10px; }

.about-us-wrapper .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .about-us-wrapper .about-text .image-wrapper {
    width: 50%; }
  .about-us-wrapper .about-text .about-us-content {
    width: 50%;
    background: #f6841f;
    padding: 60px 80px; }
    .about-us-wrapper .about-text .about-us-content h3 {
      color: #ffffff;
      line-height: 1.2em;
      font-size: 30px;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .about-us-wrapper .about-text .about-us-content p {
      color: #352e6c;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 0; }
  .about-us-wrapper .about-text.reverse .about-us-content {
    background: #e4af25; }

.mission-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .mission-wrapper .mission-text-wrapper {
    width: 50%;
    right: 0px;
    padding: 60px 80px;
    z-index: 1;
    top: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .mission-wrapper .mission-text-wrapper h3 {
      text-transform: uppercase;
      font-size: 30px;
      margin-bottom: 20px; }
    .mission-wrapper .mission-text-wrapper p {
      color: #352e6c;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 0;
      padding-right: 40px; }

.about-tech {
  padding: 60px 0 30px 0; }
  .about-tech h2 {
    color: #352e6c;
    font-size: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center; }
  .about-tech ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .about-tech ul li {
      width: 50%;
      margin-bottom: 30px; }
    .about-tech ul h3 {
      line-height: 1em;
      font-size: 30px;
      margin-bottom: 10px;
      font-weight: 400; }
    .about-tech ul p {
      color: #352e6c;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 0; }

.philosophy-wrapper {
  background: url("../images/philosophy-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .philosophy-wrapper .philosopy-text {
    padding: 116px 0; }
  .philosophy-wrapper h3 {
    line-height: 1em;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 400; }
  .philosophy-wrapper p {
    color: #352e6c;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0; }

.services-text {
  padding: 60px 0; }
  .services-text h2 {
    line-height: 1em;
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px; }
  .services-text p {
    text-align: center;
    color: #352e6c;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0; }
  .services-text ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px; }
    .services-text ul li {
      width: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-bottom: 2px solid #eeeeee;
      padding-right: 25px;
      padding-top: 25px;
      padding-bottom: 15px; }
      .services-text ul li:nth-child(2n) {
        border-left: 2px solid #eeeeee;
        padding-left: 25px;
        padding-right: 0; }
      .services-text ul li.first {
        padding-top: 0; }
      .services-text ul li.last {
        border-bottom: none;
        padding-bottom: 0; }
      .services-text ul li p {
        text-align: left;
        /*text-align: justify;*/
        font-weight: 600;
        margin-bottom: 10px; }
        .services-text ul li p span {
          color: #f6841f; }
      .services-text ul li h3 {
        font-size: 24px;
        line-height: 1.2em;
        font-weight: 400;
        color: #e4ac1c;
        margin-bottom: 20px; }
      .services-text ul li .services-img {
        margin-right: 25px;
        min-width: 80px;
        margin-top: 5px; }

.contact-text {
  padding: 60px 0; }
  .contact-text h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: #352e6c;
    letter-spacing: 0.5em;
    text-align: center;
    margin-bottom: 30px; }
  .contact-text .form-wrapper {
    width: 75%;
    margin: 0 auto;
    text-align: center; }
    @media (max-width: 767px) {
      .contact-text .form-wrapper {
        width: 100%; } }
    .contact-text .form-wrapper h3 {
      line-height: 1em;
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 20px;
      color: #e4af25;
      margin-top: 60px; }
    @media (max-width: 767px) {
      .contact-text .form-wrapper .wpcf7-list-item {
        display: block;
        margin: 0; } }
    .contact-text .form-wrapper input, .contact-text .form-wrapper textarea {
      border: 1px solid #293964;
      width: 100%;
      padding: 15px 20px;
      border-radius: 25px; }
      .contact-text .form-wrapper input[type="submit"], .contact-text .form-wrapper textarea[type="submit"] {
        width: 350px;
        background-color: #f6841f;
        color: #ffffff;
        border: none;
        display: block;
        margin: 0 auto;
        text-transform: uppercase;
        padding: 10px 30px;
        cursor: pointer;
        margin-top: 30px;
        font-size: 18px; }
        @media (max-width: 767px) {
          .contact-text .form-wrapper input[type="submit"], .contact-text .form-wrapper textarea[type="submit"] {
            width: 100%; } }
        .contact-text .form-wrapper input[type="submit"]:hover, .contact-text .form-wrapper textarea[type="submit"]:hover {
          color: #352e6c; }
    .contact-text .form-wrapper textarea {
      height: 120px;
      margin-bottom: 25px;
      display: block; }
    .contact-text .form-wrapper p {
      margin-bottom: 0;
      width: 100%; }
    .contact-text .form-wrapper .form-group {
      width: 70%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 auto; }
      @media (max-width: 767px) {
        .contact-text .form-wrapper .form-group {
          width: 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      .contact-text .form-wrapper .form-group .input-wrapper {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 25px; }
        @media (max-width: 767px) {
          .contact-text .form-wrapper .form-group .input-wrapper {
            width: 100%;
            margin-right: 0; } }
        .contact-text .form-wrapper .form-group .input-wrapper:nth-child(2n) {
          margin-right: 0; }
    .contact-text .form-wrapper .radio-wrapper .wpcf7-form-control.wpcf7-radio label {
      padding: 15px 30px;
      background-color: transparent;
      border: 1px solid #293964;
      border-radius: 35px;
      margin: 0;
      display: block;
      position: relative;
      line-height: 1.2em;
      cursor: pointer;
      margin-bottom: 20px; }
    .contact-text .form-wrapper .radio-wrapper .wpcf7-form-control.wpcf7-radio label input {
      opacity: 0;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
    .contact-text .form-wrapper .radio-wrapper .wpcf7-list-item-label {
      font-size: 16px; }
  .contact-text .map-wrapper {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e4af25; }
    .contact-text .map-wrapper .map-image {
      width: 50%; }
    .contact-text .map-wrapper .address {
      width: 50%;
      padding: 0 60px; }
      .contact-text .map-wrapper .address h3 {
        font-weight: 600;
        font-size: 40px;
        line-height: 1.2em;
        color: #352e6c;
        margin-bottom: 20px; }
      .contact-text .map-wrapper .address p {
        font-size: 20px;
        color: #352e6c;
        font-weight: 500;
        margin-bottom: 0; }
@media (max-width: 767px) {
  header .main-menu {
    background-color: #352e6c;
  }
  header .main-menu li a {
    margin-left: 0;
  }
  .about-wrapper .about-container {
    padding-top: 0;
  }
  .about-wrapper .container .about-img, .about-wrapper .container .about-text {
    width: 100%;
  }
  .product-range.about-wrapper {
    padding: 15px 0;
  }
  .home-services ul {
    grid-template-columns: auto auto;
    grid-gap: 40px;
  }
  .home-services {
    padding: 30px 10px;
  }
  .home-services ul li {
    margin-bottom: 0px;
  }
  .home-services ul li p br  {
      display: none;
  }
  .get-in-touch h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .get-in-touch h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .get-in-touch form input {
    width: 100%;
    margin-bottom: 15px;
  }
  .get-in-touch form input[type="submit"] {
    margin-left: 0;
  }
  .footer-wrapper .footer-content .contact-details .footer-menus {
    margin-right: 0;
    border: none;
    border-bottom: 2px solid #e4af25;
    border-top: 2px solid #e4af25;
    margin-top: 15px;
  }
  .footer-wrapper .footer-content .contact-details .contacts {
    margin-top: 0;
  }
  .footer-wrapper {
    padding: 0;
    padding-top: 30px;
  }
  .about-us-wrapper .about-text {
    flex-direction: column;
  }
  .about-us-wrapper .about-text .image-wrapper {
    width: 100%;
  }
  .about-us-wrapper .about-text .about-us-content {
    padding: 20px;
    width: 100%;
  }
  .about-us-wrapper .about-text.reverse .about-us-content {
    order: 1;
  }
  .mission-wrapper .mission-text-wrapper {
    position: relative;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    padding: 20px 0;
  }
  .mission-wrapper {
    display: block;
    background-color: #e4af25;
  }
  .about-tech {
    padding: 30px 0 0 0;
  }
  .about-tech ul p br {
    display: none;
  }
  .about-tech h2 {
    line-height: 1.2em;
  }
  .about-tech ul li {
    width: 100%;
  }
  .philosophy-wrapper {
    background-position: 40% center;
  }
  .philosophy-wrapper .philosopy-text {
    padding: 30px 0;
  }
  .services-text {
    padding: 30px 0;
  }
  .services-text ul li {
    width: 100%;
    padding-top: 20px;
    border-top: 2px solid #eeeeee;
  }
  .services-text ul li.last {
    border-bottom: 2px solid #eeeeee;
  }
  .services-text ul li:nth-child(2n) {
    border: none;
    padding-left: 0;
  }
  .services-text ul li.first {
    padding-top: 20px;
  }
  .contact-text {
    padding: 30px 0;
  }
  .contact-text h2 {
    line-height: 1.2em;
  }
  .contact-text .form-wrapper h3 {
    margin-top: 15px;
    font-size: 20px;
  }
  .contact-text .map-wrapper {
    flex-direction: column;
    overflow: hidden;
  }
  .contact-text .map-wrapper .map-image {
    overflow: hidden;
    width: 100%;
  }
  .contact-text .map-wrapper .map-image img {
    width: 110%;
  }
  .contact-text .map-wrapper .address {
    width: 100%;
    padding: 20px;
  }
  .contact-text .map-wrapper .address h3 {
    font-size: 30px;
  }
}

.website {
  color: #352e6c !important;
}

.director-wrapper {
    background: #f2f2f2;
    padding: 60px 0;
}

.director-wrapper .director-image {
    width: 45%;
    padding-right: 40px;
}

.director-wrapper .director-image img {
    border-radius: 30px;
}

span.desg {
    display: block;
    margin-bottom: 15px;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
    color: #f6841f;
}

.footer-wrapper .footer-content .contact-details .footer-menus.no-border {
    border-right: none;
}

.footer-wrapper .footer-content .contact-details .footer-menus.no-border .footer-menu {
    display: flex;
}

.footer-wrapper .footer-content .contact-details .footer-menus.no-border .footer-menu li {
    margin-right: 10px;
}

.footer-wrapper .footer-content .contact-details .footer-menus.no-border .footer-menu li:last-child {
    margin-right: 0;
}

.director-wrapper .director-text p {
    font-size: 18px;
    color: #352e6c;
    font-weight: 500;
    text-align: justify;
}

.director-wrapper .director-text h3 {
    line-height: 1em;
    margin-bottom: 5px;
    color: #352e6c;
}

.director-wrapper .director-content {
    display: flex;
}

.director-wrapper .director-text {
    width: 55%;
}

.whatsapp-icon a i {
    font-size: 40px !important;
}

.contact-text .form-wrapper .radio-wrapper .wpcf7-form-control.wpcf7-radio label input[type="radio"]:checked + span {
    font-weight: 600;
    color: #352e6c;
}

.testimonials {
    padding: 60px 0;
    border-top: 5px solid #f6841f;
    margin-top: 60px;
}

.testimonials ul {
    display: flex;
    flex-wrap: wrap;
}

.testimonials h3 {
    text-align: center;
    line-height: 1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonials .test-slider .test-content {
    width: 70%;
    margin: 0 auto;
    background: #eeeeee;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    padding-left: 90px;
    padding-top: 40px;
}

.testimonials .test-slider {
    margin-bottom: 0;
}


.testimonials .test-slider .test-content i {
    font-size: 60px;
    position: absolute;
    left: 20px;
    top: 20px;
}

/*.testimonials .test-slider li {*/
/*    background: #eeeeee;*/
/*    padding: 20px;*/
/*    border-radius: 20px;*/
/*}*/

/*.testimonials ul li {*/
/*    width: 49%;*/
/*    margin-bottom: 2%;*/
/*    margin-right: 2%;*/
/*    padding: 20px;*/
/*    background: #eeeeee;*/
/*    border-radius: 20px;*/
/*}*/

/*.testimonials ul li:nth-child(2n) {*/
/*    margin-right: 0;*/
/*}*/

.testimonials ul li p {
    font-size: 22px;
    font-weight: 500;
    color: #352e6c;
    margin-bottom: 10px;
}

span.author {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    color: #e4af25;
}

.digital-wrapper {
    padding: 140px 0;
    background: url('../images/digital-services-bg.jpg') no-repeat;
    background-size: cover;
}

.digital-wrapper h3 {
    text-align: center;
    line-height: 1em;
    margin-bottom: 20px;
    color: #352e6c;
}

.digital-wrapper p {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: center;
}

@media (max-width: 767px) {
    .testimonials .test-slider .test-content {
        width: 100%;
    }
    
    .testimonials h3 {
        font-size: 30px;
    }
    
    .digital-wrapper {
        padding: 30px 0;
    }
    
    .digital-wrapper h3 br {
        display: none;
    }
    
    .digital-wrapper h3 {
        font-size: 30px;
    }
    
    .testimonials {
        margin-top: 20px;
        padding: 20px 0 0 0;
    }
    
    .testimonials ul {
        display: block;
    }
    
    .testimonials ul li {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .director-wrapper {
        padding: 20px 0;
    }
    
    .director-wrapper .director-text h3 {
        font-size: 30px;
    }
    
    .director-wrapper .director-content {
        display: block;
    }
    
    .director-wrapper .director-text {
        width: 100%;
    }
    
    .director-wrapper .director-image {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .director-wrapper .director-image {
        border-radius: 30px;
    }
    
    .footer-wrapper .footer-content .contact-details .contacts .contact-list li p {
        text-align: left;
    }
    
    .footer-wrapper .footer-content .contact-details .footer-menus.no-border .footer-menu {
        display: flex;
        justify-content: center;
    }
    
    .footer-wrapper .footer-content .contact-details .footer-menus.no-border {
        border-right: none;
        border-bottom: 0;
        padding-bottom: 0;
    }
    .footer-wrapper .footer-content .contact-details .footer-menus.no-border p {
        margin-bottom: 10px;
    }
    .footer-wrapper .footer-content .contact-details .footer-menus.no-border li a {
        margin-bottom: 0;
    }
    
    .philosopy-text p br {
        display: none;
    }
}