/* 
 * 01 - Bootstrap Extensions
 * 02 - Elements & Typo
 * 03 - Header & Navigation
 * 04 - Sections & Content
 * 05 - Hoverbox
 * 06 - Buttons
 * 08 - Slider
 * 09 - Footer
 * 10 - Media Queries
 **/


/* 01 - Bootstrap Extensions */
.row:after {
  content: ' ';
  display:block;
  clear: both;
}

/* columns of same height styles */
.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}
.col-top {
  vertical-align: top;
}
.col-middle {
  vertical-align: middle;
}
.col-bottom {
  vertical-align: bottom;
}

@media (min-width: 480px) {
  .row-xs-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-xs-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-xs-top {
    vertical-align: top;
  }
  .col-xs-middle {
    vertical-align: middle;
  }
  .col-xs-bottom {
    vertical-align: bottom;
  }
}

@media (min-width: 768px) {
  .row-sm-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-sm-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-sm-top {
    vertical-align: top;
  }
  .col-sm-middle {
    vertical-align: middle;
  }
  .col-sm-bottom {
    vertical-align: bottom;
  }
}

@media (min-width: 992px) {
  .row-md-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-md-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-md-top {
    vertical-align: top;
  }
  .col-md-middle {
    vertical-align: middle;
  }
  .col-md-bottom {
    vertical-align: bottom;
  }
}

@media (min-width: 1200px) {
  .row-lg-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-lg-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-lg-top {
    vertical-align: top;
  }
  .col-lg-middle {
    vertical-align: middle;
  }
  .col-lg-bottom {
    vertical-align: bottom;
  }
}

/* END Bootstrap Extensions */


/* 02 - Elements & Typo */
body {
  font-family: 'Clear Sans', Arial, Helvetica, sans-serif;
  background-color: #003054 !important;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding-top:70px;
}

* {-webkit-padding-start: 0;}

a, a:hover, a:active, a:focus {
	
	border: none !importnant;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
	-moz-tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: rgba(0,0,0,0);
	border-style: none;
}

*:active {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-moz-tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: rgba(0,0,0,0);
}

img {
	border: none !importnant;
	outline: 0 !importnant;
	border-style: none;
}
a, a:focus, a:hover {
  color: #fff !important;
}

h1 {
  font-size: 42px;
  font-style: normal;
  font-variant: normal;
  font-weight: 100;
  margin-top: -10px;
}

h3, h2 {
  font-style: normal;
  font-variant: normal;
  font-weight: 100;
}

h2 + *, h3 + * {
  margin-top: 20px;
}

h4 {
  margin-bottom: 0;
  font-weight: normal;
}

p,a,div,strong {
  font-style: normal;
  font-variant: normal;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

p:first-child {
  margin-top: -7px;
}

blockquote {
  font-size: 18px;
  font-style: italic;
  margin: 0.25em 0;
  padding: 0.25em 40px;
  position: relative;
  border: none;
}

blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -8px;
  top: -20px;
  color: #003054;
}

blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
 
blockquote cite:before {
  content: "\2014 \2009";
}
/* END Elements & Typo */


/* 03 - Header & Navigation */

.header {
  padding-left:15px;
  padding-right:15px;
  text-align:left;
  margin-bottom: 30px;
  margin-top: -20px;
}

.navbar-brand {
  /* image replacement */
  display: inline-block;
  text-indent: -999em;
  background: url('../images/twostone-logo.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 160px 25px;
  height: 25px;
  width: 160px;
  padding: 0;
  margin-top: 13px;
  margin-left: 0 !important;
}

button.navbar-toggle, button.navbar-toggle:hover, button.navbar-toggle:focus {
  background: none !important;
  border: none;

  overflow: hidden;
  padding: 5px;
  
  margin: 0;
  margin-bottom: 7px;
  margin-right:10px;
  color: white;
  font-size: 20px;
}

button.navbar-toggle .icon-cancel {
  display: none; /*default*/
}

button.navbar-toggle[aria-expanded="true"] .icon-menu {
  display: none;
  
}

button.navbar-toggle[aria-expanded="true"] .icon-cancel {
  display: block;
}

button.navbar-toggle[aria-expanded="false"] .icon-menu {
  display: block;
  
}

button.navbar-toggle[aria-expanded="false"] .icon-cancel {
  display: none;
}
/*
button.navbar-toggle .glyphicon-remove{
  left: 4px;
    top: -1px;
}
*/
/*
 * Navbar
 */
 i.icon-lock {
  font-size:0.9em;
  margin-left: -2px;
}


.navbar-default {
  padding-top:4px;
  background-color: #003054;
  border-bottom: none;
  min-height: 70px;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: white;
}



.navbar-default .navbar-nav > li > a {
  color: #dcdcdc!important;
  font-size:16px;
  position: relative;
}

.navbar-default .navbar-nav > li > a:after {
  content: ' ';
  height: 2px;
  width: calc(100% - 30px);
  background-color: transparent;
  position: absolute;
  bottom: 6px;
  left: 15px;
  
  -webkit-transition: background-color 0.3s ease; /* Firefox */
  -moz-transition: background-color 0.3s ease; /* WebKit */
  -o-transition: background-color 0.3s ease; /* Opera */
  transition: background-color 0.3s ease; /* Standard */
}

.navbar-default .navbar-nav > li > a .glyphicon-lock {
  margin-left: 3px;
}
.navbar-default .navbar-nav > li > a:hover {
  background-color: transparent;
  border-bottom-color: #dcdcdc;
}
.navbar-default .navbar-nav > li > a:hover:after {
  background-color: #dcdcdc;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  border-bottom-color: white;
  color:white !important;
}

.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  background-color: white;
}
/* END Header & Navigation*/


/* 04 - Sections & Content */

img.responsiv {
  width: 100%;
  height: auto;
}

.jumbotron {
  background-color:#333;
  color:white !important;
}

.row {
  padding-top: 30px;
  padding-bottom: 30px;
}

.circular {
  width: 300px;
  height: 300px;
  border-radius: 150px;
  margin:0 auto;
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}

.description {
  font-size:18px;
}

.loud {
  font-size: 26px;
  color: #00508D;
}

.loud + p, p + .loud {
  margin-top: 30px;  
}

a.read-more {
  /*text-decoration: underline;*/
  font-weight: 500;  
}

.no-touch a.read-more {
  text-decoration: none;
}

.no-touch a.read-more:hover {
  text-decoration: underline;
}

.modal-open { overflow:inherit; padding:inherit !important; }

.insight-teaser {
  margin-bottom: 20px;
}

.insight-section a, 
.insight-section a:hover, 
.insight-section a:focus,
.insight-section a:active {
  color: #333 !important;
}

.insight-section a:hover h2 {
  text-decoration: underline;
}

.insight-section a.title {
  display: block;
  margin-bottom: 20px;
}

.profile {
  padding: 15px;
  border: solid 1px #DDD;
}

.profile h3 {
  font-size: 20px !important;
}

.profile-link {
  font-size: 16px;
}
.inside-back {
  font-size: 16px;
}

.content {
  color: #333;
}
.content ol {
  padding-left: 18px;
}

.content ul {
  padding-left: 18px;
}

.content ul {
    list-style: none;
    padding-left:0;
}

.content ul li { 
    padding-left: 1em; 
    text-indent: -.7em;
}

.content ul li:before {
    content: "• ";
    color: #00508D;
}

.content li + li {
  margin-top: 10px;
}

.content table td li {
  margin-top: 0;
}

.content a {
  color: #003054 !important;
}

.content a:hover {
  color: #00508D !important;
}

.content a h2, .content a:hover h2 {
  color: #333 !important;
}

.content * + h3 {
  display: block;
  margin-top: 20px !important;
}

.content table {
  border-collapse: separate;
  border-spacing: 20px;
  margin-left: -20px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.content table td {
  vertical-align: top;
}

.content strong {
  font-weight: 500;
}

/* Home */
#title {
  margin-top: 8px;
  font-size: 36px;
}

.ts-home-brand {
  /* image replacement */
  display: block;
  text-indent: -999em;
  background: url('../images/twostone-white-intro-logo.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 310px 63px;
  height: 63px;
  width: 310px;
  padding: 0;
  margin: 0;
  margin-bottom: 6px;
  margin-left: -10px;
  margin-top: -10px;
}

.ts-home-brand:after {
  content: ' ';
  width: 100%;
  left: 0;
  position: fixed;
  top: calc((100% - 70px) * 0.382 + 70px);
  border-top: solid 2px white;
}

/* Contact */
.contact-brand {
  /* image replacement */
  display: inline-block;
  text-indent: -999em;
  background: url('../images/twostone-logo.png');
  background-position: -1px center;
  background-repeat: no-repeat;
  background-size: 160px 25px;
  height: 25px;
  width: 160px;
  padding: 0;
  margin: 0;
}

.map-col {
  padding-right: 0!important;
}

#map {
  min-height: 360px;
  height: 410px;
  width: 100%;
  color: #333;
}

/* Contact Form */

.contact-form {
  text-align: left;
}

.contact-adress-col {
  background:#003054; 
  padding-top:50px; 
  padding-bottom:120px; 
  text-align: left;
  padding-right:0;
  margin-right: 15px;
  
}

.contact-form label {
  display: block;
  font-size: 16px;
  font-weight: 100;
  color: #333;
}

.contact-form .row {
  padding: 0;
}

.contact-form .btn-primary {
  background-color: #003054;
  border-radius: 0;
  border: none;
  width: 180px;
  height: 50px;
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 100;
  text-transform: uppercase;
  
  color:#FFF !important;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color  0.5s ease-in-out;
  -o-transition: background-color  0.5s ease-in-out;
  transition: background-color  0.5s ease-in-out;
}

.contact-form .btn-primary:hover {
  text-decoration:none;
  color:#FFF !important;
  background: #00508D;
}
/*
 *  Masonry
 */

.masonry-box{
  height:570px;
  padding:20px;
}

.masonry-item {
  margin:0 auto;
  width:100%;
  height:100%;
  background-color: #eee;
}

.box-header{
  display:table;
  text-align:center;
  height:15%;
  width:100%;
  background-color:#003054;
  color:white;
}

.box-header > p,h2,h3 {
  display:table-cell; 
  vertical-align:middle;
}

.box-content{
  height:75%;
  padding:15px;
  overflow:hidden;
}
.box-read {
  padding-left:10px;
  height:10%;
  text-align:left;
}

.box-read > span {
  font-size:150%; 
  top:25%;
}
/* END Sections & Content */


/* 05 - Hoverbox */
/*
 *  Hover box css and transitions
 */

.hover-box {
  overflow:hidden;
}



.responsive-quadrat {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.responsive-quadrat .inner {
    height: 0;
    padding-bottom: 100%;
    position: relative; 
}

.hover-content {
  overflow:hidden !important; 
  height:100%; 
  width:100%;
  position: absolute;
}

.hover-content a {
  text-decoration: none;
  border: none;
  outline: none;
}

.hover-content .mobile {
  position: absolute;
  bottom: 0px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  color: rgb(0, 48, 84);
  padding: 15px 0;
  font-size: 16px;
  font-weight: 300;
}

.mobile h1 {
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
  border: none;
  outline: none;
}
.no-touch .hover-content .mobile {
  display: none;
}

.hover-img {
  background: url(../images/test.jpg) no-repeat center center;
  background-size:auto 100% !important;
  width:100%;
  height:100%;
  
   -webkit-transform:scale(1); /* Safari and Chrome */
  -moz-transform:scale(1); /* Firefox */
  -ms-transform:scale(1); /* IE 9 */
  -o-transform:scale(1); /* Opera */
   transform:scale(1);
   
  -moz-transform-origin: 50% 50%; /* Firefox */
  -ms-transform-origin: 50% 50%; /* IE 9 */
  -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
  transform-origin: 50% 50%;
  
  
   -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all  0.5s ease-in-out;
  -o-transition: all  0.5s ease-in-out;
  transition: all  0.5s ease-in-out;
  
  z-index:5;
}

.no-touch .hover-content a:hover .hover-img {
   -webkit-transform:scale(1.2); /* Safari and Chrome */
  -moz-transform:scale(1.2); /* Firefox */
  -ms-transform:scale(1.2); /* IE 9 */
  -o-transform:scale(1.2); /* Opera */
   transform:scale(1.2);
   
   -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-layer {
  display: box;
  opacity:0;
  width:100%;
  height:100%;
  text-align:center;
  color:white;
  background-color: #003054;

  -webkit-transform:scale(1.3); /* Safari and Chrome */
  -moz-transform:scale(1.3); /* Firefox */
  -ms-transform:scale(1.3); /* IE 9 */
  -o-transform:scale(1.3); /* Opera */
   transform:scale(1.3);

  -moz-transform-origin: 50% 50%; /* Firefox */
  -ms-transform-origin: 50% 50%; /* IE 9 */
  -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
  transform-origin: 50% 50%;
    
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  z-index:10;
  top: 0;
  left: 0;
  
  /*
  display: -webkit-box;
  display: -moz-box;
  */
  /* New Syntax */
  /*display: -webkit-flexbox;
  display: flex;*/

   /* Center vertically */
   /*align-items: center;*/

   /*Center horizontaly */
   /*justify-content: center;*/

   /*Center horizontaly ie */
   /*-ms-flex-pack: center;
   -ms-flex-align:center;*/
   
   display: table;
}

.no-touch .hover-content a:hover .hover-layer {
  opacity: .8;
  min-width:100%;
  min-height:100%;
  -webkit-transform:scale(1); /* Safari and Chrome */
  -moz-transform:scale(1); /* Firefox */
  -ms-transform:scale(1); /* IE 9 */
  -o-transform:scale(1); /* Opera */
  transform:scale(1);

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/*IE 11 fix*/
/*_:-ms-fullscreen,*/ 
.hover-text {
  display: table-cell;
  vertical-align: middle;
}

.hover-text .clear-button {
  display: table;
  width:180px;
  height:50px;
  
  margin:0 auto;
  text-align:center;
  font-size:20px;
  
}

.hover-text h1 {
  font-size: 16px !important;
  margin-bottom: 20px;
  border: none;
  outline: none;
}

.hover-text .clear-button span {
  display:table-cell;
  vertical-align: middle;
  width:100%;
  height:100%;
  background: rgba(255,255,255, 0.5);
  
  font-size: 16px !important;
  height: 40px;
  
  color:#00508D !important;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color  0.5s ease-in-out;
  -o-transition: background-color  0.5s ease-in-out;
  transition: background-color  0.5s ease-in-out;
}

.hover-text .clear-button span:hover {
  text-decoration:none;
  color:#00508D !important;
  background: rgba(255,255,255, 1);
}

/* END - Hoverbox */


/* 06 - Buttons */

/*
 * Clear button
 */
.clear-button {
  display: table;
  width:180px;
  height:50px;
  
  margin:0 auto;
  text-align:center;
  font-size:20px;
  
}

.clear-button a {
  display:table-cell;
  vertical-align: middle;
  width:100%;
  height:100%;
  background: rgba(255,255,255, 0.5);
  
  color:#00508D !important;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color  0.5s ease-in-out;
  -o-transition: background-color  0.5s ease-in-out;
  transition: background-color  0.5s ease-in-out;
}

.clear-button a:hover {
  text-decoration:none;
  color:#00508D !important;
  background: rgba(255,255,255, 1);
}

/*
 * Dark button
 */
.dark-button {
  display: table;
  width:180px;
  height:50px;
  
  margin:0 auto;
  text-align:center;
  font-size:20px;
  
}

.dark-button a {
  display:table-cell;
  vertical-align: middle;
  width:100%;
  height:100%;
  background: #003054;
  
  color:#FFF !important;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color  0.5s ease-in-out;
  -o-transition: background-color  0.5s ease-in-out;
  transition: background-color  0.5s ease-in-out;
}

.dark-button a:hover {
  text-decoration:none;
  color:#FFF !important;
  background: #00508D;
}

/* END Buttons */


/* 08 - Slider */

.swiper-wrapper {
  width: 100%;
  /*height: 360px;*/
}

.slider-padding {
	padding: 80px;
}
.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  
  -webkit-transition: opacity 0.3s ease; /* Firefox */
    -moz-transition: opacity 0.3s ease; /* WebKit */
    -o-transition: opacity 0.3s ease; /* Opera */
    transition: opacity 0.3s ease; /* Standard */
}

.swiper-pagination-bullet:hover {
  opacity: 0.13;

}

.swiper-pagination-bullet-active {
  background: #003054 none repeat scroll 0%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23003054'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23003054'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-next:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%2300508D'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next:hover,
.swiper-container-rtl .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%2300508D'%2F%3E%3C%2Fsvg%3E");
}

.swiper-slide .description {
  font-size: 22px;
  font-style: italic;
  color: #666;
}

.swiper-slide .description.txt {
  margin-top: 0;
  margin-bottom: 15px;
}

/* END Slider */


/* 09 - Footer */

.prefooter-section h1 {
  font-size: 32px !important;
  padding-bottom: 0 !important;
  margin-bottom: 35px;
}

.prefooter-section.investor-relations .clear-button {
  margin-bottom: 35px;
}

.prefooter-section.investor-relations p.email {
  font-size: 24px !important;
  margin: -10px !important;
  padding: 0 !important;
}
.prefooter-section.investor-relations p.email a {
  font-size: 24px !important;
}

#footer {
  padding-top: 45px;
  padding-bottom: 35px;
}
.footer-brand {
  /* image replacement */
  display: inline-block;
  text-indent: -999em;
  background: url('../images/twostone-logo.png');
  background-position: -1px center;
  background-repeat: no-repeat;
  background-size: 128px 20px;
  height: 20px;
  width: 128px;
  padding: 0;
  margin:0;
  margin-bottom: 13px;
  overflow: hidden;
}
.footer-brand-row {
  /*margin-bottom: -5px;*/
}
.adress {
  /*line-height: 1.2;*/
}

#footer nav {
  margin-top: -12px !important;
}
#footer nav ul li a {
  font-size: 16px;
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
}

#footer nav ul li a i {
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: color 0.3s ease; /* Firefox */
  -moz-transition: color 0.3s ease; /* WebKit */
  -o-transition: color 0.3s ease; /* Opera */
  transition: color 0.3s ease; /* Standard */
}

#footer nav ul li a:hover i {
  color: rgba(255, 255, 255, 1);
}

#footer nav ul {
  list-style-type: none;
  position: relative;
  padding: 0;
  margin: 0;
  margin-top: -4px;
}

#footer nav ul:before, #footer nav ul:after {
  content: ' ';
  clear: both;
  display: block;
}

#footer nav ul li {
  position: abslolute;
  float: left;
  width: calc((100% - 30px) / 4);
}

#footer nav ul li:nth-child(5n+0) { 
  clear: left; 
}

/* END Footer */

/* 10 - Media Queries */

@media (max-width:360px) {
 #footer nav ul li {
   width: auto !important;
    float: none !important;
  }

}

@media (max-width:480px) {
  .masonry-box {
    padding-left:20px;
    padding-right:20px;
  }
  
  .prefooter-section.investor-relations p.email, .prefooter-section.investor-relations p.email a {
    font-size: 15px !important;
  }
  
  .ts-home-brand {
    background-size: 200px 41px;
      height: 41px;
      width: 200px;
  }
  
  .ts-home-brand:after {
    top: calc((100% - 70px) * 0.382 + 50px);
  }
  
  #title {
        font-size: 26px !important;
  }
}

@media (min-width:480px) and (max-width:768px) {
  .masonry-box {
    padding-left:100px;
    padding-right:100px;
  }
}

@media (max-width:767px) {
  body {
    padding-top: 50px;
  }
  .header {
    /*text-align:center;*/
  }
  
  .navbar-brand{
    margin-top: 10px;
    margin-left: 15px !important;
  }
  
  .navbar-default {
    min-height: 50px;
  }
  
  .navbar-nav.navbar-right {
    margin-top: 0;
  }
  .navbar-default .navbar-nav > li > a {
    font-size: 20px !important;
    padding: 10px 0;
  }
  
  .navbar-default .navbar-nav a:after {
    display: none;
    visibility: hidden;
  }
  
  .navbar-default .navbar-nav .active {
    background-color: rgba(255,255,255, 0.1);
  }
  
  .glass {
    height: 100% !important
  }
  .loud {
    font-size: 22px;
  }
  
  .swiper-button-next {
    display: none;
  }
  
  .swiper-button-prev {
    display: none;
  }
  
  .slider-padding {
    padding: 10px;
  }
  h1 {
    font-size: 36px;
  }
  
  .map-col {
  padding-left: 0!important;
  }

  .contact-adress-col {
  padding-right: 15px;
  margin-right: 0;
  
  }
  
  .contact-section {
    padding-top: 0!important;
  }
  
  .contact-section .row.vertical-align {
    padding-top: 0!important;
  }
  
  #footer nav ul li {
    width: calc((100% - 30px) / 2);
    clear: none !important;
  }
  
  #footer nav ul li:nth-child(3n+0) { 
    clear: left; 
  }
  
  #footer {
    text-align: left;
  }
  
  .swiper-wrapper img {
    margin-top: 30px;
  }
  
  .swiper-slide .description {
    margin-top: 0;
  }
  
  
}

@media (max-width: 991px) {
  .hover-box + .hover-box {
	margin-top: 20px;
  }
  #footer nav ul {
    margin-top: 30px;
  }
  
  .right-side-graphic {
    margin-top: 30px;
  }
  
  .left-side-graphic {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 11px;
  }
}

@media (max-width: 1199px) {
  #footer nav ul {
    margin-top: 30px;
  }
}
@media (min-width:767px) {

  .vertical-align {
    display: -webkit-box;
  display: -moz-box;
  
  /* New Syntax */
  display: -webkit-flexbox;
    display: flex;
    flex-direction: row;
  }

  .vertical-align > [class^="col-"],
  .vertical-align > [class*=" col-"] {
    display: flex;
    align-items: center;
    justify-content: center; /* Optional, to align inner items 
                                horizontally inside the column */
  }

}
@media (min-width: 992px) {
  .col-md-push-0-5 {
      left: calc(8.33333333% / 2);
  }
}


