@section('css')
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700&subset=latin-ext');

@media (min-width: 768px)
.main-navbar {
    position: static !important;
}

html {
    position: relative;
    height: 100%;
    width: 100%;
}

body {
  height: 100%;
  font-size: 14px;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans",sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #666;
  background: #fff;
  word-wrap: break-word;
  overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

p {
    line-height: 1.5;
    font-size: 100%;
}    
a {
  font-weight: 400;
  color: #1A1A1A;
  border-bottom: solid 1px #D4D4D4;
  transition: color .1s ease-in-out,border-color .1s ease-in-out;
}

a:hover, a:focus {
  color: #1A1A1A;
  border-color: #E37D39;
  text-decoration: none !important;
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #1A1A1A;
    font-family: "Noto Sans",sans-serif !important;
    margin-bottom: 20px;
}

h1 {
    font-size: 25px;
}

h2, h3 {
    font-size: 20px;
}

h4, h5, h6 {
    font-size: 18px;
}

.main-navbar { 
    z-index: 999999; 
    width:100%;  
    padding: 30px 0 0 0;}

    
    @media (min-width: 768px) {
    .main-navbar { 
        position: static; 
    }
}

.navbar-toggle {
    position:relative;
    float:left;
    display:block;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.2);
    background-image: none;
    border: 0 none;
    top:0px; 
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
    outline: 0;
    opacity: 1;
    -webkit-transition: all .45s;
       -moz-transition: all .45s;
            transition: all .45s;
            float: left;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: #fff;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
.open .navbar-toggle { 
    top:-70px; 
    opacity: 0;  
}
.main-navbar .dropdown-menu {
    top: -14em;
    left: 0px;
    font-size: 13px;
    padding:0;
    background:none;
    border:0 none;
    border-radius: 2px;
    box-shadow: none;
    display:block;
    opacity:0;
    -webkit-transition: all .45s;
       -moz-transition: all .45s;
            transition: all .45s;
}
.main-navbar .dropdown-menu .active { 
    font-weight:bold;
}
.main-navbar .open .dropdown-menu { 
    top:2px;
    opacity:1;
}
.main-navbar .dropdown-menu a { 
    padding: 10px 15px;
    margin: 0;
    color: white;
    background: rgba(255,255, 255, .5);
    text-transform: uppercase;
    text-decoration: none;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}
.main-navbar .dropdown-menu a:hover, .main-navbar .dropdown-menu a:focus { 
    background:rgba(0,0, 0,.9);
    color: #fff;
}
.navbar-toggle .icon-bar {
    background: #222;
}
.navbar-toggle {
    background: rgba(0, 0, 0, 0.2);
}
.main-navbar .dropdown-menu a {
    color: #222;
}

.page_big_title {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    font-family:"Noto Sans",sans-serif !important;
    font-weight: 700;
    font-size: 3.25em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #1A1A1A;
    padding: 10px 15px;
    border: 3px solid #333;
    background: rgba(255, 255, 255, .75);
    text-align: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.big_full_section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;  
    flex-direction: column;
    background-image: url("../images/bg1.png");
    background-attachment: fixed;
    background-size: cover;
}
.section {
    display: inline-block;
    float: left;
    overflow: hidden;
}

.page_section p {
    text-align: center;
}

.white-panel {
    background-color: transparent;
    display: inline-block;
    font-family: "Noto Sans",sans-serif;
    font-size: 20px;
    margin: 10px 7px;
    max-width: 315px;
    min-width: 230px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 33.33%;
}

.white-panel > img {
  width: 100%;
}

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.white-panel:hover .overlay {
  height: 100%;
}

.text {
  white-space: nowrap; 
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}


.white-panel:hover > img,
.white-panel.hover > img {
  opacity: 0.5;
}


.white-panel p {
    display: inline-block;
    width: 100% !important;
    margin-bottom: 20px;
    color: #666;
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.white-panel h4 a {
    color: #010101;
    opacity: 1;
    font-weight: 700;
    text-align: right;
    font-size: 16px;
    padding: 10px;
    letter-spacing: .08em;
}

.white-panel:hover h4 a:hover, .white-panel:hover h4 a:focus {
    color: #010101;
    text-decoration: none;
}

.anoth_firms >#pinBoot > .white-panel {
  width: 25%;
  min-width: 10px;
}
.page_section { 
    z-index: 1;
    overflow: hidden;
    width: 70%;
    min-height: 400px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    vertical-align: middle;
    flex-direction: column;
    justify-content: center;
} 
.page_section--full {
  background: #EDEDED;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page_section_content {
    margin: 0 auto;
    width: 65%; 
    margin-bottom: 30px;
}

.form-control-search {
    margin: 30px auto;
    border: 3px solid #ddd;
    border-radius: 0;
}

.form--search {
    width: 300px;
    position: relative; 
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.form--search::before {
  content: '\f002';
  display: inline-block;
  position: absolute;
  right: 35px;
  bottom: 42px;
  font-size: 21px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

ul.show_region_section  {
    columns: 4;
    list-style-type: none;
}

ul.show_region_section > li > a {
  margin-left: 5px;
}

.list {
  columns: 5;  
  list-style-type: none;
}
.anoth_loc_list {
    width: 33.3%;
    float: left;
}
.show_region_section  li {
    padding: 10px;
    list-style-type: none;
}

.page_section {
    position: relative;
}

.fa-angle-double-down::before {
    font-size: 40px;
    color: #333;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -20px;
}

.text-footer {
    color: #222;
    width: 100%;
    text-align: center;
    padding: 20px 0 10px;
    border-top: 1px solid #222;
}
.header__one__page {
    position: relative;
    width: 65%;
    margin: 0 auto;
    padding: 50px 0px;
}

.header__one__page > .container {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.header__one__page::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #E37D39;
}

.home_sescion_title {
  font-size: 2.25em;
  line-height: 1.5;
}

.panel {
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    box-shadow: none;
}

.form-control {
    background: rgba(255, 255, 255, .75);
    border-radius: 0;
    border: 3px solid #333;
}

.form-control:hover, .form-control:focus {
  border: 3px solid #E37D39;
}

.form-group > label {
  color: #666;
  font-size: .6875em;
  line-height: 1.4545;
  text-transform: uppercase;
}

.btn-default, .btn {
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: rgba(0,0,0, 1);
    border-color: rgba(0,0,0, 1);
    font-size: .6875em;
    line-height: 1.4545;
    text-transform: uppercase;
    border-radius: 0;
    transition: all  .4s ease-out;
    padding: 8px 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.btn-default:hover, .btn-default:focus {
  background-color: rgba(0,0,0, .71);
  border-color: rgba(0,0,0, .71);
}

.show-post_head {
    color: #666;
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.anoth_firms {
    display: inline-block;width: 100%;
}

#show_post_image {
    padding: 0;
    margin-bottom: 40px;
    transition: all .5s;
}

#show_post_image:hover {
    opacity: .8;
}
.content .col-lg-5 {
    margin-bottom: 40px;
}

.anoth_firms .post_title {
    margin-top: 40px;
}
#mapdiv {
    display: inline-block;
    width: 100%;
}
.btn-post {
    margin-top: 20px;
}

#mapdiv, .footer {
    margin-top: 60px !important;
}



@media (min-width: 768px) {
    .section { padding-top:160px;}
}

@media (max-width: 460px) {
    .title {
        font-size: 5em;
    }
    .page_section, .page_section_content {
        width: 95%;
    }
    .page_big_title {
      font-size: 2.25em;
    }
    .form-control-search {
          margin: 0px auto 100px
    }
    .fa-angle-double-down::before {
      bottom: 0;
    }
    .form--search::before {
      bottom:112px;
    }
    .page_section {
      min-height: 60px;
    }
    .header__one__page {
      width: 80%;
    }
    .col-lg-12 {
      padding-left: 0;
      padding-right: 0;
    }
}

@endsection