:root {
  --theme-color: #f2921d;
  --theme-hover: #f27127;
  --comomon-hover: #f2921d;
  --text-color: #2c2c2c;
  --base-bg: #038c8c;
  --base-font: "Poppins", sans-serif;
  --attractive-font: "Yanone Kaffeesatz", sans-serif;
  --base-hot-color: #bf2441;
  --white: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--base-font);
  font-size: 14px;
}
body {
  font-size: 16px;
  background-image: url(../images/bg-body.jpg);
    background-size: cover;
    background-repeat: no-repeat; /* Prevents repeating */
    background-position: center center;
    backdrop-filter: blur(1px);
}
.main {
  max-width: 600px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: var(--text-color);
  transition: 0.5s all ease-in-out;
}
a:hover {
  color: var(--theme-hover);
}
section {
  padding: 30px 0;
}
header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: var(--white);
}
header navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
a:focus,
.btn:focus,
.form-control:focus {
  outline: 0;
  box-shadow: 0 !important;
}

navbar .logo a {
  font-family: var(--attractive-font);
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--base-hot-color);
}

.jumbotron .main-heading {
  font-size: 24px;
  color: var(--theme-color);
  text-transform: capitalize;
  margin-bottom: 10px;
}
.jumbotron .support-txt {
  margin-bottom: 10px;
}
.btn {
  min-width: 80%;
}
.btn-basic {
  position: relative;
  padding: 10px 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  color: var(--white);
  background: var(--theme-color);
}
.btn-basic:hover {
  color: var(--white);
}
.btn-hover {
  position: relative;
  z-index: 1;
}
.btn-hover::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--theme-hover);
  transform: scaleX(0);
  z-index: -1;
  transform-origin: left;
  transition: 0.5s all;
}
.btn-hover:hover::before {
  transform: scaleX(1);
}
.copyright {
  text-align: center;
  padding: 10px;
  background: var(--base-bg);
  color: var(--white);
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 1px;
}
.video-wrapper {
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  box-shadow: 0 0 8px #e8e8e8;
  background: var(--white);
}
.single-video-box {
  position: relative;
  display: block;
}
.img-wrapper {
  position: relative;
  display: block;
}
.img-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.3;
}
.play-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px;
  width: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--white);
  animation: bordercolor 10s infinite linear;
}
.play-icon svg {
  height: 20px;
  width: 20px;
  animation: playsvg 10s infinite linear;
}
@keyframes playsvg {
  0% {
    fill: var(--theme-color);
  }

  20% {
    fill: var(--base-hot-color);
  }

  40% {
    fill: var(--base-bg);
  }

  60% {
    fill: var(--theme-hover);
  }

  80% {
    fill: var(--comomon-hover);
  }

  100% {
    fill: var(--base-hot-color);
  }
}
@keyframes bordercolor {
  0% {
    border-color: var(--theme-color);
  }

  20% {
    border-color: var(--base-hot-color);
  }

  40% {
    border-color: var(--base-bg);
  }

  60% {
    border-color: var(--theme-hover);
  }

  80% {
    border-color: var(--comomon-hover);
  }

  100% {
    border-color: var(--base-hot-color);
  }
}
.video-title {
  font-size: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  text-align: justify;
}
.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.section-page-heading {
  background: var(--base-bg);
  color: var(--white);
}

.video-title-single {
  font-size: 14px;
  margin-bottom: 20px;
}
.video-play-box {
  width: 100%;
  border: 1px solid var(--base-bg);
}
.subscribed-area {
  min-height: 350px;
}
.subscribed-area img {
  height: 120px;
  margin-bottom: 20px;
}
.btn-check:focus+.btn, .btn:focus {
  box-shadow: none !important;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--theme-hover);
}
.mid-area {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-1 p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.confirm-area p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.confirm-area p .selected-pack {
  color: var(--base-hot-color);
  font-weight: 800;
  letter-spacing: 2px;
  margin-left: 5px;
  display: inline-block;
}
.btn-confirm {
  background: var(--base-hot-color);
  padding: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.error-area img {
  height: 120px;
  margin-bottom: 20px;
}
.error-area h1 {
  font-size: 50px;
  color: var(--base-hot-color);
  font-weight: 700;
  letter-spacing: 6px;
}
.error-area p {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
}
.caption {
  margin: 0;
  padding: 5px 0;
  background: #f2921d;
  color: #fff;
}
.table {
  background: var(--white);
}
.table tr {
  border: 1px solid var(--theme-color);
  background: var(--white);
}
.btn-unsub {
  color: #fff;
  background: var(--base-hot-color);
  padding: 5px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .table {
    border: 0;
  }

  .table caption {
    font-size: 1.3em;
  }
  
  .table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .table tr {
    border-bottom: 3px solid var(--theme-color);
    display: block;
    margin-bottom: .625em;
  }
  
  .table td {
    border-bottom: 1px solid var(--theme-color);
    display: block;
    font-size: 12px;
    text-align: right;
    font-weight: 600;
  }
  
  .table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .table td:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 576px) {
  .jumbotron .main-heading {
    font-size: 18px;
}
  .content-area [class*="col-"]:nth-child(odd), .related-videos [class*="col-"]:nth-child(odd) {
    padding-right: 5px;
  }
  .content-area [class*="col-"]:nth-child(even), .related-videos [class*="col-"]:nth-child(even) {
    padding-left: 5px;
  }
}
@media (max-width: 425px) {
  .play-icon {
    top: 5px;
    left: 5px;
    height: 20px;
    width: 30px;
  }
  .play-icon svg {
    height: 15px;
    width: 15px;
  }
  .video-title {
    font-size: 12px;
  }
}
