﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;
    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;
    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;
    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;

    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
    --text-primary: #0d6efd;
    --dark-text: rgb(29,29,31);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #F4F4F4;
    font-family: Poppins;
    overflow-x: hidden;
}

p{
    text-indent:1.2em;
}

h1,.h1,h2,.h2,.fw-bold {
    font-weight: 700 !important;
}

h3,.h3,h4,.h4,.fw-medium {
    font-weight: 600 !important;
}

h5,.h5,h6,.h6,.fw-semi-bold {
    font-weight: 500 !important;
}

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

#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;
}

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

.btn-primary,.btn-outline-primary:hover {
    color: var(--light);
}

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

.btn-sm-square {
    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;
}

.facts,.quote {
    background: rgba(15, 66, 41, .6);
}

.carousel-2 {
    position: relative;
    height: calc(100vh + 20px);
    overflow: hidden;
    margin-top: -8px;
    background-image: url('../images/t925-bg,2770.png');
    background-repeat:no-repeat;
    background-size:cover;
    color:#fff;
}

.carousel-2 .list {
    position: absolute;
    width: 90%;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-2 .list .item {
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}

.carousel-2 .list .item:nth-child(n + 6) {
    opacity: 0;
}

.carousel-2 .list .item:nth-child(2) {
    z-index: 10;
    transform: translateX(0);
}

.carousel-2 .list .item img {
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}

.carousel-2 .list .item .introduce {
    opacity: 0;
    pointer-events: none;
}

.carousel-2 .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s;
}

.carousel-2 .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
}

.carousel-2 .list .item .introduce .topic {
    font-size: 4em;
    font-weight: 500;
}

.carousel-2 .list .item .introduce .des {
    font-size: small;
    color: #5559;
}

.carousel-2 .list .item .introduce .seeMore {
    font-family: Poppins;
    transition: background 0.5s;
}

.carousel-2 .list .item:nth-child(1) {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}

.carousel-2 .list .item:nth-child(3) {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}

.carousel-2 .list .item:nth-child(4) {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}

.carousel-2 .list .item:nth-child(5) {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}

.carousel-2 .list .item:nth-child(2) .introduce .title,
.carousel-2 .list .item:nth-child(2) .introduce .topic,
.carousel-2 .list .item:nth-child(2) .introduce .des,
.carousel-2 .list .item:nth-child(2) .introduce .seeMore {
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

.carousel-2 .list .item:nth-child(2) .introduce .topic {
    animation-delay: 1.2s;
}

.carousel-2 .list .item:nth-child(2) .introduce .des {
    animation-delay: 1.4s;
}

.carousel-2 .list .item:nth-child(2) .introduce .seeMore {
    animation-delay: 1.6s;
}

.carousel-2.next .item:nth-child(1) {
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}

.carousel-2.next .item:nth-child(2) {
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

.carousel-2.next .item:nth-child(3) {
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}

.carousel-2.next .item:nth-child(4) {
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}

.carousel-2.prev .list .item:nth-child(5) {
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}

.carousel-2.prev .list .item:nth-child(4) {
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

.carousel-2.prev .list .item:nth-child(3) {
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}

.carousel-2.prev .list .item:nth-child(2) {
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}

/* detail  */
.carousel-2 .list .item .detail {
    opacity: 0;
    pointer-events: none;
}
/* showDetail */
.carousel-2.showDetail .list .item:nth-child(3),
.carousel-2.showDetail .list .item:nth-child(4) {
    left: 100%;
    opacity: 0;
    pointer-events: none;
}

.carousel-2.showDetail .list .item:nth-child(2) {
    width: 100%;
}

.carousel-2.showDetail .list .item:nth-child(2) .introduce {
    opacity: 0;
    pointer-events: none;
}

.carousel-2.showDetail .list .item:nth-child(2) img {
    right: 50%;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail {
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 4em;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .specifications {
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .specifications div {
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1) {
    font-weight: bold;
}

.carousel-2.carousel-2.showDetail .list .item:nth-child(2) .checkout button {
    font-family: Poppins;
    background-color: transparent;
    border: 1px solid #5555;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}

.carousel-2.carousel-2.showDetail .list .item:nth-child(2) .checkout button:nth-child(2) {
    background-color: #693EFF;
    color: #eee;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .title,
.carousel-2.showDetail .list .item:nth-child(2) .detail .des,
.carousel-2.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel-2.showDetail .list .item:nth-child(2) .detail .checkout {
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .des {
    animation-delay: 1.2s;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .specifications {
    animation-delay: 1.4s;
}

.carousel-2.showDetail .list .item:nth-child(2) .detail .checkout {
    animation-delay: 1.6s;
}

.arrows {
    position: absolute;
    bottom: 40px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}

#prev,#next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #5555;
    font-size: large;
    bottom: 20%;
    left: 10%;
}

#next {
    left: unset;
    right: 10%;
}

#back {
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border:2px solid #fff;
    font-family: Poppins;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    transition: 0.5s ease-in-out;
    background:#fff;
}

#back:hover{
    background:#fff;
    box-shadow:0 0 2px rgba(0,0,0,.1);
    margin-bottom:10px;
}

.carousel-2.showDetail #back {
    opacity: 1;
}

.carousel-2.showDetail #prev,
.carousel-2.showDetail #next {
    opacity: 0;
    pointer-events: none;
}

.carousel-2::before {
    width: 500px;
    height: 300px;
    content: '';
    /*background-image: linear-gradient(70deg, #DC422A, blue);*/
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}

.carousel-2.showDetail::before {
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: rgba(15, 66, 41, .6);*/
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity:0;
}

.fadeInUp-delay {
    animation-delay: .5s;
}

.fadeInUp-delay-btn{
    animation-delay:.8s;
}

.fadeInUp-delay-btn-2 {
    animation-delay: 1s;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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;
    margin-right: 10px;
}

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

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

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

/* HOME/INDEX */

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.social a {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    clear: both;
    margin-top: 10px;
    width: 41px;
    height: 41px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(0, 0, 0, .3);
    position: relative;
    transition: .5s;
}

.social a svg {
    fill: #fff;
    transition: .5s;
}

.social a:hover{
    background:#696cff;
}

.absolute-title {
    position: absolute;
    bottom: 40%;
    left: -10%;
    transform: translateY(-40%) rotate(-90deg);
}

.circle-nav-pagination{
    height:100%;
    float:right;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
    
.circle-nav-pagination li {
    list-style-type: none;
    position: relative;
}

.circle-nav-pagination li a {
    display: block;
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    background: #0d6efd;
    margin-bottom: 2.5em;
}

.circle-nav-pagination li a.active {
    outline: 2px solid #696cff;
    outline-offset: 3px;
}

.circle-nav-pagination-label {
    display: none;
    position: absolute;
    right: 200%;
    top: 0;
    background: #efefef;
    box-shadow:0 0 1px rgba(33,33,33,.5);
    border-radius:4px;
    padding: 5px;
    transition: .5s ease-in-out;
    white-space: nowrap;
}

.circle-nav-pagination li a:hover + .circle-nav-pagination-label {
    transition: .5s ease-in-out;
    display: block;
}

#main-overlay{
    width:100%;
    height:100vh;
    position:absolute;
    left:0;
    top:0;
    background:rgba(0,0,0,.915);
    z-index:999;
    font-weight:lighter
}

.a-btn{
    
    float:right;
    padding:11px;
    background:rgb(0,69,219);
    border-radius:40px;
    cursor:pointer;
    transition:.5s ease-in-out;
}

.a-btn span {
    color: #fff;
}

.a-btn:hover{
    background:rgb(0, 37, 106);
}

.arrow-container{
    background:#fff;
}

.arrow-container i {
    color: #0d6efd;
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Başlangıçta elemanları gizle */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(300px);
    transition: all 0.8s ease-out;
}

/* Görünür olduğunda uygulanacak sınıf */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-parallax {
    transform: translateY(0px);
    transition: transform 0.1s linear; /* smooth hareket için */
}
#m1,#m2,#m3,#m4,#m5,#m6,#m7,.nav__link-2{
    color:#222;
}


@keyframes showContent {
    from {
        transform: translateY(-30px);
        filter: blur(10px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes transformFromPosition2 {
    from {
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}

@keyframes transformFromPosition3 {
    from {
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}

@keyframes transformFromPosition4 {
    from {
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}

@keyframes transformFromPosition5 {
    from {
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}

@keyframes transformFromPosition1 {
    from {
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media screen and (max-width: 991px) {
    /* ipad, tablets */
    .carousel-2 .list .item {
        width: 90%;
    }

    .carousel-2.showDetail .list .item:nth-child(2) .detail .specifications {
        overflow: auto;
    }

    .carousel-2.showDetail .list .item:nth-child(2) .detail .title {
        font-size: 2em;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

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

    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-2 {
        height: 100vh;
    }

    .carousel-2 .list .item {
        width: 100%;
        font-size: 10px;
    }

    .carousel-2 .list {
        height: 100%;
    }

    .carousel-2 .list .item:nth-child(2) .introduce {
        width: 50%;
    }

    .carousel-2 .list .item img {
        width: 40%;
    }

    .carousel-2.showDetail .list .item:nth-child(2) .detail {
        backdrop-filter: blur(10px);
        font-size: small;
    }

    .carousel-2 .list .item:nth-child(2) .introduce .des,
    .carousel-2.showDetail .list .item:nth-child(2) .detail .des {
        height: 100px;
        overflow: auto;
    }

    .carousel-2.showDetail .list .item:nth-child(2) .detail .checkout {
        display: flex;
        width: max-content;
        float: right;
    }
    #m1,#m2,#m3,#m4,#m5,#m6,#m7{
        color:#fff;
    }
}

@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;
    }
}

@media screen and (max-width: 860px) {
    #link-container {
        width: 50% !important;
    }

    .image-content {
        width: 100%;
    }

        .image-content img {
            max-width: 70% !important;
        }

    #left-line {
        width: 12%;
    }

        #left-line .social a {
            margin-left: 1em;
        }
}

@media screen and (max-width: 506px) {
    .homeSlide .slideThumb .listing .item {
        width: 180px;
    }
}

@media screen and (max-width: 768px){
    .carousel-card-big{
        padding: 1em 1em;
    }
    .p-5{
        padding:1rem !important;
    }
}

@media screen and (max-width: 1200px){
    .box img{
        display:none;
    }
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
        