body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--background-color);
}

.as-hero {
  min-height: 10vh;
  background: var(--background-color);
  display: flex;
  align-items: center;
  position: relative;
}

.as-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.as-hero-inner {
  max-width: 1200px;
  padding: 0 16px;
  margin: auto;
  position: relative;
}

.as-hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s ease forwards;
}

.as-about-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.as-image-wrapper {
  position: relative;
  z-index: 1;
}

.as-section-label::before,
.as-section-label::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.as-section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.as-about-content p,
.as-experience-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
}

.as-outline-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .as-about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .as-image-wrapper::before {
    display: none;
  }
}

.as-experience {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--background-color) 0%, #f9f9f9 50%, var(--background-color) 100%);
  position: relative;
}

.as-experience-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.as-experience-image.as-image-wrapper::before {
  top: auto;
  left: auto;
  bottom: -30px;
  right: -30px;
}

@media (max-width: 900px) {
  .as-experience-inner {
    grid-template-columns: 1fr;
  }
}

.as-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.as-stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.as-stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--background-color);
  font-family: 'Open Sans', sans-serif;
}

.as-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.as-detail-content .as-section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.as-services-head .as-section-label::before,
.as-services-head .as-section-label::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.as-services-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.as-service-detail {
  padding: 20px 0;
  background: var(--background-color);
}

.as-detail-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.as-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.as-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.as-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.as-primary-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary-color);
  color: var(--background-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  border-radius: 0;
}

.as-primary-btn:hover {
  background: transparent;
  color: var(--primary-color);
}

.as-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.as-feature-item {
  padding: 40px;
  background: var(--background-color);
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.as-feature-item:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.as-feature-item i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.as-feature-item:hover i {
  transform: scale(1.1);
}

.as-feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.4;
}

.as-feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

.as-why-section {
  padding: 20px 0;
  background: #fafafa;
}

.as-why-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.as-why-list li {
  position: relative;
  padding-left: 35px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  font-weight: 600;
}

.as-why-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 20px;
}

@media (max-width: 900px) {
  .as-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .as-why-list {
    grid-template-columns: 1fr;
  }

  .as-service-detail,
  .as-why-section {
    padding: 60px 0;
  }
}

.as-hero {
  min-height: 20vh;
  background: var(--background-color);
  display: flex;
  align-items: center;
  position: relative;
}

.as-director-section {
  padding: 20px 0 80px 0;
  background: var(--background-color);
}

.as-director-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.as-director-profile {
  background: var(--background-color);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: sticky;
  top: 20px;
}

.as-director-profile:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.as-director-profile img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 4px solid #f5f5f5;
  transition: all 0.3s ease;
}

.as-director-profile:hover img {
  border-color: var(--secondary-color);
}

.as-director-profile h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.as-director-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.as-director-divider {
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
  margin: 0 auto;
}

.as-director-message {
  background: var(--background-color);
}

.as-director-message p {
  font-size: 16px;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 24px;
  text-align: justify;
}

.as-director-quote {
  background: #f9f9f9;
  border-left: 4px solid var(--primary-color);
  padding: 30px 40px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.as-director-quote p {
  font-size: 17px;
  font-style: italic;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.as-director-signature {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .as-director-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .as-director-profile {
    position: relative;
    top: 0;
  }

  .as-director-quote {
    padding: 24px 28px;
  }
}

@media (max-width: 600px) {
  .as-director-section {
    padding: 60px 0;
  }

  .as-director-profile {
    padding: 30px 20px;
  }

  .as-director-message p {
    text-align: left;
  }
}

.as-section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.as-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.as-contact-list li i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-top: 4px;
}

.as-contact-list li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #000;
}

.as-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.as-form-group {
  position: relative;
}

.as-form-group.full-width {
  grid-column: span 2;
}

.as-primary-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--primary-color);
  color: var(--background-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--background-color);
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.as-section {
  padding: 60px 0;
  position: relative;
}

.as-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.as-content-section {
  background: var(--background-color);
  position: relative;
  padding: 20px 0 80px 0;
}

.as-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  text-align: left;
}

.as-content-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 10px;
}

.as-content-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 15px;
}

.as-content-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.as-content-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 8px;
  position: relative;
}

.as-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.as-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.as-content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.as-content-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.as-content-image img:hover {
  transform: translateY(-5px);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 1024px) {

  .dropdown {
    position: relative;
    display: block;
  }

  .dropdown-content a {
    height: 500px;
  }

}

@media screen and (max-width: 1024px) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    justify-content: center;
    text-align: center;
    display: flexbox;
  }




  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #464646;
  }

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color: var(--background-color);
  }



}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
blockquote,
th,
td {
  margin: -4;
  padding: 0;
  direction: ltr;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p {
  line-height: 25px;
  text-align: justify;
}

a {
  text-decoration: none;
  line-height: inherit;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

iframe {
  border: 0 !important;
}

figure {
  margin: 0;
}

#wrapper {
  margin: 0 15px;
  padding: 15px 0;
  position: relative;
}

input,
textarea {
  border: 1px solid #e1e1e1;
  padding: 10px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 3px;
}

input {
  height: 40px;
  margin: 3px 0;
  outline: none;
  line-height: normal;
  font-size: 14px;
}

input[type="submit"] {
  cursor: pointer;
  border-style: solid;
  border-width: 2px;
  padding-top: 0;
  padding-bottom: 0;
}

select {
  border: 1px solid #e1e1e1;
  height: 40px;
  padding: 5px;
}

input:focus,
textarea:focus {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

*:focus {
  outline: none;
}

section {
  clear: both;
  overflow: hidden;
}

[class*='col-'] {
  float: left;
  padding: 10px;
}

#header {
  height: 130px !important;
  overflow: visible;
  z-index: 9999;
  width: 100%;
  position: fixed !important;
  background-color: #fff;
}

@media only screen and (max-width: 1024px) {
  #header {
    height: 166px !important;
    overflow: visible;
    z-index: 9999;
    width: 100%;
    position: fixed !important;
    background-color: #fff;
  }
}

#header aside {
  text-align: right;
}

#header ul {
  text-align: center;
}

#header li {
  display: inline-block;
  list-style: none;
  margin: 0;
}

#video-section {
  position: relative;
}

#header {
  font-size: 13px;
  height: 70px;
}

#header aside {
  float: right;
}

#header nav ul {
  /* text-transform: uppercase; */

}

#header nav a {
  height: 40px;
  line-height: 40px;
  display: block;
  padding: 0 10px;
}

#header nav a:hover {
  opacity: 0.6;
}

#nav-trigger {
  display: none;
  text-align: right;
}

#nav-trigger span {
  display: inline-block;
  width: 38px;
  height: 1px;
  color: var(--text-dark);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 35px;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#nav-trigger span:after {
  font-family: "fontAwesome";
  display: inline-block;
  width: 38px;
  height: 71px;
  line-height: 75px;
  text-align: center;
  content: "\f0c9";
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

nav#nav-mobile {
  position: relative;
  display: none;
  height: 200px;
}

nav#nav-mobile ul {
  display: none;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
}

nav#nav-mobile ul:after {
  display: none;
  /* height: 700px; */
}

nav#nav-mobile li {
  margin: 0 20px;
  float: none;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}

nav#nav-mobile li:last-child {
  border-bottom: none;
}

nav#nav-mobile a {
  display: block;
  padding: 12px 0;
  color: #333;
  width: 100%;
  height: auto;
  line-height: normal;
  display: block;
  border-bottom: none !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

nav#nav-mobile a:hover {
  background: #fafafa;
  opacity: 1;
}

img {
  vertical-align: top;
}

a img {
  border: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-backface-visibility: hidden;
}

a img:hover {
  opacity: 0.7;
}

h1 {
  padding: 20px 0;
}

h2 {
  padding: 14px 0;
}

h3 {
  padding: 10px 0;
}

h4 {
  padding: 7px 0;
}

h5 {
  padding: 7px 0;
}

h6 {
  padding: 7px 0;
}

.section-heading {
  padding: 0 0 15px 0;
}

.section-heading h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-dark);
  letter-spacing: 2px;
  padding-bottom: 0;
}

#banner {
  background-size: cover;
}

#banner h1 {
  padding-top: 10%;
}

@media only screen and (max-width: 1024px) {
  #banner h1 {
    padding-top: 20%;
  }
}

#banner .section-heading:before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  margin-top: 30px;
}

blockquote {
  position: relative;
}

#gallery img {
  max-height: 300px;
}

#gallery [class*='col-'] {
  padding: 0;
}

#gallery a {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#gallery a:hover img {
  opacity: 0.15;
  -moz-backface-visibility: hidden;
}

#gallery a:before {
  font-size: 2.2em;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  content: "+";
  width: 70px;
  height: 70px;
  border-radius: 100em;
  display: block;
  position: absolute;
  top: 55%;
  left: 50%;
  line-height: 72px;
  margin: -35px 0 0 -35px;
  opacity: 0;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  transition: all .2s linear;
  vertical-align: middle;
}

#gallery a:hover:before {
  opacity: 1;
  top: 50%;
  left: 50%;
}

@media only screen and (max-width: 1024px) {
  .featherlight {
    display: none;

    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    /* z-index needs to be >= elements on the site. */

    /* position: centering content */
    text-align: center;

    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;

    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: rgba(0, 0, 0, 0);
  }

  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }

  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

  .featherlight .featherlight-content {

    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;

    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 0;
    border-bottom: 25px solid transparent;

    /* dimensions: handling small or empty content */
    min-width: 30%;

    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;

    /* styling */
    cursor: auto;

    /* reset white-space wrapping */
    white-space: normal;
  }

  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }

  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 25px;
    right: 25px;

    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;

    /* styling */
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-family: "fontawesome";
    font-size: 22px;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .featherlight .featherlight-close-icon:hover {
    opacity: 1;
  }

  .featherlight .featherlight-image {
    /* styling */
    max-height: 100%;
    max-width: 100%;
  }

  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
  }

  .featherlight iframe {
    /* styling */
    border: none;
  }
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;

    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }

}

@media all {

  .featherlight-next,
  .featherlight-previous {
    font-family: "fontawesome";
    font-size: 22px;
    display: block;
    position: absolute;
    top: 25px;
    right: 0;
    bottom: 0;
    left: 80%;
    cursor: pointer;
    /* preventing text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* IE9 hack, otherwise navigation doesn't appear */
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .featherlight-previous {
    left: 0;
    right: 80%;
  }

  .featherlight-next span,
  .featherlight-previous span {
    display: inline-block;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    width: 100%;
    font-size: 80px;
    line-height: 80px;

    /* center vertically */
    margin-top: -40px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .featherlight-next span {
    text-align: right;
    left: auto;
    right: 7%;
  }

  .featherlight-previous span {
    text-align: left;
    left: 7%;
  }

  .featherlight-next:hover span,
  .featherlight-previous:hover span {
    display: inline-block;
    opacity: 1;
  }

  /* Hide navigation while loading */
  .featherlight-loading .featherlight-previous,
  .featherlight-loading .featherlight-next {
    display: none;
  }
}

@media only screen and (max-device-width: 1024px) {

  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: none;
  }

  .featherlight-next span,
  .featherlight-previous span {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {

  .featherlight-next,
  .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%;
  }

  .featherlight-previous {
    left: 10px;
    right: 85%;
  }

  .featherlight-next span,
  .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px;
  }
}

#video-box {
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#slvj-window {
  width: 100%;
  min-height: 100%;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}

#slvj-window,
#slvj-window * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#slvj-background-close {
  width: 100%;
  min-height: 100%;
  z-index: 31;
  position: fixed;
  top: 0;
  left: 0;
}

#slvj-back-lightbox {
  max-width: 940px;
  max-height: 529px;
  z-index: 32;
  text-align: center;
  margin: 0 auto;
}

#slvj-close-icon:before {
  font-family: "fontawesome";
  color: #fff;
  content: '\f00d';
  font-size: 22px;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 99999;
  height: 22px;
  width: 22px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

#slvj-close-icon:before:hover {
  opacity: 1;
  cursor: pointer;
}

#clients a {
  display: block;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

#clients img {
  display: inline-block;
  padding: 15px 25px;
}

#landing-footer {
  clear: both;
  padding-bottom: 15px;
}

#landing-footer p {
  margin: 0;
}

#landing-footer ul {
  list-style: none;
  text-align: right;
}

#landing-footer li {
  display: inline-block;
}

#scrollUp {
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
}

#scrollUp:hover {
  transform: translateY(-5px) scale(1.05);
}

#scrollUp:before {
  background: var(--primary-color);
  /* Brand Accent Color */
  font-family: "fontawesome";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  content: "\f106";
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#scrollUp:hover:before {
  background: #e6861f;
  /* Darker shade on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#status {
  width: 110px;
  height: 110px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-position: center;
  margin: -55px 0 0 -55px;
  /* is width and height divided by two */
  text-align: center;
}

@media all and (max-width: 1024px) {
  #nav-trigger {
    display: block;
  }

  nav#nav-main {
    display: none;
  }

  nav#nav-mobile {
    display: block;
  }

  nav#nav-mobile li {
    display: block;
  }

  #header aside {
    display: none;
  }
}

@media (max-width: 640px) {

  aside {
    display: none;
  }
}

@media (max-width: 480px) {

  #wrapper {
    margin: 0;
    padding: 0;
  }

  .page-border,
  #scrollUp,
  #scrollUp:before {
    display: none;
  }

  .row {
    padding: 15px !important;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-2-3,
  .col-3-4,
  .col-9-10,
  .col-61,
  .col-38,
  .row {
    width: 100%;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-2-3,
  .col-3-4,
  .col-9-10,
  .col-61,
  .col-38 {
    padding-right: 0;
    padding-left: 0;
  }

  /*-----------------Header Elements-----------------*/
  #header .row {
    padding: 0 15px !important;
  }

  #header.nav-solid [class*="col-"] {
    padding: 0;
  }

  /*Logo*/
  #logo h2 {
    padding: 0;
  }

  /* Social */
  #header aside {
    clear: both;
    padding: 0;
  }

  #header ul.social-icons {
    margin-top: 0;
  }

  #banner-content.row {
    padding-top: 85px !important;
  }

  /*-----------------Sections-----------------*/

  /* Call to Action*/
  .call-to-action {
    padding-bottom: 25px;
  }

  /* Video */
  .slvj-lightbox iframe,
  .slvj-lightbox object,
  .slvj-lightbox embed {
    height: 270px !important;
  }

  /* Footer */
  #landing-footer #copyright {
    float: left;
    width: 50%;
  }

  #landing-footer .social-icons {
    float: right;
    width: 50%;
  }

  /*-----------------Typography-----------------*/
  h1 {
    font-size: 38px;
  }

  #banner h1 {
    font-size: 48px;
  }

  /* Hide Elements */
  a#scrollUp {
    display: none !important;
  }

}

@media (min-width: 480px) and (max-width: 767px) {

  #wrapper {
    margin: 0;
    padding: 0;
  }

  .page-border,
  #scrollUp,
  #scrollUp:before {
    display: none;
  }


  .row {
    padding: 15px 0 !important;
  }

  .col-1,
  .col-2,
  .col-5,
  .col-7,
  .col-9,
  .col-11,
  .col-2-3,
  .col-3-4,
  .col-61,
  .col-38,
  .row {
    width: 100%;
  }

  .col-3,
  .col-4,
  .col-6,
  .col-8,
  .col-10,
  .col-12 {
    width: 50%;
  }

  /*-----------------Header Elements-----------------*/
  #header .row {
    padding: 0 !important;
  }

  #header aside {
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 60px;
    padding-top: 3px;
    padding-right: 5px;
  }

  #header.nav-solid aside {
    top: 20px;
  }

  #header aside ul {
    margin-top: 0 !important;
    padding-top: 6px;
  }

  #banner-content.row {
    padding-top: 85px !important;
  }

  /*Navigation*/
  nav#nav-mobile ul {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 20px;
    padding-right: 20px;
    height: 720px;
  }

  /*-----------------Sections-----------------*/

  /* Video */
  .slvj-lightbox iframe,
  .slvj-lightbox object,
  .slvj-lightbox embed {
    height: 370px !important;
  }

  /* Footer */
  #landing-footer #copyright {
    float: left;
    width: 50%;
  }

  #landing-footer .social-icons {
    float: right;
    width: 50%;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {

  #wrapper {
    margin: 0;
    padding: 0;
  }

  .page-border {
    display: none;
  }

  .big-padding-top {
    padding-top: 45px !important;
  }

  /*-----------------Header Elements-----------------*/
  #header aside {
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 60px;
    padding-top: 3px;
    padding-right: 5px;
  }

  #header.nav-solid aside {
    top: 20px;
  }

  #header aside ul {
    margin-top: 0 !important;
    padding-top: 6px;
  }

  /*Navigation*/
  nav#nav-mobile ul {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 20px;
    padding-right: 20px;
    height: 720px;

  }

  /*-----------------Sections-----------------*/

  /* Video */
  .slvj-lightbox iframe,
  .slvj-lightbox object,
  .slvj-lightbox embed {
    height: 432px !important;
  }

}