/************ typo ************/
html{
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    font-smoothing: antialiased;
}
body{
    background-color: #efefef;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    
    font-size: 17px;
    line-height: 22px;
}
@media (min-width:768px) {
    body {
        font-size: 20px;
    }
}

@media (min-width:1170px) {
     body {
        font-size: 30px;
        font-size: 1.62vw;
        line-height: 41px;
        line-height: 2.2vw;
    }
}
b{
     font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
a{
}
a:hover{
    text-decoration: none;
    color: #000;
}
.caption, .infoblock{
    font-size: 0.7em;
    line-height: 1.4em;
}
.caption{
    font-weight: 300i;
    font-style: italic;
}

/************* general *************/
.container-fluid{
    padding-top: 5px;
}

.side_padding{
    padding: 0 5px;
}
@media (min-width:768px) {
    .side_padding{
        padding: 0 10px;
    }  
}

/************* header *************/
.header{
    padding-bottom: 5px;
}
.header-text{
    padding-bottom: 20px;
}
@media (min-width:768px) {
    .header-text{
    padding-bottom: 0px;
}
}

.contact, .links{
    padding-left: 3em;
}

/************* slider *************/
.carousel-control-prev, .carousel-control-next{
    width: 100%;
}
.carousel-control-next{
     /* not working one */
      cursor: url("../cursor/cursor.svg"), auto;
      /* working one */
      cursor: url("../cursor/cursor.png"), auto;
}
.caption{
    padding: 5px 0;
}

/************* textblock *************/
.textblock{
    margin-top: 4%;
}
.infoblock{
    margin-top: 6%;
}

/************* footer *************/
.footer{
    margin-top: 9%;
    padding: 1em 0px;
}


/************* hover effect-3 }} *************/
a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  transition: width .3s ease;
}
.effect-3 {
  display: inline-block;
  padding-top: 0;
  padding-bottom: -10px;
  line-height: inherit;
  overflow: hidden;
  vertical-align: bottom;
}
.effect-3:after {
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
}
.effect-3:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
}
.effect-3:hover:after {
  width: 100%;
}