
body{
    margin: 0;
    padding: 0;
    background: #fff;
}

header{
    width: 100vw;
    display: inline-block;
    z-index: 100;
    position: relative;
    background: #fff;
}

header .social-accounts{
    float: right;
    margin-top: 5px;
}

header .social-accounts a{
    text-decoration: none;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    color: #1188DDEE;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: 5px;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    box-shadow: 9px 4px 16px #00000017;
}

header .social-accounts a:hover{
    background: #e8f6f6;
}

header .social-accounts a i{
    font-size: 16px;
}

header .logo{
    float: left;
    display: inline-block;
}

.header-top{
    padding: 14px 0 10px;
    text-align: center;
}

header.scrolling .header-top{
    display: none;
}

header.scrolling {
    position: fixed;
}
.header-bottom{
    border-top: solid 1px #ebebeb;
    text-align: center;
}

.header-bottom img.logo{
    width: 170px;
    margin-top: 20px;
    display: none;
}

header.scrolling .header-bottom img.logo{
    display: block;
}

header .mobile-logo{
    width: 220px;
    float: left; 
    margin-top: 17px;
    display: none;
}

header.scrolling nav.desktop{
    float: none;
}

.header-container{
    width: 100%;
    max-width: 1500px;
    display: inline-block;
    box-sizing: border-box;
}

header nav.desktop{
    display: inline-block;
    float: left;
}

header nav.mobile{
    display: none;
}

header nav.desktop ul{
    display: inline-block;
    margin: 0;
    float: left;
    padding: 18px 0 0px;
}

header nav.desktop ul li{
    float: left;
    list-style: none;
    position: relative;
}

header nav.desktop ul li.menu-item-has-children{
    padding-bottom: 15px;
}

header nav.desktop ul li.menu-item-has-children:after{
    content: '';
    width: 150%;
    position: absolute;
    height: 14px;
    background: #fff;
    left: 0;
    bottom: -5px;
}

header nav.desktop ul li a{
    text-decoration: none;
    color: #526371;
    font-size: 17px;
    padding-right:44px;
    text-transform: uppercase;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

header nav.desktop ul li a:hover{
    color: #1188DDEE;
}

header .number-list{
    float: right;
    margin-top: 5px;
}

header .number-list img{
    font-size: 22px;
    margin-right: 8px;
    float: left;
}

header .number-list span{
    float: left;
    margin-top: 7px;
}

header .number-list a{
    color: #1188DDEE;
    text-decoration: none;
    margin-left: 3px;
    display: inline-block;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

header .number-list a:hover{
    color: #000;
}

header nav.desktop ul li .sub{
    background: #000;
    padding: 0;
    min-width: 150px;
    padding: 22px 15px 15px;
    position: absolute;
    top: 30px;
    opacity: 0;
    transition: opacity, transform ease .3s;
    -webkit-transition: opacity, transform ease .3s;
    -moz-transition: opacity, transform ease .3s;
    -ms-transition: opacity, transform ease .3s;
    -o-transition: opacity, transform ease .3s;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    pointer-events: none;
    left: 0;
}


header nav.desktop ul li .sub li{
    padding: 7px 0;
    width: 100%;
    transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -ms-transition: opacity ease .3s;
    -o-transition: opacity ease .3s;
    text-align: left;
}


header nav.desktop ul li .sub li a:hover{
    opacity: 1;
}

header nav.desktop ul li.current-menu-item a{
    opacity: 1 !important;
    pointer-events: none; 
}

header nav.desktop ul li .sub li a{
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    height: 100%;
    color: #fff;
    display: inline-block;
    opacity: .6;
    margin: 0;
    transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -ms-transition: opacity ease .3s;
    -o-transition: opacity ease .3s;
}


header nav.desktop ul li.menu-item-has-children:hover > ul{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    pointer-events: all;
}

header nav.desktop ul li.menu-item-has-children ul li.menu-item-has-children ul{
    left: 100%;
    top: -10px;
}


header .hamburger{
    width: 22px;
    height: 22px;
    position: relative;
    float: left;
    display: none;
    margin-top: 22px;
}

header .hamburger span{
    width: 100%;
    height: 2px;
    left: 0;
    background: #000;
    position: absolute;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

header .hamburger:hover span{
    background: #1188DDEE;
}

header .hamburger span:nth-child(2){
    top: 6px;
}

header .hamburger span:nth-child(3){
    top: 12px;
}

@media only screen and (max-width: 1299px) {
    .header-container{
        padding: 0 60px;
    }
}

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

    .header-container{
        padding: 30px 60px;
    }

    header .hamburger{
        display: inline-block;
    }

    header .header-top{
        display: none;
    }

    header .mobile-logo{
        display: inline-block;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 50px;
    }

    header nav.desktop{
        display: none;
    }

    header nav.mobile{
        display: inline-block;
        width: calc(100% - 30px);
        display: none;
    }

    header nav.mobile .sub{
        display: none;
        padding-left: 15px;
    }

    header nav.mobile .sub li a{
        text-transform: none;
    }

    header nav.mobile ul li{
        list-style: none;
        position: relative;
    }

     header nav.mobile ul li.menu-item-has-children:after{
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        position: absolute;
        right:10px;
        top: 15px;
        font-size: 12px;
     }

    header nav.mobile ul li a{
        width: 100%;
        border-bottom: 1px solid #eaeaea;
        color: #526371;
        font-size: 17px;
        line-height: 26px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        padding: 10px 0;
        display: inline-block;
    }
}

@media only screen and (max-width: 600px) {
    .social-accounts{
        display: none;
    }

    .header-container {
        padding: 30px;
    }
}


.tedaviler h1, .tedaviler h2, .tedaviler h3, .tedaviler h4, .tedaviler h5, .tedaviler h6{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: rgb(82, 99, 113);
    margin: 0;
    margin-bottom: 7px;
}

.tedaviler p{
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: rgb(140, 140, 140);
    margin: 0;
}

.tedaviler a{
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #1188DDEE;
    margin: 0;
    margin-top: 10px;
    display: inline-block;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

.tedaviler a:hover{
    color: rgb(82, 99, 113);
}

.page-title{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #1188DDEE;
    color: #fff;
}

.page-title h1{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0px;
    text-shadow: 1px 1px 2px rgba(0,0,0,.4)
}

@media only screen and (max-width: 1000px) {
    .page-title{
        height: 250px;
    }

    .page-title h1{
        font-size: 30px;
    }
}


footer{
    background-color: #3e4144;
    padding: 60px 0 0;
}

footer .footer-blogs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .footer-blogs h5{
    color: #fff;
}

footer .footer-blogs a{
    text-decoration: none;
}

footer .footer-form input{
    background-color: #525457;
    height: 40px;
    border: 0;
    color: #fff;
    padding-left: 15px;
    width: 100%;
    margin: 0;
    font-family: "Open Sans", Sans-serif;
}

footer .footer-form p{
    margin: 0;
    margin-top: 5px;
}

footer .footer-form input::placeholder, footer .footer-form textarea::placeholder{
    color: #bdbdbd !important;
}

footer .footer-form textarea{
    font-family: "Open Sans", Sans-serif;
    background-color: #525457;
    border: 0;
    color: #fff;
    padding-left: 15px;
    padding-top: 15px;
    width: 100%;
}

footer .footer-form input[type="submit"]{
    background-color: #1188DDEE;
    font-family: "Open Sans", Sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    width: auto;
    padding: 15px 30px;
    height: auto;
}

footer .section-title{
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

footer .hakkimda{
    color: #fff;
}

footer .hakkimda{
    color: #fff;
}

footer .hakkimda p{
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-family: "Open Sans", Sans-serif;
}

footer .hakkimda a{
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-family: "Open Sans", Sans-serif;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

footer .hakkimda a:hover{
    color: #1188DDEE;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-family: "Open Sans", Sans-serif;
}

footer .social-accounts{
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

footer .social-accounts a{
    text-decoration: none;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    color: #fff;
    border: 1px solid #585858;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: 5px;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

footer .social-accounts a:hover{
    background: #626262;
}

footer .social-accounts a i{
    font-size: 17px;
}

footer .footer-address{
    width: 100%;
    display: flex;
}

footer .footer-address img{
    float: left;
}

footer .footer-address span{
    color: rgb(183, 183, 183);
    font-size: 13px;
    float: left;
    padding-left: 15px;
}

.footer-bottom{
    padding: 30px 0;
    margin-top: 60px;
    box-sizing: border-box;
    background: #45484b;
}

.footer-bottom p{
    color: #fff;
    font-weight: 300;
    width: 100%;
    font-size: 15px;
}

.hemen-ara{
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background: #2190df;
    color: #fff;
    z-index: 1000;
    bottom: 0;
    left: 0;
    text-align: center;
    text-decoration: none;
    display: none;
}

.hemen-ara span{
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color:#fff;
}

.hemen-ara span:before{
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    left: -36px;
    top: 2px;
    font-size: 22px;
}

@media only screen and (max-width: 1000px) {
    footer .section-title{
        margin-top: 60px;
    }

    footer{
        box-sizing: border-box;
        padding: 60px 30px 0;
    }

    footer .footer-form input,    footer .footer-form textarea{
        width: 90%;
    }

    .hemen-ara{
        display: block;
    }
}