/********** Template CSS **********/
:root {
    --primary: #0ECB81;
    /*** #16D5FF; ***/
    --secondary: #999999;
    --light: #e6f9f2;
    /*** #F2F8FE; ***/
    --dark: #111111;
    --white: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    fill: #fff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    min-width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 10vh;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--white);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-button {
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .herostart {
        padding-bottom: 35px;
        padding-top: 120px;
    }

    .heros_container {
        max-width: 1260px;
        padding: 0 20px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .heros {
        padding-top: 172px;
        padding-bottom: 56px;
    }

    .heros_container {
        margin: 0 auto;
        max-width: 1680px;
        padding: 0 30px;
    }
}

@media (max-width: 351px) {
    nav div a h2 {
        font-size: 14px;
    }

}

.navbar .btn:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.heros {
    z-index: 1;
    overflow: hidden;
    color: #deedf8;
    padding-top: 20vh;
    background-color: #1d2d5a;
    padding-bottom: 75px;
    pointer-events: none;
    background: linear-gradient(180deg,#1d2d5a -16.2%,rgba(255,255,255,0) 63.42%,rgba(29,45,90,.44) 77.25%,#0c1a30 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

.heros_vid {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .76;
}

.heros_vid video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100vh;
}

.heros_wrap {
    width: 100%;
    height: 80vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    position: relative;
    min-height: 80vh;
    max-height: 80vh;
    /* justify-content: space-between; */
}

.heros_wrap a {
    margin-top: 40px;
    pointer-events: auto;
}

.heros_title {
    text-align: center;
    text-shadow: 2px 2px 4px rgba(22, 26, 30, 0.5);
    color: #1e2d5a ;
    
}

/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 0 0 transparent;
    transition: box-shadow 0.5s ease;
}

.service-item:hover {
    box-shadow: 0 0 50px rgba(14, 203, 129, 0.5);
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}




/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary); 
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--light);
    border: 1px solid var(--primary);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 20px !important;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

.floating-social-btn:hover {
    background: #fff;
    color: #fff;
    border-color: #08c;
    fill: #0088cc;
}

.floating-social-btn {
    line-height: normal !important;
    vertical-align: center !important;
    background: #08c;
    color: #08c;
    position: fixed;
    right: 30px;
    bottom: 120px;
    font-size: 45px;
    border-color: #08c;
    z-index: 99;
    border: 1px solid transparent;
    border-radius: 50% !important;
    transition: .5s;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-family: "Font Awesome 5 Brands";
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;

}

.floating-social-btn:hover path{
    fill: #0088cc;
}

.telegram-footer {
    fill: #0ECB81;
}

.telegram-footer:hover {
    fill: #fff;
}

.floating-ws-btn:hover {
    background: #fff;
    color: #fff;
    border-color: #25D366;
    fill: #25D366;
}

.floating-ws-btn {
    line-height: normal !important;
    vertical-align: center !important;
    background: #25D366;
    color: #25D366;
    position: fixed;
    right: 30px;
    bottom: 180px;
    font-size: 30px;
    border-color: #25D366;
    z-index: 99;
    border: 1px solid transparent;
    border-radius: 50% !important;
    transition: .5s;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-family: "Font Awesome 5 Brands";
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    fill: #fff;

}

.floating-ws-btn:hover path{
    fill: #25D366;
}

.sticky-bottom {
    overflow: hidden;
    height: 50px;
    background: linear-gradient(180deg, #1e2d5a 0, #161A1E 100%);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: red;
    color: white;
    text-align: center;
    z-index: 99;
}

.partners {
	/* background-color: #2E3537;
	height: 100vh; */
	display: flex;
	align-items: center;
	justify-content: center;
    margin-top: 90vh;
    /* background: linear-gradient(180deg,#1d2d5a -16.2%,rgba(255,255,255,0) 63.42%,rgba(29,45,90,.44) 77.25%,#0c1a30 100%); */
    /* background: linear-gradient(180deg,#0c1a30 -15%,rgba(255,255,255,0) 63.42%,var(--primary) 150%, var(--light) 120.25%); */
    background: linear-gradient(180deg, #06112B 0%, var(--primary) 35%, #E6F9F2 100%)
    
}

.wrapper {
	/* background-color: #e6f9f2; */
	height: 130px;
	overflow: hidden;
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.wrapper:before, .wrapper:after {
	content: "";
	position: absolute;
	height: 130px;
	width: 150px;
	z-index: 2;
}

.wrapper:after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.wrapper:before {
	left: 0;
	top: 0;
}

.wrapper .track {
	display: flex;
	width: calc((150px * 24) + 120px);
	animation: scroll 15s 0.5s linear infinite;
}

.wrapper .logo {
	width: 150px;
    height: 65px;
    border: 2px solid #1e2d5a; 
    border-radius: 10px !important;
    background: linear-gradient(180deg, var(--light) 0%, var(--light) 50%, var(--primary) 80%, #1e2d5a 100%);
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .logo img {
	width: 130px;
    height: 65px;
    
}

@keyframes  scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc((-150px * 12) - 60px));
	}
}

.icoimgxl {
    height: 192px;
}
.icoimgl {
    height: 128px;
}
.icoimgs {
    height: 96px;
}

.factsm {
    margin-top: 1rem !important;
}

.enlargeable {
    cursor: pointer;
}

.enlargeable:hover {
    transform: scale(1.2); /* Fotoğrafı 1.2 kat büyütür */
    transition: transform 0.3s; /* Yumuşak geçiş efekti ekler */
}

#particles-js {
    position: absolute;
    overflow: hidden;
    height: 800px;
    max-width: 95vw;
    min-width: 95vw;
} 

.tickcenter{
    text-align: center;
    line-height: 32px !important;
}

.navbar .navbar-nav .nav-link:focus {
    color: #fff !important;
}

/*** Blog ***/
.blog-carousel {
    position: relative;
}

.blog-carousel .blog-item {
    position: relative;
    min-height: 400px;
    text-align: center;
    display: block;
    overflow: hidden;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background-color: var(--light);
}

.blog-carousel .blog-item img {
    height: 200px;
    object-fit: cover;
}

.blog-carousel .blog-item div {
    margin: 20px;
}

.blog-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--light);
    border: 1px solid var(--primary);
}