/**
 * Material Modal CSS
 */
.modal {
  will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: $modal-delay;
}
.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  max-width: 600px;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 2.4rem;
  background: #e5fcff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
  opacity: 1;
  border:solid 1px;
  border-color: teal;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  /* display: inline-block; */
  padding: 1.2rem 2.4rem;
  color: rgba(0,0,0,0.7);
  line-height: 1;
  cursor: pointer;
  background: #ffebee;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
  background: #e5d3d6;
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffebee;
  transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: rgba(0,0,0,0.6);
}

/*--call now button --*/
#callnowbutton {
  display:none;
} 

@media (max-width: 650px){
  #callnowbutton {
    display:block; 
    height:80px; 
    position:fixed; 
    left:0; 
    border-bottom-right-radius:40px; 
    border-top-right-radius:40px; 
    width:100px;
    bottom:-15px; 
    border-top:2px solid rgba(5,108,215,1); 
    background:url(../img/phone/callbutton.png) center 10px no-repeat #0088ff; 
    text-decoration:none; 
    box-shadow:0 0 5px #888; 
    -webkit-box-shadow:0 0 5px #888; 
    -moz-box-shadow:0 0 5px #888; 
    z-index:9999;
  }
}

/* CMS Image rounded, frame, etc */
img.s-circle {
    border-radius: 50%;
    text-align: center;
    display:block;
}

img.s-rounded {
    border-radius: 20px;
    text-align: center;
    display:block;
}

img.s-frame {
    padding: 10px;
    border: solid 1px #95a5a6;
    text-align: center;
    display:block;
}

img.s-shadow-frame {
    padding: 10px;
    border: solid 1px #95a5a6;
    box-shadow: 0 4px 8px #7f8c8d;
    text-align: center;
    display:block;
}

#mobile-menu {
    box-shadow:0 12px 15px 0 rgba(0,0,0,0.25)}

iframe {
    margin: 0 auto;
}

.space-23 {
    letter-spacing: 0.23em;
}

.space-20 {
    letter-spacing: 0.20em;
}

h2 {
  font-size: 1.875rem !important;
  font-weight: bold !important;
  color: #1e3a8a !important;
  margin-bottom: 1rem !important;
}

h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #1e3a8a !important;
  margin-bottom: 1rem !important;
}

h4 {
  font-size: 1.25rem !important;
  color: #0f766e !important;
  max-width: 42rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-white h2, .text-white h3, .text-white h4 {
    color: white !important;
}

#navbar {z-index:1000;}