.search-container {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom: 0;
    width:100%;
    overflow-y: auto;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    background: rgba(255,255,255,1);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.search-container.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

.search-heading {
    margin-top: 2.9rem;
    text-align: center;
}
.search-heading h1.title {
    color: #444;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.search-heading h2.text {
    color: #666;
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0.6rem;
    width: 600px;
}

.search-area {
    margin-top: 2.5rem;
    text-align: center;
}
.search-area .input {
    display: inline-block;
}
.search-area .input input {
    background: #fff none repeat scroll 0 0;
    border: 0 none;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 600;
    height: 55px;
    padding: 0 1.5rem;
    width: 500px;
}

.search-area .button {
    display: inline-block;
    margin-left:0.5rem;
}
.search-area .button input {
    background: #e30909 none repeat scroll 0 0;
    border: 0 none;
    color: #fff;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 54px;
    padding: 0 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
}
.search-area .button input:hover {
    background: #2154a5 none repeat scroll 0 0;
}
.search-list {
    float: left;
    margin-top: 3rem;
    width: 100%;
}
.search-list ul {}
.search-list ul li {
    float: left;
    margin-bottom: 2rem;
    padding: 0.7rem;
    width: 25%;
}
.search-list ul li a {
    position: relative;
}
.search-list .heading {
    position: relative;
    overflow:hidden;
}
.search-list .photo {
    overflow: hidden;
}
.search-list .photo img {
    height: 175px;
    object-fit: cover;
    width: 100%;
    transition: all 3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -webkit-transition: all 3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -moz-transition: all 3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.search-list ul li a:hover .photo img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.search-list .tag {
    position: absolute;
    right: 0;
    top: 10px;
}
.search-list .tag span {
    background: #d70000 none repeat scroll 0 0;
    color: #fff;
    display: block;
    font-size: 11px;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
}

.search-list .description {
    background: #f3f3f3 none repeat scroll 0 0;
    border-top: 6px solid #e30909;
    display: table;
    height: 65px;
    padding: 0 1.2rem;
    width: 100%;
    transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.search-list ul li a:hover .description {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
.search-list .description h1.title {
    color: #444;
    display: table-cell;
    font-family: "Raleway",sans-serif;
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
}
.search-list .description h2.text {
    color: #666;
    display: none;
    font-size: 12px;
    line-height: 1.4;
    max-height: 34px;
    overflow: hidden;
}

.search-close {
    position: absolute;
    right: 40px;
    top: 40px;
}
.search-close a {
    border-bottom: 3px solid #e30909;
    color: #e30909;
    font-family: "Raleway",sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 7px;
}


@media only screen and (max-width: 767px) {
.search-close {
    right: 13px;
    top: 13px;
}
.search-heading {
    margin-top: 4.5rem;
}
.search-heading h2.text {
    width: 100%;
}
.search-area .button {
    display: none;
}
.search-area .input {
    width: 100%;
}
.search-area .input input {
    width: 100%;
}
}
@media only screen and (min-width:320px) and (max-width:479px) {


.search-list ul li {
    float: left;
    margin-bottom: 2rem;
    padding: 0;
    width: 100%;
}
.search-list .photo img {
    height: auto;
}

}

@media only screen and (min-width:390px) and (max-width:479px) {}

@media only screen and (min-width:479px) and (max-width:767px) {
.search-list ul li {
    padding: 0.4rem;
    width: 50%;
}
}

@media only screen and (min-width:600px) and (max-width:767px) {}

@media only screen and (min-width: 767px) and (max-width: 991px) {
.search-list ul li {
    padding: 0.4rem;
    width: 33.3%;
}
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {}

@media only screen and (min-width : 1824px) {}


