



/*----------------------------
         Add CSS
----------------------------*/
@import 'font-awesome/css/font-awesome.css';
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');
@font-face {
  font-family: 'nyala';
  src: url("../css/font-awesome/fonts/nyala.ttf");
}






.accordion {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .accordion-item {
    background-color: transparent;
  }
  .accordion-item__button {
    border: 0;
    display: block;
    background: #fff;
    width: 100%;
    box-shadow: 0px 0px 10px gray;
    color: #fff;
    text-align: left;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
  }
  .accordion-item__button:after {
    content: "+";
    float: right;
    font-size: 20px;
    right: 0;
    color: black;
    font-weight: 700;
  }
  .accordion-item__button.active, .accordion-item__button:hover {
    background-color: #ececec;
    border-bottom: 1px solid #8080801f;
  }
  .accordion-item__button.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .accordion-item__button.active:after {
    content: "-";
  }
  .accordion-item__content {
    overflow: hidden;
    max-height: 0;
    transition: all 0.4s ease-in-out;
    background-color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .accordion-item__content.active {
    display: block;
  }
  .accordion-item__content p {
    padding: 1rem;
  }

.according_heading{
    color: black;
    font-size: 18px;
    font-weight: 700;
}


.your-transfer-boxa {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    box-shadow: 0px 2px 7px 1px #adacac;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
















#cont {
  user-select: none;
  /* margin: 0px auto; */
  padding: 0px 4px 0px 4px;
  background: #fff;
  /* height: 360px; */
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
#cont:active {
  cursor: e-resize;
}

#slider-container {
  width: 300%;
  margin: 0 auto;
}

#right-btn,
#left-btn {
  font-size: 26px;
  color: #1b2e5d;
  position: absolute;
  top: 8px;
  transition: all 0.4s ease-out;
  cursor: pointer;
  border-radius: 50%;
  height: 40px;
  line-height: 0.9em;
}

#right-btn {
  right: 3.4%;
  top: 69px;
  z-index: 99999;
  right: 0px;
}
#right-btn:hover {
  color: #2ecdff;
}
#left-btn {
  right: 8%;
}
#left-btn:hover {
  color: #2ecdff;
}

.item-container {
    border-radius: 8px;
    margin: 0 10px;
    border: 1px solid gray;
    overflow: hidden;
    width: 354px;
    box-shadow: 0px 0px 10px grey;
    display: inline-block;
    background: #ffffff;
    transition: all 0.2s ease-out;
    cursor: pointer;
}


.item-image-wrapper {
  height: 180px;
  width: 96%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 10px black;
  border-radius: 2px;
  margin: auto;
  background: blue;
}
.item-image-wrapper:before {
  content: "";
  position: absolute;
  background-color: rgba(250, 250, 250, 0.4);
  width: 380px;
  height: 100px;
  transform: translate(106px, -116px) rotateZ(30deg);
}

.item-image-wrapper:hover:before {
  transform: translate(-180px, 198px) rotateZ(30deg);
  transition: 0.4s ease-in-out;
  z-index: 99;
}
.item-image-wrapper img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-out;
}

.item-image-wrapper img:hover {
  transform: scale(1.2) rotateZ(-6deg);
}

.item-title {
  color: #0107e1;
  font-family: arial;
  font-size: 1.8em;
  margin: 20px 10px;
}

.item-desc {
  margin: 0 10px;
  color: #f1f0f0;
  font-weight: bold;
  font-family: calibri;
}

.item-stars {
  float: left;
  margin: 24px 14px;
  color: orange;
}

.item-link {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  background-color: #0a4977;
  float: right;
  margin: 10px;
  padding: 10px 16px;
  border-radius: 6px;
}

.item-link:hover {
  color: #eee;
  background-color: #01355a;
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
  position: relative;
  left: -1053px;
  right: 0px;
  top: 150%;
  z-index: 99999;
}

.bg_div{
  width:100%;
  background-color: pink;

}