/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

footer {
    background: #fff;
}

.main_footer {
    padding-top: 60px;
    padding-bottom: 30px;
    border:1px solid #dbdbdb;
}

.main_f_links {}

.footer_he {}

.footer_he h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    padding-bottom: 15px;
    font-weight: 600;
}

.location {
    padding-bottom: 20px;
}

.media-left {
    line-height: 0;
    padding-right: 17px;
}

.media-left span {
    color: #F04750;
    font-size: 16px;
}

.media-body {
    font-family: 'Lato', sans-serif;
}

.media-body h5 {
    font-size: 15px;
    color: #F04750;
    font-weight: 600;
    padding-bottom: 7px;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
}

.media-body p {
    font-size: 13px;
    color: #000;
    line-height: 18px;
}

.media-body a {
    font-size: 13px;
    color: #000;
    line-height: 22px;
    display: inline-block;
    transition: 0.45s;
}

.media-body a:hover {
    color: #F04750;
}

.footer_material {
    margin-top:0px;
}

.footer_social {}

.footer_social ul {}

.footer_social ul li {
    display: inline-block;
    padding-right: 10px;
}

.footer_social ul li a {
    color: #000;
    width: 30px;
    height: 30px;
    background: transparent;
    display: block;
    text-align: center;
    transition: 0.45s;
    line-height: 32.5px;
    font-size: 17px;
}

.footer_social ul li a:hover {
    background: #F04750;
    color: #fff;
    border-radius: 50%;
}

.footer_links {}

.footer_links ul {}

.footer_links ul li {list-style: none;}

.footer_links ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #000;
    display: inline-block;
    transition: 0.45s;
    padding-bottom: 9px;
}

.footer_links ul li a span {
    display: inline-block;
    font-size: 14px;
    color: #F04750;
    padding-right: 15px;
    transition: 0.45s;
}

.footer_links ul li a:hover {
    color: #F04750;
}

.footer_links ul li a:hover span {
    padding-right: 20px;
}.ston {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #F04750;
    padding-bottom: 5px;
}

.updats {
    font-family: 'Lato', sans-serif;
    height: 150px;
    overflow: hidden;
}

.updats p {
    color: #000;
    text-align: justify;
    font-family: 'Lato', sans-serif;
}

.updats h6 {
    color: #F04750;
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
    font-family: 'Lato', sans-serif;
}

.copy_right {
    font-family: 'Lato', sans-serif;
    padding: 5px 0px;
}

.copy_right p {
    color: #cacaca;
    font-size: 12px;
}

.copy_right h4 {
    color: #cacaca;
    font-size: 12px;
    display: inline-block;
    float: right;
}

.copy_right h4 a {
    color: #F04750;
    transition: 0.45s;
    display: inline-block;
    padding-left: 5px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.copy_right h4 a:hover {
    color: #fff;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

/* -------------------------------- 

Main components 

-------------------------------- */


.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
      box-shadow: 0 0 10px rgb(0, 0, 0);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
      background:#048149 url(../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
/*  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;*/
  transition: all 0.5s ease-in-out 0s;
 
}

.cd-top:hover{
	background-color:#048149;
	}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
transition: all 0.5s ease-in-out 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
   background-color: #048149;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
