/* about-club */
.about-club{
    display: flex;
    position: absolute;
    top: 25%;
    padding-left: 20px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: bold;
    background: transparent;
    background-color: transparent;
}

@media (max-width: 768px) { 
  .wrapper{
    padding-top: 38.5px !important;
  }
 }
/* login form */

/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

#formContent{
  padding-top: 30px;
}

/* logo header */
.logo-header{
  margin-top: -20px;
}
/* custom footer */
.container-custom {
  position: relative;
  width: 100%;
  padding-left: calc(15px + 60px);
  padding-right: calc(15px + 60px)
}

@media (max-width:1199.98px) {
  .container-custom {
      padding-left: calc(15px + 50px);
      padding-right: calc(15px + 50px)
  }
}

@media (max-width:991.98px) {
  .container-custom {
      padding-left: calc(15px + 30px);
      padding-right: calc(15px + 30px)
  }
}

@media (max-width:767.98px) {
  .container-custom {
      padding-left: calc(15px + 15px);
      padding-right: calc(15px + 15px)
  }
}

@media (max-width:575.98px) {
  .container-custom {
      padding-left: 15px;
      padding-right: 15px
  }
}
footer#footer .footer-menu-container {
  padding-top: 145px;
  padding-bottom: 45px
}

footer#footer .footer-menu-container .footer-menu .footer_block-title {
  display: block;
  position: relative;
  font-size: 21px !important;
  width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: "Economica", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  font-size: 28px
}

footer#footer .footer-menu-container .footer-menu .footer_block-title::after {
  content: '';
  background-color: #4b4b4b;
  width: 40px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0
}

footer#footer {
  background-color: #212121;
  position: relative;
}

.video-featured{
  width: 100%;
  height: 100%;
}
ul li a ,span.slogan ,.copy {
  /* color: #c5c5c5; */
  color: #6c757d;
  text-decoration: none;
  transition: all .3s ease;
  font-size: 12px;
}
footer#footer .footer-menu-container .footer-menu ul {
  list-style-type: none;
  padding-left: 0
}

footer#footer .footer-menu-container .footer-menu ul a {
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase
}

footer#footer .footer-menu-container .footer-menu .menu-activities li {
  display: inline-block;
  vertical-align: top;
  width: 49%
}

@media (max-width:480px) {
  footer#footer .footer-menu-container .footer-menu .menu-activities li {
      display: block;
      width: 100%
  }
}

footer#footer .footer-menu-container .col-logo {
  text-align: right
}

footer#footer .footer-menu-container .col-logo .slogan {
  display: block;
  margin-top: 15px
}

footer#footer .footer-menu-container .col-logo .copy {
  display: block;
  font-size: 11px;
  margin-top: 30px
}

/* custom tooltip */
/* Hover tooltips */
.field-tip {
  position:relative;
  cursor:help;
}
.field-tip-right .tip-content {
  position:absolute;
  top:25%; /* - top padding */
  z-index: 1001;
  width: 200px;
  margin-left: -170px;
  padding: 10px;
  color: #333;
  background: #fff;
  -webkit-box-shadow:2px 2px 5px #aaa;
     -moz-box-shadow:2px 2px 5px #aaa;
          box-shadow:2px 2px 5px #aaa;
  opacity:0;
  -webkit-transition:opacity 250ms ease-out;
     -moz-transition:opacity 250ms ease-out;
      -ms-transition:opacity 250ms ease-out;
       -o-transition:opacity 250ms ease-out;
          transition:opacity 250ms ease-out;
}
.field-tip .tip-content {
      position:absolute;
      top:25%; /* - top padding */
      z-index: 1001;
      width: 200px;
      margin-right: -170px;
      padding: 10px;
      color: #333;
      background: #fff;
      -webkit-box-shadow:2px 2px 5px #aaa;
         -moz-box-shadow:2px 2px 5px #aaa;
              box-shadow:2px 2px 5px #aaa;
      opacity:0;
      -webkit-transition:opacity 250ms ease-out;
         -moz-transition:opacity 250ms ease-out;
          -ms-transition:opacity 250ms ease-out;
           -o-transition:opacity 250ms ease-out;
              transition:opacity 250ms ease-out;
  }
      /* <http://css-tricks.com/snippets/css/css-triangle/> */
.field-tip .tip-content:before {
          content:' '; /* Must have content to display */
          position:absolute;
          top:50%;
          left:-16px; /* 2 x border width */
          width:0;
          height:0;
          margin-top:-8px; /* - border width */
          border:8px solid transparent;
          border-right-color:#fff;
}
.field-tip-right .tip-content::after {
  content:' ' ; /* Must have content to display */
  position: absolute;
  top: 50%;
  left: 100%;
  border-width: 5px;
  margin-top:-8px; /* - border width */
  border:8px solid transparent;
  border-right-color:#fff;
  transform: rotate(180deg);
}
      
.field-tip:hover .tip-content {
    right:-20px;
    opacity:1;
}

.field-tip-right:hover .tip-content {
  left:-20px !important;
  opacity:1;
}

/* site-heder */

.site-header{
  background-color: #646265;
  border-color: #646265 !important;
}
.nav li a ,.navbar-brand{
  color: #fff !important;
}
.jumbotron{
  height: 400px;
}
.slogan-text{
  color: #fff;
  font-weight: 500;
}
.left-image-slogan{
    width: 400px;
    margin-top: 50px;
    height: 250px;
    margin-left: 50px;
}
.slogan{
  /* background: url('../images/slogan-2.jpg') 50% 40%; */
  background-size: cover;
  margin-top:-70px ;
  background-color: #202123;
}
.video-block { 
  position: relative; 
  width: auto; 
  height: 168px; 
  overflow: hidden; 
  margin-bottom: 10px;
}
.video-block .video-thumbnail { 
  height: 100%; 
  width: 100%; 
  position: absolute; 
  z-index: 1; 
  background-size: cover; 
  top: 0; 
  left: 0; 
}
.video-testimonial-content h5{
  line-height: inherit;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: 'AvenirBlack', sans-serif !important;
  font-weight: 400;
}
.video-block .video iframe { 
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; 
  height: 100%; 
  border: 0px; 
}
.video-block .video-play { position: absolute; z-index: 2; top: 24%; left: 50%; margin-left: -40px; margin-top: -18px; text-decoration: none; }
.video-block .video-play::before { 
  content: "\f144"; 
  font: normal normal normal 14px/1; 
  font-family: 'Font Awesome\ 5 Free'; 
  font-weight: 900; font-size: inherit; 
  text-rendering: auto; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
  font-size: 50px; 
  color: #b3b5bc; 
}
.mt-5{
  margin-top:22px ;
}
.mt-4{
  margin-top:20px ;
}
.mx-auto{
  padding-left: 20px;
  margin-right: 20px;
}
.video-block .video-play:hover::before { color: #172651; }
.mb10{margin-bottom:10px;}
.section-title { margin-bottom: 40px; }
.head {
  font-family: brandon-grotesque-n1,brandon-grotesque,BrandonMedium,sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  transition: color .2s ease,opacity .2s ease;
  
}
.scrolled{
  background: transparent;
  background-color: transparent;
  border-color: transparent !important ;
}
@media (max-width: 576px) { 
  .navbar{
    background:#202123 !important;
  }
  
}

.vertical-align {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.horizontal-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.vert-wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.vert-wrapper .vert {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
/*
* General Styles
*/
body {
  color: #2e2e2e;
  font-family: 'Hind Guntur', sans-serif;
  font-size: 16px;
  background-color: #ffffff;
}
body.light {
  background-color: #ffffff;
}
body.light .content-wrapper {
  background-color: #fbfdfe;
}
body.dark {
  background-color: #242424;
}
body.dark .content-wrapper {
  background-color: #343434;
}
.logo {
  width: 44px;
  height: 44px;
}
a {
  color: #2e2e2e;
}
a:hover {
  color: #ea2c5a;
  text-decoration: none;
}
a:focus {
  color: #ea2c5a;
}
.form-control,
.btn {
  font-size: 16px;
}

.mb-4{
  margin-top: 25px;
}

/* video */
.my-video-dimensions {
  width: 100% !important;
  height: 310px;
}
