:root {
  --av-theme_secondary: #f5afaf;
  --av-theme_dark: #0D3430;
  --av-theme_text: #333;
  --av-theme_heading: #ea5455;
  --av-theme_action_primary: #E63A3B;
  --av-theme_ico: #595860;
  --av-header_bg: #fff;
  --av-top_bar_bg: #0D3430;
  --av-top_bar_text: #fefefe;
  --av-header_text: #333;
  --av-body-top-gap: 140px;
}

html {
    height: 100%;
}

body {
  background: #F5F5F5;
  color: #3b3f5c;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  padding-top: var(--av-body-top-gap);
}

@media (min-width: 768px) AND (max-width: 991px){
  .container, .container-md, .container-sm {
    max-width: 780px !important;
  }
}

@-webkit-keyframes slide {
    100% { right: 0; }
}

@keyframes slide {
    100% { right: 0; }
}
@-webkit-keyframes slideOut {
    0% { right: 0; }
    100% { right: 100vw; }
}

@keyframes slideOut {
    0% { right: 0; }
    100% { right: 100vw; }
}

@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0;}
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance:textfield; /* Firefox */
}

::placeholder {
  color: #999;
}

.fadeOut {
  animation: fadeOut .3s;
  opacity:0 !important;
}

.fadeIn {
  animation: fadeIn .3s;
  opacity:1 !important;
}

.slideIn {
  -webkit-animation: slide .5s forwards;
  animation: slide .5s forwards;
}
.slideOut {
  -webkit-animation: slideOut .5s forwards;
  animation: slideOut .5s forwards;
}

h1 {
  font-size: 2.5rem;
  font-family: 'Quicksand', sans-serif;
}
h2 {
  font-size: 1.8rem;
  font-family: 'Quicksand', sans-serif;
}
.btn {
  font-family: 'Open Sans', sans-serif;
  font-size: .825rem;
}

label {
  user-select: none;
}
a {
  text-decoration: none;
}
.mont {
  font-family: 'Montserrat', sans-serif;
}
.ops {
  font-family: 'Open Sans', sans-serif;
}
.qsnd {
  font-family: 'Quicksand', sans-serif;
}
.dss {
  font-family: 'Dosis', sans-serif;
}
.nav_logo {
  display: inline-block;
  width: 75px;
}
.rounded-15 {
  border-radius: 15px;
}
.ease {
  transition: all ease-in-out 0.4s;
}

section {
  padding-top: 80px;
  padding-bottom:60px;
}

/* -- header -- */
.ign-gap {
  margin-top: calc(0px - var(--av-body-top-gap));
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
}

.nav-wrapper {
  background: var(--av-header_bg);
  color: var(--av-header_text);
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
  margin: 0 auto;
}
.scrolling .nav-wrapper {
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
}

.nav-wrapper .bg-topbar{
  background: var(--av-top_bar_bg);
  color: var(--av-top_bar_text);
}

.nav-wrapper #topbar {
  padding: 15px 15px;
}
.scrolling .nav-wrapper #topbar {
  padding: 0;
  height: 0;
  overflow: hidden;
}
.nav-wrapper #topbar a {
  display: inline-flex;
  align-items: center;
  color: var(--av-top_bar_text);
  font-size: 0.85em;
  line-height: 1;
}

.nav-wrapper #topbar a i {
  margin-right: 5px;
}

.nav-content {
  padding: 10px 15px;
}

.scrolling .nav-wrapper .nav-content {

}

.logo-wrapper {
  width: 80px;
}

.scrolling .nav-wrapper .logo-wrapper {
  width: 60px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--av-header_text);
}

.nav-menu .nav-link {
  color: var(--av-header_text);
}

.nav-menu .nav-link {
  font-weight: 600;
  transition: all ease-in-out 0.4s;
}
.nav-menu .nav-link:hover {
  transition: all ease-in-out 0.4s;
  color: var(--av-theme_action_primary);
}

.mobile-nav-wrapper {
  display: none;
}

.section-heading {
  display: inline-block;
  position: relative;
  color: var(--av-theme_heading);
  font-family: 'Quicksand',sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-heading:before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  height: 1px;
  width: 80%;
  border-bottom:5px solid var(--av-theme_secondary);
  border-radius: 5px;
}
.section-heading.start {
  text-align: left;
}

.section-heading.start:before {
  left    : 2%;
  width: 90%;
}

.text-highlight {
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0;
  color:var(--av-theme_dark);
}

.text-paragraph {
  font-size: .95rem;
  color: var(--av-theme_text);
  line-height: 1.8rem;
}

.text-subheading {
  font-size: 21px;
  margin: 10px 0;
  color:var(--av-theme_dark);
}

.slide-wrapper {
  position: relative;
  height: 90vh;
  background: #ccc;
  padding: 0;
}

.slide-img {
  height: 100%;
  min-height:100%;
  background-size: cover;
  background-position: center;
}

.slide-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 100px;
  height: 100%;
  background: radial-gradient(circle, rgba(199,89,137,.3) 0%, rgba(38,94,161,.3) 100%);
}

.slide-heading {
  font-size: 48px;
  color: #fff;
  font-weight: 800;
  width: 60%;
  text-align: center;
}
.contact-li {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  color:#666;
}
.contact-li i {
  margin-right:15px;
  color:var(--av-theme_secondary);
}
.contact-location-button {
  width: 48px;
  padding: 5px;
  border-radius: 10px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #fff;
}

.contact-location-button:hover {
  border: 1px solid var(--av-theme_secondary);
}
.contact-location-button img {
  width: 35px;
  height: 35px;
}
.scta-main,.scta-main > div, .scta-tel-wrap {
  display: inline-flex;
  align-items: center;
}
.scta-main > div, .scta-tel-wrap {
  display: inline-flex;
  justify-content: center;
}

.scta-main i {
  font-size: 48px;
  margin-right: 15px;
}
.scta-main i {
  color: #666;
}

.scta-main .content {
  color: var(--av-theme_heading);
  font-weight: 600;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
}

.scta-main .social-btn {
  margin-right: 10px;
  border-radius: 10px;
  border: 1px solid var(--bs-light);
}

.scta-main .social-btn:hover {
  border: 1px solid var(--av-theme_action_primary);
}

.scta-main .social-btn:hover i {
  color: var(--av-theme_action_primary);
}

.scta-main .social-btn i {
  font-size: 16px;
  margin: 0;
}
.scta-tel-wrap {
  margin-left: 20px;
}

.scta-tel-wrap i {
  color: #888;
  font-size: 28px;
  margin-right: 10px;
}
.scta-tel-wrap .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--av-theme_heading);
}
.scta-tel-wrap .content {
  font-size: 18px;
  color: #333;
}

.guaranteed-check {
  color: #77c67d;
}

@media only screen and (max-width: 991px) {
  body {
    padding-top: calc(var(--av-body-top-gap) - 20px);
  }
  .mobile-nav-wrapper {
    position: fixed;
    top: 0;
    right: 100vw;
    width: 100vw;
    height: 100vh;
    background: #fefefe;
    z-index: 900;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mobile-nav-wrapper .nav-menu {
    display: block;
    position: relative;
  }
  .mobile-nav-wrapper .nav-btn {
    display: block;
    text-align: center;
    padding: 15px 0;
  }
  .mobile-nav-wrapper .nav-link {
    display: inline-block;
    font-size: 18px;
  }
  .mobile-nav-action {
    border-radius: 10px;
    color: #888;
    box-shadow:none !important;
  }
  .mobile-nav-action:hover {
    color: var(--av-theme_secondary);
  }
  .mobile-nav-open {
    font-size: 32px;
    padding: 0;
  }
  .mobile-nav-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
  }
  .social-icons i {
    width: 56px;
    font-size: 20px;
    margin:0 18px;
  }
  .section-heading {
  font-size: 36px;
  }
  .text-highlight {
    font-size: 28px;
  }
  .logo-wrapper {
    width: 60px;
  }
  .scrolling .nav-wrapper .logo-wrapper {
    width: 40px;
  }
  .slide-cont {
    padding: 0 20px 50px;
  }
  .slide-heading {
    font-size: 28px;
    width: 100%;
  }
  .scta-main {
    display: block;
    width: 100%;
  }
  .scta-tel-wrap {
    margin-left: 0;
  }
}
