a.btn {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  position: relative;
  color: #333333;
}

@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 23px;
  }
}

@media screen and (min-width: 1400px) {
  html,
  body {
    font-size: 25px;
  }
}

section {
  padding: 80px 0;
}

@media screen and (max-width: 900px) {
  section {
    padding: 40px 0;
  }
}

section > header {
  font-family: "Oswald", sans-serif;
  position: relative;
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
}

section > header::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 50px;
  height: 10px;
  width: 200px;
  background-color: #46C6FB;
}

section > header.header-white {
  color: white;
}

section > header.header-white::after {
  background-color: white;
}

section > .subheader {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

section > .subheader.subheader-white {
  color: white;
}

section > .wrapper {
  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;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.flex-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav {
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 900px) {
  .nav {
    font-size: 1.2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav > a.logo {
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav > a.logo > .name {
  font-size: 2.2em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  font-family: "Oswald", sans-serif;
  color: white;
}

@media screen and (max-width: 900px) {
  .nav > a.logo > .name {
    font-size: 8vw;
  }
}

.nav > a.logo > .desc {
  font-size: 1.3em;
  color: #46C6FB;
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .nav > a.logo > .desc {
    font-size: 4vw;
  }
}

.nav > .call-us {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 900px) {
  .nav > .call-us {
    width: 100%;
    text-align: center;
    display: none;
  }
}

.nav > .call-us > .name {
  color: #46C6FB;
  font-weight: 600;
  font-size: 1em;
}

.nav > .call-us > .tel {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  font-size: 2em;
  font-family: "Oswald", sans-serif;
}

#welcome {
  background-image: url(img/header-bg.png);
  background-size: cover;
  background-position: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  min-height: 650px;
}

@media screen and (max-width: 900px) {
  #welcome {
    background-position: center right;
  }
}

#welcome > .content-wrapper > h1 {
  text-align: center;
  font-weight: 700;
}

#welcome > .content-wrapper > h1 > .heading {
  font-size: 1.5em;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 900px) {
  #welcome > .content-wrapper > h1 > .heading {
    font-size: 5vw;
  }
}

#welcome > .content-wrapper > h1 > .desc {
  font-size: 1.2em;
  color: #46C6FB;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 900px) {
  #welcome > .content-wrapper > h1 > .desc {
    font-size: 4vw;
  }
}

#welcome > .content-wrapper > .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

#welcome > .content-wrapper > .btn-wrapper > .btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  color: white;
  padding: 15px 50px;
  background-color: #46C6FB;
  font-size: 1.5em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

#welcome > .content-wrapper > .btn-wrapper > .btn:first-child {
  margin-right: 10px;
}

#why-us {
  background-color: #46C6FB;
}

#why-us > .container {
  padding: 0 10%;
}

@media screen and (max-width: 900px) {
  #why-us > .container {
    padding: 0 2%;
  }
}

@media (max-width: 900px) {
  #why-us > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#why-us > .container > .list:first-child {
  margin-right: 10px;
}

@media (max-width: 900px) {
  #why-us > .container > .list:first-child {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  #why-us > .container > .list:last-child {
    margin: 0;
  }
}

#why-us > .container > .list > .list-item {
  padding-left: 10px;
  color: white;
  margin-bottom: 10px;
}

#services > .container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10%;
}

@media screen and (max-width: 900px) {
  #services > .container {
    padding: 0 2%;
  }
}

@media (max-width: 900px) {
  #services > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#services > .container > .list-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 900px) {
  #services > .container > .list-wrapper.second > .list {
    margin-top: 0;
  }
}

#services > .container > .list-wrapper > .list:first-child {
  margin-right: 10px;
}

@media (max-width: 900px) {
  #services > .container > .list-wrapper > .list:first-child {
    margin-bottom: 0;
  }
}

#services > .container > .list-wrapper > .list > .list-item {
  padding-left: 10px;
  margin-bottom: 10px;
}

#contact-us {
  background-image: url(img/contact-bg.png);
}

#contact-us > .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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 900px) {
  #contact-us > .container {
    padding: 0 10px;
  }
}

#contact-us > .container > .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 800px;
}

#contact-us > .container > .form > .input-field {
  margin-bottom: 10px;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact-us > .container > .form > .input-field,
#contact-us > .container > .form .input-field::-webkit-input-placeholder {
  font-size: 1em;
}

#contact-us > .container > .form > .input-field,
#contact-us > .container > .form .input-field:-ms-input-placeholder {
  font-size: 1em;
}

#contact-us > .container > .form > .input-field,
#contact-us > .container > .form .input-field::-ms-input-placeholder {
  font-size: 1em;
}

#contact-us > .container > .form > .input-field,
#contact-us > .container > .form .input-field::placeholder {
  font-size: 1em;
}

#contact-us > .container > .form > .submit {
  background-color: #333333;
  border: none;
  padding: 15px 0;
  color: white;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.3em;
  font-weight: 600;
}

#contact-us > .container > .note {
  max-width: 1000px;
  width: 100%;
  margin-top: 30px;
  color: white;
}

@media (max-width: 900px) {
  #contact-us > .container > .note {
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#contact-us > .container > .note > .note-col:first-child {
  margin-right: 30px;
}

#contact-us > .container > .note > .note-col > .header {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
}

#contact-us > .container > .note > .note-col > .list {
  margin: 0;
}

@media (max-width: 900px) {
  #contact-us > .container > .note > .note-col > .list {
    margin-bottom: 20px;
  }
}

#contact-us > .container > .note > .note-col > .list > .list-item {
  margin-bottom: 10px;
}

#contact-us > .container > .note > .note-col > .contact-info {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-us > .container > .note > .note-col > .contact-info > .contact-icon {
  margin-right: 10px;
}

@media screen and (max-width: 900px) {
  #contact-us > .container > .note > .note-col > .contact-info > .contact-icon {
    margin-left: 20px;
  }
}

#find-us {
  background-image: url(img/findus-bg.png);
  background-size: cover;
  background-position: bottom right;
}

@media (max-width: 900px) {
  #find-us {
    padding-bottom: 80px;
    padding-top: 20px;
    background-color: #333333;
  }
}

#find-us > .subheader {
  color: #46C6FB;
}

#find-us > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#find-us > .container > .wrapper#khan-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info {
    -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;
  }
}

#find-us > .container > .wrapper#khan-info > .flex-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#find-us > .container > .wrapper#khan-info > .flex-col:first-child {
  margin-right: 20px;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info > .flex-col:first-child {
    margin: 0;
  }
}

#find-us > .container > .wrapper#khan-info > .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#find-us > .container > .wrapper#khan-info > .image > img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info > .image {
    margin-bottom: 20px;
  }
}

#find-us > .container > .wrapper#khan-info > .info {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info > .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#find-us > .container > .wrapper#khan-info > .info > .info-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 10px;
}

#find-us > .container > .wrapper#khan-info > .info > .info-wrapper > .info-item {
  margin-bottom: 20px;
  width: 50%;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info > .info > .info-wrapper > .info-item {
    text-align: center;
    width: 100%;
  }
}

#find-us > .container > .wrapper#khan-info > .info > .info-wrapper > .info-item > .info-name {
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 5px;
  font-family: "Oswald", sans-serif;
}

#find-us > .container > .wrapper#khan-info > .info > .btn {
  padding: 15px 40px;
  background-color: #333333;
  color: white;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#khan-info > .info > .btn {
    margin: 20px 0;
  }
}

#find-us > .container > .wrapper#map {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  padding: 0 10px;
}

#find-us > .container > .wrapper#map > .flex-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#map > .flex-col {
    max-width: 500px;
  }
}

#find-us > .container > .wrapper#map > .info > .header {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-decoration: underline;
}

#find-us > .container > .wrapper#map > .map {
  width: 100%;
  height: 400px;
  margin-right: 20px;
}

@media screen and (max-width: 900px) {
  #find-us > .container > .wrapper#map > .map {
    height: 200px;
  }
}

#find-us > .container > .wrapper#map > .map > #gmap_canvas {
  width: 100%;
  height: 400px !important;
}

#footer {
  display: none;
  width: 100%;
  background-color: #46C6FB;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 0;
  text-align: center;
  position: relative;
  z-index: 9;
}

@media (max-width: 900px) {
  #footer {
    padding-bottom: 80px;
    padding-top: 20px;
    background-color: #333333;
  }
}

#footer > a {
  color: white;
  text-decoration: none;
  font-size: .8em;
}
/*# sourceMappingURL=main.css.map */

a {
  color: white;
  text-decoration: none;
}

.call-us .name a{
  color: #46C6FB;
}

.call-us a .tel {
  font-size: 2em;
}

a:hover {
  text-decoration: underline;
}

#khan-info a {
  color: #333333;
}

.mobile-call {
  display: none;
  position: fixed;
  height: 50px;
  width: 70%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  margin: auto;
  bottom: 10px;
  left: 2%;
  background-color: #46C6FB;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  font-size: 16px;
  font-weight: 600;
}

.mobile-call > a {
  text-decoration: none;
  color: white;
}

.floating-whatsapp {
  width: 100px;
  position: fixed;
  bottom: 10px;
  right: 2%;
  z-index: 10;
}

.floating-whatsapp img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .mobile-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
  }

  .floating-whatsapp {
    max-width: 100px;
    width: 20%;
  }
}