* {
    font-family: 'Open Sans', Arial, sans-serif;
}

h2 { font-size: 30px; margin-bottom: 15px; }
h3 { font-size: 21px; }
h4 { font-size: 17px; }

.article-title {
    font-size: 41px;
}

.btn-circle {
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 50%;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 25px;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 35px;
}

header {
    /*background-image: url(../img/students2016.jpg);*/
    background-image: url(../img/interstudent-2018-background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    text-align: center;
    padding: 100px 0 50px;
}
header h1 {
    position: relative;
    display: inline-block;
    text-align: center;
    background-color: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 0;
    border: 3px solid rgba(255,255,255,0.8);
}
header h1:after {
    content: "";
    position: absolute;
    background-image: url(../img/2019.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    width: 100px;
    height: 49px;
    bottom: -25px;
    right: 10%;
}
header h1 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media(min-width: 600px) {
    header {
        padding: 280px 0 50px;
    }
    header h1 {
        padding: 30px 35px;
    }
    header h1:after {
        width: 205px;
        height: 101px;
        bottom: -55px;
    }
}


section {
    padding: 50px 0;
}
section:nth-child(2n+2) {
    background-color: #f3f3f7;
}
.section-title {
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    color: #959595;
    letter-spacing: 5px;
}
.section-description {
    color: #555;
    text-align: center;
}


.person {
    text-align: center;
    margin-top: 25px;
}
.person .person-image {
    border-radius: 100%;
    border: 4px solid #C8C8C8;
}
.person .person-title {
    text-transform: uppercase;
    font-weight: 600;
}

.person--votes {
    position: relative;
}
.person--votes .person-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.person--votes .btn-circle {
    position: absolute;
    top: 10px;
    right: 0;
    min-width: 44px;
    background-color: #36589C;
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    padding: 0px 13px;
    border: 3px solid #C8C8C8;
    border-radius: 25px;
}
.person--votes span.btn-circle {
    background-color: #f2375f;
    font-size: 20px;
}
@media screen and (min-width: 768px) {
    .person--votes .btn-circle {
        top: 10px;
        right: 10px;
    }
}
@media screen and (min-width: 992px) {
    .person--votes .btn-circle {
        top: 10px;
        right: 25px;
    }
}
@media screen and (min-width: 1200px) {
    .person--votes .btn-circle {
        top: 10px;
        right: 45px;
    }
}


.partner {
    width: 100%;
    padding: 0 15px;
    text-align: center;
    margin-top: 25px;
}
@media screen and (min-width: 768px) {
    .partner {
        width: 32%;
        float: left;
    }
    .partner:nth-child(1) {
        margin-left: 0;
    }
}
.partner .partner-image {
  max-width: 100%;
  height: auto;
}

.partner .partner-title {
    margin-top: 10px;
    font-weight: 400;
}

body {
    margin-bottom: 40px;
}


#arrow-link {
    cursor: pointer;
    z-index: 999;
    position: fixed;
    left: 50%;
    bottom: 10px;
    margin-left: -28px;
    color: #F5F5F5;
    opacity: 0.9;
}
#arrow-link:focus,
#arrow-link:hover {
    color: #FEFEFE;
}
#arrow-link i+i {
    color: #999;
}
#arrow-link i {
    -webkit-transform: rotate(0);  /* Chrome, Safari 3.1+ */
    -moz-transform: rotate(0);  /* Firefox 3.5-15 */
    -ms-transform: rotate(0);  /* IE 9 */
    -o-transform: rotate(0);  /* Opera 10.50-12.00 */
    transform: rotate(0);  /* Firefox 16+, IE 10+, Opera 12.10+ */

      -webkit-transition: -webkit-transform 0.25s ease-in; /* Changed here */
     -moz-transition: -moz-transform 0.25s ease-in;
       -o-transition: -o-transform 0.25s ease-in;
          transition: transform 0.25s ease-in;
}
#arrow-link.rotated i {
    -webkit-transform: rotate(180deg);  /* Chrome, Safari 3.1+ */
    -moz-transform: rotate(180deg);  /* Firefox 3.5-15 */
    -ms-transform: rotate(180deg);  /* IE 9 */
    -o-transform: rotate(180deg);  /* Opera 10.50-12.00 */
    transform: rotate(180deg);  /* Firefox 16+, IE 10+, Opera 12.10+ */

      -webkit-transition: -webkit-transform 0.25s ease-in; /* Changed here */
     -moz-transition: -moz-transform 0.25s ease-in;
       -o-transition: -o-transform 0.25s ease-in;
          transition: transform 0.25s ease-in;
}

.module-block {
    margin-top: 15px;
}

.module-2x { margin-top: 30px; }
.module-3x { margin-top: 45px; }
.module-4x { margin-top: 60px; }

.text-warning {
    color: #e2320a;
}
.text-caption {
    margin-top: 5px;
    text-align: center;
}

.navbar {
    margin-bottom: 0;
    min-height: 40px;
    border-radius: 0;
}
@media (min-width: 768px) {
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.btn {
    border-radius: 10px;
}
.btn-primary {
    background-color: #e2320a;
    border-color: #c72c09;
    font-weight: 600;
}
.btn-primary:hover {
    color: #fff;
    background-color: #f0360c;
    border-color: #c72c09;
}
.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #e2320a;
    border-color: #c72c09;
}
.btn-primary.active, .btn-primary:active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #f0360c;
    border-color: #c72c09;
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
    color: #fff;
    background-color: #c42906;
    border-color: #af2608;
}
.btn-square {
    margin-bottom: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.btn-square i {
    margin-bottom: 8px;
}
.btn-square + .btn-square {
    margin-left: 10px;
}


.btn-icon {
    display: inline-block;
    padding: 6px 12px;
    color: #333;
    white-space: nowrap;
}
.btn-icon .fa {
    color: #e2320a;
}

@media print {
    .col-md-, .col-sm-1, .col-md-, .col-sm-2, .col-md-, .col-sm-3, .col-md-, .col-sm-4, .col-md-, .col-sm-5, .col-md-, .col-sm-6, .col-md-, .col-sm-7, .col-md-, .col-sm-8, .col-md-, .col-sm-9, .col-md-, .col-sm-10, .col-md-, .col-sm-11, .col-md-, .col-sm-12,
    .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, .col-sm-12 {
    width: 100%;
  }
  .col-md-11, .col-sm-11 {
    width: 91.66666667%;
  }
  .col-md-10, .col-sm-10 {
    width: 83.33333333%;
  }
  .col-md-9, .col-sm-9 {
    width: 75%;
  }
  .col-md-8, .col-sm-8 {
    width: 66.66666667%;
  }
  .col-md-7, .col-sm-7 {
    width: 58.33333333%;
  }
  .col-md-6, .col-sm-6 {
    width: 50%;
  }
  .col-md-5, .col-sm-5 {
    width: 41.66666667%;
  }
  .col-md-4, .col-sm-4 {
    width: 33.33333333%;
  }
  .col-md-3, .col-sm-3 {
    width: 25%;
  }
  .col-md-2, .col-sm-2 {
    width: 16.66666667%;
  }
  .col-md-1, .col-sm-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12, .col-sm-pull-12 {
    right: 100%;
  }
  .col-md-pull-11, .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10, .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9, .col-sm-pull-9 {
    right: 75%;
  }
  .col-md-pull-8, .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7, .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6, .col-sm-pull-6 {
    right: 50%;
  }
  .col-md-pull-5, .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4, .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3, .col-sm-pull-3 {
    right: 25%;
  }
  .col-md-pull-2, .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1, .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0, .col-sm-pull-0 {
    right: auto;
  }
  .col-md-push-12, .col-sm-push-12 {
    left: 100%;
  }
  .col-md-push-11, .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10, .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9, .col-sm-push-9 {
    left: 75%;
  }
  .col-md-push-8, .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7, .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6, .col-sm-push-6 {
    left: 50%;
  }
  .col-md-push-5, .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4, .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3, .col-sm-push-3 {
    left: 25%;
  }
  .col-md-push-2, .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1, .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0, .col-sm-push-0 {
    left: auto;
  }
  .col-md-offset-12, .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11, .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10, .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9, .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8, .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7, .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6, .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5, .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4, .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3, .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2, .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1, .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0, .col-sm-offset-0 {
    margin-left: 0%;
  }
  .visible-xs {
    display: none !important;
  }
  .hidden-xs {
    display: block !important;
  }
  table.hidden-xs {
    display: table;
  }
  tr.hidden-xs {
    display: table-row !important;
  }
  th.hidden-xs,
  td.hidden-xs {
    display: table-cell !important;
  }
  .hidden-xs.hidden-print {
    display: none !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}