@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: 15px;
    --widget-title-font-size: 22px;
    --btn-font-size: 14px;
    --box-title-size: 16px;
    --font-w-bold: 700;
    --body-bg-color: #EDECF1;
    --text-color: #626C77;
    --color1: #24262D;
    --color2: #1a6eff;
    --color3: #20c997;
    --color4: #fff;
    --color5: #f4524d;
    --color6: #FFA500;
    --bg-color-5: #85909E;
    --sheer-color2: #D1E2FF;
    --sheer-color3: #20c99730;
    --sheer-color5: #f4524d30;
    --sheer-color6: #FFA50030;
    --header-bg: #fff;
    --border-color: #F0EFF3;
    --footer-bg1: #131419;
    --footer-bg2: #16181D;
}

/*========== Reset Css ==========*/
* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

p {
    line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-family: var(--body-font);
    font-weight: var(--font-w-bold);
    font-size: 17px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

/*========== Reset Css End ==========*/

/*========== Sabitler ==========*/
.container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

.br-5 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.br-30 {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.col-gap-15 {
    column-gap: 15px;
}

.fs-6 {
    font-size: 6px;
}

.fs-10 {
    font-size: 10px;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px !important;
}

.text-bold{
    font-weight: var(--font-w-bold);
}

.color1 {
    color: var(--color1) !important;
}

.color2 {
    color: var(--color2) !important;
}

.color3 {
    color: var(--color3) !important;
}

.color4 {
    color: var(--color4) !important;
}

.color5 {
    color: var(--color5) !important;
}

.color6 {
    color: var(--color6) !important;
}

.bg-sheer-color2 {
    background-color: var(--sheer-color2) !important;
}

.bg-sheer-color3 {
    background-color: var(--sheer-color3) !important;
}

.bg-sheer-color5 {
    background-color: var(--sheer-color5) !important;
}

.bg-sheer-color6 {
    background-color: var(--sheer-color6) !important;
}

.bg-color2 {
    background-color: var(--color2) !important;
}

.bg-color3 {
    background-color: var(--color3) !important;
}

.bg-color4 {
    background-color: var(--color4) !important;
}

.bg-color5 {
    background-color: var(--color5) !important;
}

.bg-header {
    background-color: var(--header-bg) !important;
}

.detail-number {
    font-size: 45px;
    opacity: 0.3;
}

.border-color3 {
    border-color: var(--color3) !important;
}

.oval {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.btn {
    width: 100%;
    height: 60px;
    max-height: 60px;
    padding: 20px;
    font-size: var(--btn-font-size);
    background-color: var(--color3);
    color: var(--color4);
    font-weight: var(--font-w-bold);
    font-family: var(--body-font);
    outline: none;
    border: none;
    transition: 200ms;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    display: flex;
}

.btn>* {
    pointer-events: none;
}

.btn::before {
    content: '';
    width: 0px;
    height: 0px;
    left: -45px;
    border: 0px solid rgba(255, 255, 255, .15);
    display: block;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    position: absolute;
    top: 100%;
    outline: 0px solid rgba(255, 255, 255, .3);
    transition: 300ms;
}

.btn:hover {
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 4px, rgb(0 0 0 / 16%) 0px 7px 13px -3px, rgb(0 0 0 / 30%) 0px -3px 0px inset;
}

.btn:hover.btn::before {
    width: 50px;
    height: 50px;
    top: -20px;
    border: 30px solid rgba(255, 255, 255, .15);
    outline: 30px solid rgba(255, 255, 255, .3);
}

.btn-sm {
    height: 40px !important;
    max-height: 40px !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid;
}

.d-table-cell {
    display: table-cell !important;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: end;
}

.align-item-center {
    align-items: center;
}

.box {
    width: 100%;
    background-color: var(--color4);
    display: block;
}

.box-square-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    margin-top: -25px;
    background-color: var(--color2);
    color: var(--color4);
    align-items: center;
    font-size: 20px;
    justify-content: center;
    display: flex;
}

.box-square-icon>img,
.box-circle-icon>img {
    max-width: 100%;
    max-height: 100%;
}

.box-title {
    width: 100%;
    font-weight: var(--font-w-bold);
    text-align: center;
    display: block;
}

.box-desc {
    padding: 0px 20px;
}

.badge {
    width: fit-content;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: var(--font-w-bold);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.box-price {
    width: 100%;
    color: var(--color3);
    font-weight: var(--font-w-bold);
    font-size: 20px;
    text-align: center;
    display: block;
}

.box-price-desc {
    width: 100%;
    text-align: center;
    font-size: 13px;
    display: block;
}

.element-center {
    margin: auto;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left;
}

.box-content {
    padding: 0px 20px;
}

.w-100 {
    width: 100%;
}

.w-fit {
    width: max-content !important;
}

.t-w-fit {
    width: 1%;
    white-space: nowrap;
}

.table {
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    background-image: none;
}

.table>tbody>tr>th {
    border-bottom: 1px solid var(--color2);
    padding: 15px;
    text-align: left;
}

.table>tbody>tr>td {
    padding: 5px 15px;
    text-align: left;
}

.table>tbody>tr {
    height: 50px;
    border-bottom: 1px solid var(--border-color);
}

.table>tbody>tr>td:last-child {
    column-gap: 10px;
    display: flex;
}

.full-bg-color5 {
    width: 100%;
    background-color: var(--bg-color-5);
    display: inline-block;
}

.form-group {
    width: 100%;
    display: block;
}

.form-group-label {
    width: 100%;
    font-weight: var(--font-w-bold);
    margin-bottom: 15px;
    color: var(--color1);
    display: block;
}

.form-group-input {
    width: 100%;
    height: 60px;
    max-width: 100%;
    font-family: var(--body-font);
    padding: 20px;
    border: 1px solid #cbcfdd;
    color: var(--color1);
    outline: none;
    display: block;
}

.form-icon-group {
    width: 100%;
    position: relative;
    align-items: center;
    display: flex;
}

.form-icon-group>.input-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    left: 20px;
    position: absolute;
    display: block;
}

.form-icon-group>.form-group-input {
    padding-left: 50px;
}

.form-group-textarea {
    width: 100%;
    max-width: 100%;
    font-family: var(--body-font);
    padding: 20px;
    border: 1px solid #cbcfdd;
    color: var(--color1);
    outline: none;
    display: block;
}

.input-goup {
    width: 100%;
    position: relative;
    align-items: center;
    display: flex;
}

.input-goup>.input-goup-item {
    width: fit-content;
    right: 10px;
    position: absolute;
}

.input-goup>.form-group-input {
    padding-right: 10px;
}

select {
    display: none !important;
}

.choices__inner {
    height: 60px;
    align-items: center;
    background-color: transparent !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    padding: 20px !important;
    display: flex !important;
}

.choices__placeholder {
    color: #8b7c75 !important;
    opacity: 1 !important;
}

.choices__item--selectable {
    color: var(--color1);
}

.custom-check {
    width: 100%;
    display: block;
}

.custom-check>input {
    display: none;
}

.custom-check-item {
    width: 100%;
    cursor: pointer;
    display: flex;
}

.custom-check-item>.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
    border: 1px solid var(--color2);
    justify-content: center;
    align-items: center;
    display: flex;
}

.custom-check input:checked~.custom-check-item>.checkmark {
    background-color: var(--color2);
}

.custom-check input:checked~.custom-check-item>.checkmark::before {
    content: '\e902';
    font-family: 'icomoon';
    color: var(--color4);
}

/* ---------- Switch ---------- */
.toggle-control {
    width: 60px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    display: block;
}
.toggle-control input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.toggle-control input:checked ~ .control {
    background-color: dodgerblue;
}
.toggle-control input:checked ~ .control:after {
    left: 32px;
}
.toggle-control .control {
    position: absolute;
    top: 0;
    left: 0;
    height: 29px;
    width: 60px;
    border-radius: 25px;
    background-color: darkgray;
    transition: background-color 0.15s ease-in;
}
.toggle-control .control:after {
    content: "";
    position: absolute;
    left: 2.5px;
    top: 2.4px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: white;
    transition: left 0.15s ease-in;
}

/* ---------- Switch End---------- */

.user-type {
    width: 100%;
    display: block;
}

.user-type>input {
    display: none;
}

.user-type-btn {
    width: 100%;
    height: 60px;
    padding: 20px;
    border: 1px solid var(--color2);
    cursor: pointer;
    color: var(--color2);
    align-items: center;
    display: flex;
}

.user-type input:checked~.user-type-btn {
    background-color: var(--color2);
    color: var(--color4);
}


.custom-checkbox {
    width: 100%;
    display: block;
}

.custom-checkbox-item {
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    border: 1px solid var(--color2);
    color: var(--color1);
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.custom-checkbox-content {
    width: 100%;
    display: block;
}

.custom-checkbox-content>span {
    width: 100%;
    display: block;
}

.custom-checkbox-content>span:nth-child(1) {
    font-weight: var(--font-w-bold);
}

.custom-checkbox-content>span:nth-child(2) {
    font-size: 13px;
}

.custom-checkbox-item>.checkmark {
    width: 25px;
    height: 25px;
    border: 1px solid var(--color2);
    display: block;
}

.custom-checkbox input:checked~.custom-checkbox-item {
    background-color: #2196F3;
    color: var(--color4) !important;
}

.custom-checkbox input:checked~.custom-checkbox-item>.checkmark {
    background-color: var(--color4);
    border: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.custom-checkbox input:checked~.custom-checkbox-item>.checkmark::before {
    content: '\e902';
    font-family: 'icomoon';
    color: var(--color2);
}

.custom-checkbox>input {
    display: none;
}

.col-2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    display: grid;
}

.col-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    display: grid;
}

.position-sticky {
    position: sticky;
    top: 25px;
    left: 0;
}

/*========== Sabitler End ==========*/

/*========== Header ==========*/
.header {
    width: 100%;
    background: var(--header-bg);
    display: block;
}

.header-top {
    border-bottom: 1px solid var(--border-color);
}

.header-top>.container {
    justify-content: space-between;
    display: flex;
}

.header-top-menu {
    display: flex;
}

.header-top-menu-item {
    width: fit-content;
    position: relative;
    display: block;
}

.header-top-menu-link {
    max-height: 35px;
    width: fit-content;
    color: var(--text-color);
    padding: 15px;
    opacity: .5;
    font-size: 12px;
    font-weight: var(--font-w-bold);
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    align-items: center;
    display: flex;
}

.header-top-menu-item:hover .header-top-menu-sub-item {
    transition: .2s;
    visibility: visible;
    display: block;
    opacity: 1;
    margin-top: 0px;
}

.header-top-menu-sub-item {
    position: absolute;
    left: 0px;
    background: var(--header-bg);
    border: 1px solid var(--border-color);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    margin-top: -20px;
    display: block;
}

.header-top-menu-sub-item-item {
    width: 100%;
    min-width: max-content;
    display: block;
}

.header-top-menu-sub-item-link {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: var(--text-color);
    display: block;
}

.header-top-menu-sub-item-link:hover {
    background-color: #efefef;
}

.online {
    padding: 3px 10px;
    background-color: var(--sheer-color3);
    color: var(--color3);
    font-size: 10px;
    font-weight: var(--font-w-bold);
}

.offline {
    padding: 3px 10px;
    background-color: var(--sheer-color5);
    color: var(--color5);
    font-size: 10px;
    font-weight: var(--font-w-bold);
}

.header-bottom {
    width: 100%;
    display: block;
}

.header-bottom>.container {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.header-nav {
    column-gap: 35px;
    display: flex;
}

.header-nav-item {
    margin-top: 15px;
    position: relative;
}

.header-nav-link {
    font-size: 15px;
    color: var(--color1);
    font-weight: var(--font-w-bold);
    padding: 10px 10px 25px 10px;
    display: block;
}

.header-nav-link:hover,
.header-nav-link.active {
    color: var(--color2);
    position: relative;
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
    content: '';
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background-color: var(--color2);
    position: absolute;
}

.header-nav-cart-btn {
    background-color: var(--color2);
    color: var(--color4);
    font-weight: var(--font-w-bold);
    padding: 10px 20px;
    align-items: center;
    display: flex;
}

.header-nav-cart-btn>.cart-total {
    width: 25px;
    height: 25px;
    background-color: var(--color4);
    color: var(--color2);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 20px;
    display: flex;
}

.header-nav-item .sub-nav-item {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
    padding: 0;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: var(--color4);
    border-top: 5px solid var(--color2);
    box-shadow: -8.5px 8.5px 51px 0rgb(0 0 0 / 6%);
    z-index: 99;
    overflow: hidden;
}

.header-nav-item .sub-nav-item-link {
    padding: 15px 15px 15px 20px;
    color: var(--color1);
    display: block;
}

.header-nav-item .sub-nav-item-link:hover {
    background-color: var(--sheer-color2);
}

.header-nav-item .sub-nav-item-link:hover::after {
    content: '';
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color2);
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
}

.header-nav-item:hover .sub-nav-item {
    transition: .2s;
    visibility: visible;
    display: block;
    opacity: 1;
    margin-top: -5px;
}

/*========== Header End ==========*/

/*========== Content ==========*/
.slider {
    width: 100%;
    background: url('../image/slider-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    padding: 45px 0px;
    display: flex;
}

.slider-box {
    max-width: 500px;
    background-color: var(--color4);
    padding-bottom: 35px;
    position: relative;
    display: block;
}

.slider-box-title {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    display: block;
}

.slider-box-title::before {
    content: '';
    width: 70px;
    height: 10px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: var(--color2);
    position: absolute;
}

.slider-content-box-container {
    width: 100%;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: 0px 35px;
    align-items: center;
    column-gap: 10px;
    display: grid;
}

.slider-content-box {
    width: 100%;
    border: 2px solid var(--color2);
    color: var(--color2);
    font-size: 14px;
    line-height: 14px;
    padding: 20px 0px;
    text-align: center;
    font-weight: var(--font-w-bold);
    display: block;
}

.slider-content-box-icon {
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

.slider-box-desc {
    width: 100%;
    margin-top: 20px;
    padding: 0px 35px;
    font-size: 14px;
    text-align: center;
    display: block;
}

.slider-box::before {
    content: '';
    width: 20px;
    height: 120px;
    background-color: var(--color2);
    position: absolute;
    left: -20px;
    bottom: 20px;
    transform: skew(0deg, -35deg);
}

.slider-box-list {
    padding: 0px 20px;
    display: block;
}

.slider-box-list-item {
    width: 100%;
    color: var(--color3);
    margin: 10px 0px;
    font-weight: var(--font-w-bold);
    align-items: center;
    display: flex;
}

.slider-box-list-item>.slider-box-icon {
    width: 16px;
    height: 16px;
    background-color: var(--sheer-color3);
    color: var(--color3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 8px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.slider-box::after {
    content: '';
    width: 20px;
    height: 120px;
    background-color: var(--color2);
    position: absolute;
    right: -20px;
    top: 20px;
    transform: skew(0deg, -35deg);
}

.slider-box-content {
    padding: 0px 20px;
    display: block;
}

.services-brief {
    width: 100%;
    background-color: var(--color4);
    padding: 20px 0px;
    display: block;
}

.services-brief-list {
    justify-content: space-around;
    display: flex;
}

.services-brief-list-item {
    align-items: center;
    display: flex;
}

.services-brief-list-item:nth-child(even) .services-brief-icon {
    background-color: var(--sheer-color3);
    color: var(--color3);
}

.services-brief-list-item:nth-child(even) .services-brief-title {
    color: var(--color3);
}

.services-brief-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--sheer-color2);
    color: var(--color2);
    margin-right: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 25px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.services-brief-desc {
    display: block;
}

.services-brief-title {
    width: 100%;
    color: var(--color2);
    font-weight: var(--font-w-bold);
    display: block;
}

.services-brief-sub-title {
    width: 100%;
    color: var(--text-color);
    font-weight: var(--font-w-bold);
    display: block;
}

.widget-title-icon {
    margin: auto;
    display: block;
}

.widget-title {
    width: 100%;
    color: var(--color1);
    font-size: var(--widget-title-font-size);
    text-align: center;
    display: block;
}

.widget-title-sub-dec {
    width: 100%;
    text-align: center;
    display: block;
}

.questions-widget>.box-title {
    text-align: left;
    font-size: 19px;
    font-weight: var(--font-w-bold);
}

.home-category-list {
    box-shadow: 0px 7px 36px 0px rgba(0, 0, 0, 0.1);
    display: flex !important;
    padding-right: 40px;
    padding-left: 40px;
}

.home-category-list>.slick-prev,
.home-category-list>.slick-next {
    background: transparent;
    border: none;
    font-size: 15px;
    padding: 10px;
    outline: none;
    color: var(--text-color);
    cursor: pointer;
}

.home-category-list>.slick-prev>.icon-arrow {
    transform: rotate(180deg);
    display: block;
}

.home-category-list-item {
    padding: 10px 15px;
    text-align: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-w-bold);
}

.home-category-list-item:hover,
.home-category-list-item-active {
    background-color: var(--sheer-color2);
    color: var(--color2);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.category-slider-arrow>.splide__arrow {
    background-color: transparent;
}

.category-slider-arrow>.splide__arrow svg {
    fill: var(--text-color);
}

.home-referans {
    width: 100%;
    padding: 30px 0px;
    display: flex;
}

.home-referans-item {
    width: fit-content;
    padding: 20px 0px;
    margin: 0px 10px;
    background-color: var(--color4);
    align-items: center;
    justify-content: center;
    display: flex !important;
}

.home-referans-item>img {
    max-width: 100px;
    height: auto;
    max-height: 20px;
    display: block;
}

.home-referans>.slick-list {
    margin: 0 -10px;
}

.box-circle-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-top: -30px;
    background-color: var(--color2);
    color: var(--color4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    display: flex;
    border: 7px solid var(--sheer-color2);
}

.service-detail-list {
    width: 100%;
    display: block;
}

.service-detail-list-item {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.service-detail-list-item:first-child {
    border-top: 1px solid var(--border-color);
}

.service-detail-list-item>.icon {
    color: var(--color3);
    margin-right: 5px;
}

.blog-list {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    display: grid;
}

.blog-item {
    width: 100%;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: block;
}

.blog-item::after {
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    opacity: 0;
    width: 0;
    height: 0;
    border: 90px solid transparent;
    border-top: 0;
    transform: rotate(45deg);
    border-bottom: 90px solid var(--color2);
    transition: 300ms;
}

.blog-item:hover.blog-item::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -60px;
    opacity: 1;
    width: 0;
    height: 0;
    border: 90px solid transparent;
    border-top: 0;
    transform: rotate(45deg);
    border-bottom: 90px solid var(--color2);
}

.blog-item::before {
    content: '\e903';
    font-family: 'icomoon';
    color: var(--color4);
    opacity: 0;
    top: -100%;
    right: -100%;
    font-size: 20px;
    z-index: 99;
    position: absolute;
    transform: rotate(-45deg);
    transition: 350ms;
}

.blog-item:hover.blog-item::before {
    content: '\e903';
    font-family: 'icomoon';
    color: var(--color4);
    opacity: 1;
    top: 20px;
    right: 20px;
    font-size: 20px;
    z-index: 99;
    position: absolute;
    transform: rotate(-45deg);
}

.blog-item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-item-bottom {
    width: 100%;
    height: auto;
    min-height: 200px;
    bottom: 0px;
    padding: 20px 0px;
    position: absolute;
    background-image: linear-gradient(to top, var(--footer-bg1), var(--footer-bg1), var(--footer-bg1), transparent);
}

.blog-item-title {
    width: 100%;
    margin-top: 20px;
    border-left: 5px solid var(--color2);
    color: var(--color4);
    padding: 5px 20px;
    display: block;
}

.blog-item-desc {
    width: 100%;
    border-left: 5px solid var(--color2);
    color: var(--color4);
    padding: 5px 20px;
    display: block;
}

.blog-detail {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.page-title {
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.page-title-title {
    width: 100%;
    color: var(--color4);
    font-size: var(--widget-title-font-size);
    font-weight: var(--font-w-bold);
    display: block;
}

.page-title-desc {
    color: var(--color4);
    margin-top: 10px;
    display: block;
}

.account-page-title {
    padding: 45px 0px 120px 0px;
    margin-bottom: -85px;
    justify-content: space-between;
    display: flex;
}

.user-info {
    align-items: center;
    display: flex;
}

.user-info>img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.user-desc {
    display: block;
}

.user-desc>.user-name {
    width: 100%;
    color: var(--color4);
    font-weight: var(--font-w-bold);
    font-size: var(--widget-title-font-size);
    display: block;
}

.user-desc>.user-mail {
    width: 100%;
    color: var(--color4);
    display: block;
}

.balance-content {
    align-items: center;
    justify-content: space-between;
    background-color: var(--color4);
    padding: 15px;
    display: flex;
}

.balance-desc {
    margin-right: 50px;
    font-weight: var(--font-w-bold);
    display: block;
}

.balance-desc>.balance-title {
    width: 100%;
    display: block;
}

.balance-desc>.balance-count {
    width: 100%;
    color: var(--color3);
    font-size: var(--widget-title-font-size);
    display: block;
}

.ozel-icerik-title-bg {
    height: 150px;
    background-image: url('../image/ozel-icerik-title.png');
    background-repeat: no-repeat;
    background-position: right;
}

.right-sidebar {
    column-gap: 20px;
    grid-template-columns: 3fr 1fr;
    display: grid;
}

.editor-right-sidebar{
    column-gap: 20px;
    grid-template-columns: 3fr 1.5fr;
    display: grid;
}

.left-sidebar {
    column-gap: 20px;
    grid-template-columns: 1fr 3fr;
    display: grid;
}

.product-container {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
}

.product-item {
    background-color: var(--sheer-color2);
    color: var(--color1);
    padding: 30px 20px;
}

.product-item-title {
    width: 100%;
    text-align: center;
    display: block;
}

.product-item-desc {
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
    display: block;
}

.product-item-price {
    width: 100%;
    font-weight: var(--font-w-bold);
    margin-top: 15px;
    text-align: center;
    display: block;
}

.product-box input:checked~.product-item {
    background-color: var(--color2);
    color: var(--color4);
}

.product-box input:checked~.product-item>h4 {
    color: var(--color4);
}

.product-box input:checked~.product-item>.btn {
    background-color: var(--color4) !important;
    color: var(--color2);
}

.product-box>input {
    display: none;
}

.tab-panel-menu {
    width: 100%;
    display: flex;
}

.tab-panel-menu-link {
    font-family: var(--body-font);
    padding: 15px 25px;
    cursor: pointer;
    font-weight: var(--font-w-bold);
    color: var(--text-color);
    background-color: transparent;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: none;
    outline: none;
    display: block;
}

.tab-panel-menu-link.active {
    background-color: var(--color2);
    color: var(--color4);
}

.tap-panel-item {
    width: 100%;
    padding: 20px;
    -webkit-border-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topleft: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border: 2px solid var(--color2);
    display: block;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 20px;
    background-color: var(--sheer-color3);
    color: var(--color3);
    font-size: 24px;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: flex;
}

.custom-file>input {
    display: none;
}

.custom-file {
    width: 100%;
    height: 62px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #cbcfdd;
    padding: 0px 10px;
    display: flex;
}

.custom-file>.custom-file-btn {
    width: fit-content;
    padding: 10px 20px;
    color: var(--color2);
    background-color: var(--sheer-color2);
    display: block;
}

.order-container {
    grid-template-columns: 1fr 3fr 3fr 0.5fr;
    gap: 20px;
    display: grid;
}

.order-summary {
    width: 100%;
    display: block;
}

.order-summary-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0px;
    display: block;
}

.order-summary-title {
    width: 100%;
    display: block;
}

.order-summary-desc {
    width: 100%;
    font-weight: var(--font-w-bold);
    margin-top: 5px;
    color: var(--color2);
    display: block;
}

.order-progress {
    width: 100px;
    height: 10px;
    margin-top: 10px;
    background-color: #eff1f5;
    position: relative;
    display: block;
}

.order-progress-bar {
    width: 0%;
    height: 10px;
    background-color: var(--color2);
    position: absolute;
    display: block;
}

.order-progress-percent {
    width: 100%;
    top: -20px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    display: block;
}

.sidebar-nav {
    width: 100%;
    display: block;
}

.sidebar-nav-item {
    width: 100%;
    display: block;
}

.sidebar-nav-link {
    width: 100%;
    padding: 15px 20px;
    color: var(--color1);
    position: relative;
    display: block;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    background-color: var(--sheer-color2);
}

.sidebar-nav-link:hover::before,
.sidebar-nav-link.active::before {
    content: '';
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color2);
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
}

.sidebar-nav-item > .sub-item{
    width: 100%;
    display: none;
}
.sidebar-nav-item > .sub-item > .sub-item-li{
    width: 100%;
    display: block;
}
.sidebar-nav-item > .sub-item > .sub-item-li > .sidebar-nav-link{
    width: 100%;
    padding-left: 50px;
    display: block;
}
.sidebar-nav-item > .sub-item > .sub-item-li > .sidebar-nav-link > .menu-icon{
    font-size: 10px;
    margin-right: 5px;
    transform: rotate(-90deg);
    display: inline-block;
    width: fit-content;
    height: fit-content;
}


.contact-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--color2);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--color2);
    font-size: 23px;
    display: flex;
}

.contact-tilte {
    width: 100%;
    color: var(--color2);
    font-weight: var(--font-w-bold);
    display: block;
}

.contact-desc {
    width: 100%;
    display: block;
}

.login-bg {
    width: 100%;
    height: 100vh;
    background: url('../image/login-bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    display: block;
}

.login-form-bg {
    width: 50%;
    height: 100vh;
    border-right: 15px solid var(--color2);
    background-color: var(--body-bg-color);
    transform: translate(0px, 0px) skew(14deg, 0deg);
    justify-content: center;
    align-items: center;
    display: flex;
}

.login-form {
    width: 60%;
    left: 500px;
    transform: translate(0px, 0px) skew(-14deg, 0deg);
    background-color: var(--color4);
    display: block;
}

.login-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    background: var(--color2);
    color: var(--color4);
    justify-content: center;
    font-size: 25px;
    align-items: center;
    display: flex;
}

.login-link {
    color: var(--color1);
    font-weight: var(--font-w-bold);
}

.btn-login-form-out {
    left: 0px;
    bottom: -90px;
    position: absolute;
}

.login-form-logo {
    top: -70px;
    position: absolute;
}

.account-table>tbody>tr>th {
    border: none;
    background-color: #eff1f5;
}

.account-table>tbody>tr>td:first-child {
    border-left: 1px solid var(--border-color);
}

.account-table>tbody>tr>td:last-child {
    border-right: 1px solid var(--border-color);
}

.demo-content .swal2-html-container {
    text-align: left;
    font-size: 15px;
}

.demo-content .swal2-popup {
    width: 80%;
}

.bordered {
    border: 1px solid #cbcfdd;
}

.bank-logo {
    max-width: 50%;
    margin: auto;
    display: block;
}

/*========== Content End ==========*/
/*========== Footer ==========*/
.footer {
    width: 100%;
    background-color: var(--footer-bg1);
    display: block;
}

.footer>.container {
    justify-content: space-between;
    padding: 20px 0px;
    align-items: center;
    display: flex;
}

.footer-social-media {
    column-gap: 10px;
    display: flex;
}

.footer-social-media-item {
    width: 35px;
    height: 35px;
    font-size: 15px;
    background-color: var(--color4);
    color: var(--color1);
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: flex;
}

.footer-content {
    background-color: var(--footer-bg2);
    padding: 35px 0px;
}

.footer-content>.container {
    justify-content: space-between;
    column-gap: 20px;
    display: flex;
}

.footer-content-links {
    display: block;
}

.footer-content-link-item:nth-child(1) {
    color: var(--color4);
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: var(--font-w-bold);
}

.footer-content-link-item {
    margin-top: 15px;
}

.footer-content-link {
    color: var(--text-color);
    align-items: center;
    display: flex;
}

.footer-content-link::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 10px;
    margin-right: 10px;
    background-color: var(--text-color);
}

.footer-content-link:hover {
    color: var(--color4);
}

.footer-bottom-links {
    column-gap: 15px;
    display: flex;
}

.footer-bottom-link-item {
    color: var(--text-color);
}

.footer-bottom-link-item:hover {
    color: var(--color4);
}

.footer-contact-item>span {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background-color: var(--color4);
    color: var(--color2);
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-contact-item {
    color: var(--color4);
    align-items: center;
    display: flex;
}

.footer-contact-item::before {
    display: none;
}

.footer-credit-cart {
    width: 200px;
}

/*========== Footer End ==========*/
/*========== Mobile Popup ==========*/
.mobile-popup-box-open {
    overflow: hidden;
}

.mobile-popup-box {
    width: 30%;
    height: 100%;
    padding-bottom: 85px;
    z-index: 99999;
    background: var(--footer-bg2);
    top: 0;
    left: -100%;
    z-index: 99999;
    overflow: auto;
    transition: 200ms;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    display: block !important;
}

.mobile-popup-header {
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    display: flex;
}

.mobile-popup-header .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.mobile-popup-header>a>img {
    width: 200px;
    height: auto;
    display: block;
}

.active-mobile-popup-box {
    opacity: 1;
    left: 0;
    pointer-events: all;
}

/*========== Mobile Popup End ==========*/

.header-banner {
    background-color: #0b121f;
    padding: 10px 0px;
    color: #fff;
    display: block;
  }
  
  .header-banner>.container {
    align-items: center;
    color: #fff;
    justify-content: space-between;
    display: flex;
  }
  
  .header-banner-content {
    column-gap: 20px;
    align-items: center;
    display: flex;
  }
  
  .header-banner-title {
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    display: block;
  }
  
  .header-banner-desc {
    width: 100%;
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
    display: block;
  }
  
  .btn-header-banner-close {
    background-color: transparent;
    color: #f26600;
    font-size: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
  }

@media (max-width: 1150px) {
    :root {
        --normal-font-size: 13px;
        --widget-title-font-size: 20px;
        --btn-font-size: 12px;
    }

    .header-bottom {
        align-items: center;
        height: 73px;
        display: flex;
    }

    .slider-content-box {
        font-size: 12px;
    }

    .mobile-header-button {
        gap: 20px;
        display: flex !important;
    }

    .mobile-header-button>li>.btn {
        width: 45px;
        height: 45px;
        font-size: 19px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .services-brief-list {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
        display: grid;
    }

    .slider-box::before {
        content: '';
        width: 10px;
        height: 120px;
        background-color: var(--color2);
        position: absolute;
        left: -10px;
        bottom: 20px;
        transform: skew(0deg, -35deg);
    }

    .slider-box::after {
        content: '';
        width: 10px;
        height: 120px;
        background-color: var(--color3);
        position: absolute;
        right: -10px;
        top: 20px;
        transform: skew(0deg, -35deg);
    }

    .footer-content-link-item {
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .mt-m-20 {
        margin-top: 20px;
    }

    .col-m-1 {
        grid-template-columns: 1fr;
    }

    .col-m-2 {
        grid-template-columns: 1fr 1fr;
    }

    .row-gap-m-20 {
        row-gap: 20px;
    }

    .row-gap-m-55 {
        row-gap: 55px;
    }

    .justify-content-m-center {
        justify-content: center;
    }

    .w-m-100 {
        width: 100%;
    }

    .d-m-none {
        display: none !important;
    }

    .d-m-grid {
        display: grid !important;
    }

    .d-m-block{
        display: block !important;
    }

    .table .mt-title {
        background-color: var(--sheer-color2);
        color: var(--color2);
        justify-content: center;
        border-top: 10px solid var(--body-bg-color);
        margin: 0px;
        order: -1;
    }
    .table .mt-title > span{
        padding: 0px 15px;
    }

    .mt-title::before {
        display: none;
    }

    .table td::before {
        content: attr(data-label);
        float: left;
        margin-right: 3rem;
        font-weight: bold;
    }

    .table tr {
        height: auto !important;
        display: flex;
        flex-wrap: wrap;
    }

    .table td {
        width: 100%;
        justify-content: space-between;
        margin: 0px 20px;
        padding: 20px 0px !important;
        border-bottom: 1px solid var(--border-color);
        display: flex;
    }

    .table td:last-child {
        border: none;
        display: flex;
    }

    .table td:last-child>.btn {
        justify-content: center;
    }

    .table td:last-child::before {
        display: none;
    }

    .mobile-menu {
        width: 100%;
        bottom: 0px;
        left: 0px;
        background-color: #fff;
        position: fixed;
        justify-content: space-between;
        box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.25);
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        display: grid !important;
    }

    .mobile-menu-item {
        padding: 10px 0px 5px 0px;
        border-right: 1px solid var(--border-color);
        display: block;
    }

    .mobile-menu-item:last-child {
        border: none;
    }

    .mobile-menu-link {
        width: 100%;
        color: var(--text-color);
        font-weight: var(--font-w-bold);
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        display: flex;
    }

    .mobile-menu-icon {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .mobile-menu-pane-name {
        width: 100%;
        text-align: center;
        font-size: 11px;
        display: block;
    }

    .mobile-cart-count {
        width: 40px;
        height: 20px;
        color: #fff;
        background-color: var(--color3);
        top: -22px;
        position: absolute;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .mobile-popup-box-open {
        overflow: hidden;
    }

    .mobile-popup-box {
        width: 100%;
        height: 100%;
        padding-bottom: 85px;
        z-index: 99999;
        background: var(--footer-bg2);
        top: 0;
        left: -100%;
        z-index: 99999;
        overflow: auto;
        transition: 200ms;
        pointer-events: none;
        opacity: 0;
        position: fixed;
        display: block !important;
    }

    .mobile-popup-header {
        width: 100%;
        padding: 20px;
        justify-content: space-between;
        display: flex;
    }

    .mobile-popup-header .btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .mobile-popup-header>a>img {
        width: 200px;
        height: auto;
        display: block;
    }

    .active-mobile-popup-box {
        opacity: 1;
        left: 0;
        pointer-events: all;
    }

    .mobile-popup-nav {
        width: 100%;
        padding: 20px;
        display: block;
    }

    .mobile-popup-nav-item {
        width: 100%;
        display: block;
    }

    .mobile-popup-nav-link {
        width: 100%;
        background-color: #23252c;
        color: var(--color4);
        padding: 20px 10px;
        font-size: 15px;
        border-bottom: 1px solid #3c3f4a;
        justify-content: space-between;
        align-items: center;
        display: flex;
    }

    .mobile-popup-nav-link>.icon {
        font-size: 10px;
    }

    .mobile-popup-nav-item:first-child {
        width: 100%;
        margin-bottom: 20px;
        color: var(--color4);
        font-size: 18px;
        font-weight: var(--font-w-bold);
        display: block;
    }

    .mobile-popup-nav-item:last-child>.mobile-popup-nav-link {
        border: none;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-radius-bottomright: 5px;
        -moz-border-radius-bottomleft: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .mobile-popup-nav-item:nth-child(2)>.mobile-popup-nav-link {
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .page-title {
        background-image: none;
        justify-content: center;
        display: flex;
    }

    .page-title-title {
        width: 100%;
        text-align: center;
    }

    .page-title-desc {
        width: 100%;
        text-align: center;
    }

    .login-bg {
        background: none;
    }

    .login-form-bg {
        width: 100%;
        background: none;
        border: none;
        transform: none;
    }

    .login-form {
        width: 95%;
        transform: none;
    }
}