:root{
    --colorInstagram: #d83063;
    --colorTwitter: #39a7cf;
    --colorYoutube: #ff0000;
    --colorFacebook: #1873eb;
    --colorTiktok: #000;
    --colorSpotify: #22974c;
    --colorTinder: #e7306d;
    --bgColorInstagram: #f7d6e0;
    --bgColorTwitter: #d7edf5;
    --bgColorYoutube: #ffcccc;
    --bgColorFacebook: #b7d5ef;
    --bgColorTiktok: #141414;
    --bgColorSpotify: #9bd0ae;
    --bgColorTinder: #ffb5ce;
    --bordercolorInstagram: #de4f7a;
    --borderColorTwitter: #d7edf5;
    --borderColorYoutube: #ffcccc;
    --borderColorFacebook: #b7d5ef;
    --borderColorTiktok: #141414;
    --borderColorSpotify: #9bd0ae;
    --borderColorTinder: #ffb5ce;
}

/*
    Theme Name: WebKodlama
    Theme Edited: https://www.webkodlama.com
    Author: Nivusoft
    Author URL: https://nivusoft.com/
    */
    html{
        margin:0;
        padding: 0;
    }
    body{
        background: url(../img/body.png), #f0f2f6;
        margin:0;
        font-family: 'Montserrat', sans-serif;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    a:hover, a:focus{
        text-decoration: none;
    }
    ol, ul {
        padding-left: 20px;
    }
    input:focus, input:active, button:focus, button:active, select:focus, select:active {
        outline:none;
    }
    * {
        outline: 0;
    }
    .preloader {
        position:fixed;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        left:0;
        right:0;
        top:0;
        bottom:0;
        background:#fff;
        z-index:9999;
        width:100%;
        height:100%
    }
    .pre-flex {
        display:flex;
        justify-content:center;
        align-items:center
    }
    .pre-item1{
        width:130px;
        height:130px;
        border:15px solid var(--color1);
        animation:2s infinite preturnright;
    }
    .pre-item2 {
        color:var(--color2);
        position:absolute;
        font-size:50px;
        font-weight:600;
        animation:2s infinite scaleboom;
    }
    .preloader span{
        margin-top:35px;
        font-size:22px;
        color:var(--color1);
        letter-spacing:5px
    }
    /* Header */
    .header-area {
      position: relative;
      padding: 0px 0px;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9997;
      margin: 0 auto;
  }
  .head-nav {
    padding: 0px 0px;
    position: unset;
}
.head-nav .logo img {
    height: 55px;
    width: auto;
}
.navbar-nav li a {
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 10px 12px;
}
.dropdown-element i {
    margin-left: 2px;
    font-size: 10px;
}
.navbar-nav .nav-contact a {
    color: #ffffff;
    background: var(--color2);
    padding: 10px 25px;
    border-radius: 10px;
    transition: .3s;
    font-weight: 600;
    box-shadow: 0px 4px 15px var(--color2-sd);
}
.navbar-nav .nav-contact a:hover {
    position: relative;
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px var(--color2-sd);
}
.navbar-nav .nav-contact {
    margin-left: 15px;
}
.navbar-nav .order-search-btn {
    margin-left: 12px;
}
.navbar-nav .order-search-btn a {
    color: #fff;
    background: var(--color1);
    box-shadow: 0px 4px 15px var(--color1-sd);
    padding: 10px 20px;
    border-radius: 10px;
    transition: .3s;
    font-weight: 600;
}
.navbar-nav .order-search-btn a:hover {
    position: relative;
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px #00000020;
}
.dropdown-sub {
    position: absolute;
    visibility: hidden;
    transition: .2s;
    opacity: 0;
    margin-top: 20px;
    padding-top: 10px;
}
.dropdown-items {
    background: #fff;
    box-shadow: 0px 5px 30px #00000015;
    border-radius: 10px;
    padding: 15px 5px;
    position: relative;
}
.dropdown-items::before {
    position: absolute;
    content: "";
    top: -8px;
    left: 55px;
    margin-left: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}
.drop-down:hover .dropdown-sub {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.navbar-nav .dropdown-sub a {
    display: block !important;
    color: #555;
    width: 100%;
    padding: 3px 18px !important;
    padding-left: 33px !important;
    font-weight: 500 !important;
    opacity: .9;
    position: relative;
}
.navbar-nav .dropdown-sub a:hover {
   color: var(--color1);
}
.navbar-nav .dropdown-sub a::before {
    content: "\f192";
    color: #555;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    left: 16px;
    top: 7px;
    transition: .2s;
    font-size: 11px;
}
.navbar-nav .dropdown-sub a:hover:before {
    content: "\f111";
    color: var(--color1);
}
.menu-toggler {
    display: block;
    width: 30px;
    height: 26px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
}
.menu-toggler .line-1 {
    width: 30px;
    height: 6px;
    position: absolute;
    border-radius: 12px;
    background: var(--color1);
    top: 0;
    left: 0;
    transition: .3s;
}
.menu-toggler .line-2 {
    width: 30px;
    height: 6px;
    border-radius: 12px;
    background: var(--color1);
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    transition: .3s;
}
.menu-toggler .line-3 {
    width: 30px;
    height: 6px;
    border-radius: 12px;
    background: var(--color1);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}
.menu-toggler.active .line-1 {
    transform: rotate(45deg);
    top: calc(50% - 3px);
}
.menu-toggler.active .line-2 {
    visibility: hidden;
    opacity: 0;
}
.menu-toggler.active .line-3 {
    transform: rotate(-45deg);
    bottom: calc(50% - 3px);
}

.droplapse.show .dropdown-sub {
    position: relative;
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    padding: 0;
    margin-bottom: 10px;
    display: none;
}
.droplapse.show .dropdown-items {
    background: #00000005;
    box-shadow: none;
    padding: 10px 0px;
}
.nav-buts-flex {
    display: flex;
    gap: 10px;
    margin-left: 7px;
}
.noclick {
    pointer-events: none;
}
.pointer {
    cursor: pointer;
}
/* Intro */

.intro-area {
    position: relative;
    min-height: 500px;
    padding: 100px 0px;
    width: 100%;
    background: url(../img/intro-bg.png) var(--color1);
}
.intro {
  margin-bottom: 110px;
}
.intro.full-width {
    margin-top: 0;
}
.intro.full-width .ordersearch-area {
    border-radius: 0;
    padding: 0;
    min-height: 550px;
}
section.testimonial {
    padding: 100px 0px;
}
.testimonialsCard{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.cardTitle{display: flex;flex-direction: column;align-items: flex-start;}
.cardTitle h5{}
.cardTitle span{}
section.faq {
    padding: 50px 0px 0px 0px;
    position: relative;
    /* background: var(--color1); */
}
section.blog-posts {
    padding: 0px 0px 0px 0px;
}
section.blog-list-area {
    padding: 50px 0px;
    min-height: 500px;
}
section.content-area, .contact-area {
    padding: 50px 0px;
}
.contact-area{margin-top: -90px;}
.intro-head.contactPage{min-height: 560px;}
.notfoundpage {
    padding: 70px 0px;
}

@keyframes preturnright {
    0% {
        transform: rotate(0deg);
        border-radius: 0px;
    }
    50% {
        border-radius: 65px;
    }
    100% {
        transform: rotate(360deg);
        border-radius: 0px;
    }
}
@keyframes scaleboom {
    0% {
        transform: scale(0.8);
        opacity: .4;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: .4;
    }
}
.faq::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 62px;
  transform: rotateX(180deg);
  top: -20px;
  background: url(../img/intro-end.png);
  display: none;
}
.faq::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 62px;
  bottom: -20px;
  background: url(../img/intro-end.png);
  display: none;
}
section.intro-area::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    bottom: 0;
    background: url(../img/intro-end.png);
    display: none;
}
.intro-start {
    padding-bottom: 70px;
    position: relative;
}
.story > .owl-stage-outer {
  height: 115px;
}
.story-area {
  position: relative;
}
.story-area .why-us-text{margin-bottom: 15px;}
.service-story {
    display: flex;
    justify-content: space-between;
}
.story-item {
    width: 25%;
    padding: 0px 10px;
}
.storyboss {
    padding: 0px 15px;
    margin-bottom: 40px;
}
.storyboss .is-item {
    margin-bottom: 10px;
}
.story-item:nth-child(1){
  padding-left: 0;
}
.story-item:nth-last-child(1){
  padding-right: 0;
}
.showCat{
    display: flex;
    align-items: center;
    margin-top: 10px;
    border-radius: 7px;
    background: #00000017;
    text-align: center;
    width: 100%;
    justify-content: center;
    line-height: 36px;
    color: white;
    display: none;
    font-size: 16px;
    font-weight: 500;
}
.iservice-item .showCat i{
    font-size: 10px;
    margin-left: 10px;
    width: auto;
    color: white;
}
.is-item{
    width: calc(96% * 1/5);
    float: left;
    border-radius: 8px;
}
#storyArea{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.iservice-item {
    text-align: center;
    line-height: 23px;
    font-weight: 700;
    font-size: 18px;
    /* background: #2ca76361; */
    color: #555;
    border-radius: 10px;
    padding: 15px 20px;
    transition: .2s;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    gap: 25px;
}

.is-item:hover{box-shadow: 0px 4px 15px #00000007;}

.is-item:hover .iservice-item > i{
    -webkit-animation: flip-scale-up-diag-1 0.5s linear both;
    animation: flip-scale-up-diag-1 0.5s linear both;
}

 @-webkit-keyframes flip-scale-up-diag-1 {
    0% {
      -webkit-transform: scale(1) rotate3d(1, 1, 0, 0deg);
              transform: scale(1) rotate3d(1, 1, 0, 0deg);
    }
    50% {
      -webkit-transform: scale(1.5) rotate3d(1, 1, 0, 180deg);
              transform: scale(1.5) rotate3d(1, 1, 0, 180deg);
    }
    100% {
      -webkit-transform: scale(1) rotate3d(1, 1, 0, 360deg);
              transform: scale(1) rotate3d(1, 1, 0, 360deg);
    }
  }
  @keyframes flip-scale-up-diag-1 {
    0% {
      -webkit-transform: scale(1) rotate3d(1, 1, 0, 0deg);
              transform: scale(1) rotate3d(1, 1, 0, 0deg);
    }
    50% {
      -webkit-transform: scale(1.5) rotate3d(1, 1, 0, 180deg);
              transform: scale(1.5) rotate3d(1, 1, 0, 180deg);
    }
    100% {
      -webkit-transform: scale(1) rotate3d(1, 1, 0, 360deg);
              transform: scale(1) rotate3d(1, 1, 0, 360deg);
    }
  }
  

.instagram .iservice-item{background: var(--colorInstagram);}
.twitter .iservice-item{background: var(--colorTwitter);}
.youtube .iservice-item{background: var(--colorYoutube);}
.tiktok .iservice-item{background: var(--colorTiktok);}
.tinder .iservice-item{background: var(--colorTinder);}
.facebook .iservice-item{background: var(--colorFacebook);}
.spotify .iservice-item{background: var(--colorSpotify);}

.iservice-item i {
    color: white!important;
    font-size: 40px;
    font-size: 40px;
    display: block;
}
.iservice-item span {
    display: block;
    font-weight: 400;
}
.iser-detail {
    text-align: left;
    width: 100%;
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
    line-height: 24px;
}
.ordersearch-area {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 75px;
    padding-right: 75px;
    min-height: 565px;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}
.ordersearch-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: .90;
}
.fast-flex {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 96px 0 0px 0;
}
.fast-first {
    width: 60%;
    padding-right: 90px;
    margin-top: 100px;
}
.fast-first h1 {
    color: #2ca7fe;
    font-weight: 400;
    font-size: 40px;
    max-width: 510px;
}
.fast-first h1 span{border:1px solid #68acff;font-size: 36px;padding: 5px;transform: rotate(-3deg);display: inline-block;font-weight: bold;}
.fast-first p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}
.fast-sec {
    width: 100%;
    margin-left: 0px;
    margin-top: 90px;
    background: white;
    padding: 29px 18px 26px 18px;
    margin-bottom: -60px;
    border-radius: 10px;
    z-index: 9;
    display: block;
    position: relative;
    /* box-shadow: 0px 3px 13px 4px #b5abab0f; */
}
.fast-sec .w-100{
}
.selectBannerGroup{
    display: flex;
    align-items: center;
    width: calc(100% - 140px);
    float: left;
}
.fast-sec .ns-select-area{
    width: calc(100% - 30px);
    margin-right: 30px;
    margin-bottom: 0;
}
.fast-sec select {
    height: 50px;
    border: none;
    border-radius: 12px;
}
.fast-order-btn {
    width: 100%;
    color: #fff;
    background: var(--color2);
    box-shadow: 0px 2px 20px var(--color2-sd);
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
}
.fast-sec .form-control {
  opacity: .8;
}
.fast-sec .form-control.active {
  opacity: 1;
}

.fast-box-area {
  display: flex;
  margin-top: 25px;
}
.fast-box {
  color: white;
  font-weight: bold;
  background: #68acff;
  /* box-shadow: 0px 3px 20px #ffffff40; */
  padding: 10px 30px;
  margin-bottom: 10px;
  border-radius: 0;
  margin: 0px 5px;
  font-size: 22px;
  cursor: pointer;
  transition: .2s;
  position: relative;
  top: 0;
}
.fast-box:hover {
  position: relative;
  /* box-shadow: 0px 13px 20px #ffffff40; */
  top: -5px;
}
.fast-box:hover i {
  transform: rotate(360deg);
}
.fast-box i {
  transition: .3s;
}
.fast-box span {
  font-weight: 600;
  font-size: 17px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.os-area {
  position: relative;
  text-align: center;
}
.os-area h1 {
    font-weight: bold;
    color: #fff;
    font-size: 40px;
}
.os-area p {
    color: #ffffffcc;
    font-size: 16px;
}
.os-search-area {
    display: flex;
    position: relative;
    width: 90%;
    margin: 0 auto;
    margin-top: 45px;
}
.os-area input {
    border: none !important;
    box-shadow: none !important;
    height: 70px;
    border-radius: 15px;
    padding-left: 20px;
}
.int-search-button {
    color: #fff !important;
    background: var(--color2);
    font-weight: 500;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    transition: .2s;
}
.show-area {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}
.show-item1 {
    grid-column: span 4;
    padding-right: 50px;
}
.show-item1 h1 {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}
.show-item1 p {
    color: #ffffffe6;
}
.show-item2 {
    grid-column: span 2;
    position: relative;
    display: block;
}
.show-item2 img {
    max-width: 100%;
    display: inline-block;
    animation: 4s infinite heartbeat;
}
.show-buttons {
    display: flex;
    margin-top: 30px;
}
.sb-item, .it-item {
    background: #fff;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 12px;
    transition: .2s;
    font-weight: bold;
    font-size: 18px;
    color: var(--color1);
    cursor: pointer;
    -webkit-user-select: none;
}
.sb-item:hover, .it-item:hover {
    padding: 12px 40px;
}
.int-search-button:hover {
    padding: 12px 50px;
}
.intro-text-area {
    position: relative;
    text-align: center;
}
.intro-text-area h1 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}
.intro-text-area p {
    color: #ffffffc9;
}
.it-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.it-item {
    background: #fff;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 12px;
    transition: .2s;
    font-weight: bold;
    font-size: 18px;
    color: var(--color1);
    cursor: pointer;
    -webkit-user-select: none;
}
.fast-order {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 15px #00000007;
    height: 100%;
}
.fast-order::before {
    content: "";
    position: absolute;
    opacity: .2;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: url(../img/fast-bg.png);
    background-size: inherit;
}
.fast-order h2 {
    font-weight: bold;
    font-size: 30px;
    color: #555;
}
.fast-order p {
    font-size: 15px;
    color: #666;
}
.btn.fast-or-btn {
    color: #fff;
    background: var(--color2);
    box-shadow: 0px 5px 10px var( --color2-sd);
    border-radius: 10px;
    margin-top: 7px;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    font-size: 18px;
}
.pack-item {
    text-align: center;
    background: #fff0;
    box-shadow: none;
    border-radius: 12px;
    padding: 20px 10px;
    padding: 0px 15px 15px 15px !important;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 0px!important;
}
.pack-item.special {
  border: 0px solid;
}
.pack-item.special .pack-special-detail {
  display: none;
}
.packTop{
    width: 100%;
    float: left;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 7px solid #DE4F7A;
    position: relative;
    overflow: hidden;
    padding: 12px 10px 10px 10px;
    min-height: 85px;
}
.packTop:before{
    content:"";
    position:absolute;
    /*background-image: url(../img/base.png);*/
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 10px 10px 10px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);
}
.packBottom{
    padding: 20px 15px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pack-special-detail {
    display: none;
    color: #ffffff;
    position: absolute;
    font-size: 15px;
    top: -3px;
    left: calc(50% - 100px);
    width: 200px;
    padding: 3px 15px;
    background: var(--color1);
    text-align: center;
    font-weight: 400;
    border-radius: 0 0 30px 30px;
    -webkit-user-select: none;
}

.instagramPage .packTop{border-color: var(--bordercolorInstagram);}
.instagramPage .packTop:before{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}
.instagramPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}
.instagramPage .pack-item .btn-pack-buy{background: var(--colorInstagram);}
.instagramPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}

.instagram .packTop{border-color: var(--bordercolorInstagram);}
.instagram .packTop:before{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}
.instagram .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}
.instagram .pack-item .btn-pack-buy{background: var(--colorInstagram);}
.instagram .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(37%) sepia(60%) saturate(7480%) hue-rotate(327deg) brightness(91%) contrast(84%);}

.twitterPage .packTop{border-color: var(--borderColorTwitter);}
.twitterPage .packTop:before{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}
.twitterPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}
.twitterPage .pack-item .btn-pack-buy{background: var(--colorTwitter);}
.twitterPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}

.twitter .packTop{border-color: var(--borderColorTwitter);}
.twitter .packTop:before{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}
.twitter .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}
.twitter .pack-item .btn-pack-buy{background: var(--colorTwitter);}
.twitter .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(370%) hue-rotate(150deg) brightness(89%) contrast(94%);}

.youtubePage .packTop{border-color: var(--borderColorYoutube);}
.youtubePage .packTop:before{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}
.youtubePage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}
.youtubePage .pack-item .btn-pack-buy{background: var(--colorYoutube);}
.youtubePage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}

.youtube .packTop{border-color: var(--borderColorYoutube);}
.youtube .packTop:before{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}
.youtube .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}
.youtube .pack-item .btn-pack-buy{background: var(--colorYoutube);}
.youtube .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(5387%) hue-rotate(358deg) brightness(108%) contrast(112%);}

.facebookPage .packTop{border-color: var(--borderColorFacebook);}
.facebookPage .packTop:before{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}
.facebookPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}
.facebookPage .pack-item .btn-pack-buy{background: var(--colorFacebook);}
.facebookPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}

.facebook .packTop{border-color: var(--borderColorFacebook);}
.facebook .packTop:before{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}
.facebook .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}
.facebook .pack-item .btn-pack-buy{background: var(--colorFacebook);}
.facebook .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(42%) sepia(50%) saturate(6899%) hue-rotate(204deg) brightness(96%) contrast(92%);}

.tiktokPage .packTop{border-color: var(--borderColorTiktok);}
.tiktokPage .packTop:before{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}
.tiktokPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}
.tiktokPage .pack-item .btn-pack-buy{background: var(--colorTiktok);}
.tiktokPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}

.tiktok .packTop{border-color: var(--borderColorTiktok);}
.tiktok .packTop:before{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}
.tiktok .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}
.tiktok .pack-item .btn-pack-buy{background: var(--colorTiktok);}
.tiktok .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(71%) sepia(49%) saturate(345%) hue-rotate(119deg) brightness(0%) contrast(83%);}

.spotifyPage .packTop{border-color: var(--borderColorSpotify);}
.spotifyPage .packTop:before{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}
.spotifyPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}
.spotifyPage .pack-item .btn-pack-buy{background: var(--colorSpotify);}
.spotifyPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}

.spotify .packTop{border-color: var(--borderColorSpotify);}
.spotify .packTop:before{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}
.spotify .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}
.spotify .pack-item .btn-pack-buy{background: var(--colorSpotify);}
.spotify .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(379%) hue-rotate(89deg) brightness(91%) contrast(84%);}

.tinderPage .packTop{border-color: var(--borderColorTinder);}
.tinderPage .packTop:before{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}
.tinderPage .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}
.tinderPage .pack-item .btn-pack-buy{background: var(--colorTinder);}
.tinderPage .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}

.tinder .packTop{border-color: var(--borderColorTinder);}
.tinder .packTop:before{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}
.tinder .pack-detail ul li:before{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}
.tinder .pack-item .btn-pack-buy{background: var(--colorTinder);}
.tinder .pack-item .pack-icon i{filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(2898%) hue-rotate(317deg) brightness(92%) contrast(96%);}


.pack-special-detail i {
    margin-right: 2px;
}
.pack-item .pack-price {
  color: var(--color1);
} 
.pack-item .pack-icon i {
  color: var(--color1);
} 
.pack-item .btn-pack-buy.ucretsizAraclar{
    height: 60px;
    font-size: 16px;
}

.pack-item .btn-pack-buy {
  background: #41305b;
  box-shadow: 0px 4px 20px #00000010;
} 
.pack-button-area{
    background: white;
    float: right;
}
.pack-button-area a{line-height:25px;}
.fav-items .pack-item {
  overflow: hidden;
}
.fav-items .pack-icon {
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-size: 20px;
    top: -18px;
    left: -45px;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 0;
    background: var(--color2);
    width: 125px;
    transform: rotate(-45deg);
}
.best-seller-area {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.best-seller-area::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 8px;
    width: 95%;
    height: 2px;
    border-radius: 5px;
    background: linear-gradient(45deg, #d1d1d1, transparent);
}
.best-sell-all {
    margin-left: auto;
    text-align: right;
    min-width: 150px;
    transition: all .3s ease;
}
.best-sell-all a {
    color: #868ca9;
    font-weight: 500;
    transition: all .3s ease;
    border: 1px solid #878aae;
    border-radius: 50px;
    font-size: 15px;
    padding: 10px 24px;
}
.best-sell-all a span{margin-right:5px;}
.best-sell-all i {
    /* background: var(--color3); */
    color: #868ca9;
    text-align: center;
    padding: 0;
    margin-left: 0;
    border-radius: 5px;
    position: relative;
    transition: all .3s ease;
}
.best-sell-all:hover a {color: #68acff;border-color: #68acff;}
.best-sell-all:hover i {margin-right: -10px;margin-left: 10px;transition: .3s ease;color: #68acff;}
.best-seller {
    margin-bottom: 50px;
    position: relative;
}
.about-us {
    position: relative;
    padding: 150px 0px;
    margin-top: 100px;
    padding-bottom: 155px;
    background: var(--color1);
}
.about-us::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 62px;
  transform: rotateX(180deg);
  top: -20px;
  background: url(../img/intro-end.png);
  display: none;
}
.about-us::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 62px;
    bottom: -20px;
    background: url(../img/intro-end.png);
    display: none;
}
.why-us-text {
    text-align: center;
    margin-bottom: 35px;
}
.why-us-box {
    display: flex;
    justify-content: center;
}
.wu-item {
    background: #fff;
    width: calc(100%/4);
    text-align: center;
    margin: 0px 8px;
    border-radius: 10px;
    padding: 0px 25px;
    transition: .3s;
    padding-bottom: 40px;
}
.wu-item i {
    display: block;
    font-size: 50px;
    padding-top: 40px;
    padding-bottom: 15px;
    color: var(--color2);
}
.wu-item span {
    font-size: 20px;
    font-weight: bold;
    color: var(--color1);
}
.wu-item p {
    margin-top: 5px;
    font-size: 16px;
    margin-bottom: 0;
    color: #777;
}
.best-seller h2 {
  color: #63677d;
  margin-bottom: 2px;
  font-weight: bold;
}
.pack-icon {
  width: 67px;
  height: 67px;
  min-width: 67px;
  min-height: 67px;
  background-image: url('../img/shadow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-icon i {
    font-size: 24px;
    color: var(--color2);
    margin-bottom: 0;
}
.pack-title {
    color: #ffffff!important;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    line-height: 20px;
    margin-left: 15px;
}
.pack-title span {
    color: #fff;
    font-size: 16px;
    display: block;
    font-weight: 400;
}
.pack-detail {
    height: 100%;
    background: white;
}
.pack-detail ul {
    padding: 0;
    margin: 0;
    max-height: 240px;
    overflow: auto;
}
.pack-detail ul li {
    list-style: none;
}
.pack-detail ul li:before{content:"";background-image: url('../img/rocket.png');background-repeat: no-repeat;background-position: center;display: block;width: 19px;height: 19px;float: left;margin-right: 10px;}
.pack-detail.detailscroll ul {
    margin: 15px 5px;
    padding: 0;
    max-height: 280px;
    overflow: auto;
}
.pack-detail ul::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.pack-detail ul::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

.pack-detail ul::-webkit-scrollbar-thumb
{
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.1);
  background-color: #b6b6b6;
}
.pack-detail ul li {
    position: relative;
    font-size: 15px;
    color: #362c4b;
    padding: 15px;
    border-bottom: 1px solid #e7ebf3;
    text-align: left;
    font-weight: 400;
}
.pack-price {
    padding: 0;
    padding-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #362c4b!important;
    background: white;
    line-height: 18px;
    float: left;
    text-align: left;
}
.pack-price span {
    display: block;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    color: #b2bac7;
    text-decoration: line-through;
}
.btn-pack-buy {
    color: #fff !important;
    font-weight: 500;
    font-size: 14px;
    transition: .2s;
    padding: 1px 12px;
    margin: 0 auto;
    background: var(--color2);
    box-shadow: 0px 4px 20px var(--color2-sd);
    border-radius: 50px;
}
.best-seller p {
  color: #63677d;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}
.intro-ct {
    padding-top:80px;
    padding-bottom: 150px;
    align-items: center;
}
.intro-service-icons {
    width: 60px;
    background: var(--color2);
    text-align: center;
    padding: 20px 0px;
    display: table-cell;
    border-radius: 12px;
}
.intro-service-icons i {
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 25px;
    padding: 15px 0px;
    transition: 1s;
}
.intro-service-icons i:hover {
  transform: rotate(360deg);
}
.intro-title {
    color: #fff;
    display: table-cell;
    padding-left: 25px;
    vertical-align: middle;
}
.intro-title h2 {
    font-weight: bold;
    font-size: 45px;
}
.intro-title h2 span {
    display: block;
    color: var(--color2);
}
.intro-title p {
    font-weight: 300;
    font-size: 17px;
}

.service-box {
    background: #fff;
    color: var(--text-color1);
    padding: 30px;
    transition: .2s;
    box-shadow: 0px 5px 25px #00000020;
    border-radius: 25px;
    text-align: center;
}
.service-box:hover {
    transform: scale(1.04);
}
.service-box > i {
    font-size: 55px;
    margin-bottom: 15px;
}
.service-box p {
    opacity: .8;
    font-size: 17px;
    margin-bottom: 0;
}
.service-box.sb-special {
    color: #fff;
    background: var(--color2);
    box-shadow: 0px 5px 25px var(--color2-sd);
    margin-top: 25px;
}
.service-box.sb-special p {
    opacity: 1;
}

/* Main */

.main-area{margin-top: -96px;}

.why-us-text > span {
    font-size: 21px;
    font-weight: bold;
    color: #63677d;
}
.why-us-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #63677d;
}
.why-us-text p {
    color: #63677d;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
}
.lb-area {
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}
.lb-area::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0px;
    width: 95%;
    height: 2px;
    border-radius: 5px;
    background: linear-gradient(45deg, #d1d1d1, transparent);
}
.lb-area > span {
    font-size: 21px;
    font-weight: bold;
    color: var(--color2);
}
.lb-area h2 {
    font-size: 35px;
    font-weight: bold;
    color: var(--color3);
}
.lb-area p {
    color: var(--text-color1);
    opacity: .7;
    font-size: 17px;
}
.lb-area-all {
    margin-left: auto;
    text-align: right;
    min-width: 150px;
}
.lb-area-all a {
    color: var(--color3);
    font-weight: 500;
    transition: .2s;
}
.lb-area-all i {
    background: var(--color3);
    color: #ffffff;
    text-align: center;
    padding: 6px 7px 6px 10px;
    margin-left: 5px;
    border-radius: 5px;
    transition: .2s;
}
.lb-area-all:hover a {
   font-weight: bold;
}
.lb-area-all:hover i {
   margin-left: 10px;
   border-radius: 50px;
}
.last-blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}
.lb-item {
    padding: 0px 0px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0px 8px 30px #00000008;
}
.lb-top {
    margin-bottom: 0px;
}
.lb-top img {
    width: 100%;
    height: 210px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
}
.lb-date {
    background: var(--color1);
    display: inline-block;
    padding: 1px 16px;
    font-size: 13px;
    color: #fff;
    border-radius: 7px;
}
.lb-detail h2, .lb-detail h4 {
    font-size: 16px;
    font-weight: 600;
    color: #5f6683;
}
.lb-detail p {
    font-size: 18px;
    color: #5f6683;
    line-height: 24px;
    margin-bottom: 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 96px;
}
a.btn.lb-read-btn {
    background: white;
    padding: 10px 25px;
    border-radius: 0px 0px 10px 10px;
    font-weight: 600;
    font-size: 18px;
    /* box-shadow: 0px 4px 15px var(--color2-sd); */
    color: #878ea8;
    width: 100%;
    text-align: left;
}

a.btn.lb-read-btn:hover{
    background: #68acff;
    color: #fff !important;
}

a.btn.lb-read-btn {}

.lb-read-btn:hover i {
    margin-left: 15px;
}
.lb-read-btn i {
    transition: .3s;
}
.btn-why {
    color: #fff !important;
    position: relative;
    display: inline-block;
    text-align: left;
    padding: 6px;
    transition: .3s;
    padding-left: 23px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    background: var(--color1);
    box-shadow: 0px 3px 15px var(--color1-sd);
}
.btn-why:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 15px var(--color1-sd); 
}
.whyus-chevron {
    background: var(--color2);
    display: inline-block;
    padding: 7px 25px;
    text-align: center;
    transition: .3s;
    border-radius: 6px;
    margin-left: 95px;
}
.gtco-testimonials {
  text-align: center;
  position: relative;
}
.gtco-testimonials span {
    font-size: 21px;
    font-weight: bold;
    color: var(--color2);
}
.gtco-testimonials p {
    color: var(--text-color1);
    opacity: .7;
    font-size: 17px;
}
.gtco-testimonials h2 {
  font-size: 32px;
  font-weight: 800;
  color: #63677d;
}
.gtco-testimonials p {
    color: #63677d;
    font-size: 22px;
    font-weight: 500;
}
.gtco-testimonials .owl-stage-outer {
  padding: 20px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #c2dbf8;
  border: 2px solid #c2dbf8;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: var(--color2);
  border-color: var(--color2);
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fff;
  margin: 0 10px;
  padding: 30px;
  border-radius: 0;
  border: 0;
  opacity: 1;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 0;
  margin: 0px 15px 0px 0px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #347ad0;
}
.gtco-testimonials .card .card-img-top i{color: white;}
.owl-item.active.center .card {
    overflow: hidden;
}
.owl-item.active .card::after {
    width: calc(100% + 10px);
    content: "";
    position: absolute;
    left: 0;
    bottom: -45px;
    height: 45px;
    background: var(--color1);
    opacity: 0;
    transition: .3s;
}
.owl-item.active.center .card::after {
    content: "";
    transform: rotate(-3deg);
    bottom: -25px;
    opacity: 1;
    display: none;
}
.gtco-testimonials .card h5 {
  color: #343e3f;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  text-align: left;
  margin:0px;
}
.gtco-testimonials .card h5 span {
  font-size: 16px;
  color: #343e3f;
  font-weight: 400;
}
.gtco-testimonials .card p {
  font-size: 16px;
  color: #343e3f;
  padding-bottom: 15px;
  font-weight: 400;
  text-align: left;
  min-height: 170px;
  max-height: 170px;
 /* overflow: hidden;*/
}

.gtco-testimonials .active {
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.gtco-testimonials .center h5 span {
  font-size: 16px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 40px;
  width: 40px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  outline: 0;
}
.gtco-testimonials .owl-item:hover {
    opacity: 1;
}
.nsa-body {
    display: none;
    padding: 20px;
    color: #343e3f;
    background: #ffffff;
    border-radius: 0 0 7px 7px;
    font-size: 16px;
    font-weight: 400;
}
.nsa-item{margin-bottom:20px;}
.nsa-header {
    color: #63677d;
    background: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    margin-bottom: 0px;
    border-radius: 7px;
    cursor: pointer;
}
.nsa-header.active{
    background: #347ad0;
    border-radius: 7px 7px 0 0;
    color: white;
}
.nsa-header.active::before{
    color: white;
}
.nsa-header::before {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    color: #787b8e;
    margin-right: 5px;
    float: right;
    font-size: 12px;
    margin-top: 5px;
}
.sidebar-item .ns-accordion .nsa-header {
    background: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}
.sidebar-item .ns-accordion .nsa-body {
    color: #767676;
}
.intro-head {
    display: flex;
    align-items: center;
    position: relative;
    padding: 110px 75px 0px 75px;
    min-height: auto;
    overflow: hidden;
    box-shadow: 0px 5px 25px #00000010;
    background-size: cover !important;
    background-position: center !important;
}
.intro-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: .85;
}
.ihead-well {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.intro-head.container {
    margin-top: 30px;
    border-radius: 20px;
}
.well-one {
    min-width: 100px;
    order: 2;
    text-align: right;
    display: flex;
    justify-content: center;
    margin: 20px 0px 20px 0px;
}
.well-one i {
    font-size: 120px;
    color: #fff;
    animation: 1.5s infinite heartbeat;
}
.well-one i.durdur {
  animation: inherit;
}
.well-two {
    order: 1;
    width: 100%;
    text-align: left;
}
.well-two h1 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    margin-bottom: 5px;
}
.well-two p {
    color: #ffffff;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}
.well-two h1:after {
    /* content: ""; */
    position: absolute;
    left: calc(50% - 50px);
    bottom: -25px;
    height: 6px;
    border-radius: 12px;
    width: 100px;
    background: #fff;
}
.wt-icons {
    margin-top: 25px;
}
.wt-icons a {
    cursor: pointer;
}
.wt-icons span {
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    display: block;
    opacity: .7;
}
.wt-icons i {
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    opacity: .7;
    transition: .3s;
} 
.wt-icons i:hover {
  opacity: 1;
}
.platform-area {
    padding-top: 50px;
    min-height: 450px;
    margin-bottom: 100px;
}
.platform-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}
.plat-item {
    background: #fff;
    padding: 0px 0px 30px 0px;
    border-radius: 0;
    box-shadow: 0px 5px 25px #00000010;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.plat-item.plat-fw {
    grid-column: span 2;
}
.plat-icon {
    color: white;
    font-size: 70px;
    width: 100%;
    padding-top: 20px;
}
.plat-icon-box{
    background-image: url('../img/shadow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 125px;
    height: 125px;
    margin: 0 auto -60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.plat-detail {
    margin-top: 40px;
    padding-left: 0px;
    padding-right: 0px;
}
.plat-item h2 {
    font-weight: 700;
    font-size: 20px;
    position: relative;
    color: #000000;
}
.plat-item h2 span{font-weight:800;}
.plat-detail p {
    font-size: 16px;
    line-height: 22px;
    color: #777;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    padding: 0 50px;
    display: none;
}
.plat-action {
    margin-top: 20px;
    min-width: 125px;
    text-align: right;
}
.plat-action-btn {
    color: #fff !important;
    position: relative;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    background: #f7d6e0;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: .2s;
}
.plat-action-btn:hover {
    width: 100%;
    box-shadow: 0px 5px 15px #1f20451f;
}
.packs-area {
    padding-top: 50px;
}
.pack-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
}
.order-pack-area .card {
    border: 0px solid #ececec;
    background: #fff;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}
.order-pack-area .card .card-header {
    background: #fff;
    border: none;
    font-weight: 600;
    font-size: 19px;
    color: #777;
    cursor: pointer;
    padding-top: 20px;
}
.order-pack-area .card .card-body {
  padding-top: 10px;
}
.order-pack-area .box-title {
    position: relative;
    font-size: 14px;
    color: #0b1a30;
}
.order-pack-area .box-title span i {
    position: absolute;
    top: 4px;
    right: -15px;
    transition: .3s;
    font-size: 10px;
}
.order-pack-area .card-header.collapsed .box-title span i {
  transform: rotate(-90deg);
}

.order-pack-area .form-control {
    padding: 12px 18px;
    height: auto;
    color: #362c4b;
    font-size: 14px;
    border: 0px;
    border-radius: 0px;
    border-top: solid 1px #e8e8e9;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}
.order-pack-area .form-control:last-child{border-radius:0 0 10px 10px;}
.order-end .form-control {
    align-items: center;
}
.order-pack-list ul {
    padding: 0;
    padding-left: 0;
    margin: 0;
}
.order-area {
    padding-top: 50px;
    min-height: 550px;
    padding-bottom: 100px;
}
.order-pack-list ul li {
    list-style: none;
    color: #362c4b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}
.order-pack-list ul li:last-child{margin-bottom:0px;}
.order-pack-area .f-bilg span {
    font-weight: 600;
    text-align: right;
    color: #362c4b;
}
.order-steps-tab {
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
}
.order-created {
    text-align: center;
    padding: 30px 0px;
}
.order-created i {
    font-size: 60px;
    animation: 2s infinite preturnright;
    color: var(--color1);
}
.order-created span {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    color: var(--color1);
    letter-spacing: 1px;
    font-weight: 500;
}

.obj-tab {
    list-style: none;
    height: 100%;
    margin: 0px 15px 0 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transform: translate3d(0, 0, 0) scale(1.000000005);
    transition: transform 150ms ease, opacity 200ms ease;
    border: 1px solid #198754;
    border-radius: 10px;
    opacity: .5;
}
.newalan .obj-tab {
    margin: 0px;
}
.newalan{
        gap: 15px;
}
.newalan .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 31.333333%;
    max-width: 31.333333%;
}


@media screen and (max-width:1200px){
     
.newalan .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 47.333333%;
    max-width: 47.333333%;
}
.newalan .obj-tab span {
    display: block;
}
}
.obj-tab.active{opacity:1;background: none;}
.obj-tab:hover {
  opacity: 0.8;
}
.obj-tab:active {
  transform: translate3d(0, 0, 0) scale(0.9);
}

.obj-tablink {
    padding: 13px 17px;
    color: var(--color3) !important;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
}
.obj-tab.active .obj-tablink {color: var(--color3) !important;}
.obj-tabcontent {
    position: relative;
    display: flex;
    padding: 25px 15px;
    z-index: 50;
    border-bottom: 1px solid #e8e8e9;
}

.obj-tabcontent.specPad{padding: 25px 15px 25px 15px!important;border-bottom: 1px solid #e8e8e9;margin-bottom: 25px;}
.card-body.p0{padding: 0px!important;}
.card.specStep{border:none!important;border-radius: 10px;}

.obj-tabindicator {
  width: 100%;
  height: 100%;
  background: var(--color1);
  position: absolute;
  display: block;
  border-radius: 12px;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.os-tabs {
    padding: 20px 15px 16px 15px;
    display: none;
    background: white;
    float: left;
    width: 100%;
}
.os-tabs.show {
  display: block;
}
.os-tabs.os-tab3.show#step4 {
    padding: 0;
    padding-top: 35px;
}
.os-tabs h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0b1a30;
}
.os-tabs p {
    list-style: none;
    color: #362c4b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}
.os-tabs .form-control {
    min-height: 60px;
    border: 1px solid #b9c4d5;
    border-radius: 5px;
    box-shadow: none !important;
    padding: 12px 20px;
    color: #828181;
    font-size: 14px;
}
.os-tabs .form-control::placeholder{color: #b9c4d5;}
.os-next-btn {
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    background: var(--color2);
    padding: 12px 40px;
    border-radius: 5px;
    transition: .3s;
    float: right;
}
.os-next-btn:hover {background: var(--color1);}
.os-pri-btn {
    margin-right: 6px;
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    background: #b9c4d5;
    padding: 12px 40px;
    border-radius: 5px;
    transition: .3s;
    float: left;
}
.os-pri-btn:hover {background: var(--color1);}
.coupon-code-input {
    position: relative;
}
.btn-coupon {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 40px;
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    background: var(--color2);
    padding: 0px 40px;
    border-radius: 5px;
    transition: .3s;
    float: right;
    line-height: 40px;
}
.payment-choice {
    margin-top: 0px;
    margin-bottom: 30px;
}
.payments-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    margin-bottom: 15px;
}
.pay-item {
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #ececec;
    border-radius: 14px;
    transition: .3s;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}
.pay-icon {
    color: #68acff;
    font-size: 30px;
}
.pay-text {
    font-weight: 500;
    color: #333;
    font-size: 17px;
    line-height: 20px;
    text-align: left;
    padding-left: 10px;
    padding-right: 5px;
}
.pay-check {
    margin-left: auto;
}
.pay-check-box {
    width: 25px;
    height: 25px;
    background: #f8f8f8;
    border-radius: 7px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.pay-checked {
    height: 100%;
    width: 100%;
    background: #68acff;
    padding-top: 4px;
    font-size: 12px;
    color: #fff;
    display: none;
}
.pay-item.selected .pay-checked{
    display: block;
}
.pay-item.selected {
    border: 1px solid #0b1a30;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.ns-pagi {
    justify-content: center;
    margin-top: 40px;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.ns-pagi .page-link {
    color: #6c757d;
}
ul.ns-pagi li a {
    border: none;
    box-shadow: 0px 0px 10px #00000010 !important;
    margin: 0px 3px;
}
.ns-pagi .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--color2);
    border-color: var(--color2);
}

.post-content.packbor{
    max-height: 380px;
    overflow: auto;
}

.post-content {
    background: #fff;
    overflow: hidden;
    border-radius: 6px;
    /* box-shadow: 0px 10px 40px #00000010; */
    margin-bottom: 30px;
}

/* width */
.post-content::-webkit-scrollbar {
    width: 5px;
  }
  
/* Track */
.post-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
.post-content::-webkit-scrollbar-thumb {
    background: #c4c4c4;
}

/* Handle on hover */
.post-content::-webkit-scrollbar-thumb:hover {
    background: #121325;
}

.post-image img {
    width: 100%;
}
.post-header {
    padding: 20px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    position: relative;
}
.post-header h1 {
    font-weight: bold;
    font-size: 34px;
    color: #444;
}
.post-header::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 6px;
    width: 150px;
    border-radius: 17px;
    background: #555;
}
.entry-content {
    padding: 40px 30px;
    margin-top: 20px;
    background: white;
    border-radius: 5px;
}
.entry-content img {
    padding: 15px;
    max-width: 100%;
}
.entry-content.page {
  padding: 39px 34px;
}
.entry-content blockquote {
    padding: 7px;
    padding-left: 15px;
    background: #00000005;
    border-left: 4px solid #00000020;
}
.entry-content blockquote p {
    margin-bottom: 0 !important;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5 {
  color: #19203f;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
}
.entry-content h1{
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
}
.aboutPage .entry-content h1{
    margin-bottom: 20px;
    font-size: 26px;
}

.entry-content h2{
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-top: 30px;
}
.entry-content h3{
    font-size: 25px;
}
.entry-content p {
    color: #7c8499;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}
.sidebar-title {
    font-size: 32px;
    padding-left: 0;
    position: relative;
    color: #63677d;
    margin-bottom: 23px;
    border-bottom: 1px solid #dbdbdb;
    text-align: center;
    font-weight: 8;
}
.sidebar-title::before {
    content: "";
    position: absolute;
    left: 2px;
    width: 7px;
    border-radius: 16px;
    height: 100%;
    background: var(--color2);
    display: none;
}
.sidebar-title span {
    color: #63677d;
    font-weight: 800;
}
.sidebar-title h3 {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #63677d;
    margin-bottom: 17px;
}
.sidebar-title i {
    position: unset;
    right: 5px;
    top: 50%;
    transform: translateY(5%);
    font-size: 20px;
    color: #68acff;
    float: left;
    margin-right: 8px;
}
.ob-item {
    background: #fff;
    padding: 0px;
    border-radius: 12px;
    margin-bottom: 15px;
    /* box-shadow: 0 7px 38px rgba(0,0,0,.1); */
    display: flex;
    align-items: center;
}
.ob-thumb img {
    width: 145px;
    min-height: 105px;
    max-height: 105px;
    border-radius: 8px;
    object-fit: cover;
}
.ob-detail {
    margin-left: 12px;
}
.ob-detail h4 {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ob-detail a span{font-size:12px;font-weight: 700;color: black;}
.ob-detail p{
    font-size: 12px;
    font-weight: 500;
    color: #878787;
    overflow: hidden;
    height: 28px;
    text-overflow:ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    line-height: 14px;
    margin-bottom: 5px;
}
.sidebar-item {
  margin-bottom: 50px;
  background: white;
  padding: 30px 15px 20px 15px;
  border-radius: 5px;
}
.sidebar-item:nth-last-child(1){
    position: sticky;
    top: 20px;
}
.sidebar-contact {
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    color: var(--color1);
    text-align: center;
}
.sidebar-contact i {
    font-size: 95px;
    margin-top: 15px;
    margin-bottom: 25px;
}
.sidebar-contact h4 {
    font-weight: bold;
    font-size: 30px;
}
.sidebar-contact p {
    color: #959595;
}
.sidebar-contact-btn {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 20px;
    background: var(--color1);
    box-shadow: 0px 5px 20px var(--color1-sd);
    padding: 10px 40px;
    border-radius: 15px;
    margin-top: 8px;
    margin-bottom: 15px;
}
.sidebar-service-list {
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    /* box-shadow: 0 7px 38px rgba(0,0,0,.1); */
}
.sise-icon {
    width: 50px;
    text-align: center;
}
.sise-item {
    color: var(--color1);
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #00000010;
    display: flex;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 10px;
}
.sise-item:nth-last-child(1){
  border-bottom: none;
}
.sise-item i {
    font-size: 43px;
    color: white;
}
.sise-detail {
    padding: 0px 12px;
}

.sise-item:first-child{background:#e7306d;}
.sise-item:nth-child(2){background:#ff0000;}
.sise-item:nth-child(4){background:#1873eb;}
.sise-item:nth-child(3){background:#000;}
.sise-item:nth-child(5){background:#1da0f1;}
.sise-item:nth-child(6){background:#22974c;}
.sise-item:nth-child(7){background:#e7306d;}

.sise-detail a {
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.sise-detail a span {
    display: block;
    font-weight: 400;
    float: left;
    margin-left: 5px;
}
.sise-action {
    margin-left: auto;
    color: #333;
}
.sise-action i {
    color: #fff;
    font-size: 14px;
    transition: .5s;
}
.sise-action i:hover {
    color: var(--color2);
}
.contact-form {
  margin-bottom: 40px;
}
.contact-area .form-control {
    height: 60px;
    border: 1px solid #c9d2e1;
    border-radius: 12px;
    box-shadow: none !important;
    padding: 5px 20px;
    transition: .3s;
}
.contact-area .form-control:active, .contact-area .form-control:focus {
  border-color: #96d3f8;
}
.contact-area textarea {
  min-height: 100px;
  padding: 15px 20px !important;
}
.contact-area .form-group label {
  padding-left: 7px;
  margin-bottom: 4px;
  color: #555;
}
.contact-send-btn {
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    background: var(--color2);
    padding: 9px 30px;
    border-radius: 0px 5px 5px 0px;
    transition: .3s;
}
.contact-send-btn:hover {
}
.search-area {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 95px;
    background: #292544;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
    box-shadow: 0px 4px 15px #00000007;
    border-bottom: 1px solid #575870;
}
.search-area.show {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.search-close i {
    position: absolute;
    font-size: 30px;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    cursor: pointer;
    transition: .3s;
}
.search-close:hover i {
  transform: translateY(-50%) rotate(90deg);
}
.search-input {
    display: flex;
    align-items: center;
}
.search-input i {
    margin-right: 5px;
}
.search-input-relative {
    display: flex;
    align-items: center;
    width: 100%;
}
.search-input .form-control {
    height: 45px;
    border-radius: 2px;
    border: 0px solid #ececec;
    box-shadow: none !important;
    padding: 8px 20px;
    font-size: 14px;
}
.search-input-btn {
    color: #fff !important;
    font-size: 14px;
    background: var(--color2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    height: 45px;
    border-radius: 2px;
    margin-left: 12px;
}
.contact-sidebox {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    border: 3px solid #ececec;
    display: flex;
    align-items: center;
}
.cosi-icon {
    font-size: 60px;
    color: #555;
}
.cosi-detail {
    margin-left: 15px;
}
.cosi-detail h4 {
    font-weight: bold;
    color: #555;
    margin-bottom: 0px;
}
.cosi-detail span:nth-child(3) {
    font-weight: 600;
}
.cosi-detail span:nth-last-child(1) {
  margin-top: 10px;
  margin-bottom: 0;
}
.owl-carousel.mustu .owl-item {
    height: 490px !important;
}
.owl-item .item, .owl-item .pack-item {
    height: 100% !important;
}
.cosi-detail span {
    display: block;
    color: #666;
    position: relative;
    margin-bottom: -4px;
}
.ns-select {
    /* box-shadow: 0px 3px 15px #0000001c; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    border-radius: 0;
    height: 60px;
    padding: 15px;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color1);
    background-color: #fff;
    border: 1px solid #dcdce0;
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    padding-left: 73px;
}
.ns-select i.dropicon {
    transition: .3s;
}
.ns-select.show i.dropicon {
    transform: rotate(90deg);
}
ul.ns-dropselect {
    display: none;
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 999;
    width: 100%;
    background: #fff;
    /* box-shadow: 0px 0px 20px #00000020; */
    padding: 0;
    max-height: 362px;
    overflow: auto;
    border-radius: 0;
    border: 1px solid #e4e5eb;
    padding: 0 5px;
}
.ns-select-area {
    position: relative;
    margin-bottom: 15px;
    transition: .2s;
}
ul.ns-dropselect li {
    color: #434b5d;
    list-style: none;
    cursor: pointer;
    text-align: left;
    transition: .3s;
    padding: 14px 10px;
    font-size: 15px;
    border-bottom: 1px solid #00000010;
    font-weight: 600;
}
ul.ns-dropselect li:hover {
    background: #fafafa;
}
ul.ns-dropselect li:nth-last-child(1) {
    border: none;
}
ul.ns-dropselect li i {
    float: left;
    position: relative;
    top: 4px;
    margin-right: 10px;
}
#hizli-al {
    padding: 0px 0px;
    margin: 0;
}
#hizli-satin-al {
    width: 140px;
    color: #fff !important;
    background: #70b74d;
    padding: 15px;
    border-radius: 0;
    font-weight: 600;
    font-size: 19px;
}
.ns-dropselect::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #eaeaea;
}
.ns-dropselect::-webkit-scrollbar
{
    width: 8px;
    background-color: #eaeaea;
    position: relative;
}
.ns-dropselect::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}


/* Footer */
.foot-flex {
  background: url(../img/bg.png), var(--color1);
  padding: 75px;
  min-height: 350px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.foot-top-item1 {
  padding-left: 35px;
  position: relative;
}
.foot-top-item1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 7px;
  border-radius: 25px;
  background: #fff;
}
.foot-top-item1 h2 {
  color: #fff;
  font-weight: bold;
  font-size: 35px;
}
.foot-top-item1 p {
  color: #f8f8f8;
  margin-bottom: 0;
}
.foot-top-item2 {
  min-width: 350px;
  text-align: right;
}
.footer-contant-btn {
  background: #fff;
  color: #263653;
  box-shadow: 0px 10px 30px #00000030;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 15px;
}
.footer-body {
  margin-top: 0px;
  padding-top: 0px;
}
.foot-content {
  display: flex;
  align-items: center;
}
.fc-logo img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
}
.fc-navs {
  margin-left: auto;
}
.fc-navs ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.foot-contact {
    margin-top: 50px;
}
.fc-navs ul li a {
  padding: 8px 15px;
  margin-left: 5px;
  font-weight: 500;
  color: #727272;
  transition: .3s;
  border-bottom: 3px solid #00000000;
}
.fc-navs ul li.selected a, .fc-navs ul li:hover a {
  border-bottom: 3px solid var(--color1);
  color: var(--color1);
}
.foot-down {
  padding: 0px 15px;
  padding-top: 10px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
}
.fd-copyright {
  color: #727272;
}
.fd-social-media {
  margin-left: auto;
}
.fd-social-media i {
  font-size: 26px;
  margin-left: 10px;
  color: var(--color1);
}

/* Other Codes */
.ns-center {
    display: inherit;
}
.ns-center > div {
    align-self: center;
}
.well-bros {
    position: fixed;
    left: 10px;
    bottom: 20px;
    transform: translateY(0);
    transition: .3s;
    z-index: 99;
}

.well-bros.close {
    position: fixed;
    left: 2px;
    bottom: 2px;
    transform: translateY(0);
}
.well-bros.close .wb-item.wb-close {
    border-bottom-left-radius: 0;
    padding: 0;
}
.wb-item {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 3px;
    border-radius: 4px;
    cursor: pointer;
}
.wb-item.wb-close {
  margin-bottom: 0;
  transition: .3s;
}
.wb-icon {
    width: 40px;
    height: 40px;
    display: grid;
    align-items: center;
    text-align: center;
}
.wb-item i {
    font-size: 24px;
    color: #fff;
}
.wb-text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 7px;
    padding-right: 15px;
    position: absolute;
    width: max-content;
    visibility: hidden;
    margin-left: -20px;
    opacity: 0;
}
.wb-item:hover .wb-text {
    position: relative;
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
    transition: .5s;
}
.wb-item.wb-whatsapp i {
    font-size: 25px;
    position: relative;
    top: -1px;
}
.wb-item.wb-phone i {
    font-size: 23px;
    position: relative;
    top: -1px;
}
.wb-item.wb-osearch i {
    font-size: 20px;
}
.wb-item.wb-close {
    background: #292544;
}
.wb-item.wb-close .wb-icon i {
    transition: .3s;
}
.wb-item.wb-close:hover .wb-icon i.fas.fa-times {
  transform: rotate(360deg);
}
i.fas.fa-angle-double-up {
    position: relative;
    left: 2px;
    bottom: 2px;
    transform: rotate(45deg);
}
.wb-item.wb-whatsapp {
    background: #5aba70;
}
.wb-item.wb-phone {
    background: var(--color4);
}
.wb-item.wb-osearch {
    background: var(--color2);
}
.ico-chance {
    display: grid;
    align-items: center;
}
.nonshake {
    animation: .5s ease shake;
}
.notFoundArea {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.notFoundArea h2 {
    font-weight: bold;
    color: #555;
}
.notFoundArea span {
    color: #777;
}
.nf-flex {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    column-gap: 10px;
}
.nf-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.nf-item {
    color: #6c6c6c !important;
    background: #e9e9e9;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 500;
    transition: .3s;
}
.nf-item:hover {
    padding: 15px 50px;
}
.usinfor {
    display: block;
}
.usinfor a {
    color: var(--color1) !important;
    font-weight: 500;
    font-size: 14px;
}
.modal-botto {
    justify-content: center;
}
.modal-butto {
    border: none;
    padding: 7px 20px;
    border-radius: 7px;
    background: #d1d1d1;
}
.usinfor .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.usinfor .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.usinfor .cbx span:first-child {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.2s ease;
}
.usinfor .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.usinfor .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color1);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.usinfor .cbx span:last-child {
  padding-left: 8px;
}
.usinfor .cbx:hover span:first-child {
  border-color: var(--color1);
}

.usinfor .inp-cbx:checked + .cbx span:first-child {
  background: var(--color1);
  border-color: var(--color1);
  animation: wave 0.4s ease;
}
.usinfor .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.usinfor .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
}
}



/* Keyframes */

@keyframes salla {
  0%, 50% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(.2, .25, .55, 1)
}

25% {
    transform: rotate(-5deg);
    animation-timing-function: cubic-bezier(.45, 0, .8, .75)
}

75% {
    transform: rotate(5deg);
    animation-timing-function: cubic-bezier(.45, 0, .8, .75)
}

to {
    transform: rotate(0deg);
}
}

/* Media Codes */

@media (min-width: 1200px) {
    .container {
      max-width: 1200px;
  }   
  .intro-head.container {
      max-width: 1220px;
  }
  .why-us-text {
      padding-right: 20px;
  }
  .foot-top-item2::after {
      content: "";
      position: absolute;
      top: 28%;
      right: -10%;
      height: 100%;
      width: 40%;
      border-radius: 100px;
      background: var(--color2);
      z-index: -1;
      transform: rotate(51deg);
      border: 14px solid #f8f8f8;
  }
  .iservice-item:hover {
  }
}

@media (min-width: 1370px) {
    .container {
      max-width: 1200px;
  } 
}
@media (min-width: 992px) {
  .wu-item:hover {
    margin-bottom: -15px;
    margin-top: -15px;
    padding-top: 15px;
    cursor: pointer;
}
.menu-toggler {
    display: none;
}
.best-seller-area {
    padding-left: 12px;
}
}
@media (max-width: 991px) {
  .menu-toggler.active .line-1, .menu-toggler.active .line-2,.menu-toggler.active .line-3{background: white;}
  .menu-toggler .line-1, .menu-toggler .line-2,.menu-toggler .line-3{background: #68acff;}
  .navbar-nav.ml-auto{padding-bottom: 100px;}
  .navbar-nav li a{color: white}
  .selectBannerGroup{
    flex-direction:column;
    width: 100%;
    margin-bottom: 10px;
  }
  #hizli-satin-al{
  width: 100%;
  }
  .bannerImage > img{
}
  body .fast-two{
    width: 100%;
}
  body .bannerImage{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -100px;
}
  .fast-first h1{
    font-size: 26px;
}
  .fast-first h1{}
  .fast-first h1 span{
    font-size: 24px;
    padding: 2px 5px;
    clear: left;
}
  .fast-sec .ns-select-area{width: 100%;margin: 0px 0px 5px 0px;}
  .droplapse {
    display: none;
    border-top: 1px solid #0000001f;
    margin-top: 25px;
    padding: 15px 0px;
    max-height: calc(100vh - 100px);
    overflow: auto;
}
.nav-buts-flex {
    margin-top: 15px;
    flex-flow: wrap;
}
.navbar-nav .nav-contact a:hover {
    transform: translateY(0px);
}
.navbar-nav .order-search-btn a:hover {
    transform: translateY(0px);
}
.intro {
    margin-top: 0px;
}
.blog-list {
    grid-template-columns: repeat(2,1fr);
}
.fast-flex {
    display: block;
    padding: 0;
}
.ordersearch-area {
    padding: 50px 40px;
}
.fast-first {
    width: auto;
    text-align: center;
    padding-right: 0px;
    margin-top: 0;
}
.fast-first h2 {
    font-size: 30px;
    max-width: 100%;
}
.fast-sec {
    width: auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: -100px;
}
.fast-box-area {
    justify-content: center;
}
.best-seller-area::after {
  background: linear-gradient(45deg, transparent, #d1d1d1, transparent);
}
.navbar-nav .dropdown-sub a {
    padding: 8px 18px !important;
    padding-left: 33px !important;
}
.navbar-nav .dropdown-sub a::before {
    top: 12px;
}
.dropdown-items::before {
  content: none;
}
.platform-list {
  display: block;
}
.plat-item {
  margin-bottom: 20px;
}
.intro-head {
    margin-top: 0 !important;
    border-radius: 0px 0px 20px 20px !important;
    padding: 40px 15px;
    display: block;
}
.ihead-well {
    display: block;
}
.well-one i {
    font-size: 90px;
}
.well-two h1 {
    font-size: 29px;
}
.well-one, .well-two {
    text-align: center;
}
.well-two {
    margin-top: 15px;
}
.well-two p::after {
    left: calc(50% - 50px);
}
.pack-list {
    grid-template-columns: repeat(2, 1fr);
}
.m-or1 {
    order: 1;
}
.m-or2 {
    order: 2;
}
.order-pack-area {
    margin-top: 0px;
}
.obj-tab span {
    display: none;
}
.payments-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.pay-icon {
    color: #777;
    font-size: 35px;
    width: 40px;
}
.os-tabs {
    text-align: center;
}
.os-tabs h4 {
}
.os-next-btn, .os-pri-btn {
    padding: 12px 35px;
}
section.content-area {
    padding: 20px 0;
}
.search-input-btn span {
    display: none;
}
.wb-text {
    display: none;
}
.wb-item {
    padding: 3px;
}
.wb-icon {
    width: 35px;
    height: 35px;
}
.wb-item {
    margin-bottom: 6px;
}
.wb-item.wb-whatsapp i {
    font-size: 25px;
    top: 0;
}
.wb-item.wb-phone i {
  font-size: 19px;
}
.wb-item.wb-osearch i {
  font-size: 20px;
}
.well-bros {
    left: 10px;
    bottom: 15px;
}
.os-area h2 {
    font-size: 35px;
}
.os-search-area {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.int-search-button {
    padding: 12px 20px !important;
}
.int-search-button span {
    display: none;
}
.show-area {
    display: block;
    text-align: center;
}
.show-item1 {
    padding-right: 0;
}
.show-buttons {
    display: 
}
.show-buttons {
    justify-content: center;
}
.nf-flex {
    flex-direction: column;
    row-gap: 10px;
}
}
@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
}
.intro-start .container {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .nav-contact {
    margin-left: 0;
    margin-top: 12px;
}
.navbar-nav .order-search-btn {
    margin-left: 0;
    margin-top: 12px;
}
.intro-start {
    padding-bottom: 20px;
}
.about-us {
    padding: 100px 0px;
    margin-top: 50px;
}
.testimonial {
    padding: 50px 0px;
}
.faq {
    padding: 100px 0px;
}
.blog-posts {
    padding: 50px 0px;
}
.why-us-box {
    flex-flow: wrap;
}
.wu-item {
    padding: 0px 22px;
    padding-bottom: 25px;
    margin-bottom: 15px;
    width: 100%;
}
.last-blog-list {
    grid-template-columns: repeat(1, 1fr);
}
.lb-item {
    margin-bottom: 15px;
}
.lb-detail p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.lb-detail {
    text-align: center;
}
.lb-read-button {
    text-align: center;
}
.foot-flex {
    padding: 25px !important;
    flex-flow: wrap;
}
.foot-top-item1 {
    padding-left: 0 !important;
    text-align: center;
}
.foot-top-item1::before {
    display: none;
}
.foot-top-item1 h3 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-top: 20px;
}
.foot-top-item2 {
    width: 100%;
    min-width: auto !important;
    text-align: center !important;
    padding: 40px 0px;
}
.foot-content {
    display: block !important;
}
.fc-logo {
    width: 100%;
    text-align: center !important;
}
.fc-navs {
  margin-left: 0;
  margin-top: 17px;
  width: 100%;
  text-align: center;
}
.fc-navs ul li.selected a, .fc-navs ul li:hover a {
  border-bottom: none !important;
}
.fc-navs ul li a {
  padding:5px 15px !important;
  display: block !important;
}
.foot-down {
  display: block !important;
  text-align: center;
}
.fc-navs ul {
    display: block !important;
}
.fd-copyright {
  margin-bottom: 15px;
}
.best-seller .container {
    padding-right: 0;
    padding-left: 0;
}
.header-area {
    padding: 0;
}
.head-nav .logo img {
    height: 40px;
}
.fast-box-area {
    display: none;
}
.blog-list {
    grid-template-columns: repeat(1,1fr);
}
.intro {
    margin-top: 0;
    margin-bottom: 75px;
}
.intro .container {
    padding: 0;
}
.intro-head, .ordersearch-area {
    margin-top: -81px !important;
}
.ordersearch-area, .ordersearch-area {
    padding: 121px 25px 50px 25px;
    border-radius: 0px 0px 15px 15px !important;
}
.ordersearch-area::before {
    border-radius: 0px 0px 15px 15px !important;
}
.best-seller h2, .lb-area h3 {
    font-size: 25px;
}
.best-sell-all span, .lb-area-all span {
    display: none;
}
.best-sell-all i, .lb-area-all i {
    margin-left: 0;
}
.best-sell-all {
    min-width: auto;
}
.best-seller p {
    display: none;
}
.best-seller-area {
    padding: 0 15px;
}
.best-seller-area::after {
    background: linear-gradient(45deg, #41305b, transparent);
    left: 15px;
    opacity: .6;
}
.best-seller-area p {
    display: none;
}
.best-sell-all a, .lb-area-all a {
    font-weight: bold;
}
.why-us-text > span, .gtco-testimonials span {
    font-size: 18px;
    font-weight: 600;
}
.why-us-text h3, .gtco-testimonials h2 {
    font-size: 25px;
}
.nsa-header {
  color: var(--color3);
  font-size: 16px;
  padding: 12px;
  margin-bottom: 15px;
}
.lb-title p {
    display: none;
}
.plat-item, .platform-list {
    display: block;
}
.plat-item {
    display: flex;
    margin-bottom: 20px
}
.plat-detail {
    padding: 0;
    text-align: center;
}
.plat-detail p {
    overflow: visible;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
}
.plat-action {
    margin-top: 20px;
}
.pack-list {
    grid-template-columns: repeat(1, 1fr);
}
.search-input-relative {
    display: flex;
    align-items: center;
    position: relative;
    width: calc(100% - 50px);
}
.search-input .form-control {
    height: 55px;
    border-radius: 12px;
    border: 2px solid #ececec;
    box-shadow: none !important;
    padding: 20px;
}
.search-input-btn {
    position: absolute;
    right: 7px;
    height: 41px;
    padding: 10px 16px;
    border-radius: 9px;
}
.search-close i {
    font-size: 33px;
    color: #919191;
    right: 20px;
}
.show-buttons {
    display: none;
}
.intro-text-area h2 {
    font-size: 35px;
}
.it-buttons {
    display: block;
}
.it-item {
    margin-right: 0;
    margin-bottom: 12px;
    text-align: right;
    padding: 13px 20px;
}
.it-item span {
    float: left;
}
}
.gecistir {
    position: relative;
    overflow: hidden;
    cursor: not-allowed !important;
    pointer-events: none;
}
.gecistir::before {
    content: '';
    display: block;
    position: absolute;
    left: -300px;
    top: 0;
    height: 100%;
    width: 300px;
    background: linear-gradient(to right, transparent 0%, #e8e9ef 50%, transparent 100%);
    animation: load .7s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    z-index: 99;
    cursor: wait;
}
@keyframes load {
    from {
        left: -300px;
    }
    to   {
        left: 100%;
    }
}
.nonshake {
    animation: shake 0.2s cubic-bezier(.11,.07,.19,.10) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.obj-tabindicator {
    opacity: 0;
}
.active .obj-tabindicator {
    opacity: 1;
    background: none;
}
.active .obj-tablink {
    color: #fff !important;
    z-index: 2;
}

.headerMenu{
    width: 100%;
    border-bottom: 1px solid #575870;
    background: #29254400;
}

.fast-two{
    display: flex;
    position: relative;
    width: 40%;
}
.headerMenu.menu-toggler.active{
    background: #292544;
}

.bannerImage{
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: -210px;
    text-align: right;
}
.bannerImage > img{}
.lb-detail{}
.lb-detail p{}
.lb-detail a{}
.lb-detail a h2{}
.lb-detail{
    padding: 0 0 20px 0;
    border-bottom: 1px solid #f0f0f0;
    width: calc(100% - 40px);
    margin: 20px auto 0 auto;
}
.lb-read-button{}
.lb-read-button a{}
.lb-read-button i{
    float: right;
    margin-top: 3px;
}

.blogDetail{padding: 50px 0px;}

.blogDetail .entry-content{}

.blogDetail .post-content{background: none;}

.entry-content p > img{ padding: 0px; }

.content-area .fast-sec{
    margin: 0;
    padding: 0;
}
.content-area .fast-sec{}

.detailShareButtons{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detailShareButtons button{
    width: calc(50% - 5px);
    display: flex!important;
    line-height: 25px;
    align-items: center;
    justify-content: center;
    margin-top: 0!important;
    margin-bottom: 0px!important;
  font-weight:500;
}

.detailShareButtons button i{margin-right:10px;}

.allLink{
    font-size: 12px;
    font-weight: 500;
    color: #878787;
    margin-left: 3px;
}

.socialPacketBg{
    background-image: url(../img/elips.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    height: 165px;
    display: flex;
    align-items: center;
}

.socialPacketBg.well-one i{
    font-size: 65px;
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
            animation: heartbeat 1.5s ease-in-out infinite both;
}

 @-webkit-keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }

.instagramPage .intro-head::before{background: var(--colorInstagram);}
.instagramPage .socialPacketBg.well-one i{color: var(--colorInstagram);}
.instagramPage .headerMenu{border-color: #ffffff50;}
.instagramPage .plat-icon{background: var(--colorInstagram);}
.instagramPage .plat-icon i{color: var(--colorInstagram);}
.instagramPage .plat-action-btn{background: var(--bgColorInstagram);}
.instagramPage .plat-action-btn{color: var(--colorInstagram)!important;}
.instagramPage .pack-item.special{}

.twitterPage .intro-head::before{background: var(--colorTwitter);}
.twitterPage .socialPacketBg.well-one i{color: var(--colorTwitter);}
.twitterPage .headerMenu{border-color: #ffffff50;}
.twitterPage .plat-icon{background: var(--colorTwitter);}
.twitterPage .plat-icon i{color: var(--colorTwitter);}
.twitterPage .plat-action-btn{background: var(--bgColorTwitter);}
.twitterPage .plat-action-btn{color: var(--colorTwitter)!important;}

.youtubePage .intro-head::before{background: var(--colorYoutube);}
.youtubePage .socialPacketBg.well-one i{color: var(--colorYoutube);}
.youtubePage .headerMenu{border-color: #ffffff50;}
.youtubePage .plat-icon{background: var(--colorYoutube);}
.youtubePage .plat-icon i{color: var(--colorYoutube);}
.youtubePage .plat-action-btn{background: var(--bgColorYoutube);}
.youtubePage .plat-action-btn{color: var(--colorYoutube)!important;}

.facebookPage .intro-head::before{background: var(--colorFacebook);}
.facebookPage .socialPacketBg.well-one i{color: var(--colorFacebook);}
.facebookPage .headerMenu{border-color: #ffffff50;}
.facebookPage .plat-icon{background: var(--colorFacebook);}
.facebookPage .plat-icon i{color: var(--colorFacebook);}
.facebookPage .plat-action-btn{background: var(--bgColorFacebook);}
.facebookPage .plat-action-btn{color: var(--colorFacebook)!important;}

.tiktokPage .intro-head::before{background: var(--colorTiktok);}
.tiktokPage .socialPacketBg.well-one i{color: var(--colorTiktok);}
.tiktokPage .headerMenu{border-color: #ffffff50;}
.tiktokPage .plat-icon{background: var(--colorTiktok);}
.tiktokPage .plat-icon i{color: var(--colorTiktok);}
.tiktokPage .plat-action-btn{background: var(--bgColorTiktok);}
/*.tiktokPage .plat-action-btn{color: var(--colorTiktok)!important;}*/

.threadsPage .intro-head::before{background: var(--colorTiktok);}
.threadsPage .socialPacketBg.well-one i{color: var(--colorTiktok);}
.threadsPage .headerMenu{border-color: #ffffff50;}
.threadsPage .plat-icon{background: var(--colorTiktok);}
.threadsPage .plat-icon i{color: var(--colorTiktok);}
.threadsPage .plat-action-btn{background: var(--bgColorTiktok);}



.spotifyPage .intro-head::before{background: var(--colorSpotify);}
.spotifyPage .socialPacketBg.well-one i{color: var(--colorSpotify);}
.spotifyPage .headerMenu{border-color: #ffffff50;}
.spotifyPage .plat-icon{background: var(--colorSpotify);}
.spotifyPage .plat-icon i{color: var(--colorSpotify);}
.spotifyPage .plat-action-btn{background: var(--bgColorSpotify);}
.spotifyPage .plat-action-btn{color: var(--colorSpotify)!important;}

.tinderPage .intro-head::before{background: var(--colorTinder);}
.tinderPage .socialPacketBg.well-one i{color: var(--colorTinder);}
.tinderPage .headerMenu{border-color: #ffffff50;}
.tinderPage .plat-icon{background: var(--colorTinder);}
.tinderPage .plat-icon i{color: var(--colorTinder);}
.tinderPage .plat-action-btn{background: var(--bgColorTinder);}
.tinderPage .plat-action-btn{color: var(--colorTinder)!important;}

.mapArea{
    float: left;
    border-radius: 5px;
    margin-right: 15px;
}

.mapArea iframe{
    border-radius: 5px;
}

.widgetsArea{
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f2f6;
    margin-bottom: 30px;
}
.widgetBox{
    width: 100%;
    background: #1da0f1;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 5px;
    flex-wrap: wrap;
}
.widgetBox span{font-weight: 500;font-size: 20px;display: flex;flex-direction: column;}
.widgetBox a{
    color: white;
    clear: left;
    font-size: 20px;
    font-weight: 400;
}
.widgetIcon{
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background: #1780c1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-right: 15px;
}
.widgetIcon i{}

#msform label{display: none;}

.contactWrapper{
    width: 100%;
    padding: 30px 25px;
    background: white;
    border-radius: 0px;
}

.agreementArea{
    display: block;
    align-items: center;
}
.contactBtn{
    float: right;
    display: flex;
    align-items: center;
    background: #1780c1;
    border-radius: 5px;
    transition: .3s;
}

.contactBtn:hover .contact-send-btn{
    background: #1780c1;
}

.contactBtn i{
    margin: 0px 10px;
    color: white;
}
.contactBtn .contact-send-btn{
    float: right;
}
.agreementInput{
    float: left;
    padding-left: 6px;
    margin-top: 8px;
    font-size: 15px;
    color: #151b42;
    font-weight: 500;
}
.agreementInput input{margin-right: 5px;top: 1px;position: relative;}
.agreementInput a{
    color: #1da0f1;
    font-size: 15px;
}
.order-pack-list ul li i{color: #d83265;margin-right: 12px;}

.orderDetail{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    padding: 25px 15px;
    border-bottom: 1px solid #e8e8e9;
}
.basketDetail{
    border: 1px solid #28a3e4;
    padding: 13px 17px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    background: #f9f9f9;
}
.basketDetail img{
    float: left;
}
.basketDetail span{
    font-size: 18px;
    font-weight: 500;
    color: #28a3e4;
    margin-left: 15px;
}
.iconBox {display: flex; align-items: center; justify-content: center; float: left;margin-right: 15px;width: 45px; height: 45px;border-radius: 5px;background: #d1e7dd;}
.iconBox i{color: #198754;}



#offerWe{
    margin: 0px 0px;
    padding-top: 50px;
}
.offerWrapper{
    width: 100%;
    display: flex;
    align-items: center;
}
.offerImg{
    max-width: 480px;
    width: 100%;
    float: left;
}
.offerImg img{
    width: 100%;
}
.offerDescription{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
.offerTitle{
    width: 100%;
    float: left;
    margin-bottom: 25px;
}
.offerTitle p{
    font-size: 22px;
    color: #63677d;
    margin: 0px 0px 0px 0px;
    max-height: 100px;
    overflow: hidden;
}
.offerTitle h2{
    font-size: 40px;
    color: #63677d;
    font-weight: 800;
    margin: 0px 0px 30px 0px;
    position: relative;
    padding-bottom: 20px;
}
.offerTitle h2:before{
    content: "";
    height: 8px;
    width: 48px;
    background: #63677d;
    display: block;
    border-radius: 40px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.offerTitle h2:after {
    content: "";
    height: 8px;
    width: 28px;
    background: #63677d;
    display: block;
    border-radius: 40px;
    margin-left: 60px;
    position: absolute;
    bottom: 0px;
}
.offerTitle span{
    font-size: 24px;
    color: #63677d;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 26px;
}
.offerTitle{
    display: flex;
    flex-direction: column;
}
.offerBox{
    width: calc(50% - 10px);
    float: left;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}
.offerIcon{
    width: 80px;
    min-width: 80px;
    height: 70px;
    min-height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0ebf5;
    color: #5d6572;
    margin-right: 10px;
    font-size: 28px;
}
.offerIcon img{}
.offerBox p{
    margin:0px;
    font-size: 14px;
    color:#5d6572;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
.offerBox p span{
    font-weight: bold;
    font-size: 18px;
    float: left;
    clear: left;
}

.offerBoxWrapper{display: flex;flex-wrap: wrap;justify-content: space-between;}

.offerBoxWrapper .offerBox{display: none;}
.offerBoxWrapper .offerBox:first-child{display: flex;}
.offerBoxWrapper .offerBox:nth-child(2){display: flex;}

.menuContainer{width: 100%;position: absolute;right: 0px;left: 0;top: 100%;background: #f0f2f6;display: none;padding: 30px 0;float: left;z-index: 9999;overflow: scroll;max-width: 100%;}
.menuContainer.p0{padding: 0;}
.menuWrapper{float: right;width: 100%;display: flex;justify-content: space-between;padding: 0px 0;align-items: center;}
.menuWrapper > ul{width: 100%;float: left;display: flex;justify-content: flex-end;}
.menuWrapper > ul > li{float: left;margin-left: 60px;}
.menuWrapper > ul > li > a{display: flex;align-items: center; font-size: 16px;color: #ffffff;font-weight: 500;display: flex;line-height: 90px;}
.menuWrapper > ul > li > a i{margin-left: 4px;font-size: 12px;}
.menuWrapper ul li ul{display: flex;gap: 30px;justify-content: flex-start;max-width: 1400px;margin: 0 auto;width: 100%;overflow: auto;flex-wrap: wrap;height: auto;overflow: unset;}
.menuWrapper ul li:hover .menuContainer{display: flex;}
.menuWrapper ul li ul.institutionalMenu{width: 100%;flex-wrap: nowrap;}
.menuWrapper ul li ul.institutionalMenu li{width: 100%;}
.menuWrapper ul li ul.institutionalMenu li a{display: flex; align-items: center; font-size: 18px; color: #8187a1; font-weight: 500; border: 1px solid #8187a1; border-radius: 23px; padding: 15px;background-color: white;}
.menuWrapper ul li ul.institutionalMenu li a:hover{color: #68acff;}
.menuWrapper ul li ul.institutionalMenu li a:hover .institutionalIcon img{filter: brightness(0) saturate(100%) invert(76%) sepia(28%) saturate(6668%) hue-rotate(187deg) brightness(100%) contrast(103%);}
.menuWrapper ul li ul.servicesMenu{gap: 10px;}
.menuWrapper ul li ul.servicesMenu li{ border-radius: 13px;width: calc(100% * 1/10);}
.menuWrapper ul li ul.servicesMenu li a {
    background: #d8dade;
    transition: .3s ease;
    width: calc(100% - 0px);
    text-align: left;
    padding: 7px 11px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 7px;
    font-size: 13px;
    color: #484444;
    font-weight: 400;
    align-content: center;
}.menuWrapper ul li ul.servicesMenu li a span{ font-weight: 600; }
.menuWrapper ul li ul.servicesMenu li a:hover{box-shadow: 1px 1px 11px 7px #0000002b;}/*
.menuWrapper ul li ul.servicesMenu li a.instagram{background-color: var(--colorInstagram);}
.menuWrapper ul li ul.servicesMenu li a.twitter{background-color: var(--colorTwitter);}
.menuWrapper ul li ul.servicesMenu li a.youtube{background-color: var(--colorYoutube);}
.menuWrapper ul li ul.servicesMenu li a.facebook{background-color: var(--colorFacebook);}
.menuWrapper ul li ul.servicesMenu li a.tiktok{background-color: var(--colorTiktok);}
.menuWrapper ul li ul.servicesMenu li a.spotify{background-color: var(--colorSpotify);}
.menuWrapper ul li ul.servicesMenu li a.tinder{background-color: var(--colorTinder);}
.menuWrapper ul li ul.menuIcon{}*/
.menuWrapper ul li ul.toolsMenu li{display: flex;width: calc(100% - 0px);justify-content: space-between;margin-left: 10px;margin-right: 10px;}
.menuWrapper ul li ul.toolsMenu li ul{flex-direction: column;border-right: 1px solid #eaebec;padding: 20px 0px 25px 0px;gap: 10px;overflow: unset;}
.menuWrapper ul li ul.toolsMenu li ul > span{font-size: 16px;color: #63677d;font-weight: bold;border-bottom: 1px solid #eaebec;padding-left: 10px;}
.menuWrapper ul li ul.toolsMenu li ul.instagram li a .menuIcon img{filter: brightness(0) saturate(100%) invert(30%) sepia(97%) saturate(3001%) hue-rotate(322deg) brightness(92%) contrast(91%);}
.menuWrapper ul li ul.toolsMenu li ul.twitter li a .menuIcon img{filter: brightness(0) saturate(100%) invert(49%) sepia(95%) saturate(1760%) hue-rotate(176deg) brightness(97%) contrast(94%);}
.menuWrapper ul li ul.toolsMenu li ul.facebook li a .menuIcon img{filter: brightness(0) saturate(100%) invert(38%) sepia(53%) saturate(3787%) hue-rotate(201deg) brightness(92%) contrast(99%);}
.menuWrapper ul li ul.toolsMenu li ul.youtube li a .menuIcon img{filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(7090%) hue-rotate(355deg) brightness(91%) contrast(131%);}
.menuWrapper ul li ul.toolsMenu li ul.tiktok li a .menuIcon img{filter: brightness(0) saturate(100%) invert(10%) sepia(12%) saturate(5078%) hue-rotate(200deg) brightness(98%) contrast(94%);}
.menuWrapper ul li ul.toolsMenu li a{display: flex;align-items: center;border: 1px solid black;border-radius: 13px;padding: 7px 0px 7px 7px;background: white;font-size: 14px;font-weight: 400;width: calc(100% - 20px);color: black;transition: .3s ease;}
.menuWrapper ul li ul.toolsMenu li a:hover{background: #f0f2f6;}
.menuWrapper ul li ul.toolsMenu li a span{font-weight: 600;margin-right: 5px;}
.institutionalIcon{width: 45px;height: 45px;display: flex;align-items: center;justify-content: center;background: #e6e7ec;border-radius: 13px;margin-right: 15px;}
.institutionalIcon img{width: 15px;height: 15px;}
.servicesIcon {
    width: 45px;
    height: 45px;
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: #4267b2;
}.servicesIcon img{width: 50px;height: 50px;filter: invert(1);}
.menuIcon{ width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; }
.menuIcon img{width: 15px;height: 15px;}
.toolsMenu .menuIcon{width: 32px;height: 32px;border-radius: 11px;background: rgb(235, 235, 235);margin-right: 5px;}
.toolsMenu .menuIcon img{width: 20px;height: 20px;}
.toolsMenu .instagram .menuIcon{background-color: #f4d1dd;}
.toolsMenu .twitter .menuIcon{background-color: #cde7f7;}
.toolsMenu .facebook .menuIcon{background-color: #ccdef6;}
.toolsMenu .youtube .menuIcon{background-color: #fac7c7;}
.toolsMenu .tiktok .menuIcon{background-color: #ccced4;}
.menuWrapper ul li ul.toolsMenu li ul.instagram a{border-color: var(--colorInstagram);color: var(--colorInstagram);}
.menuWrapper ul li ul.toolsMenu li ul.twitter a{border-color: var(--colorTwitter);color: var(--colorTwitter);}
.menuWrapper ul li ul.toolsMenu li ul.facebook a{border-color: var(--colorFacebook);color: var(--colorFacebook);}
.menuWrapper ul li ul.toolsMenu li ul.youtube a{border-color: var(--colorYoutube);color: var(--colorYoutube);}
.menuWrapper ul li ul.toolsMenu li ul.tiktok a{border-color: var(--colorTiktok);color: var(--colorTiktok);}

@-webkit-keyframes scale-up-ver-center {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  @keyframes scale-up-ver-center {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  

.ftmenuWrapper{
    float: left;
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-between;
    padding: 29px 65px 25px 0px;
}

.pack-item .btn-pack-buy.btninput{margin-top: 26px; border-radius: 12px;width: 100%;background: #68acff;font-size: 16px;font-weight: 500;color: #ffffff;height: 60px;}

.infoFirst{
    border: 0;
    border-radius: 9px;
    font-size: 14px;
    color: #7c7f8b;
    font-weight: 400;
    text-align: left;
}
.infoSecond{
    border: 0;
    border-radius: 9px;
    font-size: 14px;
    color: #d32929;
    font-weight: 400;
    text-align: left;
}

.orderLabel{
    font-size: 18px;
    color: #0b1a30;
    font-weight: 700;
    text-align: left;
    float: left;
}

.commentArea{}
.commentArea .contact-area textarea{height: 60px;min-height: 60px;}
.commentArea .sidebar-title span{font-size: 32px;color: #63677d;font-weight: 700;}
.commentArea .sidebar-title h3{font-size: 22px;color: #63677d;font-weight: 500;}
.pointsArea{width: 100%;float: left;border: 1px solid #b9c4d5;border-radius: 12px;height: 60px;display: flex;align-items: center;padding-left: 15px;margin-top: 3px;}
input.star:label.star:before{
  color:#b9c4d5;
}
input.star:checked~label.star:before{
    color: #ffa133;
    text-shadow: none;
}

.pointsArea .contact-area .form-group label{}
.contact-area .form-group .pointsArea label{
    padding: 0;
    font-size: 18px;
    margin-right: 10px;
}

.sendBtnForm{height: 60px;font-size: 16px;margin-top: 10px;}

.commentArea .contact-area .form-control{border-radius: 5px;font-size: 14px; color: #b9c4d5;}

.mobileSticky{display: none;}

.modal-body2 .container2{display: flex;flex-direction: column;padding: 30px;}
.modal-body2 .sign-in-container{width: 100%;position: unset;height: auto;}
.modal-body2 .overlay-container{width: 100%;position: unset;height: auto;}
.kalanSure{
    width: 50%;
    font-size: 18px;
    font-weight: 500;
    color: #18d3a6;
    padding: 0;
    border-radius: 15px;
    border: 1px solid #18d3a6;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    padding: 15px;
}
.kalanSure > div{}
.modal-body2 #timer{
    font-size: 18px;
    font-weight: 500;
    color: #18d3a6;
    border: 0px;
    padding: 0;
}

.timeModal{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}
.siraBekleme{
    width: 50%;
    font-size: 18px;
    font-weight: 500;
    color: #ff0000;
    padding: 0;
    border-radius: 15px;
    border: 1px solid #ff0000;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    padding: 15px;
}


.modal-body2 .overlay-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: unset;
    width: 100%;
    padding:0px;
}

.modal-body2 .overlay{
    display: flex;
    position: unset;
    width: 100%;
    background: #e1eeff;
    padding: 15px;
}

.kalanSure > img, .siraBekleme > img{margin-right: 15px;}
.spanBox{padding:2px 10px; margin:0px 7px; border-radius: 20px;}
.kalanSure .spanBox{background-color: #ccf1e8;}
.siraBekleme .spanBox{background: #fac7c7;}
.spanBox > span{margin-right: 5px;}

.modal-body2 .overlay{text-align: left;}
.modal-body2 .overlay h2{font-weight: bold;font-size: 18px;color: #68acff;text-align: left;}
.modal-body2 .overlay p,.modal-body2 .overlay span{font-weight: 400;font-size: 15px;color: #68acff;text-align: left;margin: 0;}
.modal-body2 .overlay .footer-contant-btn{
    background: #68acff;
    color: white;
    font-size: 14px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 400;
    box-shadow: none;
    margin-top: 5px;
}

.modalTitle{width: 100%;float: left;position: relative;padding-left: 45px;margin-top: 20px;}
.modalTitle::before{content: "";width: 30px;height: 30px;border-radius: 100%;background: #324160;display: block;position: absolute;top:10px;left:0;}
.modalTitle h4{
    color: #606578;
    font-weight: 700;
    float: left;
    width: 100%;
    text-align: left;
}
.modalTitle p{
    color: #606578;
    font-weight: 700;
    float: left;
    width: 100%;
    text-align: left;
}

.instagramPage .obj-tab{border-color: var(--colorInstagram)!important;}
.instagramPage .obj-tab.active{color: var(--colorInstagram)!important;opacity: .5!important;}
.instagramPage .obj-tab.active.secili {color: var(--colorInstagram)!important;opacity: 1!important;}
.instagramPage .obj-tab.active .obj-tablink{color: var(--colorInstagram)!important;}
.instagramPage .obj-tablink{color: var(--colorInstagram)!important;}
.instagramPage .iconBox{background: var(--bgColorInstagram)!important;}
.instagramPage .iconBox i{color: var(--colorInstagram)!important;}

.facebookPage .obj-tab{border-color: var(--colorFacebook)!important;}
.facebookPage .obj-tab.active{color: var(--colorFacebook)!important;opacity: .5!important;}
.facebookPage .obj-tab.active.secili {color: var(--colorFacebook)!important;opacity: 1!important;}
.facebookPage .obj-tab.active .obj-tablink{color: var(--colorFacebook)!important;}
.facebookPage .obj-tablink{color: var(--colorFacebook)!important;}
.facebookPage .iconBox{background: var(--bgColorFacebook)!important;}
.facebookPage .iconBox i{color: var(--colorFacebook)!important;}

.youtubePage .obj-tab{border-color: var(--colorYoutube)!important;}
.youtubePage .obj-tab.active{color: var(--colorYoutube)!important;opacity: .5!important;}
.youtubePage .obj-tab.active.secili {color: var(--colorYoutube)!important;opacity: 1!important;}
.youtubePage .obj-tab.active .obj-tablink{color: var(--colorYoutube)!important;}
.youtubePage .obj-tablink{color: var(--colorYoutube)!important;}
.youtubePage .iconBox{background: var(--bgColorYoutube)!important;}
.youtubePage .iconBox i{color: var(--colorYoutube)!important;}

.tiktokPage .obj-tab{border-color: var(--colorTiktok)!important;}
.tiktokPage .obj-tab.active{color: var(--colorTiktok)!important;opacity: .5!important;}
.tiktokPage .obj-tab.active.secili {color: var(--colorTiktok)!important;opacity: 1!important;}
.tiktokPage .obj-tab.active .obj-tablink{color: var(--colorTiktok)!important;}
.tiktokPage .obj-tablink{color: var(--colorTiktok)!important;}
.tiktokPage .iconBox{background: var(--bgColorTiktok)!important;}
.tiktokPage .iconBox i{color: #fff!important;}



.threadsPage .obj-tab{border-color: var(--colorTiktok)!important;}
.threadsPage .obj-tab.active{color: var(--colorTiktok)!important;opacity: .5!important;}
.threadsPage .obj-tab.active.secili {color: var(--colorTiktok)!important;opacity: 1!important;}
.threadsPage .obj-tab.active .obj-tablink{color: var(--colorTiktok)!important;}
.threadsPage .obj-tablink{color: var(--colorTiktok)!important;}
.threadsPage .iconBox{background: var(--bgColorTiktok)!important;}
.threadsPage .iconBox i{color: #fff!important;}

.spotifyPage .obj-tab{border-color: var(--colorSpotify)!important;}
.spotifyPage .obj-tab.active{color: var(--colorSpotify)!important;opacity: .5!important;}
.spotifyPage .obj-tab.active.secili {color: var(--colorSpotify)!important;opacity: 1!important;}
.spotifyPage .obj-tab.active .obj-tablink{color: var(--colorSpotify)!important;}
.spotifyPage .obj-tablink{color: var(--colorSpotify)!important;}
.spotifyPage .iconBox{background: var(--bgColorSpotify)!important;}
.spotifyPage .iconBox i{color: var(--colorSpotify)!important;}

.twitterPage .obj-tab{border-color: var(--colorTwitter)!important;}
.twitterPage .obj-tab.active{color: var(--colorTwitter)!important;opacity: .5!important;}
.twitterPage .obj-tab.active.secili {color: var(--colorTwitter)!important;opacity: 1!important;}
.twitterPage .obj-tab.active .obj-tablink{color: var(--colorTwitter)!important;}
.twitterPage .obj-tablink{color: var(--colorTwitter)!important;}
.twitterPage .iconBox{background: var(--bgColorTwitter)!important;}
.twitterPage .iconBox i{color: var(--colorTwitter)!important;}

.tinderPage .obj-tab{border-color: var(--colorTinder)!important;}
.tinderPage .obj-tab.active{color: var(--colorTinder)!important;opacity: .5!important;}
.tinderPage .obj-tab.active.secili {color: var(--colorTinder)!important;opacity: 1!important;}
.tinderPage .obj-tab.active .obj-tablink{color: var(--colorTinder)!important;}
.tinderPage .obj-tablink{color: var(--colorTinder)!important;}
.tinderPage .iconBox{background: var(--bgColorTinder)!important;}
.tinderPage .iconBox i{color: var(--colorTinder)!important;}

body .si-bildirim{display: flex; align-items: center;box-shadow: none;    width: 100%; max-width: 360px;}
body .si-sag{font-size: 13px!important;}
body .si-sol .fa-bell:before { content: "\f0a2"; }
body .si-sol{ font-size: 22px; text-align: center; width: 40px; min-width: 40px; margin-right: 5px; background: white; color: #292544; height: 40px!important; display: flex; align-items: center; justify-content: center; border-radius: 3px }
body .si-bildirim{background: #292544!important;}
body .si-bildirim.show{}
body .si-1m{border-radius: 4px!important;}

.servicesIcon i.se-trovo:after{ content: ""; background: url(../img/trovo.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.se-dlive:after{ content: ""; background: url(../img/dlive.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-kwai:after{ content: ""; background: url(../img/kwai.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-dolap:after{ content: ""; background: url(../img/dolap.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-netflix:after{ content: ""; background: url(../img/netflix.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.se-clubhouse:after{ content: ""; background: url(../img/clubhouse.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-onlyfans:after{ content: ""; background: url(../img/onlyfans.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-opensea:after{ content: ""; background: url(../img/opensea.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-pubg:after{ content: ""; background: url(../img/pubg.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-shazam:after{ content: ""; background: url(../img/shazam.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.servicesIcon i.fa-tinders:after{ content: ""; background: url(../img/tinders.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }


.iservice-item i.se-trovo:after{ content: ""; background: url(../img/trovo.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.se-dlive:after{ content: ""; background: url(../img/dlive.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-kwai:after{ content: ""; background: url(../img/kwai.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-dolap:after{ content: ""; background: url(../img/dolap.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-netflix:after{ content: ""; background: url(../img/netflix.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.se-clubhouse:after{ content: ""; background: url(../img/clubhouse.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-onlyfans:after{ content: ""; background: url(../img/onlyfans.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-opensea:after{ content: ""; background: url(../img/opensea.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-pubg:after{ content: ""; background: url(../img/pubg.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-shazam:after{ content: ""; background: url(../img/shazam.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iservice-item i.fa-tinders:after{ content: ""; background: url(../img/tinders.png); width: 40px; height: 40px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }

.socialPacketBg i.se-trovo:after{ content: ""; background: url(../img/trovo1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.se-dlive:after{ content: ""; background: url(../img/dlive1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-kwai:after{ content: ""; background: url(../img/kwai1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-dolap:after{ content: ""; background: url(../img/dolap1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-netflix:after{ content: ""; background: url(../img/netflix1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.se-clubhouse:after{ content: ""; background: url(../img/clubhouse1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-onlyfans:after{ content: ""; background: url(../img/onlyfans1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-opensea:after{ content: ""; background: url(../img/opensea1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-pubg:after{ content: ""; background: url(../img/pubg1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-shazam:after{ content: ""; background: url(../img/shazam1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-threads:after{ content: ""; background: url(../img/threads1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.socialPacketBg i.fa-tinders:after{ content: ""; background: url(../img/tinders1.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 70px; height: 70px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
.iconBox i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat;  }
.pack-icon i.se-trovo:after{ content: ""; background: url(../img/trovo.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.se-dlive:after{ content: ""; background: url(../img/dlive.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-kwai:after{ content: ""; background: url(../img/kwai.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-dolap:after{ content: ""; background: url(../img/dolap.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-netflix:after{ content: ""; background: url(../img/netflix.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.se-clubhouse:after{ content: ""; background: url(../img/clubhouse.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-onlyfans:after{ content: ""; background: url(../img/onlyfans.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-opensea:after{ content: ""; background: url(../img/opensea.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-pubg:after{ content: ""; background: url(../img/pubg.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-shazam:after{ content: ""; background: url(../img/shazam.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }
.pack-icon i.fa-tinders:after{ content: ""; background: url(../img/tinders.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; filter: invert(1); }


i.se-trovo:after{ content: ""; background: url(../img/trovo.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.se-dlive:after{ content: ""; background: url(../img/dlive.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-kwai:after{ content: ""; background: url(../img/kwai.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-dolap:after{ content: ""; background: url(../img/dolap.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-netflix:after{ content: ""; background: url(../img/netflix.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.se-clubhouse:after{ content: ""; background: url(../img/clubhouse.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-onlyfans:after{ content: ""; background: url(../img/onlyfans.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-opensea:after{ content: ""; background: url(../img/opensea.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-pubg:after{ content: ""; background: url(../img/pubg.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-shazam:after{ content: ""; background: url(../img/shazam.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-threads:after{ content: ""; background: url(../img/threads.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-tinders:after{ content: ""; background: url(../img/tinders.png); width: 30px; height: 30px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }
i.fa-sasa:after{ content: ""; background: url(../img/sasas.png); width: 45px; height: 45px; display: flex; background-size: contain; background-position: center; background-repeat: no-repeat; }


/*

.instagramPage .commentbarsection .area {
background:var(--colorInstagram)!important;
}*/
.instagramPage .commentcreate .form button:hover {
background: var(--bordercolorInstagram)!important;
}
.instagramPage .commentcreate .form button {
background: var(--bordercolorInstagram)!important;
}/*
.instagramPage .commentbarsection .bcicon {
background:var(--colorInstagram)!important;
}*/
.instagramPage .commentcreate .form h5 {
color:var(--colorInstagram)!important;
}

/*
.facebookPage .commentbarsection .area {
background:var(--colorFacebook)!important;
}*/
.facebookPage .commentcreate .form button:hover {
background: var(--colorFacebook)!important;
}
.facebookPage .commentcreate .form button {
background: var(--colorFacebook)!important;
}/*
.facebookPage .commentbarsection .bcicon {
background:var(--colorFacebook)!important;
}*/
.facebookPage .commentcreate .form h5 {
color:var(--colorFacebook)!important;
}

/*
.youtubePage .commentbarsection .area {
background:var(--colorYoutube)!important;
}*/
.youtubePage .commentcreate .form button:hover {
background: var(--colorYoutube)!important;
}
.youtubePage .commentcreate .form button {
background: var(--colorYoutube)!important;
}/*
.youtubePage .commentbarsection .bcicon {
background:var(--colorYoutube)!important;
}*/
.youtubePage .commentcreate .form h5 {
color:var(--colorYoutube)!important;
}

/*
.tiktokPage .commentbarsection .area {
background:var(--colorTiktok)!important;
}*/
.tiktokPage .commentcreate .form button:hover {
background: var(--colorTiktok)!important;
}
.tiktokPage .commentcreate .form button {
background: var(--colorTiktok)!important;
}/*
.tiktokPage .commentbarsection .bcicon {
background:var(--colorTiktok)!important;
}*/
.tiktokPage .commentcreate .form h5 {
color:var(--colorTiktok)!important;
}

/*
.twitterPage .commentbarsection .area {
background:var(--colorTwitter)!important;
}*/
.twitterPage .commentcreate .form button:hover {
background: var(--colorTwitter)!important;
}
.twitterPage .commentcreate .form button {
background: var(--colorTwitter)!important;
}/*
.twitterPage .commentbarsection .bcicon {
background:var(--colorTwitter)!important;
}*/
.twitterPage .commentcreate .form h5 {
color:var(--colorTwitter)!important;
}
.commentcreate  .btn-pack-buy {
    box-shadow: 0px 4px 20px #ffffff4d;
}


/*

.instagramPage .dflx{background: var(--colorInstagram)!important;}
.facebookPage .dflx{background: var(--colorFacebook)!important;}
.youtubePage .dflx{background: var(--colorYoutube)!important;}
.tiktokPage .dflx{background: var(--colorTiktok)!important;}
.twitterPage .dflx{background: var(--colorTwitter)!important;}*/
.fa-threads:before {
    content: ""!important;
}