* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: Arial;
}


html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #f4f5fb;
    border-radius: 10px;
}

html::-webkit-scrollbar {
    width: 10px;
}

@media screen and (max-width: 900px) {
    html {
        touch-action: manipulation;
    }
}



body {
    background: #e9e9e9;
}

/* Header Start */
.header {
    background: rgb(238, 237, 237);
    width: 100%;
}

/* Stilleri burada belirleyin */
.contact-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    background-color: transparent;
    color: #f7f4f4;
    /* Metin rengi */
    padding: 10px;
    padding-left: 11.5rem;
    /* İstenirse kenar boşluğu eklenebilir */
    position: relative;
}

@media only screen and (max-width: 620px) {
	.contact-info {
    font-size: 12px;
    padding: 10px;
    position: relative;
}
}


/* Arka plan resmi */
.contact-info img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /* İçerik öğelerinin önüne geçmesini sağlar */
    width: 100%;
    /* Genişlik ve yükseklik ayarları */
    height: 100%;
    object-fit: cover;
    /* Resmin boyutunu korur */
}

/* Simgelerin boyutunu ve renklerini özelleştirme */
.contact-info i {
    position: relative;
    z-index: 99;
    margin-right: 1rem;
    font-size: 20px;
    color: #ffffff;
    /* Simgelerin rengi */
}

.contact-info a {
    position: relative;
    z-index: 99;
    color: white;
}

.header nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
}

nav .content {
    display: flex;
    align-items: center;
    margin-left: 5%
}

nav .content .links {
    width: 100%;
    margin-right: 0px;
    display: flex;
}

nav .content .links a img {
    width: 50px;
}

nav .content .links li {
    list-style: none;
    line-height: 45px;
}

nav .content .links li a,
nav .content .links li label {
    color: #555555;
    font-size: 1rem;
    padding: 20px 40px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;

}

@media screen and (max-width: 1630px){
    nav .content .links li a,
        nav .content .links li label {
            padding: 1px 20px;
        }
}

@media screen and (max-width: 1330px) {

    nav .content .links li a,
    nav .content .links li label {
        padding: 1px 10px;
    }
}

@media screen and (max-width: 1130px) {

    nav .content .links li a,
    nav .content .links li label {
        padding: 1px 10px;
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 1010px) {

    nav .content .links li a,
    nav .content .links li label {
        padding: 1px 10px;
        font-size: 0.7rem;
    }
}

/* Yazıların yer değiştirmemesi için gerekli ayarlar */
.header .content .links li {
    white-space: nowrap;
    /* Metinlerin satır atlamasını engeller */
    margin: 0 5px;
    /* Metinler arası boşluk ekler */
}

.content .links li label {
    display: none;
}

nav .content .links li a:hover,
nav .content .links li label:hover {
    color: #fb1e25;
    background: #555555;
}

.links .dropdown-menu {
    display: none;
    position: absolute;
    top: 80%;
    margin-left: 0;
    background-color: rgb(238, 237, 237);
    z-index: 991;
    width: 320px;
    /* Örnek bir genişlik değeri */
    padding: 0px;
    /* İçerik ile kenarlar arasındaki boşluğu ayarlar */
    border-radius: 5px;
    /* Kenar yuvarlatma ekler */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* Gölgelendirme ekler */
}

.links li:hover .dropdown-menu {
    display: block;
}

.links li:hover .dropdown-menu li a {
    text-align: center;
}



/* İlk önce ikinci alt menüyü gizle */
.dropdown-submenu-menu {
    display: none;
    position: absolute;
    transition-delay: 10s;
    background-color: rgb(238, 237, 237);
    /* Arka plan rengi */
    left: 100%;
    /* İkinci alt menüyü sağa it */
    top: 0;
    min-width: 300px;
    /* İkinci alt menü genişliği */
    z-index: 9992;
    /* Önceki alt menünün üstünde gösterin */
    /* Diğer stillemeleri burada yapabilirsin*/
    padding: 10px;
    /* İçerik ile kenarlar arasındaki boşluğu ayarlar */
    border-radius: 5px;
    /* Kenar yuvarlatma ekler */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* Gölgelendirme ekler */
}

/* İkinci alt menüyü görüntülemek için ana alt menüye mouse geldiğinizde göster */
.dropdown-menu li:hover .dropdown-submenu-menu {
    display: block;
}




/* İlk önce ikinci alt menüyü gizleyin */
.dropdown-submenu-menu2 {
    display: none;
    position: absolute;
    background-color: rgb(238, 237, 237);
    /* Arka plan rengi */
    left: 100%;
    /* İkinci alt menüyü sağa it */
    top: 0;
    min-width: 270px;
    /* İkinci alt menü genişliği */
    z-index: 99992;
    /* Önceki alt menünün üstünde göster */
    padding: 10px;
    /* İçerik ile kenarlar arasındaki boşluğu ayarlar */
    border-radius: 5px;
    /* Kenar yuvarlatma ekler */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* Gölgelendirme ekler */
}

/* İkinci alt menüyü görüntülemek için ana alt menüye mouse geldiğinizde gösterin */
.dropdown-menu li:hover .dropdown-submenu-menu2 {
    display: block;
}


@media screen and (max-width: 990px) {

    .links .dropdown-menu,
    .dropdown-submenu-menu,
    .dropdown-submenu-menu2 {
        background-color: rgb(238, 237, 237);
        width: 100%;
        margin-left: 0;
        top: auto;
        left: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 15px;
    }

    .dropdown-submenu-menu,
    .dropdown-submenu-menu2 {
        width: 100%;
        margin-left: 0;
        top: auto;
        left: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 15px;
    }

    .dropdown-menu li,
    .dropdown-submenu-menu li,
    .dropdown-submenu-menu2 li {
        text-align: center;
    }
}


.header .search-icon,
.header .menu-icon {
    color: #555555
    font-size: 18px;
    line-height: 70px;
    width: 70px;
    text-align: center;
    cursor: pointer;
}

.header .menu-icon {
    display: none;
}

.header #show-search:checked~.search-icon i::before {
    content: "\f00d";
}

.header .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.header #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: aliceblue;
    background: #08b34a;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #f4f5fb;
}

.search-box .go-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: transparent;
    border: none;
    outline: none;
    color: #f4f5fb;
    font-size: 20px;
    cursor: pointer;
}

.header input[type="checkbox"] {
    display: none;
}

/* Responsive */
@media screen and (max-width:1250px) {
    .header nav {
        max-width: 100%;
        padding: 0px 20px;
    }

    nav .content .links {
        margin-left: 30px;
    }

    .content .links a {
        padding: 8px 13px;
    }

    .header .search-box {
        max-width: calc(100% - 100px);
    }

    .header .search-box input {
        padding: 0px 100px 0px 15px;
    }
}

@media screen and (max-width:981px) {
    .header .menu-icon {
        display: block;
    }

    .header #show-menu:checked~.menu-icon i::before {
        content: "\f00d";
    }

    nav .content .links {
        display: block;
        position: fixed;
        background: rgb(238, 237, 237);
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked~.content .links {
		margin-top: 2rem;
        left: 0%;
        z-index: 9999;
    }

    nav .content .links li a {
        font-size: 18px;
    }

    .content .links li {
        margin: 15px 20px;
    }

    .content .links li a,
    .content .links li label {
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
    }

    .content .links li a.desktop-link {
        display: none;
    }
}

/* Responsive */

/* Header End */

/* Banne Starts */
  .slider {
      width: 100%;
      height: 700px;
      position: relative;
  }

  .slider img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
	  background-size: cover;
      background-position: center; /* transition: all 0.5s ease-in-out; */
      opacity: 0; /* Opaklık başlangıcı */
      transition: opacity 0.5s ease-in-out; /* Geçiş efekti */
  }

  .slider img:first-child {
      z-index: 1;
      opacity: 1; /* İlk resim görünür olmalı */
  }

  .slider img:nth-child(2) {
      z-index: 0;
  }

  .navigation-button {
      text-align: center;
      position: relative;
	  margin-top: -1.5rem;
	  z-index: 99;
  }

  .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
  }

  .active,
  .dot:hover {
      background-color: #a91317;
  }
  /* Media queries ile responsive ayarlar */
  @media (max-width: 768px) {
      .slider {
          height: 500px;
          /* Örnek olarak farklı bir yükseklik */
      }
  }
  /* Media queries ile responsive ayarlar */
  @media (max-width: 500px) {
      .slider {
          height: 200px;
          /* Örnek olarak farklı bir yükseklik */
      }
  }
/* Banne Ends */

/*Social Sarts*/
.sosyal{
    position: fixed;
    top: 60%;
    left: 100%;
    margin-bottom: 5px;
    transform: translate(-98%, -89%);
    z-index: 9999;
}
.sosyal-item {
    position: relative;
}

.sosyal-link {
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: #343f56;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    border-radius: 50%;

}

.sosyal-link:hover {
    background: #00f;
}

.bilgi-kutusu {
    position: absolute;
    top: -30px; /* Simgeye göre ayarlayabilirsiniz */
    right: 40px; /* Simgeye göre ayarlayabilirsiniz */
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
}

.sosyal-item:hover .bilgi-kutusu {
    display: block;
}

.sosyal div{
    display: inline;
    margin-right: 5px; /* Simgeler arasına 5 piksel sağ boşluk bırak */
}

.sosyal div:last-child {
    margin-right: 0; /* Son simge için sağ boşluğu kaldır */
}

.sosyal div a{
    display: inline-flex;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: #343f56;
    font-size: 20px;
    color: #fff;
    margin: 0 6px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    transition: 0.4;
    border-radius: 50%;
}

.sosyal .facebook a:hover{
    background: rgb(24 119 242);
}

.sosyal a i{
    transition: 0.5s all;
}

.sosyal a:hover > i{
    transform: scale(1.6) rotate(360deg);
}

.sosyal .instagram a:hover{
    background: rgb(18, 86, 136);
}

.sosyal .whatsapp a:hover{
    background: rgb(37 211 102);
}

.sosyal .linkedin a:hover {
    background: rgb(0, 123, 181);
}
.sosyal .twitter a:hover{
    background: #000000;
}
/*Social Ends*/


/* Services Section Start */
.services{
    padding: 100px 10% 2px;
}
.services .heading{
    text-align: center;
}
.services .heading h3{
    font-size: 36px;
    font-weight: 600;
    color: #4d4d4d;
}
.services .card-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 0.90rem;
    margin-top: 30px;
}
.services .card-content .row{
    background: #d2d1d1;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
    text-align: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}
.services .row i{
    color: #454444;
    font-size: 60px;
    padding: 10px;
    display: block;
}
.services .card-body h3{
    color: #282828;
    font-size: 25px;
}
.services .card-body p{
    color: #000000;
}
@media (max-width:920px){
    .services .card-content{
        grid-template-columns: 1fr;
    }
}
/* Services Section End */



/* About Section Start */
.about{
    padding: 73px 8% 37px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}
.about-img img{
    max-width: 530px;
    height: auto;
    width: 100%;
    border-radius: 10px;
}
.about-info h3{
    color: #4d4d4d;
    font-size: 30px;
    line-height: 1;
}
.about-info h6{
    margin-bottom: 10px;
    font-size: 15px;
    color: #800303;
}
.about-info p{
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 4rem;
    margin-top: 10px;
}
.about-btn{
    width: 150px;
    height: 36px;
    font-weight: bold;
    background: #d2d1d1;
    color: #454444;
    border-radius: 5px;
    border: none;
    transition: 0.5s;
    cursor: pointer;
    margin-top: 2rem;
    margin-left: 88%;
}
@media (max-width:920px){
.about-btn{
    
	    margin-left: 42%;


}
}



.about-btn:hover{
    width: 165px;
}
@media (max-width:920px){
    .about{
        grid-template-columns: 1fr;
    }
    .about-img{
        text-align: center;
        order: 2;
    }
    .about-img img{
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}
/* About Section End */





/* Gallary Section Start */
.gallary{
    padding: 1px 10% 120px;
}
.gallary .heading h3{
    font-size: 25px;
    letter-spacing: 2px;
    color: #454444;
    border-bottom: 2px solid #a91317;
}
.gallary-card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    align-items: center;
    gap: 0.90rem;
    margin-top: 30px;
}

.gallary-card .row {
    text-align: center; /* Yazıları resmin ortasında hizalar */
	display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}
.gallary-card .row img {
    width: 100%; /* Resimleri genişliği ekranın tamamına yaymak için */
    max-width: 300px; /* Resimlerin çok büyümemesi için bir maksimum genişlik belirleyin */
    padding: 10px;
    display: block;
    border-radius: 15px;
    transition: 0.5s;
    cursor: pointer;
}

.gallary-card .row p {
    text-align:center;
    color: #fff;
    width: 80%;
    /* Ensure the text spans the entire width of the image */
    padding: 5px;
    /* Add some padding to the text for spacing */
}
.gallary-card .row p:hover{
    color:#a91317;
}
.gallary-card .row p, .gallary-card .row .hzm p {
    text-align: center; /* Yazıları resmin ortasında hizalar */
    color: #454444;
    width: 100%; /* Yazının resim genişliğine orantılı olması için */
    padding: 5px;
    margin-top: 10px; /* Yazı ile resim arasında boşluk ekler */
}

.gallary-card .row .hzm p:hover{
    color:#a91317;
}

.gallary-card .row img{
    padding: 10px;
    display: block;
    border-radius: 15px;    
    transition: 0.5s;
    cursor: pointer;
}
.gallary-card .row img:hover{
    transform: translateY(-10px);
}
@media (max-width:920px){
    .gallary-card{
        grid-template-columns: 1fr;
    }
	.gallary-card .row img {
        max-width: 100%; /* Daha küçük ekranlarda resimlerin genişliğini ekranın tamamına yaymak için */
    }
}
@media (max-width: 480px) {
    .gallary-card .row {
        text-align: center;
    }

    .gallary-card .row p, .gallary-card .row .hzm p {
        text-align: center;
        width: 100%;
        padding: 5px;
        margin-top: 10px;
    }
	.gallary-card .row img {
        max-width: 100%; /* Daha küçük ekranlarda resimlerin genişliğini ekranın tamamına yaymak için */
    }
}
/* Gallary Section End */

/* Değerlerimiz Start */
a {
    color: inherit;
}

.cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
}

.baslik{
    font-size: 36px;
    font-weight: 600;
    color: #4d4d4d;
    margin-bottom: 1.2rem;
    text-align: center;
}

.baslik h3{
	font-size: 36px;
    font-weight: 600;
    color: #4d4d4d;
}

.card {
    font-family: 'Heebo';
    --bg-filter-opacity: 0.5;
    background-image: linear-gradient(rgba(0, 0, 0, var(--bg-filter-opacity)), rgba(0, 0, 0, var(--bg-filter-opacity))), var(--bg-img);
    height: 20em;
    width: 15em;
    font-size: 1.5em;
    color: white;
    border-radius: 1em;
    padding: 1em;
    /*margin: 2em;*/
    display: flex;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5em -1em black;
    transition: all, var(--transition-time);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease; /* Geçiş efektini belirlemek için */
}

.card:hover {
    transform: scale(1.05);
    /* Hover durumunda büyüklüğü arttırmak için */
}

.card h1 {
    margin: 0;
    margin-top: 1rem;
    font-size: 1.5em;
    line-height: 1.2em;
}

.card p {
    font-size: 0.75em;
    margin-top: 0.5em;
    line-height: 2em;
}

.card .tags {
    display: flex;
}


/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
    .cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
    }

    .info {
        justify-content: center;
    }

    .card-grid-space .num {
        margin-left: 0;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .cards-wrapper {
        padding: 4rem 2rem;
    }

    .card {
        max-width: calc(100vw - 4rem);
    }
}

@media screen and (max-width: 450px) {
    .info {
        display: block;
        text-align: center;
    }

    .info h1 {
        margin: 0;
    }
}
/* Değerlerimiz Ends */




/* Packages Section Start */
.packages{
    padding: 100px 8% 100px;
}
.packages .main-txt{
    text-align: center;
}
.packages .main-txt h3{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    color: #454444;
}
.packages .card-content{
    display: grid;
    grid-template-columns: repeat(5, 2fr);
    align-items: center;
    gap: 0.90rem;
    margin-top: 30px;
}
.packages .card-content .row{
    background: #d2d1d1;
    box-shadow: #000000;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #000000;
}
.packages .row img{
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    display: block;
}
.packages .card-body{
    padding: 10px;
}
.packages .card-body h3{
    margin-top: 10px;
    font-size: 15px;
    font-weight: 550;
    color: #454444;
}
.packages .card-body p{
    font-weight: 500;
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #454444;
}
.rating i{
    color: orange;
    margin-top: 5px;
}
.packages .card-body h5{
    margin-top: 10px;
    font-size: 18px;
}
.packages .card-body button{
    width: 130px;
    height: 30px;
    margin-top: 10px;
    font-weight: 600;
    background: transparent;
    color: #f8f8f8;
    border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #1c0a51;
    transition: 0.5s ease;
    cursor: pointer;
}

.packages .card-body button a{
    color: #fff;
}

.packages .card-body button:hover{
    background: #1c0a51;
    color: #f4f5fb;
}
@media (max-width:920px){
    .packages .card-content{
        grid-template-columns: 1fr;
    }
}
/* Packages Section End */




/* Review Section Start */
/* .reviews{
    padding: 120px 10% 120px;
}
.reviews .main-txt h3{
    font-size: 36px;
    font-weight: 600;
    color: #f4f5fb;
}
.reviews .card-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 0.90rem;
    margin-top: 30px;
}
.reviews .row{
    width: 100%;
    height: 200px;
    border-radius: 15px;
    display: block;
    background: #f4f5fb;
    cursor: pointer;
}
.reviews h5{
    padding: 20px;
    font-size: 17px;
    text-shadow: 0px 1px 1px black;
}
.reviews h5 img{
    width: 50px;
    border-radius: 50%;
}
.reviews p{
    padding-left: 25px;
    margin-top: 10px;
}
.reviews .rating{
    color: orange;
    margin-left: 25px;
}
@media (max-width:920px){
    .reviews .card-content{
        grid-template-columns: 1fr;
    }*/
/* Review Section End */





/* Contact Section Start */
.contact{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2.5rem;
    padding: 100px 8% 100px;
}

.contact h5{
    margin-bottom: 10px;
    font-size: 15px;
    color: #f4f5fb;
}
.book-img img{
    box-shadow: 0px 5px 5px -6px black;
    width: 100%;
    display: block;
    margin-top: 45px;
    cursor: pointer;
}




.contact-text{
    margin-bottom: 10px;
}
.contact-text h2{
    color: #f4f5fb;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-text h2 span{
    text-shadow: 0px 1px 1px blanchedalmond;
}
.contact-text p{
    font-weight: bold;
    color: #f4f5fb;
}
.list{
    margin-top: 16px;
}
.list li{
    margin-bottom: 12px;
}
.list li a{
    display: block;
    color: #f4f5fb;
    font-weight: bold;
    font-size: 15px;
    transition: 0.5s ease;
}
.contact-form form{
    position: relative;
}
.contact-form form input,
form textarea{
    width: 100%;
    padding: 10px;
    background: #f4f5fb;
    color: black;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.contact-form textarea{
    resize: none;
    height: 160px;
}
.contact-form .submit{
    display: inline-block;
    font-size: 15px;
    background: #f4f5fb;
    color: black;
    width: 160px;
    transition: 0.5s ease;
    cursor: pointer;
}
.contact-form .submit:hover{
    width: 175px;
}
@media (max-width:920px){
    .contact{
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
/* Contact Section End */

/*Reference Slider Starts*/
.slick-slide {
    margin: 1px -250px;
    
}

.slick-slide img {
    width: 30%;
}

@media only screen and (max-width: 600px) {
	.slick-slide img {
    width: 13%;
}
}


.slick-slider
{
    position: relative;
    display: block;
    max-height: calc(95vh - 2px);
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/*Reference Slider ends*/


/* footer section start */



#footer {
    background: #f7f7f7;
    padding: 3rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg);
}

#footer2 {
    background: #f7f7f7;
    padding: 3rem;
    margin-top: 0px;
    /* padding-top: 5rem; */
    padding-top: 7rem;
    padding-bottom: 80px;
    background-image: url(../images/cards/v748-toon-111.png);
}

.footer-section {
    padding-bottom: 20px;
    /* İçerik arası boşluk */
}

.logo-link {
    display: inline-block;
    /* Logo linkini inline-block olarak ayarla */
    margin-bottom: 10px;
    /* Logo ile altındaki içerik arasındaki boşluk */
}

.logo-footer {
    max-width: 100%;
    /* Logo genişliğini maksimuma ayarla */
    height: auto;
    /* Otomatik yükseklik */
}

.logo-footer {
    max-width: 300px; 
    display: flex;
}

.footer-about{
    width: 20rem;
}

.col-md-3{
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
	justify-content: space-between; /* veya space-around */
}

.useful-link {
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.address {
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.social-links {
    flex-direction: column;
    align-items: center;
    justify-content: center; 

}

.social-links h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.social-links img {
    padding-bottom: 25px;
}

.social-icons {
    /* display: flex;
    gap: 3rem; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #777777;
}

.social-icons a {
    /* font-size: 18px; */
    /* background: #ffffff; */
    /* box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
	color: #82074a; */
    /* margin-right: 18px; */
    color: #777777;
}

.social-icons a:hover {
    color: #000;
}

.social-icons a i {
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #a91317;
    font-size: 16px;
    margin-right: 12px;
}

li {
    list-style: none;
}

li span {
    padding-right: 0.5rem;
}

.useful-link h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.useful-link img {
    padding-bottom: 15px;
}

.use-links {
    line-height: 32px;
}

.use-links li i {
    font-size: 14px;
    padding-right: 8px;
    color: #898989;
}

.use-links li a {
    color: #303030;
    font-size: 15px;
    font-weight: 500;
    color: #777777;
}

.use-links li a:hover {
    color: #000;
}

.address h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.address img {
    padding-bottom: 15px;
}

.address-links li a {
    color: #303030;
    font-size: 15px;
    font-weight: 500;
    color: #777777;

}

.address-links li i {
    font-size: 16px;
    padding-right: 8px;
    color: #777777;

}

.address-links li i:nth-child(1) {
    padding-top: 9px;
}

.address-links .address1 {
    font-weight: 500;
    font-size: 15px;
    display: flex;
}

.address-links {
    line-height: 32px;
    color: #777777;
}

.copy-right-sec {
    padding: 1rem;
    background: #828282;
    color: #fff;
    text-align: center;
}

.copy-right-sec a {
    color: #a91317;
    font-weight: 500;
	font-weight: bold;
}

a {
    text-decoration: none;
}

/* For smaller devices */
@media (max-width: 767px) {
    #footer {
        padding: 2rem;
    }

    .col-md-3 {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .logo-footer {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .footer-about {
        width: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .social-icons,
    .use-links,
    .address-links {
        text-align: center;
    }

    .use-links,
    .address-links,
    .social-icons {
        padding-bottom: 20px;
    }

    .social-links h2,
    .useful-link h2,
    .address h2 {
        padding-bottom: 10px;
        font-size: 18px;
    }
	
	.social-icons,
    .use-links,
    .address-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        color: #777777;
    }

    .social-links img,
    .useful-link img,
    .address img {
        padding-bottom: 10px;
    }

    .social-icons a,
    .use-links li a,
    .address-links li a {
        font-size: 14px;
    }

    .copy-right-sec {
        padding: 0.5rem;
    }
}
/* footer section end */