
@font-face {
 font-family: "SairaSemiCondensed";
 src: url("./font/SairaSemiCondensed-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SairaSemiCondensed";
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(19, 12, 3, 0.72)), url("kuruyemis-m3.jpg");
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
  background-attachment: initial;
  background-position: bottom;
  background-size: cover;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
}

.container .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    max-width: 100%;
    height: 160px;
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .card:hover {
    height: 160px;
}

.container .card .img-box {
  position: absolute;
  top: 131px;
  width: 30%;
  height: 38%;
  background: #333;
  border-radius: 40px 0 0 15px;
  overflow: hidden;
  transition: 0.5s;
}

.container .card:hover .img-box {
    top: -33px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    height: 40%;
}

.container .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 109%;
    height: 100%;
    object-fit: cover;
}

.container .card .content {
    position: absolute;
    top: 195px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.container .card:hover .content {
    top: 95px;
    height: 250px;
}

.container .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr);
}

.container .card .content p {
   color: #fff !important;
   text-shadow: 3px 1px 5px #000;
}

.container .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: var(--clr);
    color: white;
    font-weight: 500;
}

.container .card .content a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .container .card {

		width: 200px;
		border-radius: 15px;
		height: 100px;
    }

    .container .card .img-box {
		top:68px;
		width: 150px;
		border-radius: 10px;
		height: 68px;
    }
	
    .container .card .content {
        top: 84px;
    }
	
    .container .card .content p {
        font-size: 0.8rem;
    }

    .container .card .content a {
        font-size: 0.9rem;
    }
	
	.container .card:hover .content{
		top: 48px;
	}
	
	.dilseciniz{
		margin-top: 52px !important;
		font-size: 1rem !important;
		width: 330px !important;
		text-align: center !important;
	}
	
	.butongenislet{
		width: max-content;
		margin: auto;
		left: -7%;
		right: 7%;
	}	
}


@media screen and (max-width: 769px) {
	.evetmobillogo{
		width: 15em !important;
		display: flex;
	}	
	
	
	.container{
		flex-wrap: wrap;
		gap: 55px 50px;
		padding: 95px 50px;
		margin-top: 50px !important;
	}
	
	.container .card .img-box {
	top: 0px;
    width: 200px;
    border-radius: 10px;
    height: 100px;
    opacity: 0.8;
	}
	
	/*
	h2.dilseciniz{
		margin-top: -200px !important;
		font-size: 3rem !important;
	}
	*/
}

