@import url(https://fonts.googleapis.com/css?family=Fjalla+One);
* {
  box-sizing: border-box;
}
.header_banner {
    width: 49.5%;
    margin-right: 0.5%;
}
.header_banner #header-right #banner-wrap #gallery .sy-box .sy-pager{
    width: 50%;
    margin: 10px 0 20px 0;
}
.header_banner #header-right #banner-wrap #gallery .sy-box .sy-pager li{
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
}
.header_banner #header-right #banner-wrap #gallery .sy-box .sy-pager li a{
    border-radius: 50% !important;
}
.header_banner #header-right #banner-wrap #gallery .sy-box #demo1 li a img{
    height: 440px !important;
}
.right_bannerhome {
    width: 49.5%;
    margin-left: 0.5%;
    display: inline-block;
    float: right;
}
.right_bannerhome img{
    width: 100%;
    height: 440px !important;
}
.header_banner #header-right #banner-wrap #gallery .sy-box .sy-controls li.sy-prev a:after {
    margin-left: -2.4em !important;
}
.header_banner #header-right #banner-wrap #gallery .sy-box .sy-controls li.sy-next a:after {
    margin-right: -2.4em !important;
    margin-left: 0em !important;
}
.container_banner {
    overflow: hidden;
    background: #f5f7f8;
    padding: 2% 0px 3% 0px;
}
/*.container_banner #container{
    padding: 2% 0px 3% 0px;
}*/
.pop {
    position: absolute;
    width: 50%;
    margin: auto;
    padding: 20px;
    height: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (max-width: 640px) {
  .pop {
    position: relative;
    width: 100%;
  }
    .header_banner {
        width: 100%;
        margin: 0px;
    }

    .right_bannerhome {
        width: 100%;
        margin: 0px;
    }
    .right_bannerhome img {
        width: 100%;
        height: auto !important;
    }
}
.pop .modal {
  z-index: 222;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.pop .modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
  top: 50%;
  left: 50%;
  width: 50%;
  background: white;
  padding: 30px;
  position: absolute;
  color: black;
}

/* Close Button */
.btn-close{
    color: #fff;
    text-align: center;
}



@media (max-width: 640px) {
  .pop .modal__inner {
    width: 100%;
  }
}
.pop label {
  display: inline-block;
  cursor: pointer;
}
.pop label.open {
  color: turquoise;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  text-decoration: underline;
}
.pop label.open:hover {
  color: paleturquoise;
}
.pop input {
  display: none;
}
.pop input:checked + .modal {
  opacity: 1;
  visibility: visible;
}
.pop input:checked + .modal .modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.pop input:checked + .modal .modal__inner p {
  font-size: 1.25rem;
  line-height: 125%;
}
.pop input:checked + .modal label {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background: #666666;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.pop input:checked + .modal label:hover {
  background: #333333;
}