/**
* Template Name: Laura
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/laura-free-creative-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-color: #360606;

}

a {
  color: #ffb727;
  text-decoration: none;
}

a:hover {
  color: #ffc85a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {

}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: Soccer;
  src: url("..fonts/soccer.woff");
} 


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #360606;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #cdb436;
  border-top-color: #360606;
  border-bottom-color: #360606;
  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);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #C0A530;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #350605;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  height: 60px;
  background: rgba(53, 6, 5, 1);
}

#header .logo-mobile img{
  max-height: 80px;
  position: absolute;
  top: 10px;
  left: 20px;

}


#header .nav-link-right {
  position: absolute;
  top: 25px;
  right: 25px;
  transition: .5s;
  
  @media (max-width: 991px) {
    --position: relative;
    --margin-top: -60px;
    right: 40%;
    display: none;
  }
}

#header.header-scrolled .nav-link-right {
  position: absolute;
  top: 20px;
  right: 25px;

  @media (max-width: 991px) {
    --position: relative;
    --margin-top: -35px;
    right: 40%;
    display: none;
  }
}

#header .nav-link-left {
  position: absolute;
  top: 25px;
  left: 25px;
  transition: .5s;

  @media (max-width: 991px) {
    --position: relative;
    --margin-top: -60px;
    left: 40%;
    display: none;
  }
}

#header.header-scrolled .nav-link-left {
  position: absolute;
  top: 20px;
  left: 25px;

  @media (max-width: 991px) {
    --position: relative;
    --margin-top: -35px;
    left: 40%;
    display: none;
  }

}

#header .nav-add-links {
  color: #fff;
}

#header .nav-add-links:hover {
  color: #cdb436;
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar img {
  max-height: 120px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .navbar img {
    display: none;
  }
}

.navbar .menu-logo {
  @media (max-width: 991px) {
    display: none;
  }
}

.navbar ul {
  margin: 0 20px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #C0A530;
}




/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  top: 20px;
  right: 30px;
}

.mobile-nav-toggle i:hover{
  color: #C0A530;
}


@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile i:hover{
  color: #C0A530;
}

.navbar-mobile i{
  color: #fff;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(54, 6, 6, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  align-items: right;
  text-align: center;
}


.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #C0A530;
}

.navbar-mobile .contact-links {
  margin: 20px 0;
} 

.navbar-mobile .contact-links a {
  font-size: 18px;
  display: inline-block;
  background: #cdb436;
  color: #360606;
  line-height: 1;
  padding: 8px 3px 8px 0px;
  margin-right: 15px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.navbar-mobile .contact-links .bi {
  font-size: 18px;
  margin-top: 3px;
  line-height: 1;
}

.navbar-mobile .contact-links a:hover {
  background: #360606;
  color: #360606;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 110vh;
  background: url("../img/hero-bg.jpg") top right;
  background-size: cover;
  position: relative;

}

#hero:before {
  content: "";
  --background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 0 0;
  font-size: 240px;
  font-family: 'Rift', sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: .8;
}

#hero h2 {
  color: #C0A530;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 50px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  line-height: 1;
  margin-left: 50px;
}

#hero h3 {
  margin: 20px 0 0 0;
  font-size: 50px;
  font-family: 'Rift', sans-serif;
  font-weight: 300;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
}

#hero .btn-scroll {
  transition: 0.4s;
  color: #C0A530;
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: #fff;
}








@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 160px;
    text-align: center;
  }

  #hero h2 {
    font-size: 25px;
    text-align: center;
    letter-spacing: 30px;
    margin-left: 30px;
  }

  #hero h3 {
    font-size: 30px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 90px;
    text-align: center;
  }

  #hero h2 {
    text-align: center;
    font-size: 15px;
    text-align: center;
    letter-spacing: 20px;
    margin-left: 20px;
    padding-top: 20px;

  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
}



.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #3b434a;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #eef0f2;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

.section-bg2 {
  padding: 280px 0;
  color: #fff;
}

.section-bg2:before {
  content: "";
  background: #360606;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}



/*--------------------------------------------------------------
# Schedule
--------------------------------------------------------------*/
.schedule {
  background-color: #fff;
  background: linear-gradient(to right, #091732 30%, white 30%);
  padding-top: 80px;

  @media (max-width: 991px) {
    background: linear-gradient(to bottom, #091732 30%, white 30%);
  }

  @media (max-width: 767px) {
    background: linear-gradient(to bottom, #091732 25%, white 25%);
  }


}

.schedule .schedule-link {
  text-align: right;
  padding-bottom: 20px;
  margin-top: -70px;

  @media (max-width: 991px) {
    text-align: center;
    margin-top: 25px;
  }
}

.schedule .schedule-link a {
  text-transform: uppercase;
  color: #360606;
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
  font-family: 'Rift', sans-serif;

  @media (max-width: 991px) {
    color: #fff;
  }
}

.schedule .schedule-link i {
  font-size: 24px;
  vertical-align: middle;
}

.schedule .schedule-link a:hover {
  color: #cdb436;
}


/*---STATS---*/

.schedule .game-stats-section {
  margin-top: -120px;
  margin-left: -50px;
  position: relative;

  @media (max-width: 991px) {
  margin-left: 0px;
  }
}

.schedule .game-stats-title {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0px 10px 0px 0px;
  margin-left: 50px;
  padding: 8px 8px;
  width: 600px;
  font-size: 16px;
  font-weight: 800;
  color: #091732;
  font-family: 'Rift', sans-serif;
  z-index: 1;

  @media (max-width: 800px) {
    max-width: 90%;
    --margin-left: 10px;
    margin: auto;
  }
  @media (max-width: 991px) {
    margin: auto;
  }
}

.schedule .game-stats {
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  border-top: 0px;
  border-radius: 0px 0px 0px 10px;
  margin-left: 50px;
  padding: 8px 8px;
  width: 600px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;

  @media (max-width: 800px) {
    max-width: 90%;
    --margin-left: 10px;
    margin: auto;
  }
  @media (max-width: 991px) {
    margin: auto;
  }
}

.schedule .game-stats .stats-details {
  border-right: 1px solid #e0e0e0;
  text-align: center;
  color: #091732;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-right: 0px;
  padding-left: 0px;
  text-transform: uppercase;
  font-family: 'Rift', sans-serif;
  padding: 0;
}

.schedule .game-stats .stats-details span {
  font-size: 40px;
  font-weight: 700;
  color: #cdb436;
  line-height: 1;

  @media (max-width: 700px) {
  font-size: 30px;
  }
}

.schedule .game-stats .last-stat {
  border-right: 0px;
}



/*---GAMES---*/

.schedule .upcoming-games {
  margin-top: 80px;

  @media (max-width: 991px) {
    margin-top: 20px;
  }
}

/*---NEXT GAME GOLD---*/

.schedule .icon-box-gold {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 0px 30px;
  transition: all ease-in-out 0.4s;
  background: #cdb436;
  border-radius: 0px 15px 0px 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}


.schedule .icon-box-gold .game-team {
  font-size: 32px;
  font-family: 'Rift', sans-serif;
  color: #360606;
  line-height: 1;
}

.schedule .icon-box-gold .game-links {
  margin: 20px -30px 0px -30px;
  border-top: 1px solid #B39C2E;
}

.schedule .icon-box-gold .game-links .game-location {
  color: #091732;
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Rift-Med', sans-serif;
  border-right: 1px solid #B39C2E;
  border-radius: 0 0 0 15px;
}
.schedule .icon-box-gold .game-links .game-location:hover {
  background-color: #360606;
  border-radius: 0 0 0 14px;
  color: #fff;
}

.schedule .icon-box-gold .game-links .game-field {
  color: #091732;
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Rift-Med', sans-serif;
}
.schedule .icon-box-gold .game-links .game-field:hover {
  background-color: #360606;
  color: #fff;
}

.schedule .icon-box-gold:hover {
  transform: translateY(-10px);
}

/*---NEXT GAME---*/

.schedule .icon-box {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 0px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  border-radius: 0px 15px 0px 15px;

  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.schedule .game-date {
  font-size: 28px;
  font-family: 'Rift', sans-serif;
  color: #091732;
}

.schedule .game-day {
  font-size: 22px;
  font-family: 'Rift-Med', sans-serif;
  color: #091732;
  line-height: .7;
  padding-bottom: 30px;
}

.schedule .game-team {
  font-size: 32px;
  font-family: 'Rift', sans-serif;
  color: #cdb436;
  line-height: 1;
}

.schedule .versus {
  display:flex;
  flex-flow:row;
  justify-content:center;
  align-items:center;
  padding: 0;
}

.schedule .versus hr {
  flex:1;
  margin: -5px 0 0 0;
  padding: 0 50px;
  border-top: 1.5px solid #091732;
}

.schedule .versus span {
  padding: 0px 10px;
  margin: -5px 0 0 0;
  font-size: 18px;
  font-family: 'Rift', sans-serif;
  color: #091732
}

.schedule .game-links {
  margin: 20px -30px 0px -30px;
  border-top: 1px solid #e0e0e0;
}

.schedule .game-links .game-location {
  color: #091732;
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Rift-Med', sans-serif;
  border-right: 1px solid #e0e0e0;
  border-radius: 0 0 0 15px;
}
.schedule .game-links .game-location:hover {
  background-color: #e0e0e0;
  border-radius: 0 0 0 15px;
}

.schedule .game-links .game-field {
  color: #091732;
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Rift-Med', sans-serif;
}
.schedule .game-links .game-field:hover {
  background-color: #e0e0e0;
}

.schedule .icon-box:hover {
  transform: translateY(-10px);
}







/*--------------------------------------------------------------
# Motto
--------------------------------------------------------------*/

#motto {
  background: url("../img/rpc-bg.jpg") top center no-repeat;
  background-attachment: fixed;
  padding-top: 10%;
  padding-bottom: 10%;


}



#motto  h1 {
  font-size: 9vw;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  font-family: "Soccer", sans-serif;

  @media (max-width: 600px) {
    font-size: 14vw;
  }
}

#motto  h1 span{
  color: #CDB436;

  @media (max-width: 600px) {
    display: block;
  }
}


/*--------------------------------------------------------------
# Roster Section
--------------------------------------------------------------*/
#roster {
  background: #fff;
}

.roster .player {
  text-align: center;
  background: #fff;
  padding: 0px;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  margin: 0px 10px 0px 10px;
  transition: 0.3s;
  border-radius: 0px 15px 0px 15px;

}

.roster .player-img {
  overflow: hidden;
}

.roster .player:hover {

  border-radius: 0px 15px 0px 15px;
}

.roster .player img {
  overflow: hidden;
  transition: 0.3s;
}

.roster .player:hover img {
  transform: scale(1.2);
}

.roster hr {
  border-top: 1px solid #fff;
  margin: 10px;
}

.roster h1 {
  font-size: 80px;
  font-family: 'Rift', sans-serif;
  color: #360606;
  text-transform: uppercase;
  line-height: .8;
  text-align: left;

  @media (max-width: 991px) {
    text-align: center;
  }
}

.roster .player h2 {
  margin-top: 16px;
  font-size: 30px;
  color: #360606;
  font-weight: 300;
  font-family: 'Rift', sans-serif;
  line-height: .8;
  text-transform: uppercase;
}

.roster .player span {
  display: block;
  font-size: 14px;
  color: #cdb436;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: .8;
}

.roster .player-stats {
  background-color: #fff;
  padding: 0px 8px 8px 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.roster .player-stats .player-details {
  border-right: 1px solid #e0e0e0;
  text-align: center;
  color: #091732;
  margin-top: 0px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Rift', sans-serif;
}

.roster .player-stats .player-details .player-num {
  font-size: 50px;
  font-weight: 700;
  color: #360606;
  line-height: .8;
  font-family: 'Rift', sans-serif;
  margin-top: 8px;
  padding: 8px 0px 0px 8px;
}

.roster .player-stats .player-details .player-num sup{
  font-size: 30px;
}

.roster .player-stats .player-details span {
  font-size: 30px;
  font-weight: 300;
  color: #cdb436;
  line-height: .8;
  font-family: 'Rift', sans-serif;

  @media (max-width: 700px) {
  font-size: 30px;
  }
}

.roster .player-stats .last-stat {
  border-right: 0px;
}



.roster .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.roster .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #f0f0f0;
  opacity: 1;
  vertical-align: middle;
}

.roster .swiper-pagination .swiper-pagination-bullet:hover {
  width: 10px;
  height: 10px;
  background-color: #cdb436;
}

.roster .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #360606;
  width: 12px;
  height: 12px;
}

.roster .swiper-pagination .swiper-pagination-bullet-active:hover {
  background-color: #cdb436;
  width: 12px;
  height: 12px;
}

.roster .swiper-button-prev {
  color: #f0f0f0;
  margin-left: -40px;
  transition: 0.3s;

  @media (max-width: 650px) {
    display: none;
  }
}

.roster .swiper-button-prev:hover {
  color: #cdb436;
  margin-left: -37px;
}


.roster .swiper-button-next {
  color: #f0f0f0;
  margin-right: -40px;
  transition: 0.3s;

  @media (max-width: 650px) {
    display: none;
  }
}

.roster .swiper-button-next:hover {
  color: #cdb436;
  margin-right: -37px;
}








/*--------------------------------------------------------------
# Photos
--------------------------------------------------------------*/
#photos {
  background-color: #091732;
  padding: 150px 0 200PX 0;
}

#photos .gold-divider {
  padding: 6px;
  background-color: #cdb436;
  width: 30vw;
  margin: auto;
  margin-top: -157px;
}

#photos  .section-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

#photos  h1 {
  margin: 0 0 0 0;
  font-size: 240px;
  font-family: 'Soccer', sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

#photos  h2 {
  color: #C0A530;
  margin-bottom: 10px;
  margin-left: 30px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 30px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  line-height: 1;
}

#photos h3 {
  margin: 0 0 0 0;
  font-size: 50px;
  font-family: 'Soccer', sans-serif;
  font-weight: 300;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #photos h1 {
    font-size: 160px;
    text-align: center;
    margin-top: 180px;
  }

  #photos h2 {
    font-size: 25px;
    text-align: center;
    letter-spacing: 30px;
    margin-left: 30px;
  }

  #photos h3 {
    font-size: 30px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  #photos h1 {
    font-size: 90px;
    text-align: center;
    margin-top: 130px;
  }

  #photos h2 {
    text-align: center;
    font-size: 15px;
    text-align: center;
    letter-spacing: 10px;
    margin-left: 10px;
  }
}

/*--------------------------------------------------------------
# Videos
--------------------------------------------------------------*/
#videos {
  padding: 20px 20px;
  padding-bottom: 120px;
  background: url("../img/game1.jpg") top center no-repeat;
  background-attachment: fixed;
  background-color: #fff;

}

#videos .gold-divider {
  padding: 6px;
  background-color: #cdb436;
  width: 30vw;
  margin: auto;
  margin-top: -25px;
}

.videos .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  color: #091732;
  margin-bottom: 20px;
  border-radius: 0px 15px 0px 15px;
  transition: 0.5s;
}

.videos h1 {
  font-size: 80px;
  font-family: 'Rift', sans-serif;
  color: #360606;
  text-transform: uppercase;
  line-height: .8;
  text-align: left;
  padding-top: 40px;

  @media (max-width: 991px) {
    text-align: center;
  }
}

.videos  h2 {
  color: #C0A530;
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  line-height: 1;
}

.videos h3 {
  font-family: 'Rift', sans-serif;
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 15px 15px;
  font-size: 40px;
  font-weight: 300;
  color: #C0A530;
  background: #091732;
  text-transform: uppercase;
}

.videos h4 {
  font-size: 25px;
  color: #360606;
  font-weight: 300;
  font-family: 'Rift', sans-serif;
  margin-bottom: 8px;
  test-transform: uppercase;
}


.videos h4 sup {
  font-size: 20px;
  top: -12px;
  left: -3px;
}

.videos h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.videos ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.videos ul li {

  font-size: 20px;
  color: #091732;
  font-weight: 600;
}

.videos ul i {
  color: #ffb727;
  font-size: 25px;
  padding-right: 4px;
  font-weight: 500;
}

.videos ul .na {
  color: #ccc;
  text-decoration: line-through;
}


.videos .btn-wrap {
  margin: 0px -30px -30px -30px;
  padding: 0px 0px;
  background: #f8f8f8;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos .btn-wrap p{
  text-align: center;
  font-weight: 500;
}

.videos .btn-wrap a{
  justify-content: center;
  padding-bottom: 8px;
}


.videos .btn-watch-video {
  font-size: 14px;
  align-items: center;
  transition: 0.5s;
  color: #091732;
  line-height: -1;
  background: #fff;
  padding: 0px 0px;
  height: 70px;
  border-top: 1px solid #e0e0e0;
  margin: 0px;
  display: flex;
  flex: 50%;
  text-align: center;
}

.videos .btn-watch-full {
  flex: 100%;
}

.videos .btn-watch-video {
  border-right: 1px solid #e0e0e0;
}
.videos .btn-watch-video i {
  line-height: -1;
  color: #091732;
  font-size: 22px;
  transition: 0.3s;
  margin-right: 5px;
}

.videos .box:hover {
  transform: translateY(-10px);
}

#videos .btn-watch-video:hover {
  background: #cdb436;
}

.videos .featured h3 {
  color: #fff;
  background: #ffb727;
}

.videos .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffb727;
  color: #fff;
}


@media (max-width: 575px) {
  #videos h1 {
    font-size: 100px;
    text-align: center;
  }

  #videos h2 {
    font-size: 20px;
    text-align: center;
  }

}

@media (max-width: 1400px) {
  .videos .btn-wrap {
    flex-wrap: wrap;
    text-align: center;
  }
  .videos .btn-watch-video {
    text-align: center;
  }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #360606;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

#footer .container {
  position: relative;
}

#footer h1 {
  font-size: 110px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Rift", serif;
  padding: 0;
  margin: 0 0 -10px 0;
}

#footer h2 {
  font-size: 14px;
  --font-weight: 700;
  color: #cdb436;
  position: relative;
  --font-family: "Rift", serif;
  padding: 0;
  margin: 0 0 25px 4px;
  letter-spacing: 8px;
}


#footer .social-links {
  margin: 0 0 0px 0;
}

#footer .social-links a, bi {
  font-size: 18px;
  display: inline-block;
  background: #cdb436;
  color: #360606;
  line-height: 1;
  padding: 8px 0;
  margin-right: 14px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #360606;
  text-decoration: none;
}

#footer .social-links .social-last {
  margin-right: 0px;
}


















