:root {
  --dark-red: #9d0208;
  --red: #ef233c;
  --white: #edf2f4;
  --black: #2b2d42;
  --yellow: #FFB959;
}

body {
  background-color: var(--white);
  color: var(--black);
  
}

a {
    color: var(--red);
    text-decoration: none;
}

a:hover {
    color: var(--black);
}

/* Nav Bar */
.main-menu {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.main-menu .nav-link {
  color: var(--black) !important;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.main-menu .nav-item {
  transition: all 0.3s ease-out;
}

.main-menu .nav-item:hover {
  background-color: var(--black);
  border-radius: 15px;
}

.main-menu .nav-item:hover > a {
  color: #fff !important;
}

/*Download Box*/
.input-wrapper {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  height: 65px;
}

.input-wrapper input {
    width: calc(100% - 150px);
    outline: none;
    border: none;
    height: 65px;
    background-color: transparent;
    padding: 0 20px;
}

.customBtn {
    background-color: var(--red);
    outline: none;
    border: none;
    padding: 16px 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    border-radius: 15px;
}

.customBtn:hover, .customBtn:active, .customBtn:focus {
    background-color: var(--black);
}

.download-options {
  font-weight: 600;
}

.track-info span {
  padding: 5px 10px;
  background: #FFB959;
  border-radius: 4px;
}

.download-link a {
  padding: 5px 10px;
  background: #EF233C;
  border-radius: 4px;
  color: #fff;
}

.download-link a:hover {
  background-color: var(--black);
}

/*Headings*/
.header {
    border-bottom: 4px solid var(--yellow);
}

.faq_header {
    background-color: var(--yellow);
    border-radius: 20px;
    padding: 5px;
}

/*Key Features*/
.key_features .img-holder {
    background-color: #efe5d7;
}

.key_features .card {
  /* width: calc(100% - 20%); */
  background-color: var(--yellow);
}

/*Accordion */
.accordion {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 5px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 28px;
    transition: 0.4s;
    font-weight: 600;
    border-bottom: 4px solid var(--yellow);
  }
  
  
  .accordion:after {
    content: '\02B9D';
    color: var(--yellow);
    font-weight: bold;
    float: right;
    margin-left: 5px;
    border-left: 4px solid var(--yellow);
    padding-left: 5px;
    padding-right: 30px;
  }
  
  .active:after {
    content: "\02B9F";
  }
  
  .panel {
    padding: 5px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-weight: 400;
  }

  .alert-custom {
      background-color: #F7DFBB;
      border-color: #dbcebc;
  }
  .tutorial{
    width: 100%;
    /* margin: 5px 5px; */
    padding: 10px 10px;
    border: none;
    border-color: white;
    box-shadow: 0px 4px 4px rgba(32, 28, 28, 0.25);
    text-align: center;

  }

  /*Footer*/
  footer {
    background: #EEEEEE;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    color: #E55106;
  }

  footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  footer li {
      display: inline;
      padding: 5px 10px;
  }

  footer li:not(:last-child) {
      border-right: 2px solid #fff;
  }

  footer a {
      color: #E55106;
  }

@media (min-width: 992px) {
  body {
    font-size: 18px;
  }
  /*Nav Bar*/
  .main-menu .nav-item,
  .main-menu {
    height: 60px;
  }

  /*Download Box*/
  .url_box {
      width: 75%;;
  }

  .faq_header {
    padding: 5px 70px;
  }

  footer li {
    padding: 10px 60px;
  }

  .video_details {
    width: 90%;
  }
}

