@-webkit-keyframes anim-slider-title {
  from {
    margin-left: 20px;
    opacity: 0;
  }
  to {
    margin-left: 0px;
    opacity: 1;
  }
}

@keyframes anim-slider-title {
  from {
    margin-left: 20px;
    opacity: 0;
  }
  to {
    margin-left: 0px;
    opacity: 1;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* webkit specific styles */
input[type="color"]::-webkit-color-swatch {
  border: none;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

/* 
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
}

body {
  line-height: 1;
}

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;
}

/* 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;
}

input:focus {
  outline: none;
}

ul,
ol {
  list-style-type: none;
}

html {
  font-size: 18px;
  font-family: "Noto Sans", san-serif;
  color: #b7b7b7;
  scroll-behavior: smooth;
}

section {
  width: 100%;
  height: auto;
}

h1 {
  color: #2a2a2a;
  font-family: "Poppins", san-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

h2 {
  color: #8c8c8c;
  font-family: "Montserrat", san-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}

a {
  text-decoration: none;
}

a.btn {
  font-family: "Poppins", san-serif;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  display: inline-block;
  background-color: #f4b581;
  border: 2px solid transparent;
}

a.btn:hover, #footer .qoute-container .qoute-form button[type="submit"]:hover {
  background-color: transparent;
  color: #f4b581;
  border-color: #f4b581;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.col-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#header.header-initial {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

#header.header-initial.header-sticky {
  background-color: white;
  -webkit-box-shadow: 0px 12px 10px -7px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 12px 10px -7px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  padding: 20px;
}

#header.header-initial.header-sticky .nav-list .burger-menu .bar {
  background-color: #f4b581;
}

#header.header-initial.header-sticky .nav-list .burger-menu .bar::before, #header.header-initial.header-sticky .nav-list .burger-menu .bar::after {
  background-color: #f4b581;
}

#header.header-initial .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-direction: row;
      flex-direction: row;
  padding: 0 20px;
}

#header.header-initial .brand img {
  width: 250px;
}

#header.header-initial .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 1;
}

#header.header-initial .nav-list .burger-menu {
  padding-top: 15px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.2s ease opacity;
  transition: 0.2s ease opacity;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#header.header-initial .nav-list .burger-menu.active {
  opacity: 0;
  visibility: hidden;
}

#header.header-initial .nav-list .burger-menu:hover .bar::after {
  width: 100%;
}

#header.header-initial .nav-list .burger-menu .bar {
  width: 100%;
  height: 4px;
  background-color: white;
  -webkit-transition: 0.2s ease background-color;
  transition: 0.2s ease background-color;
  position: relative;
}

#header.header-initial .nav-list .burger-menu .bar::before, #header.header-initial .nav-list .burger-menu .bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

#header.header-initial .nav-list .burger-menu .bar::before {
  top: -10px;
}

#header.header-initial .nav-list .burger-menu .bar:after {
  top: 10px;
  left: initial;
  right: 0;
  width: 50%;
}

.nav-container {
  position: relative;
  z-index: 97;
  width: 100%;
  height: auto;
  text-align: center;
}

.nav-container .global-nav {
  position: fixed;
  padding: 50px;
  top: 0;
  right: -50%;
  background-color: #f4b581;
  width: 20%;
  height: 100vh;
  z-index: 97;
  -webkit-transition: 0.3s ease right;
  transition: 0.3s ease right;
}

.nav-container .global-nav.active {
  right: 0;
}

.nav-container .global-nav .nav-link {
  width: 100%;
  cursor: pointer;
}

.nav-container .global-nav .nav-link:not(:last-child) {
  margin-bottom: 30px;
}

.nav-container .global-nav .nav-link a {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
}

.nav-container .global-nav .nav-link a:hover {
  color: #2a2a2a;
}

.nav-container .global-nav .nav-link.active a {
  color: #2a2a2a;
}

.nav-container .global-nav .socials {
  margin-bottom: 80px;
}

.nav-container .global-nav .socials a {
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
  color: #fff;
}

.nav-container .global-nav .socials a:not(:last-child) {
  margin-right: 20px;
}

.nav-container .global-nav .socials a:hover {
  color: #2a2a2a;
}

.nav-container .global-nav .btn-close {
  position: absolute;
  top: 43px;
  left: -60px;
  width: 35px;
  height: 5px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.nav-container .global-nav .btn-close::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 10px;
  background-color: #fff;
  -webkit-transform: rotate(-80deg) translate(8px, -3px);
          transform: rotate(-80deg) translate(8px, -3px);
}

.nav-container .global-nav .btn-close:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.nav-container .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #2a2a2a;
  visibility: hidden;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
  /* will be "on top", if browser supports it */
  background-image: -webkit-gradient(linear, right top, left top, from(#2a2a2a), to(#e0e0e0));
  background-image: linear-gradient(to left, #2a2a2a, #e0e0e0);
  z-index: 96;
}

.nav-container .overlay.active {
  opacity: 0.7;
  visibility: initial;
}

.to-top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 80px;
  height: 80px;
  z-index: 10;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  visibility: hidden;
}

.to-top-btn a {
  border-radius: 50%;
  background-color: white;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f4b581;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: visibility, -webkit-transform;
  transition-property: visibility, -webkit-transform;
  transition-property: transform, visibility;
  transition-property: transform, visibility, -webkit-transform;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.to-top-btn a span {
  border: solid #f4b581;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 5px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.3s ease border-color;
  transition: 0.3s ease border-color;
}

.to-top-btn a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.to-top-btn a:hover span {
  border-color: #2a2a2a;
}

.to-top-btn.active {
  visibility: initial;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#hero {
  height: 850px;
  position: relative;
  z-index: 1;
}

#hero .hero {
  height: 100%;
  padding: 0 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}

#hero h1 {
  color: #fff;
  font-size: 4rem;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

#hero h1 span {
  color: #f4b581;
}

#hero p {
  width: 55%;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#hero .cta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}

#hero .cta-container .btn-consult {
  background-color: #f4b581;
  margin-right: 20px;
}

#hero .cta-container .btn-consult:hover {
  color: #f4b581;
  background-color: #fff;
  border-color: #fff;
}

#hero .cta-container .btn-view-design {
  color: #f4b581;
  background-color: #fff;
}

#hero .cta-container .btn-view-design:hover {
  color: #fff;
  background-color: #f4b581;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 238, 238, 0.4);
  z-index: -1;
}

#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/flipped-kv.jpg");
  background-position: center;
  background-size: cover;
  z-index: -2;
}

#about-us .about-us {
  padding: 180px 20px;
}

#about-us .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#about-us .col-left {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 100%;
  min-height: 300px;
}

#about-us .col-left img {
  position: absolute;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about-us .col-left img:nth-child(1) {
  top: 20px;
  z-index: 2;
}

#about-us .col-left img:nth-child(2) {
  top: 20px;
  z-index: 1;
  top: -15%;
  left: 20%;
}

#about-us .col-left .decoy-div {
  position: absolute;
  top: -4%;
  left: 10%;
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  background-color: #f4b581;
  z-index: 0;
}

#about-us .col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  padding-left: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#about-us .btn {
  margin-top: 20px;
}

#about-us .btn:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#our-design {
  background-color: #fbfbfb;
}

#our-design .container {
  padding: 150px 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
}

#our-design .container > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#our-design .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 50px;
}

#our-design .col-left div:nth-child(1) {
  width: 535px;
}

#our-design .col-left .btn {
  margin-top: 20px;
}

#our-design .col-left .btn:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#our-design .col-right {
  background-color: #f4b581;
}

#our-design .slider-container {
  padding: 50px 0px 60px 50px;
}

#our-design .slider-data-container {
  padding-left: 50px;
  width: 100%;
}

#our-design .slider-data-container .slider-title {
  opacity: 0;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
  color: #fff;
}

#our-design .slider-data-container .slider-title.s-title-animate {
  -webkit-animation: anim-slider-title 1.5s forwards;
          animation: anim-slider-title 1.5s forwards;
}

#our-design .slider-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#our-design .slider-content #slider-images {
  position: relative;
  height: 450px;
}

#our-design .slider-content #slider-images img {
  position: absolute;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 2.2s ease opacity;
  transition: 2.2s ease opacity;
}

#our-design .slider-content #slider-images img.active {
  opacity: 1;
  visibility: initial;
}

#our-design .slider-content ul {
  list-style-type: none;
  display: block;
}

#our-design .slider-content ul li {
  width: 15px;
  height: 15px;
  background-color: #e0e0e0;
  display: block;
  margin: 15px 0;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
}

#our-design .slider-content ul li.active, #our-design .slider-content ul li:hover {
  background-color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#testimonial {
  position: relative;
}

#testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 238, 238, 0.3);
  z-index: -1;
}

#testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/testi-bg.jpg");
  background-position: top center;
  background-size: cover;
  z-index: -2;
}

#testimonial .testimonial {
  padding: 150px 20px;
}

#testimonial h2 {
  color: #fff;
}

#testimonial h1 {
  color: #f4b581;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#testimonial .testimonial-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 50px;
}

#testimonial .testimonial-container .testimonial-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  max-width: 350px;
  background-color: #fff;
  padding: 70px 40px 50px 40px;
  text-align: center;
  position: relative;
  border-bottom: 5px solid #f4b581;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
}

#testimonial .testimonial-container .testimonial-item:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

#testimonial .testimonial-container .testimonial-item::after {
  content: "\201D";
  color: white;
  font-family: "Poppins", san-serif !important;
  font-size: 5rem;
  position: absolute;
  line-height: 95%;
  left: 40px;
  top: -25px;
  padding: 10px;
  width: 40px;
  height: 40px;
  background-color: #f4b581;
}

#testimonial .testimonial-container .testimonial-item img {
  border-radius: 50%;
  max-width: 120px;
  border: 1px solid #e0e0e0;
}

#testimonial .testimonial-container .testimonial-item h3 {
  color: #2a2a2a;
  font-family: "Poppins", san-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 50px;
}

#testimonial .testimonial-container .testimonial-item p.user-say {
  margin-top: 25px;
}

#testimonial .testimonial-container .testimonial-item p.position {
  font-style: italic;
  color: #f4b581;
}

#testimonial .testimonial-container .testimonial-item:not(:nth-child(2)) {
  margin-top: 100px;
}

#insight {
  background-color: #f4b581;
}

#insight .insight {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 50px 20px;
}

#insight .insight .insight-item {
  color: #fff;
  width: 100%;
  text-align: center;
}

#insight .insight .insight-item p {
  line-height: normal;
}

#insight .insight .insight-item .number {
  font-size: 4rem;
  font-family: "Poppins", san-serif;
  font-weight: 700;
  line-height: 1em;
}

#insight .insight .insight-item .description {
  font-family: "Montserrat", san-serif;
  font-size: 1.2rem;
}

#footer .footer {
  padding: 100px 20px;
}

#footer .qoute-container {
  width: 100%;
}

#footer .qoute-container .section-title {
  text-align: center;
}

#footer .qoute-container .qoute-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: row;
      flex-direction: row;
  width: 50%;
  margin: auto;
  -webkit-box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.032);
          box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.032);
  margin-top: 50px;
}

#footer .qoute-container .qoute-form button[type="submit"] {
  background-color: #f4b581;
  border: 0;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 50px;
  font-size: 1rem;
  -webkit-transition: 0.3s ease background-color, color;
  transition: 0.3s ease background-color, color;
  border: 2px solid transparent;
  width: 30%;
}

#footer .qoute-container .qoute-form button[type="submit"]:hover {
  border: 2px solid #f4b581;
}

#footer .qoute-container .qoute-form .input-container {
  width: 70%;
  position: relative;
}

#footer .qoute-container .qoute-form .input-container input {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 15px 20px 15px 60px;
  font-size: 1rem;
  height: 55px;
  color: #2a2a2a;
  position: relative;
}

#footer .qoute-container .qoute-form .input-container input::-webkit-input-placeholder {
  color: #b7b7b7;
}

#footer .qoute-container .qoute-form .input-container input:-ms-input-placeholder {
  color: #b7b7b7;
}

#footer .qoute-container .qoute-form .input-container input::-ms-input-placeholder {
  color: #b7b7b7;
}

#footer .qoute-container .qoute-form .input-container input::placeholder {
  color: #b7b7b7;
}

#footer .qoute-container .qoute-form .input-container #icon-text-box {
  font-size: 1.5rem;
  position: absolute;
  top: 13px;
  left: 20px;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
}

#footer .qoute-container .qoute-form .input-container #icon-text-box.focusing {
  color: #f4b581;
}

#footer .footer-extend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 100px;
  width: 100%;
}

#footer .footer-extend .col {
  width: 100%;
}

#footer .footer-extend .col .title {
  font-family: "Poppins", san-serif;
  color: #2a2a2a;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#footer .footer-extend .col.navigation {
  width: 80%;
}

#footer .footer-extend .col p,
#footer .footer-extend .col a {
  font-size: 0.9rem;
}

#footer .footer-extend .col a {
  color: #f4b581;
}

#footer .footer-extend .col .footer-nav ul li {
  cursor: pointer;
}

#footer .footer-extend .col .footer-nav ul li:not(:last-child) {
  margin-bottom: 15px;
}

#footer .footer-extend .col .footer-nav ul li a {
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
  color: #2a2a2a;
}

#footer .footer-extend .col .footer-nav ul li a:hover {
  color: #f4b581;
}

#footer .footer-extend .col .footer-nav ul li.active a {
  color: #f4b581;
}

#footer .footer-extend .col.contact-info p {
  color: #2a2a2a;
}

#footer .footer-extend .col.contact-info p:not(:last-child) {
  margin-bottom: 10px;
}

#footer .footer-extend .col.social a {
  font-size: 1.5rem;
  color: #2a2a2a;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
}

#footer .footer-extend .col.social a:not(:last-child) {
  margin-right: 10px;
}

#footer .footer-extend .col.social a:hover {
  color: #f4b581;
}

#footer .footer-extend .col.social a.active {
  color: #f4b581;
}

#footer .footer-extend .footer-brand img {
  width: 100%;
  max-width: 200px;
}

#footer .copyright {
  background-color: #fbfbfb;
  padding: 50px 20px;
}

#footer .copyright p {
  text-align: center;
  font-family: "Poppins", san-serif;
  font-size: 0.8rem;
}

#footer .copyright a {
  color: #f4b581;
}

@media (min-width: 320px) and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  a.btn {
    padding: 10px 25px;
    text-align: center;
  }
  .to-top-btn {
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 50px;
  }
  .nav-container .global-nav {
    width: 70%;
    right: -100%;
  }
  #header #header-brand {
    width: 150px;
  }
  #header.header-initial.header-sticky .header {
    padding: 0;
  }
  #hero {
    height: 520px;
  }
  #hero .container {
    padding-top: 65px;
  }
  #hero h1 {
    font-size: 2rem;
    text-align: left;
  }
  #hero h1 span {
    display: block;
  }
  #hero p {
    text-align: left;
    width: 100%;
  }
  #hero .cta-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #hero .cta-container a {
    width: 100%;
  }
  #about-us .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 20px 35px 20px;
  }
  #about-us .container > div {
    width: 100%;
  }
  #about-us .col-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #about-us .col-left img,
  #about-us .col-left .decoy-div {
    max-width: 170px;
    max-height: 170px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  #about-us .col-left img:nth-child(1), #about-us .col-left img:nth-child(2) {
    top: inherit;
    left: inherit;
    right: inherit;
  }
  #about-us .col-left img:nth-child(1) {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  #about-us .col-left img:nth-child(2) {
    -webkit-transform: translate(30px, -50px);
            transform: translate(30px, -50px);
  }
  #about-us .col-left .decoy-div {
    -webkit-transform: translate(-2px, -20px);
            transform: translate(-2px, -20px);
  }
  #about-us .col-right {
    padding: 0;
  }
  #our-design .container {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #our-design .col-left {
    padding: 50px 20px;
  }
  #our-design .col-left div:nth-child(1) {
    width: 100%;
  }
  #our-design .col-right {
    width: 100%;
  }
  #our-design .col-right .slider-container {
    padding: 50px 0;
  }
  #our-design .col-right .slider-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #our-design .col-right .slider-content .slider-data-container {
    padding: 0;
  }
  #our-design .col-right .slider-content .slider-title {
    text-align: center;
  }
  #our-design .col-right .slider-content ul {
    margin-bottom: 40px;
  }
  #our-design .col-right .slider-content ul li {
    margin: 0 8px;
    display: inline-block;
  }
  #our-design .col-right .slider-content #slider-images {
    height: 100%;
    min-height: 200px;
  }
  #testimonial .container {
    padding: 100px 20px;
  }
  #testimonial h1 {
    text-align: center;
  }
  #testimonial .testimonial-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
  #testimonial .testimonial-container .testimonial-item {
    padding: 80px 10px 50px 10px;
  }
  #testimonial .testimonial-container .testimonial-item:not(:nth-child(2)) {
    margin: 0;
  }
  #testimonial .testimonial-container .testimonial-item:nth-child(2) {
    margin: 80px 0;
  }
  #testimonial .testimonial-container .testimonial-item::after {
    top: -30px;
    left: 20px;
    line-height: 1;
  }
  #insight .container {
    padding: 30px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #insight .insight-item {
    margin: 30px 0;
  }
  #footer .container {
    padding: 80px 20px;
  }
  #footer .qoute-container .qoute-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #footer .qoute-container .qoute-form .input-container {
    width: 100%;
  }
  #footer .qoute-container .qoute-form .input-container #icon-text-box {
    top: 17px;
  }
  #footer .qoute-container .qoute-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
  }
  #footer .footer-extend {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .footer-extend > div {
    margin: 20px 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  a.btn {
    padding: 10px 25px;
    text-align: center;
  }
  .to-top-btn {
    width: 70px;
    height: 70px;
    right: 25px;
    bottom: 50px;
  }
  .nav-container .global-nav {
    width: 70%;
    right: -100%;
  }
  #header #header-brand {
    width: 150px;
  }
  #header.header-initial.header-sticky .header {
    padding: 0;
  }
  #hero {
    height: 595px;
  }
  #hero h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    text-align: left;
  }
  #hero h1 span {
    display: block;
  }
  #hero p {
    width: 85%;
  }
  #about-us .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 20px;
  }
  #about-us .col-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    min-height: 400px;
  }
  #about-us .col-left img,
  #about-us .col-left .decoy-div {
    max-width: 280px;
    max-height: 280px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  #about-us .col-left img:nth-child(1), #about-us .col-left img:nth-child(2) {
    top: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
  }
  #about-us .col-left img:nth-child(1) {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  #about-us .col-left img:nth-child(2) {
    -webkit-transform: translate(25px, -40px);
            transform: translate(25px, -40px);
  }
  #about-us .col-left .decoy-div {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  #about-us .col-right {
    margin-top: 40px;
    padding-left: 0;
  }
  #our-design .container {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #our-design .col-left {
    padding: 50px 20px;
  }
  #our-design .col-left div:nth-child(1) {
    width: 100%;
  }
  #our-design .col-right {
    width: 100%;
  }
  #our-design .col-right .slider-container {
    padding: 50px 0;
  }
  #our-design .col-right .slider-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #our-design .col-right .slider-content .slider-data-container {
    padding: 0;
  }
  #our-design .col-right .slider-content .slider-title {
    text-align: center;
  }
  #our-design .col-right .slider-content ul {
    margin-bottom: 40px;
  }
  #our-design .col-right .slider-content ul li {
    margin: 0 8px;
    display: inline-block;
  }
  #our-design .col-right .slider-content #slider-images {
    margin-top: 35px;
    height: 100%;
    min-height: 350px;
  }
  #testimonial .container {
    padding: 100px 20px;
  }
  #testimonial h1 {
    text-align: center;
  }
  #testimonial .testimonial-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
  #testimonial .testimonial-container .testimonial-item {
    padding: 80px 25px 50px 25px;
  }
  #testimonial .testimonial-container .testimonial-item:not(:nth-child(2)) {
    margin: 0;
  }
  #testimonial .testimonial-container .testimonial-item:nth-child(2) {
    margin: 80px 0;
  }
  #testimonial .testimonial-container .testimonial-item::after {
    top: -30px;
    left: 30px;
    line-height: 1;
  }
  #insight .container {
    padding: 30px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #insight .insight-item {
    margin: 30px 0;
  }
  #footer .container {
    padding: 80px 20px;
  }
  #footer .qoute-container .qoute-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #footer .qoute-container .qoute-form .input-container {
    width: 100%;
  }
  #footer .qoute-container .qoute-form .input-container #icon-text-box {
    top: 17px;
  }
  #footer .qoute-container .qoute-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
  }
  #footer .footer-extend {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .footer-extend > div {
    margin: 20px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container .global-nav {
    width: 40%;
    right: -100%;
  }
  #hero h1 {
    text-align: left;
  }
  #hero h1 span {
    display: block;
  }
  #hero p {
    width: 70%;
  }
  #about-us .container {
    padding: 90px 20px;
  }
  #about-us .col-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  #about-us .col-left img,
  #about-us .col-left .decoy-div {
    max-width: 220px;
    max-height: 220px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  #about-us .col-left img:nth-child(1), #about-us .col-left img:nth-child(2) {
    top: inherit;
    left: inherit;
    right: inherit;
  }
  #about-us .col-left img:nth-child(1) {
    -webkit-transform: translate(-30px, 10px);
            transform: translate(-30px, 10px);
  }
  #about-us .col-left img:nth-child(2) {
    -webkit-transform: translate(30px, -30px);
            transform: translate(30px, -30px);
  }
  #about-us .col-left .decoy-div {
    -webkit-transform: translate(0px, -10px);
            transform: translate(0px, -10px);
  }
  #about-us .col-right {
    padding-left: 20px;
  }
  #our-design .container {
    padding: 90px 0;
  }
  #our-design .container > div {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  #our-design .container > div:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    padding-left: 20px;
  }
  #our-design .container > div:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }
  #our-design .col-left div:nth-child(1) {
    width: 100%;
  }
  #our-design .slider-data-container .slider-title {
    font-size: 1.7rem;
  }
  #testimonial .container {
    padding: 90px 20px;
  }
  #testimonial .testimonial-container .testimonial-item {
    padding: 50px 20px 30px 20px;
    margin: 5px;
  }
  #testimonial .testimonial-container .testimonial-item img {
    max-width: 100px;
  }
  #footer .qoute-container .qoute-form {
    width: 70%;
  }
  #footer .footer-extend .col .title {
    font-size: 0.9rem;
  }
  #footer .footer-extend .footer-brand img {
    max-width: 150px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-container .global-nav {
    width: 40%;
    right: -100%;
  }
  #our-design .container > div {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  #our-design .container > div:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    padding-left: 20px;
  }
  #our-design .container > div:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }
  #our-design .col-left div:nth-child(1) {
    width: 100%;
  }
  #our-design .slider-data-container .slider-title {
    font-size: 1.7rem;
  }
}
/*# sourceMappingURL=main.css.map */