@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
    background-color: #fff;
    font-family: "Lato", sans-serif;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
}

:root {
    --bg-color: #4a3d5a;
    --buton-linear: linear-gradient(to bottom, #8c40ff 0%, #c39efb 100%);
    --text-color: #251638;
    --buton-color: #8c40ff;
}

.navmenu {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999999;
}

.navmenu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.navmenu .logo {
    width: auto;
    height: 32px;
}

.navmenu .logo img {
    width: auto;
    height: 250%;
    object-fit: contain;
}

.navmenu ul {
    display: flex;
    align-items: center;
}

.navmenu ul li {
    margin-right: 30px;
    padding: 5px 0;
}

.navmenu ul li:last-child {
    margin-right: 0;
}

.navmenu ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s linear;
}

.navmenu ul li a:hover,
.navmenu ul li a:active,
.navmenu ul li a:focus {
    color: #8c40ff;
}

.navmenu .buton a {
    padding: 15px 25px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--buton-color);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.9s ease;
    font-family: "Paytone One", sans-serif;
}

.navmenu .buton a:hover {
    background: #5c05df;
}

.offcanvas,
.navcanmenu {
    display: none;
}

.sectionbanner {
    background-image: url(../img/genel/banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 50px 0;
    position: relative;
}

.sectionbanner::after {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(37, 22, 56, 0.84) 0%,
        rgba(30, 19, 43, 0.84) 100%
    );
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
}

.sectionbanner .container {
    position: relative;
    z-index: 1;
}

.sectionbanner .text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    width: 85%;
}

.sectionbanner .text h1 {
    font-size: 32px;
    font-weight: 900;
    background: var(--buton-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sectionbanner .text p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 35px;
}

.sectionbanner .text a button {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: all 0.9s ease;
    border: none;
    font-family: "Paytone One", sans-serif;
}

.sectionbanner .text a button:hover {
    background-color: var(--buton-color);
}

.sectionbanner .bilgiform {
    width: 75%;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(
        to bottom,
        rgba(70, 58, 84, 0.6) 0%,
        rgba(70, 58, 84, 0.6) 30%
    );
    margin-left: auto;
}

.sectionbanner .bilgiform h2 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    width: 60%;
    margin-bottom: 15px;
}

.sectionbanner .bilgiform h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    font-family: "Paytone One", sans-serif;
}

.sectionbanner .bilgiform form .form-group label {
    position: relative;
    width: 100%;
}

.sectionbanner .bilgiform form .form-group label i {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 18px;
    color: #877491;
    margin-bottom: 0;
    line-height: 16px;
    z-index: 1;
}

.sectionbanner .bilgiform form .form-group input {
    padding: 15px 15px 15px 45px;
    font-size: 16px;
    border-radius: 18px;
    border: none;
    background-color: rgba(37, 22, 56, 0.6);
    color: #fff;
    width: 100%;
}

.sectionbanner .bilgiform form .form-group button {
    background: var(--buton-linear);
    border-radius: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
    padding: 15px;
    font-family: "Paytone One", sans-serif;
    width: 100%;
    transition: all 0.7s;
}

.sectionbanner .bilgiform form .form-group button:hover {
    opacity: 0.7;
}

.sectionbanner .bilgiform span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #8dccd4;
    padding: 5px 0;
}

.bilgiform .form-group label textarea {
    width: 100%;
    height: auto;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.bilgiform .form-group label textarea:focus {
    border-color: #fff;
}

.bilgiform .form-group label textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sayacitem {
    width: 100%;
    height: 100%;
    background-color: rgba(70, 58, 84, 90%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    transform: translateY(0);
    transition: all 0.4s linear;
    cursor: pointer;
}

.sayacitem:hover {
    transform: translateY(-15px);
}

.sayacitem .icon {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
}

.sayacitem .icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.sayacitem h1 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    font-family: "Paytone One", sans-serif;
}

.sayacitem span {
    font-size: 16px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 18px;
    margin-top: 16px;
}

.sectionone {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.sectionone .row {
    display: flex;
    align-items: center;
}

.sectionone .image {
    width: 100%;
    min-height: 530px;
    position: relative;
}

.sectionone .image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.sectionone .image .resimone {
    height: 380px;
    width: auto;
    max-width: 380px;
    position: absolute;
    right: 0;
    top: 12%;
}

.sectionone .image .resimtwo {
    height: 300px;
    width: auto;
    max-width: 300px;
    position: absolute;
    left: 0;
    top: 0;
}

.sectionone .image .resimthree {
    height: 300px;
    width: auto;
    max-width: 300px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.sectionone .text {
    padding-left: 30px;
}

.sectionone .text h1 {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Paytone One", sans-serif;
}

.sectionone .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 26px;
}

.sectionone .text .buton-grup {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.sectionone .text .buton-grup button {
    background: var(--buton-color);
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Paytone One", sans-serif;

    color: #fff;
    border: none;
    transition: all 0.9s linear;
}

.sectionone .text .buton-grup button:hover {
    background: rgb(92, 5, 223);
}

.sectionone .text .varliklar {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.sectionone .text .varliklar span {
    height: 54px;
    width: 54px;
    border-radius: 100%;
    margin-left: -2%;
}

.sectionone .text .varliklar span img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.sectionone .text .varliklar span:first-child {
    margin-left: 0;
}

.sectionone .text .varliklar span.varlik {
    background-color: #fff;
    width: auto;
    display: inline-flex;
    align-items: center;
    padding: 20px;
    border-radius: 27px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.sectionone .text .varliklar span.varlik b {
    font-size: 16px;
    font-weight: 900;
    color: var(--buton-color);
    margin-bottom: 0;
    margin-right: 3px;
}

.sectiontwo {
    margin-top: 70px;
}

.sectiontwo .item {
    width: 100%;
    height: 100%;
    max-height: 385px;
    position: relative;
    border-radius: 20px;
    z-index: 0;
}

.sectiontwo .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sectiontwo .item .maske {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(37, 22, 56, 0.51);
}

.sectiontwo .item .text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 20px;
}

.sectiontwo .item .text h1 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    font-family: "Paytone One", sans-serif;
}

.sectiontwo .item .text p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.sectionthree {
    margin-top: 70px;
}

.sectionthree .row {
    display: flex;
    align-items: center;
}

.sectionthree .image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.sectionthree .image img {
    width: 95%;
    height: auto;
    object-fit: contain;
}

.sectionthree h5 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Paytone One", sans-serif;
}

.sectionthree p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
}

.sectionfour {
    padding: 50px 0;
    margin-top: 50px;
    background-color: #f9f9f9;
}

.sectionfour .baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.sectionfour .baslik h1 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Paytone One", sans-serif;
}

.sectionfour .itemfour {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px 20px;
    transform: translateY(0);
    transition: all 0.4s linear;
    cursor: pointer;
}

.sectionfour .itemfour:hover {
    transform: translateY(-15px);
}

.sectionfour .itemfour .title {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
}

.sectionfour .itemfour .title .icon {
    height: 70px;
    width: 70px;
    border-radius: 20px;
    background: #faf6ff;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sectionfour .itemfour .title .icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.sectionfour .itemfour .title h6 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
    font-family: "Paytone One", sans-serif;

    margin-top: 15px;
}

.sectionfour .itemfour p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
    margin-top: 10px;
    line-height: 18px;
    text-align: center;
}

.sectionfive {
    margin-top: 170px;
}

.sectionfive > .container > .area > .row {
    display: flex;
    align-items: center;
}

.sectionfive > .container > .area {
    background-color: #f5f5f5;
    padding: 0 0 0 30px;
    border-radius: 20px;
}

.sectionfive .text h1 {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Paytone One", sans-serif;

    margin-bottom: 25px;
}

.sectionfive .text ul li {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: flex;
}

.sectionfive .text ul li::before {
    content: "";
    background: url(../img/sistem/verify.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 25px;
    width: 25px;
    display: block;
    margin-right: 7px;
}

.sectionfive .image {
    width: 100%;
    height: 430px;
    display: flex;
    justify-content: end;
}

.sectionfive .image img {
    height: 190%;
    width: auto;
    object-fit: contain;
    margin-top: -42%;
    margin-right: -10%;
}

.sectionsix {
    margin-top: 100px;
    background: url(../img/genel/bgsixbolum.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    margin-bottom: 80px;
}

.sectionsix .row {
    display: flex;
    align-items: center;
}

.sectionsix .image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.sectionsix .image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    margin-right: 0;
    margin-left: -70%;
}

.sectionsix .text {
    padding-left: 30px;
    width: 95%;
}

.sectionsix .text h1 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    font-family: "Paytone One", sans-serif;
}

.sectionsix .text p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.sectionsix .text .linkler {
    display: flex;
    align-items: center;
    margin-bottom: -140px;
    margin-top: 40px;
}

.sectionsix .text .linkler a {
    height: 100%;
    width: 100%;
    display: flex;
    transform: translateY(0);
    transition: all 0.4s linear;
}

.sectionsix .text .linkler a:hover {
    transform: translateY(-15px);
}

.sectionsix .text .linkler .item {
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.sectionsix .text .linkler .item h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--buton-color);
    font-family: "Paytone One", sans-serif;
}

.sectionsix .text .linkler .item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.sectionsix .text .linkler .item img {
    height: auto;
    width: 100%;
    object-fit: contain;
    margin-top: 15px;
}

.sectionseven {
    margin-top: 100px;
}

.YorumSwiperOne {
    margin-bottom: 10px;
}

.YorumSwiperOne .swiper-wrapper {
    width: 110%;
    left: -1%;
}

.sectionseven .baslik {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 30px;
}

.sectionseven .baslik h1 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
    font-family: "Paytone One", sans-serif;
}

.sectionseven .yorumitem {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.sectionseven .yorumitem h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Paytone One", sans-serif;
}

.sectionseven .yorumitem p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
}

.sectionseven .yorumitem .userbilgi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.sectionseven .yorumitem .userbilgi .user {
    display: inline-flex;
    flex-flow: column;
}

.sectionseven .yorumitem .userbilgi .user b {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

.sectionseven .yorumitem .userbilgi .user span {
    font-size: 14px;
    font-weight: 400;
    color: #b9b5be;
}

.sectionseven .yorumitem .userbilgi .raiting {
    display: flex;
    align-items: center;
    letter-spacing: 5px;
}

.sectionseven .yorumitem .userbilgi .raiting i.active {
    color: var(--buton-color);
}

.sectionseven .yorumitem .userbilgi .raiting i {
    color: #d6d6d6;
    font-size: 24px;
}

footer {
    margin-top: 200px;
    background-color: #251638;
}

footer .container {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-bottom: 30px;
}

.titlebox {
    padding: 30px;
    border-radius: 20px;
    background: url(../img/genel/money.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.titlebox .maske {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    background-color: rgba(128, 82, 197, 0.74);
    z-index: 1;
}

footer .titlebox {
    margin-top: -5%;
    width: 100%;
}

.titlebox .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.titlebox .row .col-md-3 {
    display: flex;
    flex-flow: column;
    align-items: end;
}

.titlebox h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.titlebox span {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.titlebox a {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 45px;
    font-size: 16px;
    font-weight: 900;
    color: #8c40ff;
    transition: all 0.9s ease;
}

.titlebox a:hover {
    background: #8c40ff;
    color: #fff;
}

footer > .container > .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer > .container > .row > div:first-child {
    display: flex;
    align-items: center;
}

footer .logo {
    height: 32px;
    width: auto;
}

footer h2 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: "Paytone One", sans-serif;
}

footer .logo img {
    height: 200%;
    width: auto;
    object-fit: contain;
}

footer .smedia {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .smedia a {
    height: 52px;
    width: 52px;
    margin-right: 10px;
    background-color: #473a56;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.4s linear;
}

footer .smedia a:last-child {
    margin-right: 0;
}

footer .smedia a:hover {
    background: #8c40ff;
}

footer ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.4s linear;
}

footer ul li a:hover {
    color: #8c40ff;
}

.copyright {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    padding: 7px;
    text-align: center;
    background-color: #2e1e3e;
}

@media (max-width: 850px) {
    body {
        padding-right: 0 !important;
    }

    .sectionone .text {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navcanmenu {
        background-color: var(--bg-color);
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }

    .navcanmenu .logo {
        display: flex;
        height: auto;
        max-width: 90%;
        justify-content: center;
    }

    .navcanmenu .logo img {
        height: 22px;
        width: 100%;
        object-fit: cover;
    }

    .offcanvas-header .logo {
        display: block;
        height: 109px;
        width: auto;
        padding: 30px;
    }

    .offcanvas.show {
        background-color: var(--bg-color);
        display: block;
    }

    .offcanvas-header .logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .offcanvas .canvasmenu ul {
        margin-top: 50px;
    }

    .offcanvas .canvasmenu ul li {
        margin-bottom: 15px;
        margin-left: 40px;
        display: flow-root;
    }

    .offcanvas .canvasmenu ul li a {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
    }

    .modal-backdrop.show {
        width: 0;
    }

    .offcanvas .canvasmenu .buton {
        background: var(--buton-linear);
        padding: 5px 12px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        border-radius: 10px;
        border-color: transparent;
        margin-left: 40px;
        display: inline-flex;
    }

    .offcanvas-start {
        width: 300px !important;
    }

    .navbar-toggler-icon {
        height: 50px;
        width: auto;
        border: none;
        background-color: transparent;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler-icon span {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: space-around;
    }

    .navbar-toggler-icon span hr {
        width: 30px;
        color: #fff;
        height: 3px;
        padding: 0 !important;
        margin: 3px 0 !important;
        opacity: 1;
        border-radius: 2px;
    }

    .offcanvas-header .btn-close {
        filter: brightness(1) invert(1);
    }

    .navmenu {
        display: none;
    }

    .sectionbanner {
        padding: 20px;
    }

    .sectionbanner .text {
        width: 100%;
    }

    .sectionbanner .bilgiform {
        width: 100%;
    }

    .sectionbanner .text h1 {
        font-size: 24px;
    }

    .sectionbanner .bilgiform h3 {
        font-size: 16px;
    }

    .sectionbanner .bilgiform h2 {
        font-size: 16px;
        width: 100%;
        margin-bottom: 20px;
    }

    .sectionbanner .text a button {
        font-size: 16px;
    }

    .sectionbanner .bilgiform form .form-group button {
        font-size: 16px;
    }

    .sayacitem h1 {
        font-size: 24px;
    }

    .sectionone .image .resimone {
        height: 250px;
        top: 16%;
    }

    .sectionone .image .resimtwo {
        height: 210px;
    }

    .sectionone .image .resimthree {
        height: 210px;
    }

    .sectionone .image {
        min-height: 400px;
    }

    .sectionone {
        padding: 30px 0;
    }

    .sectionone .text h1 {
        font-size: 24px;
    }

    .sectionone .text p {
        font-size: 16px;
    }

    .sectionone .text .varliklar span {
        height: 40px;
        width: 40px;
    }

    .sectionone .text .buton-grup button {
        font-size: 16px;
    }

    .sectiontwo .item .text h1 {
        font-size: 24px;
    }

    .sectiontwo .item .text p {
        font-size: 16px;
        line-height: 20px;
    }

    .sectiontwo .item {
        min-height: 385px;
    }

    .titlebox .row {
        flex-flow: column;
        align-items: center;
        text-align: center;
    }

    .titlebox .row .col-md-3 {
        align-items: center;
        margin-top: 15px;
    }

    .titlebox h1 {
        font-size: 24px;
    }

    .sectionthree h5 {
        font-size: 20px;
    }

    .sectionthree p {
        font-size: 16px;
    }

    .sectionfour .baslik h1 {
        font-size: 20px;
    }

    .sectionfive {
        margin-top: 30px;
    }

    .sectionfive .text h1 {
        font-size: 24px;
        margin-top: 15px;
    }

    .sectionfive .text ul li {
        font-size: 16px;
    }

    .sectionfive .image img {
        height: 100%;
        margin-top: 15px;
        margin-right: 0;
    }

    .sectionfive .image {
        height: 270px;
    }

    .sectionfive > .container > .area {
        padding: 15px;
    }

    .sectionsix .image img {
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    .sectionsix .image {
        height: 250px;
    }

    .sectionsix {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .sectionsix .text h1 {
        font-size: 24px;
    }

    .sectionsix .text p {
        font-size: 16px;
    }

    .sectionsix .text {
        padding-left: 0;
        width: 100%;
    }

    .sectionsix .text .linkler .item h2 {
        font-size: 24px;
    }

    .sectionsix .text .linkler .item span {
        font-size: 12px;
    }

    .sectionsix .text .linkler .item img {
        width: 80%;
    }

    .sectionsix .text .linkler {
        margin-bottom: 0;
    }

    .sectionseven .baslik h1 {
        font-size: 20px;
    }

    .sectionseven {
        margin-top: 30px;
    }

    .sectionseven .yorumitem h6 {
        font-size: 14px;
    }

    footer {
        margin-top: 50px;
    }

    footer > .container > .row > div:first-child {
        justify-content: center;
        margin-bottom: 20px;
    }

    footer > .container > .row > div:last-child {
        justify-content: center;
        margin-top: 20px;
        text-align: center;
    }

    footer .smedia {
        justify-content: center;
    }

    footer .smedia a {
        height: 40px;
        width: 40px;
    }

    .copyright {
        font-size: 12px;
    }

    .YorumSwiperOne .swiper-wrapper {
        width: 100%;
        left: 0;
    }

    .YorumSwiperOne {
        padding: 0 15px !important;
    }

    .sectionbanner,
    .sectionone,
    .sectiontwo,
    .sectionfour,
    .sectionsix,
    .sectionseven {
        overflow: hidden;
    }
}

/* Telefon input için özel stil */
.bilgiform .form-group label .iti {
    width: 100%;
}

.bilgiform .form-group label .iti__flag-container {
    z-index: 2;
}

.bilgiform .form-group label .iti--allow-dropdown input {
    padding-left: 85px !important;
    padding-right: 15px;
    background-color: rgba(37, 22, 56, 0.6);
    border: none;
    border-radius: 18px;
    color: #fff;
    font-size: 16px;
}

/* Telefon iconunu sağa taşıyoruz */
.bilgiform .form-group label .iti + .fa-phone {
    left: auto;
    right: 15px;
}
