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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  background: #000;
  letter-spacing: 0.05rem;
}

.container {
  width: 80%;
  min-height: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  height: fit-content;
  position: relative;
  z-index: 1;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.teal {
  color: #008080;
}

.red {
  color: #802000;
}

.white {
  color: #fff;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

p {
  font-size: 17px;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img.avant-logo {
  width: 200px;
  height: auto;
}

/* Button -----------------------------------------------------------------*/
button {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  position: relative;
  display: inline-block;
  padding: 9px 18px;
  transition: ease-in 0.3s;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
}
button:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
  z-index: 5;
}
button:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
button:before, button:after {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: ease-in 0.3s;
}
button:hover {
  color: #fff;
  cursor: pointer;
}
button:hover:before, button:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.btn_teal {
  border-color: #008080;
  color: #008080;
}
.btn_teal:before, .btn_teal:after {
  border-color: #008080;
}
.btn_teal:hover {
  background-color: #008080;
  border-color: #008080;
}

.btn_red {
  border-color: #802000;
  color: #802000;
}
.btn_red:before, .btn_red:after {
  border-color: #802000;
}
.btn_red:hover {
  background-color: #802000;
  border-color: #802000;
}
.btn_red:hover:before, .btn_red:hover:after {
  border-color: #802000;
}

.light {
  font-weight: lighter;
}

.bold {
  font-weight: bold;
}

/* Scroll Animation -----------------------------------------------------------------*/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Page Top Button -----------------------------------------------------------------*/
#page_top {
  position: fixed;
  background: #008080;
  opacity: 0.7;
  border-radius: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 100px;
}
#page_top:hover {
  opacity: 1;
  transition: ease-in 0.3s;
  bottom: 110px;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#page_top img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-90deg);
  transform: translate(-50%, -50%) rotateZ(-90deg);
}

/* Header -----------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: visible;
  z-index: 9;
  transition: ease-in 0.3s;
}
header .container {
  overflow: visible;
  /* Logo */
}
header .container img.avant-sm-logo {
  width: 50px;
  height: auto;
}

.navbtn {
  display: none;
}

/* Global Nav -----------------------------------------------------------------*/
nav a {
  text-transform: uppercase;
}
nav a.hover:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  color: #bdbdbd;
}

@media screen and (min-width: 1151px) {
  header {
    height: 8vh;
    min-height: 70px;
  }
  header nav {
    float: right;
    display: inline-block;
    height: 100%;
  }
  header nav .navbtn {
    display: none;
  }
  header nav a.hover::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #bdbdbd;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: ease-in 0.3s;
  }
  header nav ul.menu {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: inherit;
    *zoom: 1;
    /* Clear float */
    /* Dropdown Menu */
  }
  header nav ul.menu:before, header nav ul.menu:after {
    content: " ";
    display: table;
  }
  header nav ul.menu:after {
    clear: both;
  }
  header nav ul.menu li.menu_single {
    position: relative;
  }
  header nav ul.menu li.menu_single:hover ul.menu_second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
    display: block;
  }
  header nav ul.menu li.menu_single ul.menu_second-level {
    position: absolute;
    top: 40px;
    width: 190%;
    background: #fff;
    transition: ease-in 0.3s;
  }
  header nav ul.menu li.menu_first-level {
    float: left;
    display: inline;
    padding: 27px 20px;
  }
  header nav ul.menu li.menu_first-level a {
    color: #fff;
  }
  header nav ul.menu li.menu_first-level a.teal {
    color: #008080;
  }
  header nav ul.menu li.telephone {
    border: 2px solid #802000;
    background: rgba(0, 0, 0, 0.6);
    padding: 9px 18px;
    transition: ease-in 0.3s;
    margin: 15px 6px 0 20px;
    position: relative;
    cursor: pointer;
    z-index: 5;
  }
  header nav ul.menu li.telephone a {
    text-indent: 20px;
    color: #802000;
    z-index: inherit;
  }
  header nav ul.menu li.telephone a:before {
    content: "\f2a0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 20px;
    left: -20px;
  }
  header nav ul.menu li.telephone:before {
    top: -6px;
    left: -6px;
    border-width: 1px 0 0 1px;
  }
  header nav ul.menu li.telephone:after {
    bottom: -6px;
    right: -6px;
    border-width: 0 1px 1px 0;
  }
  header nav ul.menu li.telephone:before, header nav ul.menu li.telephone:after {
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box;
    border-style: solid;
    border-color: #802000;
    width: 1em;
    height: 1em;
    transition: ease-in 0.3s;
    z-index: 1;
  }
  header nav ul.menu li.telephone:hover:before, header nav ul.menu li.telephone:hover:after {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-color: #802000;
  }
  header nav ul.menu li.telephone:hover {
    background-color: #802000;
  }
  header nav ul.menu li.telephone:hover a {
    color: #fff;
    transition: ease-in 0.3s;
  }
  header nav ul.menu li a {
    display: block;
  }
  header nav ul.menu ul.menu_second-level {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 999;
    list-style: none;
    border: 1px solid #3f3e3e;
    box-shadow: 0 0 10px #3f3e3e;
  }
  header nav ul.menu ul.menu_second-level li a {
    color: #3f3e3e;
    list-style: disc;
    line-height: 3;
    padding-left: 10px;
    border-bottom: solid 1px #bdbdbd;
  }
  header nav ul.menu ul.menu_second-level li a:hover {
    color: #fff;
    background: #3f3e3e;
    transition: ease-in 0.3s;
    box-shadow: 0 0 10px #3f3e3e;
  }
  header nav ul.menu li.vSlash {
    display: inline-block;
    color: #fff;
  }
}
/* Section Title -----------------------------------------------------------------*/
.section-title {
  margin: 60px 0 20px 0;
  text-transform: uppercase;
}

/* Footer -----------------------------------------------------------------*/
footer {
  background-color: #3f3e3e;
  color: #fff;
  position: relative;
  z-index: 0;
  /* #footer_nav ul li{
      list-style: none;
      font-size: var(--baseFontSize);
      margin-bottom: 10px;
  } */
}
@media (min-width: 1151px) {
  footer #footer {
    display: flex;
    justify-content: space-between;
    justify-items: stretch;
  }
}
footer .footer_branding .avant-logo {
  margin: 40px 0 20px 0;
}
footer .footer_branding p {
  text-transform: uppercase;
  font-weight: lighter !important;
}
footer .footer_branding p:first-of-type {
  margin-bottom: 20px;
}
footer .footer_detail p {
  position: relative;
  line-height: 20px;
  text-indent: 20px;
  padding-left: 10px;
  margin-bottom: 10px;
}
footer .footer_detail p:first-of-type, footer .footer_detail p:last-of-type {
  position: static;
  text-indent: 0;
  padding-left: 0;
  margin: 40px 0 20px 0;
  text-transform: uppercase;
}
footer .footer_detail .d1::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  font-size: 20px;
  color: #008080;
}
footer .footer_detail .d2::before {
  content: "\f2a0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  font-size: 20px;
  color: #008080;
}
footer .footer_detail .d3::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  font-size: 18px;
  color: #008080;
}
footer .footer_detail .d4::before {
  content: "\f2f2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  font-size: 20px;
  color: #008080;
}
footer .footer_detail div > a,
footer .footer_detail div > a > img {
  width: 30px;
  height: 30px;
}
footer .footer_detail div > a:hover,
footer .footer_detail div > a > img:hover {
  opacity: .6;
}
footer .footer_detail div > a:first-child {
  margin-right: 5px;
}
footer hr {
  margin-top: 40px;
  opacity: .5;
}
footer p.credit {
  text-align: center;
  margin: 0;
  padding: 15px 0;
  opacity: .5;
}

/*# sourceMappingURL=styles_common.css.map */
