@font-face {
    font-family: "Arkhip";
    src: url("../fonts/arkhip/Arkhip.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/arkhip/Arkhip.eot") format("embedded-opentype"), url("../fonts/arkhip/Arkhip.woff") format("woff"), url("../fonts/arkhip/Arkhip.ttf") format("truetype");
}

.mainlogo {
    font-family: "Arkhip";
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: -15px;
    color: #39507b;
  }

  .hero-area {
    padding: 75px 0px 120px;
  }

  .hero-area .right-area .img::after{
    background: #7aa2ca;
  }

  
.video .video-wrapper .video-box {
    padding: 230px 0px 0px;
    background: none;
}

.video .video-wrapper .video-box::after{
  background: none;
}

.youtube{
  position: absolute;
}

/* servicebox2 */
.serviceBox{
    font-family: 'Raleway', sans-serif;
    text-align: center;
    border-radius: 50px 50px 80px 80px;
    overflow: hidden;
}
.serviceBox .title{
    color: #dd76b4;
    background: #fff;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 40px 15px 70px;
    margin: 0;
    box-shadow: 0 -5px 10px -5px rgba(0,0,0,0.6) inset;
}
.serviceBox .service-icon{
    color: #FF0099;
    background: linear-gradient(100deg, #ec77ab, #7873f5);
    font-size: 50px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: -50px auto 15px;
    border-radius: 100px;
    box-shadow: 7px 7px 0 rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon i{
    transform: rotate(360deg);
    transition: all 0.3s;
}
.serviceBox .service-icon:before{
    content: "";
    background: #fff;
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
}
.serviceBox .service-content{
    color: #fff;
    background: linear-gradient(100deg, #ec77ab, #7873f5);
    padding: 0 15px 30px;
    border: 1px solid transparent;
    position: relative;
}
.serviceBox .description{
    color: white;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 25px;
    margin: 0;
    font-weight: bold;
}
.serviceBox.green .title,
.serviceBox.green .service-icon{
    color: #52c234;
}
.serviceBox.green .service-content{ background: linear-gradient(-30deg,#52c234, #1c6d01); }
.serviceBox.green .service-icon{ background: linear-gradient(to top,#52c234, #1c6d01); }
.serviceBox.purple .title,
.serviceBox.purple .service-icon{
    color: #7F00FF;
}
.serviceBox.purple .service-content{ background: linear-gradient(-30deg,#E100FF,#7F00FF); }
.serviceBox.purple .service-icon{ background: linear-gradient(to top,#E100FF,#7F00FF); }
.serviceBox.blue .title,
.serviceBox.blue .service-icon{
    color: #0575E6;
}
.serviceBox.blue .service-content{ background: linear-gradient(-30deg,#0575E6,#021B79); }
.serviceBox.blue .service-icon{ background: linear-gradient(to top,#0575E6,#021B79); }
@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 30px; }
}

/*Pricing table */
.pricingTable{
    background: #fff;
    font-family: sans-serif;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 0 15px -5px rgba(0,0,0,0.3);
    height: 100%;
}
.pricingTable .pricingTable-header{
    color: #fff;
    background: linear-gradient(100deg, #ec77ab, #9996de);
    padding: 20px 0;
    margin: 0 0 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.2);
}
.pricingTable .title{
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    font-family: "Arkhip";
}
.pricingTable .price-value{
    color: #888;
    margin: 0 0 15px;
}
.pricingTable .price-value .amount{
    font-size: 42px;
    font-weight: 500;
}
.pricingTable .price-value .duration{ font-size: 17px; }
.pricingTable .pricing-content{
    background: linear-gradient(100deg, #ec77ab, #9996de);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    border-radius: 20px;
}
.pricingTable .content-list{
    padding: 0;
    list-style: none;
}
.pricingTable .content-list li{
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-align: left;
    padding: 15px 45px 15px 15px;
    position: relative;
}

.pricingTable .content-list li:last-child{
    border-radius: 0 0 25px 25px;
}
.pricingTable .content-list li:nth-child(even){ background-color: rgba(0,0,0,0.2); }
.pricingTable .content-list li:before{
    content: "\f00c";
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    top: 14px;
    right: 15px;
}
.pricingTable .content-list li.disable:before{ content: "\f00d"; }
.pricingTable .pricingTable-signup a{
    color: #444;
    background-color: #fff;
    font-size: 18px;
    width: 150px;
    padding: 8px 20px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    display: block;
    transition: all 0.3s ease 0s;
}
.pricingTable .pricingTable-signup a:hover{
    color: #fff;
    background-color: rgba(0,0,0,0.3);
}
.pricingTable.blue .pricingTable-header{ background-color: #5AD8D7; }
.pricingTable.blue .pricing-content{ background: linear-gradient(#4DC6E1,#249FFC); }
.pricingTable.purple .pricingTable-header{ background-color: #6778E2; }
.pricingTable.purple .pricing-content{ background: linear-gradient(100deg, #ec77ab, #9996de); }
@media only screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 30px; }
}

#kampanya{
    padding: 80px 0 150px 0;
}
#kampanya #cogs{
    position: absolute;
    z-index: -1;
    width: 170px;
}

#kampanya #eski,#kampanya #yeni{
    position: absolute;
}

@keyframes eski {
    0% {
        bottom: 0;
        left: 20%;
        height:40%;
    }

    20% {
        bottom: 0;
        left: 20%;
        height:40%;
    }
    30%{
        bottom:0;
        height: 40%;
        left: 100%;
    }
    100% {
        bottom: 0;
        left: 100%;
        height: 40%;
        opacity: 0;
    }
}

@keyframes yeni {
    0% {
        bottom: 0;
        left: 0;
        height:40%;
    }
    10%{
        bottom:0;
        height: 40%;
        left: 10%;
    }

    100% {
        bottom:0;
        height: 100%;
        left: 10%;
    }
}

@keyframes yeni2 {
    0% {
        bottom: 0;
        left: 0;
        height:40%;
    }
    10%{
        bottom:0;
        height: 40%;
        left: 50%;
    }

    100% {
        bottom:0;
        height: 100%;
        left: 50%;
    }
}

#eski {
    animation: eski;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-delay: 2s;
}

#yeni {
    animation: yeni;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-delay: 3s;
}

#yeni2{
    animation: yeni2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-delay: 3s;
}

#ckr{
    animation: shake 1s infinite;
}

.img3{
    position: absolute;
    height: 500px;
    bottom: 0;
    right: 0;
    -webkit-animation: shapeani2 3s linear infinite;
    animation: shapeani2 3s linear infinite;
}

.pricing-content .video-wrapper .video-box::after {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    background: url(../images/bilmatik/ayakpedal.png) no-repeat center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 20px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.contact .info-contact .info-box{
    border-radius: 25px;
    height: 100%;
    padding-top: 15px!important;
    padding-bottom: 15px!important;
}

.contact .info-contact .li .info-box .left, .contact .info-contact .li .info-box .right{
    display: flex;
    align-items: center;
}

.contact .info-contact .li{
    margin-bottom: 40px;
}

.team .team-member{
    border-radius: 25px!important;
}
.blog .blog-box{
    border: none;
}

.blog iframe{
    border-radius: 25px;
}

@media only screen and (max-width: 360px){

    .contact .info-box .left {
        margin-bottom: 0!important;
    }

}

.contact .info-contact .li .info-box .left{
    margin-right: 22px!important;
}

.howitwork .left-area{
    padding: 0;
}

.howitwork .left-area .img{
    width: 500px;
    height: 360px;
}

.howitwork .left-area .img::before{
    background-image: url("../images/bilmatik/frontscreen.png");
}

.feature .shape1{
    z-index: 1;
    right: 40px!important;
}

.swiper-container{
    /*padding-bottom: 140px;*/
}

.swiper-container .frem{
    width: 100%;
    max-width: 760px;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.75);
    border: 1px solid #cec72a;
    border-radius: 13%;
}

.swiper-slide{
    width: 100%;
    max-width: 775px;
}

.swiper-slide img{
    box-shadow: none;
}

@media only screen and (max-width: 991px){

    .swiper-slide{
        padding: 15% 11% 10% 11%!important;
    }

    .swiper-slide.swiper-slide-active img {
        border-radius: 0!important;
    }

    .swiper-container .frem, .swiper-slide, .swiper-slide img{
        width: 100%!important;
    }
}

@media only screen and (max-width: 1199px){
    .why-use-this-app .row-three {
        margin-top: 246px!important;
    }
}



/*.swiper-slide {
    width: 297px;
    height: auto;
    !*padding: 0 15px; *!
    padding: 65px 90px;
}*/
