.yellow {
  background-color: #fcd232;
}
.red {
  background-color: #ff1300;
}
.size {
  font-size: 11px;
}

.black {
  color: black !important;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 0 !important;
}
/* ____navbar__________ */

.logo {
  width: 50px;
  height: 50px;
}
.navbar ul li {
  position: relative;
}
.navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0%;
  height: 3px;
  background-color: #fcd232;
  transition: all 0.3s linear;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  width: 0%;
  height: 3px;
  background-color: #fcd232;
  transition: all 0.3s linear;
}
.navbar .nav-link:hover::before {
  width: 100%;
  background-color: #ff1300;
}
.navbar .nav-link:hover::after {
  width: 100%;
  background-color: #ff1300;
}
.navbar .nav-item a:hover {
  font-style: italic;
  color: #ff1300 !important;
  transition: all 0.5s;
}
.navbar .vraboti:hover {
  background-color: white;
  color: #ff1300 !important;
  transition: all 0.5s;
}
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  transition: 0.4s;
}

.overlay-content {
  position: relative;
  top: 80px;
  left: 20px;
  width: 100%;
  text-align: left;
  line-height: 2;
}

.overlay a {
  margin: 8px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}
.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 45px;
}

/* _________banner_____________ */

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner1,
.banner2,
.banner3,
.banner4 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner1 img,
.banner2 img,
.banner3 img,
.banner4 img {
  width: 120%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoom-out 3s linear infinite;
}
@keyframes zoom-out {
  100% {
    width: 100%;
  }
}
.title {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: white;
  text-shadow:4px 4px 8px black; 
  
}
.title h1 {
  font-size: 140px;
  font-family: "Fraunces", serif;
  
}
.banner1 {
  animation: slide1 12s linear infinite;
}
.banner2 {
  animation: slide2 12s linear infinite;
}
.banner3 {
  animation: slide3 12s linear infinite;
}
.banner4 {
  animation: slide4 12s linear infinite;
}

@keyframes slide1 {
  0% {
    visibility: visible;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes slide2 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes slide3 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes slide4 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

/* ______checkbox____________ */

.filter {
  padding: 1.3rem;
  background-color: black;
  color: white;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.filter label {
  cursor: pointer !important;
}
.fa-check-circle {
  color: black;
  font-size: 30px;
}
#filter-coding,
#filter-design,
#filter-marketing {
  display: none;
}
.filter-border {
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}
.active {
  background-color: #ff1300;
  color: black;
}

/* _________cards__________________________ */

.card {
  border-radius: 20px;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
  transition: transform 0.5s;
}
.card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
}
.card-img-top {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.date {
  font-size: 13px;
}
.card-body .btn {
  background-color: #ff1300;
  color: white;
}

#loadmore {
  margin: 30px auto 0px;
  display: table;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  color: white;
  border-radius: 4px;
  background-color: #ff1300;
}

/* _______footer_____________ */

.fa-heart {
  color: #ff1300;
}
.bg-black {
  background-color: black;
}

/* ______varboti_____________ */

input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.select-box {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.select-box .options-container {
  background: white;
  color: black;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  order: 1;
}
.selected {
  font-size: 15px;
  background: white;
  border-radius: 4px;
  margin-bottom: 15px;
  color: black;
  position: relative;
  order: 0;
}
.selected::after {
  content: " \f107";
  font-family: "FontAwesome";
  color: black;
  font-size: 24px;
  position: absolute;
  height: 100%;
  width: 32px;
  right: 1px;
  top: 3px;
  transition: all 0.4s;
}
.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
}
.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top: -5px;
}
.select-box .option,
.selected {
  padding: 7px 12.5px;
  cursor: pointer;
}
.select-box .option:hover {
  background: rgb(233, 233, 233);
}
.select-box .option {
  border-bottom: 1px solid lightgray;
  padding: 10px 24px;
}
.select-box label {
  cursor: pointer;
  width: 100%;
  line-height: 10px;
}
.select-box .option .radio {
  display: none;
}

/* ______media________ */

@media (min-width: 992px) {
  .title h1 {
    font-size: 100px;
  }
  .banner {
    height: 650px;
  }
}
@media (max-width: 992px) {
  .logo {
    width: 35px;
    height: 35px;
  }
  .title h1 {
    font-size: 70px;
  }
  .overlay a {
    font-size: 25px;
  }
  .banner {
    height: 400px;
  }

  .filter-border {
    border-left: none;
    border-right: none;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
  }
  .list-element {
    display: none;
  }
  .list .list-element:nth-child(1) {
    display: block;
  }
  .list .list-element:nth-child(2) {
    display: block;
  }
  .list .list-element:nth-child(3) {
    display: block;
  }
  .list .list-element:nth-child(4) {
    display: block;
  }
  .list .list-element:nth-child(5) {
    display: block;
  }
  .list .list-element:nth-child(6) {
    display: block;
  }
}

@media (max-width: 600px) {
  .banner {
    height: 210px;
  }
  .title h1 {
    font-size: 40px;
  }
  h2.h1 {
    font-size: 35px;
  }
  .overlay a {
    font-size: 20px;
  }
  .filter {
    padding: 0.7rem;
    font-size: 15px;
  }
  .fa-check-circle {
    padding-left: 10px;
  }
  .card-body span {
    font-size: 13px;
  }
  .card-body p {
    font-size: 13px;
  }
  .title2 {
    font-size: 30px;
  }
  .card {
    box-shadow: none;
    transition: none;
  }
  .card:hover {
    transform: none;
    box-shadow: none;
  }
  .footer p {
    font-size: 15px;
  }
}
