@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

:root {
    --swiper-theme-color: #0b98dc;
}

* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html,body {
    height:100%;
    /* scroll-snap-type: y mandatory;
    scroll-snap-stop: always; */
    position:relative;
    scroll-behavior: smooth;
}

body {
    overflow-x:hidden;
}

canvas.webgl {
    position:fixed;
    width:100vw;
    height:100vh;
    top:0;
    left:0;
    z-index:-1;
}

nav {
    position:fixed!important;
    width:100vw;
    top:0;
    z-index:999;
}

nav.sticky {
    background:#ffffff;
    box-shadow:0px 0px 50px #ddd;
}

.navbar-brand img {
    max-width:125px;
}

.nav-item {
    display:flex;
}

.nav-link {
    font-size:16px;
    font-weight:600;
    align-self:center;
}
.nav-link .btn {
    font-size:14px;
    font-weight:light;
}
.nav-link.active {
    color:#e12909!important;
}
.nav-link.active:hover {
    color:#c02106!important;
}

.nav-pills .nav-link {
    font-size:1.25rem;
    color:#0b98dc !important;
    border-radius:20px;
}
.nav-pills .nav-link.active {
    background:#0b98dc !important;
    color:#fff!important;
}

.bg-glass {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

input[type=file][name=companyLogo]::before {
content: "Select Logo";
  position: absolute;
  z-index: 2;
  display: block;
  background-color: #eee;
  width: 90px;
}

.pac-container {
    background-color: #FFF;
    z-index: 9999;
    position: fixed;
    display: inline-block;
    float: left;
}
#order-form .modal{
    z-index: 20;   
}
#order-form .modal-backdrop{
    z-index: 10;        
}

.btn {
    padding-left:20px;
    padding-right:20px;
    border-radius:20px;
}

.btn-secondary:hover {
    color:#e12909!important;
    border-color:#e12909;
}

h1 {
    font-size:3rem;
    line-height:3.2rem;
}

h1 .text-primary {
    font-weight:lighter;
}

h1 .text-danger {
    font-style: italic;
}

p {
    font-weight:lighter;
}

#about img {
    max-width:150px;
    max-height:150px;
}
.team-member img {
    z-index:1;
}

.reviews-wrapper {
    background:rgba(255,255,255,0.2);
    backdrop-filter: blur(1px);
}

#review,#reviewer {
    transition:opacity 0.5s!important;
}

.map-wrapper #svg-wrapper {
    border-radius:10px;
    max-width:800px;
    max-height:500px;
    border:solid thick white;
    outline:solid thick #0b98dc;
    box-shadow: 0px 0px 10px black;
    margin:auto;
    overflow:auto;
}

.map-wrapper svg #States path {
    cursor:pointer;
}

.map-wrapper svg #States path:hover {
    filter:brightness(1.2);
}

.map-wrapper svg text {
    pointer-events: none;
}

.map-tooltip {
    position:fixed;
    transform:translate(-50%,10%);
    opacity:0;
    transition: opacity 1s;
    pointer-events:none;
    font-size:0.7rem;
}

.offcanvas-header {
    border-bottom:solid thin #0b98dc;
}

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

.map-wrapper svg #States path.green-state {
    fill:#d7ffd0!important;
}

.map-wrapper svg #States path.red-state {
    fill:#ffd0d0!important;
}

.zoom-buttons button {
    border-radius:0px 0px 10px 10px;
}
.zoom-buttons button:hover {
    color:white!important;
    border-color:white!important;
}

.navbar-collapse.show {
    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
}

.modal-open .container-fluid, .modal-open  .container {
    filter: blur(5px);
    background:white;
}

input,textarea {
    font-weight:lighter!important;
}

.swiper-container {
    width: 100vw;
    min-height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgba(255,255,255,0.2);
    backdrop-filter:blur(2px);
    border:solid thin #0b98dc;
    padding:10px;
    border-radius:10px;
}

.swiper-slide p,.swiper-slide span {
    -moz-user-select: none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

section#contact {
    padding-top:50px;
    padding-bottom:25px;
}

section {
    overflow:hidden!important;
}

@media(max-width:768px) {
    .map-wrapper #svg-wrapper {
        max-width:100vw;
        max-height:61.833332985vw;
    }
    #hero,#contact {
        padding-top:75px;
    }
    p {
        font-size:1.2rem;
    }
    #industry-experts-toon,#branded-toon {
        max-height:200px!important;
        width:auto!important;
    }
    img#google-reviews {
        margin-top:0px!important;
    }
    svg.arrows {
        display:none!important;
    }
    section#hero,section#hero>.row {
        min-height:0px!important;
    }
    section#hero {
        margin-bottom:50px;
        margin-top:50px;
    }
}

/* SCROLL ARROWS */

.arrows {
    width: 40px;
    height: 48px;
    cursor:pointer;
  }
  
  .arrows path {
    stroke: #777;
    fill: transparent;
    stroke-width: 1px;  
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; 
  }
  
  @keyframes arrow
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  .arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; /* Safari 和 Chrome */
  }
  
  .arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
  }
  
  .arrows path.a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
  }

