@font-face {
  font-family: 'DOTUXER_black';
  src: url("../fonts/avn-black.woff") format("woff");
}

@font-face {
  font-family: 'DOTUXER_roman';
  src: url("../fonts/avn-roman.woff") format("woff");
}

@font-face {
  font-family: 'DOTUXER_book';
  src: url("../fonts/avn-book.woff") format("woff");
}

#app {
  font-family: "DOTUXER_roman", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #28465e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background: #eeeeee;
  font-size: 13pt;
  font-weight: 300;
  color: #656565;
}

@media only screen and (max-width: 800px) {
  body {
    max-width: 100vw;
  }
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #28465e;
  font-family: "DOTUXER_black", sans-serif;
}

p,
ol,
ul {
  margin-top: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

ul.actions {
  text-align: center;
}

a {
  color: #0000ff;
}

a:hover {
  text-decoration: none;
}

.container {
  overflow: hidden;
  margin: 0em auto;
  width: 1280px;
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/
#header-container {
  background: #eeeeee;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media only screen and (max-width: 800px) {
  #header-container {
    height: 110px;
  }
}

#header-container #header {
  font-family: "DOTUXER_black", sans-serif;
  position: relative;
  padding: 3rem 0;
  height: auto;
}

@media only screen and (max-width: 800px) {
  #header-container #header {
    width: 100vw;
    height: 100%;
    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;
    padding: 0;
  }
}

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/
#logo {
  position: absolute;
  top: 0.3rem;
  left: 0;
}

@media only screen and (max-width: 800px) {
  #logo {
    position: relative;
  }
}

#logo a {
  left: 0;
}

#logo a img {
  width: 75%;
}

@media only screen and (max-width: 800px) {
  #logo a img {
    width: 60%;
  }
}

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/
.nav-links {
  padding-bottom: 10px;
}

#menu {
  position: absolute;
  top: 2.5rem;
  right: 5rem;
}

@media only screen and (max-width: 800px) {
  #menu {
    top: 3.5rem;
    right: 0;
    left: 0;
  }
}

@media only screen and (max-width: 800px) {
  #menu 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;
    width: 100%;
  }
}

#menu ul li {
  display: block;
  float: left;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #menu ul li {
    width: 33%;
  }
}

#menu ul li .icon {
  display: none;
}

#menu ul li a,
#menu ul li span {
  padding: 1em 1.5em;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8em;
  color: #2b3f48;
}

@media only screen and (max-width: 800px) {
  #menu ul li a,
  #menu ul li span {
    padding: 0.5em 1em;
    font-size: 0.5em;
  }
}

#menu ul li :hover a,
#menu ul li .active a,
#menu ul li .active span {
  color: #2b3f48;
}

#menu .current_page_item a {
  color: #27ae61;
}

#menu .menu-icon {
  width: 75%;
  height: 75%;
}

/*********************************************************************************/
/* Main Form                                                                     */
/*********************************************************************************/
.main-form {
  max-width: 1024px;
  margin: auto;
}

@media only screen and (max-width: 800px) {
  .main-form {
    padding: 0 1rem;
  }
}

.main-form input[type="text"],
.main-form input[type="date"],
.main-form input[type="datetime"],
.main-form input[type="email"],
.main-form input[type="number"],
.main-form input[type="search"],
.main-form input[type="time"],
.main-form input[type="url"],
.main-form textarea,
.main-form select {
  font-family: "DOTUXER_book", sans-serif;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background: #fff;
  margin-bottom: 2%;
  border: 1px solid #ccc;
  padding: 1%;
  color: #555;
  font-size: 18px;
}

.main-form input[type="text"]:focus,
.main-form input[type="date"]:focus,
.main-form input[type="datetime"]:focus,
.main-form input[type="email"]:focus,
.main-form input[type="number"]:focus,
.main-form input[type="search"]:focus,
.main-form input[type="time"]:focus,
.main-form input[type="url"]:focus,
.main-form textarea:focus,
.main-form select:focus {
  font-family: "DOTUXER_book", sans-serif;
  -webkit-box-shadow: 0 0 5px #43d1af;
          box-shadow: 0 0 5px #43d1af;
  padding: 1.5%;
  border: 1px solid #43d1af;
}

.main-form a:hover {
  cursor: pointer;
}

.main-form textarea {
  resize: none;
}

/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/
.image {
  display: inline-block;
}

.image img {
  display: block;
  width: 100%;
}

.image-full {
  display: block;
  width: 100%;
  margin: 0 0 2em 0;
}

.image-left {
  float: left;
  margin: 0 2em 2em 0;
}

.image-centered {
  display: block;
  margin: 0 0 2em 0;
}

.image-centered img {
  margin: 0 auto;
  width: auto;
}

/*********************************************************************************/
/* List Styles                                                                   */
/*********************************************************************************/
ul.staff {
  margin-bottom: 3em;
}

ul.staff li {
  display: inline-block;
}

ul.staff li img {
  width: 80%;
  border-radius: 50%;
}

/*********************************************************************************/
/* Social Icon Styles                                                            */
/*********************************************************************************/
ul.contact {
  margin: 0;
  padding: 2em 0em 0em 0em;
  list-style: none;
}

ul.contact li {
  display: inline-block;
  padding: 0em 0.3em;
  font-size: 1em;
}

ul.contact li span {
  display: none;
  margin: 0;
  padding: 0;
}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/
.button {
  display: inline-block;
  padding: 0 3em;
  background: #28465e;
  border-radius: 8px;
  letter-spacing: 0.2em;
  line-height: 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1em;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  .button {
    display: none;
  }
}

.button:hover {
  background-color: #325775;
}

.button-submit {
  display: inline-block;
  width: 10rem;
  height: 2.5rem;
  background: #28465e;
  border-radius: 8px;
  letter-spacing: 0.2em;
  line-height: 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1em;
  color: #fff;
}

.button-submit:hover {
  background-color: #325775;
}

/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/
.title {
  margin-bottom: 3em;
}

@media only screen and (max-width: 800px) {
  .title {
    margin-bottom: 1em;
  }
}

.title h2 {
  font-size: 3.2em;
}

@media only screen and (max-width: 800px) {
  .title h2 {
    font-size: 2em;
  }
}

.title .byline {
  font-size: 1.3em;
  color: #6f6f6f;
}

/*********************************************************************************/
/* About                                                                         */
/*********************************************************************************/
#about-section {
  overflow: hidden;
  padding: 7em 0em 5em 0em;
  background: #3fba8c url(../images/banner.png) no-repeat center;
  background-size: cover;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 800px) {
  #about-section {
    padding: 1rem;
  }
}

#about-section .title h2 {
  color: #fff;
}

#about-section .title .byline {
  color: white;
}

/*********************************************************************************/
/* Services                                                                          */
/*********************************************************************************/
#services-section {
  padding: 4rem 0;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #services-section {
    padding: 2em;
  }
}

#services-section .main-gallery-services {
  display: none;
}

@media only screen and (max-width: 800px) {
  #services-section .main-gallery-services {
    display: block;
  }
}

#products-section {
  padding: 4rem 0;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #products-section {
    padding: 2rem;
  }
}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
#footer {
  overflow: hidden;
  padding: 2rem 0;
}

#footer .flex-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#footer .flex-footer p {
  margin: auto 0;
  height: 100%;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: #28465e;
  border-left: 5px solid #28465e;
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer p {
    border-left: initial;
    border-bottom: 5px solid #28465e;
    width: 90%;
    margin: auto;
  }
}

#footer .flex-footer .links {
  font-size: 20px;
}

#footer .flex-footer .links .nav-links-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer {
    -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;
  }
}

#footer .flex-footer .links .nav-links-footer .main-group {
  padding-right: 100px;
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer .main-group {
    padding-right: 0;
    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;
    margin: 2rem;
  }
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer .main-group h3 {
    text-align: center;
  }
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer .secondary-group {
    padding-right: 0;
    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;
    margin: 0 2rem;
  }
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer .secondary-group h3 {
    text-align: center;
  }
}

#footer .flex-footer .links .nav-links-footer .nav-link-footer {
  width: 20rem;
  padding: 15px 0;
  border-bottom: 2px solid #28465e;
}

@media only screen and (max-width: 800px) {
  #footer .flex-footer .links .nav-links-footer .nav-link-footer {
    width: 90%;
    margin: auto;
  }
}

#footer .flex-footer .links .nav-links-footer .nav-link-footer a {
  text-decoration: none;
  color: #28465e;
}

#footer .flex-footer .links .nav-links-footer .nav-link-footer :hover {
  color: #3fba8c;
}

/*********************************************************************************/
/* Contact                                                                       */
/*********************************************************************************/
#contact-section {
  overflow: hidden;
  padding: 0 0 2rem 0;
  background: #39b98ae5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

#contact-section .title {
  padding-top: 2rem;
}

@media only screen and (max-width: 800px) {
  #contact-section .title {
    margin-bottom: 0;
  }
}

#contact-section .title h2 {
  color: #fff;
}

#contact-section .byline {
  font-size: 1.3em;
  color: white;
}

@media only screen and (max-width: 800px) {
  #contact-section .byline {
    display: none;
  }
}

#contact-section .contact-info .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 1.5rem;
  margin: 0 1rem;
  text-align: left;
  font-size: 25px;
}

@media only screen and (max-width: 800px) {
  #contact-section .contact-info .contact-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#contact-section .contact-info .contact-list h1 {
  font-size: 28px;
  color: #28465e;
  margin-bottom: 1.5rem;
}

#contact-section .contact-info .contact-list p {
  line-height: 1.75rem;
}

#contact-section .contact-info .contact-list .contact-item {
  text-align: center;
}

#contact-section .contact-info .contact-list .contact-item .contact-icon {
  width: 30%;
  height: 30%;
  padding-bottom: 20px;
}

#contact-section .contact-info .contact-list .contact-item p strong {
  font-family: "DOTUXER_black", sans-serif;
  font-weight: 500;
  font-size: 35px;
}

#contact-section .contact-info .contact-list .contact-item .info {
  font-family: "DOTUXER_book", sans-serif;
  color: #434343;
}

#contact-section .contact-info .contact-list .contact-item .info a {
  color: #434343;
  text-decoration: none;
}

#contact-section .contact-info .contact-list .contact-item .info a:hover {
  color: blue;
}

/*********************************************************************************/
/* Featured                                                                      */
/*********************************************************************************/
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 800px) {
  .flex-container {
    display: none;
  }
}

.box {
  padding: 1.5rem;
  margin: 0 1rem;
  width: 320px;
  background-color: white;
  border-radius: 8px;
}

.box h1 {
  font-size: 28px;
  color: #28465e;
  margin-bottom: 1.5rem;
}

.box p {
  line-height: 20px;
}

@media only screen and (max-width: 800px) {
  .box p {
    line-height: 20px;
    margin: 0 2rem;
    font-size: 75%;
  }
}

.gallery-cell {
  height: 24rem;
}

@media only screen and (max-width: 800px) {
  .gallery-cell {
    height: 50vh;
    width: 80%;
  }
}

/*********************************************************************************/
/* Dividers                                                                       */
/*********************************************************************************/
.divider {
  margin: auto;
  width: 80%;
  height: 0.5px;
  height: 1px;
  background: -webkit-linear-gradient(left, white 0%, #28465e 50%, white 100%);
}

@media only screen and (max-width: 800px) {
  .divider {
    margin-top: 3rem;
  }
}

.divider-inverse {
  margin: auto;
  width: 80%;
  height: 0.5px;
  height: 1px;
  background: -webkit-linear-gradient(left, #3fba8c 0%, white 50%, #3fba8c 100%);
}

.main-gallery {
  width: 100%;
  margin: auto;
  padding: 25px 0;
}

@media only screen and (max-width: 800px) {
  .main-gallery {
    padding: 0;
  }
}

.is-selected {
  -webkit-box-shadow: inset 0 0 10px #000000;
          box-shadow: inset 0 0 10px #000000;
}

.anchor {
  display: block;
  height: 92px;
  margin-top: -92px;
  visibility: hidden;
}

/*********************************************************************************/
/* Others                                                                        */
/*********************************************************************************/
.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 800px) {
  .spacer {
    margin: 2rem 0;
  }
}

@media only screen and (max-width: 800px) {
  .flickity-page-dots {
    bottom: -20px;
  }
}

#clients-section {
  padding: 4rem 0;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #clients-section {
    padding: 2rem 0 0 0;
    width: 100%;
  }
}

.clients-container {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: 1200px;
}

@media only screen and (max-width: 800px) {
  .clients-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.client {
  margin: 10px;
  height: auto;
}

.client .client-link {
  margin-bottom: 15px;
}

.client .client-img {
  width: 425px;
  height: 200px;
  padding: 0;
  background-color: white;
  border-radius: 15px;
  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;
}

@media only screen and (max-width: 800px) {
  .client .client-img {
    border-radius: 10px;
    width: 250px;
    height: 125px;
  }
}

.client .client-img .img {
  width: 350px;
}

@media only screen and (max-width: 800px) {
  .client .client-img .img {
    width: 200px;
  }
}

/*********************************************************************************/
/* Video                                                                         */
/*********************************************************************************/
#video-section {
  padding: 4rem 0;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  #video-section {
    padding: 2rem 0 2rem 0;
  }
}

.video__box {
  padding: 1.5rem;
  margin: 0 1rem;
  height: 300px;
  background-color: white;
  border-radius: 8px;
}

@media only screen and (max-width: 800px) {
  .video__box {
    height: 250px;
    width: 100%;
    padding: 25px 0 0 0;
  }
}

.video__box h1 {
  font-size: 28px;
  color: #28465e;
  margin-bottom: 1.5rem;
}

.video {
  width: 500px;
  text-decoration: none;
}

@media only screen and (max-width: 800px) {
  .video img {
    width: 80%;
  }
}

.video_gallery {
  margin: auto;
  padding: 25px 0;
}

@media only screen and (max-width: 800px) {
  .video_gallery {
    padding: 0;
  }
}

@media only screen and (max-width: 800px) {
  .hide__mobile {
    display: none;
  }
}

.show__mobile {
  display: none;
}

@media only screen and (max-width: 800px) {
  .show__mobile {
    display: block;
  }
}

.show_menu {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  left: 0 !important;
}

.hide_menu {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  left: 500px !important;
}

#menu_links {
  position: fixed;
  top: 120px;
  left: 500px;
  background-color: #fff;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 0 50px 50px;
  z-index: 10;
}

#menu_links li {
  margin-top: 35px;
}

#menu_links a {
  color: #28465e;
  text-decoration: none;
  font-size: 24px;
  padding-top: 10px;
}

.mobile__menu {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: #eee;
  padding: 10px;
  border-radius: 50px;
}
/*# sourceMappingURL=main2.css.map */