* {
  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 {
        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 */





  

* {
  font-family: Nunito, sans-serif;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 50px;
}

.text-blk.headingText {
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
  color: rgb(0 0 0);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 50%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}



.text-blk.description {
  font-size: 18px;
  line-height: 28px;
  color: rgb(0 0 0);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.explore {
  font-size: 18px;
  line-height: 28px;
  color: rgb(133, 133, 133);
  background-color: rgb(133, 133, 133);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: outset;
  border-right-style: outset;
  border-bottom-style: outset;
  border-left-style: outset;
  border-top-color: rgb(244, 152, 146);
  border-right-color: rgb(244, 152, 146);
  border-bottom-color: rgb(244, 152, 146);
  border-left-color: rgb(244, 152, 146);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 9px;
  padding-right: 45px;
  padding-bottom: 9px;
  padding-left: 45px;
}

.explore a{
  color: #fff;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(3, 62, 66);
  color: rgb(20, 6, 82);
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.mainVideo {
  width: 85%;
  height: 450px;
  margin-top: -30px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.videoContainer {
  width: 46%;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.mainVideo {
  z-index: 10;
}

.dotsImg {
  position: absolute;
  width: 80%;
  height: 600px;
  top: 0px;
  right: 0px;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .text-blk.description {
    font-size: 18px;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .text-blk.subHeadingText {
    font-size: 30px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.bottomText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .text-blk.headingText {
    text-align: center;
    font-size: 22px;
  }

  .text-blk.subHeadingText {
    text-align: center;
  }

  .text-blk.description {
    text-align: center;
  }

  .explore {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  #inc0s {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .dotsImg {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .videoContainer {
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .mainVideo {
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }

  .text-blk.description {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.headingText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.subHeadingText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .mainVideo {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 28px;
    line-height: 38px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }

  .mainVideo {
    height: 400px;
  }

  .videoContainer {
    height: 550px;
  }

  .explore {
    font-size: 16px;
    padding-top: 8px;
    padding-right: 40px;
    padding-bottom: 8px;
    padding-left: 40px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .explore {
    font-size: 16px;
    line-height: 25px;
    padding: 8px 35px 8px 35px;
  }

  .dotsImg {
    width: 80%;
    height: 100%;
  }

  .mainVideo {
    height: 260px;
  }

  .videoContainer {
    height: 320px;
  }

  .responsive-container-block.Container.bottomContainer {
    padding: 0 0 0 0;
  }

  .text-blk.description {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 30px 0;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}





/*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: rgb(133, 133, 133);
  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: rgb(133, 133, 133);
  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);
}

/*Social 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 */


/*Teklif Sabit Starts*/
.button-sbt {
  position: fixed;
  bottom: 20px;
  /* Adjust this value to control the vertical position from the bottom */
  right: 20px;
  /* Adjust this value to control the horizontal position from the right */
  z-index: 9999;
  /* Ensure it's above other content */
}

.button-sbt button {
  width: 130px;
  height: 30px;
  margin-top: 10px;
  font-weight: 600;
  background: rgb(133, 133, 133);
  color: #f8f8f8;
  border-radius: 5px;
  border-radius: 5px;
  border: 2px solid #000000;
  transition: 0.5s ease;
  cursor: pointer;

}

.button-sbt button a {
  color: #fff;
}

.button-sbt button:hover {
  background: #b9b8b8;
  color: #a91317;
}

/*Teklif Sabit ends*/