/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  /* color: rgb(192, 192, 192); */
  color: #fea;
  font-family: 'Cinzel';
}

a {
  color: #b61e90;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #8818d3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h6 {
    /* font-family: "Montserrat", sans-serif; */
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: #ff9800;
}

h5 {
font-family: 'Raleway', sans-serif;
color: #a0a0a0;
font-family: 'Open Sans';
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #b61e90;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #1eb63f;
  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);
  }
}



#videoBG {
  position:fixed;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  #videoBG {
      width:100%;
      height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  #videoBG { 
      width:auto;
      height: 100%;
  }
}
@media (max-width: 767px) {
  #videoBG {
      display: none;
  }
  body {
      background-size: cover;
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 26px;
  background: rgba(0, 0, 0, 0.9);
}

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

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 18px 0;
}

#header .logo {
  font-size: 60px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  /* max-height: 100px; */
  max-height: 64.5px;

  -webkit-filter: drop-shadow(5px 5px 5px #FFFFFF);
  filter: drop-shadow(5px 5px 5px #222);
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  /* color: rgb(239, 157, 255); */
  color: rgb(255 255 255);
    transition: 0.3s;
  font-size: 15px;
  font-family: "Fahkwang", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color:#ff5722;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: black;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: #ffeb3b;
  font-family: 'Cinzel',sans-serif;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color:#ffeb3b;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: rgb(8, 84, 224);
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: rgb(8, 0, 0);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffeb3b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color:#ffeb3b;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: rgb(13, 241, 44);
}

.hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}

.hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}


.top-banner-section {
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: 350px; 
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-content: center;
  justify-content: center;
}
  .banner-image-div {
    grid-area: 1 / 1 / 2 / 2;
  } 
  .banner-overlay-div {
    grid-area: 1 / 1 / 2 / 2;
  } 
  .banner-text-div {
    grid-area: 1 / 1 / 2 / 2;
  } 

.banner-image {
  display: grid;
  min-width: 350px;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.banner-overlay-div {
  display: grid;
  max-width: 100%;
  background: black;
  background: linear-gradient(
    60deg,
    rgba(0, 0, 0, 0.7777485994397759) 20%,
    rgba(255, 255, 255, 0) 30%
  );
}

.banner-text-div {
  display: grid;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}

.banner-h1-text {
  
  font-size: calc(10pt + 0.15vw);
  letter-spacing: 0.05em;
  font-weight: bolder;
  text-transform: uppercase;
  color: white;
}

.banner-body-text {
  
  font-size: calc(10pt + 0.15vw);
  margin-top: 0.5em;
  color: white;
  text-decoration: none;
}
.banner-body-text:hover {
    color: white;
  }
.banner-body-text:visited {
    color: white;
  }
.banner-body-image:active {
    color: white;
  }


.banner-btn {
  margin-top: 1em;
}

.banner-btn-item {
  font-size: calc(8pt + 0.15vw); 
  padding-top: calc(0.5em + 0.08vw);
  padding-bottom: calc(0.5em + 0.08vw);
  padding-left: calc(0.5em + 0.08vw);
  padding-right: calc(0.5em + 0.08vw);
  color: blue;
  background-color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid white;

}
.banner-btn-item:link {
    text-decoration: none;
  }
.banner-btn-item:visited {
    text-decoration: none;
  }

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #intro {
    height: 150vh;
  }
}

#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#intro .container {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#intro a:hover, a:active, a:focus {
  color: #d31818;
  outline: none;
  text-decoration: none;
}

#intro a {
  color: white;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
  }
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #fcf807;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #f4f807;
}


/* new video background */
header.home-hero {
  position: relative;
  height: 89vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header.home-hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.text-container {
  display: block;
  justify-content: center;
  text-align: center;
}
 

.text-container h1{
  padding: 0%;
  width: 1000px;
  font-size: 150px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
  -webkit-animation-delay: .5s;
  animation-delay: 1s;
  color: #f0d600;
  text-shadow: 3px 3px 10px #000000;
  font-family: RussoOne-Regular;
/* text-shadow: 3px 3px 10px rgb(149, 28, 185); */
}
.text-container p{
padding: 0%;
width: 1050px;
font-size: 45px;
font-weight: 800;
padding-right: 50px;
-webkit-animation-delay: .5s;
animation-delay: 1s;
color: rgb(16, 198, 230);
font-family: 'Montserrat', sans-serif;
text-shadow: 1px 2px 4px rgb(241, 9, 152);
overflow-wrap: break-word;
}
.text-container h3{
  padding: 0%;
  width: 1050px;
  font-size: 45px;
  font-weight: 900;
  padding-right: 50px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 3s;
  color: rgb(174, 46, 206);
  font-family: 'Kufam', sans-serif;
  text-shadow: 2px 2px 5px rgb(209, 177, 33);

}
.text-container h3:hover{
  padding: 0%;
  width: 1050px;
  font-size: 45px;
  font-weight: 900;
  padding-right: 50px;
  -webkit-animation-delay: 1s;
  animation-delay: 3s;
  color: rgb(153, 30, 190);
  font-family: 'Kufam', sans-serif;
  text-shadow: 3px 5px 10px rgb(117, 22, 136);
  
  
  }

@media screen and (max-width: 480px) {
  .text-container h1 span:first-of-type{
  font-size: 48px;
  text-align: center;
  display: block;
  position: relative;
  /** font-family: 'Cinzel'; **/
}
}
@media screen and (max-width: 480px) {
  .text-container p span:first-of-type {
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
}
}
@media screen and (max-width: 480px) {
  .text-container h3 {
  font-size: 25px;
  text-align: center;
  display: flex;
  position: relative;
  font-family: 'Red Rose';
}
}
@media screen and (max-width: 768px) {
  .text-container h1 span:nth-of-type(2) {
  font-size: 80px;
  text-align: center;
  display: flex;
  position: relative;
  /** font-family: 'Cinzel'; **/
}
}
@media screen and (max-width: 768px) {
  .text-container p span:nth-of-type(2){
  font-size: 50px;
  text-align: center;
  display: flex;
  position: relative;
  font-family: 'Red Rose';
}
}
@media screen and (max-width: 780px) {
  .text-container h3 {
  font-size: 30px;
  text-align: center;
  display: flex;
  position: relative;
  font-family: 'Red Rose';
}
}
@media screen and (max-width: 1024px) {
  .text-container h1 {
  font-size: 80px;
  text-align: center;
  display: flex;
  position: relative;
  /** font-family: 'Cinzel'; **/
}
}
@media screen and (max-width: 1024px) {
  .text-container p {
  font-size: 32px;
  text-align: center;
  display: flex;
  position: relative;
  font-family: 'Red Rose';
}
}
@media screen and (max-width: 1024px) {
  .text-container h3 {
  font-size: 40px;
  text-align: center;
  display: flex;
  position: relative;
  font-family: 'Red Rose';
}
}



.text-container .animated {
animation: up-down 1.5s ease-in-out infinite alternate-reverse both;
size: 150px;
}


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

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


header.home-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 575.98px) {
  header.home-hero video {
    display: none;
  }
}

header.home-hero img.poster {
  height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  object-position: bottom right;
  position: absolute;
  top: 0;
  left: 0;
}

@media (pointer: coarse) and (hover: none) {
  header {
    background: url('assets/img/octopus/oct2.png') no-repeat bottom right scroll;
  }
}
@media (max-width: 575.98px) {
  header.home-hero video {
      display: none;
 }
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 40px;
  /* color: rgb(134, 24, 161); */
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 1px 2px 5px gold;
  /* font-size: 45px; */
  color: #ffc107;
  /* text-transform: uppercase; */
  /* text-align: center; */
  /* font-weight: 300; */
  /* position: relative; */
  /* text-shadow: 1px 2px 2px #ffbc00; */
  /* font-family: 'Cinzel', sans-serif; */
  /* padding-right: 70px; */
  /* letter-spacing: 2px; */
  /* padding-bottom: 10px; */
  /* padding-top: 50px; */
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5309ff;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}




.video3 img {
  max-width: 100%;
  height: auto;
}

/* 
This is the starting grid for each video with thumbnails 4 across for the largest screen size.
It's important to use percentages or there may be gaps on the right side of the page. 
*/

.video3 {
  background: transparent;
  padding-bottom: 20px;
  width: 23%; /* Thumbnails 4 across */
  margin: 1%;
  float: left;
}
.video3 h4{
  font-size: 18px;
  color: #eeffee;
  font-weight: 600;
  font-family: 'Fahkwang', sans-serif;
}
 /* 
 These keep the height of each video thumbnail consistent between YouTube and Vimeo.
 Each can have thumbnail sizes that vary by 1px and are likely break your layout. 
 */

.video3 figure {
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video3 figure a {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 0;
  }


/* Media Queries - This is the responsive grid. */

@media (max-width: 1024px) {
  .video3 {
    width: 31.333%; /* Thumbnails 3 across */
  }
}

@media (max-width: 600px) {
  .video3 {
    width: 48%; /* Thumbnails 2 across */
  }
}

@media (max-width: 360px) {
  .video3 {
    display: block;
    width: 96%; /* Single column view. */
    margin: 2%; /* The smaller the screen, the smaller the percentage actually is. */
    float: none;
  }
}

/* These are my preferred rollover styles. */

.video3 img {
  width: 100%;
  opacity: 1;
}

.video3 img:hover, .video3 img:active, .video3 img:focus {
  opacity: 0.75;
}

.player2 .contact-box {
background: linear-gradient(rgba(39, 108, 163, 0.5), rgba(2, 21, 34, 0.9)), url(../img) fixed center center;
background-size: cover;
padding: 60px 0;
text-align: center;
border: 15px ridge rgb(28, 124, 153);
}


/* contact us and stores and distributors btn */
.cta-btn2 {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 20px;
  transition: 0.5s;
  border: 2px solid purple;
  color:  rgb(16, 49, 2);
  /* margin-left: 120px; */
}
.cta-btn2:hover {
  background: linear-gradient(rgba(11, 182, 54, 0.2), rgba(0, 0, 0, 0.8));
  border: 2px solid #179b12;
  color: #1ed218;
  box-shadow: 0 0 60px 2px  #3ac072;
}

.cta-btn2:after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border-radius: 30px;
  background-image: linear-gradient( 170deg, rgba(white, 0.3), rgba(white, 0) );
  pointer-events: none;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 90px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 25px 15px;
  box-shadow: -1px 0px 1px 7px #ffc107;
  /* transition: all ease-in-out 0.3s; */
  /* background: #4a4412; */
  background: #190e2d;
  margin-bottom: 25px;
  height: 300px;
  border-radius: 10%;
  border-color: #ff3c3c;
  text-align: center;
  /* border-width: 50px; */
}  

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #ac5419;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us i {
  color:#19b83b;
  font-size: 60px;
}
.why-us .box:hover {
  background: #3ac072;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}


.why-us .animated{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  
}



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

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


.btn-download {
     
  min-width: 80px;
  min-height: 60px;
  /* font-family: 'Red Rose', sans-serif; */
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 400;
  color: #d1d1d1;
  /* background: #84118f; */
  background: linear-gradient(
90deg
, #9c27b0 0%, #ff5722 100%);
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 10px #ffeb3b;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  }

.btn-download::before {
  content: '';
  border-radius: 10px;
  min-width: calc(200px + 12px);
  min-height: calc(60px + 12px);
 
  box-shadow: 0 0 60px rgba(183, 206, 204, 0.911);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
  color: rgb(197, 197, 197);
}

.btn-download:hover, .btn-download:focus {
  color: #e9e9e9;
  transform: translateY(2px);
  font-weight: 600;
  text-shadow: 3px 5px 10px rgb(0, 0, 0);
}

.btn-download:hover::before, .btn-download:focus::before {
  opacity: 1;
}

 .btn-download::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #2bdb66;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.3s infinite;
}

.btn-download:hover::after, .btn-download:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}


/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #18d26e;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}




/* About Us Section
--------------------------------*/
.about {
  background: url("../img/background-image.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 10px 0;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.93);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .cta-btn {
  font-family: "Cinzel", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  /* display: inline-block; */
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  /* border: 2px solid purple; */
  border: 2px solid #2196f3;
  color: rgb(255 213 0);
  margin-right: 40px;
  /* margin-left: 120px; */

  display: flex;
  justify-content: center;
  align-items: center;

}
#about .cta-btn:hover {
  background: linear-gradient(rgba(11, 182, 54, 0.2), rgba(0, 0, 0, 0.8));
  border: 2px solid #179b12;
  box-shadow: 0 0 60px 2px  #3ac072;
}
.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;


}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid #1eb63f;
  border-top: 5px solid #1eb63f;
  transition: .5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid #1eb63f;
  border-bottom: 5px solid #1eb63f;
  transition: .5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-size: 45px;
  color: #ffc107;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-shadow: 1px 2px 2px #ffbc00;
  font-family: 'Cinzel', sans-serif;
  padding-right: 70px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  padding-top: 50px;
  
}

.about .content h1 {
  font-size: 60px;
  color: rgb(134, 24, 161);
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 1px 2px 2px gold;
  font-family: 'Cinzel', sans-serif;
  padding-right: 70px;
  letter-spacing: 2px;
  
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 25px;
  padding-right: 4px;
  color: #0ceb17;
  font-family: 'Kufam', sans-serif;
}

.about .content p:last-child {
  margin-bottom: 0;
}

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


/* Style the button that is used to open and close the collapsible content */
.about .collapsible {
  background-color:transparent;
  color:#179b12;
  width: 100%;
  border: none;
  text-align: left;
  outline: 1px;
  font-size: 20px;
  padding-top: 20px;
  margin-right: 20px;
  text-decoration: underline;
  font-family: 'Kufam', sans-serif;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.about .active, .collapsible:hover {
  background-color:transparent;
}

/* Style the collapsible content. Note: hidden by default */
.about .content1 {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: transparent;
}

.about .content1 h5{
  
  color: #b8b500;
  font-size: 'Red Rose', sans-serif;
}

.about .content1 h6{
  
  color: #ebdc0c;
  font-size: 'Red Rose', sans-serif;
}


/* gallery of pics for the subpages */
.gallery {
  
  background-color: #000000;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-top: 3px solid #454035;
  border-left: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #d21818;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #d21818;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}
/* player information page */
.player h3 {
  /* font-family: "Red Rose", sans-serif; */
  color: #b3fd5e;}
@media (min-width: 768px) {
  .player h3 {
    font-size: 20px;
  }
}

.player p {
  font-family: 'Raleway', sans-serif;
  color: rgb(134, 134, 134);
}
.player i {
  color:#d2cf18;
  font-size: 20px;
  padding: 10px;
}
.player span {
  color: #ff9800;
  font-size: 24px;
}
.player  {
  /* font-family: "Red Rose", sans-serif; */
  /* color:#a7a7a7; */
  /* font-size: 17px; */
  /* text-transform:none; */
  /* padding-bottom: 10px; */
}
.player .player2 img {
  size: 50%;
}
 
.player h6 {
  color:  #cfd218;
}
/* Call To Action Section
--------------------------------*/
#call-to-action2 {
  background: linear-gradient(rgba(0, 142, 99, 0.9), rgba(0, 0, 0, 0.9)), url(../img/background-image.jpeg) fixed center center;
  background-size: cover;
  padding: 20px 0;
}

#call-to-action2 img {
  
  transform: scale(1,1.1);
}
#call-to-action2 .cta-btn:hover {
  background: transparent;
  border: 2px solid #d2188f;
  box-shadow: 0 0 60px 2px  #3ac072;
}

#call-to-action2 {
  background: linear-gradient(rgba(12, 12, 12, 0.93), rgba(0, 0, 0, 0.93)), url(../img/background-image.jpeg) fixed center center;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action2 h3 {
  color: #fee702;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'Cinzel', sans-serif;
  /* text-shadow: 3px, 5px, 15px #000000cc; */
  text-shadow: 3px, 5px, 15px ridge #dc3545;
}

#call-to-action2 p {
  color: #fff;
  font-size: 25px;
  font-family: 'Nanum Gothic', sans-serif;
}

#call-to-action2 .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}


#call-to-action2 img {
  background: #000;
  overflow: hidden;
  height: 280px;
  width: 70%;
  position: relative;
  /* border-radius: 4px 4px 0 0; */
  margin: 0;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #ffc107;
}
  #call-to-action2 img:hover {
    transition: transform .5s;
  }

  

#call-to-action2 img:hover {
  transform: scale(1.4);
  box-shadow: 0 0 60px 2px  #3ac072;
}

#call-to-action2 img:hover::before {
  left: 10px;
  top: 10px;
}

#call-to-action2 img:hover::after {
  right: 10px;
  bottom: 10px;
}




/* call to action  */
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.9), rgba(0, 0, 0, 0.9)), url(../img/background-image.jpeg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'Cinzel', sans-serif;
}

#call-to-action a {
  color: white;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
}  

#call-to-action p {
  color: #fff;
  font-size: 25px;
  font-family: 'Nanum Gothic', sans-serif;
}



 #call-to-action img:hover {
  transform: scale(1.2);
  transition: ease ease-in-out .4s;
}

#call-to-action img:hover::before {
  left: 10px;
  top: 10px;
}

#call-to-action img:hover::after {
  right: 10px;
  bottom: 10px;
} 


#call-to-action .animated{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  
}



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

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

#call-to-action .cta-btn:hover {
  background: transparent;
  border: 4px solid #1ed218;
  box-shadow: 0 0 60px 2px  #3ac072;
}


#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.5), rgba(0, 0, 0, 0.1)), url(../img/background-image.jpeg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}



#call-to-action p {
  color: #fff;
  font-size: 25px;
  font-family: 'Nanum Gothic', sans-serif;
}

#call-to-action .cta-btn {
  font-family: "Red Rose", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  text-align: center;
  border: 5px solid rgb(198, 33, 231);
  color: rgb(15, 218, 59);
  margin-bottom: 20px;
}

#call-to-action .cta-btn:hover {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.8));
  border: 2px solid #1ed218;
  box-shadow: 0 0 60px 2px  #3ac072;
}


#call-to-action a:hover {
  color: rgb(76, 230, 122);
  text-shadow: 2px 2px 15px rgb(151, 65, 231);
}

#call-to-action3 {
  background: linear-gradient(rgba(106, 161, 146, 0.9), rgba(73, 73, 73, 0.9)), url(../img/fruit/background-image.jpeg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
  border: 15px ridge #dc3545;
}

#call-to-action3 .sweeps{
  text-align: left;
}

#call-to-action3 h3 {
  /* color: #fff; */
  font-size: 40px;
  font-weight: 700;
  /* letter-spacing: 3px; */
  font-family: 'Cinzel', sans-serif;
  text-shadow: 1px 2px 3px rgb(0 0 0 / 80%);
}
@media (max-width: 980px) {
  #call-to-action3 h3 {
    /* color: #fff; */
    font-size: 30px;
    font-weight: 700;
    /* letter-spacing: 3px; */
    font-family: 'Red Rose', sans-serif;
    text-shadow: 1px 2px 3px rgb(15, 230, 51);
  }
}

#call-to-action3 p {
  color: #fff;
  font-size: 25px;
  font-family: 'Nanum Gothic', sans-serif;
}

#call-to-action3 .cta-btn {
  font-family: "Red Rose", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.5s;
  margin: 50px;
  border: 5px solid rgb(198, 33, 231);
  color: rgb(15, 218, 59);
  margin-bottom: 20px;
}

#call-to-action3 .cta-btn:hover {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.8));
  border: 2px solid #1ed218;
  box-shadow: 0 0 60px 2px  #3ac072;
}

#call-to-action3 a {
  color: #1ed218;
}

#call-to-action3 a:hover {
  color: rgb(245, 229, 9);
  text-shadow: 1px 2px 10px rgb(151, 65, 231);
}

#call-to-action3 img:hover {
  transform: scale(1.2);
  transition: ease ease-in-out .4s;
}

#call-to-action3 img:hover::before {
  left: 10px;
  top: 10px;
}

#call-to-action3 img:hover::after {
  right: 10px;
  bottom: 10px;
} 


#call-to-action3 .animated{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  
}



/* registration form background */
#call-to-action4 {
  background: #9c27b057;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
  border: 15px ridge #ff9800;
}

#call-to-action4 .sweeps{
  text-align: left;
}

#call-to-action4 h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: 'Cinzel', sans-serif;
  text-shadow: 1px 2px 3px #e91e63;
}
@media (max-width: 980px) {
  #call-to-action4 h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Red Rose', sans-serif;
    text-shadow: 1px 2px 3px rgb(15, 230, 51);
  }
}

#call-to-action4 p {
  color: #fff;
  font-size: 25px;
  font-family: 'Nanum Gothic', sans-serif;
}

#call-to-action4 .cta-btn {
  font-family: "Red Rose", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.5s;
  margin: 50px;
  border: 5px solid rgb(198, 33, 231);
  color: rgb(15, 218, 59);
  margin-bottom: 20px;
}

#call-to-action4 .cta-btn:hover {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.8));
  border: 2px solid #1ed218;
  box-shadow: 0 0 60px 2px  #3ac072;
}

#call-to-action4 a {
  color: #1ed218;
}

#call-to-action4 a:hover {
  color: rgb(245, 229, 9);
  text-shadow: 1px 2px 10px rgb(151, 65, 231);
}

#call-to-action4 img:hover {
  transform: scale(1.2);
  transition: ease ease-in-out .4s;
}

#call-to-action4 img:hover::before {
  left: 10px;
  top: 10px;
}

#call-to-action4 img:hover::after {
  right: 10px;
  bottom: 10px;
} 


#call-to-action4 .animated{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  
}


#call-to-action4 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#call-to-action4  .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#call-to-action4  .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#call-to-action4  .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}



#call-to-action4  .php-email-form .sent-message {
  color: rgb(179, 179, 179);
  font-size: 18px;
  font-family: 'Red Rose', sans-serif;
  color:#000000;
}
/* Bootstrap Carousel */

.items {
  width: 100%;
  margin: 0px auto;
  margin-top: 50px
}

.slick-slide {
  margin: 10px
}

.slick-list {
  /* position: relative;
  display: block; */
  overflow: unset!important;
  /* margin: 0;
  padding: 0; */
}

.slick-next, slick-arrow {
  color: yellow;
}
.slick-slide img {
  font-size: 50px;
  border: 0px solid rgb(230, 177, 33);
 
  width: 150%;
}

.slick.slide img {
  transition: all ease-in-out 0.4s;
}

.slick.slide:hover img {
  transform: scale(1.10);
}
/* End of Bootstrap Carousel by Liz found on bbbootstrap.com/snippets */



/* Portfolio Section
--------------------------------*/
#portfolio {
  background: url("../img/background-image.jpeg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#portfolio::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(3, 3, 3, 0.9);
  z-index: 9;
}

#portfolio .container {
  position: relative;
  z-index: 10;
}

#portfolio .playerinformation h3 {
color: rgb(212, 0, 255);
font-family: 'Red Rose';
font-size: 20px;
}

#portfolio .player ul {
list-style: none;
padding: 0;
}

#portfolio .playerinformation ul li {
  padding-bottom: 10px;
}

#portfolio .playerinformation ul i {
  font-size: 25px;
  padding-right: 4px;
  color: #1eb63f;
  font-family: 'Kufam', sans-serif;
}


#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  border-radius: 25px;
  text-transform: uppercase;
  background: #ffc107;
  margin-bottom: 5px;
  /* transition: all 0.3s ease-in-out; */
  /* font-family: 'Kufam', sans-serif; */
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #300505;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  /* border-radius: 4px 4px 0 0; */
  margin: 0;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #ffc107;
  /* border-radius: 50% 50% 50% 50%; */
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: ease ease-in-out .9s;
  
}

#portfolio .portfolio-item img:hover {
  transform: scale(1.2);
  transition: ease ease-in-out .4s;
}

#portfolio .portfolio-item img:hover::before {
  left: 10px;
  top: 10px;
}

#portfolio .portfolio-item img:hover::after {
  right: 10px;
  bottom: 10px;
}



#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 50px;
  height: 50px;
  background: rgb(19, 136, 3);
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
  padding-top: 10px;
  font-size: 30px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
  background: #1eb63f;
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
  color:#9523ac;
}


/* beginning of the youtube portfolio icon */
#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-youtube {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 50px;
  height: 50px;
  background: rgb(19, 136, 3);
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-youtube i {
  padding-top:15px;
  font-size: 30px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-youtube:hover {
  background: #1eb63f;
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-youtube:hover i {
  color:#9523ac;
}

/* end of youtube icon for portfolio */


#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-youtube {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 22px);
}

#portfolio .portfolio-item figure:hover .link-youtube {
  opacity: 1;
  right: calc(50% - 22px);
}

#portfolio .portfolio-item .portfolio-info {
  background: transparent;
  text-align: center;
  padding: 30px;
  height: 50px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
  color: red;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: rgb(251 245 61);
  font-family: 'fantasy',sans-serif;
  
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #ffeb3b;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* Portfolio Details
--------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #18d26e !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/* Clients Section
--------------------------------*/


/* Testimonials Section
--------------------------------*/


/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #18d26e;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #18d26e;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #18d26e;
}

#contact .php-email-form button[type="submit"] {
  background: #18d26e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #13a456;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #f0d600;
  font-size: 14px;
  font-family: 'Cinzel',sans-serif;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
 
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

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

#footer .footer-top .social-links a:hover {
  background: #18d26e;
  color:purple;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: rgb(38, 189, 33);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #18d26e;
 
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display:inline-block;
}

#footer .footer-top .footer-links ul i {
  padding-right: 20px;
  padding-left: 20px;
  /* color: rgb(32, 167, 72); */
  font-size: 40px;
  
}

#footer .fab {
  margin-right: 20px;
}
#footer .footer-top ul i:hover {
  opacity: 0.4;
  transition: ease ease-in-out .9s;
  
}

#footer .footer-top ul i:hover {
  transform: scale(1.2);
  transition: ease ease-in-out .4s;
}

#footer .footer-top ul i:hover::before {
  left: 10px;
  top: 10px;
}

#footer .footer-top ul i:hover::after {
  right: 10px;
  bottom: 10px;
}
#footer .footer-top .footer-links ul li {
  
  padding: 10px 0;
  display: inline-block;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffeb3b;
}

#footer .footer-top .footer-links ul a:hover {
  color: #18d26e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
