* {
  box-sizing: border-box;
}

.background-image{
  background: url(../images/background.jpg) no-repeat fixed ;
  background-position: 100% 31%; 
  background-size: cover;
  -webkit-background: url(../images/background.jpg) no-repeat fixed;
}

body {
  font-family: 'Montserrat';
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.icon{
  display: inline-block;
  vertical-align:middle;
  padding-right:4px; 
}

.nav {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.nav__list {
  display: flex;
  flex-flow: column wrap;
  height: 85vh;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__list--active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.nav__item {
  flex: 1;
  position: relative;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  font-size: 24px;
  background: #2b3330;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__link:hover {
  background: #295855;
}
@media (max-width: 640px) {
  .nav {
    width: 70px;
  }
  .nav__list {
    height: 90vh;
  }
}

.burger {
  height: 15vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: #2b3033;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.burger:hover {
  background: #272b2e;
}
.burger__patty {
  position: relative;
  height: 2px;
  width: 40px;
  background: white;
}
.burger__patty__returns {
  position: relative;
  background: red;
}
.burger__patty:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
}
.burger__patty:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
}
.burger__patty, .burger__patty:before, .burger__patty:after {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.burger--active .burger__patty {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.burger--active .burger__patty:before {
  -webkit-transform: rotate(-45deg) translate(-7px, -7px) scaleX(0.7);
          transform: rotate(-45deg) translate(-7px, -7px) scaleX(0.7);
}
.burger--active .burger__patty:after {
  -webkit-transform: rotate(45deg) translate(-7px, 7px) scaleX(0.7);
          transform: rotate(45deg) translate(-7px, 7px) scaleX(0.7);
}
@media (max-width: 640px) {
  .burger {
    height: 10vh;
  }
  .burger__patty {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .burger--active .burger__patty {
    -webkit-transform: scale(0.8) rotate(90deg);
            transform: scale(0.8) rotate(90deg);
  }
}

.panel {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.panel__wrapper {
  padding: 7vh 7vw;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.panel__content {
  will-change: transform;
  -webkit-transform: scale(0.7) rotateX(-230deg);
          transform: scale(0.7) rotateX(-230deg);
  -webkit-transform-origin: center 80%;
          transform-origin: center 80%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.panel__content--active {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
h1.panel__headline {
  font-family: Beyond the Mountains;
  text-align: -webkit-center;
  font-weight: bolder;
  text-align: center;
  color:#e22121
}

.bottomleft{
  border-width:5px;  
  border-left:5px ridge  rgba(0, 0, 0, 0.2);
  border-bottom:5px ridge  rgba(0, 0, 0, 0.2);
  margin: 0 0 25px 0;
}
.topright{
  border-width:5px;  
  border-top:5px ridge  rgba(20, 18, 18, 0.2);
  border-right:5px ridge  rgba(20, 18, 18, 0.2);
  margin-top:25px;
  margin-bottom: 50px;
}

@-webkit-keyframes border{
  from{
    border-width:5px;  
    border-top:5px ridge  rgba(0, 0, 0, 0.2);
    border-right:5px ridge  rgba(0, 0, 0, 0.2);
  }
  to{
    border-width:5px;  
    border-top:5px ridge rgb(54, 51, 51);
    border-right:5px ridge rgb(54, 51, 51);
  }
}
@keyframes border{
  from{
    border-width:5px;  
    border-top:5px ridge  rgba(0, 0, 0, 0.2);
    border-right:5px ridge  rgba(0, 0, 0, 0.2);
  }
  to{
    border-width:5px;  
    border-top:5px ridge rgb(54, 51, 51);
    border-right:5px ridge rgb(54, 51, 51);
  }
}
.bottomleft {
  position: relative;
}
.bottomleft:before, .bottomleft:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  
}
.bottomleft:before {
  top: -3px;
  width: 3px;
  background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000), to(transparent));
  background-image: -webkit-linear-gradient(transparent, #000);
  background-image: -moz-linear-gradient(transparent, #000);
  background-image: -o-linear-gradient(transparent, #000);
}
.bottomleft:after {
  right: -3px;
  height: 3px;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#000), to(transparent));
  background-image: -webkit-linear-gradient(left, #000, transparent);
  background-image: -moz-linear-gradient(left, #000, transparent);
  background-image: -o-linear-gradient(left, #000, transparent);
 }

@-webkit-keyframes border2{
  from{
    border-width:5px;  
    border-bottom:5px ridge  rgba(0, 0, 0, 0.2);
    border-left:5px ridge  rgba(0, 0, 0, 0.2);
  }
  to{
    border-width:5px;  
    border-bottom:5px ridge #fff;
    border-left:5px ridge #fff;
  }
}
@keyframes border2{
  from{
    border-width:5px;  
    border-bottom:5px ridge  rgba(0, 0, 0, 0.2);
    border-left:5px ridge  rgba(0, 0, 0, 0.2);
  }
  to{
    border-width:5px;  
    border-bottom:5px ridge #fff;
    border-left:5px ridge #fff;
  }
} 
.animate {
    position: relative;
    -webkit-animation-name: Slide;
    -webkit-animation-duration: 4s;
    animation-name: Slide;
    animation-duration: 4s;
    animation-direction: reverse;
}

@-webkit-keyframes Slide {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.550;
    }

    60% {
        opacity: 0.10;
    }

    100% {
        opacity: 0;
    }
}

@keyframes Slide {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.10;
    }

    100% {
        opacity: 0;
    }
}

img .animation {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
}

.animation {
    position:relative;
    -webkit-animation-timing-function: linear;
    -webkit-animation-name: example;
    -webkit-animation-duration: 4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-name: example;
    animation-duration: 4s;
    animation-direction: normal;
}

@keyframes example {
  from{
      position:relative ;
      margin-left: 100%;
      margin-right: 0%
  }

  to{
      margin-left: 0%;
      margin-right: 100%
  }

}

@keyframes example {
    from {
        position:relative ;
        margin-left: 100%;
        margin-right: 0%
    }

    to {
        margin-left: 0%;
        margin-right: 100%
    }
}

img .animation0 {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.animation0 {
  position:relative;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: ex; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-name: ex;
  animation-duration: 4s;
  animation-direction: normal;
  animation-fill-mode: forwards;

}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes ex {
  0% {
    position:relative ;
    margin-left: 0%;
    margin-right: 100%
}

50% {
    margin-left: 25%;
    margin-right: 75%
}

100% {
    margin-left: 50%;
    margin-right: 50%
}
}

/* Standard syntax */
@keyframes ex {
  0% {
    position:relative ;
    margin-left: 0%;
    margin-right: 100%
}

50% {
    margin-left: 25%;
    margin-right: 75%
}

100% {
    margin-left: 50%;
    margin-right: 50%
}
}

img .animation1 {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.animation1 {
  position:absolute;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: bottom; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-name: bottom;
  animation-duration: 4s;
  animation-direction: reverse;
}

/* Safari 4.0 - 8.0 */
@keyframes bottom {
from{
    position:absolute ;
    margin-left: 100%;
    margin-right: 0%
}

to{
    margin-left: 0%;
    margin-right: 100%
}

}

/* Standard syntax */
@keyframes bottom {
  from {
      position:absolute ;
      margin-left: 100%;
      margin-right: 0%
  }
  to {
      margin-left: 0%;
      margin-right: 100%
  }
}

img .animation2 {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.animation2 {
  position: relative; ;
  margin-left: 0%;
  margin-right: 100%;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: left; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-name: left;
  animation-duration: 4s;
  animation-direction: normal;
}

/* Safari 4.0 - 8.0 */
@keyframes left {
from{
    margin-top: 100%;
    margin-bottom: 0%
}

to{
  margin-top: 0%;
  margin-bottom: 100%
}
}
@keyframes left {
  from{
      margin-top: 100%;
      margin-bottom: 0%
  }
  
  to{
    margin-top: 0%;
    margin-bottom: 100%
  }
  
  }
  
img .anim {
  width: 50px;
  height: 50px;
}
.anim {
  
  position: absolute ;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: side; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  animation-timing-function: linear;
  animation-name: side;
  animation-duration: 4s;
  animation-direction: reverse;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes side {
  0% {
      margin-left: 0%;
      margin-right: 100%;
      position: absolute;
      margin-top: 0%;
      margin-bottom: 100%
  }

  25% {
      margin-top: 25%;
      margin-bottom: 75%
  }

  50% {
      margin-top: 50%;
      margin-bottom: 50%
  }

  75% {
      margin-top: 75%;
      margin-bottom: 25%
  }

  100% {
      margin-top: 100%;
      margin-bottom: 0%
  }
}

/* Standard syntax */
@keyframes side {
  0% {
      position: relative;
      margin-top: 0%;
      margin-bottom: 100%
  }

  25% {
      margin-top: 25%;
      margin-bottom: 75%
  }

  50% {
      margin-top: 50%;
      margin-bottom: 50%
  }

  75% {
      margin-top: 75%;
      margin-bottom: 25%
  }

  100% {
      positon: fixed;
      margin-top: 100%;
      margin-bottom: 0%
  }
}
/* TITLE */

h1 span
{   position: relative;
    opacity: 0;
    display: inline-block;
    -webkit-animation-timing-function: linear;
    -webkit-animation-name: myAnimation; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-timing-function: linear;
    animation-name: myAnimation;
    animation-duration: 4s;
    animation-direction: reverse;
    
     /* animation: animate 1s linear forwards; */
     animation: fadeout 4s;
     animation-fill-mode: forwards;
     /* animation-direction: reverse; */
}
@keyframes myAnimation
{
    0%
    {
        opacity: 0;
        transform: rotateY(90deg);
        filter: blur(10px);
    } 
    100%
    {
        opacity: 1;
        transform: rotateY(0deg);
        filter: blur(0);
    }   
    
}
h1 span:nth-child(9)
{
    animation-delay: 1s;
}
h1 span:nth-child(8)
{
    animation-delay: 1.25s;
}
h1 span:nth-child(7)
{
    animation-delay: 1.5s;
}
h1 span:nth-child(6)
{
    animation-delay: 1.75s;
}
h1 span:nth-child(5)
{
    animation-delay: 2s;
}
h1 span:nth-child(4)
{
    animation-delay: 2.25s;
}
h1 span:nth-child(3)
{
    animation-delay: 2.5s;
}
h1 span:nth-child(2)
{
    animation-delay: 2.75s;
}
h1 span:nth-child(1)
{
    animation-delay: 3s;
}
@keyframes fadeout
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
/* TITLE */
.panel__headline {
    font-weight: 700;
    opacity: 1;
    font-size: 35px;
}

@media (max-width:1366px) {
    h1.panel__headline {
        font-size: 4em;
    }
}

@media (max-width:900px) {
    h1.panel__headline {
        position: relative;
        font-size: 1.5em;
        font-weight: 900;
        opacity: 1
    }
}
/*----*/
.panel p {
  margin: 0 0 25px 0;
  color: #1a1a1a;
  font-size: 24px;
  max-width: 800px;
}
.panel p:last-child {
  margin-bottom: 0;
}
.panel__block {
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 0 25px 0;
}
@media (max-width: 640px) {
  
.background-image{
  background: url(../images/bg/spon_bg.jpg) no-repeat fixed ;
  /* background: url(../images/bg/bg3.jpg) no-repeat fixed fixed ; */
  /* opacity: 0.7; */
  /* background-filter: blur(1px); */

  background-position: 100% 31%; 
   background-size: cover;
   /* background-repeat: no-repeat;
   background-attachment: fixed; */
  -webkit-background: url(../images/bg/spon_bg.jpg) no-repeat fixed;
  /* -webkit-background-position: 100% 100%;  */
  /* -webkit-background-size: cover; */
}

  h1.panel__headline {font-size:1.4 em;}}
  .panel__headline {
    font-size: 75px;
  }
  .panel__wrapper {
    padding: 10vh 10vw;
  }
  .panel p {
    font-size: 16px;
  }
}

.box-1{
  position: relative;
  padding: 20px;
  overflow: hidden;
  background-color: rgba(24, 218, 208, 0.2);
  border-radius: 6px;
}

.c-blue {
  color: #5fc7ea;
}

.c-red {
  color: #e68568;
}

.c-green {
  color: #68e6ac;
}

.c-yellow {
  color: #e6d068;
}


.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 65px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.logo img:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}

/* Bootstrap classes for buttons */

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.row-1 {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
}

  .thumbnail {
    display: block;
    padding: 5px;
    
    line-height: 1.42857143;
    border-top-right-radius : 15px;
    border-bottom-left-radius : 15px;
    -webkit-transition: border .2s ease-in-out;
         -o-transition: border .2s ease-in-out;
            transition: border .2s ease-in-out;
  }
  .thumbnail > img,
  .thumbnail a > img {
    margin-right: auto;
    margin-left: auto;
  }
  a.thumbnail:hover,
  a.thumbnail:focus,
  a.thumbnail.active {
    border-color: #337ab7;
  }
  .thumbnail .caption {
    padding: 9px;
    color: #333;
  }
  
  .zoom {
    border: #fff;
  }

  .zoom :hover {
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(1.05);
    opacity: 0.8;
    display: block;
  }
/* **** */

/* **** */  
.b-purple {
  background: #d11ac8;
}

.b-lblue {
  background: rgb(8, 176, 228);
}

.b-more {
  background: linear-gradient(to bottom right, #ac043c, #FFDF00);
}

.b-red {
  background: linear-gradient(to right, #ff9900 0%, #ffff66 100%);
}

.b-green {
  background: linear-gradient(to  right, #ffff66 0%, #24fe41 100%);
}

.b-cont {
  background: linear-gradient(to  right, #ffffff 0%, #24fe41 100%);
}

.b-events {width="460" height="345"
  width: 4000;
  height: 2248;
  background: url((images/bbg4.jpg') no-repeat;
  color: white;
  background-size: 100% 100%;
}

.b-yellow {
  background: yellow;
}

.b-transition-1-1 {
  background-image: linear-gradient(to bottom right, #f58312,#ffffff 60%, #0ea80e);
}

.b-transition-1-2 {
  background-image: linear-gradient(to bottom right, black, green, blue, yellow, red);
}

.b-transition-1-3 {
  background-image: linear-gradient(to top right, black, green, blue, yellow, red);
}

.b-transition-1-4 {
  background-image: linear-gradient(to top left, black, green, blue, yellow, red);
}
/* **** */

/* ***** */
.maindiv{color:#000;background:linear-gradient(25deg,#c9cacc,#eaeaea);overflow:hidden}
.cu-main{height:100%;overflow:hidden}
#mi-cu-title{position:absolute;top:15%}
#mi-cu-container{position:absolute;top:calc(50% - 8vw);width:100vw;height:20vw;overflow-y:scroll;scroll-behavior:smooth}
.mi-cu-panel{
  text-align:center;
  white-space:nowrap;
  padding-top: 30px;
}
.mi-cu-panel 
.mi-cu-img{height:20vw;padding:.4em;display:inline-block;opacity:0.8;}  /* comment opacity is changed*/
.cu-sections{position:absolute;top:50%;right:2.5%;transform:translateY(-40%);z-index:2}
a.cu-section{font-size:.9em;color:gray;line-height:1.5em;text-decoration:none;transition:color .3s ease}
a.cu-section:hover{color:#444}.cu-section.active{color:#000}
/*__*/
.mi-cu-img{position:relative;}
.mi-cu-img .middle{transition:.3s ease;opacity:0;line-height:1.5em}
.mi-cu-img img{height:calc(100% - .8em);transition:.3s ease}
.mi-cu-img:hover img{opacity:.3;filter:blur(4px)}
.mi-cu-img:hover .middle{opacity:1}
.mi-cu-name{font-weight:900;font-size:1.4em}
.mi-cu-img a,.mi-cu-num-template{text-decoration:none;color:#000}
.mi-cu-img a:hover{text-decoration:underline}
.mi-cu-num-template{border:none;color:#555;transition:.3s ease}
.mi-cu-num-template.active{background-color:#fff;color:#000}
.mi-cu-name {
    max-width: 100%;
    white-space: normal;
    color: white;                   /* comment fontcolour is changed*/
    font-family: ITC Serif Gothic; /* comment font is changed*/
    font-size:30px;
}
.mi-cu-dep-name{height:0;opacity:0;}
/*__*/
  @media (max-width:1366px){
    .cu-sections{font-size:.75em;line-height:1em}}
  @media (max-width:900px){
    
.background-image{
  background: url(../images/bg/spon_bg.jpg) no-repeat fixed ;
  
  background-position: 100% 31%; 
   background-size: cover;
  
  -webkit-background: url(../images/bg/spon_bg.jpg) no-repeat fixed;
  
}

    .cu-sections{display:none}
    .mi-cu-dep-name{position:relative;left:calc(50% - 100px);width:200px;text-align:center;display:inline-block;margin:10px;font-size:1.2em;font-weight:900;opacity:1}
    #mi-cu-title{top:40px;font-size:2.5em}
    .mi-cu-panel{white-space:normal;text-align:center}
    .mi-cu-img,.mi-cu-panel{box-sizing:border-box;width:100%}
    .mi-cu-img:hover img{opacity:.2;filter:none}
     /* .mi-cu-img img */
    .mi-cu-img .middle{opacity:0}
    .mi-cu-img:hover .middle{opacity:1}
    /* .mi-cu-img img{opacity:.2} */
    .mi-cu-img{height:auto!important}
    #mi-cu-container{top:calc(40px + 3.2em);height:calc(100% - 40px - 3.2em);padding:0;width:98vw}
    .mi-cu-img img{width:100%}
    .mi-cu-indices{display:none
    }
  }

.rounded-corners{
border-top-right-radius : 15px;
  border-bottom-left-radius : 15px;
}
/* ***** */