﻿/* brand colors */
.colr0 { color: #7C7F8B !important; } 
.colr1 { color: #26235E !important; }
.colr2 { color: #005FA3 !important; }
.colr3 { color: #180F30 !important; }

/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
  
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
  
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* club logo */

.logo {
  display: inline-block;
  position: relative;
  min-width: 170px;
  margin-top: 14px;
}

.logo .text {
    font-size: 120%;
    -webkit-transition: padding 0.25s ease;
    -moz-transition: padding 0.25s ease;
    -ms-transition: padding 0.25s ease;
    -o-transition: padding 0.25s ease;
    transition: padding 0.25s ease;
}

/* formatting */
.stretch-height, .stretch-both {
  height: 100% !important;
}
.stretch-width, .stretch-both {
  width: 100% !important;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.mr-zero {
  margin-right: 0px;
  margin-left: auto;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* elements */
body {
  color: #000;
  background-color: #FFF;
  font-family: 'Lato', 'Helvetica Neue Light', 'Helvetica Neue', 'Segoe UI', 'Open Sans', sans-serif;
  font-size: 16px; /* 100% 1em */
  font-style: normal;
  font-weight: 300; /* Light */
  line-height: 1.375;
}

header {
  font-weight: 300;
}

/* menu */


.scale-up {
  margin-top: 14px;
}

/* big blocks */
section {
  color:rgba(0, 0, 0, 0.8);
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Lato', 'Helvetica Neue Light', 'Helvetica Neue', 'Segoe UI', 'Open Sans', Arial, sans-serif;
}

h2 {
  font-size: 300%;
  font-weight: 300;
}

div.sect-begin {
  position: relative;
  font-size: 162.5%;
  cursor: default;
  color: #E7E7E7;
}

div.line {
  position: absolute;
  top: 16px;
  width: 50%;
  border-top: 1px rgba( 0, 0, 0, 0.1 ) solid;
}

div.line-left {
  right: 50%;
  margin-right: 25px;
}

div.line-right {
  left: 50%;
  margin-left: 25px;
}

/* home section */
#home {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("img/headerimg.jpg") top center;
  background-size: cover;
  position: relative;
}
  
#home:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
  
#home .container {
  padding-top: 80px;
}
  
#home h1 {
  margin: 0;
  font-size: 96px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Lato", sans-serif;
}
  
#home h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

/* crew */
div.member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgb(18 66 101 / 8%);
}

.member .member-img {
  position: relative;
  overflow: hidden;
}

.member .member-info {
  padding: 25px 15px;
}

.member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #26235E;
}

/* feedback */
#feedback {
  color: #E7E7E7;
  background: #26235E;
}

#feedback .line {
  border-top: 1px rgba( 235, 235, 235, 0.9 ) solid !important;
}

#feedback h2 {
  color: #E7E7E7 !important;
}

.grid {
  margin: 0;
  text-align: center;
  overflow: hidden;
  font-size: 0;
  margin-bottom: 30px;
  cursor: default;
}

.grid > li {
  vertical-align: top;
  position: relative;
  margin: 0 auto;
  padding: 15px;
  text-align: left;
  list-style: none;
  font-size: 16px;
}

.grid > li:before {
  content: "";
}

.form-control {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px; 
  border-radius: 2px;
  -webkit-transition: border 0.25s ease, color 0.25s ease, background 0.25s ease !important;
  -moz-transition: border 0.25s ease, color 0.25s ease, background 0.25s ease !important;
  -ms-transition: border 0.25s ease, color 0.25s ease, background 0.25s ease !important;
  -o-transition: border 0.25s ease, color 0.25s ease, background 0.25s ease !important;
  transition: border 0.25s ease, color 0.25s ease, background 0.25s ease !important;

  color: #FFF;
  border: none;
  background-color: rgba( 255, 255, 255, 0.2 );
  margin: 0 auto;
}

.form-control, .form-control:focus, .form-control.has-warning, .form-control.has-error, .form-control.has-warning:focus, .form-control.has-error:focus, .btn, .btn:focus, .btn:hover, .btn:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

input.form-control, select.form-control, span.form-control {
  max-width: 570px; 
  min-width: 270px;
  height: 50px;
}

textarea.form-control {
  max-width: 570px;
  min-width: 270px;
  height: auto;
}

.btn {
  color: #FFF !important;
  border: 2px #FFF solid !important;
}
.btn:hover {
  color: #26235E !important;
  background: #FFF;
  border: 2px #FFF solid !important;
}

/* contatcs */
#contacts .address i, #contacts .phone i {
  font-size: 20px;
  color: #26235E;
  float: left;
  width: 44px;
  height: 44px;
  background: #E7E7E7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

#contacts .address h4, #contacts .phone h4, #contacts .address p, #contacts .phone p {
  padding: 0 0 0 60px;
  font-size: 22px;
  margin-bottom: 5px;  
}

#contacts .address p, #contacts .phone p {
  font-size: medium !important;
}

/* footer */
footer {
  font-size: 80%;
  background: #180F30;
  color:#E7E7E7;
}
footer a {
  text-decoration: none;
  color: #e7e7e7;
}

/* adapt */
@media (max-width: 767px) {
  section {
    padding-top: 25px;
    padding-bottom: 15px;
  }
  h2 {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  #lblClubTitle {
    font-size: 72px !important;
    font-weight: 500 !important;
  }
}

@media (min-width: 768px) {
  section {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  h2 {
    margin-top: 10px;
    margin-bottom: 20px;
  } 
}

@media (min-width: 1200px) {
  section {
    padding-top: 75px;
    padding-bottom: 45px;
  }
  h2 {
    margin-top: 15px;
    margin-bottom: 35px;
  }
}
