* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* container */
.container {
  width: 90%;
  margin: 0 auto;
}
/* navbar */
nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
nav .container {
  display: flex;
}
nav .brand {
  flex: 1;
}
nav .bars {
  display: none;
}
nav .brand img {
  height: 70px;
}
nav ul {
  display: flex;
  list-style: none;
  flex: 7;
  justify-content: center;
  align-items: center;
}
nav ul li {
  text-align: center;
  padding: 0 20px;
}
nav .socials {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
nav .socials i {
  color: white;
  font-size: 18px;
}
nav ul li a {
  font-family: "Squada One", cursive;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 5px;
}
nav ul li a:hover {
  border-bottom: 2px solid darkred;
}

/* header */
header {
  background: url(../imgs/baxkground.jpg);
  background-size: cover;

  min-height: calc(100vh + 200px);
}
header .container {
  min-height: inherit;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header-content {
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;
}
header .container h1 {
  font-family: "Anton", sans-serif;
  font-size: 112px;
  line-height: 1;
  font-weight: 400;
  color: white;
  flex-basis: 60%;
  padding-bottom: 30px;
}
header p {
  flex-basis: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  padding-bottom: 50px;
}
header .link {
  flex-basis: 35%;
  display: flex;
  justify-content: space-between;
}
header .link a {
  padding: 15px 45px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: white;
  border-radius: 5px;
}
header .link a:first-child {
  background: darkred;
  border: 2px solid darkred;
}
header .link a:last-child {
  background: transparent;
  border: 2px solid white;
}

/* subscribe */
section#subscribe {
  width: 100%;
  background: url(../imgs/subscribe.jpg);
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}
section#subscribe .container {
  display: flex;
  justify-content: space-between;
}
section#subscribe p {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: white;
  padding: 15px 0;
}
section#subscribe a {
  padding: 15px 50px;
  border: 2px solid white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: 13px;
  color: white;
  border-radius: 5px;
}
section#subscribe a:hover {
  background: white;
  color: #3a009a;
}
/* mactch result */
section#match-result {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  background: url(../imgs/match-result-bg.png);
  background-size: cover;
  background-position: 60% center;
}
section#match-result h2 {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 30px;
}
section#match-result .underline {
  display: inline-block;
  border: 3px solid darkred;
  width: 50px;
}
section#match-result .last-reult {
  display: flex;
  justify-content: space-around;
  align-content: center;
}
section#match-result .last-reult p {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  color: #380ebf;
}
section#match-result .last-reult .result {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 50px;
}
section#match-result .last-reult .result p {
  flex-basis: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  color: #5f5f5f;
  padding-top: 30px;
}
section#match-result .last-reult .result span {
  font-family: "Anton", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}

section#match-result a {
  display: inline-block;
  margin-top: 50px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 50px;
  background: darkred;
  color: white;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 13px;
  border: 2px solid darkred;
}
section#match-result a:hover {
  background: white;
  color: darkred;
}

/* Next match */
section#next-match {
  width: 100%;
  padding: 50px 0;
  background: url(../imgs/nextmacthbg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
section#next-match .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section#next-match .container > * {
}
section#next-match .container #match {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
  align-items: center;
}
section#next-match .container #match > p {
  flex-basis: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 20px;
  color: white;
}
section#next-match .container #match > span {
  font-family: "Anton", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  color: white;
}
section#next-match .container > span {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  color: white;
  text-transform: uppercase;
}
section#next-match .container > a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 45px;
  background: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 5px;
  color: #2a0a8f;
}
section#next-match .container > a:hover {
  background: #2a0a8f;
  color: white;
}
section#next-match .container #match div p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: white;
}

section#coach {
  width: 100%;
  padding-top: 100px;
}
section#coach .container {
  display: flex;
}

section#coach blockquote {
  font-weight: 300;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 22px;
  line-height: 1.4;
}
section#coach blockquote::before {
  content: "“";
  display: block;
  padding: 50px 0;
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #380ebf;
  font-size: 80px;
  line-height: 0.7;
  letter-spacing: 1px;
}
section#coach span.head-coach {
  margin-top: 50px;
  display: block;
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
}
section#coach span.coach-name {
  display: block;
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #c10002;
  font-size: 69px;
  line-height: 1;
}
section#coach p.said-by-coach {
  margin-top: 60px;
  color: #5f5f5f;
  font-weight: 400;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
  color: #0a0017;
  font-size: 16px;
  line-height: 1.6;
}

section#coach .coach-image {
  display: flex;
  align-items: flex-end;
}

/* Video */
section#video {
  width: 100%;
  padding: 150px 0;
  text-align: center;
  background: url(../imgs/vidoebg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
section#video h2 {
  font-weight: 400;
  font-style: italic;
  font-family: "Anton", sans-serif;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.2;
  margin-top: 50px;
}
section#video p {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
  margin-top: 30px;
}

/* team */
section#team {
  width: 100%;
  text-align: center;
  padding: 50px 0;
}
section#team h2 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #000000;
  font-size: 42px;
  line-height: 1;
}
section#team .underline {
  display: block;
  width: 50px;
  border: 2px solid darkred;
  margin: 50px auto;
}
section#team .player-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section#team .player {
  width: 33.33%;
  padding: 50px 10px;
}
section#team .player-image {
  display: flex;
  align-items: flex-end;
}
section#team .player-content {
  background: #380ebf;
  padding: 8px 0;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

section#team .player-content span {
  display: block;
  width: 100%;
  text-align: center;
}
section#team .player-content span:first-child {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.4;
}
section#team .player-content span:last-child {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
}
section#team .player-socials {
  padding: 20px 0;
}
section#team .player-socials i {
  padding: 0 5px;
  color: darkred;
  font-size: 18px;
}
section#team .player-socials i:hover {
  cursor: pointer;
  color: #380ebf;
}

/* Gallery */
section#gallery {
  width: 100%;
}
section#gallery .gallery-container {
  display: flex;
  flex-wrap: wrap;
}
section#gallery .gallery-container a {
  flex: 1;
  position: relative;
}
section#gallery .gallery-container a:hover::before {
  content: "+";
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(56, 14, 191, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  font-size: 50px;
  font-family: "Squada One", cursive;
  font-weight: 900;
  justify-content: center;
  align-items: center;
}
section#gallery .gallery-container a:nth-child(1) {
  flex-basis: 26.66%;
}
section#gallery .gallery-container a:nth-child(2) {
  flex-basis: 60%;
}
section#gallery .gallery-container a:nth-child(3) {
  flex-basis: 16.66%;
}
section#gallery .gallery-container a:nth-child(4) {
  flex-basis: 50%;
}
section#gallery .gallery-container a:nth-child(5) {
  flex-basis: 60%;
}
section#gallery .gallery-container a:nth-child(6) {
  flex-basis: 40%;
}

section#gallery .gallery-container img {
  vertical-align: middle;
  width: 100%;
}

/* News */
section#news {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
section#news h2 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #000000;
  font-size: 42px;
  line-height: 1;
}
span.underline {
  display: inline-block;
  width: 50px;
  border: 2px solid darkred;
}
section#news .news-container {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}
section#news .news-container .single-news {
  width: 30%;
  text-align: left;
}
section#news .news-container .single-news span {
  display: block;
  padding: 20px 0;
  font-weight: 900;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  color: #c10002;
  font-size: 16px;
  line-height: 1.1;
}
section#news .news-container .single-news h2 {
  line-height: 0.7;
}
section#news .news-container .single-news a {
  color: #000;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 24px;
}
section#news .news-container .single-news p {
  margin-top: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
  color: #0a0017;
  font-size: 16px;
  line-height: 1.6;
}
section#sponser {
  padding: 50px 0;
  width: 100%;
  text-align: center;
  background: url(../imgs/content-bg05.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
section#sponser h2 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
}
section#sponser .sponser-container {
  margin-top: 40px;
}

/* contact */

section#contact {
  width: 100%;
  padding: 50px 0;
}
section#contact .container {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
}
section#contact .bg-contact {
  flex-basis: 60%;
  background: url(../imgs/content-bg12.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section#contact .form-contact {
  flex-basis: 40%;
  text-align: left;
}
section#contact .form-contact h2 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #000000;
  font-size: 42px;
  line-height: 1;
  padding: 20px;
}
section#contact .form-contact form {
  padding: 20px;
}
input:not([type="submit"]),
textarea {
  border: 2px solid #000;
  display: block;
  width: 100%;
  padding: 20px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}
input:not([type="submit"]),
textarea:focus {
  outline: none;
}
input[type="submit"] {
  padding: 20px 55px;
  background: darkred;
  border: 2px solid darkred;
  border-radius: 5px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}
input[type="submit"]:hover {
  cursor: pointer;
  background: white;
  color: darkred;
}
/* 
Footer */

footer {
  width: 100%;
  padding: 50px;
  background: url(../imgs/content-bg06.jpg);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .thunder-info {
  flex-basis: 40%;
  padding: 0 10px;
}
footer .thunder-info p {
  font-weight: 400;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 50px;
}
footer .thunder-info .info-socilas {
  margin: 30px 0;
  text-align: left;
}
footer .thunder-info i {
  color: white;
  padding-right: 20px;
}
footer .footer-menu {
  align-self: center;
  flex-basis: 10%;
}
footer .footer-menu ul {
  list-style: none;
}
footer .footer-menu ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: white;
  text-decoration: none;
}
footer .footer-menu ul li a:hover {
  color: darkred;
}
footer .footer-contact {
  flex-basis: 20%;
  align-self: center;
  padding-right: 20px;
}
footer .footer-contact h3 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}
footer .footer-contact p {
  padding: 15px 0;
}
footer .footer-contact p span {
  font-weight: 400;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}
footer .footer-contact p i {
  color: #380ebf;
}

footer .footer-subscribe {
  flex-basis: 25%;
  text-align: center;
  align-self: center;
}
footer .footer-subscribe h3 {
  font-weight: 400;
  font-style: normal;
  font-family: "Anton", sans-serif;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 30px;
}
footer input[type="submit"] {
  display: block;
  width: 100%;
}
.copy {
  background: darkred;
  color: white;
  padding: 20px 0;
  width: 100%;
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}
/* 
// Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* //Navbar */

  nav .container {
    flex-wrap: wrap;
  }

  nav .container {
    flex-basis: 100%;
    text-align: center;
  }
  nav .bars {
    display: block;
    flex-basis: 100%;
    text-align: center;
  }
  nav .bars button {
    margin-top: 20px;
    padding: 15px;

    background: white;
    border: 2px solid black;
  }
  nav .bars button i {
    font-size: 17px;
    color: #000;
  }
  nav ul {
    display: none;
  }

  nav .socials{
      flex-basis: 100%;
      justify-content: center;
      
      margin:15px 0;
  }
  nav .socials i{
    padding:0 5px;
  }
  header .header-content{
      margin-top: 100px;
  }
  header .container h1{
      flex-basis: 100%;
      font-size: 40px;
  }
  header .link{
      flex-basis: 100%;
      flex-direction: column;
        align-items: center;
  }
  header .link a{
      margin-bottom: 10px;
  }

  /* //Subscribe */
  section#subscribe .container{
      flex-wrap: wrap;
      justify-content: center;
  }
  section#subscribe p{
      font-size: 16px;
  }

  /* Last Match */
  section#match-result h2{
      font-size: 25px;
  }
  section#match-result .last-reult{
      flex-wrap: wrap;
      margin-top:30px;
  }
  section#match-result .last-reult .result span{
      font-size: 42px;
  }
  section#match-result .last-reult .result p{
      font-size: 12px;
  }

  /* Next-macth */
  section#next-match .container{
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
  }
  section#next-match .container > span{
      flex-basis: 100%;
  }
  section#next-match .container #match div:first-child{
      flex-basis: 100%;
      margin:20px 0;
  }
  section#next-match .container #match > span{
      flex-basis: 100%;
  }
  section#next-match .container > a{
      margin-top:20px;
  }

  /* Coach */
  section#coach .container{
      flex-wrap: wrap;
  }
  section#coach .coach-image{
      flex-basis: 100%;
  }
  section#coach .coach-image img{
      width: 100%;
  }

  /* Player */
  section#team .player{
      flex-basis: 100%;
  }
  section#team .player-image{
      flex-basis: 100%;
      justify-content: center;
  }
  section#team .player-image img{
      width:100%;
  }

  /* gallery */
  section#gallery .gallery-container a{
      flex-basis: 100% !important;
  }
  /* latest news */
  section#news .news-container{
      flex-wrap: wrap;
  }
  section#news .news-container .single-news{
      flex-basis: 100%;
      margin-bottom: 20px;
  }
  section#news .news-container .single-news img{
      width:100%;
  }

  /* contact */
  section#contact .container{
      justify-content: center;
  }
  section#contact .bg-contact{
      height: 300px;
      flex-basis: 100%;
  }
  section#contact .form-contact{
      flex-basis: 100%;
  }
  section#contact .form-contact h2{
      font-size: 24px;
  }
  section#contact .form-contact form{
      text-align: center;
  }
  footer .thunder-info{
      flex-basis: 100%;
  }
  footer .thunder-info .info-socilas{
      text-align: center;
  }
  footer .footer-menu{
      flex-basis: 100%;
      text-align: center;
      margin-bottom: 50px;
  }
  footer .footer-contact{
      flex-basis: 100%;
      text-align: center;
      margin-bottom: 50px;
  }
  .copy .container{
      text-align: center;
  }
}
