::-moz-selection {
    background: #d5dff6;
}

::selection {
    background: #d5dff6;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--primarycolor);
}

a {
    color: rgb(73, 29, 119);
}

    a:hover {
        color: rgb(138, 83, 192);
        text-decoration: none;
    }

    input[type=button],
    input[type=submit],
    a.css-linkbutton {
        cursor: pointer;
        padding: 10px 15px;
        color: #fff;
        font-weight: 700;
        border: 1px solid transparent;
        outline: none;
        background-color: rgb(96, 38, 158);
        border-radius: 3px;
        display: inline-block;
    }

        input[type=button][disabled],
        input[type=submit][disabled] {
            background-color: #c2dfc2;
            border: 1px solid rgb(96, 38, 158);
            border-bottom: 2px solid rgb(96, 38, 158);
            box-shadow: inset 0 1px 0 #e3f4e3;
            text-shadow: -1px -1px 0 #c4dfc4;
            background-color: #c9e7c9;
        }

        input[type=button]:not([disabled]):hover,
        input[type=submit]:not([disabled]):hover,
        a.css-linkbutton:hover {
            background-color: #fff;
            border-color: rgb(96, 38, 158);
            color: rgb(96, 38, 158);
        }

        input[type=button]:not([disabled]):focus,
        input[type=submit]:not([disabled]):focus,
        a.css-linkbutton:focus {
            box-shadow: 0 0 0 0.2rem rgba(96, 38, 158,.25);
        }


/*--------------------------------------------------------------
# Yukarı Dönüş Butonu
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: rgb(96, 38, 158);
        color: #ffffff;
        transition: all 0.4s;
    }

    .back-to-top i:hover {
        background: rgb(138, 83, 192);
        color: #fff;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid rgb(96, 38, 158);
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    border-bottom: 1px solid #eee;
}

    #header.header-scrolled {
        border-color: #fff;
        box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    }

    #header .logo img {
        padding: 20px 0;
        box-sizing: content-box;
    }

/*--------------------------------------------------------------
# Menü
--------------------------------------------------------------*/
/* Masaüstü için */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
    }

.nav-menu a:not(.btn-buy) {
    display: block;
    position: relative;
    color: rgb(70, 70, 70);
    transition: 0.3s;
    font-size: 14px;
    padding: 10px;
}

    .nav-menu a:not(.btn-buy):hover,
    .nav-menu .active > a:not(.btn-buy),
    .nav-menu li:hover > a:not(.btn-buy) {
        color: rgb(138, 83, 192);
    }

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: -10px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
    transition: 0.2s;
    border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #aaa;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: rgb(138, 83, 192);
    }

.nav-menu .drop-down > a:after {
    content: "\e90d";
    font-family: icomoon;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\e90d";
        font-family: icomoon;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\e90d";
    }
}
/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 18px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    float: left;
}

    .mobile-nav-toggle i {
        color: rgb(96, 38, 158);
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 30px;
}

    .mobile-nav ul {
        display: grid;
        grid-gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav .drop-down li {
        margin-top: 10px;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: rgb(96, 38, 158);
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover,
        .mobile-nav .active > a,
        .mobile-nav li:hover > a {
            color: rgb(138, 83, 192);
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\e90d";
        font-family: icomoon;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\e90a";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(96, 38, 158, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.word-carousel {
    font-size: 48px;
    color: #333;
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    height: 1.2em;
    margin-bottom: -10px;
}

.word-carousel-list div {
    font-weight: 700;
    height: 45px;
    margin-bottom: 45px;
    display: block;
}

.flip2 {
    animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}

.flip3 {
    animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}

.flip4 {
    animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}

@keyframes flip2 {
    0% {
        margin-top: -180px;
    }

    5% {
        margin-top: -90px;
    }

    50% {
        margin-top: -90px;
    }

    55% {
        margin-top: 0px;
    }

    99.99% {
        margin-top: 0px;
    }

    100% {
        margin-top: -270px;
    }
}

@keyframes flip3 {
    0% {
        margin-top: -270px;
    }

    5% {
        margin-top: -180px;
    }

    33% {
        margin-top: -180px;
    }

    38% {
        margin-top: -90px;
    }

    66% {
        margin-top: -90px;
    }

    71% {
        margin-top: 0px;
    }

    99.99% {
        margin-top: 0px;
    }

    100% {
        margin-top: -270px;
    }
}

@keyframes flip4 {
    0% {
        margin-top: -360px;
    }

    5% {
        margin-top: -270px;
    }

    25% {
        margin-top: -270px;
    }

    30% {
        margin-top: -180px;
    }

    50% {
        margin-top: -180px;
    }

    55% {
        margin-top: -90px;
    }

    75% {
        margin-top: -90px;
    }

    80% {
        margin-top: 0px;
    }

    99.99% {
        margin-top: 0px;
    }

    100% {
        margin-top: -270px;
    }
}

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #efefef;
    background-size: cover;
    position: relative;
    padding-top: 0;
}

    #hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 72px;
        color: rgb(60, 25, 100);
    }

    #hero h2 {
        color: #5e5e5e;
        margin: 10px 0 0 0;
        font-size: 22px;
    }

    #hero .btn-get-started {
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0.5px;
        display: inline-block;
        padding: 14px 50px;
        border-radius: 5px;
        transition: 0.5s;
        margin-top: 30px;
        color: #fff;
        background: rgb(96, 38, 158);
    }

    #hero .icon-boxes {
        margin-top: 40px;
    }

    #hero .icon-box {
        padding: 30px 25px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0.671);
    }

        #hero .icon-box .title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 18px;
        }

            #hero .icon-box .title a {
                color: rgb(96, 38, 158);
                transition: 0.3s;
            }

        #hero .icon-box .description {
            font-size: 15px;
            line-height: 28px;
            margin-bottom: 0;
        }

        #hero .icon-box .icon {
            margin-bottom: 20px;
            padding-top: 10px;
            display: inline-block;
            transition: all 0.3s ease-in-out;
            font-size: 36px;
            line-height: 1;
            color: rgb(96, 38, 158);
        }

        #hero .icon-box:hover {
            transform: scale(1.08);
        }

            #hero .icon-box:hover .title a {
                color: rgb(96, 38, 158);
            }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px), (max-height: 500) {
    #hero {
        height: auto;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
        }
}

#herofrst {
    width: 100%;
    padding-top: 90px;
}

.header-text {
    position: relative;
    z-index: 1;
}

.img-text {
    position: absolute;
    text-align: justify;
    width: 40%;
    max-width: 456px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    color: #fff;
    top: 0;
}

#herofrst h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 700;
    color: rgb(60, 25, 100);
}

#herofrst h2 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.4em;
}

#herofrst .info {
    margin: auto;
    max-width: 420px;
    padding: 30px;
}

    #herofrst .info .hero-btns {
        margin-top: 20px;
    }

#herofrst .icon-boxes {
    margin-top: 20px;
}

#herofrst .icon-box {
    padding: 40px;
    box-shadow: 0 0 29px 0 rgba(50, 18, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

    #herofrst .icon-box .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        #herofrst .icon-box .title a {
            color: rgb(60, 25, 100);
            transition: 0.3s;
        }

    #herofrst .icon-box .description {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 0;
    }

    #herofrst .icon-box .icon {
        margin-bottom: 20px;
        display: grid;
        grid-auto-flow: column;
        grid-gap: 10px;
        justify-content: start;
        align-items: center;
        transition: all 0.3s ease-in-out;
        font-size: 32px;
        line-height: 1;
        color: rgb(60, 25, 100);
    }

#herofrst .herofrst-img {
    padding: 40px;
}

#herofrst .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#herofrst .icon-box:hover {
    transform: scale(1.08);
}

    #herofrst .icon-box:hover .title a {
        color: rgb(60, 25, 100);
    }

@media (min-width: 1024px) {
    #herofrst {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #herofrst {
        height: auto;
    }

        #herofrst .animated {
            -webkit-animation: none;
            animation: none;
        }

        #herofrst .herofrst-img {
            text-align: center;
        }
}

@media (max-width: 768px) {

    #herofrst h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .img-text {
        position: static;
        color: currentColor;
        width: 100%;
        padding: 20px 0;
    }

        .img-text h1 {
            color: rgb(60, 25, 100);
            text-align: center;
        }
}

@media (max-width: 320px) {
    #herofrst {
        padding-top: 70px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 50px 0;
}

.section-bg {
    background-color: #fff;
}

.section-title {
    text-align: center;
    padding-bottom: 24px;
    padding-top: 24px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 0;
        color: rgb(60, 25, 100);
    }

    .section-title p {
        margin-bottom: 0;
        font-size: 14px;
        color: #919191;
    }
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: rgb(96, 38, 158);
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #2487ce;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid rgb(96, 38, 158);
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
    padding-top: 30px;
}

    .clients h2 {
        margin-bottom: 50px;
    }

    .clients img {
        max-width: 80%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .clients img:hover {
            -webkit-filter: none;
            filter: none;
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 60%;
    }
}
/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
.partner {
    padding: 15px 0;
    text-align: center;
    padding-top: 30px;
}

    .partner h2 {
        margin-bottom: 50px;
    }

    .partner img {
        max-width: 70%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .partner img:hover {
            -webkit-filter: none;
            filter: none;
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .partner img {
        max-width: 60%;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 10px;
    padding: 20px 10px 20px 10px;
    transition: all ease-in-out 0.3s;
    background-color: rgba(255, 255, 255, 0.733);
    box-shadow: 0px 5px 90px 0px #ffffff;
    height: 340px;
}
#services {
    margin-top: 20px;
}
.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

        .services .icon-box .icon i {
            font-size: 36px;
            transition: 0.5s;
            position: relative;
        }

        .services .icon-box .icon svg {
            position: absolute;
            top: 0;
            left: 0;
        }

            .services .icon-box .icon svg path {
                transition: 0.5s;
                fill: #f5f5f5;
            }

    .services .icon-box h4 {
        font-weight: 600;
        margin: 10px 0 15px 0;
        font-size: 22px;
    }

        .services .icon-box h4 a {
            color: #124265;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 35px 0 #6a00ff8d;
    }
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    display: grid;
    grid-gap: 16px;
    align-content: space-between;
    padding: 48px 64px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(133, 133, 133, 0.212);
    height: 100%;
}

    .pricing .box > div {
        display: grid;
        justify-items: center;
    }

.price-logo {
    text-align: center;
    margin-bottom: 24px;
}

.pricing .box h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing .box h4 {
    font-size: 42px;
    color: rgb(96, 38, 158);
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing h2 {
    color: rgb(96, 38, 158);
    margin-top: 36px;
    margin-bottom: 36px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    line-height: 20px;
    font-size: 14px;
}

    .pricing .box ul li {
        padding-bottom: 16px;
    }

    .pricing .box ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.btn-buy {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 4px;
    color: rgb(96, 38, 158);
    border: 2px solid rgb(96, 38, 158);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

    .btn-buy.btn-mini {
        padding: 8px 12px;
    }

    .btn-buy:hover {
        background: rgb(96, 38, 158);
        color: #fff;
    }
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
    overflow-x: hidden;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        border-radius: 4px;
        position: relative;
    }

.anchor-span {
    display: block;
    margin-top: -160px;
    padding-top: 160px;
    visibility: hidden;
    position: absolute;
}

.faq .faq-list > ul > li > a {
    display: grid;
    grid-template-columns: 24px 1fr 16px;
    grid-gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    outline: none;
}

.faq .faq-list .icon-question-circle-o {
    font-size: 24px;
    color: #321b52;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-chevron-down {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

    .faq .faq-list a.collapsed:hover {
        color: rgb(96, 38, 158);
    }

    .faq .faq-list a.collapsed .icon-chevron-down {
        display: block;
    }

    .faq .faq-list a.collapsed .icon-chevron-up {
        display: none;
    }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    min-height: calc(100vh - 196px);
}

    .contact .info {
        width: 100%;
        background: #fff;
    }

        .contact .info i {
            font-size: 20px;
            color: rgb(96, 38, 158);
            float: left;
            width: 44px;
            height: 44px;
            background: #fefefe;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }

        .contact .info h4 {
            padding: 0 0 0 60px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
            color: rgb(60, 25, 100);
        }

        .contact .info address,
        .contact .info p {
            padding: 0 0 0 60px;
            margin-bottom: 0;
            font-size: 14px;
        }

        .contact .info .email,
        .contact .info .phone {
            margin-top: 40px;
        }

            .contact .info .email:hover i,
            .contact .info .address:hover i,
            .contact .info .phone:hover i {
                background: rgb(96, 38, 158);
                color: #fff;
            }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: #333;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

    #footer a {
        color: #fff;
    }

    #footer .footer-top {
        padding: 30px 0 30px 0;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 22px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 300;
            }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: #ffffff;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: rgb(60, 25, 100);
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            position: relative;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul li i {
                    padding-right: 4px;
                    font-size: 10px;
                }

                #footer .footer-top .footer-links ul li {
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #ffffff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 24px;
                    padding: 7px 0;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        opacity: .7;
                    }

    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
        color: #444444;
    }

    #footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgb(96, 38, 158);
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 5px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        bottom: 20px;
    }

        #footer .social-links a:hover {
            background: rgb(138, 83, 192);
            color: #fff;
            text-decoration: none;
        }

.margin-service {
    margin-bottom: 20px;
}

.price {
    height: 550px;
}

    .price.bordered {
        border: 2px solid #60269e;
        box-shadow: 0px 5px 90px 0px rgb(96 38 158 / 21%);
    }

.pos-detail {
    margin-top: 30px;
}

.resimKapsayici {
    position: relative;
}

.linespace {
    margin-top: 22px;
}

.linesize {
    line-height: 1;
}

.whitebg {
    padding: 10px !important;
    margin-bottom: 1px !important;
}

.footerdesign {
    margin-top: 40px;
    margin-left: 30px;
}

.package {
    color: #2487ce;
    margin-bottom: 30px;
}

.radio {
    margin: 5px;
    padding: 10px;
}

.inline-radio input[type="radio"] {
    height: auto;
}

.inline-radio > div {
    display: inline;
    margin: 0px 50px;
}

.icon h4 {
    margin-top: 15px;
    font-size: 22px;
}

.item {
    margin: 0px 0px;
}

    .item > .icon-box {
        margin-bottom: 10px;
        background-color: #fafafa;
        border: 2px solid #efefef;
        border-radius: 8px;
        padding: 30px;
        height: 325px;
    }

.icon-box > h4 {
    color: rgb(60, 25, 100);
}

    .icon-box > h4 > a:hover {
        color: rgb(138, 83, 192);
    }

#carousel-logos::after {
    content: " ";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to right, #fff, #ffffff00 20% 80%, #fff);
    pointer-events: none;
}

#carousel-logos img {
    height: 40px;
    filter: grayscale(1);
    transition: all 0.2s;
}

    #carousel-logos img:hover {
        filter: none;
    }

.owl-carousel h4 {
    font-size: 20px;
}

.owl-carousel p {
    font-size: 15px;
}

@media (max-width: 375px) {
    .owl-carousel h4 {
        font-size: 17px;
    }

    .owl-carousel p {
        font-size: 13px;
    }
}

.owl-nav {
    font-size: 200px;
    align-items: center;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: -1em;
}

@media (max-width: 1000px) {
    .owl-nav {
        font-size: 100px;
    }
}

.owl-nav > button:hover {
    opacity: 1;
}

.owl-nav > button:focus {
    outline: none;
}

.owl-dots {
    align-items: center;
}

.owl-carousel .owl-item img {
    width: auto;
    margin: auto;
    margin-bottom: 10px;
}

.owl-theme {
    width: 70%;
    right: 15%;
    left: 15%;
}

.owl-nav .owl-next span {
    color: #00000026;
}

    .owl-nav .owl-next span:hover {
        color: #0000008a;
    }

.owl-nav .owl-prev span {
    color: #00000026;
}

    .owl-nav .owl-prev span:hover {
        color: #0000008a;
    }

.margin-top {
    margin-top: 40px !important;
}

.margin-bottom {
    margin-bottom: 50px;
}

#pos {
    width: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 6px 6px 12px;
    border-collapse: collapse;
}

    #pos th {
        color: rgb(47, 15, 83);
        padding: 6px 6px 6px 12px;
        background-color: #c1dad7;
    }

    #pos td {
        padding: 6px 6px 6px 12px;
        color: rgb(48, 21, 79);
        width: 50px;
    }

    #pos tbody tr td:first-child {
        text-align: left;
    }

    #pos tbody tr {
        color: rgb(60, 25, 100);
        background-color: #fff;
        border-bottom: 1px solid #505050;
    }

        #pos tbody tr:hover {
            background-color: rgb(255,247,234);
        }

.video-panel {
    height: 40%;
    width: 40%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 0px;
    border: 1px solid #888;
    width: 33%;
}

    .modal-content p {
        text-align: center;
        margin-top: 30px;
    }

.modal-close {
    color: #aaa;
    position: absolute;
    top: 0px;
    left: 10px;
    font-size: 28px;
    font-weight: bold;
}

    .modal-close:hover,
    .modal-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

@media screen and (max-width: 900px) {
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.4);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 25% auto;
        padding: 0px;
        border: 1px solid #888;
        width: 100%;
    }
}

.sidenav a {
    z-index: 10;
    position: fixed;
    left: -118px;
    transition: 0.3s;
    padding: 15px;
    text-decoration: none;
    font-size: 30px;
    vertical-align: middle;
    color: white;
    border-radius: 0 5px 5px 0;
    top: 250px;
    background-color: rgb(96, 38, 158);
    transition: all 0.4s;
    opacity: 0.6;
}

.sidenav svg {
    width: 43px;
    margin-left: 6px;
    display: inline-block;
}

.sidenav a:hover {
    left: 0;
    opacity: 1;
}

@media screen and (max-width: 900px) {
    .sidenav a {
        z-index: 10;
        position: fixed;
        left: -80px;
        transition: 0.3s;
        padding: 5px;
        text-decoration: none;
        font-size: 20px;
        vertical-align: middle;
        color: white;
        border-radius: 0 5px 5px 0;
        top: 250px;
        background-color: rgb(96, 38, 158);
    }

    .sidenav i {
        float: right;
        font-size: 30px;
    }
}

.mobile {
    width: 40%;
    display: none;
}

.pc {
    display: inline;
}

@media screen and (max-width: 850px) {
    .mobile {
        display: inline;
    }

    .pc {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .mobile {
        width: 100%;
    }
}

.video-size {
    max-width: 1000px;
    padding: 30px;
    margin: auto;
}

video {
    max-width: 100%;
    height: auto;
    border: 2px solid #60269e;
    border-radius: 8px;
    box-shadow: 0px 5px 90px 0px rgb(96 38 158 / 20%);
}

.css-jetform .box-container {
    padding: 20px;
}

    .css-jetform .box-container .box > h4 {
        color: rgb(60, 25, 100);
        margin: 10px 0px 20px 0px;
    }

.css-jetform .box {
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(133, 133, 133, 0.2);
    height: 100%;
    width: 240px;
    margin: auto !important;
    display: block !important;
}

.css-jetform .list {
    margin-bottom: 10px;
    list-style: none;
    padding: 0;
}

    .css-jetform .list > li {
        margin-top: 5px !important;
        padding: 0px;
        font-size: 12px;
    }

.css-jetform .btn-wrap {
    padding: 15px 15px 1px 15px;
    text-align: center;
}

    .css-jetform .btn-wrap :hover {
        background-color: #60269e !important;
        color: white !important;
    }

.table-desc {
    font-size: 12px;
}

    .table-desc b {
        color: #3c1964;
    }

.discount {
    display: inline-block;
    margin-left: -45px;
    margin-bottom: -10px;
}

    .discount > span {
        font-size: 25px;
        text-decoration: line-through;
        color: rgb(60, 25, 100)
    }
