/*
| Template created by Kadir Hanoglu
| Author: Dört Bilişim
| URL: https://dortbilisim.com
| Create Date: 16.03.2022
| Last Update: 24.03.2022
| File: home-first-section.css
*/

.home-top-section {
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* Home Search Start */

.home-search-box {
    position: relative;
    display: flex;
    width: 50%;
    height: auto;
    margin: -50px auto 20px auto;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .5s all ease;
}

.loaded .home-search-box {
	margin: 20px auto;
	visibility: visible;
	opacity: 1;
	transition: 1s all ease 1s;
}

.home-search-form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-search-form-input {
    width: 100%;
}

.home-search-form-input input {
	background-color: #fff;
    width: 100%;
    padding: 20px 35px;
    border: 0;
	border-radius: 50px;
    font-size: 1em;
}

.home-search-form-input input::placeholder {
	color: #d0d5db;
	font-style: italic;
}

#home-search-result {
	background-color: #fff;
	position: absolute;
	width: 90%;
	max-height: 380px;
	overflow: hidden;
    padding: 5px;
    font-size: 0.9em;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#home-search-result .scroll {
    max-height: 480px;
}

.home-search-result {
    background-color: #fafafa;
    display: flex;
    align-content: center;
    align-items: center;
    border-radius: 5px;
	padding: 8px 10px;
}

.home-search-result:nth-child(odd) {
    background-color: #fff;
}

.home-search-result:hover {
    background-color: #f5f5f5;
}

.home-search-result-picture {
    width: 12%;
}

.home-search-result-picture img {
	border-radius: 3px;
}

.home-search-result-text {
    width: 70%;
    padding: 2px 10px;
    line-height: 1.4em;
}

.home-search-result-text > span {
	display: none;
}

.home-search-result:hover a {
    text-decoration: underline;
}

.home-search-result-text > a {
    display: block;
    font-weight: 400;
}

.home-search-result-text div > * {
    display: block;
    font-size: 0.85em;
    color: #d0d5db;
    font-style: normal;
    margin: 3px 0;
}

/* Home Search End */

@media screen and (max-width: 480px){

}

@media screen and (min-width: 481px) and (max-width: 768px){

}

@media screen and (min-width: 769px) and (max-width: 1024px){

}

@media screen and (min-width: 1025px) and (max-width: 1280px){

}

@media screen and (min-width: 1281px) and (max-width: 1366px){

}

@media screen and (min-width: 1367px) and (max-width: 1440px){

}

@media screen and (min-width: 1441px) and (max-width: 1600px){

}