html {
  font-size: 1rem;
}

@media (max-width:767px){
  html {
    font-size: .8rem;
  }
}

@media (min-width:768px) and (max-width:991){
  html {
    font-size: .9rem;
  }
}

@media (min-width:992px){
  html {
    font-size: 1rem;
  }
}


@media (min-width:992px){
    .display-md-3{
      font-size: 4.5rem;
      font-weight: 300;
      line-height: 1.2;
    }
}
@media (max-width:992px){
	 .card-deck{
		 flex-direction: column !important;
	}
}
.flip:after{
    transform:rotateY(360deg);
    transition:.5s;
}
.hero-video {
    overflow: hidden;
    min-height: 25%;
}

.hero-video video {
    z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

.hero-overlay {
    background: #333;
}

@media (min-width: 992px) {
    .hero-overlay {
        background: none;
        bottom: 0;
        width: 100%;
    }
}

.hero-overlay-tile {
    padding: 1em;
}
.hero-overlay-tile > button {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.customize-homepage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 501;
    visibility: collapse;
    opacity: 0;
}

.customize-homepage-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 501;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.customize-homepage-sidebar {
    position: relative;
    z-index: 502;
    width: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .customize-homepage-sidebar {
        width: 30em;
    }
}

body.customize-open {
    overflow: hidden;
}

body.customize-open .customize-homepage {
    visibility: visible;
    opacity: 1;
}

body.customize-open .customize-homepage-mask {
    opacity: 1;
}

body.customize-open .customize-homepage-sidebar {
    transform: translateX(0);
}

.social-feed {
    height: 452px;
}

@media (min-width: 651px) {
    .social-feed {
        height: 632px;
    }
}

@media (min-width: 1081px) {
    .social-feed {
        height: 932px;
    }
}


.container-op {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.hidden {
    display:none;
}


  /* Hide the browser's default checkbox */
  .container-op input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }

  /* On mouse-over, add a grey baockground color */
  .container-op:hover input ~ .checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .container-op input:checked ~ .checkmark {
    background-color: #2196F3;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Change color of diabled checkbox */
  input:disabled + span, input:disabled + span:hover{
    background-color: darkgray !important;
  }


  /* Show the checkmark when checked */
  .container-op input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .container-op .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
a.white {
    color: #fff;
    text-decoration: underline;
}
a:hover.white{
    color: #A0CCE8;
    text-decoration: none;
}