html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: var(--textColor);
    font-family: 'Rubik';
    outline: none;
}

:focus {
    outline: none;
}

body {
    padding: 0;
    margin: 0;
    background: #fff;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

article, aside, footer, header, nav, section {
    display: block;
}

figcaption, figure, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin: 10px 0em;
}

p:first-child {
    margin-top: 0em;
}

p:last-child {
    margin-bottom: 0em;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

a {
    text-decoration: none;
    transition: .3s;
    color: var(--textColor);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--textColor);
    line-height: 1.2;
    transition: .3s;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.container {
    max-width: 1320px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1400px) {
    .container {
        width: 100%;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal.mobileMenu {
    display: none;
}

.modal.mobileMenu .modal-body {
    border-top: 1px solid #e5e5e5;
    padding: 0;
}

.modal.mobileMenu .modal-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    grid-column-gap: 10px;
}

.modal.mobileMenu .modal-body .inner {
    display: none;
}

.modal.mobileMenu .modal-body li a {
    height: auto;
    line-height: initial;
    padding: 15px 20px;
    font-size: 15px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.modal.mobileMenu .modal-body ul li ul li a {
    padding-left: 30px;
}

.modal.mobileMenu .modal-body ul li ul li a:before {
    content: "\ea6e";
    font-family: 'remixicon';
}

.modal.mobileMenu .modal-footer li a {
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--generalTwoColor);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffff;
    font-weight: 100;
    border-radius: 50px;
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000000bd;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header img {
    height: 38px;
}

.modal-header .close {
    font-size: 32px;
    width: 26px;
    height: 26px;
    text-align: center;
    padding: 0;
    color: var(--subColor);
}

.modal-header .close i {
    font-size: 22px;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 700;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    grid-column-gap: 10px;
}

.modal-footer ul {
    display: flex;
}

.modal-footer .button {
    flex: 1;
    display: flex;
    background: #fff;
    color: var(--generalTwoColor);
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 0 45px #a9a9a917;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.close {
    cursor: pointer;
    transition: 0.15s;
}

.mobileBtn {
    display: none;
    margin-right: 7px;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: 0.8;
}

button.close {
    background-color: transparent;
    border: 0;
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.fade.in {
    opacity: 1;
}

iframe,embed {
    width: 100%;
    border-radius: 6px;
}

.modal.left.fade .modal-dialog {
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

.modal.left .modal-dialog, .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 320px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content, .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body, .modal.right .modal-body {
    padding: 0;
}

.modal-body li {
    margin-bottom: 0;
}

.modal-body li:last-child {
    margin: 0;
    border-bottom: none;
}

.modal-body li a {
    display: block;
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: var(--generalTwoColor);
}

.modal-body li a:hover {
    background: #f8f8f8;
}

.modal-footer li {
    border: none;
}

.tab-content>.active {
    display: block;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

input, button, textarea, select {
    font-family: 'Rubik';
}

ul.noList {
    padding: 0;
    margin: 0;
    list-style: none;
}

input[type="date"], input[type="text"], input[type="email"], input[type="search"], input[type="password"], input[type="number"], textarea, select {
    max-width: 100%;
    width: -webkit-fill-available;
    max-height: 46px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--textColor)!important;
    border: 2px solid #f0f3f7;
    background: #fff!important;
}

input:disabled {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

textarea {
    height: auto;
    padding: 20px!important;
    resize: none;
    max-height: initial;
}

[data-tooltip] {
    position: relative;
    z-index: 10;
}

[data-tooltip]:before, [data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + 5px);
    pointer-events: none;
    transition: 0.2s;
    will-change: transform;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 300px;
    width: max-content;
    width: -moz-max-content;
    border-radius: 6px;
    font-size: 14px;
    background-color: rgba(59, 72, 80, 0.9);
    background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -5px) scale(0.5);
}

[data-tooltip]:after {
    content: '';
    border-style: solid;
    border-width: 5px 5px 0px 5px;
    border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
    transition-duration: 0s;
    transform-origin: top;
    transform: translateX(-50%) scaleY(0);
}

[data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

[data-tooltip]:hover:before {
    transition-delay: 0.3s;
    transform: translate(-50%, -5px) scale(1);
}

[data-tooltip]:hover:after {
    transition-delay: 0.5s;
    transition-duration: 0.2s;
    transform: translateX(-50%) scaleY(1);
}

[data-tooltip-location="left"]:before, [data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}

[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}

[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

[data-tooltip-location="right"]:before, [data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

[data-tooltip-location="bottom"]:before, [data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}

.owl-dots {
    text-align: center;
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
    justify-content: center;
    margin-top: 27px;
}

.homeSlider .owl-dots {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%,-50%);
    padding-bottom: 15px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    background: #dddddd5c;
    border-radius: 2px;
    transition: .3s;
}

.owl-dots button.owl-dot.active {
    background: #fff;
}

button, .button, input[type="button"], input[type="submit"], .gonderbtn, .btn, .yesilbtn, .redbtn, .graybtn, .lbtn, .sbtn {
    display: inline-flex;
    cursor: pointer;
    border-radius: 6px;
    position: relative;
    background: #7ac24f;
    color: #fff;
    padding: 0px 26px;
    font-size: 15px;
    font-weight: 500;
    grid-column-gap: 8px;
    height: 44px;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border: none;
    white-space: nowrap;
    text-transform: capitalize;
}

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .gonderbtn:hover, .btn:hover, .yesilbtn:hover, .graybtn:hover, .lbtn:hover, .sbtn:hover {
    background: var(--generalTwoColor);
}

button i, .button i, input[type="button"] i {
    font-size: 18px;
}

.uyeolgirisslogan-con .gonderbtn {
    border: none!important;
}

#order-service-detail-btns a i {
    font-size: 18px;
    line-height: normal;
    margin: 0;
    font-weight: 400;
}

.owl-nav .owl-next, .owl-nav .owl-prev {
    position: absolute;
    width: 32px;
    height: 32px;
    color: var(--generalColor)!important;
    background: #fff!important;
    border-radius: 50px!important;
    bottom: 0;
}

.owl-nav .owl-next {
    position: relative;
}

.owl-nav .owl-prev {
    display: flex;
    position: relative;
}

.sliderSection .owl-nav {
    display: flex;
    position: absolute;
    right: 60px;
    bottom: 15px;
    grid-column-gap: 8px;
}

.owl-nav span {
    color: var(--generalTwoColor);
    font-size: 22px;
}

.mobileButton {
    display: none;
    font-size: 26px;
}

.headerContent .rightButton ul.mobileMeta {
    display: none;
}

.formInput {
    display: flex;
    grid-column-gap: 30px;
    margin-bottom: 30px;
}

.msjonizleme .formInput {
    margin-bottom: 20px;
    line-height: normal;
}

.msjonizleme .formInput span {
    color: var(--generalTwoColor);
}

.formItem {
    width: 100%;
    position: relative;
}

.formInput:last-child {
    margin-bottom: 0;
}

label {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--subColor);
    display: inline-block;
}

label:last-child {
    margin-bottom: 0;
}

.smallbutton {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e5e8;
    border-radius: 4px;
    margin: 0 auto;
    color: var(--subColor);
    font-size: 15px;
}

.smallbutton:hover {
    background: #061e3b;
    color: #fff;
}

.propertiesList table thead th:first-child, .propertiesList table tbody td:first-child {
    width: 710px;
    text-align: left;
    font-weight: 500;
    color: var(--generalTwoColor);
}

.propertiesList table thead th:first-child {
    color: #fff;
}

.propertiesList table tbody td span {
    color: var(--subColor);
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.propertiesList table thead tr th, .propertiesList table tbody tr td {
    width: 175px;
}

.propertiesList table thead tr th.premiumBg {
    background: #092c56;
}

.propertiesList table tbody tr td.premium {
    background: #4a90e329;
}

.propertiesList table tbody tr:nth-child(even) {
    background: transparent;
}

table.custom {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    box-shadow: 0 10px 50px 0 rgb(77 77 119 / 16%);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
}

table.custom thead {
    background: var(--generalTwoColor);
}

table.custom thead tr th, table.custom tbody tr td {
    padding: 18px;
    text-align: center;
    font-weight: 400;
    color: var(--subColor);
    font-size: 15px;
}

table.custom tbody tr td i.check {
    background: var(--generalColor);
    border-radius: 50px;
    color: #fff;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

table.custom tbody tr td i.close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff4343;
}

table.custom thead tr th {
    color: #fff;
    font-weight: 500;
}

table.custom tbody tr:nth-child(even) {
    background: #eff0f1;
}

.sunucular table tr {
    box-shadow: none;
}

table.custom tbody tr.result-content {
    background: transparent;
}

table.custom tbody tr:nth-child(even) td {
    color: var(--generalTwoColor);
    font-weight: 500;
}

table.custom tbody tr span.saleText {
    display: block;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 7px;
    background: var(--generalColor);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

table.custom tbody tr span.oldPrice {
    display: block;
    text-decoration: line-through;
    margin-bottom: 6px;
}

table.custom tbody tr span.newPrice {
    font-weight: 600;
    color: var(--textColor);
    font-size: 17px;
}


.contactForm input {
    height: 70px;
    padding: 17px 30px;
    max-height: max-content;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 400;
}

.contactForm textarea {
    border-radius: 0;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 30px!important;
    height: 160px;
}

.contactForm .button {
    width: auto;
    background-color: #000 !important;
    border-radius: 0px;
    border: none !important;
    margin: 0;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 17px 65px !important;
    height: auto;
    transition: 0s!important;
}

.contactForm .button:hover {
    background-color: #f0d9c3 !important;
    color: #000 !important;
    border: none !important;
}