/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/*fonts*/

/* ROOT */
:root {
    --mobil-menu-bg: #f9f9f9;
    --mobil-menu-yazi: #674747;
    --primary-blue: #209cd2;
    --renk1: #66B331;
    --renk2: #CADFA1;
    --renk5: #0d0d0d;
    --renk6: #f1f1f1;
    --font1: "Montserrat", sans-serif;
}

body {
    background-color: #fefeff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #aaa
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #606060
}

::selection {
    background: var(--renk1);
    color: #ffffff;
}

a {
    color: var(--renk1);
}


a:hover {
    text-decoration: none;
    color: var(--renk1);
}


.active5 {
    position: relative;
}

.active5:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border: 3px solid #ffffff;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
    top: 92%;
}

/* SCROLL TOP */
.scrollup {
    position: fixed;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    bottom: 60px;
    right: 20px;
    background-color: var(--renk1);
    border: 1px solid white;
    color: white;
    font-size: 12px;
    z-index: 99;
    border-radius: 10%;
    opacity: 0;
    transform: rotate(-45deg);
    transition: 400ms;
    pointer-events: none;
}

.scrollup.aktif {
    bottom: 48px;
    opacity: 1;
    transition: 400ms;
    pointer-events: all;
}

.scrollup i {
    transform: rotate(45deg);
    transition: 400ms;
}

.scrollup:hover {
    background-color: var(--renk1);
    color: white;
    transform: scale(.9) rotate(0);
    transition: 400ms;
}

.scrollup:hover i {
    transform: rotate(0);
    transition: 400ms;
}

address p {
    display: flex;
    align-items: center;
}

ul {
    list-style-type: none;
}

/* HC-OFFCANVAS */
.hc-nav-trigger {
    right: 15px;
    top: 20px;
    z-index: 999;
}

.hc-nav-trigger span {
    background-color: var(--renk2);
}

.yanbasliklar {
    color: #209cd2;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    opacity: .4;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.hc-offcanvas-nav .nav-close-button span::after, .hc-offcanvas-nav .nav-close-button span::before {
    width: 10px;
    height: 10px;
    margin-top: -5px;
}

.hc-offcanvas-nav .nav-title + .nav-close a:not(.has-label) {
    top: 15px;
    right: 0;
}

.hc-offcanvas-nav .nav-close-button span::before {
    margin-left: -11px;
}

.fancybox__container {
    z-index: 9999;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    animation: fadeIn linear;
    animation-duration: 0.6s;
    background: linear-gradient(270deg, rgba(248, 248, 255, 1) 50%, rgba(248, 248, 255, 0) 100%);
    box-shadow: rgba(149, 157, 165, 0.1) 400px 8px 24px;
}

.sayfaHeader {
    background: linear-gradient(270deg, rgba(248, 248, 255, 1) 50%, rgba(248, 248, 255, 1) 100%);
}

header.is-sticky {
    background: #fbfbff;
    box-shadow: rgb(0 0 0 / 10%) 0 5px 15px;
    animation: flipInX linear;
    animation-duration: 0.6s;
}


.navbar-brand {
    position: relative;
}

.hbtlogoGizle {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right center;
    transition: .5s;
}

header.is-sticky .hbtlogoGizle {
    transform: scaleX(1);
    transition-delay: .45s;
}

header.is-sticky .headerSosyal {
    display: none;
}

header.is-sticky .navbar-brand:hover .hbtlogoGizle {
    transform: scaleX(0);
    transition-delay: 0ms;
    transition: .5s;
}

.hizmetlerimiz-altmenu a {
    color: black;
    transition: 800ms;
    border-bottom: 1px groove slategray;
    padding-bottom: 5px;
}

.hizmetlerimiz-altmenu:hover a {
    transition: 800ms;
    padding-right: 15px;

}

.nav-link {
    color: black;
    font-weight: 600;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.is-sticky .nav-link {
    color: black;
}

.is-sticky .nav-link:hover {
    color: black;
}

.nav-link:hover {
    color: black;
}

.dropdown-menu .nav-link {
    color: black;
}

/* header sosyal medya */
.sosyalMedyaUl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sosyalMedyaUl li:not(:last-of-type) {
    margin-right: 2px;
}

.sosyalMedyaUl li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 27px;
    font-size: 14px;
    transition: .2s ease-in-out;
}

.telefonnumaramız a, .telefonnumaramız i {
    color: black !important;
    font-weight: 700;
}


.headerTelefon,
.headerTelefon:hover {
    color: black;
}

.headerTelefonIcon {
    display: inline-block;
    min-width: 30px;
    border: 1px solid black;
    border-radius: 50%;
    aspect-ratio: 1/1;
    text-align: center;
    line-height: 28px;
    color: black;
}

/*
* FOOTER
*/


footer .footer-alt-bg {
    border-top: 8px solid var(--renk1);
    background: #fff;
    color: #fff;
    font-size: 15px;
    position: absolute;
    z-index: 30;
    padding-bottom: 8px;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer-alt-bg::before {
    content: "";
    width: 100%;
    height: 5px;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 0;
}

footer .footer-alt-bg .footer-alt-ic {
    margin-right: auto
}

footer .footer-alt-bg p {
    padding: .8em 0 .4em;
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: #555;
    text-align: right
}

footer .footer-Link {
    transition: all .4s;
}

footer .footer-Link:hover {
    padding-left: 10px;
}

footer .footer-ust-img {
    position: absolute;
    width: 100%;
    height: 55px;
    top: -40px;
    transform: perspective(1px)
}

footer .hakanbt-logo:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -44px;
    left: -16px;
    border-style: solid;
    border-width: 0 30px 35px 30px;
    border-color: transparent transparent #fff transparent
}

footer .hakanbt-logo:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -34px;
    left: -6px;
    border-style: solid;
    border-width: 0 20px 24px 20px;
    border-color: transparent transparent var(--renk1) transparent
}

footer .hakanbt-logo {
    position: absolute;
    bottom: -14px;
    left: 15px;
    height: 35%;
    width: 100%
}

.hakanbt {
    width: 28px !important;
    height: 25px !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 0 !important;
    transition: all .5s ease-in-out .1s !important
}

.hakanbt img {
    max-width: none !important;
    user-select: none;
}

.hakanbt:hover {
    width: 125px !important
}

.dropdown-menu {
    border: 1px solid #dddddd;
    border-radius: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.nav-item i {
    transition: all .4s;
    margin-bottom: 5px;
}

.nav-item:hover i {
    opacity: 0;
}

.nav-item:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.nav-item:hover::after {
    transform: translateX(-5px);
    opacity: 1;
    transition-delay: 0.2s;
}

.nav-item::before {
    content: "";
    width: 20px;
    opacity: 0;
    height: 17px;
    top: 0;
    background-color: var(--renk1);
    transform: translateX(-20px);
    position: absolute;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    transition: all .2s;
}

.nav-item::after {
    content: "";
    opacity: 0;
    width: 16px;
    transition: all .2s;
    height: 13px;
    top: 2px;
    background-color: var(--renk2);
    position: absolute;
    transform: translateX(-20px);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
}

.navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
}

.navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0 0;
}

.navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 52px;
    transform: rotateX(0deg);
}

.right-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    background-color: #fff;
    list-style: none;
}

.navbar .nav-item.right:hover .right-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    display: block;
    pointer-events: all;
    animation-name: dropdownAnimasyon;
    animation-duration: 1s;
    animation-timing-function: ease;
}

/* Slider */
.swiper {
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
}

.slider {
    height: 70vh;
    margin-top: 80px;
}

.mySwiper {
    height: 100%;
}


.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sayfaBaslik {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sayfaBaslik h2 {
    text-align: center;
    display: inline-flex;
    position: relative;
    padding: 0 0 10px 0;
    justify-content: center;
    align-items: center;
    font: var(--font1);
    color: var(--renk1);
    font-size: 22px;
}

.sayfaBaslik h2::after {
    content: "";
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    width: 35px;
    height: 25px;
    position: absolute;
    right: -25px;
    background-color: var(--renk1);
}

.ortalaX {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--renk1) !important;
}

.swiper-button-next {
    right: 5px;
}

.swiper-button-prev {
    left: 5px;
}

footer {
    background-color: transparent;
    color: white;
    overflow: hidden;
    min-height: 100vh;
    align-content: center;
}

footer a {
    color: black !important;
    font-weight: 400;
}

.footer-list h3 {
    position: relative;
    margin-bottom: 20px;
}

.footer-list i {
    margin-right: 10px;
    transition: all .4s;
}

.footer-social li i:hover {
    box-shadow: rgba(149, 157, 165, 0.4) 0 8px 24px;
}

.footer-social li i {
    background-color: white;
    color: black;
    transition: all .4s;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 18px;
    padding: 0;
}

.footer-list li:hover i {
    margin-right: 15px;
}

.hover-yok:hover i {
    margin-right: 10px !important;
}

.footer-list li {
    margin: 10px 0;
}

.bizKimiz .img-fluid {
    width: 100%;
    border-radius: 10px;
    transition: all .4s;
}

.mySwiperzaman .swiper-slide {
    text-align: left !important;
    cursor: context-menu;
}

.mySwiperzaman hr {
    background-color: black;
    position: relative;
}

.mySwiperzaman hr::before {
    content: "\f111";
    font: var(--fa-font-solid);
    font-size: 15px;
    position: absolute;
    left: 0;
    top: -7.5px;
}

.rakamlarlaBiz {
    background-position: center;
    align-items: center;
    height: auto;
}

.countreup:hover .counter {
    transform: translateX(-5px) translateY(160%);
}

.countreup:hover p {
    transform: translateY(-110%);
}

.countreup i {
    display: inline-flex;
    justify-content: center;
    transition: all .4s;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    border-radius: 50%;
    color: var(--renk1);
    font-size: 18px;
    background-color: white;
    position: absolute;
    top: -40px;
    line-height: 80px;
}
.countreup:hover i{
    top: 20px;
    box-shadow: rgba(149, 157, 165, 0) 0 8px 24px;
}
.counter {
    font-size: 28px;
    color: var(--renk1);
    font-family: Rubik, sans-serif;
    font-weight: 400;
    line-height: 1;
    transition: all .3s;
    transform: translateX(-5px);
    display: block;
}

.countreup p {
    font-size: 14px;
    font-weight: 500;
    transition: all .3s;
    color: var(--renk1);
}


.snip1573 {
    background-color: #fff;
    display: inline-block;
    font-family: sans-serif Poppins-Regular;
    font-size: 10px;
    max-width: 180px;
    height: 135px;
    padding-top: 10px;
    min-width: 180px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    -webkit-box-shadow: 0 6px 14px 0 rgb(215 215 219);
    -moz-box-shadow: 0 6px 14px 0 rgba(215, 215, 219, 1);
    box-shadow: 0 6px 14px 0 rgb(215 215 219);
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

/* Slider Haberler*/

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-container {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

.append-buttons {
    text-align: center;
    margin-top: 20px;
}

.append-buttons button {
    display: inline-block;
    cursor: pointer;
    border: 1px solid #007aff;
    color: #007aff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 10px;
    font-size: 13px;
}

.modal-content {
    top: 50px;
}

.slider .swiper-button-next {
    right: 10px;
}

.slider .swiper-button-prev {
    left: 10px;
}

.slider {
    overflow: hidden;
}

.slider svg {
    position: absolute;
    z-index: 10;
    left: -12%;
    width: 40%;
    bottom: -35%;
}

.slogon {

    background-color: var(--renk2);
    color: white;
}

.countreup svg {
    stroke: white;
    width: 50px;
    stroke-width: 20px;
    fill: none;
}

.referans_content {
    background-color: #fff;
    max-width: 200px;
    height: 135px;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    transition: all .4s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.referans_content img {
    width: 90% !important;
}

.referans_content:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
}

.referans_content::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), transparent);
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    pointer-events: none;
}

.referans_content:hover::before {
    animation: shine 1s ease-in-out 0.2s forwards;
}

@keyframes shine {
    0% {
        transform: translate(150%, -35%);
        opacity: 0.3;
    }
    100% {
        transform: translate(-150%, 35%);
        opacity: 0.8;
    }
}

.faaliyetAlaniSlider {
    background-color: var(--renk1);
    position: relative;
}

.hbr-card {
    display: inline-block;
    background-color: white;
    margin-bottom: 5px;
    color: black;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
    height: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.referans_content img {
    width: auto;
    height: auto;
}

.hbr-card-top img {
    width: 100%;
}

.hbr-card-title {
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: var(--renk2);
}

.galeri_link {
    display: inline-block;
    background-color: #e0e0e0;
    color: #dc3545;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    width: 100%;
}

.galeri-card-top img {
    width: 100%;
    height: 191px;
}

.galeri-card-title {
    padding-top: 20px;
    height: 80px;
    font-size: 16px;
    font-weight: 500;
}


address a {
    color: black;

}

address {
    font-size: 14px;
}

/* Slider  */
.swiper-slide .title {
    color: var(--renk1);
    font: var(--font1);
    font-size: 26px;
    font-weight: 700;
}

.slider-yazi {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left !important;
    top: 0;
    left: 0;
}

.swiper-slide .subtitle {
    font-size: 16px !important;
    color: black;
    font-weight: 600 !important;
    font: var(--font1);
}


.headerSosyal .fa-phone {
    color: var(--renk1)
}

.custom-swipper-wrapper {
    transform: translate(-15px, 0);
    width: 1110px;
}

.buton-sag {
    position: fixed;
    right: -40px;
}

.buton-sol {
    position: fixed;
    left: -40px;

}


.list-unstyled li {
    padding: 5px 0;
}

.short_image {
    height: 300px;
    width: 100%;
    color: white;
    display: flex;
    padding-top: 125px;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(50deg, rgba(134, 186, 73, 1) 0%, rgba(101, 178, 46, 1) 100%);
}

.short-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    z-index: 15;
}

.short-title h1 {
    font-weight: 400;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.bread-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb .breadcrumb-item, .breadcrumb-item a {
    color: white !important;
}

.hk-content {
    padding: 10px;
    text-align: justify;
}

.hk-img {
    width: 100%;
    max-height: 500px;
    border-radius: 8px;
}

figure.snip0023 {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000000;
    text-align: center;
}

figure.snip0023 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.snip0023 * {
    box-sizing: border-box;
}

.faaliyetimg {
    width: 100%;
    height: 191px;
}

figure.snip0023 > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.snip0023 > div::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-image: linear-gradient(45deg, #000000 0%, transparent 40%, rgba(255, 255, 255, 0.15));
}

figure.snip0023 i {
    display: inline-block;
    font-size: 36px;
    color: #ffffff;
    padding: 6px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: 0.05s linear;
    transition: 0.05s linear;
    -webkit-transition-delay: 0.01s;
    transition-delay: 0.01s;
}

figure.snip0023 .curl {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(225deg, #ffffff, #f3f3f3 20%, #bbbbbb 38%, #aaaaaa 44%, #888888 50%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    transition: all .4s ease;
}

figure.snip0023 .curl:before, figure.snip0023 .curl:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 12%;
    bottom: 6%;
    width: 70%;
    max-width: 300px;
    max-height: 100px;
    height: 55%;
    box-shadow: 0 12px 15px rgb(0 0 0 / 30%);
    transform: skew(-10deg) rotate(-6deg);
}

figure.snip0023 .curl:after {
    left: auto;
    right: 6%;
    bottom: auto;
    top: 14%;
    transform: skew(-15deg) rotate(-84deg);
}

figure.snip0023:hover > div::before, figure.snip0023.hover > div::before {
    opacity: 1;
}

figure.snip0023:hover i, figure.snip0023.hover i {
    opacity: 0.7;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.snip0023:hover .curl, figure.snip0023.hover .curl {
    width: 90px;
    height: 90px;
}

.alt_baslik {
    height: 60px;
    text-align: center;
    color: black;
    font-weight: 500;
}

.whatsapp_sor {
    color: white;
    bottom: 50px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    left: 30px;
    background: #34AF23;
    text-align: center;
    z-index: 99;
    font-size: 30px;
    text-decoration: none;
    border-radius: 100%;
}

.whatsapp_sor:hover {
    color: black;
}

.joinchat__box {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 48px;
    left: 28px;
    z-index: 9999;
    width: calc(100vw - 20px * 2);
    max-width: 400px;
    min-height: 170px;
    max-height: calc(100vh - 20px - 20pc);
    border-radius: 32px;
    background: transparent;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
    text-align: left;
    overflow: hidden;
    transform: scale3d(0, 0, 0);
    opacity: 0;
    transition: max-height .2s ease-out, opacity .4s ease-out, transform 0s linear .3s;
    -webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: 10% 100%;
}

.joinchat__header {
    display: flex;
    flex-flow: row;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    height: 70px;
    padding: 0 70px 0 26px;
    margin: 0;
    background: rgb(37, 209, 102);
}

.joinchat__powered {
    font-size: 11px;
    line-height: 18px;
    color: inherit !important;
    text-decoration: none !important;
    fill: white;
    opacity: .8;
}

.joinchat__powered svg {
    display: inline-block;
    width: auto;
    height: 18px;
    vertical-align: -30%;
}

.joinchat__close {
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 34px;
    margin-top: -16px;
    border-radius: 50%;
    background-size: 12px;
    cursor: pointer;
    transition: background-color .3s ease-out;
}

.joinchat__box__scroll {
    padding: 20px 0 calc(60px + 10px) 70px;
    background: #fff linear-gradient(0deg, rgba(37, 211, 102, 0.04), rgba(37, 211, 102, 0.04));
    overflow-x: hidden;
    overflow-y: auto;
    will-change: scroll-position;
}

.joinchat__message {
    position: relative;
    min-height: 60px;
    padding: 17px 20px;
    margin: 0 26px 26px;
    border-radius: 32px;
    background: #fff;
    color: #4a4a4a;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    transform: translateZ(0);
}

.joinchat--show {
    opacity: 1;
    transform: scaleX(1);
    transition: transform .5s cubic-bezier(.18, .89, .32, 1.28);
}

.wp-btn {
    font-weight: 600;
    transition: all .4s;
    background-color: #25d166;
    color: white;
    border-radius: 30px;
    padding: 15px 20px;
    margin-right: 20px;
    margin-left: 26px;
}

.wp-btn:hover {
    color: black;
    background-color: #3aec7b;
}

.say-list {
    width: 100%;
    text-align: left;
    background-color: var(--renk1);
    margin-top: 15px;
    border-radius: 5px;
    color: white;
    overflow: hidden;
}

.sayfa-liste h3 {
    color: var(--renk1);
}

.say-list-title {
    position: relative;
    padding: 15px 10px;
}

.say-list:hover .say-list-top img {
    filter: brightness(0.6);
}

.say-list-top {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.say-list:hover .say-list-top::before {
    transform: scale(1);
}

.say-list-top::before {
    content: "\f002";
    font: var(--fa-font-solid);
    color: white;
    font-size: 16px;
    position: absolute;
    z-index: 4;
    transform: scale(0);
    transition: all .3s;
}

.say-list-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.say-list:hover .say-list-title::before, .say-list.active .say-list-title::before {
    width: calc(15% + 7px);
}

.say-list-title::before {
    content: "";
    position: absolute;
    transition: all .3s;
    height: 100%;
    width: 15%;
    background-image: url("../img/say-list.png");
    right: 10px;
    bottom: -3px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.say-list:hover h5, .say-list.active h5 {
    transform: translateX(5px);
}

.say-list h5 {
    font-size: 16px;
    transition: all .4s;
}

.yorum {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.yorum-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.yorum-title {
    width: 80%;
    color: white;
}

.btn-style-1 {
    background-color: var(--renk1);
    color: white;
    padding: 5px 30px;
    display: inline-flex;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-style-1 i {
    color: white;
    transition: all .4s;
    margin-left: 5px;
}

.btn-style-1:hover i {
    color: var(--renk1);
    transform: translateX(10px);
}

.btn-style-1:hover {
    color: white;
}

.btn-style-1 span {
    position: relative;
    z-index: 2;
}

.btn-style-1:hover span {
    color: var(--renk1);
}

.btn-style-1:hover {
    border: 1px solid var(--renk1);
    background-color: white;
}

.harita iframe {
    height: 400px;
    width: 100%;
}

address p:hover i::after {
    transform: scale(1.1);
    opacity: 0;
}

address a:hover {
    color: black;
}

address i::after {
    content: "";
    width: 120%;
    height: 120%;
    transition: all .4s;
    border-radius: 50%;
    position: absolute;
    border: 1px solid var(--renk1);
}

address i {
    background-color: var(--renk1);
    width: 40px;
    height: 40px;
    color: white;
    position: relative;
    border-radius: 50%;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

.slider .swiper-slide .slider-yazi {
    opacity: 0 !important;
}

.slider .swiper-slide-active .slider-yazi {
    opacity: 1 !important;
}

.asamalar {
    background-color: transparent;
    color: white;
    position: relative;
}

.asama-kutu {
    width: 100%;
    aspect-ratio: 40/30;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all .4s;
    padding: 0 50px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.asama-icon {
    position: absolute;
    color: var(--renk1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    bottom: -15px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    align-items: center;
}

.asama-kutu::before {
    content: "\f054";
    font: var(--fa-font-solid);
    color: white;
    background-color: var(--renk1);
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -15px;
}

.asama-row .col-4:last-child .asama-kutu::before {
    display: none;
}

.asama-row .col-4:last-child .asama-kutu span::before {
    display: none;
}

.asama-row .col-4:last-child .asama-kutu span {
    position: relative;
    background-color: transparent;
    height: auto;
    display: block;
    width: auto;
    top: 0;
}

.asama-row .col-4:last-child .asama-kutu p {
    margin-bottom: 30px;
}

.asama-kutu:hover {
    box-shadow: rgba(149, 157, 165, 0.5) 0 8px 24px;
}

.talep-kutu {
    background: linear-gradient(135deg, rgba(69, 139, 20, 1) 0%, rgba(102, 179, 49, 1) 100%);
    padding: 0 30px;
}

.talep-kutu::after {
    content: "\f00c";
    font: var(--fa-font-solid);
    font-size: 32px;
    opacity: 0.5;
    color: white;
    position: absolute;
    right: 15px;
    bottom: 5px;
}

.talep-kutu span {
    background-color: transparent !important;
    top: 5px !important;
}

.talep-kutu span::before {
    display: none;
}

.talep-kutu p, .talep-kutu span {
    color: white !important;
}

.talep-kutu::before {
    display: none;
}

.asama-kutu span {
    font-size: 22px;
    transition: all .4s;
    font-weight: bolder;
    color: var(--renk1);
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.asama-kutu:hover span svg {
    opacity: 1;
    transition-delay: 0s;
}

.asama-kutu span svg {
    position: absolute;
    opacity: 0;
    transition-delay: 0.4s;
    transition: all .4s;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
}

.asama-kutu:hover span::before {
    transform: rotate(180deg);
}

.asama-kutu span::before {
    content: "";
    background-image: url("../img/cizgi.png");
    width: calc(100% + 10px);
    background-size: 100% 100%;
    transition: all 0.4s;
    background-repeat: no-repeat;
    position: absolute;
    aspect-ratio: 1/1;
}

.asama-kutu p {
    transition: all .4s;
    color: var(--renk1);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    position: relative;
    z-index: 5;
    margin: 0;
    font-weight: 600;
}

.teknik-btn {
    background: var(--renk1);
    padding: 8px 15px;
    color: white;
    border-radius: 0 0 8px 8px;
    border: 1px solid #f8f8ff;
}

.sayfaHeader .teknik-btn {
    background-color: rgba(248, 248, 255, 1);
    color: var(--renk1);
}

.hover-yok::before {
    display: none;
}

.slider .data-kutu {
    content: "";
    width: 440px;
    height: 256px;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.is-sticky .navbar {
    transform: translateY(10px);
}

.sosyalMedyaUl {
    padding-left: 20px;
}

.sosyalMedyaUl li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s;
    align-items: center;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-bar {
    width: 25%;
    margin-top: 15px;
    height: 10px;
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.05) 0 8px 24px;
    border-radius: 10px;
}

.progress-ic {
    position: absolute;
    width: 0;
    background-color: var(--renk1);
    height: 100%;
    left: 0;
}

.progress-bar span {
    text-align: center;
    color: black;
    z-index: 3;
    width: 100%;
    position: absolute;
    font-size: 10px;
}

.teknikDestekBtn::before, .teknikDestekBtn::after {
    display: none;
}

.teknikDestekBtn {
    position: absolute;
    right: 0;
    bottom: -55%;
}

.is-sticky .teknikDestekBtn {
    display: none;
}

.marka-kutu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all .4s;
}

.marka-top {
    border: 2px solid #ffffff;
    background-color: #fbfbff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    aspect-ratio: 4 / 3;
    transition: all .4s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marka-kutu:hover .marka-top::before {
    right: 150%;
    transition: all .8s;
}

.marka-title {
    color: black;
    margin-top: 5px;
}

.marka-top::before {
    content: "";
    width: 20%;
    height: 100%;
    transform: skew(45deg);
    position: absolute;
    top: 0;
    right: -70%;
    background-color: white;
    opacity: 0.7;
    filter: blur(10px);
}

.marka-kutu img {
    transition: all .3s;
}

.marka-kutu:hover .marka-top {
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.turkey {
    background-image: url("../img/turkey.png");
    width: 100%;
    min-height: 240px;
    background-size: 100% auto;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 30px;
}

main {
    background-image: linear-gradient(to bottom, #ecf5f50d, #ecf5ec, #ecf5ec, #ecf5ec, #e5f3ed, #e5f3ed, #e5f3ed, #e9f1e2, #aeff7696);
    overflow: hidden;
    width: 100%;
}

.circle2.surec:after {
    position: absolute;
    content: "";
    width: 193px;
    height: 236px;
    border: 2px solid #ffffff;
    background-color: transparent;
    box-shadow: 0 0 11px 1px rgb(204 204 204 / 22%);
    right: -7%;
    transform: rotate(45deg);
    top: 108px;
}

.circle2.marka:before {
    position: absolute;
    content: "";
    width: 193px;
    height: 236px;
    border: 2px solid #ffffff;
    background-color: transparent;
    animation: don 15s infinite linear;
    box-shadow: 0 0 11px 1px rgb(204 204 204 / 22%);
    left: -7%;
    transform: rotate(45deg);
    top: 100%;
}

@keyframes don {
    100% {
        transform: rotate(360deg);
    }
}

.circle2, .circle1 {
    position: relative;
}

.circle1:after {
    position: absolute;
    content: "";
    width: 225px;
    height: 225px;
    background-color: transparent;
    border: 1px solid #e5f3f3;
    border-radius: 150px;
    right: 1%;
    top: 20px;
    animation: logo-icon1 2.7s .7s infinite ease-in-out;
}

.circle1:before {
    position: absolute;
    content: "";
    width: 180px;
    height: 180px;
    background-color: #e5f3f3;
    border-radius: 150px;
    right: 2%;
    top: 35px;
    animation: logo-icon4 3.1s .5s infinite ease-in-out;
}

@keyframes logo-icon1 {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 12px)
    }
}

@keyframes logo-icon3 {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 18px)
    }
}

@keyframes logo-icon4 {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 16px)
    }
}

.ucgen {
    position: relative;
}

.ucgen:before {
    position: absolute;
    content: "";
    width: 187px;
    height: 229px;
    border: 1px solid #c5cfce;
    background-color: transparent;
    right: 97%;
    transform: rotate(45deg);
    top: 38px;
}

.ucgen:after {
    position: absolute;
    content: "";
    width: 251px;
    height: 266px;
    border: 1px solid #c5cfce;
    background-color: transparent;
    right: 94%;
    transform: rotate(45deg);
    top: 10px;
}

.hizmet-card, .haber-card {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    transition: all .4s;
}

.hizmet-card:hover .hizmet-card-top, .haber-card:hover .hizmet-card-top {
    box-shadow: rgba(149, 157, 165, 0.4) 0 8px 24px;
}

.hizmet-card-top, .haber-card-top {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
}

.hizmet-card-top img, .haber-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.hizmet-card-title, .haber-card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-top: -1px;
    padding: 10px 5px;
    width: 92%;
    margin-left: 4%;
    position: relative;
    height: 40px;
    border-top: 2px solid var(--renk1);
    z-index: 4;
}

.hizmet-card-title::before, .haber-card-title::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 30px 25px;
    border-color: transparent transparent white transparent;
    top: -29px;
    position: absolute;
}

.hizmet-card-title .baslik, .haber-card-title .baslik {
    font-size: 12px;
    margin: 0;
    color: black;
    transition: all .4s;
}

.hizmet-card-title i {
    position: absolute;
    top: -15px;
    color: var(--renk1);
    transition: all .3s;
    font-size: 11px;
}

.hizmet-card:hover .hizmet-icon-2 {
    transform: translateX(20px);
    opacity: 0;
    transition: all .1s;
}

.hizmet-card:hover .hizmet-icon-1 {
    transform: translateX(0);
    opacity: 1;
}

.hizmet-card-title .hizmet-icon-1 {
    transform: translateX(-20px);
    opacity: 0;
}

.hizmet-card-top::before, .haber-card-top::before {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -50%;
    background-color: white;
    transform: skew(45deg);
    opacity: 0.5;
    filter: blur(10px);
}

.hizmet-card:hover .hizmet-card-top::before, .haber-card:hover .haber-card-top::before {
    right: 150%;
    transition: all .8s;
}

.hizmet-hvr {
    position: absolute;
    color: white;
}

.hizmet-hvr i {
    margin-left: 10px;
    transition: all .4s;
    transform: translateX(-30px);
    opacity: 0;
}

.hizmet-hvr span {
    transition: all .4s;
    transform: translateX(-30px);
    opacity: 0;
    display: inline-block;
}

.hizmet-card:hover .hizmet-hvr span {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.hizmet-card:hover .hizmet-hvr i {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.hizmetler .swiper-slide {
    display: flex;
    justify-content: center;
}

.yorum-kutu {
    width: 100%;
    background-color: #fbfbff;
    display: flex;
    aspect-ratio: 40/35;
    margin-top: 30px;
    position: relative;
    border-radius: 8px;
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    padding: 20px 10px;
    justify-content: space-between;
}

.yorum-kutu.tek {
    background-color: transparent;
    aspect-ratio: auto;
    box-shadow: none;
}

.yorum-ic {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.yorum-kutu.tek .yorum-kutu-top::before {
    display: none;
}

.yorum-kutu.tek .yorum-kutu-top {
    align-items: center;
}

.yorum-kutu.tek .yorum-kutu-title {
    height: auto;
}

.yorum-kutu-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: start;
    padding-left: 5px;
}

.yorum-kutu-top::before {
    content: "";
    width: 90%;
    height: 1px;
    background-color: #d9d9dd;
    left: 5%;
    position: absolute;
    top: -20px;
}

.yorum-kutu:hover .yorum-kutu-top i {
    transform: rotateY(180deg);
    opacity: 1;
}

.yorum-kutu-top i {
    position: absolute;
    transition: all .4s;
    top: 0;
    right: 20px;
    opacity: 0.5;
    font-size: 42px;
    color: var(--renk1);
}

.yorum-kutu-top img {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    object-fit: cover;
}

.yorum-kutu h3 {
    font-size: 16px;
    margin-top: 10px;
}

.yorum-kutu-title {
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-bottom: 10px;
}

.yorum-kutu p {
    font-size: 11px;
}

.haber-card-icon {
    position: absolute;
    top: 0;
    transform: translateX(-12px);
}

.haber-card-icon::before {
    content: "";
    width: 17px;
    height: 14px;
    top: -19px;
    background-color: var(--renk1);
    position: absolute;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    transition: all .2s;
    transform: translateX(2px);
}

.haber-card-icon::after {
    content: "";
    width: 12px;
    height: 9px;
    top: -16px;
    transform: translateX(0);
    background-color: var(--renk2);
    position: absolute;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    transition: all .2s;
}

.haber-card:hover .haber-card-top span {
    background-color: var(--renk1);
}

.haber-card-top span {
    position: absolute;
    transition: all .4s;
    background-color: var(--renk2);
    color: white;
    top: 0;
    padding: 5px 15px;
    left: 0;
    border-radius: 0 0 10px 0;
}

.swiper-button-next::before, .swiper-button-prev::before {
    content: "";
    width: 30px;
    height: 20px;
    background-color: var(--renk1);
    position: absolute;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    transition: all .2s;
}

.swiper-button-next::after, .swiper-button-prev::after {
    content: "";
    width: 20px;
    height: 15px;
    transform: translateX(-8px);
    background-color: var(--renk2);
    position: absolute;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
    transition: all .2s;
}

.swiper-button-prev {
    transform: rotate(180deg);
}

.slogan {
    background-image: url("../img/slogan-bg.png");
    height: 417px;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    background-color: var(--renk1);
}

.slogan-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 10;
    top: 0;
}

.slogan::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slogan span {
    font-size: 32px;
    position: relative;
    text-align: center;
    font-weight: 700;
    pointer-events: none;
    -webkit-text-stroke: 1px #97ff58;
    -webkit-text-fill-color: #97ff58;
}

.slogan-1 {
    z-index: 10;
}

.slogan .animation {
    position: absolute;
    font-size: 69px;
    text-align: center;
    font-weight: 700;
    color: #82d152;
    pointer-events: none;
    -webkit-text-stroke: 1px #82d152;
    -webkit-text-fill-color: var(--renk1);
    animation: slogan 20s infinite linear;
}

@keyframes slogan {
    0% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(-120%);
    }
}

.card {
    margin: 0;
}

.card .btn:focus {
    box-shadow: none;
}

.card-header i {
    position: absolute;
    right: 15px;
    transition: all .4s;
}

.card-header .collapsed i {
    transform: rotate(180deg);
}

.card-header {
    background-color: #fbfbff;
}

.accordion > .card > .card-header {

}

.accordion > .card > .card-body {
    border: none;
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.countreup {
    border-radius: 8px;
    padding: 20px 10px;
    transition: all .4s;
    position: relative;
    width: 80%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    margin-left: 10%;
    margin-top: 70px;
    align-items: center;
    flex-direction: column;
}

.countreup:hover::before {
    top: -15px;
}


.countreup::before {
    content: "";
    width: 50%;
    height: 50%;
    transition: all .3s;
    position: absolute;
    border-radius: 10px;
    top: -10px;
    transform: rotate(45deg);
    background-color: var(--renk1);
    z-index: -1;
}

.rakam-bg {
    position: absolute;
    width: 90%;
    background-color: white;
    z-index: -1;
    border-radius: 8px;
    transition: all .4s;
    height: 90%;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    transform: rotate(45deg);
}

.countreup:hover .rakam-bg {
    box-shadow: rgba(149, 157, 165, 0.4) 0 8px 24px;
}

.yorum-kutu.tek .yorum-kutu-top i {
    transform: translateX(40px) translateY(-30px);
    right: auto;
}

.footer-list {
    color: var(--renk1);
}

.footer-list h3 {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.footer-list ul {
    margin-top: 30px;
}

.footer-list h3::before {
    content: "";
    background-image: url("../img/yazibefore.png");
    width: 100%;
    aspect-ratio: 51 / 4;
    position: absolute;
    left: 0;
    bottom: -12px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.footer-ust {
    background-image: url("../img/footer.png");
    width: 100%;
    height: 185px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    display: inline-flex;
    justify-content: center;
    position: relative;
}

.footer-ust::before {
    content: "";
    background-image: url("../img/harita.png");
    width: 141px;
    bottom: 0;
    height: 60px;
    background-size: 100%;
    position: absolute;
}

.footer-ust img {
    width: 20%;
    position: absolute;
    max-width: 285px;
}

.platform-kutu {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.4) 0 5px 6px;
    transition: all .4s;
}

.platform-kutu:hover {
    box-shadow: rgba(149, 157, 165, 0.4) 0 8px 24px;
}

.sss-top p {
    position: absolute;
    top: 0;
    padding: 15px 10px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
    transition: all .4s;
    opacity: 0;
    transform: translateY(10px);
}

.sss-card:hover .sss-top img {
    filter: brightness(0.3);
}

.sss-card:hover .sss-top p {
    opacity: 1;
    transform: translateY(0);
}

.header-col {
    z-index: 5;
}

.hc-offcanvas-nav .nav-back a, .hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a {
    color: var(--renk1);
}

.hc-offcanvas-nav .nav-back a, .hc-offcanvas-nav .nav-item-link i, .hc-offcanvas-nav li.nav-close i {
    margin-right: 10px;
}

.hc-offcanvas-nav .nav-content > h2, .hc-offcanvas-nav .nav-content > h3, .hc-offcanvas-nav .nav-content > h4, .hc-offcanvas-nav .nav-content > h5, .hc-offcanvas-nav .nav-content > h6 {
    color: var(--renk1);
}

.galeri-kutu {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.galeri-kutu::before {
    content: "\f424";
    font: var(--fa-font-solid);
    font-size: 16px;
    transform: scale(0);
    color: white;
    position: absolute;
    z-index: 5;
    transition: all .3s;
}

.galeri-kutu:hover::before {
    transform: scale(1);
}

.galeri-kutu img {
    transition: all .4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeri-kutu:hover img {
    filter: brightness(0.5);
}

.harf {
    display: inline-block;
}

.title-baslik-2 {
    position: absolute;
    transform: translateY(20px);
    opacity: 0;
}

.title-baslik-1 {
    position: absolute;
}

.hizmet-card:hover .title-baslik-1, .haber-card:hover .title-baslik-1 {
    transform: translateY(-20px);
    transition: all .2s;
    opacity: 0;
}

.hizmet-card:hover .title-baslik-2, .haber-card:hover .title-baslik-2 {
    transform: translateY(0);
    opacity: 1;
}

.iletisim-img img {
    position: absolute;
    width: 100%;
    right: 0;
    pointer-events: none;
    top: 0;
}

.iletisim-img img:nth-child(3) {
    animation: iletisim-3 5s infinite linear;
}

.iletisim-img img:nth-child(2) {
    animation: iletisim-2 5s infinite linear;
}

.iletisim-img img:nth-child(1) {
    position: relative;
    z-index: 4;
    animation: iletisim-1 5s infinite linear;
}

@keyframes iletisim-1 {
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes iletisim-2 {
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes iletisim-3 {
    50% {
        transform: translateX(20px) translateY(-20px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.yorumlar, .sss {
    position: relative;
}

.yorumlar {
    background-image: url("../img/yorum-bg.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.yorumlar .shape-1::before {
    content: "";
    background-image: url("../img/shape-2.png");
    width: 45px;
    height: 67px;
    position: absolute;
    right: 95%;
    transform: rotate(90deg);
    animation: animation2 5s infinite linear;
}

.yorumlar .shape-1::after {
    content: "";
    background-image: url("../img/shape-3.png");
    width: 45px;
    height: 67px;
    position: absolute;
    left: 95%;
    top: 50%;
    animation: animation1 5s infinite linear;
}

.sss .shape-1::before {
    content: "";
    background-image: url("../img/shape-4.png");
    width: 90px;
    height: 90px;
    background-size: 100%;
    position: absolute;
    opacity: 0.3;
    left: 90%;
    top: 50%;
    animation: don 10s infinite linear;
}

@keyframes don {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation1 {
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes animation2 {
    50% {
        transform: translateX(20px) rotate(90deg);
    }
    100% {
        transform: translateX(0) rotate(90deg);
    }
}

.bizKimiz .shape-1::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 0 0 11px 1px rgb(204 204 204 / 22%);
    right: 87%;
    animation: animation1 5s infinite linear;
}

.urunler .shape-1::before {
    content: "";
    background-image: url("../img/shape-1.png");
    width: 242px;
    height: 399px;
    position: absolute;
    left: 0;
    opacity: 0.3;
}

.haber-card-title {
    height: 80px;
}

.biz-kutu {
    background-color: #e7f4ed;
    width: 100%;
    height: 100%;
    padding: 15px 5px;
    display: flex;
    border-radius: 8px;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    transition: all .4s;
    position: relative;
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.biz-kutu::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--renk1);
    right: -2px;
    border-radius: 8px;
    top: -2px;
    transition: all .2s;
    z-index: -1;
}

.biz-kutu:hover::before {
    right: -5px;
    top: -5px;
}

.biz-kutu:hover {
    box-shadow: rgba(149, 157, 165, 0.5) 0 8px 24px;
}

.biz-kutu i {
    color: var(--renk1);
    font-size: 18px;
}

.biz-kutu span {
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
}

.biz-kutu p {
    font-size: 12px;
    margin-top: 10px;
}

.anasayfa-hizmetler {
    position: relative;
    aspect-ratio: 1/1;
    width: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.hizmet-baslik {
    position: relative;
    z-index: 5;
    font-weight: 500;
    color: black;
    font-size: 12px;
}

.anasayfa-hizmetler::before {
    content: "";
    width: 80%;
    height: 80%;
    position: absolute;
    transform: rotate(45deg);
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    background-color: #fff;
    transition: all .4s;
}

.anasayfa-hizmetler i {
    color: var(--renk1);
    z-index: 3;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    top: -15px;
    transition: all .4s;
}

.anasayfa-hizmetler:hover i::after {
    transform: rotate(180deg);
    transition-delay: 0.2s;
}

.anasayfa-hizmetler i::after {
    content: "";
    background-image: url("../img/cizgi.png");
    width: calc(100% + 10px);
    background-size: 100% 100%;
    top: -5px;
    transition: all 0.4s;
    background-repeat: no-repeat;
    position: absolute;
    aspect-ratio: 1/1;
}

.anasayfa-hizmetler:hover i {
    color: white;
    top: -20px;
    background-color: var(--renk1);
}

.anasayfa-hizmetler::after, .sss-kutu::after, .countreup::after {
    content: "";
    width: 80px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.4);
    filter: blur(4px);
    position: absolute;
    border-radius: 50%;
    bottom: -35px;
    opacity: 0;
    transition: all .4s;
}
.countreup::after{
    bottom: -50px;
}

.anasayfa-hizmetler:hover::after, .sss-kutu:hover::after {
    opacity: 1;
    bottom: -25px;
}
.countreup:hover::after{
    opacity: 1;
    bottom: -35px;
}

.hizmet-row, .swipersss {
    margin: 0;
    padding: 0 15px !important;
}

.asama-daire {
    fill: none;
    stroke: var(--renk1);
}

.sss-kutu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1/1;
}

.sss-kutu::before {
    content: "";
    width: 83%;
    aspect-ratio: 1/1;
    transform: rotate(45deg);
    background-color: white;
    position: absolute;
    z-index: -1;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.sss-top {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
}

.sss-top::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transition: all .4s;
    background-color: white;
    z-index: -1;
}

.sss-kutu:hover .sss-top::before {
    top: -80px;
    opacity: 0.2;
    width: 120px;
}

.sss-kutu:hover .sss-top {
    top: 20px;
    box-shadow: none;
    color: white;
}

.sss-top i {
    color: var(--renk1);
}

.sss-title {
    font-size: 12px;
}

.sss-cevap {
    position: absolute;
    background-color: white;
    min-width: 300px;
    transform: translateY(-80%);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    top: 0;
    justify-content: center;
    border-radius: 8px;
    padding: 10px;
    color: black;
    display: flex;
    transition: all .4s;
    visibility: hidden;
    font-size: 12px;
    opacity: 0;
}

.sss-cevap::before {
    content: "";
    width: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    height: 15px;
    bottom: -7.5px;
    background-color: white;
    position: absolute;
    z-index: -1;
    transform: rotate(45deg);
}

.sss-kutu:hover .sss-cevap {
    opacity: 1;
    transform: translateY(-100%);
    visibility: visible;
    transition-delay: 0.1s;
}

.swiper-slide:hover {
    z-index: 5;
}

.sss-sag-slide .sss-cevap {
    right: 0;
}

.sss-sag-slide .sss-cevap::before {
    right: 24%;
}

.sss-sol-slide .sss-cevap {
    left: 0;
}

.sss-sol-slide .sss-cevap::before {
    left: 24%;
}

.swiperMobil .swiper-slide {
    opacity: 0;
    transition: all .4s;
}

.swiperMobil .swiper-slide-active, .swiperMobil .swiper-slide-next, .swiperMobil .swiper-slide-prev {
    opacity: 1 !important;
}

.mobil-sol {
    font-size: 38px;
    color: var(--renk1);
    font-weight: 700;
}

.mobil {
    position: relative;
}

.swiper-mobil-next {
    right: 30px !important;
}

.swiper-mobil-prev {
    left: 30px !important;
}

.sss {
    background-image: url("../img/sss-bg.png");
    background-position: center center;
    background-size: 100% auto;
}

.swiper-sss-next, .swiper-sss-prev {
    top: 65%;
}

.is-sticky .navbar-brand img {
    width: 80% !important;
}

.pointer-none {
    pointer-events: none;
}

.navbar {
    transform: translateY(10px);
}

.mobil-img {
    animation: animation1 10s infinite linear;
    width: 70%;
}

.belge-img img {
    transition: all .4s;
}

.belge-kutu:hover .belge-img {
    box-shadow: rgba(149, 157, 165, 0.5) 0 8px 24px;
}

.belge-img {
    overflow: hidden;
    border-radius: 8px;
    transition: all .4s;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.belge-img:hover img {
    transition: all .4s;
    transform: scale(1.1);
}

.belge-baslik {
    width: 100%;
    text-align: center;
    font-weight: bold;
    height: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.pop-kutu, .pop-up img {
    width: 100%;
    height: 100%;
}

.pop-up img {
    border-radius: 10px;
}

.pop-kapat {
    cursor: pointer;
}

.pop-kutu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, .7)
}

.pop-up .gosterme {
    position: absolute;
    bottom: 12px;
    border-radius: 5px;
    padding: 3px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pop-up .kapat {
    position: absolute;
    bottom: 10px;
    border-radius: 5px;
    padding: 3px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.kapat span i, .gosterme span i {
    font-size: 9px;
    top: 5px;
    position: relative !important;
    left: -9px;
    right: auto;
    float: left;
}

.pop-up .gosterme span, .pop-up .kapat span {
    z-index: 2;
    transition: all .4s;
    font-size: 14px;
}

.pop-up .kapat:hover span i, .pop-up .gosterme:hover span i {
    color: black;
}

.pop-up .gosterme:hover span, .pop-up .kapat:hover span {
    color: black;
}

.pop-up .gosterme:hover::before, .pop-up .kapat:hover::before {
    width: 120%;
    left: -10%;
}

.pop-up .gosterme::before, .pop-up .kapat::before {
    content: "";
    left: 15px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    width: 0;
    aspect-ratio: 1/1;
    transition: all .4s;
}

.pop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.pop-up {
    margin: 0 15px;
    z-index: 3000 !important;
    border-radius: 10px;
    max-width: 700px;
    display: flex;
    position: relative;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.pop-up img {
    border: 10px solid white;
}

.pop-up i {
    position: absolute;
    top: -13px;
    right: -13px;
    cursor: pointer;
    font-size: 26px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    transition: all .2s;
    opacity: 1 !important;
    color: white;
}

.pop-up i:hover {
    color: white;
    transform: scale(1.1);
}
.qookies {
    z-index: 10000;
}
@media screen and (min-width: 998px) {
    section {
        position: relative;
    }

    .shape-5::before {
        content: "";
        background-image: url("../img/shape-5.png");
        width: 37px;
        height: 37px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .shape-6::after {
        content: "";
        background-image: url("../img/shape-6.png");
        width: 37px;
        height: 37px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .bizKimiz .shape-5::before {
        right: 5%;
        top: 20%;
        animation: don 15s infinite linear;
    }

    .yorumlar .shape-5::before {
        left: 5%;
        bottom: 20%;
        width: 20px;
        height: 20px;
        animation: animation1 5s infinite linear;
    }

    .rakamlarlaBiz .shape-5::before {
        right: 5%;
        bottom: 20%;
        width: 20px;
        height: 20px;
        animation: don 15s infinite linear;
    }

    .rakamlarlaBiz .shape-6::after {
        left: 5%;
        bottom: 0;
        animation: animation1 5s infinite linear;
    }

    .hizmetler .shape-6::after {
        left: 5%;
        top: 0;
        animation: don 10s infinite linear;
    }

    .hizmetler .shape-7::before {
        left: 2%;
        bottom: 20%;
        animation: animation1 10s infinite linear;
    }

    .yorumlar .shape-6::after {
        right: 5%;
        top: 40%;
        animation: don 15s infinite linear;
    }

    .shape-7::before {
        content: "";
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--renk1);
        position: absolute;
        background-color: transparent;
    }

    .blog .shape-7::before {
        top: 0;
        right: 40%;
        animation: animation1 5s infinite linear;
    }

    .mobil .shape-1::before {
        content: "";
        width: 30px;
        height: 30px;
        background-color: transparent;
        border: 1px solid var(--renk1);
        position: absolute;
        top: 20%;
        right: 10%;
        border-radius: 50%;
        animation: animation1 5s infinite linear;
    }

    .mobil .shape-1::after {
        content: "";
        width: 20px;
        height: 20px;
        background-color: transparent;
        border: 1px solid var(--renk1);
        position: absolute;
        bottom: 20%;
        left: 10%;
        border-radius: 50%;
        animation: animation1 8s infinite linear;
    }

    .mobil .shape-2::before {
        content: "";
        width: 20px;
        height: 20px;
        background-color: var(--renk1);
        opacity: 0.5;
        border: 1px solid var(--renk2);
        position: absolute;
        bottom: 5%;
        left: 50%;
        box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
        border-radius: 50%;
        animation: animation2 5s infinite linear;
    }

    .mobil .shape-2::after {
        content: "";
        width: 20px;
        height: 20px;
        background-color: var(--renk2);
        border: 1px solid white;
        position: absolute;
        top: 25%;
        left: 10%;
        border-radius: 50%;
        animation: animation1 5s infinite linear;
    }

    .mobil .shape-3::after {
        content: "";
        width: 20px;
        height: 20px;
        background-color: var(--renk2);
        border: 1px solid white;
        position: absolute;
        top: 35%;
        left: 45%;
        border-radius: 20%;
        animation: iletisim-3 10s infinite linear;
    }

    .sayfa-yok {
        background-image: url("../img/404.png");
        background-position: top center;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }

    .swiper-button-next::before, .swiper-button-prev::before {
        width: 40px;
        height: 27px;
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        width: 30px;
        height: 22px;
    }

    .slider .data-kutu {
        display: block;
    }

    .asama-kutu p {
        transition: all .4s;
        color: var(--renk1);
    }

    .slogan span {
        font-size: 48px;
    }

    .yorum-kutu p {
        font-size: 14px;
    }

    .hizmet-card-title, .haber-card-title {
        padding: 10px;
    }

    .footer-ust::before {
        content: "";
        background-image: url("../img/harita.png");
        width: 441px;
        bottom: 0;
        height: 185px;
        position: absolute;
    }

    .footer-ust {
        background-image: url("../img/footer.png");
        width: 100%;
        height: 433px;
        background-repeat: no-repeat;
        background-position: center center;
        display: inline-flex;
        background-size: auto;
        justify-content: center;
        position: relative;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 5px 15px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .swiper-button-prev {
        left: -30px;
    }
}

@media screen and (min-width: 450px) and (max-width: 998px) {
    .talep-kutu {
        padding: 60px 30px !important;
    }

    .talep-kutu span {
        top: 4px !important;
    }

    .swiper-button-next::before, .swiper-button-prev::before {
        content: "";
        width: 40px;
        height: 27px;
        background-color: var(--renk1);
        position: absolute;
        clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
        transition: all .2s;
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        content: "";
        width: 30px;
        height: 22px;
        transform: translateX(-8px);
        background-color: var(--renk2);
        position: absolute;
        clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 50% 100%, 77% 50%, 50% 0);
        transition: all .2s;
    }

    .slider .data-kutu {
        display: block;
    }

    .footer-list h3 {
        font-size: 22px;
    }

    .navbar-brand img {
        width: 70% !important;
        margin-top: -30px !important;
    }

    .asama-kutu {
        max-height: 100px;
    }

    .footer-ust img {
        width: 40%;
    }

    .yorum-kutu p {
        font-size: 12px;
    }

    .footer-ust::before {
        width: 341px;
        height: 155px;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .footer-ust {
        background-size: 100%;
        height: 353px;
    }

    .asama-kutu p {
        font-size: 10px;
        font-weight: 500;
    }

    .swiper-button-next {
        right: -15px;
    }

    .swiper-button-prev {
        left: -15px;
    }
}

@media screen and (max-width: 450px) {
    .navbar-brand img {
        width: 50% !important;
        margin-top: -10px !important;
    }
}