
/* ==========================================================================
   Table Of Content
   ========================================================================== 
   
1.General
2.hero section
3.Countdown timer
4.navigation
5.Subscription form styles
6.schedule
7.Agenda
8.Host
9.counter
10.Social
11.video
12.Reviews
13.CTA
14.Share
15.Site footer
16.Small devices (tablets, 768px and up)
17.Medium devices (desktops, 992px and up)


*/   
   

/* ==========================================================================
   1.General
   ========================================================================== */
   
body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: scroll !important;
  color: #8f8f8f;
}

p {
  font-weight: 400;
  color: #8f8f8f;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #31363a;
  line-height: 1.3;
}

a {
  color: #3da0e3;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #5ac8fa;
  text-decoration: none;
}

a:focus { outline: none; }

img {
  max-width: 100%;
  height: auto;
}

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

b,
strong { font-weight: 600; }

/* ==========================================================================
   2.hero section
   ========================================================================== */
  
.hero-section {
  padding: 1.5em 0 8.25em;
  background: url(/2019/fotos/portada_IMG_8160.jpg) 50% 0 no-repeat fixed;/*portada_IMG_8160_red.jpg / bg.jpg ../img/bg-rojo.gif*/
  background-size: cover;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35);
}

.device-ios .hero-section,
.device-ios .counter {
  background-attachment: scroll;
  background-position: center center;
}

.logo {
  position: relative;
  display: inline-block;
  margin-left: 2em;
}

.welcome-message { margin-top: 1em; }/* 5.25em;*/

.welcome-message h1 {
  font-size: 36px;
  margin: 0 0 12px;
}

.welcome-message h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.welcome-message h1,
.welcome-message h2,
.hero-section .cta-btn p { color: #fff; }

.btn {
  padding: 1em 2em;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  border-color: transparent;
  background: #ff863b;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.btn::after,
.jssocials-share a::after {
  content: "";
  background: #FB7C2E;
  position: absolute;
  z-index: -1;
  display: block;
  transition: all 0.35s;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 100%;
}

.btn:hover::after,
.jssocials-share a:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}

.btn:hover,
.btn:active,
.btn:focus,
.btn:active:hover,
.btn:active:focus {
  outline: none;
  color: #fff;
  border-color: transparent;
  background: #FB7C2E;
}

.cta-btn { margin-top: 3em; }

.cta-btn > p { margin: 12px 0 0; }

/* ==========================================================================
   3.Countdown timer
   ========================================================================== */
   
.countdown {
  visibility: hidden;
  transition: all .5s linear;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f44336;
  padding: 1em;
  z-index: 10000;
}

.cta-btn .btn:hover ~ .countdown {
  visibility: visible;
  opacity: 1;
}

.countdown p {
  font-weight: 600;
  color: #b71c1c !important;
  display: block;
  padding-right: 0;
  margin: 0;
  font-size: 18px;
}

#clock {
  color: #fff !important;
  font-weight: 600;
  font-size: 20px;
}

.countdown p i {
  padding-right: .5em;
  font-size: 1.2em;
}

/* ==========================================================================
   4.navigation
   ========================================================================== */
   
   
   

.button-container {
  position: fixed;
  top: 3%;
  right: 5.6%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity .25s ease;
}

.button-container:hover { opacity: .7; }

.button-container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
  -ms-transform: translateY(11px) translateX(0) rotate(45deg);
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF !important;
}

.button-container.active .middle {
  opacity: 0;
  background: #FFF;
}

.button-container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF !important;
}

.button-container span {
  background: #fff;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}

.button-container span:nth-of-type(2) { top: 11px; }

.button-container span:nth-of-type(3) { top: 22px; }

.overlay {
  position: fixed;
  background: rgba(68, 74, 89, 0.95);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .35s;
  overflow: hidden;
  z-index: 100;
  display: none;
}

.overlay.open { display: block; }

.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}

.overlay nav {
  position: relative;
  height: 40%;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after { width: 100%; }

.overlay ul li a:after {
  content: '1';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}
 @-webkit-keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}
 @keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}

.overlay .social {
  position: fixed;
  height: auto;
  left: 4%;
  top: 3%;
}

.overlay .social li {
  display: inline-block;
  height: auto;
}

.overlay .social li a { background: #3da0e3; }

.overlay .social li a:after { display: none; }

.overlay .social li a:hover {
  -webkit-transform: scale(1.1) translateY(-1.8px);
  -ms-transform: scale(1.1) translateY(-1.8px);
  transform: scale(1.1) translateY(-1.8px);
}
   
   


/* ==========================================================================
   5.Subscription form styles
   ========================================================================== */
   

 .form-control::-webkit-input-placeholder {
 color: #b9bcc0;
}
 .form-control:-moz-placeholder {
 color: #b9bcc0;
}
 .form-control::-moz-placeholder {
 color: #b9bcc0;
}
 .form-control:-ms-input-placeholder {
 color: #b9bcc0;
}

.form-control {
  background-color: #fff;
  border: 1px solid #EAEAEA;
  color: #4c4c4c;
  box-shadow: none;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  padding: 0 1.5em 0 2.5em;
  border-radius: 3px;
}

.form-control:focus {
  border-color: #E0E0E0;
  outline: 0;
  box-shadow: none;
}

#mc-form .btn-default {
  height: 60px;
  width: 100%;
  margin-top: 12px;
  line-height: 20px;
}

.form-input { position: relative; }

.form-input i.fa-envelope-o {
  position: absolute;
  left: 16px;
  bottom: 22px;
  color: #b9bcc0;
}

.form-input p i.fa-lock { padding-right: 6px; }

.form-input p {
  text-align: right;
  font-size: 16px;
}

#mc-error i,
#mc-success i { padding-right: .5em; }

#mc-error,
#mc-success {
  padding: .3em 0;
  color: #fff;
  display: none;
  font-weight: 400;
  margin-bottom: .75em;
  border-radius: 3px;
  text-align: center;
}

#mc-error,
#mc-success { background: #f44336; }

#mc-success { background: #4CAF50; }

/* ==========================================================================
   6.schedule
   ========================================================================== */



.schedule { background: #3da0e3; }

.schedule h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.schedule h3 i {
  display: block;
  font-size: 45px;
  padding-bottom: 12px;
}

.center-block { float: none; }

.schedule div[class^="col-sm"]:nth-child(1),
.schedule div[class^="col-sm"]:nth-child(2),
.schedule div[class^="col-sm"]:nth-child(3) { margin-bottom: 1.5em; }

.schedule .btn {
  margin-top: .75em;
  background: transparent;
  border: 1px solid #fff;
}

.schedule .btn:hover,
.schedule .btn:active,
.schedule .btn:focus,
.schedule .btn:active:hover,
.schedule .btn:active:focus {
  outline: none;
  color: #fff;
  border-color: #ff863b;
  background: #FB7C2E;
}

/* ==========================================================================
   7.Agenda
   ========================================================================== */

.section-spacing { padding: 3.75em 0; }

.section-header { margin-bottom: 3em; }

.section-header h2 {
  font-size: 30px;
  margin: 0 0 12px;
}

.section-header h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 400;
  color: #777;
}

.panel {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: 0 1px 0 #e9e9e9;
}

.panel:last-child { box-shadow: none; }

.panel-group .panel {
  border-radius: 0;
  padding-bottom: 12px;
}

.panel-group .panel:last-child { padding-bottom: 0; }

.panel-group .panel+.panel {
  margin-top: 12px;
  border-radius: 0;
}

.panel-default>.panel-heading {
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 12px 16px;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border: none;
  padding: 0 16px .75em;
  font-size: 18px;
}

.panel-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #31363a;
  transition: all 0.3s ease-in-out;
}

.panel-title:hover,
.panel-title:focus,
.panel-title a:hover,
.panel-title a:focus { color: #a8cf20; }

.panel-title a:focus { color: #31363a; }

.panel-title span {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: #444a59;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  display: inline-block;
  margin-right: .5em;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px; /*anexo*/
  float: left; /*anexo*/
}

.panel-title:hover span { background: #a8cf20; }

.panel-group { margin: 1.5em 0 0; }

/* ==========================================================================
    8.Host
   ========================================================================== */
   


.host article { margin-top: 2.25em; }

.host h4 {
  font-size: 24px;
  line-height: 1.1;
}

.host h5 {
  font-size: 20px;
  line-height: 1.1;
}

.signature { margin: 12px 0 24px; }

/* ==========================================================================
 Twitter feed
   ========================================================================== */


.twitter-feed .col-md-3 {
  background: #f4b400;
  position: relative;
}

.twitter-feed,
.twitter-feed .col-md-9 { background: #454545; }

.twitter-icon .fa-twitter {
  color: #fff;
  font-size: 4em;
}

.twitter-expander {
  position: absolute;
  z-index: 10;
  background: #f4b400;
  min-height: 100%;
  width: 0;
  overflow: hidden;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  top: 0;
  left: 0;
  display: none;
}

.twitter-feed .col-md-3:hover .twitter-expander { width: 100%; }

.twitter-expander > p {
  width: 400px;
  color: #fff;
  font-size: 26px;
  margin: 0;
}

.tweet {
  font-size: 22px;
  color: #fff;
  padding: 0 1.5em;
}

.tweet a { color: #f4b400; }

.tweet a:hover,
.tweet a:focus { color: #ffc728; }

.twitter-bg-animate {
  -webkit-animation: blink 4s ease infinite;
  animation: blink 4s ease infinite;
}
 @-webkit-keyframes blink {
 0% {
 background: #ffc728;
}
 50% {
 background: #f4b400;
}
 100% {
 background: #ffc728;
}
}
 @keyframes blink {
 0% {
 background: #ffc728;
}
 50% {
 background: #f4b400;
}
 100% {
 background: #ffc728;
}
}

/* ==========================================================================
   9.counter
   ========================================================================== */



.counter {
  background: url(../img/bg-counter.jpg) 50% 0 no-repeat fixed;
  background-size: cover;
  position: relative;
}

.counter::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

.counter h3 {
  font-weight: 600;
  margin-top: 0;
  font-size: 40px;
  color: #fff;
}

.counter p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 16px;
}

.counter div[class^="col-"]:nth-child(1),
.counter div[class^="col-"]:nth-child(2) { padding-bottom: 1.5em; }

/* ==========================================================================
   10.Social 
   ========================================================================== */


.social li {
  display: inline-block;
  padding-right: .5em;
  text-align: center;
}

.social li:last-child { padding-right: 0; }

.social li a {
  display: block;
  font-size: 1em;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #a8cf20;
  color: #fff;
  border-radius: 50%;
}

.social li a:hover {
  -webkit-transform: scale(1.2) translateY(-2px);
  -ms-transform: scale(1.2) translateY(-2px);
  transform: scale(1.2) translateY(-2px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

/* ==========================================================================
   11.video
   ========================================================================== */
   


.video .flexslider,
.reviews .flexslider {
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.video .flex-direction-nav a,
.reviews .flex-direction-nav a,
.reviews .flex-direction-nav a:before { text-shadow: none; }

.video .flex-direction-nav a:before {
  color: #fff;
  text-shadow: none;
}

.flex-direction-nav a:before {
  content: '\f104';
  display: inline-block;
  font: normal normal normal 50px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flex-direction-nav a.flex-next:before { content: '\f105'; }

/* ==========================================================================
   12.Reviews
   ========================================================================== */
   
.reviews cite,
.reviews p,
 .reviews i { color: #fff; }

.reviews i {
  font-size: 1.5em;
  margin-bottom: 12px;
}

figure,
.reviews img,
.reviews cite span { display: block; }

.reviews img {
  width: 25% !important;
  margin: auto;
}

.reviews blockquote {
  border-left: none;
  font-size: 20px;
  margin: 0;
}

.reviews blockquote p {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 400;
}

.reviews cite {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
}

.reviews .slides .col-md-6 {
  background: #00af50;/*#a8cf20;*/
  padding: 3em 1em;
}

/* ==========================================================================
   13.CTA
   ========================================================================== */
   
.cta .section-header { margin-bottom: 2.25em; }

.cta .cta-btn { margin-top: 0; }

.total-number { font-weight: 700; }

/* ==========================================================================
   14.Share
   ========================================================================== */   
   
.share {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  position: relative;
}

.share h5 {
  margin: 0 0 24px 0;
  font-size: 28px;
  color: #fff;
}

.jssocials-share-link { border-radius: 3px; }

.jssocials-shares { margin: 0; }

.jssocials-share { margin: 0 0.5em 0 0; }

.jssocials-share a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.jssocials-share a::after { background: none; }

.jssocials-share.jssocials-share-email a::after { background: #0e76e6; }

.jssocials-share.jssocials-share-twitter a::after { background: #0087ba; }

.jssocials-share.jssocials-share-facebook a::after { background: #2d4373; }

.jssocials-share.jssocials-share-googleplus a::after { background: #c23321; }

.jssocials-share.jssocials-share-linkedin a::after { background: #005983; }

.jssocials-share.jssocials-share-pinterest a::after { background: #9f191f; }

/* ==========================================================================
   Subscription modal
   ========================================================================== */

.fa-2x { font-size: 1.6em; }

.modal-open { padding-right: 0 !important; }

.modal-content { border-radius: 0; }

.modal-header {
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 1.5em;
}

.modal-header h4 {
  font-size: 24px;
  margin-bottom: 6px;
}

.modal-header h5 {
  font-size: 18px;
  font-weight: 400;
}

.modal-body {
  background: #f7f7f7;
  padding: 1.5em 16px;
}

.modal-dialog { margin-top: 20%; }

.close { font-size: 30px; }

.close:focus { outline: none; }
 @-webkit-keyframes horizontal {
 0% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
 6% {
 -webkit-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 12% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
 18% {
 -webkit-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 24% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
 30% {
 -webkit-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 36% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
}
 @keyframes horizontal {
 0% {
 -webkit-transform: translate(0, 0);
 -ms-transform: translate(0, 0);
 transform: translate(0, 0);
}
 6% {
 -webkit-transform: translate(5px, 0);
 -ms-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 12% {
 -webkit-transform: translate(0, 0);
 -ms-transform: translate(0, 0);
 transform: translate(0, 0);
}
 18% {
 -webkit-transform: translate(5px, 0);
 -ms-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 24% {
 -webkit-transform: translate(0, 0);
 -ms-transform: translate(0, 0);
 transform: translate(0, 0);
}
 30% {
 -webkit-transform: translate(5px, 0);
 -ms-transform: translate(5px, 0);
 transform: translate(5px, 0);
}
 36% {
 -webkit-transform: translate(0, 0);
 -ms-transform: translate(0, 0);
 transform: translate(0, 0);
}
}

.faa-horizontal.animated,
.faa-horizontal.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-horizontal {
  -webkit-animation: horizontal 2s ease infinite;
  animation: horizontal 2s ease infinite;
}

.site-footer a[data-toggle="modal"] {
  position: absolute;
  right: 4%;
  color: #fff;
  font-size: .8em;
  display: inline-block;
  z-index: 3;
  top: 10px;
}

.site-footer a[data-toggle="modal"]:hover { opacity: .8; }

/* ==========================================================================
   15.Site footer
   ========================================================================== */
   
.site-footer.section-spacing {
  padding: 3.75em 0;
  background: url(../img/bg-footer.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(68, 74, 89, 0.94);
}

.footer-links { margin-bottom: 24px; }

.footer-links a {
  color: #fff;
  padding-right: 16px;
}

.footer-links a:last-child { padding-right: 0; }

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus { color: #E1E2E4; }

.site-footer small { font-size: 16px; }

.site-footer small,
.footer-contact a,
.footer-contact { color: #fff; }

.footer-contact { margin: 24px 0 0; }

.footer-contact i { padding-right: .5em; }

/* ==========================================================================
   16.Small devices (tablets, 768px and up)
   ========================================================================== */
   
@media (min-width: 768px) {

p { font-size: 19px; }

.overlay nav { font-size: 50px; }

.overlay .social li { padding-right: 13px; }

.overlay .social li a {
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.hero-section { padding: 2.25em 0 11.25em; }

.button-container,
.overlay .social { top: 4%; }

.button-container { right: 4%; }

.logo { margin-left: 3em; }

.welcome-message h1 {
  font-size: 48px;
  margin: 0 0 12px;
}

.welcome-message h2 { font-size: 24px; }

.section-header h2 { font-size: 36px; }

.section-header h3 { font-size: 24px; }

/* .welcome-message { margin-top: 6.75em; } */

.btn { padding: 1em 3em; }

.countdown p {
  display: inline-block;
  padding-right: .5em;
}

.modal-header h4 { font-size: 30px; }

.modal-header h5 { font-size: 20px; }

.form-input p { font-size: 18px; }

.modal-dialog { margin-top: 12%; }

.section-spacing { padding: 4.5em 0; }

.schedule .btn { margin-top: 1.5em; }

.schedule div[class^="col-sm"]:nth-child(1),
.schedule div[class^="col-sm"]:nth-child(2),
.schedule div[class^="col-sm"]:nth-child(3) { margin-bottom: 0; }

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  padding: 0 16px .75em 4.2em;
  font-size: 19px;
}

.host h4 { font-size: 28px; }

.twitter-feed .container { width: 100%; }

.twitter-expander { display: block; }

.counter div[class^="col-"]:nth-child(1),
.counter div[class^="col-"]:nth-child(2) { padding-bottom: 0; }

.reviews .slides .col-md-6 { padding: 3.75em 1em; }

.cta .section-header { margin-bottom: 3em; }

.share h5 { margin: 0 0 1.5em 0; }

.site-footer a[data-toggle="modal"] {
  right: 4%;
  top: 30px;
}
}

/* ==========================================================================
   17.Medium devices (desktops, 992px and up) 
   ========================================================================== */
   
@media (min-width: 992px) {

.hero-section { padding: 2.25em 0 16em; }

.button-container {
  right: 3%;
  top: 3.9%;
}

.overlay .social { left: 3%; }

.welcome-message { margin-top: 1em; }/* */

.welcome-message h1 { font-size: 60px; }

.section-spacing { padding: 6em 0; }

.section-header { margin-bottom: 4.5em; }

.panel-group { margin: 0; }

.schedule.section-spacing { padding: 3.75em 0; }

.schedule .btn { margin-top: .75em; }

.host article { margin-top: 3em; }

.twitter-icon .fa-twitter { font-size: 6em; }

.twitter-expander { left: 100%; }

.twitter-feed .col-md-3:hover .twitter-expander { width: 400px; }

.twitter-expander > p { font-size: 32px; }

.video .flex-direction-nav a:before { color: #3da0e3; }

.reviews .slides .row {
  background: url(../img/bg_01.jpg) -150px center no-repeat;
  background-size: cover;
}

.reviews .slides .col-md-6 { padding: 5.25em 1em; }

.share {
  margin-bottom: 3em;
  padding-bottom: 3em;
}

.site-footer.section-spacing { padding: 4.5em 0; }

.site-footer a[data-toggle="modal"] { right: 3%; }

.footer-links,
.footer-contact { margin: 0; }
}

@media (min-width: 991px) and (max-width: 1082px) {

.schedule .btn { padding: 1em 1.5em; }
}

@media (min-width: 1200px) {

.twitter-feed .container { width: 1170px; }
}
