/* ===================================
    Crafto - Lawyer
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
/* variable */
:root {     
    --base-color: #b1915e;  
    --dark-gray: #283154;
    --medium-gray: #6f8595;
    /* --medium-gray: #98b1c3; */
    --very-light-gray: #f1f2f7;
    --alt-font: 'Playfair Display', serif;
    --primary-font: 'DM Sans', sans-serif;
}  
body {
    font-size: 17px;
    line-height: 32px;
}
/* custom cursor */
.custom-cursor .circle-cursor-inner {
    background-color: var(--base-color);
    width: 10px;
    height: 10px;
}
.custom-cursor .circle-cursor-inner.cursor-link-hover {
    background-color: var(--base-color);
}
.custom-cursor .circle-cursor-outer {
    border: 1px solid transparent;
}
/* header */
header .navbar-brand img {
    max-height: 36px;
}
header .left-nav .navbar-nav:before {
    background-color: var(--white);
    opacity: 0.2; 
    transform: translate(-28px, 0px);
    -webkit-transform: translate(-28px, 0px);
    transition: 0s;
}
header.sticky .left-nav .navbar-nav:before {
    transform: translate(-28px, 0px);
    -webkit-transform: translate(-28px, 0px);
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .4px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    border-bottom: 1px solid #f6f3ef;
    padding: 13px 20px;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.3;
    padding-right: 30px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:hover img {
    filter: invert(19%) sepia(100%) saturate(238%) hue-rotate(175deg) brightness(96%) contrast(95%);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active:hover > a{
    background-color: var(--base-color);
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active > a {
    color: var(--medium-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu {
    width: 330px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a {
    color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a p {
    line-height: 17px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a img {
    width: 65px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li.active > a,
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:hover {
    color: var(--medium-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a img {
    width: 38px;
    margin-right: 15px;
    filter: invert(57%) sepia(58%) saturate(271%) hue-rotate(358deg) brightness(92%) contrast(93%);
}
/* pagination */
.pagination-style-01 .page-item.active .page-link,
.pagination-style-01 .page-item .page-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}
.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    box-shadow: none !important;
}
.pagination-style-01 .page-item:first-child .page-link:hover,
.pagination-style-01 .page-item:last-child .page-link:hover {
    color: var(--dark-gray);
}
/* input */
.input-small, .textarea-small {
    font-size: 14px;
}
/* bg color */
.bg-blue-whale {
    background-color: #283154;
}
.bg-blue-licorice {
    background-color: #374b57;
}
/* bg gradient transparent */
.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #0a171e), to(transparent));
    background: linear-gradient(to top, #1b2241d1 0%, #0c102087 100%);
}
/* btn */
.btn.btn-blue-whale {
    background-color:#283154; 
    color: var(--white);
}
.btn.btn-blue-whale:hover {
    background-color: transparent;
    border-color: #283154;
    color: #283154;
}
.btn {
    font-family: var(--primary-font);
    font-weight:500;
    text-transform: inherit;
    letter-spacing: 0px;
}
.btn.btn-link {
    padding: 0 0 2px; 
}
.btn.btn-rounded.btn-extra-large {
    padding: 18px 66px 18px 40px;
    font-size: 17px;
}
.btn.btn-rounded.btn-large {
    padding: 16px 55px 16px 38px;
    font-size: 16px;
}
.btn.btn-large {
    font-size: 15px;
}
/* number pagination style 01 */
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet {
    font-size: 14px;
}
.process-step-style-02:hover .process-step-icon .number {
    color: var(--white);
}
/* page title */
.page-title-large h1 {
    font-size: 4rem;
    line-height: 3.9rem;
}
/* process step style 03 */
.process-step-style-03:hover .process-step-icon-box .progress-image {
    -webkit-transform: scale(1.3); 
    transform: scale(1.3);
}
/* social icon style 02 */
.social-icon-style-02 .small-icon li {
    margin: 0;
}
/* opacity */
.opacity-05 {
    opacity: 0.05;
}
/* top right bottom left */
.top-minus-35px {
    top: -35px;
}
.left-minus-35px {
    left: -35px;
}
.bottom-minus-35px {
    bottom: -35px;
}
/* footer */
footer .footer-logo img {
    max-height: 36px;
}
.footer-dark {
    color: #768086;
}
.footer-dark p, .footer-dark a {
    color: #768086;
}
.is-touchable .cursor-page-inner {
    display: none !important;
}
.wts-form-iletisim-formu label{
    display: none;
}
.wts-form-iletisim-formu .form-group label.new-control {
    display: inline-block;
    margin-bottom: 3px;
    font-weight: 500;
    color: #fff;
}
.wts-form-iletisim-formu .form-group label.new-control a{
    text-decoration: underline;
    color: #fff;
}
.wts-form-iletisim-formu .form-group .new-control-input {
    width: 15px;
}

.wts-form-iletisim-formu-widget label{
    display: none;
}
.wts-form-iletisim-formu-widget input,
.wts-form-iletisim-formu-widget textarea{
    padding: 6px 15px;
    margin-bottom: 15px;
}
.wts-form-iletisim-formu-widget input::placeholder,
.wts-form-iletisim-formu-widget textarea::placeholder{
    color:var(--dark-gray);
}
.list-style-02 li p{
    margin-bottom: 5px;
}


/* media query responsive */
@media (max-width: 1400px) {
    .xl-min-h-270px {
        min-height: 270px !important;
    }
}
@media (max-width: 1300px) {
    .navbar .navbar-nav .nav-link {
       /*  padding-left: 15px;
        padding-right: 15px; */
    }
}
@media (max-width: 1199px) {
    header .left-nav .navbar-nav:before {
        transform: translate(-10px, 0px);
        -webkit-transform: translate(-10px, 0px);
    }
    header.sticky .left-nav .navbar-nav:before {
        transform: translate(-10px, 0px);
        -webkit-transform: translate(-10px, 0px);
    }
    .elements-social .large-icon li {
        margin: 0 5px;
    }
    footer .nav-link {
        padding-left: .6rem;
        padding-right: .6rem;
    }
    .navbar .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 1024px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 991px) {
    header .widget-text {
        color: var(--dark-gray);
    }
    header .widget-text i {
        color: var(--white);
    }
    .md-bottom-minus-15px {
        bottom: -15px;
    }
    .elements-social.social-icon-style-04 .large-icon a {
        font-size: 21px;
        width: 50px;
        height: 50px;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:hover img{
        background-color: transparent;
        color: var(--dark-gray);
        filter: inherit;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active:hover > a {
        background-color: transparent;
        color: var(--medium-gray);        
    }
}
@media (max-width: 767px) {
    .sm-top-minus-25px {
        top: -25px;
    }
    .process-step-style-02 .progress-step-separator,
    .process-step-style-03 .progress-step-separator,
    .process-step-style-04 .progress-step-separator {
        display: block;
    }
}
@media (max-width: 575px) {
    .process-step-style-02 .progress-step-separator,
    .process-step-style-03 .progress-step-separator,
    .process-step-style-04 .progress-step-separator {
        display: none;
    }
}


/* 
    Nano Forch Styles 
*/
.nano-forch-modal .modal-header{
    position: relative;
    display: block;
    font-size: 23px;
    line-height: 40px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
  }
  .nano-forch-modal .modal-close{
    position: absolute;
    right: 15px;
    top: 15px;
    height: 44px;
    line-height: 20px;
    padding: 10px;
    color: #555;
    background-color: rgb(240, 240, 240);
    border-radius: 50%;
    cursor: pointer;
  }
  .nano-forch-modal .modal-close svg{
  }
  .nano-forch-modal .modal-footer{
    position: relative;
    display: block;
  }
  .nano-forch-steps-pagination{
    margin: 0px 4px 0px 14px;
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 40px;
  }
  .nano-forch-steps-buttons{
    width: auto;
    display: inline-flex;
    float: inline-end;
  }
  .nano-forch-steps-buttons button{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    padding: 10px 20px;
    text-transform: uppercase;
    min-width: 120px;
    margin-left: 10px;
  }
  .nano-forch-steps-buttons button.nano-forch-backwards-button{
    
  }
  .nano-forch-steps-buttons button.nano-forch-close-button{
    
  }
  
  .nano-forch-modal .modal-body {
    margin: 0px 20px;
}

  .nano-forch-modal .form-group {
    margin-bottom: 10px;
  }
  
  .nano-forch-modal .form-group label {
    display: inline-block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--dark-gray);
  }
  .nano-forch-modal p.radio-input-title {
    font-size: 17px;
    font-weight: 500;
    text-align: left;
  }
  
  
  .nano-forch-special-response{
    width: 60%;
    margin: 50px auto;
    text-align: center;
  }
  .nano-forch-special-response img{
    width: 100px;
    margin: 20px 10px;
  }
  .nano-forch-special-response h2{
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
  }
  .nano-forch-special-response p{
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    margin-top: 5px;
  }

.nano-forch-modal .nano-forch-backwards-button{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    padding: 7px 20px;
    text-transform: uppercase;
    min-width: 120px;
    margin-left: 10px;
    margin-top: 0px !important;
    border-radius: 30px;
    background-color: gray;
    color: var(--white);
    border: none;
}
.nano-forch-modal .nano-forch-submit-button{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    padding: 7px 20px;
    text-transform: uppercase;
    min-width: 120px;
    margin-left: 10px;
    margin-top: 0px !important;
    border-radius: 30px;
    background-color: var(--base-color);
    color: var(--white);
    border: none;
}
.nano-forch-modal .new-control-input{
    width: 15px;
}
.nano-forch-modal .checkbox-outline-default a{
    color: var(--dark-gray);
    text-decoration: underline;
    font-weight: 600;
}
.nano-forch-modal input{
    padding: 6px 25px;
}


.nano-forch-modal .nano-forch-meta-info-container{
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    padding-bottom: 20px;
    margin: 5px -35px 19px -36px;
}
.nano-forch-modal .nano-forch-navigation-container{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.current-nano-forch-step{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.current-nano-forch-step .box-overlay{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.current-nano-forch-step .number{
    color: var(--white);
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.current-nano-forch-step .border-color-transparent-on-hover{
    border-color: transparent !important;
}


.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.current-further-nano-forch-step{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step.previous-nano-forch-step{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step .process-step-icon-box{
    margin-top: 10px;
    margin-bottom: 10px;
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step .process-step-icon-box .progress-step-separator{
    background-color: var(--dark-gray);
}
.nano-forch-navigation-step:last-child .process-step-icon-box .progress-step-separator{
    display: none;
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step .process-step-icon-box .process-step-icon{
    
}
.nano-forch-modal .nano-forch-navigation-container .nano-forch-navigation-step > span.d-inline-block{
    color: var(--dark-gray);
    line-height: 21px;
}


.nano-forch-modal .nano-forch-price-info-container{
    padding-left: 0px;
    padding-right: 10px;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02{
    
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-icon{
    padding: 0px 10px;
    margin: 0px;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-icon h2{
    font-size: 33px;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-content{
    padding: 0px 5px 0px 20px;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-content span{
    line-height: 22px !important;
    display: block;
    margin-bottom: 5px;
    width: 100%;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-content p{
    line-height: 23px;
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02 .feature-box-overlay{
    
}


.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02.price-info-content-not-available{
    
}
.nano-forch-modal .nano-forch-price-info-container .fancy-text-box-style-02.price-info-content-not-available .feature-box-content {
    padding: 0px 10px;
    text-align: center;
    border: none !important;
}








.nm-hide{
    display: none !important;
}
.hidden-input-container{
    display: none !important;
}
.wts-cms-form-slider{
    width: 100%;
    border-bottom: 1px dashed #b5b5b5;
    height: 3px;
    color: #515365;
    display: block;
    margin: 15px 0px 15px 0px;
}
.wts-cms-form-slider.low-padding-slider{
    margin: 15px 0px;
}
.wts-cms-form-titled-slider{
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
    margin: 20px 0px 15px 0px;
    padding: 0px 0px 4px 0px;
    font-size: 18px;
    display: inline-block;
    font-weight: 500;
    color: var(--dark-gray);
}
  .wts-cms-form-titled-sub-slider{
    width: 100%;
    border-bottom: 1px dashed #515365;
    color: #515365;
    display: block;
    margin: 20px 0px 10px 0px;
    padding: 0px 0px 1px 0px;
    font-size: 18px;
    font-weight: 300;
}

.general-loading{
    pointer-events: auto;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='24px' height='30px' viewBox='0 0 24 30' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Crect x='0' y='0' width='4' height='10' fill='%232196F3'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='translate' values='0 0; 0 20; 0 0' begin='0' dur='0.6s' repeatCount='indefinite' /%3E%3C/rect%3E%3Crect x='10' y='0' width='4' height='10' fill='%232196F3'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='translate' values='0 0; 0 20; 0 0' begin='0.2s' dur='0.6s' repeatCount='indefinite' /%3E%3C/rect%3E%3Crect x='20' y='0' width='4' height='10' fill='%232196F3'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='translate' values='0 0; 0 20; 0 0' begin='0.4s' dur='0.6s' repeatCount='indefinite' /%3E%3C/rect%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(1px);
}



.hukukco-artistic-text b{
    font-weight: 700 !important;
    border-bottom: 2px solid;
    font-style: italic;
    letter-spacing: -1px !important;
    color: var(--dark-gray);
    font-family: var(--alt-font);
}
.hukukco-artistic-text h1,
.hukukco-artistic-text h2,
.hukukco-artistic-text h3,
.hukukco-artistic-text h4,
.hukukco-artistic-text h5,
.hukukco-artistic-text h6
{
    font-weight: 500 !important;
    margin-bottom: 30px !important;
    letter-spacing: -1px !important;
    color: var(--dark-gray);
    font-family: var(--alt-font);
}
h1.hukukco-artistic-text,
h2.hukukco-artistic-text,
h3.hukukco-artistic-text,
h4.hukukco-artistic-text,
h5.hukukco-artistic-text,
h6.hukukco-artistic-text
{
    font-weight: 500 !important;
    margin-bottom: 30px !important;
    letter-spacing: -1px !important;
    color: var(--dark-gray);
    font-family: var(--alt-font);
}
.hukukco-artistic-text h1 b,
.hukukco-artistic-text h2 b,
.hukukco-artistic-text h3 b,
.hukukco-artistic-text h4 b,
.hukukco-artistic-text h5 b,
.hukukco-artistic-text h6 b
{
    font-weight: 700 !important;
    border-bottom: 2px solid;
    letter-spacing: -1px !important;
    color: var(--dark-gray);
    font-family: var(--alt-font);
}
.hukukco-artistic-text h1 u,
.hukukco-artistic-text h2 u,
.hukukco-artistic-text h3 u,
.hukukco-artistic-text h4 u,
.hukukco-artistic-text h5 u,
.hukukco-artistic-text h6 u
{
    font-weight: 700 !important;
    border-bottom: 2px solid;
    font-style: italic;
    letter-spacing: -1px !important;
    font-family: var(--alt-font);
    text-decoration: none;
}
h1.hukukco-artistic-text u,
h2.hukukco-artistic-text u,
h3.hukukco-artistic-text u,
h4.hukukco-artistic-text u,
h5.hukukco-artistic-text u,
h6.hukukco-artistic-text u
{
    font-weight: 700 !important;
    border-bottom: 2px solid;
    font-style: italic;
    letter-spacing: -1px !important;
    font-family: var(--alt-font);
    text-decoration: none;
}




/* 
    Text Editor V2 Styles 
*/
.text-editor-content h1 {
    font-size: 28px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
}
.text-editor-content h2 {
    font-size: 24px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
    font-family: var(--alt-font);
}
.text-editor-content h3 {
    font-size: 20px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
    font-family: var(--alt-font);
}
.text-editor-content h4 {
    font-size: 17px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
    font-family: var(--alt-font);
}
.text-editor-content h5 {
    font-size: 17px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
    font-family: var(--alt-font);
}
.text-editor-content h6 {
    font-size: 16px;
    color: var(--dark-gray);;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: .2px;
    line-height: 1.4;
    font-family: var(--alt-font);
}
.text-editor-content u {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: #b5b5b5 !important;
    text-underline-offset: 3px !important;
}
.text-editor-content ul,
.text-editor-content ol {
    padding: 8px 34px;
    margin-bottom: 10px;
    list-style-type: disc;
}
.text-editor-content > ol {
    padding-left: 0px;
}
.text-editor-content ol {
    counter-reset: level-1;
    list-style: none;
}
.text-editor-content ol li:before {
    counter-increment: level-1;
    content: counter(level-1) '. ';
}
.text-editor-content ol ol {
    counter-reset: level-2;
}
.text-editor-content ol ol li:before {
    counter-increment: level-2;
    content: counter(level-1) '.' counter(level-2) '. ';
}
.text-editor-content ol ol ol {
    counter-reset: level-3;
}
.text-editor-content ol ol ol li:before {
    counter-increment: level-3;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '. ';
}
.text-editor-content ol ol ol ol {
    counter-reset: level-4;
}
.text-editor-content ol ol ol ol li:before {
    counter-increment: level-4;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '.' counter(level-4) '. ';
}
.text-editor-content ol ol ol ol ol {
    counter-reset: level-5;
}
.text-editor-content ol ol ol ol ol li:before {
    counter-increment: level-5;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '.' counter(level-4) '.' counter(level-5) '. ';
}
.text-editor-content ul li, .text-editor-content ol li {
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    list-style: disc;
}
.text-editor-content ol li::marker,
.text-editor-content ul li::marker {
    color: var(--dark-gray);;
}
.text-editor-content u {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: #b5b5b5 !important;
    text-underline-offset: 3px !important;
}
.text-editor-content strong {
    font-weight: 700;
}
.text-editor-content .text-editor-img-wrap {
    padding: 15px 0px 15px 0px;
    margin: 20px 0;
}
.text-editor-content img {
    /* width: 90%; */
    height: auto;
    /* margin: auto; */
    display: block;
    border-radius: 20px;
}
.text-editor-content .text-editor-img-wrap img {
    margin: 0;
}
.text-editor-content img.text-editor-inline-img{

}
.text-editor-content img.text-editor-inline-img.float-left{
  float: left;
  margin-right: 40px;
}
.text-editor-content img.text-editor-inline-img.float-right{
  float: right;
  margin-left: 40px;
}
.text-editor-content img.withBorder {
    border: 10px solid #eee;
}
.text-editor-content .text-editor-img-wrap.withBackground {
    width: 100%;
    background-color: #eee;
}
.text-editor-content .text-editor-img-wrap.withBackground {
    width: 100%;
    background-color: #eee;
    border-radius: 30px;
    padding: 30px;
}
.text-editor-content img.stretched {
    /* width: 100%; */
}
.text-editor-content .text-editor-video-wrap {
    padding: 10px 0px 20px 0px;
}
.text-editor-content .text-editor-video-wrap .col-lg-12 {}

.text-editor-content table {
    display: block;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
    width: auto;
    margin: 15px 0;
    border: none;
    margin-bottom: 25px;
}
.text-editor-content table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #f2f2f2;
    color: var(--dark-gray);;
    border: 1px solid #ddd !important;
    padding: 8px !important;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
}
.text-editor-content tr:hover {
    background-color: #ddd;
}
.text-editor-content table tr {
    border-bottom: 1px solid #c9c9c9 !important;
}
.text-editor-content table th p {
    margin-bottom: 0px;
}
.text-editor-content table td {
    width: auto !important;
    padding: 8px 12px !important;
    line-height: 1.8;
    font-weight: 400;
    font-size: 15px;
    color: #393c3d;
    margin-bottom: 15px;
    letter-spacing: .01em;
    border: 1px solid #ddd !important;
}
.text-editor-content table td p {
    margin-bottom: 0px;
}
.text-editor-content table th,
.text-editor-content table td:first-child {
    /* padding-right: 120px !important; */
    padding: 8px 120px 8px 10px !important;
}
.text-editor-content .editor-hr {
    line-height: 1.5em;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}
.text-editor-content .editor-hr:before {
    display: inline-block;
    content: "***";
    font-size: 30px;
    line-height: 39px;
    height: 30px;
    letter-spacing: 0.2em;
    color: var(--dark-gray);;
}
.text-editor-content blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #EEE;
    font-size: 15px;
}
.text-editor-content blockquote cite {
    color: var(--dark-gray);;
    font-style: italic;
    font-weight: 600;
    padding: 10px 0px 0px 10px;
    display: block;
    text-transform: none;
}
.text-editor-content .text-editor-warning-box {
    background-color: #eee;
    padding: 25px;
    width: 100%;
    margin: 20px 0;
    border-radius: 20px;
}
.text-editor-content .text-editor-warning-box span {
    color: var(--dark-gray);;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.text-editor-content .text-editor-warning-box p {
    margin-bottom: 0px !important;
}
.text-editor-content .order-one {
    order: 1;
}
.text-editor-content .order-two {
    order: 2;
}
.text-editor-content .text-editor-faq:first-of-type {
    margin-top: 30px;
}
@media (min-width: 1024px) {

    .text-editor-content .text-editor-video-wrap .col-lg-12,
    .text-editor-content .text-editor-img-wrap .col-lg-12 {
        max-width: 100%;
        margin: auto;
    }
}
.text-editor-content .text-editor-img-wrap .order-one {
    padding-right: 30px;
}
.text-editor-content .text-editor-video-wrap .order-one {
    padding-right: 30px;
}
.text-editor-content p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}
.text-editor-content p a {
    font-weight: 600;
}
.text-editor-content b, .text-editor-content strong {
    font-weight: 700;
    color: var(--dark-gray);;
}
.text-editor-content table.kucuk-tablo td {
    padding: 8px 30px !important;
}
.text-editor-content table.kucuk-tablo td:first-child {
    width: 100% !important;
}
.text-editor-content table h2 {
    font-size: 20px;
	margin-bottom: 0;
}
.text-editor-content table h3 {
    font-size: 18px;
    margin-bottom: 0;
}
.text-editor-content table h5 {
    font-size: 15px;
    margin-bottom: 0;
}
.text-editor-content table p {
    font-size: 15px;
    margin-bottom: 0px;
}
.text-editor-content .article-embed {
    margin: 30px 0;
}
.text-editor-content .article-embed iframe {
    border-radius: 20px !important;
}
html[dir=rtl] .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a img {
    margin-right: 0;
    margin-left: 15px;
}
html[dir=rtl] .altmenu-dropdown-submenu:hover .altmenu-dropdown-menu {
    padding-right: 0;
}
html[dir=rtl] .navbar .ms-auto.d-lg-flex {
    margin-left: 0 !important;
    margin-right: auto !important;
}
html[dir=rtl] .header-language-icon.widget {
    margin-right: 25px !important;
    margin-left: 25px !important;
}
html[dir=rtl] .nbs-header-link .widget-text {
    direction: ltr;
}
html[dir=rtl] .anasayfa-slider .title-slider .alt-font.fs-85.lg-fs-75 {
    direction: ltr;
    text-align: right;
}
html[dir=rtl] .home-about-yazi .list-style-02 li i {
    margin-right: 0 !important;
    margin-left: 13px;
}
html[dir=rtl] .home-about-yazi .d-inline-block .fw-600.d-inline-block.align-middle.text-dark-gray {
    direction: ltr;
}
html[dir=rtl] .home-about-yazi .d-inline-block .btn.btn-rounded.btn-large {
    margin-right: 0 !important;
    margin-left: 15px;
}
html[dir=rtl] .home-about-resim .position-absolute.z-index-1.skrollable-between {
    transform: translateY(-28.58123px);
    right: -50px;
    text-align: right !important;
}
html[dir=rtl] .online-randevu .nbs-l-area {
    border-left: 0px solid #d9d9d9;
    padding-left: 0px;
    padding-right: 0;
    border-right: 1px solid #d9d9d9;
}
html[dir=rtl] .online-randevu-alan1 .cd-headline.slide .text-dark-gray.lh-100.fw-500.mb-10.alt-font {
    direction: ltr;
    text-align: right;
    display: flex;
        flex-direction: column;
        margin-bottom: 50px !important;
    font-size: 100px !important;
}
html[dir=rtl] .online-randevu-alan1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
html[dir=rtl] .ana-hizmetler {
    direction: ltr;
}
html[dir=rtl] .ana-hizmetler .col-lg-4 {
    direction: rtl;
    text-align: right !important;
    padding-right: 50px;
}
html[dir=rtl] .swiper .swiper-slide {
    direction: rtl;
    text-align: right;
}
html[dir=rtl] .swiper .swiper-slide .bi-arrow-right-short::before {
    rotate: 180deg;
}
html[dir=rtl] .nsb7-ntler .col-xl-5.offset-xl-1 {
    margin-left: 0;
    margin-right: 8.33333333%;
}
html[dir=rtl] .nsb7-ntler .col-lg-6 img.right-minus-20px {
    right: auto;
    left: -20px;
}
html[dir=rtl] .nsb7-ntler .oranlar .col {
    direction: ltr;
    text-align: right !important;
}
html[dir=rtl] .uzmanlik-alani .uzmanlik-alani-oran {
    margin-right: 0px !important;
    margin-left: 60px !important;
}
html[dir=rtl] .uzmanlik-alani .uzmanlik-alani-oran .pie-chart-style-01 {
    margin-left: 15px;
}
html[dir=rtl] .ana-haber .blog-grid .card .card-body .author {
    text-align: right !important;
    float: right;
}
html[dir=rtl] footer .footer-bottom {
    direction: ltr;
}
html[dir=rtl] footer .footer-bottom .nsbsp-pad {
    padding-right: 0px !important;
    direction: rtl;
}
html[dir=rtl] footer .orta-kisim .text-lg-start {
    direction: ltr;
    text-align: right !important;
}
html[dir=rtl] .iletisim-alan .feature-box.feature-box-left-icon .me-25px {
    margin-right: 5px !important;
    margin-left: 25px;
}
html[dir=rtl] .iletisim-alan .feature-box.feature-box-left-icon .feature-box-content {
    text-align: right;
}
html[dir=rtl] .blog-grid .card .card-body .author .me-auto {
    margin-right: 0 !important;
    margin-left: auto;
}
html[dir=rtl] .blog-grid .card .card-body .author .author-name {
    left: auto;
    right: 0;
}
html[dir=rtl] .text-editor-content {
    text-align: right !important;
}
html[dir=rtl] .overlap-gap-section .row {
    justify-content: start !important;
}
html[dir=rtl] .overlap-gap-section .row .alt-font.fw-600.text-white {
    font-weight: 600 !important;
    text-align: right;
}
html[dir=rtl] .overlap-gap-section .row .col-xl-9.text-center{
    text-align: right !important;
}
html[dir=rtl] .form-group .form-control {
    direction: ltr;
    text-align: right;
}
html[dir=rtl] .col.pt-7.pb-7 .fw-500.d-inline-block.align-middle.text-white {
    direction: ltr;
    text-align: right !important;
}
html[dir=rtl] .col.pt-7.pb-7 .d-inline-block .btn.btn-rounded.btn-large {
    margin-right: 0 !important;
    margin-left: 15px;
}

html[dir=rtl] header .header-icon .header-randevu-button {
    margin-right: 15px !important;
}

html[dir=rtl] header .header-language-icon .header-language .language-dropdown{
    position: absolute;
    right: auto;
    left: 0px;
}


.header-cta-button-type-1{
    padding: 8px 32px !important;
    border-radius: 50px;
    background-color: #ffffff29;
    border: 2px solid #ffffff17;
}