/*@font-face {*/
/*  font-family: "Montserrat Light";*/
/*  font-style: normal;*/
/*  font-weight: normal;*/
/*  src: url("fonts/Montserrat-Light.ttf") format("truetype");*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "Montserrat";*/
/*  font-style: normal;*/
/*  font-weight: normal;*/
/*  src: url("fonts/Montserrat-Regular.ttf") format("truetype");*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "Montserrat Medium";*/
/*  font-style: normal;*/
/*  font-weight: normal;*/
/*  src: url("fonts/Montserrat-Medium.ttf") format("truetype");*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "Montserrat Semibold";*/
/*  font-style: normal;*/
/*  font-weight: normal;*/
/*  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "Montserrat Bold";*/
/*  font-style: normal;*/
/*  font-weight: normal;*/
/*  src: url("fonts/Montserrat-Bold.ttf") format("truetype");*/
/*  font-display: swap;*/
/*}*/

@font-face {
    font-family: "Roboto Light";
    font-style: normal;
    font-weight: normal;
    src: url("fonts/roboto/Roboto-Light.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    src: url("fonts/roboto/Roboto-Regular.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Roboto Medium";
    font-style: normal;
    font-weight: normal;
    src: url("fonts/roboto/Roboto-Medium.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Roboto Semibold";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/roboto/Roboto-Condensed.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Roboto Bold";
    font-style: normal;
    font-weight: normal;
    src: url("fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-display: swap;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2px;
  line-height: 1;
  color: #171111;
  background: #ffffff;
}

p,
ul,
ol {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.4px;
}

img {
  width: 100%;
  height: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
.h4,
h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
}

h1,
.h1 {
  font-family: "Roboto Semibold";
  font-size: 32px;
  line-height: 42px;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  h1,
.h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

h2,
.h2 {
  font-size: 30px;
  line-height: 45px;
  font-family: "Roboto Medium";
}

h3,
.h3 {
  font-family: "Roboto Semibold";
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.4px;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  h3,
.h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

h4,
.h4 {
  font-family: "Roboto Semibold";
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.4px;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  h4,
.h4 {
    font-size: 16px;
    line-height: 18px;
  }
}

.prefix-hd {
  position: relative;
  padding-left: 15px;
}
.prefix-hd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 30px;
  background: #c82d2a;
  width: 8px;
  margin: auto 0;
}
@media (max-width: 480px) {
  .prefix-hd {
    padding-left: 10px;
  }
  .prefix-hd::after {
    height: 24px;
    top: -3px;
    width: 6px;
  }
}

.cta-button {
  display: flex;
  width: 230px;
  height: 60px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Roboto Medium";
  justify-content: center;
  background: #c82d2a;
  align-items: center;
  font-size: 16px;
  border-radius: 5px;
}
.cta-button:hover {
  color: #ffffff;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1800px;
}
@media (max-width: 1800px) {
  .container {
    max-width: 1500px;
  }
}
@media (max-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 480px) {
  .nav-open .navbar-translate {
    -webkit-transform: translate3d(-170px, 0, 0);
    -moz-transform: translate3d(-170px, 0, 0);
    -o-transform: translate3d(-170px, 0, 0);
    -ms-transform: translate3d(-170px, 0, 0);
    transform: translate3d(-170px, 0, 0);
  }
}

.navbar {
  background-color: white;
  padding: 0;
  height: 85px;
  margin: 0;
  transition: all 0.15s ease-in-out;
}
.navbar.navbar-transparent {
  background-color: white !important;
  padding: 0;
  box-shadow: 0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15);
}
.navbar .container {
  max-width: 1800px;
  height: 100%;
}
@media (max-width: 1800px) {
  .navbar .container {
    max-width: 1500px;
  }
}
@media (max-width: 1500px) {
  .navbar .container {
    max-width: 1300px;
  }
}
.navbar .nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.navbar .nav-container .navbar-brand {
  position: relative;
  color: inherit;
  width: auto;
  height: 100%;
  font-size: 1.125rem;
  line-height: 30px;
  padding: 0;
}
.navbar .nav-container .navbar-brand img {
  width: auto;
}
.navbar .nav-container .navbar-translate {
  width: 137px;
  height: 55px;
  justify-content: flex-end !important;
}
.navbar .navbar-collapse {
  height: 100%;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse {
    height: auto;
  }
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-color: #171111 !important;
}
.navbar .navbar-nav {
  height: 100%;
}
.navbar .navbar-nav .nav-item {
  display: flex;
  height: 100%;
  border-radius: 0;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-item.active {
  background-color: #1711114d;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-family: "Roboto Semibold";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #171111;
  display: flex;
  background-color: transparent !important;
  align-items: center;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
.navbar .navbar-nav .nav-item:hover, .navbar .navbar-nav .nav-item:active {
  background-color: #17111126;
}
.navbar .navbar-nav .nav-item:last-child:hover, .navbar .navbar-nav .nav-item:last-child:active {
  background-color: transparent;
}
@media (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 15px 14px;
  }
}
@media (max-width: 992px) {
  .navbar {
    height: 75px;
  }
  .navbar .navbar-translate {
    width: 100%;
  }
  .navbar .navbar-nav {
    background: white;
    box-shadow: 0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15);
  }
  .navbar .navbar-nav .nav-item {
    position: relative;
    justify-content: flex-start;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: #000000;
    padding: 10px 10px;
    margin: 10px 5px;
  }
  .navbar .navbar-nav .nav-item:after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    height: 1px;
    width: 100%;
    margin-left: 15px;
    background-color: #e5e5e5;
  }
  .navbar .navbar-nav .nav-item:last-child:after {
    content: "";
  }
}
@media (max-width: 480px) {
  .navbar {
    height: 65px;
  }
  .navbar .nav-container .navbar-brand {
    width: 95px;
  }
  .navbar .nav-container .navbar-translate .navbar-toggler {
    padding: 0;
  }
  .navbar .nav-container .navbar-collapse {
    width: 170px;
  }
}

.index-page .page-header {
  height: 50vh;
  min-height: 500px;
}
@media(max-width: 565px){

.index-page .page-header {
  min-height: 400px;
}
}

.cs {
  padding: 90px 0 110px;
}
@media (max-width: 768px) {
  .cs {
    padding: 60px 0 85px;
  }
}
.cs.light {
  background: #fdfbfb;
}

.btn {
  width: 110px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  font-family: "Roboto Medium";
  border-radius: 0;
  line-height: 18px;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  box-shadow: none;
}
.btn.red {
  background: #c82d2a;
  color: #ffffff;
}

.news {
  margin: 30px 0 0;
  padding: 0 35px;
  position: relative;
}
.news .slick-btn {
  position: absolute;
  top: -20px;
  height: fit-content;
  bottom: 0;
  margin: auto 0;
  background: transparent;
  cursor: pointer;
  border: none;
}
.news .slick-btn i {
  font-size: 20px;
}
.news .slick-prev {
  left: 0;
}
.news .slick-next {
  right: 0;
}
.news .article {
  width: 264px;
  height: 292px;
  width: 264px;
  margin: 0 10px;
  height: 292px;
  background: #ffffff;
  border: 1px solid #f3f3f3;
  display: flex;
  flex-flow: column;
}
.news .article .article-img {
  height: 135px;
  width: 100%;
}
.news .article .article-body {
  height: 100%;
  display: flex;
  padding: 12px 17px 18px;
  width: 100%;
  flex-flow: column;
  justify-content: space-between;
}
.news .article .article-body .article-date {
  font-size: 11px;
  line-height: 12px;
  font-family: "Roboto Medium";
  margin-bottom: 6px;
}
.news .article .article-body .article-title {
  font-size: 16px;
  line-height: 20px;
  font-family: "Roboto Semibold";
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
.news .article .article-body .article-btn {
  text-align: right;
}
@media (max-width: 480px) {
  .news {
    padding: 0 25px;
  }
  .news .slick-btn i {
    font-size: 15px;
  }
  .news .article {
    width: 250px;
  }
  .news .article .article-body {
    padding: 8px 12px 14px;
  }
}

.fixture {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.fixture .schedule {
  min-width: 610px;
  width: 50%;
  min-height: 580px;
}
.fixture .schedule .schedule-hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid #c82d2a;
}
.fixture .schedule .schedule-hdr .schedule-month {
  display: flex;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.4px;
  line-height: 20px;
}
.fixture .schedule .schedule-body .schedule-field {
  height: 85px;
  align-items: center;
  display: flex;
  flex-flow: row;
  padding: 10px 20px;
  border-bottom: 1px solid #cacaca;
  justify-content: space-between;
}
.fixture .schedule .schedule-body .schedule-field .schedule-dt {
  font-family: "Roboto Medium";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.4px;
  min-width: 150px;
}
.fixture .schedule .schedule-body .schedule-field .schedule-teams {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team {
  width: 95px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
}
.fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team img {
  width: 36px;
  height: 36px;
}
.fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team .schedule-team__name {
  font-family: "Roboto Semibold";
  font-size: 13px;
  line-height: 12px;
  letter-spacing: 0.3px;
  text-align: center;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
.fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team__score {
  width: 70px;
  height: 40px;
  font-family: "Roboto Semibold";
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.4px;
  margin: 0 10%;
  display: flex;
  background: #fff6f6;
  justify-content: center;
  align-items: center;
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
.fixture .schedule .schedule-body .schedule-field .schedule-league {
  width: 70px;
}
@media (max-width: 1200px) {
  .fixture .schedule {
    min-width: 440px;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team__score {
    margin: 0;
  }
}
.fixture .stats {
  min-width: 495px;
  min-height: 695px;
  width: 45%;
}
.fixture .stats .stats-hdr {
  width: 100%;
  height: 45px;
  display: flex;
  color: #ffffff;
  justify-content: space-between;
  padding: 0 15px;
  background: #c82d2a;
  flex-flow: row;
}
.fixture .stats .stats-hdr .pos {
  width: 190px;
  height: 100%;
  display: flex;
  line-height: 20px;
  justify-content: flex-start;
  align-items: center;
}
.fixture .stats .stats-hdr .points {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.fixture .stats .stats-hdr .points div {
  justify-content: center;
  display: flex;
}
.fixture .stats .stats-hdr .points .small-points {
  width: 45px;
}
.fixture .stats .stats-hdr .points .large-points {
  width: 55px;
}
.fixture .stats .stats-body .stats-field {
  height: 45px;
  display: flex;
  flex-flow: row;
  font-family: "Roboto Medium";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.4px;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.fixture .stats .stats-body .stats-field:nth-child(even) {
  background: #fff6f6;
}
.fixture .stats .stats-body .stats-field .stats-position {
  display: flex;
  width: 100%;
  flex-flow: row;
  align-items: center;
}
.fixture .stats .stats-body .stats-field .stats-position .stats-field-pos {
  width: 40px;
  height: 100%;
  padding: 0 5px;
  align-items: center;
  display: flex;
}
.fixture .stats .stats-body .stats-field .stats-position .stats-field-team {
  width: fit-content;
  display: flex;
  padding: 0 5px;
  line-height: 20px;
  font-size: 16px;
  align-items: center;
}
.fixture .stats .stats-body .stats-field .stats-points {
  display: flex;
  flex-flow: row;
}
.fixture .stats .stats-body .stats-field .stats-points div {
  display: flex;
  justify-content: center;
}
.fixture .stats .stats-body .stats-field .stats-points .stats-small-points {
  width: 45px;
}
.fixture .stats .stats-body .stats-field .stats-points .stats-large-points {
  width: 55px;
}
@media (max-width: 1200px) {
  .fixture .stats {
    min-width: 450px;
  }
  .fixture .stats .stats-hdr .points .small-points {
    width: 35px;
  }
  .fixture .stats .stats-hdr .points .large-points {
    width: 45px;
  }
  .fixture .stats .stats-body .stats-field {
    height: 48px;
  }
  .fixture .stats .stats-body .stats-field .stats-points .stats-small-points {
    width: 35px;
  }
  .fixture .stats .stats-body .stats-field .stats-points .stats-large-points {
    width: 45px;
  }
}
@media (max-width: 992px) {
  .fixture {
    flex-flow: column;
  }
  .fixture .schedule {
    /*margin: 0 auto 50px;*/
    margin: 0 auto 70px;
    max-width: 740px;
    width: 100%;
    min-width: 430px;
    min-height: 300px;
  }
  .fixture .schedule .schedule-body .schedule-field {
    padding: 10px 15px;
  }
  .fixture .stats {
    min-width: 430px;
    margin: 0 auto;
    width: 100%;
    max-width: 585px;
  }
  .fixture .stats .stats-body .stats-position .stats-field-team {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .fixture .schedule {
    min-width: 300px;
    width: 100%;
  }
  .fixture .schedule .schedule-hdr .schedule-month {
    font-size: 15px;
  }
  .fixture .schedule .schedule-body .schedule-field {
    align-items: end;
    position: relative;
    /*padding: 10px 10px;*/
    padding: 10px 15px;
    height: 100px;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-dt {
    font-size: 14px;
    min-width: 75px;
    line-height: 16px;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-teams {
    min-width: 170px;
    width: 70%;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team .schedule-team__name {
    font-size: 12px;
    line-height: 14px;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-teams .schedule-team__score {
    font-size: 16px;
    line-height: 20px;
    margin: 0 3%;
  }
  .fixture .schedule .schedule-body .schedule-field .schedule-league {
    /*bottom: 15px;*/
    top: 5px;
    right: -30px;
    position: absolute;
    width: 50px;
      img{
          width: 50%;
      }
  }
  .fixture .stats {
    min-width: 280px;
  }
  .fixture .stats .stats-hdr {
    height: 40px;
    padding: 0 10px;
  }
  .fixture .stats .stats-hdr .pos {
    width: 100%;
  }
  .fixture .stats .stats-hdr .points {
    width: 100%;
    justify-content: flex-end;
  }
  .fixture .stats .stats-hdr .points .small-points {
    width: 15%;
  }
  .fixture .stats .stats-hdr .points .large-points {
    width: 20%;
  }
  .fixture .stats .stats-body .stats-field {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 16px;
  }
  .fixture .stats .stats-body .stats-field .stats-position {
    width: 100%;
  }
  .fixture .stats .stats-body .stats-field .stats-position .stats-field-pos {
    width: fit-content;
    padding: 0 5px 0 0;
  }
  .fixture .stats .stats-body .stats-field .stats-position .stats-field-team {
    width: 100%;
    line-height: 14px;
    font-size: 13px;
    padding: 0 0 0 5px;
  }
  .fixture .stats .stats-body .stats-field .stats-points {
    width: 100%;
    justify-content: flex-end;
  }
  .fixture .stats .stats-body .stats-field .stats-points .stats-small-points {
    width: 15%;
  }
  .fixture .stats .stats-body .stats-field .stats-points .stats-large-points {
    width: 20%;
  }
}

.sm-posts {
  margin: 30px 0 0;
  padding: 0 35px;
  position: relative;
  display: flex;
  flex-flow: row;
}
.sm-posts .sm-posts-box {
  padding: 0;
  margin: 0 15px;
  flex: 30%;
  border-radius: 3px;
  overflow: hidden;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
}
.sm-posts .sm-posts-box .sm-posts-img {
  object-fit: contain;
  width: 100%;
  transition: all 1s ease;
}
.sm-posts .sm-posts-box:hover .sm-posts-img {
  transform: scale(1.1);
}
.sm-posts .sm-posts-box .sm-posts-hdr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(0deg, #171111 13.61%, rgba(0, 0, 0, 0) 83.78%);
  height: 30%;
}
.sm-posts .sm-posts-box .sm-posts-hdr i {
  color: white;
  font-size: 20px;
}
@media (max-width: 992px) {
  .sm-posts {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .sm-posts {
    flex-flow: wrap;
  }
  .sm-posts .sm-posts-box {
    flex: 60%;
    margin: 0 auto 40px;
    max-width: 435px;
    min-width: 260px;
  }
}

.about {
  min-height: 50vh;
}

.details {
  margin: 30px 0;
}
.details.sm {
  margin: 15px 0;
}
.details ol {
  list-style: disc;
}
.details ol li {
  padding: 5px 0;
}
@media (max-width: 480px) {
  .details ol {
    padding: 0 0 0 25px;
  }
}

footer {
  padding: 70px 25px;
  text-align: center;
  display: -webkit-flex;
  color: white;
  display: flex;
  background: #171111;
}
footer .footer-body {
  align-content: flex-start;
  justify-content: flex-start;
  text-align: left;
}
footer .footer-body h3 {
  margin-bottom: 10px;
}
footer .footer-body .ftr-details {
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 22px;
}
footer .footer-body .ftr-details .ftr-title {
  font-family: "Roboto Medium";
}
@media (max-width: 480px) {
  footer {
    padding: 40px 10px;
  }
}

.squad {
  width: 100%;
  margin: 0 40px;
  padding: 40px 0 80px;
}
.squad .squad-hdr {
  border-bottom: 2px solid #c82d2a;
  margin-bottom: 30px;
}
.squad .squad-players {
  display: flex;
  flex-wrap: wrap;
  border-radius: 3px;
  overflow: hidden;
}
.squad .squad-players .player {
  width: 22%;
  overflow: hidden;
  height: auto;
  border-radius: 3px;
  margin: 20px 13px;
  position: relative;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
}
.squad .squad-players .player .pl-image {
  transition: all 1s ease;
}
.squad .squad-players .player:hover .pl-image {
  transform: scale(1.1);
}
.squad .squad-players .player .pl-body {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  font-family: "Roboto Semibold";
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.4px;
  padding: 10px;
  color: #ffffff;
  display: flex;
  justify-content: flex-end;
  flex-flow: column;
  align-items: flex-start;
  height: 90px;
  background: linear-gradient(360deg, #000000 9.38%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0.1px 0.1px 1px rgba(0, 0, 0, 0.2);
}
.squad .squad-players .player .pl-body .pl-number {
  width: 30px;
  margin-bottom: 10px;
  border-bottom: 2px solid #c82d2a;
}
@media (max-width: 992px) {
  .squad .squad-players .player {
    width: 30%;
    overflow: hidden;
    height: auto;
    border-radius: 3px;
    margin: 10px 10px;
  }
}
@media (max-width: 768px) {
  .squad {
    width: 100%;
    margin: 0 20px;
    padding: 40px 0 80px;
    overflow-x: hidden;
  }
  .squad .squad-hdr {
    border-bottom: 2px solid #c82d2a;
    margin-bottom: 15px;
  }
  .squad .squad-players .player {
    width: 30%;
    overflow: hidden;
    height: auto;
    border-radius: 3px;
    margin: 8px 5px;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
  }
}
@media (max-width: 560px) {
  .squad {
    padding: 40px 0 10px;
  }
  .squad .squad-players .player {
    width: 46%;
  }
  .squad .squad-players .player .pl-body {
    padding: 7px;
  }
  .squad .squad-players .player .pl-body .pl-number {
    width: 20px;
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 15px;
  }
  .squad .squad-players .player .pl-body .pl-name h4 {
    font-size: 14px;
    line-height: 16px;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  border-radius: 3px;
  overflow: hidden;
}
.gallery .media {
  width: 22%;
  overflow: hidden;
  height: auto;
  border-radius: 3px;
  margin: 20px 13px;
  position: relative;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
}
@media (max-width: 992px) {
  .gallery .media {
    width: 30%;
    overflow: hidden;
    height: auto;
    border-radius: 3px;
    margin: 10px 10px;
  }
}
@media (max-width: 768px) {
  .gallery .media {
    width: 30%;
    overflow: hidden;
    height: auto;
    border-radius: 3px;
    margin: 10px 5px;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
  }
}
@media (max-width: 560px) {
  .gallery .media {
    width: 46%;
  }
}

/*# sourceMappingURL=app.css.map */
