body {
    background-color: var(--bodyBg);
    background-repeat: no-repeat;
}

@media screen and (max-width:992px) {
    body:before {
        top: 59px !important;
    }
}

/* Scrollbar stili */
::-webkit-scrollbar {
    width: 8px;
    height: 3px;
}

/* Scrollbar thumb (kaydırma tuşesi) stili */
::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 8px;
}

content {
    display: block;
}

* {
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;

    text-indent: 0;
    margin-bottom: 0;
}

.center-w {
    display: table;
    margin: auto;
}

.center-h {
    display: flex;
    align-items: center;
}

.center-content {
    width: 100%;
}

section {
    overflow-x: clip;
    max-width: 100vw;
}


.owl-carousel .owl-next,
.owl-carousel .owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryColor) !important;
    color: white !important;
    border-radius: 100% !important;
    font-size: 20px !important;
    line-height: 20px !important;
    opacity: .5;
    transition: .3s;
}

.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
    opacity: 1;
}

.owl-carousel .owl-prev {
    left: -7%;
}

.owl-carousel .owl-next {
    right: -7%;
}


/* Form */
.inputBox,
.labelBox {
    position: relative;
    margin-bottom: 25px;
}

.inputBox label {
    position: absolute;
    width: initial;
    height: 100%;
    display: flex;
    align-items: center;
    text-indent: 26px;
    transition: .3s;
    transform: translateY(0);
}

.inputBox.textarea label {
    position: absolute;
    width: initial;
    height: 25%;
    display: flex;
    align-items: center;
    text-indent: 26px;
    transition: .3s;
    transform: translateY(0);
    background-color: whitesmoke;
}

.inputBox:hover label,
.inputBox:focus label {
    transform: translateY(-14px);
    font-size: 12px;
}

.inputBox.textarea:hover label,
.inputBox.textarea:focus label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.focusOn label,
.inputBox.full label {
    transform: translateY(-14px);
    font-size: 12px;
    opacity: .5;
}

.inputBox.textarea.focusOn label,
.inputBox.full .textarea label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.selectBox label {
    width: initial;
}

.inputBox.selectBox:hover label,
.inputBox.full.selectBox label {
    height: 20px;
    transform: translateY(9px);
}

.inputBox input,
.inputBox textarea,
.inputBox select {
    border-radius: 10px;
    border: none;
    line-height: 20px;
    padding: 0px 25px;
    outline: none !important;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
    height: 60px;
    padding-top: 10px;
    background-color: whitesmoke;
    width: 100%;
}

.inputBox select {
    padding-top: 0px;
    appearance: none;
    /* Varsayılan ok işaretini kaldır */
    background-image: url('../img/down.svg');
    /* Kendi ok simgenizi ekleyin */
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    /* Ok simgesini sağdan içeri doğru itmek için */
}

.inputBox textarea {
    height: 224px;
    padding-top: 35px;
    padding-left: 28px;
    /*padding-left: 50px;*/
}

.inputBox.focusOn input,
.inputBox.focusOn textarea,
.inputBox.focusOn select {
    box-shadow: 0px 0px 0px 1px var(--primaryColor) !important;
}

.inputBox.full input,
.inputBox.full textarea,
.inputBox.full select {
    box-shadow: 0px 0px 0px 1px var(--success) !important;
}

.inputBox input:-webkit-autofill {
    background-color: #e8f0fe !important;
    /* Arka plan rengi */
    background: #e8f0fe !important;
    /* Arka plan rengi */
    color: #000;
    /* Metin rengi */
    border: 1px solid #198754;
    /* Kenarlık rengi */
    transition: background-color 0.5s ease-in-out;
    /* Geçiş efekti */
}

.inputBox input:-webkit-autofill:focus {
    background-color: #cce4ff;
    /* Odaklandığında arka plan rengi */
    color: #333;
    /* Odaklandığında metin rengi */
}

.inputBox .currency {
    position: absolute;
    font-weight: 800;
    font-size: 13px;
    right: 20px;
    top: 20px;
    z-index: 2;
    color: var(--textColor) !important;
    opacity: .8;
}

.inputBox.price input {
    font-weight: 700 !important;
}

label.customCheck {
    border: dashed 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 15px;
    display: flex;
    justify-content: flex-start;
    color: var(--textColor);
    cursor: pointer;
    transition: .3s;
    background-color: whitesmoke;
}

label.customCheck:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.fakeCheck {
    margin-right: 10px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    position: relative;
    aspect-ratio: 1/1;
}

label:has(input:checked)>.fakeCheck {
    border-color: var(--success) !important;
}

label:has(input:checked) {
    border: 1px solid var(--success) !important;
    font-weight: 500;
    color: var(--success) !important;
    background-color: #61b11124;
}

label:has(input:checked)>.fakeCheck:before {
    font-family: 'default';
    content: "\e917";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--success);
}

/* Form End */

/* Head */
.head {
    position: relative;
}

.head i {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    display: block;
    color: var(--primaryColor);
}

.head span {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--textColor);
    margin-top: 10px;
    font-size: 16px;
}

.head h2 {
    color: black;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.head {}

/* Head End */



/* ===== Form ===== */
.button {
    border-radius: var(--radius);
    padding: 0px 35px;
    line-height: 40px;
    font-weight: 400;
    width: initial;
    text-align: center;
    transition: .3s;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
}

.button.fill {
    background-color: var(--primaryColor);
    color: white;
    border: solid 1px transparent;
}

.button.fill:hover {
    background-color: var(--secondaryColor) !important;
    color: white;
    border-color: var(--secondaryColor) !important;
}

.button.outline {
    border: solid 1px var(--primaryColor);
    color: var(--textColor);
    background-color: transparent;
}

.button.outline:hover {
    border-color: transparent !important;
    color: white !important;
    background-color: var(--primaryColor);
}

.button.addButton {
    display: flex;
    align-items: center;
    width: min-content;
    gap: 7px;
}

.button.addButton i {
    line-height: 0;
    font-size: 14px;
    font-weight: 600;
}


.head {
    text-align: center;
    margin-bottom: 50px;
}

.head h2.title {
    color: #F0F0F0;
    font-weight: 700;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border: solid 8px #5C6C7E80;
    border-radius: var(--radius);
    padding: 0px 18%;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 0px;
}

/* ===== Form End ===== */

.col-sm-visible {
    display: none;
}

@media screen and (max-width:992px) {

    .col-sm-visible {
        display: block;
    }

    .col-sm-hidden {
        display: none !important;
    }
}

/* Footer */
footer {
    padding-top: 45px;
    background-color: white;
}

footer .top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer .top .box {
    background-color: #FBFBFB;
    padding: 35px;
    border-radius: 100px;
}

footer .top .box ul {
    display: flex;
    gap: 10px;
}

footer .top .box ul li:first-child {
    font-weight: 700;
    font-size: 16px;
    color: black;
    margin-right: 25px;
    display: flex;
    align-items: center;
}

footer .top .box ul li a i {
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: var(--primaryColor);
    color: whitesmoke;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    padding: 10px;
}

footer .top .box .title {
    font-weight: 700;
    font-size: 16px;
    color: black;
    display: flex;
    align-items: center;
}

footer .top .inputBox {
    position: relative;
}

footer .top .inputBox input {
    border-radius: var(--radius);
    background-color: var(--secondaryColor);
    border: none;
    padding: 0px 25px;
    padding-right: 65px;
    line-height: 50px;
    color: White;
    width: 100%;
    min-width: 350px;
}

footer .top .inputBox input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, .8);
}

footer .top .inputBox input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox button {
    position: absolute;
    right: 8px;
    top: 7px;
    border-radius: var(--radius);
    background-color: white;
    border: none;
    padding: 7px 25px;
    color: var(--secondaryColor);
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

footer .top .inputBox button:hover {
    background-color: var(--primaryColor);
    color: White;
}

footer .bottom {
    padding-top: 45px;
}

footer .bottom ul li.listHead {
    font-weight: 700;
    font-size: 16px;
    color: black;
    margin-bottom: 7px;
    display: block;
}

footer .bottom ul li a {
    color: var(--primaryColor);
    line-height: 36px;
}

footer .bottom ul li.nested {
    margin-top: 20px;
    font-size: 15px;
}

footer .bottom ul li.nested a {
    color: var(--textColor);
    font-weight: 500;
}

footer .bottom ul>li.nested>ul>li:last-child {
    display: flex;
    margin-top: 10px;
}

footer .bottom ul li.nested ul>li i {
    margin-right: 10px;
}

footer .banks {
    width: 100%;
}

footer .banks .container {
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer .banks span {
    margin-right: 20px;
    font-weight: 600;
}

footer .pageEnd {
    text-align: center;
    padding: 15px 0px;
    color: var(--textColor);
    font-size: 13px
}

@media screen and (max-width:992px) {
    footer .top {
        padding-bottom: 15px;
    }

    footer .top .box {
        text-align: center;
        width: 100%;
        border-radius: 0px;
        padding: 15px;
    }

    footer .top .box .title {
        text-align: center;
        justify-content: center;
    }

    footer .top .inputBox {
        margin-top: 5px;
    }

    footer .top .inputBox input {
        min-width: 100%;
    }

    footer .top ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    footer .top ul li:first-child {
        min-width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    footer .bottom {
        padding-top: 35px;
        zoom: 90%;
    }

    footer .bottom ul {
        margin-bottom: 25px;
    }

    footer .bottom ul .nested {
        display: none;
    }

    footer .mobileAdres {
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    footer .mobileAdres>li:last-child {
        margin-top: 25px;
    }
}

/* Footer End */
/* Header */
header {
    position: sticky;
    z-index: 50;
    top: 0;
    width: 100%;
    background-color: #e9edef;
    transition: .5s;
    top: 0;
}

header.sticky {
    top: -50px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #e9edef9c;
    ;
}

header .logo {
    height: 150px;
    display: block;
    transition: .3s;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 198.59px;
}

header.sticky .logo img:first-child {
    display: none;
}

header.sticky .logo {
    display: block !important;
    background-image: url(../img/logo-typ.svg);
    height: 30px;
    background-position: left;
    ;
}

header .top {
    padding: 10px 0px;
    position: relative;
}

header .top {
    position: relative;
    z-index: 5;

}

header .top .contactUl {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: var(--textColor);
}

header .top .contactUl a {
    color: var(--textColor);
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: .8;
}

header .top .contactUl a i {
    margin-right: 7px;
    aspect-ratio: 1/1;
    display: inline-block;
    line-height: 0;
    font-size: 15px;
}

header .top .userButtons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    z-index: 5;
}

header .top .userButtons li a.button {
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
    display: flex;
    align-items: center;
}

header .top .userButtons li a.button:hover {
    background-color: var(--secondaryColor);
    color: Whitesmoke;
}

header .top .userButtons li:last-child a {
    background-color: var(--primaryColor);
    color: whitesmoke;
    font-weight: 500;
}

header .top .userButtons li a.button .wallet {
    margin-left: 10px;
}

header .top .userButtons li a.button i {
    margin-right: 7px;
    aspect-ratio: 1/1;
    display: inline-block;
    line-height: 0;
    font-size: 16px;
}

header .top>div>.row>div {
    display: flex;
    align-items: center;
}




header .bottom {
    padding-bottom: 15px;
    border-top: 1px dotted rgb(11 57 84 / 12%);
}

header.sticky .bottom {
    border-top: none !important;
}


header .menuUl {
    display: flex;
    width: 100%;
    gap: 70px;
    font-size: 15px;
    position: relative;
    top: -10px;
}

header .menuUl li a {
    color: var(--primaryColor);
    font-weight: 700;
    text-transform: uppercase;
    transition: .2s;
}

header>.bottom>div>.row>div:first-child ul {
    justify-content: flex-end;
    margin-right: 60px;
}

header>.bottom>div>.row>div:last-child ul {
    justify-content: flex-start;
    margin-left: 60px;
}

header>.bottom>div>.row>div {
    display: flex;
    align-items: end;
}

header .menuUl li a:hover {
    color: var(--secondaryColor);
}

header>.container {
    position: relative;
    z-index: 2;
}

header nav>ul {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    font-size: 13px;
    justify-content: center;
}

header nav ul a {
    color: var(--textColor);
    font-weight: 600;
    line-height: 40px;
    border-bottom: 3px solid transparent;
    display: block;
    transition: .3s;
    padding: 0px 10px;
    font-size: 14px;
    letter-spacing: .3px;
}

header nav ul a:hover,
header nav ul li.here a {
    border-color: var(--primaryColor) !important;
    color: var(--primaryColor) !important;
}

header .menuContent {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .inputBox {
    position: relative;
}

header .inputBox input {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    padding: 0px 25px;
    padding-right: 45px;
    line-height: 50px;
    width: 100%;
}

header .inputBox button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 7px;
    padding: 10px;
    aspect-ratio: 1/1;
    display: block;
    border-radius: var(--radius);
    color: #8F9298;
    transition: .3s;
}

header .inputBox button i {
    display: block;
    aspect-ratio: 1/1;
}

header .inputBox button:hover {
    background-color: var(--secondaryColor);
    color: whitesmoke;
}

header .userMenu {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    width: 100%;
    justify-content: flex-end;
}

header .userMenu a {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 600;
}

header .userMenu a i {
    margin-right: 5px;
}

header .userMenu .iconButton i {
    font-size: 23px;
}

header .userMenu .iconButton {
    position: relative;
}

header .userMenu .iconButton span {
    aspect-ratio: 1/1;
    background-color: var(--primaryColor);
    border-radius: 100%;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -5px;
    bottom: -5px;

}

header .userMenu li:not(.iconButton) {
    border-bottom: 1px solid transparent;
    transition: .3s;
}

header .userMenu li:not(.iconButton):hover {
    border-bottom-color: var(--textColor);
}

header .bottom {
    padding-top: 10px;
}

/* Dropdoen Menü Basic */
.drop {
    position: relative;
}

.drop .toggle {
    line-height: 40px;
}

.drop .sub {
    position: absolute;
    height: 0px;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    padding-top: 0px;
    transition: .3s;
}

.drop:hover>.sub {
    height: auto;
    transform: translateY(0px);
    padding-top: 24px;
    opacity: 1;
}

.drop:hover>.toggle {
    border: none !important;
}

.drop .sub .sub-content {
    position: relative;
    background-color: var(--primaryColor);
}

.drop .sub .sub-content ul li:last-child a {
    border: none;
}



.drop .sub .sub-content:before {
    font-family: 'default' !important;
    content: "\eb4a";
    position: absolute;
    left: 0;
    top: -24px;
    color: var(--primaryColor);
    z-index: 62;
    font-size: 24px;
    line-height: 24px;
}

.drop .sub .sub-content ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.drop .sub .sub-content ul li {
    width: 100%;
}

.drop .sub .sub-content ul li a {
    padding: 0px 15px;
    line-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    display: block;
    color: White;
    transition: .2s;
    white-space: nowrap;
    font-weight: 400;
}

.drop .sub .sub-content ul li a:hover {
    background-color: whitesmoke;
}

/* Dropdoen Menü Basic End */

header .drop .toggle {
    color: var(--textColor);
    font-weight: 600;
}

header .drop .toggle:after {
    font-family: 'default' !important;
    content: "\e928";
    font-size: 10px;
    margin-left: 5px;
}

header .menuLink {
    white-space: nowrap;
}

header .menuLink i {
    margin-right: 10px;
}

header .toggle .caret {
    font-size: 11px;
    margin-left: 7px;
}

header .language .sub-content {
    background-color: white !important;
}

header .language .sub-content a {
    color: var(--textColor) !important;
}

header .language .drop .sub .sub-content:before {
    color: white !important;
    transform: scaleX(-1);
    left: initial;
    right: 0;
}

@media screen and (max-width:992px) {

    header.menuOn {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    header.sticky {
        top: 0;
    }

    header.menuOn>.bottom {
        transform: translateX(0);
    }

    header .mobileLogo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    header .mobileLogo li {
        width: initial;
    }

    header .mobileLogo .logo {
        height: 25px;
        width: 140px;
    }

    header .top .userButtons li a.button i {
        margin-right: 0px;
    }

    header .userButtons span.text {
        display: none !important;
    }

    header>.bottom>div {
        padding: 27px;
    }

    header>.bottom>div>.row>div:last-child ul {
        margin-left: 0px;
    }

    header .menuUl {
        flex-flow: column;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 15px;
        margin-top: 15px;
    }

    header>.bottom>.container>.row>div:nth-child(2) {
        order: 1;
        margin-bottom: 25px;
    }

    header .logo {
        background-image: url(../img/logo-typ.svg) !important;
        height: 40px;
    }

    header>.bottom>.container>.row>div:nth-child(1) {
        order: 2;
    }

    header>.bottom>.container>.row>div:nth-child(3) {
        order: 3;
    }

    header>.bottom {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 75%;
        background-color: whitesmoke;
        transform: translateX(-100%);
        transition: .3s;
        z-index: 15;
    }

    header .contactUl {
        display: none !important;
    }

    .menuToggle {
        padding: 15px;
        margin-left: -12px;
        color: var(--primaryColor);
    }

    header .inputBox input {
        border-radius: 0px;
        background-color: var(--primaryColor);
        color: white;
        outline: none;

    }

    header .searchContent {
        padding: 0px;
    }

    header .inputBox input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input:-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox button {
        color: rgba(255, 255, 255, .7);
        opacity: 1;
    }

    header .inputBox button:hover {
        color: rgba(255, 255, 255, 1);
        background-color: transparent;
    }

    header .top .container {
        padding-bottom: 0px;
    }

    header {
        padding-bottom: 0px;
    }

    header .drop .toggle,
    header nav ul a {
        color: white !important;
    }

    header .logoContent {
        background-color: whitesmoke;
        margin-left: -12px;
        margin-right: -12px;
        padding: 0px 15px;
        width: auto;
    }

    header .menuContent {
        align-items: flex-start;
        padding-top: 0px;
    }

    header nav ul a:hover,
    header nav ul li.here a {
        background-color: whitesmoke;
        color: var(--primaryColor) !important;
    }

    header .menuContent>.container {
        padding: 0px;
    }

    .drop .sub .sub-content ul li a {
        border-bottom-color: rgba(255, 255, 255, .08) !important;
    }

    header .drop .toggle:after {
        float: right;
        transform: rotate(270deg);
    }

    header .mobileButton {
        background-color: var(--primaryColor);
        color: whitesmoke !important;
    }

    header .mobileButton i {
        margin-right: 7px !important;
    }
}

/* Header End */
/* headline */
#headline {
    position: relative;
}

#headline .item {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#headline .item h2 {
    text-align: center;
    font-weight: 900;
    font-size: 60px;
    line-height: 66px;
    font-family: 'Courier', monospace;

}

#headline .item h2 .typewriter {
    display: inline-block;
    white-space: pre;
    /* Boşluk karakterini korur */
}

#headline .item h2 .typewriter::after {
    content: '';
    border-right: 2px solid black;
    animation: blink 1s infinite;
    height: 100%;
}

#headline .item article {
    display: table;
    margin: auto;
    width: 40%;
    text-align: center;
    color: var(--textColor);
    font-weight: 400;
    opacity: .9;
    font-size: 19px;
    line-height: 28px;
    margin-top: 30px;
}

#headline .item .buttons {
    margin-top: 25px;
}

#headline .item .buttons ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#headline .item .buttons ul li:last-child .button {
    background-color: var(--secondaryColor);
}

#headline .services {
    margin-top: 45px;
    border-radius: 5px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: .2s;
}

#headline .services:hover,
#headline .services.active {
    background-color: #0b395408;
}

#headline .services>ul {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    position: relative;
}

#headline .services ul a {
    color: var(--textColor);
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 0px;
    padding: 15px;
}

#headline .services ul li {
    flex-grow: 1;
    text-align: center;
    width: 100%;
    pos-r
}

#headline .services .box .focusBorder {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 5px;
    background-color: var(--primaryColor);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transform: translateY(-10px);
    opacity: 0;
    transition: .3s;
}

#headline .services .active .box .focusBorder {
    opacity: 1;
    transform: translateY(0);
}

#headline .services .active .box {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
    background-color: #0b395412;
}

#headline .services .active .box>a {
    padding-bottom: 28px;
    margin-bottom: -15px;
}




#headline .services ul i {
    font-size: 40px;
    display: inline-block;
    aspect-ratio: 1/1;
    text-align: center;
    line-height: 0;
}

#headline .services ul .name {
    font-size: 14.5px;
    margin-top: 15px;
}

#headline .services ul li.active a .name {
    font-weight: 600 !important;
}

#headline .services ul li.active a {
    color: var(--primaryColor);
    opacity: 1 !important;
}

#headline .services ul li:hover a {
    color: var(--primaryColor);
    opacity: .6;
}

#headline .services ul li .box,
#headline .services ul li a {
    position: relative;
}

#headline .services>ul>li>.box a:before {
    content: "";
    width: 1px;
    height: 0;
    transition: .3s;
    background-color: var(--primaryColor);
    right: 0;
    bottom: 0;
    position: absolute;
}

#headline .services>ul>li>.box a:after {
    content: "";
    width: 0px;
    height: 1px;
    transition: .3s;
    background-color: var(--primaryColor);
    right: 0;
    bottom: 0;
    position: absolute;
}

#headline .services ul li .box:before {
    content: "";
    width: 1px;
    height: 0;
    transition: .3s;
    background-color: var(--primaryColor);
    left: 0;
    top: 0;
    position: absolute;
}

#headline .services ul li .box:after {
    content: "";
    width: 0px;
    height: 1px;
    transition: .3s;
    background-color: var(--primaryColor);
    left: 0;
    top: 0;
    position: absolute;
}

#headline .services ul li:hover a:before {
    height: 35px !important;
}

#headline .services ul li:hover a:after {
    width: 35px !important;
}

#headline .services ul li:hover .box:before {
    height: 35px !important;
}

#headline .services ul li:hover .box:after {
    width: 35px !important;
}

#headline .services ul li a .caret {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    text-align: center;
    aspect-ratio: auto;
    line-height: 0;
    height: auto;
    font-size: 15px;
    opacity: 0;
    transition: .3s;
}

#headline .services ul li.active a .caret {
    opacity: 1;
}

#headline .services ul li .subService {
    background-color: var(--primaryColor);
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
    color: Whitesmoke;
    transform: translateY(-50px);
    opacity: 0;
    height: 0px;
    transition: .5s;
    transform-origin: top;
    padding: 0px 10px;
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

#headline .services ul li.active .subService {
    transform: translateY(0px);
    opacity: 1;
    height: auto;
    z-index: 15;
    padding: 10px 10px;
    user-select: auto;
    pointer-events: auto;

}

#headline .services ul li .subService a {
    color: Whitesmoke;
    display: flex;
    flex-flow: row;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    flex-flow: column;
}

#headline .services ul li .subService a i {
    font-size: 30px;
}

#headline .services ul li .subService a span {
    display: block;
    margin-top: 10px;
    opacity: .8;
}

#headline .services ul li .subService>ul {
    display: flex;
    flex-wrap: wrap;
    /* Satıra sığmayan elemanları alt satıra taşır */

    /* Elemanlar arasında boşluk bırakır */
    align-items: flex-start;
    /* Elemanları yukarı hizalar */
    gap: 10px;
    /* Elemanlar arasında boşluk */
}

#headline .services ul li .subService>ul li {
    width: auto;
    width: calc(20% - 10px);
    max-width: calc(20% - 10px);
    justify-content: flex-start;
    text-align: left;
}

#headline .services ul li .subService>ul li a {
    transition: .3s;
    white-space: wrap;
    font-size: 14px;
    font-weight: 300;
    opacity: .7;
    background-color: #ffffff08;
    border-radius: 7px;
}

#headline .services ul li .subService>ul li a:hover {
    background-color: var(--secondaryColor);
}

#headline .services ul li .subService>ul li a:hover * {
    opacity: 1 !important;
}

/*
#headline .services ul li .subService>ul li a:after {
    content: "\ea81";
    font-family: 'default' !important;
    position: relative;
    float: right;
    margin-left: 15px;
    height: auto;
    opacity: 0;
    transform: translateX(0);
    transition: .2s;
}
*/
#headline .services ul li .subService>ul li a:hover:after {
    opacity: 1;
    transform: translateX(10px);
}

#headline .flash {
    text-align: center;
}

#headline .flash span {
    display: inline-block;
    border-radius: var(--radius);
    background-color: #e9edef;
    padding: 0px 25px;
    line-height: 40px;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    bottom: -25px;
}

#headline .flash span:before {
    display: inline-block;
    content: "\e997";
    font-family: 'default' !important;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    width: 100%;
    text-align: center;
    line-height: 0;
    color: #e9eef0;
    font-size: 25px;
}







@keyframes blink {
    50% {
        border-color: transparent;
    }
}


@media screen and (max-width:992px) {
    #headline .services ul li .subService a span {
        margin-top: 0px;
    }

    #headline .services ul li .subService>ul li {
        width: 100%;
        max-width: 100%;
    }

    #headline .services ul li .subService>ul li a {
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
    }

    #headline .services ul li .subService>ul li a i {
        margin-right: 10px;
        font-size: 16px;
    }

    #headline .services ul li .subService {
        left: 0px !important;
        top: initial !important;
        margin-top: 28px;
        width: 100vw;
        border-radius: 15px;
        transform-origin: top;
    }

    #headline .services ul li {
        min-width: 125px;
    }

    #headline .services ul .name {
        font-size: 12px;
        white-space: nowrap;
    }

    #headline .services {
        overflow-x: auto;
        min-height: 155px;
    }

    #headline .services>ul {
        justify-content: flex-start;
        position: static;
    }

    #headline .item {
        height: 70vh;
    }

    #headline .item h2 {
        font-size: 30px;
        line-height: 31px;
    }

    #headline .item article {
        width: 90%;
        font-size: 15px;
        line-height: 28px;
        margin-top: 20px;
    }

}

/* Headline End */
/* Comments */
#comments {
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

#comments .box {
    border-radius: 10px;
    padding: 45px;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#comments .box .stars {
    display: flex;
    gap: 2px;
    font-size: 20px
}

#comments .box .stars li {
    opacity: .4;
    color: #F9C339;
}

#comments .box .stars li.active {
    opacity: 1;
}

#comments .box .name {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 16px;
    display: flex;
    align-items: center;
}

#comments .box .name p {
    font-weight: 500;
    color: var(--textColor);
    font-size: 13px;
    margin: 0px;
    margin-left: 15px
}

#comments .box .comment {
    font-weight: 400;
    color: var(--textColor);
    font-size: 15px;
    margin-top: 15px;
    line-height: 22px;
    opacity: .9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#comments .owl-item {
    padding: 25px 0px;
}

#comments .head {
    margin-bottom: 0px;
}

#comments .head h2 {
    font-size: 16px;
    color: var(--primaryColor);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#comments .head h2 a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: var(--secondaryColor);
    transition: .3s;
    font-size: 16px;
    font-weight: 500;
}

#comments .head h2 a:hover {
    color: var(--primaryColor);
}

#comments .head h2 a i {
    font-size: 13px;
    color: var(--secondaryColor);
}

#comments .head h2 a:hover i {
    color: var(--primaryColor);
}

#comments .head h2 i {
    margin-right: 10px;
    width: initial !important;
    font-size: 22px;
}

#comments .owl-carousel .owl-dot span {
    height: 3px;
    width: 7px;
    margin: 2px;
    transition: .3s;
}

#comments .owl-carousel .owl-dot.active span {
    width: 20px;
    background-color: var(--primaryColor);
}

#comments:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/abstract.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: .3;
}

#comments .owl-dots {
    margin-top: -25px;
}

.page #comments {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

.page #comments .head {
    margin-bottom: 35px;
}

.page #comments .head * {
    text-align: left;
}

.page #comments .head h2 {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primaryColor);
}

.page #comments>.container {
    position: relative;
    z-index: 15;
}

.page #comments .item {
    padding: 15px;
}

.page #comments:before {
    opacity: .1;
}

@media screen and (max-width:992px) {
    .page #comments .item {
        padding: 5px;
    }
}

/* Comments End */
/* Counter : Pearl */
#pearl {
    padding: 70px 0px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

#pearl:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.40940126050420167) 100%);
    height: 60px;
    z-index: -1;
}

#pearl .head span {
    margin-bottom: 0px;
    color: var(--textColor) !important;
    text-transform: none;
    font-weight: 500;
    opacity: .8;
    font-size: 14px;
}

#pearl .head h2 {
    margin-top: 0px;
    font-weight: 700;
    color: var(--primaryColor);
}

#pearl>div>.rowLine {
    overflow: hidden;
}

#pearl>div .row {
    margin: 0;
}

#pearl>div .row>div {
    padding: 0px;
}

#pearl>div .row>div:last-child {
    border: none !important;
}

#pearl>div .row .box {
    padding: 15px 35px;
    text-align: center;
    display: block;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}

#pearl>div .row .box i {
    font-size: 40px;
    line-height: 40px;
    display: inline-flex;
    color: var(--primaryColor);
    transition: .3s;
}

#pearl>div .row .box .title {
    font-size: 30px;
    line-height: 30px;
    color: var(--textColor);
    margin-top: 10px;
    font-weight: 600;
}

#pearl>div .row .box .description {
    font-size: 15px;
    color: var(--textColor);
    margin-top: 5px;
    font-weight: 400;
    opacity: .8;
}


@media screen and (max-width:929px) {
    #pearl {
        padding: 40px 0px !important;
    }

    #pearl>div {
        padding: 0px;
    }

    #pearl>div .row>div:not(:first-child) {
        min-width: 50%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    #pearl>div .row>div:nth-child(odd) {
        border-right: none;
    }

    #pearl>div .row>div:nth-last-child(1),
    #pearl>div .row>div:nth-last-child(2) {
        border-bottom: none;
    }

    #pearl>div .row .box {
        padding: 20px;
    }

    #pearl>div .row .box i {
        font-size: 40px;
        line-height: 40px;
    }

    #pearl>div .row .box .title {
        font-size: 20px;
        line-height: 20px;
    }

    #pearl>div .row .box .description {
        font-size: 12px;
    }
}

/* Counter: Pearl End */
/* Popular Services */
#projects {
    padding: 60px 0px;
    padding-top: 35px;
}

.page #projects .head {
    margin-bottom: 0px;
}

.page #projects .head * {
    text-align: left;
}

.page #projects .head h2 {
    color: var(--primaryColor);
    font-weight: 700;
}

.page #projects .head article {
    color: var(--textColor);
}


#projects>.container {
    position: relative;
    z-index: 5;
}

#projects>.container-fluid {
    width: 80%;
    border-radius: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#projects>.container-fluid:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/projects.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#projects>.container-fluid:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: var(--primaryColor);
    opacity: .5;
}

#projects>.container-fluid>div {
    position: relative;
    z-index: 2;
}

#projects .head {
    margin-bottom: 20px;
    padding: 25px 0px;

}

#projects .head h2 {
    font-size: 28px;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
}

#projects .head h2>div {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-weight: 400;
}

#projects .head h2>div article {
    font-size: 17px;
    line-height: 26px;
    opacity: .7;
    font-weight: 400;
    margin-top: 10px;
    width: 50%;
    display: block;
}

#projects .head h2>div>div {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

#projects .head h2 a {
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: white;
    transition: .3s;
}

#projects .head h2 a:hover {
    color: var(--secondaryColor);
}

#projects .head h2 a i {
    font-size: 13px;
    color: white;
}

#projects .head h2 a:hover i {
    color: var(--secondaryColor);
}

#projects .head h2 i {
    margin-right: 10px;
    width: initial !important;
    font-size: 22px;
    color: White;
    display: flex;
    align-items: center;
}

#projects .serviceNav {
    margin-top: -95px;
    padding-left: 35px;
    padding-right: 35px;
    overflow-x: auto;
    overflow-y: clip;
    padding-top: 17px;
}

#projects .serviceNav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 55px;
}

#projects .serviceNav ul li {
    max-width: 150px;
    position: relative;
}

#projects .serviceNav ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 1/1;
    content: "";
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 100%;
    z-index: 0;
    transform: scale(1.25);
    transition: .3s;
}

#projects .serviceNav ul li.active:before {
    background-color: #ec9307ad;
}

#projects .serviceNav ul li:not(.active):hover:before {
    background-color: #0b3954a6;
}

#projects .serviceNav .visual {
    overflow: hidden;
    border-radius: 100%;
    aspect-ratio: 1/1;
    position: relative;
    z-index: 2;
}

#projects .serviceNav .name {
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--textColor);
    width: 100%;
    text-align: center;
    padding-left: 27px;
    padding-right: 27px;
    line-height: 16px;
}

#projects .serviceNav ul li.active .name {
    color: var(--secondaryColor);
}

#projects .imgGallery {
    margin-top: 60px;
}

#projects .imgGallery>.row>div {
    margin-bottom: 25px;
}

#projects .imgGallery .box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

#projects .imgGallery .item .box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(4, 31, 47);
    background: linear-gradient(0deg, rgba(4, 31, 47, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: .8;
    transition: .3s;
}

#projects .imgGallery .item .box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(4, 31, 47);
    background: linear-gradient(0deg, rgba(4, 31, 47, 1) 0%, rgba(4, 31, 47, 0.6166841736694677) 100%);
    opacity: 0;
    z-index: 1;
    transition: .3s;
}

#projects .imgGallery .item:hover .box:after {
    opacity: .5;
}

#projects .imgGallery .box .visual {
    border-radius: 15px;
    overflow: hidden;
}

#projects .imgGallery .box .visual img {
    width: 100%;
}

#projects .imgGallery .box .caption {
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: whitesmoke;
    z-index: 5;
}

#projects .imgGallery .box .caption .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

#projects .imgGallery .box .caption .title span {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    opacity: .6;
    display: block;
}

#projects .imgGallery .box .caption article {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
    opacity: .8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width:1600px) {
    #projects>.container-fluid {
        width: 95%;
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media screen and (max-width:992px) {
    .page #projects .head {
        padding-left: 25px;
        padding-top: 0px;
    }

    .page #projects .imgGallery {
        margin-top: 0px;
    }

    #projects .imgGallery>.row>div {
        margin: 0px;
        padding: 5px;
    }

    #projects {
        padding: 30px 0px;
    }

    #projects>.container-fluid:after {
        opacity: .85;
    }

    #projects .head h2>div article {
        width: 88%;
        font-size: 15px;
    }

    #projects>.container-fluid {
        width: 100%;
        padding: 0px 25px;
        border-radius: 0;
    }
}

/* Popular Services End */
/* Period */
#period {
    background-color: #e9edf0;
    background-image: url(../img/arrow.webp);
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 45px;
}

#period .head {
    margin-bottom: 30px;
}

#period .head h2 {
    margin-bottom: 0px;
}

#period .head span {
    text-transform: none;
    margin-top: 5px;
    font-size: 16px;
    line-height: 16px;
}

#period .box {
    position: relative;
    z-index: 2;
}

#period .box .visual {
    position: relative;
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
}

#period .box .visual:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: #dae2e8;
    border-radius: 100%;
    transform: scale(.8);
}

#period .box .visual .step {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}

#period .box .visual .step span {
    display: inline-flex;
    border-radius: 100%;
    width: 100px;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    position: relative;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

#period .box .visual .step span:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    aspect-ratio: 1/1;
    transform: scale(.7);
    background-color: whitesmoke;
    z-index: -1;
    border-radius: 100%;
}

#period .box .title {
    font-weight: 700;
    text-align: center;
    font-size: 22px;
    line-height: 22px;
    margin-top: 20px;
}

#period .box article {
    color: var(--textColor);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-top: 20px;
}

/* Period End */
/* Faq */
#faq {
    padding: 35px 0px;
    padding-bottom: 60px;
}

#faq .faqUl {
    margin-top: 25px;
}

#faq .faqUl li {
    margin-bottom: 35px;
}

#faq .faqUl li:last-child {
    margin-bottom: 0px;
}

#faq .faqUl li a {
    display: inline-flex;
    color: var(--textColor);
}

#faq .faqUl li a i {
    font-size: 20px;
    line-height: 20px;
    padding: 20px;
    border-radius: 100%;
    background-color: var(--secondaryColor);
    color: white;
    margin-right: 15px;
}

#faq .faqUl li a>div {
    display: flex;
    align-items: center;
}

#faq .faqUl li a div span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}

#faq .head,
#faq .head * {
    text-align: left;
}

#faq .head span {
    text-transform: none !important;
    color: var(--primaryColor);
    font-weight: 600;
}

#faq .head h2 {
    margin-bottom: 0px;
}

#faq .head article {
    color: var(--textColor);
    width: 75%;
}

#faq .head a {
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: var(--primaryColor);
    margin-top: 10px;
    transition: .3s;
}

#faq .head a:hover {
    color: var(--secondaryColor);
}

#faq .head a i {
    font-size: 13px;
    color: var(--primaryColor);
}

#faq .head a:hover i {
    color: var(--secondaryColor);
}

#faq .head i {
    margin-right: 10px;
    width: initial !important;
    font-size: 22px;
    color: White;
    display: flex;
    align-items: center;
}

.ssslist .item .sssToggle {
    background-color: transparent;
    border-bottom: solid 1px rgba(0, 0, 0, .2);
}

.ssslist .item .sssToggle i {
    font-size: 10px;
    margin-right: 7px;
    margin-left: 5px;
}

.ssslist .item .tuyo {
    border-radius: 7px;
}

.sssToggle.open {
    background-color: var(--secondaryColor) !important;
    border-radius: var(--radius);
}

.ssslist .tuyo article {
    color: var(--textColor)
}

.ssslist {
    display: block;
    margin-top: 15px;
}

.ssslist .item {
    display: block;
    position: relative;
    padding: 5px 0px;
}

.ssslist .item .sssToggle {
    display: flex;
    align-items: center;
    padding: 0px 15px;
    line-height: 50px;
    color: var(--textColor);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--radius);
}

.ssslist .item .sssToggle:hover {
    background-color: whitesmoke;
    cursor: pointer;
}

.sssToggle .iconbox {
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    aspect-ratio: 1/1;
    width: 50px;
    justify-content: center;
    display: flex;
    height: 50px;
    padding: 0px;
}

.sssToggle .iconbox i {
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0;
}

.ssslist .item .tuyo {
    display: block;
    background-color: white;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    overflow: hidden;
    padding: 0px 25px;
}

.ssslist .tuyo article {
    display: block;
    padding: 25px;
    font-size: 16px;
    background-color: whitesmoke;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.sssToggle {
    letter-spacing: .5px;
    padding-right: 40px !important;
    background-color: #ffffff12;
}

.tuyo {
    height: 0px
}

#sss .ceviri_ar {
    text-align: right
}

.rt0 {
    transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -ms-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important
}

.sssToggle.open {
    opacity: 1 !important;
    color: white !important;
}

@media screen and (max-width:992px) {
    #faq {
        padding-bottom: 30px;
    }

    .sssToggle .iconbox {
        aspect-ratio: 1 / 1;
        width: 40px;
        height: initial;
    }

    .ssslist .item .sssToggle {
        border-radius: 5px;
        line-height: 23px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .ssslist .item .sssToggle>i {
        display: none;
    }

    #faq .head article {
        width: 100%;
    }
}

/* Faq End */

/* Blogs */
#blog {
    padding: 65px 0px;
    background-color: #e9edf03b;
}

#blog .head {
    text-align: center;
    margin-bottom: 15px;

}

#blog .head h2 {
    margin-top: 0px;
}

#blog .head span {
    text-transform: none !important;
}

#blog .item a {
    padding: 35px;
    background-color: white;
    border-radius: 7px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0px 0px 30px -10px transparent;
    display: block;
}

#blog .item a .title {
    color: var(--primaryColor);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    height: 90px;
}

#blog .item a .date {
    color: var(--textColor);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: .5;
    display: block;
    display: flex;
    align-items: center;
}

#blog .item a .date i {
    margin-right: 5px;
}

#blog .item a article {
    color: var(--textColor);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 72px;
}

#blog .item a .visual {
    margin-bottom: 15px;
    display: flex;
    margin-left: -35px;
    margin-right: -35px;
    margin-top: -35px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .3s;
}

#blog .item:hover a .visual {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%)
}

#blog .owl-carousel .owl-dot span {
    height: 3px;
    width: 7px;
    margin: 2px;
    transition: .3s;
}

#blog .owl-carousel .owl-dot.active span {
    width: 20px;
    background-color: var(--primaryColor);
}

#blog .owl-item,
#blog .item,
#blog .item a {
    height: 100%;
}

#blog .item {
    padding-top: 30px;
    padding-bottom: 30px;
}

#blog .item:hover a {
    box-shadow: 0px 0px 30px -10px var(--primaryColor);
}

#blog .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px !important;
}

.page #blog {
    position: relative;
    z-index: 15;
}

@media screen and (max-width:992px) {
    .page #blog .item {
        padding: 5px;
    }

    .page #blog .item a {
        padding: 15px;
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    }

    #blog>.container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    #blog .owl-item {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    #blog .head {
        margin-bottom: 35px !important;
    }

    #blog {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    #blog .item {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #blog .item a .title {
        font-size: 15px;
        line-height: 23px;
        height: 80px;
    }
}


/* Blogs End */

/* Footer */
footer {
    background-color: var(--footerBg);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    padding: 85px 0;
    padding-bottom: 15px;
    position: relative;
}

footer .logoContent {
    margin-bottom: 35px;
    color: var(--secondaryColor);
}

footer .logoContent a {
    display: inline-block;
    color: var(--secondaryColor);
    font-size: 44px
}

footer .contactList {
    margin-top: 35px;
    font-weight: 300;
    width: 75%;
}

footer .contactList>li {
    margin-top: 15px;
    margin-bottom: 15px
}

footer .contactList a {
    color: #fff;
    display: flex;
    opacity: .8
}

footer .contactList a i {
    float: left;
    line-height: 24px;
    margin-right: 10px;
    font-size: 15px
}

footer .contactList .buttons {
    margin-top: 25px
}

footer .contactList .buttons a {
    background-color: var(--primaryColor);
    padding: 0 15px;
    line-height: 40px;
    border-radius: var(--radius);
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    transition: .2s
}

footer .contactList .buttons a:hover {
    background-color: var(--success)
}

footer .contactList .buttons a i {
    float: right;
    line-height: 40px;
    margin-left: 7px
}

footer .contactList a span {
    float: left
}

footer .socials {
    margin-top: 45px
}

footer .socials li {
    margin-bottom: 15px
}

footer .socials li.head {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    opacity: .8;
    text-align: left;
}

footer .socials li a {
    color: #fff
}

footer .socials li a * {
    transition: .2s
}

footer .socials li a i {
    font-size: 12px;
    display: inline-block;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    border: solid 1px rgba(255, 225, 255, .2);
    padding: 10px
}

footer .socials li a:hover i {
    border-color: var(--primaryColor) !important
}

footer .socials li a span {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .5px;
    margin-left: 7px;
    opacity: .8
}

footer .socials li a:hover * {
    color: var(--secondaryColor)
}

footer .menuList ul {
    line-height: 50px;
    height: 100%
}

footer .menuList .head {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    text-align: left;
    margin-bottom: 0px;
}

footer .menuList ul {
    padding: 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

footer .menuList li {
    position: relative;
    z-index: 5
}

footer .menuList li a {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    opacity: .8;
    white-space: nowrap;
    transition: .2s
}

footer .menuList li a:hover {
    opacity: 1
}

footer .menuList li.apk {
    margin: 35px 0;
    margin-top: 0px;
}

footer .menuList li.apk ul {
    display: flex;
    font-size: 30px;
    line-height: 30px;
    margin-top: 5px;
    padding: 0
}

footer .menuList li.apk ul li {
    margin-right: 30px;
    opacity: .6
}

footer .menuList li.apk ul li:hover {
    opacity: 1
}

footer .menuList li.apk ul li i {
    color: #fff
}

footer .menuList ul:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .02
}

footer .menuList ul.digital:before {
    background-color: var(--digital)
}

footer .menuList ul.turizm:before {
    background-color: var(--turizm)
}

footer .menuList ul.cars:before {
    background-color: #fff
}

footer .menuList ul.insaat:before {
    background-color: var(--insaat)
}

footer .bottom {
    margin-top: 35px;
    margin-bottom: 15px
}

footer .bottom .container {
    background-color: rgba(0, 0, 0, .1);
    border-radius: var(--radius);
    color: #fff;
    padding: 25px 45px;
    border: solid 1px rgba(255, 255, 255, .03)
}

footer .bottom .corporateLinks {
    display: flex;
    font-size: 12px
}

footer .bottom .corporateLinks span {
    opacity: .6;
}

footer .bottom .corporateLinks i {
    margin-left: 10px;
    font-size: 16px;
    display: inline-block;
    float: right;
    bottom: -2px;
    position: relative;
    color: var(--secondaryColor);
}

footer .bottom .corporateLinks li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

footer .bottom .corporateLinks li a {
    color: #fff;
    line-height: 30px;
    transition: .2s
}

footer .bottom .corporateLinks li a:hover {
    opacity: 1;
    color: var(--primaryColor)
}

footer .copy {
    color: #fff;
    line-height: 30px;
    display: inline-block;
    opacity: .5;
    font-size: 12px
}

footer .badge {
    background-color: rgba(255, 255, 255, .1);
}

footer .badge:hover {
    background-color: var(--primaryColor);
}

@media screen and (max-width:1600px) {
    footer .menuList li.apk ul {
        display: block;
    }

    footer .menuList li.apk ul li {
        margin-bottom: 25px
    }

    footer .menuList li a {
        line-height: 23px;
        white-space: nowrap
    }
}

@media screen and (max-width:821px) {
    footer .contactList .buttons a {
        display: flex !important;
        white-space: nowrap
    }
}

@media screen and (max-width:769px) {
    footer .contactList .buttons a {
        white-space: nowrap;
        display: flex;
        width: fit-content
    }

    footer .mobileLayout {
        max-width: 100%;
        min-width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    footer .menuList li a {
        font-size: 14px
    }

    footer .menuList ul {
        padding-left: 0;
        padding-right: 0
    }
}

@media screen and (max-width:992px) {
    footer .mobilCozumler {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .mobilCozumler .apk {
        margin-bottom: 0px !important;
    }

    footer .menuList li a.badge {
        margin-bottom: 4px;
    }

    footer .menuList li.apk ul {
        font-size: 28px;
    }

    footer .socials li a span {
        display: none;
    }

    footer .socials {
        display: flex;
        gap: 15px;
    }

    footer .socials li:first-child {
        display: none;
    }

    footer .logoContent {
        margin-bottom: 0px;
    }

    footer .bottom .corporateLinks li a {
        white-space: nowrap
    }

    footer .bottom .container {
        padding-left: 15px;
        padding-right: 15px;
        zoom: 75%;
        border-radius: 15px !important
    }

    footer .bottom {
        margin-bottom: -7px;
        margin-top: 0px;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    footer {
        border-radius: 0px !important;
        width: 100% !important;
        margin-left: 0px !important;
        margin-bottom: 0px !important;
        padding-top: 25px;
    }
}

/* Footer End */
/* Create Task */
#create {
    padding: 60px 0px;
}

#create .stepBar {
    position: sticky;
    top: 65px;
    padding: 10px 25px;
    border-radius: var(--radius);
    z-index: 15;
    transition: .3s;
}

#create .stepBar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -12px;
    width: 100%;
    height: 6px;
    background-color: #c7ced4;
    border-radius: var(--radius);
}

#create .stepBar:after {
    content: "";
    position: absolute;
    left: 0;
    top: -12px;
    width: 0;
    height: 6px;
    background-color: var(--success);
    border-radius: var(--radius);
    transition: 1s;
}

#create.step1-ok .stepBar:after {
    width: 2%;
}

#create.step2-ok .stepBar:after {
    width: 36%;
}

#create.step3-ok .stepBar:after {
    width: 66%;
}

#create.step4-ok .stepBar:after {
    width: 100%;
}

.stickyOn #create .stepBar {
    background-color: #d6e0e7;
    border-radius: 25px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    overflow: hidden;
    padding-right: 50px;
    margin-bottom: 20px;
    box-shadow: 0px 10px 0px 0px #e9edef;
}

#create .stepBar ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

#create .stepBar ul li {
    position: relative;
}

#create .stepBar ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: absolute;
    background-color: #adb6bd;
    top: -30px;
    z-index: 10;
}

#create .stepBar ul li:nth-child(2):before {
    left: calc(50% - 13px);
}

#create .stepBar ul li:nth-child(3):before {
    left: calc(50% - 13px);
}

#create .stepBar ul li:last-child:before {
    right: 0;
}

#create .stepBar ul li span {
    font-weight: 500;
    font-size: 15px;
    transition: .3s;
}

.stickyOn #create .stepBar ul li span {
    position: relative;
}

#create .stepBar ul li span .checkedBox {
    width: 30px;
    position: absolute;
    right: -30px;
    top: -5px;
    opacity: 0;
    transition: .3s;
}

#create .stepBar ul li span .checkedBox .lottie {
    transform: scale(2);
}

#create.step1-ok .stepBar ul li:first-child span .checkedBox,
#create.step2-ok .stepBar ul li:nth-child(2) span .checkedBox,
#create.step3-ok .stepBar ul li:nth-child(3) span .checkedBox,
#create.step4-ok .stepBar ul li:nth-child(4) span .checkedBox {
    opacity: 1;
}

#create.step1-ok .stepBar ul li:first-child:before,
#create.step2-ok .stepBar ul li:nth-child(2):before,
#create.step3-ok .stepBar ul li:nth-child(3):before,
#create.step4-ok .stepBar ul li:nth-child(4):before {
    background-color: var(--success);
}

body:not(.stickyOn) #create.step1-ok .stepBar ul li:first-child span,
body:not(.stickyOn) #create.step2-ok .stepBar ul li:nth-child(2) span,
body:not(.stickyOn) #create.step3-ok .stepBar ul li:nth-child(3) span,
body:not(.stickyOn) #create.step4-ok .stepBar ul li:nth-child(4) span {
    color: var(--success);
    font-weight: 700;
}

#create .stepBar .fakeProgress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    transition: 1s;
    background-color: var(--success);
    z-index: 0;
    border-radius: 25px;
    border-top-left-radius: 0;
}

.stickyOn #create .stepBar ul {
    position: relative;
    z-index: 2;
}

.stickyOn #create .stepBar ul span {
    color: var(--textColor);
}

#create.step1-ok .stepBar ul li span .checkedBox {
    border-radius: 100%;
    right: -30px;
}

.stickyOn #create .stepBar ul li span .checkedBox {
    background-color: #d6e0e7;
    right: -40px;
}

.stickyOn #create.step1-ok .stepBar .fakeProgress {
    width: 16%;
}

.stickyOn #create.step2-ok .stepBar .fakeProgress {
    width: 45%;
}

.stickyOn #create.step3-ok .stepBar .fakeProgress {
    width: 74.3%;
}

.stickyOn #create.step4-ok .stepBar .fakeProgress {
    width: 100%;
    border-top-right-radius: 0px;
}

.stickyOn #create.step1-ok .stepBar ul li:first-child span,
.stickyOn #create.step2-ok .stepBar ul li:nth-child(2) span,
.stickyOn #create.step3-ok .stepBar ul li:nth-child(3) span,
.stickyOn #create.step4-ok .stepBar ul li:last-child span {
    color: whitesmoke !important;
}

#create .pano {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

#create .pano .box {
    background-color: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

#create .pano .taskType .mainType {
    font-size: 13px;
    font-weight: 600;
    color: var(--textColor);
    opacity: .8;
}

#create .pano .taskType h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primaryColor);
}

#create .pano .taskType a {
    color: var(--textColor);
    transition: .3s;
}

#create .pano .taskType a:hover {
    color: var(--secondaryColor);
}

#create .pano .taskType a i {
    font-size: 26px;
}

#create .pano h4 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
}

#create .pano article.info {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: -15px;
    font-weight: 500;
    color: var(--textColor);
    opacity: .8;
}

#create .pano .buttonContent {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

#create .pano .buttonContent .button {
    border-radius: 10px;
    line-height: 60px;
}

#create .pano .buttonContent .button:hover {
    background-color: var(--secondaryColor) !important;
    color: Whitesmoke !important;
    border-color: var(--secondaryColor) !important;
}

#create .pano .buttonContent .button i {
    margin-left: 10px;
}

#create .step {
    display: none;
}

#create.step1-ok [data-step="step1"] {
    display: none;
}

#create.step1-ok [data-step="step2"] {
    display: block;
}

#create.step2-ok [data-step="step2"] {
    display: none;
}

#create.step2-ok [data-step="step3"] {
    display: block;
}

#create.step3-ok [data-step="step3"] {
    display: none;
}

#create.step3-ok [data-step="step4"] {
    display: block;
}

#create.step4-ok [data-step="step4"] {
    display: none;
}

#create.step4-ok [data-step="step5"] {
    display: block;
}

#create .timeSelect {
    padding-top: 15px;
}

#create .timeSelect .stickyBox {
    position: sticky;
    top: 135px;
}

#create .timeSelect article {
    color: var(--textColor);
    font-size: 14px;
}

#create .successTask {
    padding: 35px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

#create .successTask:before {
    content: "";
    width: 100%;
    height: 250px;
    left: 0;
    top: 10px;
    position: absolute;
    background: rgb(97, 177, 17);
    background: linear-gradient(0deg, rgba(97, 177, 17, 0) 0%, rgba(97, 177, 17, 1) 100%);
    z-index: 0;
    opacity: .4;
    border-radius: 15px;
}

#create .successTask>div {
    position: relative;
    z-index: 2;
}

#create .successTask .head {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

#create .successTask .head h4 {
    font-size: 30px;
    color: #065f38;
    text-align: left;
}

#create .successTask .head article {
    font-size: 15px;
    color: var(--textColor);
    font-weight: 500;
    text-align: left;
}

#create .successTask ul {
    display: flex;
    flex-flow: column;
    gap: 15px;
    color: var(--textColor);
    font-size: 14px;
}

#create .successTask ul strong {
    margin-right: 7px;
}




#calendar {
    max-width: 100%;
    margin-top: 15px;
}

#calendar table,
#calendar tbody,
#calendar table tr,
#calendar table td,
#calendar table th {
    position: relative;
}

@media screen and (min-width:992px) {

    #calendar table,
    #calendar tbody,
    #calendar table tr,
    #calendar table td,
    #calendar table th {
        border: none !important;
    }
}

#calendar table td,
#calendar table th {
    aspect-ratio: 1/1;
}

#calendar .fc-row .fc-content-skeleton,
#calendar .fc-row .fc-content-skeleton * {
    height: 100%;
}

#calendar .fc-row .fc-content-skeleton>table>tbody {
    display: none;
}

#calendar .fc-row .fc-content-skeleton td span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    color: var(--textColor);
    opacity: .8;
    font-size: 16px;
}

#calendar .fc-button-group {
    display: flex;
    gap: 10px;
}

#calendar .fc-button-group button {
    padding: 0;
    aspect-ratio: 1/1;
}

#calendar button {
    border-radius: 5px;
    padding: 0px 35px;
    font-weight: 400;
    width: initial;
    text-align: center;
    transition: .3s;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    box-shadow: none;
    background: var(--primaryColor) !important;
    text-shadow: none !important;
    color: whitesmoke;
}

#calendar button span {
    text-shadow: none !important;
    color: whitesmoke;
    font-size: 11px
}

#calendar .blocked-text {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #915959;
    font-size: 12px;
}

#calendar table th span {
    font-weight: 500;
    color: var(--textColor);
    opacity: .8;
    font-size: 13px;
}

#calendar .fc-today span {
    color: whitesmoke !important;
    font-weight: 700;
    opacity: 1 !important;
}

.selected-date span {
    color: white !important;
}

#calendar .fc-clear {
    display: none;
}

#calendar .fc-toolbar.fc-header-toolbar {
    display: flex;
    justify-content: space-between;
}

#calendar .fc-view-container {
    padding: 30px;
    background-color: #0b39540a;
    border-radius: 15px;
}

#calendar .fc-day-grid-container {
    overflow: visible !important;
    height: auto !important;
}

#calendar .fc-day:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    z-index: -1;
    border-radius: 5px;
    transform: scale(.95);
}

#calendar .blocked-date:before {
    background-color: #87000033;
}

#calendar .fc-today {
    background: none !important;
}

#calendar .fc-today:before {
    background-color: var(--primaryColor);
}

.selected-date:before {
    background-color: var(--success) !important;
    color: white !important;
}

.fc-content-skeleton .blocked-date {
    padding-bottom: 20px;
}


#create .taskAddress {
    display: flex;
    flex-flow: column;
    gap: 7px;
}

#create .taskAddress li {
    display: flex;
    align-items: center;
}

#create .taskAddress li i {
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

#create .timeSelect .pack {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 16px;
}

#create .timeSelect .buttonContent {
    margin-bottom: 0px;
}

#create .timeSelect .buttonContent .button {
    width: 100%;
}

#create .cartForm {
    padding: 40px 25px;
    padding-bottom: 5px;
    margin: 0;
    margin-top: 25px;
    background-color: var(--primaryColor);
    border-radius: 15px;
    background-image: radial-gradient(#ffffff12 1px, transparent 0);
    background-size: 10px 10px;
    background-position: -19px -19px;
    position: relative;
}

#create .cartForm:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/cardFront.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#create .payEndNotes {
    background-color: #e9edef !important;
}

#create .payEndNotes article {
    color: var(--textColor);
    font-size: 15px;
    opacity: .8;
    font-weight: 400;
    font-style: italic;
    font-size: 14px
}

#create .payEndNotes ul {
    padding-left: 25px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    gap: 15px;
    color: var(--textColor);
    font-weight: 500;
    font-size: 14px;
}

#create .payEndNotes ul li {
    display: flex;
    justify-content: space-between;
}

#create .payEndNotes ul li:last-child {
    font-weight: 700;
    font-size: 16px
}

#create .button.pay {
    background-color: var(--success) !important;
}

#create .button.pay.stripe {
    background-color: #635bff !important;
}

#create .button.pay.stripe:hover {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
}


@media screen and (max-width:992px) {


    #create.step1-ok .stepBar:after {
        width: 12%;
    }

    #create.step2-ok .stepBar:after {
        width: 36%;
    }

    #create.step3-ok .stepBar:after {
        width: 62%;
    }

    #create.step4-ok .stepBar:after {
        width: 100%;
    }


    .stickyOn #create.step1-ok .stepBar .fakeProgress {
        width: 26%;
    }

    .stickyOn #create.step2-ok .stepBar .fakeProgress {
        width: 45%;
    }

    .stickyOn #create.step3-ok .stepBar .fakeProgress {
        width: 70.3%;
    }

    .stickyOn #create.step4-ok .stepBar .fakeProgress {
        width: 100%;
        border-top-right-radius: 0px;
    }

    body.stickyOn #create .stepBar ul li span .checkedBox .lottie {
        display: none;
    }

    #create .successTask {
        padding: 15px;
    }

    #create .payEndNotes ul {
        padding-left: 0px;
        border-left: 0px;
        margin-top: 25px;
    }

    #create .step[data-step="step4"],
    #create .step[data-step="step5"] {
        padding: 15px 15px;
    }

    #create .cartForm {
        padding: 15px 5px;
    }

    #create .cartForm .inputBox label {
        font-size: 13px
    }

    #create .cartForm .inputBox {
        margin-bottom: 10px;
    }

    #calendar .fc-row .fc-content-skeleton td span {
        font-size: 12px;
    }

    #calendar .fc-toolbar.fc-header-toolbar {
        flex-wrap: nowrap;
    }

    .fc-toolbar h2 {
        font-size: 15px;
        align-items: center;
        display: flex;
        height: 100%;
    }

    .fc-bg table,
    .fc-row .fc-bgevent-skeleton table,
    .fc-row .fc-highlight-skeleton table,
    .fc-basic-view .fc-body .fc-row,
        {
        height: 50px !important;
    }

    .fc-basic-view .fc-body .fc-row {
        min-height: 50px;
    }

    #calendar .fc-row .fc-content-skeleton,
    #calendar .fc-row .fc-content-skeleton * {
        height: 50px;
    }

    #calendar .blocked-text {
        font-size: 8px !important;
        line-height: 10px;
        bottom: 5px;
    }

    #create .step[data-step="step3"] {
        padding: 15px 15px !important;
    }

    #create .step[data-step="step2"] .buttonContent {
        position: sticky;
        bottom: 15px;
    }

    #calendar .fc-view-container {
        padding: 10px;
    }

    #create .stepBar {
        top: 60px;
    }

    #create .stepBar ul li span {
        font-size: 10px;
        line-height: 11px;
        width: 42px;
        display: block;
    }

    #create>.container>.row {
        margin: 0px;
    }

    #create .pano .buttonContent .button {
        width: 100%;
    }
}

/* Create Task End */
/* ========== Page: Account ========== */
#account {
    padding: 60px 0px;
    position: relative;
    z-index: 10;
}

#account aside {
    width: 90%;
}

#account .box {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 25px;
    background-color: white;
    margin-bottom: 15px;
}

#account aside .box.accountBox {
    position: relative;
}

#account aside .box.accountBox>.row>div:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--primaryColor);
}

#account aside .box.accountBox>.row>div:first-child>span {
    display: block;
    font-size: 11px;
    line-height: 11px;
    margin-top: 2px;
    color: var(--textColor);
    font-weight: 500;
    opacity: .7;
}

#account aside .box.accountBox>.row>div:last-child a {
    font-size: 16px;
    line-height: 14px;
    display: inline-flex;
    color: var(--textColor);
}

#account aside .box.accountBox>.row>div:last-child a:hover {
    color: var(--secondaryColor);
}

#account aside .box.accountBox .balance {
    position: absolute;
    background-color: var(--success);
    border-radius: 60px;
    color: Whitesmoke;
    font-weight: 600;
    font-size: 14px;
    padding: 0px 20px;
    line-height: 30px;
    left: 15px;
    top: -30px;
}

#account aside .box.accountBox .balance:after {
    content: "\e997";
    font-family: 'default' !important;
    position: absolute;
    left: calc(50% - 8px);
    bottom: -8px;
    color: var(--success);
    font-size: 16px;
    line-height: 9px;
}


#account .accountNav {
    display: flex;
    flex-flow: column;
    font-size: 15px;
    font-weight: 500;
    margin-left: -25px;
    margin-right: -25px;
}

#account .accountNav li {}

#account .accountNav li a {
    color: var(--textColor);
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 25px;
    position: relative;
}

#account .accountNav li a:after {
    font-family: 'default' !important;
    content: "\ea81";
    margin-left: auto;
    font-size: 10px;
    position: absolute;
    right: 20px;
    line-height: 24px;
    transform: translateX(-10px);
    transition: .3s;
    opacity: 0;
}

#account .accountNav li a:hover {
    color: var(--secondaryColor);
}

#account .accountNav li a:hover:after {
    transform: translateX(0);
    opacity: 1;
}

#account .accountNav li a i {
    margin-right: 7px;
    display: flex;
    align-items: center;
}

#account .accountNav li a span {
    font-weight: 600;
    color: var(--primaryColor);
    font-size: 13px;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

#account .accountNav li:last-child a {
    border-bottom: none;
}

#account .box .head {
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#account .box .head h4 {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 20px;
    line-height: 20px;
}

#account .box.pano {
    padding: 35px;
    height: calc(100% - 15px);
}

#account .box.pano .inputBox i {
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padidng-top: 0px;
    transition: .3s;
}

#account .box.pano .inputBox label {
    text-indent: 45px
}

#account .box.pano .inputBox input {
    text-indent: 20px
}

#account .box.pano .inputBox.focusOn i {
    padding-top: 10px;
    opacity: .5;
}

#account .box.pano h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--textColor);
    margin-bottom: 15px;
    margin-top: 25px;
}

#account .box.pano .tableBox {
    background-color: #0b39540a;
    padding: 25px;
    border-radius: 10px;
    color: var(--textColor);
}

#account .box.pano .tableBox a i {
    color: var(--primaryColor);
    transition: .2s;
}

#account .box.pano .tableBox a:hover i {
    color: var(--secondaryColor);
}

#account .box.pano table thead tr {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#account .box.pano table tbody tr:hover {
    background-color: #0b39541f;
}

#account .box.pano table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#account .box.pano table tbody tr:last-child {
    border-bottom: none;
}

#account .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

#account .form-check-input {
    height: 26px;
    width: 43px;
    cursor: pointer;
}

#account .form-check-input:focus {
    outline: none;
    box-shadow: none;
}




#account {}

#account .cart {
    padding: 30px;
    padding-top: 40px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    color: var(--textColor);
    position: relative;
    transition: .3s;
    margin-bottom: 25px;
}

#account .cart:hover {
    box-shadow: 0px 0px 0px 1px #bdc9d1;
    background-color: #e9edf094;
}

#account .cart .cartIcon {
    position: absolute;
    left: 30px;
    top: 20px;
    font-size: 30px;
    opacity: .15;
    color: var(--textColor);
}

#account .cart .title {
    color: var(--textColor);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

#account .cart .title h3 {
    color: var(--primaryColor);
    font-weight: 700;
    font-size: 20px;
}

#account .cart ul li:last-child {
    margin-top: 15px;
}

#account .cart ul {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

#account .cart ul i {
    margin-right: 7px;
}

#account .cart ul li:last-child article {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    opacity: .8;
}

#account .cart .cartActions {
    position: absolute;
    right: 15px;
    top: 15px;
}

#account .cart .cartActions ul {
    display: flex;
    justify-content: flex-end;
    flex-flow: row;
    width: 100%;
    font-size: 16px;
}

#account .cart .cartActions ul li {
    margin-top: 0px;
}

#account .cart .cartActions a {
    color: var(--primaryColor);
    aspect-ratio: 1/1;
    background-color: #e9edf0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 5px;
    text-align: center;
}

#account .cart .cartActions i {
    margin: initial;
    display: block;
    line-height: 0;
}

#account .balance {
    font-size: 26px;
    color: var(--success);
    font-weight: 700;
    letter-spacing: .5px;
    margin-top: 0px;
}

#account .balanceInfo {
    color: var(--textColor);
    font-size: 14px;
    margin-top: 15px;
}

#account .accountNav li:last-child {
    display: none !important;
}

@media screen and (max-width:992px) {
    .dashboard .buttonContent>.row>div>ul {
        justify-content: center !important;
    }

    .buttonContent .dashBox {
        padding: 0px !important;
        border: none !important;
        background: none !important;
    }

    .modal .modal-dialog {
        max-width: 100vw !important;
    }

    .dashboard .task_adress {
        margin: 0;
    }

    #account .accountNav li:last-child {
        display: block !important;
    }

    #account .box .head {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    #account .box .head i {
        width: initial;
        margin-top: -7px;
        margin-right: 10px;
        float: left;
        line-height: 16px;
    }

    #account .accountToggle {
        font-size: 16px
    }

    #account>.container>.row>div:first-child {
        position: fixed;
        left: 0;
        top: 0;
        width: 75%;
        height: 100%;
        background-color: whitesmoke;
        z-index: 35;
        padding-top: 110px;
        transform: translateX(-100%);
        transition: .3s;
    }

    body.accountOn #account>.container>.row>div:first-child {
        transform: translateX(0);
    }

    #account .box.pano table tr>td:first-child,
    #account .box.pano table tr>th:first-child {
        font-size: 12px;
        max-width: 90px;
    }

    #account .box.pano table tr th:not(:first-child) {
        font-size: 11px;
        text-align: right;
        width: 10%;
    }

    #account .box.pano table tr td:not(:first-child) {
        width: 10%;
    }

    #account .box.pano .tableBox {
        padding: 0px;
    }

    #account .box.pano {
        padding: 20px;
    }

    #account .box.pano table tbody tr td * {
        float: right;
    }

    #account .box.pano table {
        margin-left: -15px;
        margin-right: -15px;
        width: auto;
        background-color: white;
    }

    #account .mobileWallet {
        padding: 0px 15%;
    }


}

/* ========== Page: Account End ========== */
/* ========== Page: Register ========== */
#kayit {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100vw;
    overflow-x: clip;
}

#kayit>.row,
#kayit>.row>div {}

#kayit .box {
    position: relative;
}

@media screen and (min-width:0px) {
    #kayit .box {
        max-width: 95%;
        transform: scale(.9);
    }
}

@media screen and (min-width:768px) {
    #kayit .box {
        max-width: 95%;
    }
}

@media screen and (min-width:992px) {
    #kayit .box {
        max-width: 95%;
    }
}

@media screen and (min-width:1280px) {
    #kayit .box {
        max-width: 80%;
    }
}

@media screen and (min-width:1600px) {
    #kayit .box {
        max-width: 75%;
        transform: scale(1);
    }
}

#kayit .box:before {
    position: absolute;
    content: "";
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    left: -20px;
    top: -20px;
    z-index: 0;
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    border-radius: 30px;
    border: solid 1px rgb(11 57 84 / 17%);
}

#kayit .box .boxBody {
    border-radius: 30px;
    background-color: var(--primaryColor);
    font-size: 14px;
    position: relative;
    padding: 45px;
}

#kayit .box>* {
    z-index: 2;
}

#kayit .box article {
    font-size: 13px;
    color: whitesmoke;
}

#kayit .lottieBox>.center-h {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


#kayit form .inputBox input:-webkit-autofill {
    background-color: #e8f0fe !important;
    /* Arka plan rengi */
    background: #e8f0fe !important;
    /* Arka plan rengi */
    color: #000;
    /* Metin rengi */
    border: 1px solid #198754;
    /* Kenarlık rengi */
    transition: background-color 0.5s ease-in-out;
    /* Geçiş efekti */
}

#kayit form .inputBox input:-webkit-autofill:focus {
    background-color: #cce4ff;
    /* Odaklandığında arka plan rengi */
    color: #333;
    /* Odaklandığında metin rengi */
}

#kayit .box .signUp {
    text-align: right;
    float: right;
    margin-top: 15px;
    font-weight: 500;
}

#kayit .box .forgetToggle {
    margin-top: 15px;
    font-weight: 500;
}

#kayit .box .button {
    color: whitesmoke;
    text-decoration: none;
    margin-top: 15px;
    padding: 0px 0px;
    border-radius: var(--radius);
    line-height: 40px;
    display: inline-flex;
    white-space: nowrap;
    transition: .3s;
    position: relative;
}

#kayit .box .button:after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: whitesmoke;
    border-radius: 10px;
    opacity: .5;
    transition: .5s;
}

#kayit .box .button:hover:after {
    width: 100%;
}

#kayit .box .button i {
    margin-left: 7px;
}

#kayit .box form button {
    width: 100%;
    background-color: var(--success);
    text-decoration: none;
    padding: 0px 35px;
    border-radius: var(--radius);
    line-height: 60px;
    display: table;
    white-space: nowrap;
    color: Whitesmoke;
    margin: auto;
    transition: .3s;
    margin-top: 35px;
}

#kayit .box form button:hover {
    background-color: var(--primaryColor);
}

#kayit .box .head {
    margin-bottom: 25px;
    position: relative;
    z-index: 15;
    text-align: left;
    display: flex;
    justify-content: space-between;
    color: whitesmoke;
}

#kayit .box .head>div {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
}

#kayit .box .head>div>i {
    width: auto;
    margin-right: 15px;
    display: flex;
    color: whitesmoke;
    font-size: 26px;
    padding-top: 5px;
}

#kayit .box .head h3 {
    font-weight: 400;
    color: whitesmoke;
}

#kayit .box .head article {
    opacity: .8;
}

#kayit .box .head>h3,
#kayit .box .head>article {
    padding-left: 15px;
    padding-right: 15px;
}


#kayit .box .logo {
    margin-bottom: 25px;
    margin-left: 35px;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#kayit .box .logo img {
    height: 65px;
    width: auto;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.center-h {
    display: flex;
    align-items: center;
}

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

/* Custom Dropdown Menu */
#kayit .drop {
    position: relative;
}

#kayit .drop .sub {
    position: absolute;
    left: 0;
    top: 15px;
    height: 0px;
    overflow-y: hidden;
    transform: scaleY(0);
    transform-origin: top;
    padding: 0px 5px;
    padding-bottom: 5px;
    transition: .3s;
}

#kayit .drop:hover .sub {
    height: auto;
    transform: scaleY(1);

}

#kayit .drop .sub .sub-content {
    padding: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 10px;
    width: 120px;
    background-color: white;
    box-shadow: 1px 0px 14px -3px rgba(0, 0, 0, 0.1);
}

#kayit .language .drop .toggle img {
    border-radius: 100%;
    margin-right: 5px;
    height: 25px;
    width: 25px;
    aspect-ratio: 1/1;
}

#kayit .language .drop .toggle span {
    font-weight: 500;
    font-size: 14px;
}

#kayit .language .drop .toggle i {
    font-weight: 500;
    font-size: 12px;
}

#kayit .language .drop .toggle {
    cursor: pointer;
}

#kayit .language .drop .sub .caret {
    color: white;
    font-size: 22px;
    line-height: 15px;
    height: 22px;
    display: inline-flex;
    align-items: flex-end;
    transform: translateY(12px) translateX(45px);
}

#kayit .language .drop .sub ul li a {
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

#kayit .language .drop .sub ul li:last-child a {
    border-bottom: 0px;
}

#kayit .language .drop .sub ul li a img {
    margin-right: 7px;
    aspect-ratio: 1/1;
    height: 20px;
}

#kayit .language .drop .sub ul li a span {
    font-weight: 500;
    font-size: 14px;
}

#kayit .iti--separate-dial-code .iti__selected-flag {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

#kayit .form-check-input {
    height: 30px !important;
    width: 30px !important;
    padding: 0px !important;
    border-radius: 7px !important;
    margin-top: 0px;
}

#kayit .form-check label {
    transform: translate(0) !important;
    font-size: 14px !important;
    line-height: 30px !important;
    color: whitesmoke;
}

#kayit .form-check-input:checked[type=checkbox] {
    background-color: var(--success);
    background-size: 50%;
}

#marquee {
    width: 100%;
    padding-bottom: 20px;
}

#marquee a {
    text-decoration: none;
    color: var(--textColor);
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-right: 15px;
    opacity: .6;
    transition: .2s;
}

#marquee a:before {
    content: "";
    width: 7px;
    height: 2px;
    background-color: var(--textColor);
    opacity: .6;
    position: absolute;
    right: -9px;
    top: calc(50% - 1px);
}

#marquee a:hover {
    opacity: 1;
}

@media screen and (max-width:992px) {
    #kayit {
        display: block;
        background-color: var(--primaryColor);
        padding-top: 25px;
    }

    #kayit .box:before {
        display: none
    }

    #kayit>.row,
    #kayit>.row>div {
        justify-content: center;
        padding: 0;
    }

    .col-sm-hidden {
        display: none;
    }

    .col-sm-center-content {
        display: flex;
        justify-content: center;
    }

    #marquee {
        position: relative;
        margin-top: 35px;
    }

    #kayit .box .forgetToggle {
        margin-left: 0px;
    }

    #kayit .box .boxBody {
        padding: 25px;
        border-radius: 0;
    }

    #kayit .box form button {
        width: 100% !important;
    }

    #kayit form .inputBox input,
    #kayit form .inputBox select {
        border-radius: var(--radius);
    }

    #kayit .inputBox {
        margin-top: 15px;
    }
}

/* ========== Page: Register End ========== */
/* ========== Page:Services ========== */
#services {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

#services .head * {
    text-align: left;
}

#services .head h2 {
    color: var(--primaryColor);
}

#services .head article {
    color: var(--textColor);
}

#services .cart {
    padding: 35px;
    border-radius: 10px;
    background-color: #e9edf0;
    box-shadow: 0px 0px 0px 1px #0b395442;
    margin-bottom: 15px;
    display: block;
    transition: .3s;
}

#services .cart:hover {
    box-shadow: 0px 0px 0px 1px var(--secondaryColor);
}

#services .cart:hover .title i,
#services .cart:hover .title h4 {
    color: var(--secondaryColor);
}

#services .cart .title {
    color: var(--primaryColor);
}

#services .cart .title i {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    display: inline-block;
    transition: .3s;
}

#services .cart .title h4 {
    font-weight: 700;
    font-size: 20px;
    transition: .3s;
}

#services .cart article {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--textColor);
    font-weight: 500;
    font-size: 15px;
}

#services .cart .fakeButton {
    margin-top: 15px;
    display: inline-block;
    color: var(--primaryColor);
    transition: .3s;
}

#services .cart .fakeButton:hover {
    color: var(--secondaryColor);
}

/* ========== Page:Services End ========== */
/* ========== Page:Detail ========== */
#detail {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

#detail>.container-fluid.headBanner {
    width: 85%;
    border-radius: 30vh;
    background-image: url(../img/projects.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
}

#detail .head {
    text-align: center;
    position: relative;
    z-index: 15;
    transform: translateY(-50px);
    margin-bottom: 0px;
}

#detail .head i {
    aspect-ratio: 1/1;
    font-size: 30px;
    display: inline-block;
    width: initial;
    border-radius: 100%;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #ec93078f;
    padding: 45px;
    color: whitesmoke;
    box-shadow: 0px 0px 0px 10px white;
}

#detail .head h2 {
    color: var(--primaryColor);
    font-weight: 800;
    font-size: 30px;
}

#detail .cart {
    padding: 35px;
    border-radius: 10px;
    background-color: #e9edf0;
    box-shadow: 0px 0px 0px 1px #0b395442;
    margin-bottom: 15px;
    display: block;
    transition: .3s;
}

#detail .cart:hover {
    box-shadow: 0px 0px 0px 1px var(--secondaryColor);
}

#detail .cart:hover .title i,
#detail .cart:hover .title h4 {
    color: var(--secondaryColor);
}

#detail .cart .title {
    color: var(--primaryColor);
}

#detail .cart .title i {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    display: inline-block;
    transition: .3s;
}

#detail .cart .title h4 {
    font-weight: 700;
    font-size: 20px;
    transition: .3s;
}

#detail .cart article {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--textColor);
    font-weight: 500;
    font-size: 15px;
}

#detail .cart .fakeButton {
    margin-top: 15px;
    display: inline-block;
    color: var(--primaryColor);
    transition: .3s;
}

#detail .cart .fakeButton:hover {
    color: var(--secondaryColor);
}

#detail .owl-item {
    padding-top: 2px;
    padding-bottom: 2px;
}

#detail .owl-carousel .owl-dot span {
    height: 3px;
    width: 7px;
    margin: 2px;
    transition: .3s;
}

#detail .owl-carousel .owl-dot.active span {
    width: 20px;
    background-color: var(--primaryColor);
}

#detail .textContent {
    padding: 75px 0px;
}

#detail .textContent .title {
    color: var(--primaryColor);
    font-weight: 800;
}

#detail .textContent .title h2 {
    font-weight: 800;
}

#detail .textContent article {
    color: var(--textColor);
}

#detail .textContent article b {
    color: var(--primaryColor);
}

#detail .textContent article ul {
    display: flex;
    flex-flow: column;
    gap: 15px;
    list-style: disc;
    margin-left: 20px !important;
    margin-bottom: 25px;
}

#detail .textContent article a.button {
    margin-top: 25px;
}

#detail {}


@media screen and (max-width:992px) {
    #detail>.container-fluid.headBanner {
        width: 90%;
        padding: 0;
        height: 25vh;
    }

    #detail .textContent {
        padding: 35px 30px;
    }

    #detail .textContent>.row>div:last-child {
        margin-bottom: 35px;
    }
}

/* ========== Page:Detail End ========== */
/* ========== Page:Contact ========== */
#contact {
    padding: 60px 0px;
    padding-bottom: 0px;
    position: relative;
    z-index: 15;
}

#contact .head {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

#contact .head h2 {
    color: var(--primaryColor);
    font-weight: 800;
    margin-bottom: 0px;
}

#contact .head article {
    color: var(--textColor);
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    opacity: .8;
    width: 60%;
    display: table;
    margin: auto;
    margin-top: 0px;
}

#contact .item {
    text-align: center;
    margin-top: 35px;
}

#contact .item:nth-child(3) {
    transition: .5s;
}

#contact .item:nth-child(4) {
    transition: .8s;
}

#contact .item:nth-child(5) {
    transition: 1.1s;
}

#contact .item i {
    font-size: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 25px;
    background-color: var(--primaryColor);
    color: white;
    border-radius: 100%;
    margin-bottom: 35px;
}

#contact .item .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--textColor);
    opacity: .6;
    margin-bottom: 10px;
}

#contact .item .text {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--primaryColor);
}

#contact .content {
    margin-top: 65px;
    margin-bottom: 0px;
    background: rgb(233, 237, 240);
    background: linear-gradient(0deg, rgba(233, 237, 240, 0) 0%, rgba(233, 237, 240, 1) 100%);
    border-top-left-radius: 85px;
    border-top-right-radius: 85px;
}

#contact .content .box {
    padding: 35px;
    padding-top: 65px;
    background-color: white;
    border-radius: var(--radius);
    background-color: transparent;
}

#contact .content form {}

#contact iframe {
    border-radius: 30px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .3s;
}

#contact iframe:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

#contact .button {
    display: table;
    margin: auto;
    margin-top: 25px;
    border: none;
}

#contact .button:hover {
    background-color: var(--success);
    border-color: var(--success);
}

#contact .contactList {
    font-size: 16px;
    font-weight: 500;
}

#contact .contactList li {
    margin-bottom: 15px;
}

#contact .contactList li a {
    color: var(--textColor);
    display: flex;
    align-items: center;
    width: fit-content;
}

#contact .contactList li a i {
    margin-right: 10px;
    float: left;
    font-size: 25px;
    padding: 10px;
    border-radius: var(--radius);
    border: solid 1px;
    color: var(--primaryColor);
}

#contact .socials {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 35px;
}

#contact .socials li {
    margin-right: 5px;
}

#contact .socials li a {
    color: white;
    border-radius: var(--radius);
    border: solid 1px transparent;
    white-space: nowrap;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: .2s;
    background-color: var(--primaryColor);
}

#contact .socials li a i {
    font-size: 22px;
    padding: 15px;
}

#contact .socials li a span {
    line-height: 18px;
    display: flex;
    float: right;
    align-items: center;
}

#contact .socials li a:hover {
    color: white;
    border: solid 1px var(--secondaryColor);
    background-color: var(--secondaryColor);
}

#contact .socials li:first-child {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primaryColor);
}

#contact .inputBox input,
#contact .inputBox textarea {
    background-color: white;
}

#contact .inputBox label {
    border-radius: 30px;
    background-color: transparent;
}

@media screen and (max-width:992px) {
    #contact .button {
        padding: 0px 45px;
    }

    #contact .head {
        padding: 0px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    #contact .contactList {
        text-align: center;
        padding-top: 25px;
    }

    #contact .contactList i {
        display: none;
    }

    #contact .head article {
        font-size: 14px;
        line-height: 20px;
        padding: 0px 15px;
        width: 100%;
    }

    #contact .item {
        zoom: 73%;
    }

    #contact .content {
        margin-top: 35px;
        padding: 0px;
        padding-bottom: 15px;
    }

    #contact .content .box {
        background-color: transparent;
        box-shadow: none;
        padding: 15px;
    }

    #contact .content .box .input {
        background-color: transparent;
    }

    #contact .content form .inputBox {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #contact .socials {
        justify-content: center;
        margin-top: 15px;
    }

    #contact .socials li {
        margin-left: 0px;
        margin-right: 10px;
    }

    #contact .socials span {
        display: none !important;
    }

    #contact .socials a {
        background-color: var(--primaryColor) !important;
        color: White !important;
        border: none !important;
        aspect-ratio: 1/1;
        border-radius: 100% !important;
    }

    #contact .socials a i {
        margin: 0px !important;
    }

    #contact .contactList li a {
        display: inline-block;
    }

    #contact .item:nth-child(4) {
        display: none;
    }
}

/* ========== Page:Contact End ========== */
/* ========== Page:Corporate ========== */
#corporate {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

#corporate .head * {
    text-align: left;
}

#corporate .head h2 {
    color: var(--primaryColor);
    font-weight: 700;
    margin-bottom: 15px;
}

#corporate .head article {
    color: var(--textColor);
}

#corporate .corporateItems {
    display: flex;
    gap: 30px;
}

#corporate .corporateItems li {
    padding: 30px;
    background-color: #e9edef;
    border-radius: 10px;
}

#corporate .corporateItems li:nth-child(2) {
    transition-delay: .3s;
}

#corporate .corporateItems li:nth-child(3) {
    transition-delay: .6s;
}

#corporate .corporateItems i {
    font-size: 30px;
    color: var(--primaryColor);
}

#corporate .corporateItems .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primaryColor);
}

#corporate .corporateItems article {
    font-weight: 400;
    font-size: 15px;
    color: var(--textColor);
}

@media screen and (max-width:992px) {
    #corporate .corporateItems {
        flex-flow: column;
        gap: 15px;
    }

    #corporate .head {
        margin-bottom: 15px;
    }
}

/* ========== Page:Corporate End ========== */
/* ========== Page:Blog ========== */
#blogPage {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

#blogPage .head * {
    text-align: left;
}

#blogPage .head h2 {
    color: var(--primaryColor);
    font-size: 30px;
    font-weight: 700;
}

#blogPage .head article {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 400;
}

/* ========== Page:Blog End ========== */

/* ========== Revize / Ek ========== */
/* Custom fade-in and fade-out animations */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

#master .modal-header {
    border-bottom: none;
    text-align: center;
    font-weight: 600;
    flex-flow: column;
}

#master .modal-header h5 {
    text-align: center;
    font-weight: 700;
    width: 100%;
    color: var(--primaryColor);
    font-size: 24px;
}

#master .modal-header article {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--textColor);
    opacity: .8;
}

#master .modal-footer {
    border-top: none;
}

#master .modal-content {
    padding: 35px;
    position: relative;
    border-radius: 15px;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

#master .modal-content .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.button.master {
    background-color: var(--secondaryColor) !important;
    margin-left: 15px;
    font-weight: 600;
}

@media screen and (max-width:992px) {
    .button.master {
        margin-left: 0px !important;
        color: whitesmoke;
        position: fixed;
        bottom: 15px;
        border-radius: 5px;
    }

    header {
        transition: 0s !important;
    }

    #master .modal-content {
        padding: 15px;
    }
}

/* ========== Revize / Ek End ========== */













































.pulse {
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(11, 57, 84, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(11, 57, 84, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(11, 57, 84, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(11, 57, 84, .4);
        box-shadow: 0 0 0 0 rgba(11, 57, 84, .4)
    }

    70% {
        -moz-box-shadow: 0 0 0 15px rgba(11, 57, 84, 0);
        box-shadow: 0 0 0 15px rgba(11, 57, 84, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(11, 57, 84, 0);
        box-shadow: 0 0 0 0 rgba(11, 57, 84, 0)
    }
}



.sliding {
    opacity: 0;
    transition: 1.5s;
    position: relative;
}

.sliding.up {
    bottom: -150px;
}

.sliding.down {
    top: -150px;
}

.sliding.right {
    left: -50%;
}

.sliding.left {
    right: -50%;
}

.viewing .sliding.right {
    left: 0 !important;
}

.viewing .sliding.left {
    right: 0 !important;
}

.viewing .sliding {
    opacity: 1;
}

.viewing .sliding.up {
    bottom: 0px;
}

.viewing .sliding.down {
    top: 0px;
}


.button.stripe {
    background-color: #635bff !important;
    margin-top: 25px;
    margin-bottom: 15px;
}

.stripe img {
    filter: brightness(0) invert(1);
    height: 30px;
}



/*  ===== Master Style =====  */
.masterUl {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 65px;
    max-width: 75%;
    position: relative;
    z-index: 15;
}

.masterUl a.button {
    line-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primaryColor) !important;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: normal !important;
    box-shadow: none !important;
    border: none !important;
}

.masterUl a.button:hover {
    background-color: var(--primaryColor) !important;
    color: white !important;
}

.masterUl article {
    display: flex;
    align-items: center;
    padding-right: 35px;
    color: var(--textColor);
}

.master .masterUl,
.master .box {
    max-width: 100% !important;
}

header .masterButton {
    background-color: var(--secondaryColor) !important;
    color: whitesmoke !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    transition: .3s;
    margin-left: 15px;
}

header .masterButton i {
    line-height: 0 !important;
    aspect-ratio: auto !important;
}

header .masterButton.button:hover {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

/* ========== Panel ========== */
#account.master>.container-fluid {
    padding: 0px;
}

#account.master aside {
    background-color: #0b3954e0;
    left: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0px 0px 20px 0px rgb(11 57 84 / 42%);
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    position: sticky;
    top: 120px;
}

#account.master aside:after {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    left: 0;
    color: #0b3954e0;
    font-size: 20px;
    line-height: 20px;
    bottom: -19px;
}

#account.master aside .box {
    background-color: transparent;
    box-shadow: none !important;
    color: Whitesmoke;
}

#account.master aside .accountBox {
    background-color: whitesmoke;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
    position: relative;
}

#account.master aside .accountBox:after {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    left: 0;
    color: whitesmoke;
    font-size: 20px;
    line-height: 20px;
    bottom: -19px;
}

#account.master .accountNav li a {
    color: whitesmoke;
    border-bottom-color: rgba(255, 255, 255, .1);
    white-space: nowrap;
}

#account.master .accountNav li a:hover {
    color: var(--secondaryColor);
}

#account.master .accountNav li a span {
    color: white;
    opacity: .7;
}

#account.master .box.pano {
    margin-right: 7%;
}

#account.master .box.pano.dashboard {
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0px;
}

@media screen and (max-width:1600px) {
    .dashboard.wallet .dashBox .info.t-right {
        margin-top: -85px !important;
    }

    .dashboard.wallet .dashBox .buttonContent {
        margin-bottom: 45px;
    }

    #account.master .box.pano.dashboard>.row:not(.rowFlex)>div {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .dashboard .tableBox {
        max-height: max-content !important;
    }

    .dashboard .customerMessages {
        margin-top: 0px !important;
    }
}

.dashboard .dashList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 10px;
}

.dashboard .dashList>li:first-child {
    grid-column: span 2;
}

.dashboard .dashList>li:first-child .title {
    margin-left: 10px;
}

.dashboard .dashList>li:first-child .title:hover {
    background-color: transparent;
}

.dashboard .dashList>li:first-child article {
    color: var(--textColor);
}

.dashboard .dashList .dashBox {
    border-radius: 10px;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, 0.15);
    position: relative;
    background-image: url(../img/cardPattern.svg);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.dashboard .dashList .dashBox .title {
    display: flex;
    width: 100%;
    min-width: 100%;
    color: var(--primaryColor);
    padding: 35px;
    transition: .2s;
}

.dashboard .state {
    font-weight: 700;
    display: flex;
    gap: 5px;
    align-items: center;
}

.dashboard .status b {
    color: var(--success);
}

.dashboard .state.negative {
    color: darkred;
}

.dashboard .dashList .dashBox .title:hover {
    background-color: #0b395412;
}

.dashboard .dashList .dashBox .fakeButton {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: var(--primaryColor);
}

.dashboard .dashList .dashBox .fakeButton i {
    border-radius: 100%;
    padding: 10px;
    transition: .2s;
}

.dashboard .dashList .dashBox:hover .fakeButton i {
    background-color: var(--primaryColor);
    color: White;
}

.dashboard .dashList .dashBox:hover .fakeButton i:hover {
    background-color: var(--secondaryColor);
}

.dashboard .dashList .dashBox .title>i {
    font-size: 26px;
    line-height: 26px;
    color: var(--textColor);
    opacity: .2;
    position: absolute;
    left: 10px;
    top: 10px;
}

.dashboard .dashList .dashBox .title>.contentFlex {
    padding-left: 15px;
    width: 100%;
}

.dashboard .dashList .dashBox .title>.contentFlex>h5 {
    font-weight: 800;
    color: var(--textColor) !important;
    font-size: 13px !important;
    line-height: 13px;
    text-transform: uppercase;
    margin-top: 5px !important;
    opacity: .8;
    margin-bottom: 0px !important;
}

.dashboard .dashList .dashBox .title>.contentFlex>h2 {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 32px;
    line-height: 32px;
}

.dashboard .dashList .dashBox .title>.contentFlex>h2.money {
    color: var(--success);
}

.dashboard .tableBox {
    background-color: white !important;
    background-image: url(../img/cardPattern.svg);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    border: solid 1px rgba(0, 0, 0, 0.15);
    min-height: 100%;
    max-height: 30vh;
    overflow-y: auto;
}

.dashboard .tableBox table {
    font-size: 15px;
}

.dashboard .tableBox table tbody tr:nth-child(odd) {
    background-color: #0b395412;
}

.dashboard .tableBox table td span {
    width: 100%;
    display: block;
}

.dashboard .tableBox table td b {
    white-space: nowrap;
}

.dashboard .tableBox table tbody td:nth-child(2) {
    font-weight: 600;
}

.dashboard .tableBox table tbody td:nth-child(4) {
    white-space: nowrap;
    color: var(--success);
    font-weight: 600;
}

.dashboard .tableBox table tbody td:last-child {
    text-align: right;
}

.dashboard .tableBox table tbody td:last-child i.success {
    color: var(--success);
}

.dashboard .tableBox table thead th {
    color: var(--primaryColor);
}

.dashboard .tableBox>.title {
    color: var(--primaryColor);
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.dashboard .tableBox>.title a {
    margin-left: auto;
    color: var(--primaryColor);
    transition: .2s;
}

.dashboard .tableBox>.title a:hover {
    color: var(--secondaryColor);
}

.rate {
    display: flex !important;
    flex-flow: row !important;
    font-size: 20px;
}

.rate li {
    color: var(--textColor);
    opacity: .2;
}

.rate li.active {
    color: #ffb722;
    opacity: 1;
}

.dashBox .row {
    width: 100%;
}

.dashBox .row>div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dashBox .row>div:first-child {
    color: var(--primaryColor);
}

.dashBox .row>div:last-child {
    text-align: right;
    justify-content: flex-end;
}

.dashBox .row>div>div {
    display: block;
    width: 100%;
}

.dashboard .customerMessages {
    margin-top: 25px;
}

.dashboard .customerMessages .tableBox {
    background-color: #0b395412 !important;
}

.dashboard .customerMessages .tableBox table tr td:nth-last-child(2) {
    color: var(--textColor);
    width: 35vw;
    max-width: 35vw;
}

.dashboard .customerMessages .tableBox table tr td:nth-last-child(2) article {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dashboard .customerMessages .tableBox a {
    color: var(--textColor);
}

.dashboard .customerMessages .tableBox a i {
    font-size: 20px;
}

.dashboard .pendingTasks .tableBox table tr td:last-child,
.dashboard .pendingTasks .tableBox table tr th:last-child {
    text-align: right;
}

.dashboard .pendingTasks .tableBox table tr td:nth-child(4) {
    color: var(--textColor);
}

.dashboard .pendingTasks .tableBox table tr td:nth-child(5) {
    color: var(--success);
    font-weight: 700;
}

.dashboard .pendingTasks .tableBox {
    overflow: visible;
    max-height: initial !important;
}

.dashboard .pendingTasks .tableBox a {
    color: var(--primaryColor);
    transition: .2s;
}

.dashboard .pendingTasks .tableBox a:hover {
    color: var(--secondaryColor);
}

.dashboard .task_adress {}

.dashboard .task_adress.complate .dashBox {
    background-color: #e8fce8;
}

.dashboard .task_adress.decline .dashBox {
    background-color: #ffd2d2;
}

.dashboard .task_adress .buttonContent {
    margin-top: 25px;
}

.dashboard .task_adress iframe {
    aspect-ratio: 1/1;
    border-radius: 15px;
    box-shadow: 0px 0px 35px -15px rgba(0, 0, 0, 0.5);
}

.dashboard .task_adress .task_customer {
    text-align: right;
    font-weight: 500;
    color: var(--textColor);
    display: flex;
    flex-flow: column;
    gap: 7px;
}

.dashboard .task_adress .task_customer i {
    margin-left: 10px;
    margin-top: 4px;
}

.dashboard .task_adress .task_customer li {
    opacity: .8;
    display: flex;
    justify-content: flex-end;
}

.dashboard .task_adress .task_customer li:first-child {
    color: var(--primaryColor);
    font-weight: 800;
    margin-bottom: 7px;
}

.dashboard .task_adress .row.dashList>div {
    padding: 35px;
    position: relative;
}

.dashboard .task_adress .row.dashList>div .price {
    font-size: 16px;
    font-weight: 600;
    color: whitesmoke;
    margin-bottom: 10px !important;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--success);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 20px;
}

.dashboard .task_adress .row.dashList>div .price:before {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    color: var(--success);
    font-size: 27px;
    line-height: 27px;
    left: -26px;
    top: 0;
    transform: rotate(90deg);
}

.dashboard .task_adress .row.dashList>div ul b {
    font-weight: 600;
    width: 100%;
    display: block;
}

.dashboard .task_adress .row.dashList>div.full_row {
    grid-column: span 2;
}

.dashboard .task_adress .row.dashList>div.full_row .title {
    padding: 0px;
    font-weight: 700;
    color: var(--primaryColor);
}

.dashboard .task_adress .row.dashList>div.full_row article {
    color: var(--textColor);
    font-size: 14px;
    opacity: .8;
    max-width: 75%;
}

.dashboard .buttonContent>.row>div>ul {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard .buttonContent>.row>div>ul .button {
    border-radius: 5px;
}

.dashboard .buttonContent>.row>div>ul .button i {
    font-size: 12px !important;
    margin-left: 7px;
}

.dashboard .buttonContent>.row>div>ul .active {
    background-color: var(--success);
}

.dashboard .buttonContent>.row>div>ul .decline {
    background-color: darkred;
}

.dashboard .comment-rate {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
}

.dashboard .comment-rate .rate-box .in-title {
    text-align: right;
    font-weight: 500;
    color: var(--textColor);
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 7px;
}

.dashboard .comment-rate .rate-box .score {
    font-weight: 700;
    color: var(--primaryColor);
    text-align: right;
}

.dashboard .comment-rate article b {
    display: block;
    margin-top: 15px;
    margin-bottom: 7px;
}

.dashboard .gallery {
    margin-top: 25px;
}

.dashboard .gallery .title {
    font-weight: 600;
    color: var(--primaryColor);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dashboard .gallery .title i {
    line-height: 0;
}

.dashboard .gallery ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.dashboard .gallery ul li img {
    border-radius: 5px;
}



.modal .modal-content {
    padding: 35px;
    border-radius: 15px;
}

.modal .modal-header {
    border: none;
    text-align: center;
    position: relative;
}

.modalmodal-header .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
}

.modal .modal-header .modal-title {
    text-align: center;
    width: 100%;
    font-weight: 700;
    color: var(--primaryColor);
}

.modal .modal-body article {
    text-align: center;
    color: var(--textColor);
    margin-bottom: 25px;
}

.modal .modal-footer {
    display: flex;
    justify-content: center;
    padding-top: 25px;
    margin-top: 25px;
}

.modal .modal-footer .button {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.modal .modal-footer .button.success {
    background-color: var(--success);
}

.modal .modal-footer .button i {
    font-size: 14px
}

.modal .modal-dialog {
    max-width: 40vw;
}


#uploadImg {
    position: fixed;
    right: 0;
    top: 0;
    width: 30vw;
    height: 100vh;
    background-color: white;
    z-index: 100;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
    transition: .3s;
    transform: translateX(100%);
}

body.uploadPhotoOn #uploadImg {
    transform: translateX(0);
}

#uploadImg .box {
    padding: 35px;
}

#uploadImg .box .head {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 45px;
}

#uploadImg .box .head h2 {
    text-align: left;
    font-weight: 800;
    color: var(--primaryColor);
    font-size: 18px;
    margin: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

#uploadImg .box .head h2 i {
    line-height: 0;
    width: initial;
    font-size: 22px;
}

#uploadImg .box .head article {
    color: var(--textColor);
    font-size: 14px;
    opacity: .8;
    margin-top: 7px;
}


.dropzone {
    border: 2px dashed #0b39546b;
    border-radius: 5px;
    background: white;
    padding: 20px;
    text-align: left;
    color: var(--primaryColor);
    cursor: pointer;
    transition: .3s;
    background-color: #1974aa14;
}

.dropzone.dz-drag-hover {
    border: 2px dashed var(--primaryColor);
}

.dropzone .dz-message {
    margin: 2em 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.dropzone .dz-preview {
    display: inline-block;
    width: 110px;
    /* Önizleme genişliği */
    margin: 5px;
    /* Resimler arası boşluk */
    padding: 7px;
    background-color: #0b39540f;
    border-radius: 10px;
    position: relative;
}

.dropzone .dz-preview .dz-image {
    width: 100%;
    /* Resim genişliği */
    height: auto;
    /* Resim yüksekliği */
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.dropzone .dz-preview .dz-image:before {
    content: "";
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(11, 57, 84);
    background: linear-gradient(0deg, rgba(11, 57, 84, 1) 0%, rgba(11, 57, 84, 0) 100%);
    border-radius: 5px;
    position: absolute;
    opacity: .7;
    transition: .2s
}

.dropzone .dz-preview:hover .dz-image:before {
    opacity: 1;
    height: 100%;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kırpmadan sığdır */
}

/* Kaldırma bağlantısını stilize et */
.dropzone .dz-preview .dz-remove {
    display: block;
    text-align: center;
    margin-top: 5px;
    color: #ff0000;
    text-decoration: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-details {
    font-size: 13px;
    color: var(--textColor);
    line-height: 15px;
    margin-bottom: 10px;
    max-width: 100%;
}

.dropzone .dz-size {
    font-size: 12px;
    color: var(--primaryColor);
    line-height: 14px;
    font-weight: 600;
    margin-top: 7px;
    width: 100%;
}

.dropzone .dz-error-message {
    font-size: 12px;
    font-weight: 400;
    color: darkred;
    opacity: .8;
}

.dropzone .dz-success-mark,
.dropzone .dz-error-mark {
    float: left;
    width: 50%;
}

.dropzone .dz-success-mark {
    text-align: right;
    padding-right: 5px;
    left: 0;
}

.dropzone .dz-error-mark {
    text-align: left;
    padding-left: 5px;
    right: 0;
}

.dropzone .dz-success-mark,
.dropzone .dz-error-mark {
    position: absolute;
    top: 52px;
    z-index: 5;
}

.dropzone .dz-success-mark svg,
.dropzone .dz-error-mark svg {
    width: 25px;
    aspect-ratio: 1/1;
    opacity: .7;
    transition: .2s;
}

.dropzone .dz-success-mark svg:hover,
.dropzone .dz-error-mark svg:hover {
    opacity: 1;
}

.dropzone .dz-error-mark g {
    fill: white;
    /* Dolgu rengini kırmızı yap */
    stroke: white;
    /* Çizgi rengini mavi yap */
    stroke-opacity: 1;
    /* Çizgi opaklığını artır */
}

.dropzone .dz-success-mark path {
    fill: white;
    /* Dolgu rengini kırmızı yap */
    stroke: white;
    /* Çizgi rengini mavi yap */
    stroke-opacity: 1;
    /* Çizgi opaklığını artır */
}

#uploadImg .buttonContent {
    margin-top: 45px !important;
}

#uploadImg .buttonContent ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

#uploadImg .buttonContent ul .button {
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#uploadImg .buttonContent ul .button i {
    line-height: 0;
}

#uploadImg .buttonContent ul .button.success {
    background-color: var(--success);
}

#uploadImg .buttonContent ul .button.cancel {
    background-color: darkred;
}

#uploadImg .buttonContent ul .button.cancel i {
    transform: rotate(180deg);
}


.dashboard.wallet {}

.dashboard.wallet .dashBox {
    padding: 35px;
}

.dashboard.wallet .full_row {
    grid-column: span 2;
}

.dashboard.wallet .dashBox .balance {
    text-align: center;
}

.dashboard.wallet .dashBox .info {
    text-align: center;
    color: var(--textColor);
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    opacity: .8;
}

.dashboard.wallet .dashBox .title {
    font-weight: 700;
    padding: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dashboard.wallet .dashBox .title i {
    position: static;
    opacity: 1;
    color: var(--primaryColor);
}

.dashboard.wallet .dashBox .row>div {
    color: var(--textColor);
    text-align: left;
    padding: 25px 15px;
}

.dashboard.wallet .dashBox .buttonContent {
    margin-top: 25px;
}

.dashboard.wallet .dashBox .buttonContent .button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min-content;
}

.dashboard.wallet .dashBox .buttonContent .button:hover {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
}

.dashboard.wallet .dashBox .buttonContent .button i {
    line-height: 0;
    font-size: 12px;
}

.dashboard.wallet .dashBox .price {
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.dashboard.wallet .dashBox .price span {
    margin-right: 10px;
}

.dashboard.wallet .dashBox .box {
    margin-bottom: auto !important;
    position: relative;
    overflow: hidden;
}

.dashboard.wallet .dashBox .box .info {
    color: White;
}

.dashboard.wallet .dashBox .box:before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(54deg, deepskyblue, #61b111, #00bfff);
    background-size: 180% 180%;
    animation: gradient-animation 5s ease infinite;
    z-index: 0;

}

.dashboard .entitlement {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 7px 15px;
    display: flex;
    justify-content: flex-end;
    background: rgb(11, 57, 84);
    background: linear-gradient(270deg, rgba(11, 57, 84, 1) 0%, rgba(11, 57, 84, 0) 100%);
}

.dashboard .entitlement a {
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: .8;
}

.dashboard .entitlement a:hover {
    opacity: 1;
}


/* ===== Profile Photo Upload =====  */
.profilePhoto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    margin-top: 15px;
    position: relative;
}

.profilePhoto:before {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px dashed #aaa;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    animation: rotateAnimation 20s linear infinite;
}


.profilePhoto:hover:before,
.profilePhoto.hover:before {
    border-color: #007bff;
    color: #007bff;
}

/* Görsel yüklendiğinde border değişecek */
.profilePhoto.uploaded:before {
    border: 2px solid var(--success);
    color: transparent;
    animation: none;
    /* Metni gizler */
}

input[type="file"] {
    display: none;
}

article.info {
    font-size: 12px;
    color: var(--textColor);
    opacity: .8;
    font-weight: 500;
}

/* ===== Profile Photo Upload End =====  */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.dashboard.wallet .dashBox .info.t-right {
    text-align: right;
    color: var(--textColor) !important;
    line-height: 18px;
    margin-top: 15px;
    font-weight: 500;
    opacity: .7 !important;
}

.row.profileRow>div {
    margin-bottom: 25px;
}

select#skils {
    min-height: 300px;
    color: var(--textColor);
}

select#skils option {
    padding: 5px 0px;
    text-indent: 15px
}

#skils optgroup {
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

#skillList li {
    list-style-type: none;
}

#skillList li .label {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 13px;
    background-color: #0b395421;
    box-shadow: 0px 0px 0px 1px rgb(11 57 84 / 41%);
    border-radius: 5px;
    color: var(--textColor);
    display: flex;
    gap: 7px;
    white-space: nowrap;
    flex-wrap: nowrap;
    cursor: pointer;
    transition: .2s;
}

#skillList li .label:hover {
    background-color: #8b00003d;
    box-shadow: 0px 0px 0px 1px #cb9090;
}

#skils option:checked {
    background-color: #dcdcdc;
    /* Seçilen option'un arka planını değiştirebiliriz */
}

#skillList {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

ul#pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul#pricing li .box {
    padding: 20px !important;
    background-color: #0b39530a !important;
    margin-bottom: 0px;
}

ul#pricing li .box .row>div:first-child {
    padding-right: 5px !important;
}

ul#pricing li .box .row>div:last-child {
    padding-left: 5px !important;
}

ul#pricing li .title {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 25px;
}

ul#pricing li .box input,
ul#pricing li .box select {
    background-color: white !important;
}

ul#pricing input[type="number"]::-webkit-outer-spin-button,
ul#pricing input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.row.current {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.row.current .item {}

.row.current .item .box {
    padding: 15px !important;
    background-color: whitesmoke !important;
}

.row.current .item img {
    border-radius: 7px;
    width: 100%;
    height: auto;
}

.row.current .item .name {
    margin-top: 15px;
    font-weight: 800;
    color: var(--primaryColor);
    font-size: 16px;
}

.row.current .item .description {
    margin-top: 10px;
}

.row.current .item .description article {
    color: var(--textColor);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Maksimum 3 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row.current .item .buttons {
    margin-top: 25px;
    margin-bottom: 25px;
}

@media screen and (min-width:992px) {
    .accountToggle {
        display: none !important;
    }
}


.date-span {
    padding: 5px 9px;
    display: inline-block;
    border-radius: 7px;
    background-color: #e9edef;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 12px;
    margin: 0px 5px 5px 0px;
    white-space: nowrap;
}

/* ========== Master Selection  ========== */
#calendar {
    transform-origin: top left;
    transition: .3s;
    position: relative;
    z-index: 15;

}

#calendar:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 0px 0px var(--primaryColor);
    border-radius: 15px;
    z-index: -1;
    background-color: transparent;
    transition: 1s;
}

#calendar.flashOn:before {
    box-shadow: 0px 0px 0px 10px #61b11196;
    transform: scale(1.03);
}

.calendar-min {
    transition: .3s;
    position: relative;
}

.calendar-min .title {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 14px;
    margin-bottom: 5px;
}

.calendar-min .dateMin {
    position: absolute;
    width: calc(100% - 100px);
    height: 100%;
    right: 0;
    top: 0;
    padding: 15px;
    opacity: 0;
    animation-delay: 0s;
    padding-right:70px;
}
#datesMax {
    display: flex;
    overflow-x: auto;
}
.calendar-min .dateMin:after {
    position: absolute;
    right: 23px;
    top: 34px;
    font-family: uicons-regular-rounded !important;
    content: "\eb81";
    font-size: 22px;
    z-index: 5;
    opacity: .5;
    transition: .3s;
}

.calendar-min .dateMin:hover:after {
    opacity: 1;
    color: var(--secondaryColor);
}

/* Master On >  */
.calendar-master.masterOn #calendar {
    transform: scale(.1);
    margin-top: 0;
    pointer-events: none;
}

.calendar-master.masterOn .calendar-min {
    height: 100px;
    width: 100%;
    padding: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-top: 17px;
    cursor: pointer;
    transition: .3s;
}

@media screen and (max-width:992px) {
    .calendar-master.masterOn .calendar-min {
        height: 130px;
    }

    .calendar-master.masterOn #calendar {
        transform: scale(.2);
    }
}

.calendar-master.masterOn .calendar-min:hover {
    background-color: #d6e0e7b8;
}

.calendar-master.masterOn .calendar-min .dateMin {
    animation: fadeIn 0.3s ease forwards;
    animation-delay: 0.3s;
}







/* Master List */

#masterList {
    margin-top: 15px;
    opacity: 0;
    transition: none;
    height: 0;
    pointer-events: none;
}

.masterOn #masterList {
    height: auto;
    pointer-events: auto;
    animation: fadeIn 0.3s ease forwards;
    animation-delay: 0.3s;
}

#masterList>ul {
    display: flex;
    flex-flow: column;
    gap: 15px;
}

#masterList>ul>li {
    padding: 25px;
    border-radius: 15px 25px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

#masterList>ul>li:hover {
    background-color: #d6e0e7b8;
}

#masterList>ul>li>.row {
    position: relative;
}

#masterList>ul>li>.row .visual,
#profileModal .visual {
    position: relative;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: ghostwhite;
    overflow: hidden;
    width: 85%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: table;
    margin: auto;
}

#masterList>ul>li>.row .buttonArea {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

#masterList>ul>li>.row .buttonArea .button {
    line-height: 50px;
}

#masterList>ul>li>.row article {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    color: var(--textColor);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 15px;
    opacity: .8;
}

#masterList>ul>li>.row .name,
#profileModal .name {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 25px;
    line-height: 22px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

#masterList>ul>li>.row .name {
    margin-top: 15px;
}

#masterList>ul>li>.row .name .nameText,
#profileModal .name .nameText {
    display: flex;
    flex-flow: column;
    text-align: left;
}

#masterList>ul>li>.row .name .nameText .regions,
#profileModal .name .nameText .regions {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500;
    color: var(--textColor);
    opacity: .8;
}

#masterList>ul>li>.row .name .price,
#profileModal .name .price {
    font-weight: 800;
    color: var(--success);
    font-size: 22px;
}

#masterList>ul>li>.row .name .price b,
#profileModal .name .price b {
    display: block;
    text-align: center;
    background-color: rgb(236, 247, 239);
    color: rgb(43, 76, 50);
    font-size: 11px;
    border-radius: 5px;
    white-space: nowrap;
    font-weight: 600;
    padding: 4px 6px;
    letter-spacing: .3px;
    margin-top: 5px;
    text-transform: uppercase;

}

#masterList>ul>li>.row .rateContent>div:first-child,
#profileModal .rateContent>div:first-child {
    font-weight: 600;
    font-size: 16px;
    color: var(--textColor);
    text-align: left;
}

#masterList>ul>li>.row .rateContent>div.taskCount,
#profileModal .rateContent>div.taskCount {
    font-weight: 600;
    font-size: 14px;
    color: var(--primaryColor);
    opacity: .8;
    text-align: left;
}

#masterList>ul>li>.row .summary,
#profileModal .summary {
    margin-top: 15px;
}

#masterList>ul>li>.row .summary article,
#profileModal .summary article {
    text-align: left;
    font-size: 15px;
    padding: 25px;
    background-color: #f5f7f8;
    border-radius: 15px;
    opacity: 1;
    font-weight: 400;
}

#masterList>ul>li>.row .summary article b,
#profileModal .summary article b {
    font-weight: 600;
    font-size: 18px;
    color: var(--primaryColor);
}

#masterList>ul>li>.row .summary article a {
    font-weight: 500;
    font-size: 15px;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    transition: .3s;
}

#masterList>ul>li>.row .summary article a:hover {
    color: var(--secondaryColor);
}

#masterList>ul>li>.row .summary article a i {
    line-height: 0;
    margin-left: 10px;
}

#masterList>ul>li>.row .summary article p:first-child {
    opacity: 1 !important;
}

#masterList>ul>li>.row .summary article p:not(:last-child) {
    opacity: .8;
}

#masterList>ul>li>.row .customerComments,
#profileModal .customerComments {
    margin-top: 20px;
    padding-top: 20px;
    /* background-color: ghostwhite; */
    padding-bottom: 10px;
    /* border-radius: 15px; */
    width: calc(100% - 20px);
    margin-left: 10px;
    border-top: dashed 1px rgba(0, 0, 0, 0.1);
}

#masterList>ul>li>.row .customerComments ul,
#profileModal .customerComments ul {
    display: inline-flex;
    flex-flow: column;
}

#masterList>ul>li>.row .customerComments ul li,
#profileModal .customerComments ul li {
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#masterList>ul>li>.row .customerComments ul li:last-child,
#profileModal .customerComments ul li:last-child {
    border-bottom: none;
}

#masterList>ul>li>.row .customerComments .customerVisual,
#profileModal .customerComments .customerVisual {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90%;
    background-color: ghostwhite;
    display: table;
    margin: auto;
}

#masterList>ul>li>.row .customerComments .customerName,
#profileModal .customerComments .customerName {
    color: var(--textColor);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 7px;
}

#masterList>ul>li>.row .customerComments .customerName>span,
#profileModal .customerComments .customerName>span {
    color: var(--textColor);
    font-weight: 400;
    font-size: 14px;
    opacity: .8;
}

#masterList>ul>li>.row .customerComments .customerComment,
#profileModal .customerComments .customerComment {
    color: var(--textColor);
    font-weight: 400;
    font-size: 14px;
    opacity: .8;
}

span[data-text="master"] {
    font-weight: 700;
    color: var(--primaryColor);
}

/* Master List End */
/* Profile Modal */
#profileModal {}

#profileModal .modal-header>.row {
    width: 100%;
}

#profileModal .name {
    margin-bottom: 0px;
}


#profileModal .refferenceGallery {
    margin-top: 15px;
}

#profileModal .refferenceGallery .title {
    font-weight: 600;
    color: var(--primaryColor);
    font-size: 18px;
    margin-bottom: 15px;
}

#profileModal .refferenceGallery .gallery {
    overflow-x: auto;
    padding: 3px;
    padding-bottom: 10px;
}

#profileModal .refferenceGallery .gallery ul {
    display: flex;
    flex-flow: row;
    gap: 15px;
}

#profileModal .refferenceGallery .gallery ul a {
    height: 100px;
    aspect-ratio: 1/1;
    width: 100px;
    border-radius: 5px;
    display: flex;
    transition: .3s;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#profileModal .refferenceGallery .gallery ul a:hover {
    box-shadow: 0px 0px 0px 2px var(--primaryColor);
}

#profileModal .customerComments .customerName .rate {
    margin-left: auto;
    font-size: 16px !important;
    margin-top: 7px;
}

#profileModal .customerComments .customerName .rate li {
    padding: 0px !important;
    border: none !important;
}

/* Profile Modal End */

.pagination {}

.pagination ul {
    display: flex !important;
    justify-content: center;
    flex-flow: row !important;
    gap: 15px;
    width: 100%;
}

.pagination ul li {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: none !important;
}

.pagination ul li a {
    width: 34px;
    height: 34px;
    background-color: ghostwhite;
    font-weight: 600;
    font-size: 14px;
    color: var(--textColor);
    aspect-ratio: 1/1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    ;
}

.pagination ul li a:hover {
    background-color: var(--secondaryColor);
    color: whitesmoke;
}

.pagination ul li a.active {
    background-color: var(--primaryColor);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.sl-wrapper {
    z-index: 99999999999 !important;
}

.sl-overlay {
    z-index: 99999999 !important;
    backdrop-filter: blur(9px) !important;
    -webkit-backdrop-filter: blur(9px) !important;
    background-color: #7295a79c !important;
    opacity: 1 !important;
}

/* ========== Master Selection End  ========== */
















@media screen and (max-width:992px) {
    .modal .modal-content {
        padding:15px;
    }
    #profileModal .visual {
        margin-bottom: 25px;
    }
    .dashBox .row>div:last-child {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .wallet .row.rowFlex {
        gap: 15px;
        margin-top: 8px !important;
    }

    .dashboard.wallet .dashBox .buttonContent {
        margin-bottom: 0px;
    }

    .dashboard.wallet .dashBox .info.t-right {
        margin-top: 15px !important;
        margin-bottom: 15px;
    }

    #account .box.pano .tableBox {
        overflow-x: auto;
    }

    .button.addButton {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    ul#pricing li .box .row>div:first-child,
    ul#pricing li .box .row>div:last-child {
        width: 100% !important;
        padding-right: calc(var(--bs-gutter-x) / 2) !important;
        padding-left: calc(var(--bs-gutter-x) / 2) !important;
    }

    ul#pricing li .box .row>div:first-child .inputBox {
        margin-bottom: 0px;
    }

    ul#pricing li .box .row>div:last-child .inputBox {
        margin-bottom: 0px;
    }

    ul#pricing li .box .row>div:first-child .inputBox select {
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    ul#pricing li .box .row>div:last-child .inputBox input {
        border-top-left-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    #pricing li .box .row {
        margin-right: calc(var(--bs-gutter-x) / -2) !important;
        margin-left: calc(var(--bs-gutter-x) / -2) !important;
    }

    ul#pricing li .box {
        padding: 15px !important;
    }

    #account .box {
        width: 100% !important;
    }

    .row.profileRow>div {
        padding-left: 0px;
        padding-right: 0px;
    }

    .mobilePadding .box.pano>form .row {
        margin: 0px;
    }

    .mobilePadding .box.pano {
        margin-right: 0px !important;
    }

    aside.asideOn .accountNav li a span {
        display: block !important;
        margin-left: 10px !important;
        margin-right: 0px;
    }

    #account.master aside.asideOn {
        width: 55%;
    }

    #account .accountNav li:last-child {
        position: absolute;
        bottom: 0px;
        width: 100%;
        background-color: rgb(0 0 0 / 20%);
        border-radius: 75px;
        transform: scale(.7);
        aspect-ratio: 1 / 1;
        height: 47px;
        width: 47px;
        padding: 0 !important;
    }

    #account .accountNav li:last-child i {
        transition: .3s;
        margin: 0px !important;
    }

    aside.asideOn .accountNav li:last-child i {
        transform: rotate(-180deg);
    }

    #account .accountNav li a:hover:after {
        display: none;
    }

    aside.asideOn .accountNav li:last-child a {
        justify-content: center !important;
    }


    #account.master aside .accountBox:after {
        bottom: -20px !important;
    }

    .accountNav li a span {
        display: none !important;
    }

    .mobilePadding {
        padding-left: 55px !important;
        padding-top: 28px;
    }

    #account .box.pano table tbody tr td * {
        float: none;
    }

    #account .box.pano table {
        margin: 0px;
    }

    #account .box.pano table tr>td:first-child,
    #account .box.pano table tr>th:first-child {
        max-width: 100%;
    }

    tbody,
    td,
    tfoot,
    th,
    thead,
    tr {
        border-color: #80808026;
        border-style: solid;
        border-width: 1px;
    }

    #account .box.pano table tr td:not(:first-child) {
        white-space: nowrap;
    }

    .dashboard .tableBox>.title {
        padding: 10px 15px;
    }

    .dashboard .dashList .dashBox .title>i {
        right: 10px;
        left: initial;
    }

    .dashboard .dashList .dashBox .title {
        padding: 25px;
    }

    .dashboard .dashList .dashBox .title>.contentFlex {
        padding-left: 0px;
    }

    .dashboard .dashList .dashBox .title>.contentFlex>h2 {
        font-size: 22px;
        line-height: 26px;
        height: 50px;
    }

    .dashboard .dashList {
        zoom: 92%;
    }

    .dashboard .dashList>li:first-child .title {
        margin-left: 0px;
    }

    #account.master .box.pano.dashboard {
        padding: 0px !important;
        margin: 0px !important;
        padding-top: 10px !important;
    }

    #account.master .box.pano.dashboard>.row {
        margin: 0px;
    }

    #account aside .box.accountBox .balance:after {
        display: none !important;
    }

    #account aside .box.accountBox .balance {
        right: 65px;
        top: 30px;
        left: initial !important;
    }

    #account.master aside .accountBox {
        border-top-right-radius: 0px;
        min-width: 97vw;
        padding: 25px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #account.master aside {
        position: fixed;
        z-index: 15;
        height: calc(100vh - 60px);
        top: 60px;
        border-radius: 0;
        width: 47px;
        transition: .3s;
    }

    aside.asideOn .accountNav li a {
        justify-content: flex-start !important;
    }

    aside.asideOn .accountNav li a i {
        margin-left: 15px;
    }

    #account .accountNav li a {
        padding: 12px 10px !important;
        justify-content: center;
    }

    #account .accountNav li a i {
        margin-right: 0px;
        font-size: 19px;
        transition: .3s;
    }

    #account .accountNav {
        margin-left: 0px;
        margin-right: 0px;
    }

    #account .box {
        padding: 0px;
        padding-bottom: 15px;
    }

    .masterUl {
        flex-flow: column;
        padding: 0px 45px;
        margin-bottom: 0px;
        justify-content: flex-end;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 25px;
        padding-top: 25px;
        background-color: rgba(0, 0, 0, 0.2);
        margin-top: -25px;
        max-width: 100%;
    }

    .masterUl article {
        color: Whitesmoke;
        padding-right: 0px;
        padding-left: 65px;
    }

    .masterUl a.button {
        background-color: var(--secondaryColor) !important;
        color: whitesmoke !important;
        width: initial !important;
        max-width: fit-content;
        float: right;
        line-height: 50px;
        font-size: 14px;
    }

    .masterUl ul {
        margin-top: 25px;
    }
}


@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

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

/* ===== Modaldan Takvim Seçmek ===== */
#masterDateSelect .modal-header h5 {
    text-align: left !important;
}

#masterDateSelect .chooseMaster {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 25px;
}

#masterDateSelect .chooseMaster .visual {
    display: block;
    aspect-ratio: 1/1;
    height: 56px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#masterDateSelect .chooseMaster .title {
    font-size: 17px;
}

#masterDateSelect .modal-body>.row>div:nth-child(2) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 35px;
}

#masterDateSelect .modal-body>.row>div:nth-child(3) {
    padding-left: 35px;
}

#masterDateSelect .flatpickr-calendar {
    border: none !important;
    /* Kenarlıkları kaldır */
    box-shadow: none !important;
    /* Gölgeyi kaldır */
    width: 100%;
}

#masterDateSelect .flatpickr-innerContainer,
#masterDateSelect .flatpickr-rContainer,
#masterDateSelect .flatpickr-days,
#masterDateSelect .dayContainer {
    width: 100%;
    max-width: 100%;
}

#masterDateSelect .dayContainer {
    margin-top: 10px;
    justify-content: flex-start;
}

#masterDateSelect .flatpickr-day {
    aspect-ratio: 45/45;
    height: auto;
    max-width: none;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#masterDateSelect .flatpickr-day.selected {
    background-color: var(--primaryColor) !important;
    border-color: transparent !important;
}

#masterDateSelect .flatpickr-months * {
    font-weight: 600;
    color: var(--primaryColor);
}

#masterDateSelect .flatpickr-months .flatpickr-prev-month:hover svg,
#masterDateSelect .flatpickr-months .flatpickr-next-month:hover svg {
    fill: white;
}

#masterDateSelect .flatpickr-months .flatpickr-prev-month:hover:before,
#masterDateSelect .flatpickr-months .flatpickr-next-month:hover:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 7px;
    position: absolute;
    left: 0;
    top: 17%;
    background-color: var(--primaryColor);
    z-index: -1;
    transform: scale(.8);
}

#masterDateSelect .timeSelectModal {
    margin-bottom: 25px;
}

#masterDateSelect article {
    text-align: left;
    color: var(--textColor);
    font-size: 14px;
    margin-top: 25px;
}

#masterDateSelect .modal-dialog {
    max-width: 45vw;
}

#masterDateSelect .chooseData {
    margin-top: 15px;
    padding-top: 45px;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

#masterDateSelect .chooseData ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

#masterDateSelect .chooseData ul .listHead {
    font-weight: 600;
    color: var(--textColor);
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
}

#masterDateSelect .chooseData ul .elections {
    font-weight: 700;
    color: var(--secondaryColor);
    font-size: 20px;
    line-height: 20px;
}

#masterDateSelect .chooseData ul .taskerInfo {
    font-weight: 600;
    color: var(--textColor);
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
}

#masterDateSelect .chooseData ul .taskerInfo i {
    font-weight: normal;
    color: var(--textColor);
    opacity: .7;
    font-size: 18px;
    margin-right: 5px;
    line-height: 32px;
}

#masterDateSelect .chooseData ul .button {
    font-size: 18px;
    line-height: 60px;
    padding: 0px 45px;
    text-align: center;
    width: 100%;
}

#masterDateSelect .chooseData ul .button i {
    margin-left: 10px;
    line-height: 60px;
    display: inline-block;
}

@media screen and (max-width:992px) {
    #masterDateSelect .modal-dialog {
        max-width: 95vw;
    }

    #masterDateSelect .modal-body>.row>div:nth-child(2) {
        border-right: none;
        padding-right: calc(var(--bs-gutter-x)/ 2);
    }

    #masterDateSelect .modal-body>.row>div:nth-child(3) {
        padding-left: calc(var(--bs-gutter-x)/ 2);
    }

}

/* ===== Modaldan Takvim Seçmek End  ===== */
