.oto{min-height: 600px;}
.scr-up {
    display:none;
    background-color:#00F37C;
    padding:8px;
    position:fixed;
    bottom:10px;
    left:10px;
    text-decoration:none;
    color:white;
    z-index: 9999;
}
/*mobil menü*/
.top-on {
    z-index: 99999;
}

.purp{background-color: #988AB6;}
.purptx{color: #988AB6;}

.purp2{background-color: #C4A2FC;}

.ysl{background-color: #00F37C;}
.ysltx{color: #00F37C;}

.trk{background-color: #44D9E6;}
.trktx{color: #44D9E6;}

.wt {background-color: #00e676;
/*    border-radius:  30px 15px;*/
}
.wtx {color: #00e676;}




/*.dropdown-menu{z-index: 9999;}*/
.navbar-nav a{
  color: white !important;
  font-weight: bold;
}

/*.navbar-nav a:hover{color: #00F37C !important;}*/

/*.dropdown-menu{background-color: #988AB6;}*/

.dropdown-menu a{
  color: white !important;
  font-weight: bold;
  font-style: italic;
}

.dropdown-menu a:hover{
  color: white !important;
  background: #20A2AD;
}

/*nav efect*/
.navbar.navbar-nav a {
outline-width: 0;
transition: all .0s .3s .4s .5s ease-out;

}

.navbar.ibniNav .navbar-nav > li:hover > div {
display: block;
}

.navbar.ibniNav .navbar-nav > li:hover > a.dropdown-toggle:after {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
color: #00F37C;
}

.gradi {
background-color: #8BC6EC;
background-image: linear-gradient(-135deg, #16A2AF 0%, #8ed2c9 100%);

}

/*carousel video ef 1.5 di*/
.carousel-inner .carousel-item img{
-webkit-animation:crsl 20s;
-o-animation: crsl 20s;
animation: crsl 20s;
}
@keyframes crsl {

from{transform: scale(1, 1);}
to{transform: scale(1.2, 1.2);}
}




/*sosyal medya col efft*/
.ss{

  transition:all 0.2s ease;
  color: white;
}
 .ss:hover
        {
  -webkit-transform: scale(1.4,1.4) ;
  -moz-transform: scale(1.4,1.4) ;
  -ms-transform: scale(1.4,1.4) ;
  -o-transform: scale(1.4,1.4) ;
  transform: scale(1.4,1.4) ;
  color: white !important;

  }

/*EFf CSS*/

/*sağa sola slow sallanma*/
.ShakeRL
{
    -webkit-animation: ShakeRL 5s;
            animation: ShakeRL 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes ShakeRL
{
    0%, 100%
    {
        transform: translateX(0);
    }
    50%
    {
        transform: translateX(-20px);
    }
}
@-webkit-keyframes ShakeRL
{
    0%, 100%
    {
        -webkit-transform: translateX(0);
    }
    50%
    {
        -webkit-transform: translateX(-20px);
    }
}

/*/Yukarı Aşağı/*/
.ShakeTU 
{
    -webkit-animation: ShakeTU 5s;
            animation: ShakeTU 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes ShakeTU
{
0%, 100% {transform: translateY(0);}
50% {transform: translateY(-20px);}
}@-webkit-keyframes ShakeTU{
0%, 100% {-webkit-transform: translateY(0);}
50% { -webkit-transform: translateY(-20px);}
}

/*KALP ATIŞI*/

.Heart{
-webkit-animation:Heart 20s;animation:Heart 20s;
-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;
-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite
}
@keyframes Heart{
0%,20%,40%,60%,80%,100%{
transform:scale(1)
}
10%,30%,50%,70%,90%{transform:scale(1.15)}
}

@-webkit-keyframes Heart{
0%,20%,40%,60%,80%,100%
{-webkit-transform:scale(1)}

10%,30%,50%,70%,90%{
-webkit-transform:scale(1.15)}
}


/*ZIPLAYAN WHASTAPP*/
.bouncem {animation: bouncem 2s infinite;
  -webkit-animation: bouncem 2s infinite;
  -moz-animation: bouncem 2s infinite;
  -o-animation: bouncem 2s infinite;
}

@keyframes bouncem {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/*EFEKTLER*/

/*dairesel*/
.orbit
{
    -webkit-animation: orbit 5s;
            animation: orbit 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes orbit
{
    0% {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
}
100% {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
}
}
@-webkit-keyframes orbit
{
    0% {
    -webkit-transform: rotate(0deg) translateX(10px) rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg) translateX(10px) rotate(-360deg);
}
}

.mv:hover{
color: blue!important;
}

.ahvr:hover li{
color: black !important;
}
.ahvr:hover{
  background-color: #17A2B8;
  color: white !important;
}

.filt{opacity: 0.6;}
.grv{transition:all 0.3s ease;}  
.grv:hover{-webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1);}

.shr{transition:all 0.5s ease;}    
.shr:hover{-webkit-transform: scale(0.9); -ms-transform: scale(0.9); transform: scale(0.9);}

/*
     FILE ARCHIVED ON 11:56:38 Nov 23, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:51:32 Aug 09, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.654
  exclusion.robots: 0.023
  exclusion.robots.policy: 0.01
  esindex: 0.013
  cdx.remote: 27.377
  LoadShardBlock: 111.058 (3)
  PetaboxLoader3.datanode: 94.248 (5)
  load_resource: 124.724
  PetaboxLoader3.resolve: 81.128
  loaddict: 22.788
*/