#hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: #fff;
}
#hero .bg {
    background: rgba(25, 25, 25, 0.89);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#hero .container {
    position: relative;
    z-index: 2;
}
#hero-search-form {
    width: 100%;
    height: 90px;
    background: #fff;
    border: 1px solid #C9C9C9;
    border-radius: 5px;
    position: relative;
}
#hero-search-form input {
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 300;
}
#hero-search-form input::placeholder {
  color: #848484;
  opacity: 1; /* Firefox */
}

#hero-search-form input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #848484;
}
#hero-search-form button {
    position: absolute;
    height: 100%;
    width: 90px;
    right: 0;
    font-size: 25px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #CF1D1D;
    color: #fff;
}
#hero .row{
    align-items: center;
}

#hero .url{
    color: #fff;
    font-weight: 300;
}
#hero h1{
    font-size: 45px;
    line-height: 54px;
}
#hero p{
    color: #D6D6D6;
    font-weight: 300;
}
#hero .btn{
    background: transparent linear-gradient(180deg, #DB3636 0%, #DB3636 45%, #CF1D1D 46%, #CF1D1D 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
    height: 90px;
    font-size: 26px;
    font-weight: 800;
    margin-top: 20px;
}
#hero .btn:hover{
    color: #fff;
    border-color: #fff;
}
#hero .rating{
    display: flex;
    margin: 15px 0;
    align-items: center;
}
#hero span{
    margin-left: 10px;
    font-weight: 600;
    font-size: 22px;
}
#hero .star{
    height: 20px;
    width: 20px;
}
#hero .star.selected{
    color: #CF1D1D;
}

@media(max-width: 767px) {
    #hero {
        padding: 80px 0;
    }
}

#results{
    padding: 50px 0; 
 }
 #results a{
     text-decoration: none;
     color: #1A2335;
 }
 #results .url{
     color: #CF1D1D;
 }
 #results .total{
     font-size: 18px;
     font-weight: 600;
 }
 #results .total span{
     color: #CF1D1D;
 }
 .review{
     border: 1px solid #E8E8E8;
     border-radius: 15px;
     padding: 20px;
     margin-bottom: 30px;
 }
 .review .star{
     height: 20px;
     width: 20px;
     color: #C9C9C9;
 }
 .review .star.selected{
     color: #CF1D1D;
 }
 .review .rating{
     display: flex;
     margin: 15px 0;
     align-items: center;
 }
 .review .rating span{
     margin-left: 10px;
     font-weight: 600;
     font-size: 16px;
 }


 @media(max-width: 1200px){
    #hero-search-form input {
        font-size: 18px;
    }
    #hero h1{
        margin-bottom: 50px;
    }
 }